devformance 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +205 -0
- data/app/assets/builds/tailwind.css +2 -0
- data/app/assets/images/icon.png +0 -0
- data/app/assets/images/icon.svg +68 -0
- data/app/assets/stylesheets/devmetrics/dashboard.css +476 -0
- data/app/assets/stylesheets/devmetrics_live/application.css +10 -0
- data/app/assets/tailwind/application.css +1 -0
- data/app/channels/application_cable/channel.rb +4 -0
- data/app/channels/application_cable/connection.rb +4 -0
- data/app/channels/devformance/metrics_channel.rb +25 -0
- data/app/controllers/application_controller.rb +4 -0
- data/app/controllers/devformance/application_controller.rb +19 -0
- data/app/controllers/devformance/icons_controller.rb +21 -0
- data/app/controllers/devformance/metrics_controller.rb +41 -0
- data/app/controllers/devformance/playground_controller.rb +89 -0
- data/app/helpers/application_helper.rb +9 -0
- data/app/helpers/metrics_helper.rb +2 -0
- data/app/helpers/playground_helper.rb +2 -0
- data/app/javascript/devformance/channels/consumer.js +2 -0
- data/app/javascript/devformance/channels/index.js +1 -0
- data/app/javascript/devformance/controllers/application.js +9 -0
- data/app/javascript/devformance/controllers/hello_controller.js +7 -0
- data/app/javascript/devformance/controllers/index.js +14 -0
- data/app/javascript/devformance/controllers/metrics_controller.js +364 -0
- data/app/javascript/devformance/controllers/playground_controller.js +33 -0
- data/app/javascript/devmetrics.js +4 -0
- data/app/jobs/application_job.rb +7 -0
- data/app/jobs/devformance/file_runner_job.rb +318 -0
- data/app/mailers/application_mailer.rb +4 -0
- data/app/models/application_record.rb +3 -0
- data/app/models/devformance/file_result.rb +14 -0
- data/app/models/devformance/run.rb +19 -0
- data/app/models/devformance/slow_query.rb +5 -0
- data/app/views/devformance/metrics/index.html.erb +79 -0
- data/app/views/devformance/playground/run.html.erb +63 -0
- data/app/views/layouts/devformance/application.html.erb +856 -0
- data/app/views/layouts/mailer.html.erb +13 -0
- data/app/views/layouts/mailer.text.erb +1 -0
- data/app/views/metrics/index.html.erb +334 -0
- data/app/views/pwa/manifest.json.erb +22 -0
- data/app/views/pwa/service-worker.js +26 -0
- data/config/BUSINESS_LOGIC_PLAN.md +1244 -0
- data/config/application.rb +31 -0
- data/config/boot.rb +4 -0
- data/config/cable.yml +17 -0
- data/config/cache.yml +16 -0
- data/config/credentials.yml.enc +1 -0
- data/config/database.yml +98 -0
- data/config/deploy.yml +116 -0
- data/config/engine_routes.rb +13 -0
- data/config/environment.rb +5 -0
- data/config/environments/development.rb +84 -0
- data/config/environments/production.rb +90 -0
- data/config/environments/test.rb +59 -0
- data/config/importmap.rb +11 -0
- data/config/initializers/assets.rb +7 -0
- data/config/initializers/content_security_policy.rb +25 -0
- data/config/initializers/filter_parameter_logging.rb +8 -0
- data/config/initializers/inflections.rb +16 -0
- data/config/locales/en.yml +31 -0
- data/config/master.key +1 -0
- data/config/puma.rb +41 -0
- data/config/queue.yml +22 -0
- data/config/recurring.yml +15 -0
- data/config/routes.rb +20 -0
- data/config/storage.yml +34 -0
- data/db/migrate/20260317144616_create_slow_queries.rb +13 -0
- data/db/migrate/20260317175630_create_performance_runs.rb +14 -0
- data/db/migrate/20260317195043_add_run_id_to_slow_queries.rb +10 -0
- data/db/migrate/20260319000001_create_devformance_runs.rb +20 -0
- data/db/migrate/20260319000002_create_devformance_file_results.rb +29 -0
- data/db/migrate/20260319000003_add_columns_to_slow_queries.rb +7 -0
- data/lib/devformance/bullet_log_parser.rb +47 -0
- data/lib/devformance/compatibility.rb +12 -0
- data/lib/devformance/coverage_setup.rb +33 -0
- data/lib/devformance/engine.rb +80 -0
- data/lib/devformance/log_writer.rb +29 -0
- data/lib/devformance/run_orchestrator.rb +58 -0
- data/lib/devformance/sql_instrumentor.rb +29 -0
- data/lib/devformance/test_framework/base.rb +43 -0
- data/lib/devformance/test_framework/coverage_helper.rb +76 -0
- data/lib/devformance/test_framework/detector.rb +26 -0
- data/lib/devformance/test_framework/minitest.rb +71 -0
- data/lib/devformance/test_framework/registry.rb +24 -0
- data/lib/devformance/test_framework/rspec.rb +60 -0
- data/lib/devformance/test_helper.rb +42 -0
- data/lib/devformance/version.rb +3 -0
- data/lib/devformance.rb +196 -0
- data/lib/generators/devformance/install/install_generator.rb +73 -0
- data/lib/generators/devformance/install/templates/add_columns_to_slow_queries.rb.erb +7 -0
- data/lib/generators/devformance/install/templates/add_run_id_to_slow_queries.rb.erb +10 -0
- data/lib/generators/devformance/install/templates/create_devformance_file_results.rb.erb +29 -0
- data/lib/generators/devformance/install/templates/create_devformance_runs.rb.erb +20 -0
- data/lib/generators/devformance/install/templates/create_performance_runs.rb.erb +14 -0
- data/lib/generators/devformance/install/templates/create_slow_queries.rb.erb +13 -0
- data/lib/generators/devformance/install/templates/initializer.rb +23 -0
- data/lib/tasks/devformance.rake +45 -0
- data/spec/fixtures/devformance/devformance_run.rb +27 -0
- data/spec/fixtures/devformance/file_result.rb +34 -0
- data/spec/fixtures/devformance/slow_query.rb +11 -0
- data/spec/lib/devmetrics/log_writer_spec.rb +81 -0
- data/spec/lib/devmetrics/run_orchestrator_spec.rb +102 -0
- data/spec/lib/devmetrics/sql_instrumentor_spec.rb +115 -0
- data/spec/models/devmetrics/file_result_spec.rb +87 -0
- data/spec/models/devmetrics/run_spec.rb +66 -0
- data/spec/models/query_log_spec.rb +21 -0
- data/spec/rails_helper.rb +20 -0
- data/spec/requests/devmetrics/metrics_controller_spec.rb +149 -0
- data/spec/requests/devmetrics_pages_spec.rb +12 -0
- data/spec/requests/performance_spec.rb +17 -0
- data/spec/requests/slow_perf_spec.rb +9 -0
- data/spec/spec_helper.rb +114 -0
- data/spec/support/devmetrics_formatter.rb +106 -0
- data/spec/support/devmetrics_metrics.rb +37 -0
- data/spec/support/factory_bot.rb +3 -0
- metadata +200 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 28211e6e59e94ed6dab36b693c72585d084491a2bb0d6d3dc4a7b37c8c96fb40
|
|
4
|
+
data.tar.gz: 13a835b26dbbac8c9179eca106f098cb0f02c046adef66d9e3d63c28147780a5
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 40639e968973f0e9ef89ee401da59633c5c25cc99ddd3ade2cd489d394bdbdd952ea727ffbd16b26cad1ce133529a1a56a07451f46c5859e055de401945772d0
|
|
7
|
+
data.tar.gz: cd4251f047e66bdb0fce61ea5d189e8026db679f47090b16be8d2c4e64807e6b114f0d4604b68c198f4e97935324d1b0cbc21abfb56cd28d85e91b4851bd7bfa
|
data/README.md
ADDED
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
# Devformance
|
|
2
|
+
|
|
3
|
+
**Devformance** is a mountable Rails Engine gem that adds a real-time performance monitoring dashboard to any Rails 7.1+ application. It surfaces slow SQL queries, detects N+1 issues, runs test suites with coverage tracking, and shows memory and DB connection metrics — all at a configurable route.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Features
|
|
8
|
+
|
|
9
|
+
- **Live Performance Dashboard** at `/devformance` — view test results and coverage metrics.
|
|
10
|
+
- **Run Performance Tests** — one-click button that scans integration tests performance, runs them via RSpec or Minitest, and shows results with coverage.
|
|
11
|
+
- **Automatic SQL Instrumentation** — every query during a test run is timed with `ActiveSupport::Notifications`.
|
|
12
|
+
- **N+1 Detection** — integrates with [Bullet](https://github.com/flyerhzm/bullet). Detected N+1 issues are stored in `slow_queries` and shown with fix suggestions.
|
|
13
|
+
- **Memory & Connection Monitoring** — reports current process memory and DB connection pool usage.
|
|
14
|
+
- **Coverage Tracking** — integrates with [SimpleCov](https://github.com/simplecov-ruby/simplecov) for test coverage analysis.
|
|
15
|
+
- **Interactive Query Playground** at `/devformance/playground` — execute arbitrary ActiveRecord code and see performance impact immediately.
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## Requirements
|
|
20
|
+
|
|
21
|
+
- Ruby >= 3.1
|
|
22
|
+
- Rails >= 7.1
|
|
23
|
+
- PostgreSQL (or any ActiveRecord-compatible DB)
|
|
24
|
+
- `bullet` gem
|
|
25
|
+
- `simplecov` gem
|
|
26
|
+
- `rspec-rails` gem (for the test runner feature)
|
|
27
|
+
- `factory_bot_rails` gem (for test fixtures)
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Installation
|
|
32
|
+
|
|
33
|
+
### 1. Add to your Gemfile
|
|
34
|
+
|
|
35
|
+
```ruby
|
|
36
|
+
# Gemfile
|
|
37
|
+
gem "devformance"
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### 2. Configure SimpleCov in your test setup
|
|
41
|
+
|
|
42
|
+
Add to `spec/spec_helper.rb` or `spec/rails_helper.rb`:
|
|
43
|
+
|
|
44
|
+
```ruby
|
|
45
|
+
require "simplecov"
|
|
46
|
+
SimpleCov.start "rails" do
|
|
47
|
+
add_filter "/devformance/"
|
|
48
|
+
end
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### 3. Run the install generator
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
bundle install
|
|
55
|
+
rails g devformance:install
|
|
56
|
+
rails db:migrate
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
The generator creates:
|
|
60
|
+
- `config/initializers/devformance.rb` — optional configuration
|
|
61
|
+
- Migration files for `performance_runs`, `slow_queries`, `devformance_runs`, and `devformance_file_results` tables
|
|
62
|
+
|
|
63
|
+
### 4. Mount the engine
|
|
64
|
+
|
|
65
|
+
In `config/routes.rb`:
|
|
66
|
+
|
|
67
|
+
```ruby
|
|
68
|
+
mount ::Devformance::Engine, at: "/devformance"
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
### 5. Start the server
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
bin/dev
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
Visit **http://localhost:3000/devformance**
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
## Configuration
|
|
82
|
+
|
|
83
|
+
```ruby
|
|
84
|
+
# config/initializers/devformance.rb
|
|
85
|
+
Devformance.setup do |config|
|
|
86
|
+
config.preferred_framework = :rspec # :rspec or :minitest (default: :rspec)
|
|
87
|
+
config.slow_query_threshold_ms = 100 # Log queries slower than 100ms
|
|
88
|
+
config.max_slow_queries = 500 # Keep at most 500 slow query records
|
|
89
|
+
config.coverage_enabled = true # Enable SimpleCov coverage tracking
|
|
90
|
+
config.coverage_minimum_coverage = 80 # Minimum coverage percentage for warnings
|
|
91
|
+
end
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### Test Framework Configuration
|
|
95
|
+
|
|
96
|
+
By default, Devformance uses **RSpec** to run tests. You can configure the test framework:
|
|
97
|
+
|
|
98
|
+
```ruby
|
|
99
|
+
Devformance.setup do |config|
|
|
100
|
+
config.preferred_framework = :rspec # Run tests with RSpec
|
|
101
|
+
# or
|
|
102
|
+
config.preferred_framework = :minitest # Run tests with Minitest
|
|
103
|
+
end
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
The framework will be auto-detected if `preferred_framework` is not set.
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
## Using the Test Runner
|
|
111
|
+
|
|
112
|
+
The **"Run Performance Tests"** button on the dashboard will:
|
|
113
|
+
|
|
114
|
+
1. Scan tests for files that `require 'devformance'` (or fall back to all specs if none are tagged).
|
|
115
|
+
2. Run them with SimpleCov enabled.
|
|
116
|
+
3. Instrument every SQL query and collect N+1 detections.
|
|
117
|
+
4. Store slow queries, coverage data, and test results in the database.
|
|
118
|
+
5. Update the stat cards when the run completes.
|
|
119
|
+
|
|
120
|
+
### Tagging specs for Devformance
|
|
121
|
+
|
|
122
|
+
```ruby
|
|
123
|
+
# spec/requests/posts_spec.rb
|
|
124
|
+
require 'devformance'
|
|
125
|
+
|
|
126
|
+
RSpec.describe "Posts", devformance: true do
|
|
127
|
+
it "lists posts efficiently" do
|
|
128
|
+
get "/posts"
|
|
129
|
+
expect(response).to have_http_status(:success)
|
|
130
|
+
end
|
|
131
|
+
end
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
Any file containing `devformance` (the string or `require`) will be picked up by the runner. Files without the tag are skipped unless no tagged files exist, in which case all specs run.
|
|
135
|
+
|
|
136
|
+
### Test Fixtures with Factory Bot
|
|
137
|
+
|
|
138
|
+
Devformance provides factories for its models. Add to your `spec/rails_helper.rb`:
|
|
139
|
+
|
|
140
|
+
```ruby
|
|
141
|
+
Dir[Rails.root.join("spec/fixtures/devformance/**/*.rb")].each { |f| require f }
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
Or configure Factory Bot to load them automatically:
|
|
145
|
+
|
|
146
|
+
```ruby
|
|
147
|
+
# spec/support/factory_bot.rb
|
|
148
|
+
RSpec.configure do |config|
|
|
149
|
+
config.include FactoryBot::Syntax::Methods
|
|
150
|
+
end
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
---
|
|
154
|
+
|
|
155
|
+
## How It Works
|
|
156
|
+
|
|
157
|
+
```
|
|
158
|
+
Browser opens /devformance
|
|
159
|
+
→ loads dashboard with results from previous runs
|
|
160
|
+
|
|
161
|
+
User clicks "Run Performance Tests"
|
|
162
|
+
→ POST /devformance/run_tests
|
|
163
|
+
→ MetricsController runs tests synchronously or enqueues a job
|
|
164
|
+
|
|
165
|
+
Test Runner
|
|
166
|
+
→ Open3.popen2e("bundle exec rspec spec/...")
|
|
167
|
+
→ SimpleCov collects coverage data
|
|
168
|
+
→ ActiveSupport::Notifications subscriber instruments each SQL query
|
|
169
|
+
→ On N+1 detection: creates SlowQuery record
|
|
170
|
+
→ On completion: stores results in devformance_runs + devformance_file_results
|
|
171
|
+
|
|
172
|
+
Browser polls or receives updates
|
|
173
|
+
→ Dashboard displays test results, coverage, and slow queries
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
|
|
178
|
+
## Dashboard Routes
|
|
179
|
+
|
|
180
|
+
| Path | Description |
|
|
181
|
+
|---|---|
|
|
182
|
+
| `GET /devformance` | Main performance dashboard |
|
|
183
|
+
| `POST /devformance/run_tests` | Trigger test runner |
|
|
184
|
+
|
|
185
|
+
---
|
|
186
|
+
|
|
187
|
+
## Development
|
|
188
|
+
|
|
189
|
+
Clone the repo and run the included Rails app:
|
|
190
|
+
|
|
191
|
+
```bash
|
|
192
|
+
git clone <repo>
|
|
193
|
+
cd devformance
|
|
194
|
+
bundle install
|
|
195
|
+
rails db:create db:migrate
|
|
196
|
+
bin/dev
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
Open http://localhost:3000/devformance.
|
|
200
|
+
|
|
201
|
+
---
|
|
202
|
+
|
|
203
|
+
## License
|
|
204
|
+
|
|
205
|
+
MIT
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-space-x-reverse:0;--tw-border-style:solid;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-leading:initial;--tw-font-weight:initial;--tw-tracking:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial;--tw-ease:initial}}}@layer theme{:root,:host{--font-sans:ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-mono:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--color-red-50:oklch(97.1% .013 17.38);--color-red-100:oklch(93.6% .032 17.717);--color-red-400:oklch(70.4% .191 22.216);--color-red-500:oklch(63.7% .237 25.331);--color-red-600:oklch(57.7% .245 27.325);--color-red-700:oklch(50.5% .213 27.518);--color-red-800:oklch(44.4% .177 26.899);--color-green-400:oklch(79.2% .209 151.711);--color-green-500:oklch(72.3% .219 149.579);--color-green-600:oklch(62.7% .194 149.214);--color-blue-500:oklch(62.3% .214 259.815);--color-indigo-500:oklch(58.5% .233 277.117);--color-indigo-600:oklch(51.1% .262 276.966);--color-indigo-700:oklch(45.7% .24 277.023);--color-gray-50:oklch(98.5% .002 247.839);--color-gray-100:oklch(96.7% .003 264.542);--color-gray-200:oklch(92.8% .006 264.531);--color-gray-300:oklch(87.2% .01 258.338);--color-gray-500:oklch(55.1% .027 264.364);--color-gray-700:oklch(37.3% .034 259.733);--color-gray-800:oklch(27.8% .033 256.848);--color-gray-900:oklch(21% .034 264.665);--color-white:#fff;--spacing:.25rem;--container-6xl:72rem;--container-7xl:80rem;--text-xs:.75rem;--text-xs--line-height:calc(1 / .75);--text-sm:.875rem;--text-sm--line-height:calc(1.25 / .875);--text-base:1rem;--text-base--line-height:calc(1.5 / 1);--text-lg:1.125rem;--text-lg--line-height:calc(1.75 / 1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75 / 1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2 / 1.5);--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--tracking-wide:.025em;--leading-tight:1.25;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--shadow-sm:0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;--shadow-md:0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;--shadow-lg:0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;--shadow-xl:0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;--ease-in:cubic-bezier(.4, 0, 1, 1);--ease-out:cubic-bezier(0, 0, .2, 1);--ease-in-out:cubic-bezier(.4, 0, .2, 1);--animate-spin:spin 1s linear infinite;--animate-pulse:pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;--animate-bounce:bounce 1s infinite;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4, 0, .2, 1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab, red, red)){::placeholder{color:color-mix(in oklab, currentcolor 50%, transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.\@container{container-type:inline-size}.collapse{visibility:collapse}.invisible{visibility:hidden}.visible{visibility:visible}.sr-only{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.start{inset-inline-start:var(--spacing)}.end{inset-inline-end:var(--spacing)}.top-0{top:calc(var(--spacing) * 0)}.top-4{top:calc(var(--spacing) * 4)}.right-0{right:calc(var(--spacing) * 0)}.right-4{right:calc(var(--spacing) * 4)}.left-0{left:calc(var(--spacing) * 0)}.left-4{left:calc(var(--spacing) * 4)}.z-10{z-index:10}.z-20{z-index:20}.z-30{z-index:30}.z-40{z-index:40}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.m-6{margin:calc(var(--spacing) * 6)}.mx-auto{margin-inline:auto}.mt-1{margin-top:calc(var(--spacing) * 1)}.mt-2{margin-top:calc(var(--spacing) * 2)}.mr-1\.5{margin-right:calc(var(--spacing) * 1.5)}.mr-2{margin-right:calc(var(--spacing) * 2)}.mr-3{margin-right:calc(var(--spacing) * 3)}.mb-2{margin-bottom:calc(var(--spacing) * 2)}.mb-4{margin-bottom:calc(var(--spacing) * 4)}.-ml-1{margin-left:calc(var(--spacing) * -1)}.block{display:block}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-flex{display:inline-flex}.table{display:table}.size-6{width:calc(var(--spacing) * 6);height:calc(var(--spacing) * 6)}.size-8{width:calc(var(--spacing) * 8);height:calc(var(--spacing) * 8)}.h-4{height:calc(var(--spacing) * 4)}.h-5{height:calc(var(--spacing) * 5)}.h-6{height:calc(var(--spacing) * 6)}.h-12{height:calc(var(--spacing) * 12)}.h-14{height:calc(var(--spacing) * 14)}.h-48{height:calc(var(--spacing) * 48)}.w-4{width:calc(var(--spacing) * 4)}.w-5{width:calc(var(--spacing) * 5)}.w-6{width:calc(var(--spacing) * 6)}.w-8{width:calc(var(--spacing) * 8)}.w-12{width:calc(var(--spacing) * 12)}.w-32{width:calc(var(--spacing) * 32)}.w-64{width:calc(var(--spacing) * 64)}.w-\[200px\]{width:200px}.w-full{width:100%}.max-w-6xl{max-width:var(--container-6xl)}.max-w-7xl{max-width:var(--container-7xl)}.flex-shrink,.shrink{flex-shrink:1}.shrink-0{flex-shrink:0}.transform{transform:var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,)}.animate-bounce{animation:var(--animate-bounce)}.animate-pulse{animation:var(--animate-pulse)}.animate-spin{animation:var(--animate-spin)}.cursor-pointer{cursor:pointer}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.items-center{align-items:center}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.gap-2{gap:calc(var(--spacing) * 2)}.gap-4{gap:calc(var(--spacing) * 4)}.gap-6{gap:calc(var(--spacing) * 6)}:where(.space-y-6>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-x-2>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)))}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-x-auto{overflow-x:auto}.\!rounded-full{border-radius:3.40282e38px!important}.rounded{border-radius:.25rem}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.rounded-xl{border-radius:var(--radius-xl)}.border{border-style:var(--tw-border-style);border-width:1px}.border-0{border-style:var(--tw-border-style);border-width:0}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-gray-100{border-color:var(--color-gray-100)}.border-gray-200{border-color:var(--color-gray-200)}.border-gray-300{border-color:var(--color-gray-300)}.border-red-100{border-color:var(--color-red-100)}.border-transparent{border-color:#0000}.border-white\/10{border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.border-white\/10{border-color:color-mix(in oklab, var(--color-white) 10%, transparent)}}.bg-blue-500{background-color:var(--color-blue-500)}.bg-gray-50{background-color:var(--color-gray-50)}.bg-gray-100{background-color:var(--color-gray-100)}.bg-gray-900{background-color:var(--color-gray-900)}.bg-green-500{background-color:var(--color-green-500)}.bg-indigo-600{background-color:var(--color-indigo-600)}.bg-red-50{background-color:var(--color-red-50)}.bg-red-100{background-color:var(--color-red-100)}.bg-red-500{background-color:var(--color-red-500)}.bg-transparent{background-color:#0000}.bg-white{background-color:var(--color-white)}.bg-white\/10{background-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.bg-white\/10{background-color:color-mix(in oklab, var(--color-white) 10%, transparent)}}.bg-white\/80{background-color:#fffc}@supports (color:color-mix(in lab, red, red)){.bg-white\/80{background-color:color-mix(in oklab, var(--color-white) 80%, transparent)}}.from-blue-500{--tw-gradient-from:var(--color-blue-500);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.object-cover{object-fit:cover}.p-2{padding:calc(var(--spacing) * 2)}.p-3{padding:calc(var(--spacing) * 3)}.p-4{padding:calc(var(--spacing) * 4)}.p-6{padding:calc(var(--spacing) * 6)}.px-1{padding-inline:calc(var(--spacing) * 1)}.px-3{padding-inline:calc(var(--spacing) * 3)}.px-4{padding-inline:calc(var(--spacing) * 4)}.px-6{padding-inline:calc(var(--spacing) * 6)}.px-8{padding-inline:calc(var(--spacing) * 8)}.py-0\.5{padding-block:calc(var(--spacing) * .5)}.py-2{padding-block:calc(var(--spacing) * 2)}.py-3{padding-block:calc(var(--spacing) * 3)}.py-4{padding-block:calc(var(--spacing) * 4)}.pb-2{padding-bottom:calc(var(--spacing) * 2)}.font-mono{font-family:var(--font-mono)}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.leading-tight{--tw-leading:var(--leading-tight);line-height:var(--leading-tight)}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-wide{--tw-tracking:var(--tracking-wide);letter-spacing:var(--tracking-wide)}.whitespace-pre-wrap{white-space:pre-wrap}.text-gray-500{color:var(--color-gray-500)}.text-gray-700{color:var(--color-gray-700)}.text-gray-800{color:var(--color-gray-800)}.text-gray-900{color:var(--color-gray-900)}.text-green-400{color:var(--color-green-400)}.text-green-600{color:var(--color-green-600)}.text-indigo-500{color:var(--color-indigo-500)}.text-indigo-600{color:var(--color-indigo-600)}.text-red-400{color:var(--color-red-400)}.text-red-500{color:var(--color-red-500)}.text-red-600{color:var(--color-red-600)}.text-red-700{color:var(--color-red-700)}.text-red-800{color:var(--color-red-800)}.text-white{color:var(--color-white)}.uppercase{text-transform:uppercase}.placeholder-gray-500::placeholder{color:var(--color-gray-500)}.opacity-25{opacity:.25}.opacity-75{opacity:.75}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a), 0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.shadow-\[0_4px_20px_rgba\(0\,0\,0\,0\.1\)\]{--tw-shadow:0 4px 20px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a), 0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a), 0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a), 0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.ring{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.blur{--tw-blur:blur(8px);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.drop-shadow{--tw-drop-shadow-size:drop-shadow(0 1px 2px var(--tw-drop-shadow-color,#0000001a)) drop-shadow(0 1px 1px var(--tw-drop-shadow-color,#0000000f));--tw-drop-shadow:drop-shadow(0 1px 2px #0000001a) drop-shadow(0 1px 1px #0000000f);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.sepia{--tw-sepia:sepia(100%);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.filter{filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.backdrop-filter{-webkit-backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-200{--tw-duration:.2s;transition-duration:.2s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.duration-500{--tw-duration:.5s;transition-duration:.5s}.ease-in{--tw-ease:var(--ease-in);transition-timing-function:var(--ease-in)}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.ease-out{--tw-ease:var(--ease-out);transition-timing-function:var(--ease-out)}.outline-none{--tw-outline-style:none;outline-style:none}.focus-within\:border-indigo-500:focus-within{border-color:var(--color-indigo-500)}.focus-within\:ring-1:focus-within{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.focus-within\:ring-indigo-500:focus-within{--tw-ring-color:var(--color-indigo-500)}@media (hover:hover){.hover\:bg-indigo-700:hover{background-color:var(--color-indigo-700)}.hover\:text-indigo-500:hover{color:var(--color-indigo-500)}}.focus\:ring-0:focus{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.focus\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.focus\:ring-blue-500:focus{--tw-ring-color:var(--color-blue-500)}.focus\:ring-indigo-500:focus{--tw-ring-color:var(--color-indigo-500)}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)}.focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.focus-visible\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.focus-visible\:ring-blue-500:focus-visible{--tw-ring-color:var(--color-blue-500)}@media (min-width:40rem){.sm\:px-6{padding-inline:calc(var(--spacing) * 6)}.sm\:text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}}@media (min-width:48rem){.md\:px-6{padding-inline:calc(var(--spacing) * 6)}}}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@keyframes spin{to{transform:rotate(360deg)}}@keyframes pulse{50%{opacity:.5}}@keyframes bounce{0%,to{animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}}
|
|
Binary file
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1039" height="1024">
|
|
3
|
+
<path
|
|
4
|
+
d="M0 0 C1.30202711 -0.00465992 2.60405422 -0.00931984 3.9455367 -0.01412097 C7.55074053 -0.02659426 11.15570678 -0.02049713 14.76091152 -0.01128729 C18.68655022 -0.00456613 22.6121486 -0.01524932 26.53777868 -0.02368313 C33.41521277 -0.03604987 40.29257864 -0.03726243 47.1700201 -0.0311327 C57.39728038 -0.02204171 67.62447756 -0.03007368 77.85173299 -0.04142394 C96.11907919 -0.06109649 114.38639701 -0.06343706 132.65375126 -0.05822874 C148.64290203 -0.05367222 164.63204157 -0.05426991 180.62119198 -0.06006908 C182.76565292 -0.06082595 184.91011385 -0.06158193 187.05457479 -0.06233703 C190.28607617 -0.06348222 193.51757754 -0.0646321 196.74907891 -0.06579627 C226.79611176 -0.07650255 256.84314087 -0.08122531 286.89017487 -0.07332611 C288.02299025 -0.07302894 289.15580563 -0.07273176 290.32294875 -0.07242559 C299.52227682 -0.06997664 308.72160485 -0.06736506 317.92093287 -0.06474145 C353.79826264 -0.05464078 389.6755456 -0.06299051 425.55286884 -0.086236 C465.86191819 -0.11231062 506.17093936 -0.12515583 546.47999746 -0.11804825 C550.77850679 -0.11733219 555.07701613 -0.1166578 559.37552547 -0.1160078 C560.96312558 -0.11575309 560.96312558 -0.11575309 562.58279841 -0.11549323 C578.55765198 -0.11319054 594.53247938 -0.12116593 610.50732708 -0.13429928 C628.67748537 -0.14921082 646.84758234 -0.15005339 665.01773932 -0.13222837 C675.18379713 -0.12266585 685.34971193 -0.12409924 695.51576019 -0.14146306 C702.3109659 -0.15195747 709.10606276 -0.14784519 715.90125777 -0.13198302 C719.76996585 -0.1233571 723.63839387 -0.12091191 727.50708749 -0.13625234 C751.68297093 -0.22541006 771.28190795 1.0921168 789.83289814 18.38031673 C796.97972574 25.78532202 801.92485251 33.91393677 805.83289814 43.38031673 C806.0952926 44.00061431 806.35768706 44.62091189 806.62803286 45.26000637 C809.79707995 54.0178206 809.18071671 63.11408947 809.0707674 72.2812109 C809.05891159 74.21965108 809.04844878 76.1581002 809.03925067 78.09655482 C809.01634766 82.31205039 808.98381295 86.52732567 808.94399571 90.74269509 C808.8791765 97.63362987 808.83670717 104.52460422 808.79694653 111.41572285 C808.73677817 121.51036628 808.66740466 131.60490935 808.59233379 141.6994524 C808.39820044 168.01937837 808.26597218 194.33967481 808.13798876 220.65999378 C808.12371266 223.59440608 808.10922945 226.52881725 808.09456186 229.46322761 C807.76336159 295.79293507 807.85520073 362.11939702 808.05402964 428.44938084 C808.08596675 439.11420712 808.11587303 449.77903746 808.14439487 460.44387341 C808.14847983 461.9688442 808.15256528 463.49381499 808.15665124 465.01878578 C808.15867416 465.77386911 808.16069708 466.52895244 808.16278131 467.30691707 C808.16480477 468.06215467 808.16682823 468.81739226 808.16891301 469.59551585 C808.1709358 470.35089918 808.1729586 471.10628252 808.17504269 471.88455626 C808.24682823 498.65472226 808.32335249 525.42487456 808.40443134 552.195014 C808.40673063 552.95436282 808.40902991 553.71371165 808.41139887 554.49607104 C808.46593096 572.47511755 808.52341587 590.45415182 808.58570576 608.43317318 C808.5898252 609.62281888 808.5898252 609.62281888 808.59402786 610.83649783 C808.60792217 614.84696525 808.62184128 618.85743259 808.63576631 622.8678999 C808.63852409 623.66228087 808.64128187 624.45666184 808.64412323 625.27511497 C808.64969103 626.87863395 808.65526171 628.48215292 808.66083529 630.08567189 C808.75279069 656.56521805 808.83119963 683.0447764 808.89420219 709.52440779 C808.90307141 713.24523833 808.91211832 716.96606842 808.92128658 720.68689823 C808.92308593 721.41792416 808.92488527 722.14895009 808.92673914 722.90212831 C808.95583202 734.54259619 808.99944657 746.18296412 809.04922241 757.82336009 C809.09840374 769.37897827 809.1330832 780.93454335 809.15356024 792.49025308 C809.16505991 798.71730023 809.18312634 804.94414632 809.21888638 811.17110538 C809.25146212 816.86449523 809.26539164 822.55761816 809.26463864 828.25109834 C809.26763695 830.30326464 809.27741137 832.3554351 809.29479726 834.40752994 C809.45774466 854.48129363 805.31008329 871.21123915 791.09241962 886.26752377 C778.76406498 898.74476652 762.6719595 905.66185299 745.16336757 905.77912349 C743.36563035 905.76858824 743.36563035 905.76858824 741.5315752 905.75784016 C739.57500619 905.76438064 739.57500619 905.76438064 737.57891053 905.77105325 C733.97179587 905.78268506 730.36492362 905.77577237 726.75781312 905.7657194 C722.82842997 905.75808732 718.89908307 905.76789772 714.9697051 905.7754494 C708.08736017 905.78627243 701.20508586 905.78596317 694.32273769 905.77830791 C684.088411 905.76695521 673.85414384 905.77276442 663.61981754 905.78193284 C645.34078673 905.7977286 627.06178738 905.79636146 608.78275357 905.7876961 C592.78649 905.78015012 576.79023796 905.77817901 560.79397297 905.78176403 C559.7329975 905.78199319 558.67202203 905.78222234 557.57889578 905.78245844 C553.2720753 905.78339245 548.96525482 905.78434765 544.65843435 905.78533773 C504.25527174 905.79451521 463.85212918 905.78619359 423.44896967 905.77004704 C387.55138171 905.75581018 351.65382567 905.75708406 315.75623798 905.77143002 C275.42707851 905.78749311 235.09793674 905.79386435 194.76877451 905.78459322 C190.46979078 905.78363107 186.17080705 905.78269255 181.87182331 905.78176403 C180.81330005 905.7815268 179.75477679 905.78128957 178.66417706 905.78104515 C162.67777442 905.7776324 146.69138458 905.78162417 130.70498371 905.78920269 C112.52815492 905.79777663 94.35136251 905.79564415 76.17453825 905.77936046 C66.0009928 905.7705472 55.82752613 905.76998292 45.65398271 905.78129898 C38.85892665 905.78802375 32.06393378 905.78384373 25.26888709 905.77078467 C21.39703666 905.76364658 17.5253428 905.76121183 13.65349728 905.77200262 C9.48027497 905.7835147 5.30743584 905.77179052 1.13422108 905.75784016 C-0.0642704 905.76486365 -1.26276188 905.77188715 -2.49757129 905.77912349 C-20.09484123 905.66125903 -35.51898121 898.54660422 -48.16710186 886.38031673 C-61.61079645 872.36657149 -66.65088313 855.57821377 -66.54741859 836.50862885 C-66.55085889 835.14105252 -66.55561023 833.77347898 -66.56153956 832.40591118 C-66.57398871 828.66457494 -66.56792672 824.92346825 -66.55870588 821.18213124 C-66.55197505 817.10547344 -66.56267271 813.02885415 -66.57110173 808.95220464 C-66.58345921 801.812777 -66.58468503 794.67341509 -66.57855129 787.53398037 C-66.56945452 776.91727902 -66.57749683 766.30063838 -66.58884253 755.68394168 C-66.60850712 736.72139648 -66.61085728 717.75887862 -66.60564733 698.79632565 C-66.60109009 682.2012511 -66.60168943 665.60618737 -66.60748768 649.01111317 C-66.60824454 646.78504421 -66.60900052 644.55897525 -66.60975562 642.33290629 C-66.61090082 638.97842715 -66.61205069 635.62394801 -66.61321487 632.26946888 C-66.62391958 601.08356558 -66.62864536 569.89766588 -66.62074471 538.71176147 C-66.62044753 537.53622474 -66.62015036 536.360688 -66.61984418 535.14952894 C-66.61739524 525.6033393 -66.61478366 516.05714971 -66.61216005 506.51096012 C-66.60205656 469.27053648 -66.61041508 432.03015792 -66.63365459 394.78974056 C-66.65972305 352.94837262 -66.67257633 311.10703182 -66.66546685 269.26565546 C-66.66475078 264.80488233 -66.66407639 260.3441092 -66.6634264 255.88333607 C-66.66325659 254.78498279 -66.66308678 253.68662951 -66.66291183 252.5549928 C-66.66060835 235.97131122 -66.6685881 219.38765484 -66.68171787 202.80397892 C-66.69662155 183.94613998 -66.69748233 165.08836012 -66.67964696 146.23052246 C-66.67007708 135.67744516 -66.67153293 125.12450561 -66.68888165 114.57143748 C-66.69936304 107.52087926 -66.69528214 100.47042606 -66.67940161 93.41987819 C-66.67076183 89.40372196 -66.66836459 85.38783583 -66.68367093 81.37169338 C-66.69748564 77.71235334 -66.69263291 74.05351374 -66.67338574 70.39420257 C-66.66793442 68.47007777 -66.68193634 66.54592717 -66.69691709 64.62185296 C-66.54504321 46.45615776 -58.97430557 31.03531259 -46.16710186 18.38031673 C-45.48003155 17.67133236 -44.79296124 16.96234798 -44.08507061 16.23187923 C-31.95582956 4.48519309 -16.50111026 -0.09265086 0 0 Z M-33.82335186 41.43109798 C-40.94114741 51.75603978 -42.46519232 61.17796062 -42.42437077 73.44935703 C-42.42706564 74.79063892 -42.43063432 76.13191929 -42.43499523 77.4731968 C-42.44445049 81.16479609 -42.44145348 84.85629666 -42.43643969 88.54790078 C-42.4331738 92.56199354 -42.441455 96.57606517 -42.44825804 100.59015119 C-42.45856931 107.62748129 -42.46139988 114.66478387 -42.45934582 121.70212078 C-42.45629874 132.16709411 -42.46461333 142.63203694 -42.47509507 153.09700435 C-42.49445066 172.87476088 -42.50006388 192.65250705 -42.50120918 212.43027194 C-42.50212784 227.70316643 -42.50624226 242.97605684 -42.51261044 258.24895 C-42.51440549 262.64331956 -42.51618512 267.03768913 -42.51796019 271.43205869 C-42.51840229 272.52447886 -42.51884438 273.61689903 -42.51929988 274.74242284 C-42.53161079 305.47641415 -42.53950076 336.21040404 -42.53861332 366.94439793 C-42.53858216 368.10347042 -42.538551 369.26254291 -42.5385189 370.45673881 C-42.53835268 376.33155415 -42.5381546 382.20636948 -42.53794949 388.08118482 C-42.5379096 389.24796757 -42.53786971 390.41475033 -42.53782861 391.61689013 C-42.53774773 393.97641049 -42.53766414 396.33593084 -42.53757782 398.6954512 C-42.53635235 435.40471258 -42.55136384 472.11393702 -42.57872295 508.82318783 C-42.6094403 550.05546985 -42.62665564 591.2877276 -42.62479651 632.5200218 C-42.62464725 636.91627749 -42.62454983 641.31253318 -42.62448788 645.70878887 C-42.62446457 646.79127685 -42.62444126 647.87376482 -42.62441724 648.98905546 C-42.62435568 666.41397957 -42.63713099 683.83887162 -42.65435241 701.26378619 C-42.67130155 718.77537439 -42.67328837 736.28691566 -42.66013376 753.79850753 C-42.65273968 764.20270318 -42.65641628 774.60675633 -42.67601844 785.01093691 C-42.68800917 791.96242725 -42.68543746 798.91381426 -42.67107745 805.86529984 C-42.66330676 809.82496636 -42.66178463 813.78435692 -42.67799215 817.74400409 C-42.69263131 821.35214362 -42.688583 824.95977935 -42.67014442 828.56789706 C-42.6651222 830.46468066 -42.6795629 832.36148606 -42.69498998 834.25821358 C-42.56870769 849.55862387 -37.45409528 861.33034938 -27.16710186 872.38031673 C-26.58719819 873.01824696 -26.00729452 873.65617719 -25.40981802 874.31343863 C-17.72755877 881.39337756 -7.682256 882.10682049 2.26006222 882.00952244 C3.565895 882.01678964 4.87172778 882.02405685 6.21713126 882.03154427 C9.82379985 882.0509074 13.42979386 882.03942293 17.03645072 882.02265451 C20.96693929 882.00992255 24.89732782 882.0262896 28.82780206 882.03887117 C35.71050456 882.05690105 42.59301085 882.05639953 49.47572231 882.04363537 C59.71048723 882.02470638 69.94508693 882.03440012 80.17985077 882.0496769 C98.45953883 882.07599654 116.73913947 882.07372742 135.01883583 882.05928234 C151.01444628 882.04670424 167.01002469 882.04342122 183.00563908 882.04939556 C184.06669093 882.04977749 185.12774279 882.05015941 186.22094773 882.05055291 C190.52808815 882.0521096 194.83522855 882.0537016 199.14236893 882.05535173 C239.54384628 882.07064573 279.94526796 882.05678062 320.34673671 882.02986724 C356.24449742 882.00613589 392.14216945 882.00826534 428.03992939 882.0321722 C468.3705603 882.05894145 508.70114204 882.06956451 549.0317806 882.05411088 C553.33044997 882.05250729 557.62911935 882.05094309 561.92778873 882.04939556 C562.98623292 882.04900017 564.0446771 882.04860479 565.13519535 882.04819742 C581.12251302 882.04250878 597.10979514 882.04916374 613.09710789 882.06179333 C631.27286736 882.07608013 649.44852575 882.0725356 667.6242726 882.04538961 C677.79808133 882.03069622 687.97167122 882.02976689 698.14547432 882.04862048 C704.93940517 882.05982288 711.73316037 882.05287202 718.52706517 882.03109663 C722.39914665 882.01919178 726.27079302 882.01515756 730.14286096 882.03312655 C734.31474209 882.05228956 738.48555645 882.03279142 742.65741634 882.00952244 C743.85824899 882.02122827 745.05908164 882.0329341 746.29630315 882.04499465 C753.95261682 881.95933492 759.31639502 880.43023789 765.83289814 876.38031673 C765.83289814 875.72031673 765.83289814 875.06031673 765.83289814 874.38031673 C767.33680439 873.22406673 767.33680439 873.22406673 769.39539814 871.88031673 C778.47865396 865.20854476 782.38274564 856.13443206 784.83289814 845.38031673 C785.34285513 840.75474131 785.3718581 836.18927428 785.3362627 831.53896141 C785.34044582 830.18696873 785.34637862 828.83498056 785.35388017 827.48300222 C785.36935706 823.78954355 785.36018987 820.09650701 785.34676836 816.40305575 C785.33657628 812.37663892 785.34967903 808.35028434 785.35974169 804.32387644 C785.37416085 797.27423554 785.37376724 790.22471725 785.36355305 783.17507076 C785.3484055 772.69196636 785.35616717 762.20896515 785.36838628 751.72586141 C785.38943884 733.00194815 785.38762787 714.27808951 785.37607063 695.55417105 C785.36600674 679.16914734 785.36338238 662.78414364 785.3681612 646.39911747 C785.36846674 645.31208401 785.36877228 644.22505056 785.36908708 643.10507669 C785.37033244 638.69241808 785.37160604 634.27975947 785.37292614 629.86710088 C785.38516068 588.47765694 785.37407044 547.08824779 785.35253855 505.69880922 C785.33355495 468.92815703 785.33525593 432.15756024 785.35438251 395.38690853 C785.3758013 354.07145273 785.38429434 312.75602766 785.37193346 271.44056708 C785.37065059 267.03627814 785.36939923 262.63198919 785.3681612 258.22770023 C785.36784489 257.14325754 785.36752858 256.05881484 785.36720269 254.94151024 C785.36265304 238.56623986 785.36797342 222.19099168 785.37807941 205.81572437 C785.38951277 187.19686117 785.3866649 168.57806112 785.36495644 149.9592058 C785.3532081 139.53922242 785.35244916 129.11937578 785.36754114 118.69939594 C785.3765107 111.73886124 785.37092841 104.77843617 785.35352206 97.81791771 C785.34400897 93.85237945 785.34074887 89.88711286 785.35514599 85.92158317 C785.36812661 82.30934858 785.36249373 78.69762506 785.34242335 75.08542727 C785.33653592 73.18406628 785.35011483 71.28267483 785.36464047 69.3813602 C785.24491847 55.62906261 781.16020618 46.020874 771.73133564 36.18891048 C764.38877433 29.14472181 755.69535414 25.25951146 745.48318195 25.25151557 C744.38930383 25.24824337 743.2954257 25.24497118 742.16839975 25.24159983 C740.3627598 25.24382526 740.3627598 25.24382526 738.52064228 25.24609566 C736.59689851 25.24256731 736.59689851 25.24256731 734.63429123 25.23896769 C731.05598539 25.23255701 727.47770198 25.23240691 723.89939149 25.2332451 C720.01331837 25.23307581 716.12725333 25.22717203 712.24118423 25.22200423 C704.52524567 25.21266854 696.80931284 25.20875456 689.09336932 25.20648527 C679.85451159 25.20352571 670.6156615 25.19482974 661.37680777 25.18607099 C639.04383018 25.16521533 616.71085126 25.15475498 594.3778662 25.14594138 C583.81511372 25.14173643 573.25236181 25.13651423 562.68960982 25.13125685 C526.5404694 25.11336559 490.39132882 25.09836909 454.24218464 25.09093666 C451.97222735 25.0904619 449.70227007 25.08998601 447.43231279 25.089509 C446.30660436 25.08927262 445.18089593 25.08903625 444.02107513 25.08879271 C438.3175617 25.08759149 432.61404828 25.08637605 426.91053486 25.08515072 C425.21270743 25.08479049 425.21270743 25.08479049 423.48058046 25.08442299 C386.77830118 25.07652924 350.07605421 25.05309639 313.37378904 25.02059477 C274.58095543 24.98630451 235.78814073 24.96658626 196.99529171 24.96329242 C192.73746585 24.96287487 188.47964 24.96239531 184.22181416 24.96186924 C183.17339802 24.96174605 182.12498188 24.96162286 181.04479556 24.96149593 C164.16531804 24.95916289 147.28587801 24.94349706 130.40641386 24.92302739 C113.44226094 24.90278129 96.4781531 24.89728634 79.51399034 24.90679803 C69.43397574 24.91201774 59.35411111 24.90611331 49.27411806 24.88426336 C42.53989274 24.87076831 35.8057708 24.87182081 29.07154448 24.88466531 C25.23508994 24.89157057 21.39892238 24.89220231 17.56249332 24.87510522 C13.42540482 24.85681873 9.28898205 24.86961975 5.15188313 24.88533211 C3.96685249 24.8751099 2.78182185 24.86488769 1.5608812 24.85435572 C-13.03277089 24.97548272 -24.58637115 30.0131635 -33.82335186 41.43109798 Z "
|
|
5
|
+
fill="#4D8E65" transform="translate(160.1671018600464,51.619683265686035)" />
|
|
6
|
+
<path
|
|
7
|
+
d="M0 0 C7.43382389 4.22668815 12.7217031 9.96710086 15.90234375 17.953125 C18.19647769 26.80386658 17.11615187 35.60880506 12.5625 43.5 C7.86448365 50.57817848 1.69409489 54.59539638 -6.38671875 57.10546875 C-14.53441775 58.67293084 -21.12884787 57.87556149 -28.28125 53.69140625 C-31.20118151 52.05678799 -31.20118151 52.05678799 -34.4375 51.5 C-37.07175409 52.93197275 -37.07175409 52.93197275 -39.6875 55.0625 C-45.35931889 59.45041848 -45.35931889 59.45041848 -47.72265625 60.94921875 C-56.16844651 66.36819401 -60.21838746 76.97768873 -62.4375 86.5 C-62.91498395 89.82834398 -63.23433469 93.1442696 -63.4375 96.5 C-63.1075 96.5 -62.7775 96.5 -62.4375 96.5 C-62.42291748 97.15782471 -62.40833496 97.81564941 -62.39331055 98.4934082 C-61.28382432 143.57461717 -49.27827108 183.1501692 -16.4375 215.5 C-4.29040896 226.7491206 9.55433729 235.09849481 24.00390625 243 C61.44125212 263.47417334 61.44125212 263.47417334 71.1796875 280.29296875 C72.43053155 282.80935666 72.43053155 282.80935666 75.5625 283.5 C75.81829834 282.75741943 76.07409668 282.01483887 76.33764648 281.24975586 C77.62478024 278.36018292 78.94151431 276.73419751 81.16015625 274.50390625 C82.24006836 273.41819336 82.24006836 273.41819336 83.34179688 272.31054688 C84.09525391 271.56869141 84.84871094 270.82683594 85.625 270.0625 C86.35138672 269.32451172 87.07777344 268.58652344 87.82617188 267.82617188 C92.20822643 263.4673643 96.61465566 259.90808564 101.90795898 256.70678711 C102.45395752 256.30854736 102.99995605 255.91030762 103.5625 255.5 C103.5625 254.84 103.5625 254.18 103.5625 253.5 C104.22556152 253.13350342 104.88862305 252.76700684 105.57177734 252.3894043 C132.84409207 237.84744421 132.84409207 237.84744421 157.5625 219.5 C158.54605469 218.64792969 159.52960938 217.79585937 160.54296875 216.91796875 C182.07676817 198.00882541 196.0033885 172.96807439 203.5625 145.5 C203.87791748 144.37827393 203.87791748 144.37827393 204.19970703 143.23388672 C207.44067879 131.14503639 207.99399661 119.06851584 208.125 106.625 C208.13980408 105.88750519 208.15460815 105.15001038 208.16986084 104.39016724 C208.42172325 89.33520689 205.2780081 75.51802736 195.5625 63.5 C191.09728914 58.90202074 186.375974 54.3231567 180.5625 51.5 C177.56520997 51.77248091 175.19982828 53.09891935 172.5625 54.5 C165.238434 58.39091006 157.49678103 58.44617448 149.5 56.5 C141.64229373 53.84369992 136.28938471 48.49176687 132.5625 41.1875 C129.17108085 33.68634028 128.16781139 26.03674574 130.2109375 17.92578125 C133.68723792 9.41330202 140.16617375 2.33596866 148.5625 -1.5 C157.95364528 -3.89773922 167.06813293 -3.19775431 175.5625 1.5 C182.51186321 5.67238109 185.55662558 12.17436264 188.5625 19.5 C188.95306556 21.07956576 189.32986573 22.66265405 189.6875 24.25 C191.34114345 29.6903891 195.73491886 31.64752855 200.3671875 34.48828125 C216.49902652 44.64463467 226.75436983 62.33514017 231.5625 80.5 C233.3096433 88.77956961 233.88398525 96.80272142 233.8125 105.25 C233.80561157 106.94201538 233.80561157 106.94201538 233.79858398 108.66821289 C233.58515798 128.43202605 233.58515798 128.43202605 230.5625 137.5 C229.9025 137.5 229.2425 137.5 228.5625 137.5 C228.48773437 138.29019531 228.41296875 139.08039063 228.3359375 139.89453125 C226.44061294 156.1534429 220.85593476 170.94753347 213.5625 185.5 C213.1190625 186.44617188 212.675625 187.39234375 212.21875 188.3671875 C209.91539848 193.2248968 207.31364467 197.39363579 203.98046875 201.609375 C202.57302807 203.48596257 201.43676494 205.38122361 200.3125 207.4375 C198.5625 210.5 198.5625 210.5 196.5625 211.5 C196.29566406 212.39074219 196.02882813 213.28148437 195.75390625 214.19921875 C194.36934306 218.03513971 192.28626131 220.44518209 189.5 223.3125 C188.75484131 224.09669312 188.75484131 224.09669312 187.99462891 224.89672852 C186.98797758 225.9519846 185.97696232 227.0030966 184.96142578 228.04980469 C183.76645788 229.28856722 182.59722143 230.55206508 181.43359375 231.8203125 C172.16825726 241.64773398 160.18671504 251.50291488 147.5625 256.5 C145.21000955 257.68179355 142.88246061 258.88288258 140.5625 260.125 C139.91112061 260.47111328 139.25974121 260.81722656 138.58862305 261.17382812 C132.97168962 264.1963932 127.60587955 267.54080834 122.26953125 271.03125 C119.5625 272.5 119.5625 272.5 115.5625 272.5 C115.5625 273.82 115.5625 275.14 115.5625 276.5 C113.65625 278.140625 113.65625 278.140625 111.0625 279.75 C98.85249056 287.91866829 90.51438584 299.16945888 87.14526367 313.59277344 C85.78261369 322.7288649 85.97303531 332.03044939 85.875 341.25 C85.84177392 343.41147837 85.8072795 345.57293764 85.77148438 347.734375 C85.68718891 352.98945227 85.61859036 358.24454993 85.5625 363.5 C86.47596191 363.55260986 87.38942383 363.60521973 88.33056641 363.65942383 C101.33403058 364.48380408 113.22103629 367.07530428 125.4375 371.5625 C126.10958496 371.80766357 126.78166992 372.05282715 127.47412109 372.30541992 C132.1866547 374.12200013 132.1866547 374.12200013 134.01049805 375.95629883 C135.75562386 377.69209095 137.38483814 378.58036168 139.58984375 379.6640625 C140.37617187 380.05916016 141.1625 380.45425781 141.97265625 380.86132812 C142.80667969 381.27833984 143.64070312 381.69535156 144.5 382.125 C161.3991571 390.81635866 175.6970283 403.0920515 187.81640625 417.73046875 C189.42087647 419.58247717 189.42087647 419.58247717 191.453125 420.296875 C194.82666387 422.22104161 196.63215463 425.40088881 198.75 428.5625 C199.22977295 429.27277344 199.7095459 429.98304688 200.20385742 430.71484375 C211.43192116 447.65445355 219.03914574 465.49228134 223.12451172 485.38525391 C223.55081931 487.44360191 224.0109258 489.49232769 224.47265625 491.54296875 C228.52281456 510.54509491 226.8537362 529.5166198 223.5625 548.5 C223.2325 547.84 222.9025 547.18 222.5625 546.5 C221.9025 546.5 221.2425 546.5 220.5625 546.5 C220.60761719 547.48484375 220.65273438 548.4696875 220.69921875 549.484375 C220.69376584 553.82489042 219.64959798 557.62641087 218.375 561.75 C218.14868896 562.49725342 217.92237793 563.24450684 217.68920898 564.0144043 C215.7951685 570.09540923 213.43907148 575.81434258 210.5625 581.5 C209.47910578 583.64580259 208.39577333 585.79163637 207.3125 587.9375 C206.81234375 588.90558594 206.3121875 589.87367188 205.796875 590.87109375 C204.52748837 593.34592312 204.52748837 593.34592312 204.0703125 595.5390625 C198.5825909 616.73011053 169.91646906 638.38732474 152.24609375 649.19140625 C128.22570459 663.31775879 102.41418559 670.9698105 74.5 670.8125 C73.77539581 670.80968018 73.05079163 670.80686035 72.30422974 670.80395508 C31.39676712 670.56552269 -4.82223807 655.49630235 -34.125 626.875 C-34.888125 626.09125 -35.65125 625.3075 -36.4375 624.5 C-36.9325 624.03851562 -37.4275 623.57703125 -37.9375 623.1015625 C-56.52081 605.46462477 -68.44152867 580.83538392 -75.4375 556.5 C-75.63504883 555.84354492 -75.83259766 555.18708984 -76.03613281 554.51074219 C-80.61195809 538.79117223 -80.4841431 521.75833732 -79.4375 505.5 C-79.1075 505.17 -78.7775 504.84 -78.4375 504.5 C-78.18831807 503.11931154 -77.99401924 501.72861839 -77.82421875 500.3359375 C-77.71287598 499.4682373 -77.6015332 498.60053711 -77.48681641 497.70654297 C-77.36741699 496.77213379 -77.24801758 495.83772461 -77.125 494.875 C-75.4525839 482.61130779 -73.04126124 471.14983969 -67.59765625 459.9296875 C-66.53705157 457.70848848 -65.64637255 455.50138718 -64.8125 453.1875 C-63.5528481 449.80934262 -62.04721519 446.71943038 -60.4375 443.5 C-60.00050781 442.10201172 -60.00050781 442.10201172 -59.5546875 440.67578125 C-58.40119494 437.39679715 -56.97325394 434.75085494 -55.125 431.8125 C-54.26455078 430.41451172 -54.26455078 430.41451172 -53.38671875 428.98828125 C-51.27600062 426.29383746 -49.38077574 425.18382751 -46.4375 423.5 C-44.38301668 421.4718412 -44.38301668 421.4718412 -42.4375 419.125 C-36.72879486 412.61574188 -30.64532678 406.52938063 -24.4375 400.5 C-23.75042969 399.8296875 -23.06335938 399.159375 -22.35546875 398.46875 C-16.95971693 393.48443895 -10.77598423 389.62388104 -4.6328125 385.63671875 C-1.49864491 383.69096762 -1.49864491 383.69096762 0.5625 381.5 C4.01992343 378.5562975 7.92516949 376.83592028 12.0625 375.0625 C12.78026611 374.75465576 13.49803223 374.44681152 14.23754883 374.12963867 C23.80618528 370.07820775 33.17442816 367.2416197 43.375 365.25 C44.27114014 365.0744458 45.16728027 364.8988916 46.09057617 364.71801758 C47.38572144 364.4786145 47.38572144 364.4786145 48.70703125 364.234375 C49.47378174 364.09225586 50.24053223 363.95013672 51.03051758 363.80371094 C54.22000467 363.42113241 57.35351189 363.45392272 60.5625 363.5 C60.55726318 362.26846191 60.55202637 361.03692383 60.54663086 359.76806641 C60.52856447 355.20964278 60.51706196 350.65122233 60.50756836 346.09277344 C60.5025319 344.11783313 60.49570249 342.14289657 60.48706055 340.16796875 C60.47496492 337.33332395 60.4692649 334.49872834 60.46484375 331.6640625 C60.45710182 330.33430893 60.45710182 330.33430893 60.44920349 328.97769165 C60.44862829 322.72774341 60.44862829 322.72774341 61.5625 320.5 C59.7755355 309.62416436 56.80919901 299.04011962 49.5625 290.5 C48.24533675 289.80192895 46.91192667 289.13345867 45.5625 288.5 C44.203125 287.125 44.203125 287.125 42.8125 285.5 C34.69271558 277.22733261 23.42349609 271.94745083 13.37109375 266.41308594 C-29.73949476 242.66594768 -29.73949476 242.66594768 -38.83984375 227.1015625 C-40.61231321 224.21534084 -42.64258802 222.05430737 -45 219.625 C-53.80744489 210.08467284 -60.53536593 199.03156228 -66.4375 187.5 C-66.77652344 186.860625 -67.11554688 186.22125 -67.46484375 185.5625 C-69.4375 181.78081797 -69.4375 181.78081797 -69.4375 179.5 C-70.4275 179.17 -71.4175 178.84 -72.4375 178.5 C-73.56811529 176.24479936 -74.49642067 174.10211122 -75.375 171.75 C-75.76522339 170.73389648 -75.76522339 170.73389648 -76.16333008 169.69726562 C-80.3956346 158.50880557 -83.40971433 147.29475334 -85.4375 135.5 C-85.64503906 134.32566406 -85.85257812 133.15132812 -86.06640625 131.94140625 C-89.68170679 108.05008448 -89.0311987 83.51364688 -78.4375 61.5 C-77.20815679 60.27065679 -75.96150094 59.05800087 -74.6875 57.875 C-71.62494244 54.64230036 -69.0741878 51.08245625 -66.4375 47.5 C-62.26885069 41.89837749 -57.4485675 38.00645604 -51.4375 34.5 C-50.7775 33.84 -50.1175 33.18 -49.4375 32.5 C-47.3125 31.875 -47.3125 31.875 -45.4375 31.5 C-45.4375 30.51 -45.4375 29.52 -45.4375 28.5 C-44.79641863 26.82332564 -44.12278045 25.15910004 -43.4375 23.5 C-43.24285156 22.83742187 -43.04820312 22.17484375 -42.84765625 21.4921875 C-40.13130224 12.26622771 -35.89666484 5.8300657 -27.68359375 0.69140625 C-18.78551306 -4.02844524 -9.19832436 -4.26320323 0 0 Z M-20.4375 427.5 C-21.00210938 428.04269531 -21.56671875 428.58539062 -22.1484375 429.14453125 C-25.02429676 431.92938231 -27.40556923 434.45164769 -29.625 437.8125 C-31.5548595 440.67401581 -32.49014424 441.02632212 -35.4375 442.5 C-38.66097776 446.55958812 -38.66097776 446.55958812 -39.4375 451.5 C-40.0975 451.5 -40.7575 451.5 -41.4375 451.5 C-53.5431345 476.32760995 -53.5431345 476.32760995 -56.4375 503.5 C-54.69365866 505.24384134 -52.28243024 504.63395532 -49.91137695 504.6418457 C-48.72957352 504.64888016 -47.54777008 504.65591461 -46.33015442 504.66316223 C-44.3974897 504.66940865 -44.3974897 504.66940865 -42.42578125 504.67578125 C-40.41479427 504.69303875 -38.40380717 504.71031984 -36.39283276 504.72898388 C-31.41857555 504.774608 -26.44442547 504.81227532 -21.4699707 504.82592773 C-18.01260887 504.83603957 -14.55586319 504.86545012 -11.09874535 504.90724754 C-9.14577011 504.92547798 -7.19263639 504.9229139 -5.23957825 504.91999817 C5.99971051 505.07476765 5.99971051 505.07476765 10.5625 509.5 C12.25341797 511.79003906 12.25341797 511.79003906 13.5546875 514.265625 C14.03164063 515.15507813 14.50859375 516.04453125 15 516.9609375 C15.474375 517.88132812 15.94875 518.80171875 16.4375 519.75 C16.93507813 520.68585938 17.43265625 521.62171875 17.9453125 522.5859375 C19.16463667 524.88389458 20.3696685 527.1882123 21.5625 529.5 C22.2225 529.5 22.8825 529.5 23.5625 529.5 C28.83034866 508.55622747 34.02952805 487.60567642 38.83935547 466.55102539 C39.8450842 462.16526053 40.86644273 457.783229 41.89111328 453.40185547 C42.48496657 450.83511359 43.05572508 448.26452318 43.62109375 445.69140625 C45.99044013 435.33096679 45.99044013 435.33096679 49.375 432.0625 C53.22070197 430.17735197 55.33061363 429.81987541 59.5625 430.5 C63.38369546 432.47900054 65.2088678 433.63279574 66.85424805 437.66772461 C67.11246338 438.92077393 67.37067871 440.17382324 67.63671875 441.46484375 C67.78888351 442.161577 67.94104828 442.85831024 68.0978241 443.57615662 C68.42805328 445.08844215 68.74893116 446.60279353 69.0614624 448.11883545 C69.74574044 451.3708441 70.51824711 454.59961527 71.28863525 457.8321228 C72.336759 462.23773734 73.35279448 466.65081425 74.375 471.0625 C74.81588597 472.95996837 75.25680435 474.85742921 75.69775391 476.75488281 C77.70100859 485.38672383 79.69052009 494.02130897 81.62890625 502.66796875 C81.78577408 503.36712906 81.94264191 504.06628937 82.10426331 504.78663635 C82.8177772 507.9706983 83.52695326 511.15558576 84.22973633 514.34204102 C86.1125295 522.79622246 88.27811424 531.14675789 90.5625 539.5 C92.05695612 536.70563704 93.06027873 534.05581332 93.859375 530.9921875 C94.09293701 530.10047852 94.32649902 529.20876953 94.56713867 528.29003906 C94.81310791 527.32807617 95.05907715 526.36611328 95.3125 525.375 C95.57200439 524.37178711 95.83150879 523.36857422 96.09887695 522.33496094 C98.37456093 513.4404128 100.45733208 504.50386311 102.46972656 495.54638672 C103.61647825 490.46619655 104.805379 485.40074367 106.11328125 480.359375 C106.34313721 479.47217773 106.57299316 478.58498047 106.80981445 477.67089844 C107.5625 475.5 107.5625 475.5 109.5625 473.5 C110.04200649 472.24441363 110.47508669 470.97065742 110.875 469.6875 C112.40177834 465.58615426 113.80116715 462.98087912 117.5625 460.5 C121.0469646 460.19222395 124.25453424 460.32318386 127.5625 461.5 C128.67578125 463.37890625 128.67578125 463.37890625 129.5625 465.5 C130.2707769 466.19534599 130.2707769 466.19534599 130.99336243 466.90473938 C132.63928794 468.57806631 133.51840401 470.04916768 134.55541992 472.14526367 C135.10304993 473.2410675 135.10304993 473.2410675 135.66174316 474.35900879 C136.03504761 475.12096558 136.40835205 475.88292236 136.79296875 476.66796875 C137.14379517 477.37264282 137.49462158 478.07731689 137.8560791 478.80334473 C139.16064393 481.42813085 140.45470106 484.05812893 141.75 486.6875 C144.658125 492.565625 147.56625 498.44375 150.5625 504.5 C167.3925 504.5 184.2225 504.5 201.5625 504.5 C200.79006714 494.37323937 200.79006714 494.37323937 198.625 484.9375 C197.38182913 480.65661608 196.36468696 476.4933014 195.8125 472.0625 C193.37304772 457.76518837 182.67663477 441.41994338 172.5625 431.5 C171.41335593 429.97624509 170.2866242 428.43522021 169.1875 426.875 C166.02865008 422.72900948 163.43347455 421.43159336 158.5625 419.5 C157.14931768 418.31492978 155.77779416 417.07942039 154.4375 415.8125 C104.55272973 369.79737464 24.19712015 381.65903876 -20.4375 427.5 Z M55.5625 494.5 C52.86148736 503.91331639 50.30335707 513.34065273 48.0625 522.875 C47.85882813 523.73996094 47.65515625 524.60492187 47.4453125 525.49609375 C47.0302279 527.26085597 46.61535261 529.02566743 46.20068359 530.79052734 C45.10862646 535.42696579 44.00203644 540.0594389 42.875 544.6875 C42.67261719 545.54327637 42.47023438 546.39905273 42.26171875 547.28076172 C40.79139524 553.27110476 40.79139524 553.27110476 38.5625 555.5 C37.9967937 557.4403726 37.50605355 559.40311519 37.0625 561.375 C35.39963851 568.73135464 35.39963851 568.73135464 33.5625 571.5 C28.68644287 572.81278461 25.09907017 572.76828509 20.5625 570.5 C18.875 567.9375 18.875 567.9375 17.5625 565.5 C16.0775 565.005 16.0775 565.005 14.5625 564.5 C13.12370122 562.1883763 11.85604865 559.92550132 10.62109375 557.5078125 C10.25274918 556.80606903 9.8844046 556.10432556 9.50489807 555.38131714 C8.32745474 553.13384954 7.16340054 550.87976389 6 548.625 C4.83031858 546.37888483 3.65795839 544.13419276 2.48439026 541.8901062 C1.75474294 540.49261472 1.0278631 539.09367403 0.30406189 537.69314575 C-1.16712364 534.85683435 -2.66288128 532.16192809 -4.4375 529.5 C-6.69567121 529.06206474 -6.69567121 529.06206474 -9.34619141 529.15942383 C-10.36709869 529.15965042 -11.38800598 529.15987701 -12.43984985 529.16011047 C-13.54509003 529.17559433 -14.6503302 529.19107819 -15.7890625 529.20703125 C-17.48281509 529.21339851 -17.48281509 529.21339851 -19.21078491 529.21989441 C-22.82826273 529.23672868 -26.44518969 529.27439025 -30.0625 529.3125 C-32.51040864 529.32754066 -34.95832598 529.34123014 -37.40625 529.35351562 C-43.4168556 529.38664773 -49.42713846 529.43689421 -55.4375 529.5 C-55.28469471 531.06388444 -55.13084047 532.6276664 -54.9765625 534.19140625 C-54.89100098 535.06224854 -54.80543945 535.93309082 -54.71728516 536.83032227 C-52.63843614 556.66646012 -44.07344183 578.50757483 -30.84765625 593.640625 C-29.4375 595.5 -29.4375 595.5 -28.5078125 597.9296875 C-26.41774148 602.94890915 -22.13173231 606.59607838 -18.4375 610.5 C-17.90253906 611.09941406 -17.36757813 611.69882812 -16.81640625 612.31640625 C-8.75034947 621.01098693 2.00092504 628.21921252 12.5625 633.5 C13.61824219 634.08974609 13.61824219 634.08974609 14.6953125 634.69140625 C20.14276815 637.63672549 25.76948655 639.72325177 31.625 641.6875 C32.74056274 642.06249634 32.74056274 642.06249634 33.87866211 642.44506836 C41.95966098 645.07768335 49.67954007 646.80640959 58.19921875 646.87109375 C58.99301941 646.88220688 59.78682007 646.89332001 60.60467529 646.9047699 C63.15332275 646.93165981 65.70121707 646.93815906 68.25 646.9375 C69.55615768 646.93910126 69.55615768 646.93910126 70.88870239 646.94073486 C84.66618275 646.91632441 97.40740269 645.88695149 110.5625 641.5 C111.66706543 641.14711914 111.66706543 641.14711914 112.79394531 640.78710938 C122.28598099 637.7037904 130.89015025 633.41940308 139.5625 628.5 C141.65784257 627.40806092 143.57095151 626.49718283 145.8125 625.75 C152.4508618 622.73256282 157.52766982 617.69291538 162.546875 612.515625 C164.55796923 610.50453077 166.64801243 608.65632274 168.8125 606.8125 C171.76519567 604.25504706 174.41942764 601.80390322 176.5625 598.5 C176.5625 597.18 176.5625 595.86 176.5625 594.5 C177.8125 592.44921875 177.8125 592.44921875 179.5625 590.1875 C191.59826181 573.49273362 201.75136897 550.36372562 201.5625 529.5 C200.81161102 529.49857498 200.06072205 529.49714996 199.28707886 529.49568176 C192.19544365 529.4778198 185.1044375 529.43611256 178.01313591 529.36790943 C174.36772379 529.33368167 170.72272883 529.30853618 167.07714844 529.30444336 C163.55597619 529.30015108 160.03574428 529.27161415 156.51486588 529.22656822 C154.52423318 529.20734078 152.53341058 529.21294162 150.54269409 529.21894836 C140.4418131 529.05642336 140.4418131 529.05642336 136.84716797 526.21655273 C134.93330453 523.94089998 133.37945437 521.98495332 132.078125 519.328125 C131.70042969 518.58175781 131.32273437 517.83539062 130.93359375 517.06640625 C130.37865234 515.91978516 130.37865234 515.91978516 129.8125 514.75 C129.05192169 513.2110372 128.28653338 511.67443924 127.515625 510.140625 C127.18723633 509.46547852 126.85884766 508.79033203 126.52050781 508.09472656 C125.64791196 506.31919777 125.64791196 506.31919777 123.5625 505.5 C123.33175781 506.43457031 123.10101562 507.36914062 122.86328125 508.33203125 C122.53417251 509.65893317 122.20471425 510.98574842 121.875 512.3125 C121.69565918 513.0346167 121.51631836 513.7567334 121.33154297 514.50073242 C120.38451765 518.29086245 119.4165988 522.07311481 118.39453125 525.84375 C115.86231593 535.20207215 113.6227872 544.58820579 111.5625 554.0625 C109.53934737 563.35876649 107.30701687 572.53121815 104.64453125 581.6640625 C103.64790166 585.19724033 102.83967732 588.72619573 102.0625 592.3125 C100.88548408 596.98176098 99.80066569 599.82811294 95.5625 602.5 C92.45999464 603.50358307 89.78485412 604.10319929 86.5625 603.5 C81.34475298 599.91570448 79.74639472 597.54600632 78.41015625 591.18359375 C78.25531265 590.4811705 78.10046906 589.77874725 77.94093323 589.05503845 C77.62011902 587.59093124 77.30907358 586.12465076 77.00762939 584.65643311 C76.3260284 581.35441135 75.5593669 578.07204194 74.80859375 574.78515625 C74.35914102 572.75822942 73.91407427 570.73037356 73.46954346 568.70236206 C72.98162854 566.47877531 72.49006372 564.25602165 71.99755859 562.03344727 C70.37825891 554.72483389 68.76388741 547.41514245 67.15380859 540.10449219 C65.91713927 534.49195144 64.67365326 528.88095115 63.42654419 523.27072144 C62.93466723 521.05226841 62.44513653 518.83329384 61.95797729 516.61380005 C61.27207501 513.48990924 60.57832423 510.36785699 59.8828125 507.24609375 C59.67790695 506.30398041 59.4730014 505.36186707 59.2618866 504.39120483 C58.97007256 503.09238876 58.97007256 503.09238876 58.67236328 501.76733398 C58.50552032 501.01209946 58.33867737 500.25686493 58.16677856 499.47874451 C57.57826338 497.21218951 57.57826338 497.21218951 55.5625 494.5 Z "
|
|
8
|
+
fill="#4D8E65" transform="translate(458.4375,170.5)" />
|
|
9
|
+
<path
|
|
10
|
+
d="M0 0 C2.60457852 2.60457852 2.25019727 3.66416562 2.25069833 7.29236269 C2.25570536 8.42444416 2.2607124 9.55652564 2.26587117 10.72291261 C2.26118883 11.97970675 2.2565065 13.23650089 2.25168228 14.5313797 C2.25376656 15.87527885 2.25672757 17.21917688 2.26049101 18.56307238 C2.26833319 22.28517823 2.26359111 26.00718137 2.25693511 29.72928568 C2.25188951 33.76758675 2.25837043 37.80587132 2.26342177 41.84417009 C2.27066822 48.93143762 2.27041193 56.01867472 2.26532745 63.10594368 C2.25778729 73.64465717 2.26161701 84.18334481 2.26774407 94.7220581 C2.27829667 113.54013397 2.27735438 132.35819628 2.27158624 151.17627345 C2.2665631 167.64388936 2.265238 184.1115003 2.26763153 200.57911682 C2.2677843 201.66974401 2.26793707 202.7603712 2.26809447 203.88404769 C2.26871711 208.31081011 2.2693539 212.73757254 2.270014 217.16433495 C2.27613755 258.7249459 2.27057629 300.28554819 2.2598202 341.8461578 C2.25032838 378.80287936 2.25117761 415.75958715 2.26074219 452.71630859 C2.2714421 494.19895054 2.27570334 535.68158483 2.26951766 577.16422796 C2.26887619 581.58311303 2.26825051 586.00199811 2.26763153 590.42088318 C2.26747338 591.50899476 2.26731522 592.59710634 2.26715227 593.718191 C2.26487346 610.1789558 2.26754506 626.63971509 2.27259064 643.10047913 C2.27829663 661.80954176 2.27690634 680.51858867 2.26602915 699.22764933 C2.26013677 709.70963213 2.25980162 720.19158093 2.2673215 730.67356288 C2.27178452 737.66304272 2.26905481 744.65249513 2.26031196 751.64197088 C2.25552497 755.63238519 2.25398813 759.62273165 2.26112393 763.61314398 C2.26753737 767.23630714 2.26490889 770.85934163 2.2547626 774.48249523 C2.25176695 776.41402717 2.25867506 778.34556652 2.26587117 780.27708739 C2.26086413 781.40916886 2.25585709 782.54125034 2.25069833 783.70763731 C2.25056281 784.68893188 2.25042729 785.67022645 2.25028767 786.68125722 C2 789 2 789 0 791 C-0.11410343 741.74737035 -0.22608718 692.49473644 -0.32835388 643.24208069 C-0.32990168 642.4969012 -0.33144947 641.75172172 -0.33304417 640.98396104 C-0.36678132 624.73597489 -0.40018365 608.48798807 -0.4332476 592.24000054 C-0.44949615 584.25627302 -0.46581764 576.27254565 -0.48217773 568.28881836 C-0.48380334 567.49491661 -0.48542894 566.70101486 -0.4871038 565.88305548 C-0.53540174 542.31094114 -0.5875535 518.73883818 -0.64281297 495.16673918 C-0.72854679 458.56735349 -0.80745093 421.96795807 -0.87471711 385.36853344 C-0.87751008 383.84929475 -0.88031079 382.33005607 -0.88311923 380.81081741 C-1.01984118 306.83078167 -1.04905946 232.85237156 0 0 Z "
|
|
11
|
+
fill="#4D8E65" transform="translate(968,109)" />
|
|
12
|
+
<path
|
|
13
|
+
d="M0 0 C3.98435344 1.54233037 7.84868147 3.2920785 11.71875 5.09765625 C15.94062712 6.76761107 19.96926747 7.12527313 24.48147738 7.12880117 C25.57929244 7.13207336 26.6771075 7.13534555 27.80818969 7.13871691 C29.01121283 7.13723328 30.21423598 7.13574966 31.45371437 7.13422108 C33.38217086 7.13774942 33.38217086 7.13774942 35.34958607 7.14134905 C38.93203445 7.14775172 42.51446041 7.14791046 46.09691341 7.14707164 C49.98920065 7.14724108 53.88147984 7.15314661 57.77376306 7.1583125 C65.49988719 7.16764325 73.2260056 7.17156134 80.95213466 7.17383147 C90.20394083 7.17679227 99.4557394 7.18548892 108.70754158 7.19424575 C131.07003312 7.21509536 153.43252598 7.22556046 175.79502498 7.23437535 C186.37163537 7.23858082 196.94824519 7.24380293 207.5248551 7.24905988 C243.72183826 7.26694985 279.91882157 7.28194669 316.11580849 7.28938007 C318.38847694 7.28985483 320.66114538 7.29033072 322.93381383 7.29080774 C324.06086356 7.29104411 325.1879133 7.29128049 326.34911605 7.29152403 C332.05940419 7.29272524 337.76969233 7.29394068 343.47998047 7.29516602 C344.61320813 7.29540617 345.7464358 7.29564632 346.9140037 7.29589374 C383.66509149 7.30378862 420.41614704 7.32722445 457.16722074 7.35972196 C496.01259243 7.39400874 534.85794524 7.41373011 573.7033323 7.41702431 C577.96646079 7.41744186 582.22958927 7.41792143 586.49271774 7.41844749 C588.06729806 7.41863228 588.06729806 7.41863228 589.67368808 7.4188208 C606.57655393 7.42115417 623.47938236 7.43682166 640.38223486 7.45728934 C657.36753236 7.47753079 674.35278484 7.48303258 691.33809216 7.47351871 C701.43165277 7.46829734 711.52506365 7.47421125 721.61860275 7.49605338 C728.36054567 7.50954149 735.10238529 7.50850208 741.84432919 7.49565142 C745.68599413 7.48874158 749.52737239 7.48813008 753.36901195 7.50521151 C757.50997293 7.52347374 761.65026759 7.51070884 765.79123878 7.49498463 C766.98021493 7.50520683 768.16919108 7.51542904 769.39419681 7.52596101 C776.19887867 7.46942799 781.50881314 6.49057307 787.76515176 3.75994195 C790 3 790 3 793 4 C787.80625679 7.26463859 783.67335126 9.24890658 777.47478908 9.25415033 C776.36719633 9.25992604 775.25960357 9.26570176 774.11844739 9.27165249 C772.90447968 9.2678277 771.69051196 9.26400291 770.43975735 9.26006222 C769.14260067 9.26386789 767.84544399 9.26767356 766.50897953 9.27159455 C762.89419443 9.28190387 759.27950694 9.27971366 755.6647135 9.27553919 C751.73737659 9.27317867 747.81006401 9.28233463 743.88273627 9.29002339 C736.99466214 9.3018859 730.10661452 9.30623555 723.21853065 9.30570221 C712.97551586 9.30490999 702.7325346 9.31544843 692.48952875 9.32811778 C672.06478819 9.35287787 651.64005573 9.3616428 631.21530223 9.36665427 C630.15708892 9.36691544 629.09887561 9.36717662 628.00859523 9.36744571 C626.41813421 9.36783612 626.41813421 9.36783612 624.79554267 9.36823442 C613.05345278 9.37131486 601.31136514 9.37781898 589.56927681 9.3844471 C554.11216689 9.40409755 518.65505941 9.4205003 483.19794369 9.42332363 C481.49616201 9.42346472 481.49616201 9.42346472 479.76000091 9.42360866 C475.16214884 9.42398715 470.56429678 9.42435115 465.96644472 9.42471164 C462.50570598 9.42498336 459.04496725 9.42526004 455.58422852 9.42553711 C453.86888731 9.42566914 453.86888731 9.42566914 452.11889274 9.42580384 C416.18869401 9.4287092 380.25854908 9.45080275 344.32836914 9.48706055 C303.97690339 9.52777874 263.6254743 9.55148214 223.27398688 9.55178314 C218.97180243 9.55187997 214.66961799 9.55204669 210.36743355 9.55226326 C209.30809871 9.55230737 208.24876387 9.55235149 207.15732797 9.55239694 C190.10216017 9.55351728 173.04704622 9.57093327 155.99189577 9.59408258 C138.851983 9.61691543 121.71214306 9.62115661 104.57222068 9.60653328 C94.38774857 9.59837645 84.20350569 9.60409174 74.01906135 9.62971413 C67.21524052 9.64545109 60.41158264 9.64300368 53.60776577 9.6258074 C49.73153681 9.61652358 45.85574972 9.61507792 41.979555 9.63577347 C37.79973781 9.65790003 33.62095654 9.641187 29.44113064 9.62082577 C28.24355109 9.63338914 27.04597153 9.64595251 25.81210169 9.6588966 C17.02297628 9.5671171 8.31400728 8.00279726 1.66187942 1.8305501 C1.11345921 1.22646857 0.565039 0.62238703 0 0 Z "
|
|
14
|
+
fill="#4D8E65" transform="translate(133,924)" />
|
|
15
|
+
<path
|
|
16
|
+
d="M0 0 C2.56470567 2.54618794 5.09866739 5.10403299 7.5859375 7.7265625 C28.53938159 29.67186328 54.53727766 41.92637862 84 48 C84 48.33 84 48.66 84 49 C52.1558916 47.50145372 24.12145017 28.65560956 3 6 C0 2.35991379 0 2.35991379 0 0 Z "
|
|
17
|
+
fill="#4D8E65" transform="translate(430,768)" />
|
|
18
|
+
<path
|
|
19
|
+
d="M0 0 C0.66 0 1.32 0 2 0 C-1.39533801 23.46330595 -10.80373059 45.6169331 -23.1875 65.6875 C-23.59121826 66.34661377 -23.99493652 67.00572754 -24.41088867 67.68481445 C-26.90980445 71.63721772 -29.57250847 74.81602474 -33 78 C-32.67 76.35 -32.34 74.7 -32 73 C-31.34 73 -30.68 73 -30 73 C-29.89042969 72.41347656 -29.78085937 71.82695312 -29.66796875 71.22265625 C-28.92389382 68.7467578 -27.94810563 67.42512574 -26.3125 65.4375 C-19.4261129 56.50159293 -15.11851271 46.12759354 -10.76220703 35.80078125 C-10.12247696 34.28936262 -9.46733654 32.78447945 -8.80859375 31.28125 C-4.56845984 21.30446434 -2.22699359 10.57821953 0 0 Z "
|
|
20
|
+
fill="#4D8E65" transform="translate(687,308)" />
|
|
21
|
+
<path
|
|
22
|
+
d="M0 0 C-0.76183594 0.42410156 -1.52367187 0.84820313 -2.30859375 1.28515625 C-20.67984132 11.7207588 -37.88643026 27.38947833 -51 44 C-51.66 43.67 -52.32 43.34 -53 43 C-48.31369671 36.95040848 -43.51990558 31.2966285 -38 26 C-37.20722656 25.2059375 -36.41445313 24.411875 -35.59765625 23.59375 C-8.97290177 -2.99096726 -8.97290177 -2.99096726 0 0 Z "
|
|
23
|
+
fill="#4D8E65" transform="translate(461,553)" />
|
|
24
|
+
<path
|
|
25
|
+
d="M0 0 C5.67363034 0.5043227 9.77190743 2.7347285 14.625 5.5 C15.42043213 5.94923828 16.21586426 6.39847656 17.03540039 6.86132812 C27.1926536 12.70480504 35.97208572 19.72498527 44.52734375 27.73828125 C46.15825719 29.23006463 47.84163853 30.66666967 49.57421875 32.0390625 C51.89707219 33.91679588 53.88160246 35.84238557 55.875 38.0625 C56.79925781 39.06990234 56.79925781 39.06990234 57.7421875 40.09765625 C58.15726563 40.72542969 58.57234375 41.35320313 59 42 C58.67 42.99 58.34 43.98 58 45 C57.46375 44.29875 56.9275 43.5975 56.375 42.875 C54.56379133 40.68248424 52.78510014 38.77526246 50.75 36.8125 C48 34 48 34 48 32 C47.43925781 31.7628125 46.87851562 31.525625 46.30078125 31.28125 C43.47768676 29.70913626 41.50656888 27.75138484 39.1875 25.5 C27.67087208 14.75232424 14.13858111 7.70489413 0 1 C0 0.67 0 0.34 0 0 Z "
|
|
26
|
+
fill="#4D8E65" transform="translate(590,546)" />
|
|
27
|
+
<path
|
|
28
|
+
d="M0 0 C0.33 0.66 0.66 1.32 1 2 C-0.2690973 4.27583313 -1.59151708 6.43759172 -3 8.625 C-13.38468825 25.43019808 -19.06246011 43.48947387 -22 63 C-22.33 63 -22.66 63 -23 63 C-23.96226403 44.71698341 -16.6183307 26.80689225 -8 11 C-7.34 11 -6.68 11 -6 11 C-5.896875 10.443125 -5.79375 9.88625 -5.6875 9.3125 C-4.57976078 5.58646808 -2.73723933 2.73723933 0 0 Z "
|
|
29
|
+
fill="#4D8E65" transform="translate(425,611)" />
|
|
30
|
+
<path
|
|
31
|
+
d="M0 0 C1 3 1 3 0.1796875 5.0234375 C-0.25085938 5.79945313 -0.68140625 6.57546875 -1.125 7.375 C-7.21847677 18.96953219 -11.50460604 31.61768629 -14.125 44.4375 C-14.29821777 45.26427246 -14.47143555 46.09104492 -14.64990234 46.94287109 C-15.54532552 51.33363951 -16.26354764 55.65202698 -16.625 60.125 C-16.74875 61.40375 -16.8725 62.6825 -17 64 C-17.99 64.495 -17.99 64.495 -19 65 C-19.47749758 42.25603656 -10.33691201 19.84687105 0 0 Z "
|
|
32
|
+
fill="#4D8E65" transform="translate(398,611)" />
|
|
33
|
+
<path
|
|
34
|
+
d="M0 0 C0.99 0 1.98 0 3 0 C4.38442 1.96498322 5.71203834 3.97048465 7 6 C8.31200404 7.35432675 9.64631404 8.68733482 11 10 C14.52817385 14.06238986 17.61554907 18.21214284 20.5 22.75 C20.88945801 23.35980713 21.27891602 23.96961426 21.68017578 24.59790039 C24.81325333 29.57046928 27.55610919 34.65219187 30 40 C30.31839844 40.65742187 30.63679687 41.31484375 30.96484375 41.9921875 C32.57848487 45.45742603 33.34786899 48.17344116 33 52 C30.97424542 48.96136812 29.79389406 46.1351886 28.4375 42.75 C23.25713546 30.38485711 16.31285295 19.86357244 7.46484375 9.83203125 C4.72529566 6.68437299 2.33042143 3.45545247 0 0 Z "
|
|
35
|
+
fill="#4D8E65" transform="translate(621,593)" />
|
|
36
|
+
<path
|
|
37
|
+
d="M0 0 C5.71552499 5.39799582 9.13868202 10.37337962 11.1875 18 C11.67283203 19.7634375 11.67283203 19.7634375 12.16796875 21.5625 C13.76221684 28.14906487 14.13592665 34.24756084 14.09765625 40.9921875 C14.0962413 41.93812775 14.09482635 42.88406799 14.09336853 43.8586731 C14.08779484 46.86414829 14.0752472 49.86954753 14.0625 52.875 C14.0574816 54.91926975 14.05291929 56.96354068 14.04882812 59.0078125 C14.03783403 64.00523736 14.02058757 69.00260583 14 74 C13.67 74 13.34 74 13 74 C12.9906543 72.84177734 12.98130859 71.68355469 12.97167969 70.49023438 C12.93122654 66.11373089 12.86532742 61.73789041 12.79248047 57.36181641 C12.76458668 55.48267254 12.74321847 53.60341822 12.72900391 51.72412109 C12.60144509 35.79627639 11.15091447 21.80750397 3.3671875 7.55078125 C2.04492984 5.08382624 0.98967983 2.61558241 0 0 Z "
|
|
38
|
+
fill="#4D8E65" transform="translate(507,460)" />
|
|
39
|
+
<path
|
|
40
|
+
d="M0 0 C0.66 0 1.32 0 2 0 C2.47308594 0.90878906 2.94617188 1.81757813 3.43359375 2.75390625 C11.98649076 19.07040448 20.71065721 34.0204321 34 47 C33.505 47.99 33.505 47.99 33 49 C19.07345248 36.45994504 5.4066137 18.14281195 0 0 Z "
|
|
41
|
+
fill="#4D8E65" transform="translate(387,350)" />
|
|
42
|
+
<path d="M0 0 C27.39 0 54.78 0 83 0 C83 0.33 83 0.66 83 1 C55.61 1 28.22 1 0 1 C0 0.67 0 0.34 0 0 Z " fill="#082B1F"
|
|
43
|
+
transform="translate(168,931)" />
|
|
44
|
+
<path
|
|
45
|
+
d="M0 0 C0.66 0 1.32 0 2 0 C1.10290994 16.74568109 -6.56811538 35.28089509 -16 49 C-16.33 48.34 -16.66 47.68 -17 47 C-15.44455478 43.65867323 -13.77359357 40.42439451 -12.015625 37.1875 C-6.09612252 25.93074119 -1.38036945 12.69939897 0 0 Z "
|
|
46
|
+
fill="#4D8E65" transform="translate(679,717)" />
|
|
47
|
+
<path
|
|
48
|
+
d="M0 0 C0.66 0 1.32 0 2 0 C0.7041647 3.78279194 -0.74678943 6.11145918 -3.625 8.875 C-4.33527344 9.55949219 -5.04554688 10.24398437 -5.77734375 10.94921875 C-8.53477754 13.49342392 -11.34525437 15.96651152 -14.1953125 18.40625 C-16.18698039 20.11925101 -16.18698039 20.11925101 -18.5625 22.6875 C-22.14184694 26.08329068 -25.90201542 29 -31 29 C-30.29875 28.43152344 -29.5975 27.86304688 -28.875 27.27734375 C-14.31444073 15.60874619 -14.31444073 15.60874619 -1.625 2 C-1.08875 1.34 -0.5525 0.68 0 0 Z "
|
|
49
|
+
fill="#4E9164" transform="translate(633,767)" />
|
|
50
|
+
<path
|
|
51
|
+
d="M0 0 C0.66 0.33 1.32 0.66 2 1 C1.54109375 1.61746094 1.0821875 2.23492187 0.609375 2.87109375 C-10.59445177 18.33519918 -12.38100107 34.36599776 -13 53 C-13.33 53 -13.66 53 -14 53 C-14.31897533 34.90701036 -14.46756065 15.28667212 -1.25 1.125 C-0.8375 0.75375 -0.425 0.3825 0 0 Z "
|
|
52
|
+
fill="#519168" transform="translate(408,232)" />
|
|
53
|
+
<path
|
|
54
|
+
d="M0 0 C0.99 0.66 1.98 1.32 3 2 C2.071875 2.433125 1.14375 2.86625 0.1875 3.3125 C-2.57517665 4.77509352 -3.91371414 5.82300606 -6 8 C-8.3490882 9.50582577 -10.62213181 10.83805649 -13.1875 11.9375 C-15.49582495 13.290656 -15.82034122 14.6276715 -17 17 C-17.90302658 18.11223215 -18.842563 19.19560938 -19.8125 20.25 C-23.03028383 23.89471338 -25.54356192 27.8153599 -28 32 C-28.33 31.01 -28.66 30.02 -29 29 C-22.37357687 16.56673765 -11.93287598 7.24811726 0 0 Z "
|
|
55
|
+
fill="#4C8C63" transform="translate(411,200)" />
|
|
56
|
+
<path
|
|
57
|
+
d="M0 0 C0.99 0.33 1.98 0.66 3 1 C2.08734375 1.47953125 2.08734375 1.47953125 1.15625 1.96875 C-5.63994 5.88655364 -10.97469784 10.58966096 -16.5 16.125 C-17.19416016 16.81787109 -17.88832031 17.51074219 -18.60351562 18.22460938 C-21.90996867 21.60244806 -24.81913851 24.75392877 -27 29 C-27.66 28.67 -28.32 28.34 -29 28 C-22.37973098 18.42173844 -15.6676219 10.68784001 -6.1875 3.9375 C-5.62393799 3.53063965 -5.06037598 3.1237793 -4.47973633 2.70458984 C-2.85546875 1.58984375 -2.85546875 1.58984375 0 0 Z "
|
|
58
|
+
fill="#4D8E64" transform="translate(561,425)" />
|
|
59
|
+
<path
|
|
60
|
+
d="M0 0 C0.66 0.33 1.32 0.66 2 1 C-6.26282739 6.24951222 -14.6938237 11.19681896 -23.1875 16.0625 C-24.21560791 16.65893311 -25.24371582 17.25536621 -26.30297852 17.86987305 C-27.26905029 18.4194165 -28.23512207 18.96895996 -29.23046875 19.53515625 C-30.10082764 20.034104 -30.97118652 20.53305176 -31.86791992 21.04711914 C-32.57150635 21.36156982 -33.27509277 21.67602051 -34 22 C-34.66 21.67 -35.32 21.34 -36 21 C-34.63987329 18.27974658 -32.82423295 18.0605056 -30.1171875 16.95703125 C-27.85166093 15.93294636 -25.80606916 14.73869732 -23.6875 13.4375 C-18.68029567 10.37883565 -13.60797508 7.4486951 -8.5 4.5625 C-7.69780029 4.10093506 -6.89560059 3.63937012 -6.0690918 3.16381836 C-5.314104 2.73979736 -4.55911621 2.31577637 -3.78125 1.87890625 C-3.10126953 1.4929126 -2.42128906 1.10691895 -1.72070312 0.70922852 C-1.15287109 0.47518311 -0.58503906 0.2411377 0 0 Z "
|
|
61
|
+
fill="#4D8B63" transform="translate(609,424)" />
|
|
62
|
+
<path
|
|
63
|
+
d="M0 0 C0.33 0 0.66 0 1 0 C0.50567981 7.36366621 -0.06843092 14.272959 -5.6875 19.5 C-9.68108541 21.30841603 -12.69623296 22.00107504 -17 21 C-20.22143168 19.23969284 -22.54641102 17.19877088 -23.875 13.6875 C-23.91625 13.130625 -23.9575 12.57375 -24 12 C-23.34 12 -22.68 12 -22 12 C-21.608125 12.78375 -21.21625 13.5675 -20.8125 14.375 C-19.15139526 17.2880664 -19.15139526 17.2880664 -15.6875 18.375 C-11.97202031 19.00474232 -9.57818972 19.164992 -6 18 C-3.79543553 14.58916441 -2.95244639 10.62880702 -1.875 6.75 C-1.52179688 5.48671875 -1.16859375 4.2234375 -0.8046875 2.921875 C-0.53914063 1.95765625 -0.27359375 0.9934375 0 0 Z "
|
|
64
|
+
fill="#4F9067" transform="translate(498,724)" />
|
|
65
|
+
<path
|
|
66
|
+
d="M0 0 C2.29327525 1.44785148 3.34437719 2.79250293 5 5 C4.67 5.66 4.34 6.32 4 7 C3.76796875 6.36320313 3.5359375 5.72640625 3.296875 5.0703125 C2.17548743 2.81595028 2.17548743 2.81595028 -0.171875 2.1796875 C-5.17329388 1.53694877 -5.17329388 1.53694877 -9.88671875 2.96875 C-14.10113099 6.79038327 -15.63283751 11.60330596 -17 17 C-17.33 17 -17.66 17 -18 17 C-17.78955338 7.31945539 -17.78955338 7.31945539 -14.5625 3.4375 C-10.16875928 -0.74191191 -5.89193665 -0.86945376 0 0 Z "
|
|
67
|
+
fill="#4F9067" transform="translate(584,629)" />
|
|
68
|
+
</svg>
|