@bitseek/hermes-webui 0.1.0-beta.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.
- package/README.md +213 -0
- package/bin/hermes-webui.mjs +588 -0
- package/package.json +25 -0
- package/scripts/sync-vendor.mjs +74 -0
- package/templates/launchd/com.bitseek.hermes-webui.plist +21 -0
- package/templates/systemd/hermes-webui.service +13 -0
- package/templates/windows/hermes-webui-task.ps1 +3 -0
- package/vendor/agent-frontend-shell/.bitseek-source.json +6 -0
- package/vendor/agent-frontend-shell/.dockerignore +7 -0
- package/vendor/agent-frontend-shell/.env.docker.example +89 -0
- package/vendor/agent-frontend-shell/.env.example +34 -0
- package/vendor/agent-frontend-shell/.github/FUNDING.yml +3 -0
- package/vendor/agent-frontend-shell/.github/workflows/browser-smoke.yml +42 -0
- package/vendor/agent-frontend-shell/.github/workflows/docker-smoke.yml +233 -0
- package/vendor/agent-frontend-shell/.github/workflows/native-windows-startup.yml +132 -0
- package/vendor/agent-frontend-shell/.github/workflows/release.yml +57 -0
- package/vendor/agent-frontend-shell/.github/workflows/tests.yml +88 -0
- package/vendor/agent-frontend-shell/.vscode/launch.json +59 -0
- package/vendor/agent-frontend-shell/.vscode/settings.json +13 -0
- package/vendor/agent-frontend-shell/AGENTS.md +80 -0
- package/vendor/agent-frontend-shell/ARCHITECTURE.md +1658 -0
- package/vendor/agent-frontend-shell/BUGS.md +52 -0
- package/vendor/agent-frontend-shell/CHANGELOG.md +7295 -0
- package/vendor/agent-frontend-shell/CONTRIBUTING.md +205 -0
- package/vendor/agent-frontend-shell/CONTRIBUTORS.md +107 -0
- package/vendor/agent-frontend-shell/DESIGN.md +173 -0
- package/vendor/agent-frontend-shell/Dockerfile +91 -0
- package/vendor/agent-frontend-shell/LICENSE +21 -0
- package/vendor/agent-frontend-shell/README-CUSTOM.md +76 -0
- package/vendor/agent-frontend-shell/README.md +705 -0
- package/vendor/agent-frontend-shell/ROADMAP.md +351 -0
- package/vendor/agent-frontend-shell/SPRINTS.md +147 -0
- package/vendor/agent-frontend-shell/TESTING.md +1932 -0
- package/vendor/agent-frontend-shell/THEMES.md +170 -0
- package/vendor/agent-frontend-shell/api/__init__.py +1 -0
- package/vendor/agent-frontend-shell/api/agent_health.py +392 -0
- package/vendor/agent-frontend-shell/api/agent_sessions.py +782 -0
- package/vendor/agent-frontend-shell/api/auth.py +592 -0
- package/vendor/agent-frontend-shell/api/background.py +87 -0
- package/vendor/agent-frontend-shell/api/clarify.py +238 -0
- package/vendor/agent-frontend-shell/api/commands.py +124 -0
- package/vendor/agent-frontend-shell/api/compression_anchor.py +134 -0
- package/vendor/agent-frontend-shell/api/config.py +5178 -0
- package/vendor/agent-frontend-shell/api/dashboard_probe.py +255 -0
- package/vendor/agent-frontend-shell/api/extensions.py +253 -0
- package/vendor/agent-frontend-shell/api/gateway_chat.py +435 -0
- package/vendor/agent-frontend-shell/api/gateway_watcher.py +230 -0
- package/vendor/agent-frontend-shell/api/goals.py +608 -0
- package/vendor/agent-frontend-shell/api/helpers.py +474 -0
- package/vendor/agent-frontend-shell/api/kanban_bridge.py +1255 -0
- package/vendor/agent-frontend-shell/api/metering.py +194 -0
- package/vendor/agent-frontend-shell/api/models.py +4210 -0
- package/vendor/agent-frontend-shell/api/oauth.py +770 -0
- package/vendor/agent-frontend-shell/api/onboarding.py +1046 -0
- package/vendor/agent-frontend-shell/api/passkeys.py +365 -0
- package/vendor/agent-frontend-shell/api/profiles.py +1499 -0
- package/vendor/agent-frontend-shell/api/providers.py +2175 -0
- package/vendor/agent-frontend-shell/api/request_diagnostics.py +160 -0
- package/vendor/agent-frontend-shell/api/rollback.py +320 -0
- package/vendor/agent-frontend-shell/api/routes.py +13990 -0
- package/vendor/agent-frontend-shell/api/run_journal.py +284 -0
- package/vendor/agent-frontend-shell/api/runner_client.py +156 -0
- package/vendor/agent-frontend-shell/api/runtime_adapter.py +431 -0
- package/vendor/agent-frontend-shell/api/session_discoverability.py +640 -0
- package/vendor/agent-frontend-shell/api/session_events.py +45 -0
- package/vendor/agent-frontend-shell/api/session_lifecycle.py +208 -0
- package/vendor/agent-frontend-shell/api/session_ops.py +207 -0
- package/vendor/agent-frontend-shell/api/session_recovery.py +655 -0
- package/vendor/agent-frontend-shell/api/skill_usage.py +32 -0
- package/vendor/agent-frontend-shell/api/startup.py +128 -0
- package/vendor/agent-frontend-shell/api/state_sync.py +187 -0
- package/vendor/agent-frontend-shell/api/streaming.py +7048 -0
- package/vendor/agent-frontend-shell/api/system_health.py +167 -0
- package/vendor/agent-frontend-shell/api/terminal.py +410 -0
- package/vendor/agent-frontend-shell/api/turn_journal.py +214 -0
- package/vendor/agent-frontend-shell/api/updates.py +1261 -0
- package/vendor/agent-frontend-shell/api/upload.py +322 -0
- package/vendor/agent-frontend-shell/api/usage.py +26 -0
- package/vendor/agent-frontend-shell/api/workspace.py +867 -0
- package/vendor/agent-frontend-shell/api/workspace_git.py +1261 -0
- package/vendor/agent-frontend-shell/api/worktrees.py +357 -0
- package/vendor/agent-frontend-shell/bootstrap.py +492 -0
- package/vendor/agent-frontend-shell/ctl.sh +427 -0
- package/vendor/agent-frontend-shell/docker-compose.custom.yml +26 -0
- package/vendor/agent-frontend-shell/docker-compose.three-container.yml +168 -0
- package/vendor/agent-frontend-shell/docker-compose.two-container.yml +147 -0
- package/vendor/agent-frontend-shell/docker-compose.yml +57 -0
- package/vendor/agent-frontend-shell/docker_init.bash +459 -0
- package/vendor/agent-frontend-shell/docs/CONTRACTS.md +207 -0
- package/vendor/agent-frontend-shell/docs/EXTENSIONS.md +212 -0
- package/vendor/agent-frontend-shell/docs/ISSUES.md +23 -0
- package/vendor/agent-frontend-shell/docs/UIUX-GUIDE.md +196 -0
- package/vendor/agent-frontend-shell/docs/advanced-chat-setup.md +83 -0
- package/vendor/agent-frontend-shell/docs/docker.md +337 -0
- package/vendor/agent-frontend-shell/docs/onboarding-agent-checklist.md +207 -0
- package/vendor/agent-frontend-shell/docs/onboarding.md +202 -0
- package/vendor/agent-frontend-shell/docs/remote-access.md +75 -0
- package/vendor/agent-frontend-shell/docs/rfcs/README.md +53 -0
- package/vendor/agent-frontend-shell/docs/rfcs/agent-source-boundary.md +70 -0
- package/vendor/agent-frontend-shell/docs/rfcs/canonical-session-resolution.md +124 -0
- package/vendor/agent-frontend-shell/docs/rfcs/hermes-run-adapter-contract.md +1079 -0
- package/vendor/agent-frontend-shell/docs/rfcs/turn-journal.md +195 -0
- package/vendor/agent-frontend-shell/docs/rfcs/webui-run-state-consistency-contract.md +157 -0
- package/vendor/agent-frontend-shell/docs/supervisor.md +280 -0
- package/vendor/agent-frontend-shell/docs/troubleshooting.md +132 -0
- package/vendor/agent-frontend-shell/docs/ui-ux/index.html +863 -0
- package/vendor/agent-frontend-shell/docs/ui-ux/two-stage-proposal.html +768 -0
- package/vendor/agent-frontend-shell/docs/why-hermes.md +489 -0
- package/vendor/agent-frontend-shell/docs/workspace-git.md +92 -0
- package/vendor/agent-frontend-shell/docs/wsl-autostart.md +126 -0
- package/vendor/agent-frontend-shell/eslint.runtime-guard.config.mjs +35 -0
- package/vendor/agent-frontend-shell/extensions/bitseek-design-system.md +330 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/apple-touch-icon.png +0 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/empty-logo.svg +739 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-192.png +0 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-32.png +0 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-512.png +0 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-512.svg +745 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/favicon.ico +0 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/favicon.svg +745 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/titlebar-icon-v2.svg +751 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/titlebar-icon-v3.svg +739 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/titlebar-icon.svg +745 -0
- package/vendor/agent-frontend-shell/extensions/branding/branding.js +112 -0
- package/vendor/agent-frontend-shell/extensions/branding/config.json +14 -0
- package/vendor/agent-frontend-shell/extensions/branding/manifest.json +53 -0
- package/vendor/agent-frontend-shell/extensions/index.js +67 -0
- package/vendor/agent-frontend-shell/extensions/loader/hermes-loader.js +77 -0
- package/vendor/agent-frontend-shell/extensions/manifest.json +16 -0
- package/vendor/agent-frontend-shell/extensions/pages/ai-teammates/page.css +333 -0
- package/vendor/agent-frontend-shell/extensions/pages/ai-teammates/page.js +487 -0
- package/vendor/agent-frontend-shell/extensions/pages/manifest.json +6 -0
- package/vendor/agent-frontend-shell/extensions/pages/registry.css +56 -0
- package/vendor/agent-frontend-shell/extensions/pages/registry.js +302 -0
- package/vendor/agent-frontend-shell/extensions/themes/bitseek/index.css +93 -0
- package/vendor/agent-frontend-shell/extensions/themes/bitseek/index.js +98 -0
- package/vendor/agent-frontend-shell/install.sh +63 -0
- package/vendor/agent-frontend-shell/mcp_server.py +567 -0
- package/vendor/agent-frontend-shell/package.json +12 -0
- package/vendor/agent-frontend-shell/pyproject.toml +56 -0
- package/vendor/agent-frontend-shell/pytest.ini +3 -0
- package/vendor/agent-frontend-shell/requirements.txt +5 -0
- package/vendor/agent-frontend-shell/server.py +624 -0
- package/vendor/agent-frontend-shell/start.ps1 +210 -0
- package/vendor/agent-frontend-shell/start.sh +65 -0
- package/vendor/agent-frontend-shell/static/apple-touch-icon.png +0 -0
- package/vendor/agent-frontend-shell/static/boot.js +1990 -0
- package/vendor/agent-frontend-shell/static/commands.js +1402 -0
- package/vendor/agent-frontend-shell/static/favicon-192.png +0 -0
- package/vendor/agent-frontend-shell/static/favicon-32.png +0 -0
- package/vendor/agent-frontend-shell/static/favicon-512.png +0 -0
- package/vendor/agent-frontend-shell/static/favicon-512.svg +18 -0
- package/vendor/agent-frontend-shell/static/favicon.ico +0 -0
- package/vendor/agent-frontend-shell/static/favicon.svg +20 -0
- package/vendor/agent-frontend-shell/static/i18n.js +15389 -0
- package/vendor/agent-frontend-shell/static/icons.js +92 -0
- package/vendor/agent-frontend-shell/static/index.html +1506 -0
- package/vendor/agent-frontend-shell/static/login.js +177 -0
- package/vendor/agent-frontend-shell/static/manifest.json +53 -0
- package/vendor/agent-frontend-shell/static/messages.js +3521 -0
- package/vendor/agent-frontend-shell/static/onboarding.js +800 -0
- package/vendor/agent-frontend-shell/static/panels.js +7995 -0
- package/vendor/agent-frontend-shell/static/pwa-startup.js +83 -0
- package/vendor/agent-frontend-shell/static/sessions.js +5165 -0
- package/vendor/agent-frontend-shell/static/style.css +4774 -0
- package/vendor/agent-frontend-shell/static/sw.js +173 -0
- package/vendor/agent-frontend-shell/static/terminal.js +632 -0
- package/vendor/agent-frontend-shell/static/ui.js +8997 -0
- package/vendor/agent-frontend-shell/static/vendor/js-yaml/4.1.0/js-yaml.min.js +2 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_AMS-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_AMS-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_AMS-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Bold.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Bold.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Bold.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Bold.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-BoldItalic.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Italic.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Italic.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Italic.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-BoldItalic.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-Italic.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-Italic.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-Italic.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Bold.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Italic.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Script-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Script-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Script-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size1-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size1-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size1-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size2-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size2-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size2-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size3-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size3-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size3-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size4-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size4-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size4-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Typewriter-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/katex.min.css +1 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/katex.min.js +1 -0
- package/vendor/agent-frontend-shell/static/vendor/smd.min.js +29 -0
- package/vendor/agent-frontend-shell/static/workspace.js +680 -0
|
@@ -0,0 +1,751 @@
|
|
|
1
|
+
<svg width="151" height="24" viewBox="0 0 151 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_10849_9504)">
|
|
3
|
+
<path d="M47.4767 13.2349C48.3443 14.2219 48.7758 15.4935 48.7758 17.0543V17.3527C48.7758 19.5241 48.0734 21.1767 46.6641 22.306C45.2548 23.4353 43.3818 24 41.0405 24H31.6159V0H39.9985C42.2066 0 43.9786 0.527927 45.3099 1.57919C46.6412 2.63045 47.3068 4.12701 47.3068 6.05509V6.35348C47.3068 7.4736 47.0084 8.43764 46.4116 9.25019C45.8148 10.0627 44.9977 10.71 43.9602 11.192C45.4338 11.5639 46.6044 12.2433 47.4675 13.2349H47.4767ZM34.7376 10.5677H40.0031C41.215 10.5677 42.2066 10.2372 42.9778 9.58072C43.7444 8.92425 44.1301 7.9694 44.1301 6.71614V6.45448C44.1301 5.18286 43.7628 4.22341 43.0237 3.57613C42.2892 2.92884 41.2793 2.60291 40.0031 2.60291H34.7376V10.5677ZM44.3734 13.8087C43.5608 13.0972 42.4591 12.7391 41.0773 12.7391H34.7421V21.3971H41.0451C42.4545 21.3971 43.5654 21.0482 44.378 20.3458C45.1905 19.6435 45.5945 18.6014 45.5945 17.2196V16.9579C45.5945 15.5761 45.1905 14.5295 44.378 13.8133L44.3734 13.8087Z" fill="#404040"/>
|
|
4
|
+
<path d="M88.1912 15.7919C87.8974 15.2777 87.3511 14.8049 86.5524 14.3871C85.749 13.9648 84.6243 13.6067 83.1736 13.3129L80.8967 12.7758C78.7069 12.3351 77.0726 11.6006 75.9893 10.5769C74.9059 9.55318 74.3642 8.22188 74.3642 6.57842C74.3642 5.27008 74.7039 4.11783 75.3879 3.11706C76.0719 2.1163 77.0359 1.34507 78.28 0.807957C79.5241 0.270849 80.9609 0 82.586 0H82.6182C84.179 0 85.5929 0.307575 86.86 0.918133C88.127 1.52869 89.1461 2.40092 89.9127 3.52563C90.6794 4.65494 91.1293 5.97705 91.2624 7.49197H88.306C88.0902 5.91278 87.4521 4.68707 86.3871 3.82402C85.3267 2.96098 83.9816 2.52946 82.3565 2.52946H82.3244C80.915 2.52946 79.7582 2.89212 78.8492 3.62204C77.9403 4.34736 77.4858 5.2609 77.4858 6.35807C77.4858 7.34966 77.8393 8.14843 78.5417 8.75899C79.244 9.36955 80.4009 9.84698 82.003 10.1821L84.3121 10.6549C86.9747 11.2471 88.8844 12.0505 90.0321 13.0742C91.1798 14.0979 91.7536 15.5165 91.7536 17.3252C91.7536 18.5692 91.3726 19.6985 90.6151 20.7085C89.8577 21.7184 88.8064 22.5218 87.4613 23.1094C86.1163 23.7016 84.6013 23.9954 82.912 23.9954H82.8798C81.319 23.9954 79.8592 23.6878 78.4912 23.0773C77.1277 22.4667 75.9984 21.5807 75.1124 20.4193C74.2218 19.2624 73.7169 17.899 73.5837 16.3382H76.5401C76.7559 17.8761 77.472 19.1155 78.684 20.052C79.8959 20.9885 81.3695 21.4614 83.1048 21.4614H83.1369C84.1974 21.4614 85.1476 21.2915 85.9785 20.9564C86.814 20.6213 87.4613 20.1576 87.9296 19.5654C88.3932 18.9778 88.6274 18.3213 88.6274 17.6052C88.6274 16.8891 88.4805 16.306 88.1867 15.7873L88.1912 15.7919Z" fill="#404040"/>
|
|
5
|
+
<path d="M107.766 6.257C108.969 6.88593 109.928 7.84078 110.64 9.11699C111.356 10.3932 111.714 11.954 111.714 13.7949V15.4842H98.4238V15.9066C98.4238 17.0772 98.6671 18.0872 99.1537 18.9456C99.6403 19.7995 100.297 20.4513 101.119 20.8966C101.94 21.3419 102.849 21.5623 103.85 21.5623C105.213 21.5623 106.329 21.2272 107.197 20.5569C108.064 19.8867 108.574 19.0512 108.725 18.055H111.585C111.457 19.0512 111.071 20.0061 110.433 20.915C109.795 21.824 108.909 22.5676 107.784 23.1415C106.659 23.7153 105.347 24.0045 103.855 24.0045C102.363 24.0045 100.875 23.6786 99.599 23.0313C98.3228 22.3794 97.3083 21.4108 96.56 20.1208C95.8117 18.8308 95.4399 17.2792 95.4399 15.4567V13.8637C95.4399 12.0458 95.8209 10.4896 96.5784 9.19962C97.3358 7.90964 98.355 6.94101 99.6312 6.28914C100.907 5.63726 102.294 5.31592 103.79 5.31592H103.822C105.25 5.31592 106.568 5.62808 107.77 6.257H107.766ZM108.79 13.4368V13.2761C108.79 11.4995 108.308 10.1361 107.343 9.18126C106.379 8.2264 105.181 7.75356 103.754 7.75356H103.721C102.79 7.75356 101.917 7.97391 101.105 8.41921C100.292 8.8645 99.6403 9.51179 99.1537 10.3702C98.6671 11.2241 98.4238 12.2386 98.4238 13.4093V13.4414H108.79V13.4368Z" fill="#404040"/>
|
|
6
|
+
<path d="M127.781 6.257C128.984 6.88593 129.943 7.84078 130.655 9.11699C131.371 10.3932 131.729 11.954 131.729 13.7949V15.4842H118.439V15.9066C118.439 17.0772 118.682 18.0872 119.169 18.9456C119.656 19.7995 120.312 20.4513 121.134 20.8966C121.956 21.3419 122.865 21.5623 123.865 21.5623C125.229 21.5623 126.344 21.2272 127.212 20.5569C128.08 19.8867 128.589 19.0512 128.741 18.055H131.601C131.472 19.0512 131.086 20.0061 130.448 20.915C129.81 21.824 128.924 22.5676 127.8 23.1415C126.675 23.7153 125.362 24.0045 123.87 24.0045C122.378 24.0045 120.891 23.6786 119.614 23.0313C118.338 22.3794 117.324 21.4108 116.575 20.1208C115.827 18.8308 115.455 17.2792 115.455 15.4567V13.8637C115.455 12.0458 115.836 10.4896 116.594 9.19962C117.351 7.90964 118.37 6.94101 119.646 6.28914C120.923 5.63726 122.309 5.31592 123.806 5.31592H123.838C125.265 5.31592 126.583 5.62808 127.786 6.257H127.781ZM128.805 13.4368V13.2761C128.805 11.4995 128.323 10.1361 127.359 9.18126C126.395 8.2264 125.197 7.75356 123.769 7.75356H123.737C122.805 7.75356 121.933 7.97391 121.12 8.41921C120.308 8.8645 119.656 9.51179 119.169 10.3702C118.682 11.2241 118.439 12.2386 118.439 13.4093V13.4414H128.805V13.4368Z" fill="#404040"/>
|
|
7
|
+
<path d="M146.516 24L138.358 15.3236V24H135.337V0H138.358V14.8462L146.415 6.67483H150.151L141.833 14.9059L142.416 15.4797L150.51 24H146.511H146.516Z" fill="#404040"/>
|
|
8
|
+
<path d="M55.7857 3.12165H52.4621V0H55.7857V3.12165ZM55.7719 24H52.4483V6.11477H55.7719V24Z" fill="#404040"/>
|
|
9
|
+
<path d="M66.56 24C64.9303 24 63.6633 23.5226 62.7497 22.5631C61.8408 21.6037 61.3863 20.0888 61.3863 18.0184V7.84545H59.371V5.27927H61.3863V0H64.3702V5.27467H69.8607V7.84086H64.3702V16.5677C64.3702 17.4996 64.384 18.2158 64.4161 18.7207C64.4483 19.2257 64.5676 19.694 64.7788 20.1347C64.9578 20.5203 65.2471 20.8049 65.651 20.9977C66.055 21.1905 66.5967 21.2869 67.2853 21.2869C67.7719 21.2869 68.2402 21.2135 68.6992 21.0666C69.1537 20.9197 69.4796 20.7957 69.6816 20.6947H69.8561V23.4721C69.296 23.6373 68.7268 23.7659 68.1484 23.8577C67.5699 23.9495 67.042 23.9954 66.5554 23.9954L66.56 24Z" fill="#404040"/>
|
|
10
|
+
<path d="M13.414 12C16.7284 12 19.414 9.31446 19.414 6C19.414 2.68554 16.7284 0 13.414 0H9.71848L15.9847 6.22035L10.228 12L15.9847 17.7796L9.71848 24H13.414C16.7284 24 19.414 21.3145 19.414 18C19.414 14.6855 16.7284 12 13.414 12Z" fill="#404040"/>
|
|
11
|
+
<path d="M18.6519 14.7221L24.1653 11.9998L18.6519 9.27295V14.7221Z" fill="#404040"/>
|
|
12
|
+
<path d="M9.25478 0C9.01147 0 8.81866 0.197399 8.81866 0.436113C8.81866 0.674828 9.01606 0.872226 9.25478 0.872226C9.49349 0.872226 9.69089 0.674828 9.69089 0.436113C9.69089 0.197399 9.49349 0 9.25478 0Z" fill="#404040"/>
|
|
13
|
+
<path d="M8.1255 0.0273438C7.90056 0.0273438 7.71234 0.21097 7.71234 0.440504C7.71234 0.670037 7.89597 0.853664 8.1255 0.853664C8.35504 0.853664 8.53866 0.670037 8.53866 0.440504C8.53866 0.21097 8.35504 0.0273438 8.1255 0.0273438Z" fill="#404040"/>
|
|
14
|
+
<path d="M6.99618 0.0507812C6.78501 0.0507812 6.61057 0.225227 6.61057 0.436397C6.61057 0.647568 6.78501 0.822013 6.99618 0.822013C7.20735 0.822013 7.3818 0.647568 7.3818 0.436397C7.3818 0.225227 7.20735 0.0507812 6.99618 0.0507812Z" fill="#404040"/>
|
|
15
|
+
<path d="M5.87147 0.078125C5.67407 0.078125 5.5134 0.238798 5.5134 0.436197C5.5134 0.633596 5.67407 0.794269 5.87147 0.794269C6.06887 0.794269 6.22954 0.633596 6.22954 0.436197C6.22954 0.238798 6.06887 0.078125 5.87147 0.078125Z" fill="#404040"/>
|
|
16
|
+
<path d="M4.74216 0.101074C4.55854 0.101074 4.40704 0.252566 4.40704 0.436193C4.40704 0.619819 4.55854 0.771311 4.74216 0.771311C4.92579 0.771311 5.07728 0.619819 5.07728 0.436193C5.07728 0.252566 4.92579 0.101074 4.74216 0.101074Z" fill="#404040"/>
|
|
17
|
+
<path d="M3.61284 0.128418C3.44299 0.128418 3.30527 0.266138 3.30527 0.435993C3.30527 0.605847 3.44299 0.743567 3.61284 0.743567C3.7827 0.743567 3.92042 0.605847 3.92042 0.435993C3.92042 0.266138 3.7827 0.128418 3.61284 0.128418Z" fill="#404040"/>
|
|
18
|
+
<path d="M2.48817 0.15625C2.33209 0.15625 2.20355 0.284789 2.20355 0.440871C2.20355 0.596954 2.33209 0.725493 2.48817 0.725493C2.64426 0.725493 2.77279 0.596954 2.77279 0.440871C2.77279 0.284789 2.64426 0.15625 2.48817 0.15625Z" fill="#404040"/>
|
|
19
|
+
<path d="M1.35885 0.179199C1.21654 0.179199 1.10178 0.293966 1.10178 0.436276C1.10178 0.578587 1.21654 0.693354 1.35885 0.693354C1.50116 0.693354 1.61593 0.578587 1.61593 0.436276C1.61593 0.293966 1.50116 0.179199 1.35885 0.179199Z" fill="#404040"/>
|
|
20
|
+
<path d="M0.229533 0.66561C0.356301 0.66561 0.459067 0.562844 0.459067 0.436076C0.459067 0.309309 0.356301 0.206543 0.229533 0.206543C0.102766 0.206543 0 0.309309 0 0.436076C0 0.562844 0.102766 0.66561 0.229533 0.66561Z" fill="#404040"/>
|
|
21
|
+
<path d="M10.3795 2.05671C10.6366 2.05671 10.8431 1.85013 10.8431 1.59305C10.8431 1.33597 10.6366 1.12939 10.3795 1.12939C10.1224 1.12939 9.91583 1.33597 9.91583 1.59305C9.91583 1.85013 10.1224 2.05671 10.3795 2.05671Z" fill="#404040"/>
|
|
22
|
+
<path d="M9.25478 1.15674C9.01147 1.15674 8.81866 1.35414 8.81866 1.59285C8.81866 1.83157 9.01606 2.02896 9.25478 2.02896C9.49349 2.02896 9.69089 1.83157 9.69089 1.59285C9.69089 1.35414 9.49349 1.15674 9.25478 1.15674Z" fill="#404040"/>
|
|
23
|
+
<path d="M8.1255 1.17969C7.90056 1.17969 7.71234 1.36331 7.71234 1.59285C7.71234 1.82238 7.89597 2.00601 8.1255 2.00601C8.35504 2.00601 8.53866 1.82238 8.53866 1.59285C8.53866 1.36331 8.35504 1.17969 8.1255 1.17969Z" fill="#404040"/>
|
|
24
|
+
<path d="M6.99618 1.20752C6.78501 1.20752 6.61057 1.38196 6.61057 1.59314C6.61057 1.80431 6.78501 1.97875 6.99618 1.97875C7.20735 1.97875 7.3818 1.80431 7.3818 1.59314C7.3818 1.38196 7.20735 1.20752 6.99618 1.20752Z" fill="#404040"/>
|
|
25
|
+
<path d="M5.87147 1.23486C5.67407 1.23486 5.5134 1.39554 5.5134 1.59294C5.5134 1.79033 5.67407 1.95101 5.87147 1.95101C6.06887 1.95101 6.22954 1.79033 6.22954 1.59294C6.22954 1.39554 6.06887 1.23486 5.87147 1.23486Z" fill="#404040"/>
|
|
26
|
+
<path d="M4.74216 1.25781C4.55854 1.25781 4.40704 1.4093 4.40704 1.59293C4.40704 1.77656 4.55854 1.92805 4.74216 1.92805C4.92579 1.92805 5.07728 1.77656 5.07728 1.59293C5.07728 1.4093 4.92579 1.25781 4.74216 1.25781Z" fill="#404040"/>
|
|
27
|
+
<path d="M3.61284 1.90031C3.78271 1.90031 3.92042 1.7626 3.92042 1.59273C3.92042 1.42286 3.78271 1.28516 3.61284 1.28516C3.44297 1.28516 3.30527 1.42286 3.30527 1.59273C3.30527 1.7626 3.44297 1.90031 3.61284 1.90031Z" fill="#404040"/>
|
|
28
|
+
<path d="M2.48817 1.87784C2.64537 1.87784 2.77279 1.75041 2.77279 1.59322C2.77279 1.43602 2.64537 1.30859 2.48817 1.30859C2.33098 1.30859 2.20355 1.43602 2.20355 1.59322C2.20355 1.75041 2.33098 1.87784 2.48817 1.87784Z" fill="#404040"/>
|
|
29
|
+
<path d="M11.5088 3.2364C11.7796 3.2364 11.9954 3.01605 11.9954 2.74979C11.9954 2.48354 11.7751 2.26318 11.5088 2.26318C11.2425 2.26318 11.0222 2.48354 11.0222 2.74979C11.0222 3.01605 11.2425 3.2364 11.5088 3.2364Z" fill="#404040"/>
|
|
30
|
+
<path d="M10.3795 3.21345C10.6366 3.21345 10.8431 3.00687 10.8431 2.74979C10.8431 2.49271 10.6366 2.28613 10.3795 2.28613C10.1224 2.28613 9.91583 2.49271 9.91583 2.74979C9.91583 3.00687 10.1224 3.21345 10.3795 3.21345Z" fill="#404040"/>
|
|
31
|
+
<path d="M9.25478 2.31348C9.01147 2.31348 8.81866 2.51088 8.81866 2.74959C8.81866 2.9883 9.01606 3.1857 9.25478 3.1857C9.49349 3.1857 9.69089 2.9883 9.69089 2.74959C9.69089 2.51088 9.49349 2.31348 9.25478 2.31348Z" fill="#404040"/>
|
|
32
|
+
<path d="M8.1255 3.16323C8.35368 3.16323 8.53866 2.97826 8.53866 2.75007C8.53866 2.52189 8.35368 2.33691 8.1255 2.33691C7.89732 2.33691 7.71234 2.52189 7.71234 2.75007C7.71234 2.97826 7.89732 3.16323 8.1255 3.16323Z" fill="#404040"/>
|
|
33
|
+
<path d="M6.99618 2.36426C6.78501 2.36426 6.61057 2.5387 6.61057 2.74987C6.61057 2.96104 6.78501 3.13549 6.99618 3.13549C7.20735 3.13549 7.3818 2.96104 7.3818 2.74987C7.3818 2.5387 7.20735 2.36426 6.99618 2.36426Z" fill="#404040"/>
|
|
34
|
+
<path d="M5.87147 3.10775C6.06923 3.10775 6.22954 2.94743 6.22954 2.74967C6.22954 2.55192 6.06923 2.3916 5.87147 2.3916C5.67371 2.3916 5.5134 2.55192 5.5134 2.74967C5.5134 2.94743 5.67371 3.10775 5.87147 3.10775Z" fill="#404040"/>
|
|
35
|
+
<path d="M4.74216 2.41455C4.55854 2.41455 4.40704 2.56604 4.40704 2.74967C4.40704 2.9333 4.55854 3.08479 4.74216 3.08479C4.92579 3.08479 5.07728 2.9333 5.07728 2.74967C5.07728 2.56604 4.92579 2.41455 4.74216 2.41455Z" fill="#404040"/>
|
|
36
|
+
<path d="M12.6381 4.42089C12.9227 4.42089 13.1523 4.19135 13.1523 3.90673C13.1523 3.62211 12.9227 3.39258 12.6381 3.39258C12.3535 3.39258 12.124 3.62211 12.124 3.90673C12.124 4.19135 12.3535 4.42089 12.6381 4.42089Z" fill="#404040"/>
|
|
37
|
+
<path d="M11.5088 4.39314C11.7796 4.39314 11.9954 4.17279 11.9954 3.90653C11.9954 3.64027 11.7751 3.41992 11.5088 3.41992C11.2425 3.41992 11.0222 3.64027 11.0222 3.90653C11.0222 4.17279 11.2425 4.39314 11.5088 4.39314Z" fill="#404040"/>
|
|
38
|
+
<path d="M13.7628 5.60049C14.0612 5.60049 14.3045 5.35718 14.3045 5.05879C14.3045 4.7604 14.0612 4.51709 13.7628 4.51709C13.4644 4.51709 13.2211 4.7604 13.2211 5.05879C13.2211 5.35718 13.4644 5.60049 13.7628 5.60049Z" fill="#404040"/>
|
|
39
|
+
<path d="M12.6381 5.57763C12.9227 5.57763 13.1523 5.34809 13.1523 5.06347C13.1523 4.77885 12.9227 4.54932 12.6381 4.54932C12.3535 4.54932 12.124 4.77885 12.124 5.06347C12.124 5.34809 12.3535 5.57763 12.6381 5.57763Z" fill="#404040"/>
|
|
40
|
+
<path d="M15.4568 6.22041C15.4568 5.90825 15.2043 5.65576 14.8921 5.65576C14.5799 5.65576 14.3275 5.90825 14.3275 6.22041C14.3275 6.53258 14.5799 6.78507 14.8921 6.78507C15.2043 6.78507 15.4568 6.53258 15.4568 6.22041Z" fill="#404040"/>
|
|
41
|
+
<path d="M13.7628 6.76211C14.062 6.76211 14.3045 6.51958 14.3045 6.22041C14.3045 5.92124 14.062 5.67871 13.7628 5.67871C13.4637 5.67871 13.2211 5.92124 13.2211 6.22041C13.2211 6.51958 13.4637 6.76211 13.7628 6.76211Z" fill="#404040"/>
|
|
42
|
+
<path d="M12.6381 6.73436C12.9227 6.73436 13.1523 6.50483 13.1523 6.22021C13.1523 5.93559 12.9227 5.70605 12.6381 5.70605C12.3535 5.70605 12.124 5.93559 12.124 6.22021C12.124 6.50483 12.3535 6.73436 12.6381 6.73436Z" fill="#404040"/>
|
|
43
|
+
<path d="M10.3795 11.3067C10.6366 11.3067 10.8431 11.1001 10.8431 10.8431C10.8431 10.586 10.6366 10.3794 10.3795 10.3794C10.1224 10.3794 9.91583 10.586 9.91583 10.8431C9.91583 11.1001 10.1224 11.3067 10.3795 11.3067Z" fill="#404040"/>
|
|
44
|
+
<path d="M6.99618 10.4575C6.78501 10.4575 6.61057 10.632 6.61057 10.8431C6.61057 11.0543 6.78501 11.2288 6.99618 11.2288C7.20735 11.2288 7.3818 11.0543 7.3818 10.8431C7.3818 10.632 7.20735 10.4575 6.99618 10.4575Z" fill="#404040"/>
|
|
45
|
+
<path d="M5.87147 10.4854C5.67407 10.4854 5.5134 10.646 5.5134 10.8434C5.5134 11.0408 5.67407 11.2015 5.87147 11.2015C6.06887 11.2015 6.22954 11.0408 6.22954 10.8434C6.22954 10.646 6.06887 10.4854 5.87147 10.4854Z" fill="#404040"/>
|
|
46
|
+
<path d="M3.61284 11.7289C3.78271 11.7289 3.92042 11.5912 3.92042 11.4213C3.92042 11.2515 3.78271 11.1138 3.61284 11.1138C3.44297 11.1138 3.30527 11.2515 3.30527 11.4213C3.30527 11.5912 3.44297 11.7289 3.61284 11.7289Z" fill="#404040"/>
|
|
47
|
+
<path d="M2.48817 11.706C2.64537 11.706 2.77279 11.5785 2.77279 11.4213C2.77279 11.2641 2.64537 11.1367 2.48817 11.1367C2.33098 11.1367 2.20355 11.2641 2.20355 11.4213C2.20355 11.5785 2.33098 11.706 2.48817 11.706Z" fill="#404040"/>
|
|
48
|
+
<path d="M11.5088 10.1773C11.7796 10.1773 11.9954 9.95697 11.9954 9.69071C11.9954 9.42445 11.7751 9.2041 11.5088 9.2041C11.2425 9.2041 11.0222 9.42445 11.0222 9.69071C11.0222 9.95697 11.2425 10.1773 11.5088 10.1773Z" fill="#404040"/>
|
|
49
|
+
<path d="M10.3795 10.15C10.6366 10.15 10.8431 9.94339 10.8431 9.68631C10.8431 9.42924 10.6366 9.22266 10.3795 9.22266C10.1224 9.22266 9.91583 9.42924 9.91583 9.68631C9.91583 9.94339 10.1224 10.15 10.3795 10.15Z" fill="#404040"/>
|
|
50
|
+
<path d="M12.6381 9.04345C12.9227 9.04345 13.1523 8.81391 13.1523 8.52929C13.1523 8.24467 12.9227 8.01514 12.6381 8.01514C12.3535 8.01514 12.124 8.24467 12.124 8.52929C12.124 8.81391 12.3535 9.04345 12.6381 9.04345Z" fill="#404040"/>
|
|
51
|
+
<path d="M11.5088 9.02058C11.7796 9.02058 11.9954 8.80023 11.9954 8.53397C11.9954 8.26771 11.7751 8.04736 11.5088 8.04736C11.2425 8.04736 11.0222 8.26771 11.0222 8.53397C11.0222 8.80023 11.2425 9.02058 11.5088 9.02058Z" fill="#404040"/>
|
|
52
|
+
<path d="M10.3795 8.99323C10.6366 8.99323 10.8431 8.78665 10.8431 8.52958C10.8431 8.2725 10.6366 8.06592 10.3795 8.06592C10.1224 8.06592 9.91583 8.2725 9.91583 8.52958C9.91583 8.78665 10.1224 8.99323 10.3795 8.99323Z" fill="#404040"/>
|
|
53
|
+
<path d="M13.7628 7.91445C14.0612 7.91445 14.3045 7.67115 14.3045 7.37275C14.3045 7.07436 14.0612 6.83105 13.7628 6.83105C13.4644 6.83105 13.2211 7.07436 13.2211 7.37275C13.2211 7.67115 13.4644 7.91445 13.7628 7.91445Z" fill="#404040"/>
|
|
54
|
+
<path d="M12.6381 7.88671C12.9227 7.88671 13.1523 7.65717 13.1523 7.37255C13.1523 7.08793 12.9227 6.8584 12.6381 6.8584C12.3535 6.8584 12.124 7.08793 12.124 7.37255C12.124 7.65717 12.3535 7.88671 12.6381 7.88671Z" fill="#404040"/>
|
|
55
|
+
<path d="M11.5088 7.86385C11.7796 7.86385 11.9954 7.64349 11.9954 7.37724C11.9954 7.11098 11.7751 6.89062 11.5088 6.89062C11.2425 6.89062 11.0222 7.11098 11.0222 7.37724C11.0222 7.64349 11.2425 7.86385 11.5088 7.86385Z" fill="#404040"/>
|
|
56
|
+
<path d="M9.25478 23.123C9.01147 23.123 8.81866 23.3204 8.81866 23.5592C8.81866 23.7979 9.01606 23.9953 9.25478 23.9953C9.49349 23.9953 9.69089 23.7979 9.69089 23.5592C9.69089 23.3204 9.49349 23.123 9.25478 23.123Z" fill="#404040"/>
|
|
57
|
+
<path d="M8.1255 23.9772C8.35368 23.9772 8.53866 23.7922 8.53866 23.564C8.53866 23.3359 8.35368 23.1509 8.1255 23.1509C7.89732 23.1509 7.71234 23.3359 7.71234 23.564C7.71234 23.7922 7.89732 23.9772 8.1255 23.9772Z" fill="#404040"/>
|
|
58
|
+
<path d="M6.99618 23.1782C6.78501 23.1782 6.61057 23.3527 6.61057 23.5638C6.61057 23.775 6.78501 23.9495 6.99618 23.9495C7.20735 23.9495 7.3818 23.775 7.3818 23.5638C7.3818 23.3527 7.20735 23.1782 6.99618 23.1782Z" fill="#404040"/>
|
|
59
|
+
<path d="M5.87147 23.9222C6.06923 23.9222 6.22954 23.7619 6.22954 23.5641C6.22954 23.3664 6.06923 23.2061 5.87147 23.2061C5.67371 23.2061 5.5134 23.3664 5.5134 23.5641C5.5134 23.7619 5.67371 23.9222 5.87147 23.9222Z" fill="#404040"/>
|
|
60
|
+
<path d="M4.74216 23.229C4.55854 23.229 4.40704 23.3805 4.40704 23.5641C4.40704 23.7478 4.55854 23.8992 4.74216 23.8992C4.92579 23.8992 5.07728 23.7478 5.07728 23.5641C5.07728 23.3805 4.92579 23.229 4.74216 23.229Z" fill="#404040"/>
|
|
61
|
+
<path d="M3.61284 23.8715C3.78271 23.8715 3.92042 23.7338 3.92042 23.5639C3.92042 23.3941 3.78271 23.2563 3.61284 23.2563C3.44297 23.2563 3.30527 23.3941 3.30527 23.5639C3.30527 23.7338 3.44297 23.8715 3.61284 23.8715Z" fill="#404040"/>
|
|
62
|
+
<path d="M2.48817 23.8485C2.64537 23.8485 2.77279 23.7211 2.77279 23.5639C2.77279 23.4067 2.64537 23.2793 2.48817 23.2793C2.33098 23.2793 2.20355 23.4067 2.20355 23.5639C2.20355 23.7211 2.33098 23.8485 2.48817 23.8485Z" fill="#404040"/>
|
|
63
|
+
<path d="M1.35885 23.8208C1.50083 23.8208 1.61593 23.7057 1.61593 23.5637C1.61593 23.4217 1.50083 23.3066 1.35885 23.3066C1.21687 23.3066 1.10178 23.4217 1.10178 23.5637C1.10178 23.7057 1.21687 23.8208 1.35885 23.8208Z" fill="#404040"/>
|
|
64
|
+
<path d="M0.229533 23.7935C0.356301 23.7935 0.459067 23.6908 0.459067 23.564C0.459067 23.4372 0.356301 23.3345 0.229533 23.3345C0.102766 23.3345 0 23.4372 0 23.564C0 23.6908 0.102766 23.7935 0.229533 23.7935Z" fill="#404040"/>
|
|
65
|
+
<path d="M10.3795 22.8663C10.6366 22.8663 10.8431 22.6597 10.8431 22.4026C10.8431 22.1455 10.6366 21.939 10.3795 21.939C10.1224 21.939 9.91583 22.1455 9.91583 22.4026C9.91583 22.6597 10.1224 22.8663 10.3795 22.8663Z" fill="#404040"/>
|
|
66
|
+
<path d="M9.25478 21.9663C9.01147 21.9663 8.81866 22.1637 8.81866 22.4024C8.81866 22.6411 9.01606 22.8385 9.25478 22.8385C9.49349 22.8385 9.69089 22.6411 9.69089 22.4024C9.69089 22.1637 9.49349 21.9663 9.25478 21.9663Z" fill="#404040"/>
|
|
67
|
+
<path d="M8.1255 22.82C8.35368 22.82 8.53866 22.635 8.53866 22.4068C8.53866 22.1786 8.35368 21.9937 8.1255 21.9937C7.89732 21.9937 7.71234 22.1786 7.71234 22.4068C7.71234 22.635 7.89732 22.82 8.1255 22.82Z" fill="#404040"/>
|
|
68
|
+
<path d="M6.99618 22.0215C6.78501 22.0215 6.61057 22.1959 6.61057 22.4071C6.61057 22.6183 6.78501 22.7927 6.99618 22.7927C7.20735 22.7927 7.3818 22.6183 7.3818 22.4071C7.3818 22.1959 7.20735 22.0215 6.99618 22.0215Z" fill="#404040"/>
|
|
69
|
+
<path d="M5.87147 22.0444C5.67407 22.0444 5.5134 22.2051 5.5134 22.4025C5.5134 22.5999 5.67407 22.7606 5.87147 22.7606C6.06887 22.7606 6.22954 22.5999 6.22954 22.4025C6.22954 22.2051 6.06887 22.0444 5.87147 22.0444Z" fill="#404040"/>
|
|
70
|
+
<path d="M4.74216 22.0718C4.55854 22.0718 4.40704 22.2233 4.40704 22.4069C4.40704 22.5905 4.55854 22.742 4.74216 22.742C4.92579 22.742 5.07728 22.5905 5.07728 22.4069C5.07728 22.2233 4.92579 22.0718 4.74216 22.0718Z" fill="#404040"/>
|
|
71
|
+
<path d="M3.61284 22.0947C3.44299 22.0947 3.30527 22.2324 3.30527 22.4023C3.30527 22.5722 3.44299 22.7099 3.61284 22.7099C3.7827 22.7099 3.92042 22.5722 3.92042 22.4023C3.92042 22.2324 3.7827 22.0947 3.61284 22.0947Z" fill="#404040"/>
|
|
72
|
+
<path d="M2.48817 22.6918C2.64537 22.6918 2.77279 22.5644 2.77279 22.4072C2.77279 22.25 2.64537 22.1226 2.48817 22.1226C2.33098 22.1226 2.20355 22.25 2.20355 22.4072C2.20355 22.5644 2.33098 22.6918 2.48817 22.6918Z" fill="#404040"/>
|
|
73
|
+
<path d="M11.5088 21.7369C11.7796 21.7369 11.9954 21.5165 11.9954 21.2503C11.9954 20.984 11.7751 20.7637 11.5088 20.7637C11.2425 20.7637 11.0222 20.984 11.0222 21.2503C11.0222 21.5165 11.2425 21.7369 11.5088 21.7369Z" fill="#404040"/>
|
|
74
|
+
<path d="M10.3795 21.7139C10.6366 21.7139 10.8431 21.5074 10.8431 21.2503C10.8431 20.9932 10.6366 20.7866 10.3795 20.7866C10.1224 20.7866 9.91583 20.9932 9.91583 21.2503C9.91583 21.5074 10.1224 21.7139 10.3795 21.7139Z" fill="#404040"/>
|
|
75
|
+
<path d="M9.25478 20.814C9.01147 20.814 8.81866 21.0114 8.81866 21.2501C8.81866 21.4888 9.01606 21.6862 9.25478 21.6862C9.49349 21.6862 9.69089 21.4888 9.69089 21.2501C9.69089 21.0114 9.49349 20.814 9.25478 20.814Z" fill="#404040"/>
|
|
76
|
+
<path d="M8.1255 20.8369C7.90056 20.8369 7.71234 21.0205 7.71234 21.2501C7.71234 21.4796 7.89597 21.6632 8.1255 21.6632C8.35504 21.6632 8.53866 21.4796 8.53866 21.2501C8.53866 21.0205 8.35504 20.8369 8.1255 20.8369Z" fill="#404040"/>
|
|
77
|
+
<path d="M6.99618 20.8647C6.78501 20.8647 6.61057 21.0392 6.61057 21.2504C6.61057 21.4615 6.78501 21.636 6.99618 21.636C7.20735 21.636 7.3818 21.4615 7.3818 21.2504C7.3818 21.0392 7.20735 20.8647 6.99618 20.8647Z" fill="#404040"/>
|
|
78
|
+
<path d="M5.87147 21.6082C6.06923 21.6082 6.22954 21.4479 6.22954 21.2502C6.22954 21.0524 6.06923 20.8921 5.87147 20.8921C5.67371 20.8921 5.5134 21.0524 5.5134 21.2502C5.5134 21.4479 5.67371 21.6082 5.87147 21.6082Z" fill="#404040"/>
|
|
79
|
+
<path d="M4.74216 20.915C4.55854 20.915 4.40704 21.0665 4.40704 21.2502C4.40704 21.4338 4.55854 21.5853 4.74216 21.5853C4.92579 21.5853 5.07728 21.4338 5.07728 21.2502C5.07728 21.0665 4.92579 20.915 4.74216 20.915Z" fill="#404040"/>
|
|
80
|
+
<path d="M12.6381 20.6074C12.9227 20.6074 13.1523 20.3779 13.1523 20.0933C13.1523 19.8086 12.9227 19.5791 12.6381 19.5791C12.3535 19.5791 12.124 19.8086 12.124 20.0933C12.124 20.3779 12.3535 20.6074 12.6381 20.6074Z" fill="#404040"/>
|
|
81
|
+
<path d="M11.5088 20.5802C11.7796 20.5802 11.9954 20.3598 11.9954 20.0935C11.9954 19.8273 11.7751 19.6069 11.5088 19.6069C11.2425 19.6069 11.0222 19.8273 11.0222 20.0935C11.0222 20.3598 11.2425 20.5802 11.5088 20.5802Z" fill="#404040"/>
|
|
82
|
+
<path d="M13.7628 19.4784C14.062 19.4784 14.3045 19.2359 14.3045 18.9367C14.3045 18.6375 14.062 18.395 13.7628 18.395C13.4637 18.395 13.2211 18.6375 13.2211 18.9367C13.2211 19.2359 13.4637 19.4784 13.7628 19.4784Z" fill="#404040"/>
|
|
83
|
+
<path d="M12.6381 19.4507C12.9227 19.4507 13.1523 19.2211 13.1523 18.9365C13.1523 18.6519 12.9227 18.4224 12.6381 18.4224C12.3535 18.4224 12.124 18.6519 12.124 18.9365C12.124 19.2211 12.3535 19.4507 12.6381 19.4507Z" fill="#404040"/>
|
|
84
|
+
<path d="M15.4568 17.7795C15.4568 17.4673 15.2043 17.2148 14.8921 17.2148C14.5799 17.2148 14.3275 17.4673 14.3275 17.7795C14.3275 18.0917 14.5799 18.3441 14.8921 18.3441C15.2043 18.3441 15.4568 18.0917 15.4568 17.7795Z" fill="#404040"/>
|
|
85
|
+
<path d="M13.7628 18.3212C14.0612 18.3212 14.3045 18.0779 14.3045 17.7795C14.3045 17.4811 14.0612 17.2378 13.7628 17.2378C13.4644 17.2378 13.2211 17.4811 13.2211 17.7795C13.2211 18.0779 13.4644 18.3212 13.7628 18.3212Z" fill="#404040"/>
|
|
86
|
+
<path d="M12.6381 18.2939C12.9227 18.2939 13.1523 18.0644 13.1523 17.7798C13.1523 17.4952 12.9227 17.2656 12.6381 17.2656C12.3535 17.2656 12.124 17.4952 12.124 17.7798C12.124 18.0644 12.3535 18.2939 12.6381 18.2939Z" fill="#404040"/>
|
|
87
|
+
<path d="M10.3795 13.6207C10.6366 13.6207 10.8431 13.4141 10.8431 13.157C10.8431 12.8999 10.6366 12.6934 10.3795 12.6934C10.1224 12.6934 9.91583 12.8999 9.91583 13.157C9.91583 13.4141 10.1224 13.6207 10.3795 13.6207Z" fill="#404040"/>
|
|
88
|
+
<path d="M6.99618 12.7715C6.78501 12.7715 6.61057 12.9459 6.61057 13.1571C6.61057 13.3683 6.78501 13.5427 6.99618 13.5427C7.20735 13.5427 7.3818 13.3683 7.3818 13.1571C7.3818 12.9459 7.20735 12.7715 6.99618 12.7715Z" fill="#404040"/>
|
|
89
|
+
<path d="M5.87147 13.515C6.06923 13.515 6.22954 13.3547 6.22954 13.1569C6.22954 12.9591 6.06923 12.7988 5.87147 12.7988C5.67371 12.7988 5.5134 12.9591 5.5134 13.1569C5.5134 13.3547 5.67371 13.515 5.87147 13.515Z" fill="#404040"/>
|
|
90
|
+
<path d="M3.61284 12.271C3.44299 12.271 3.30527 12.4087 3.30527 12.5786C3.30527 12.7484 3.44299 12.8861 3.61284 12.8861C3.7827 12.8861 3.92042 12.7484 3.92042 12.5786C3.92042 12.4087 3.7827 12.271 3.61284 12.271Z" fill="#404040"/>
|
|
91
|
+
<path d="M11.5088 14.8004C11.7796 14.8004 11.9954 14.58 11.9954 14.3138C11.9954 14.0475 11.7751 13.8271 11.5088 13.8271C11.2425 13.8271 11.0222 14.0475 11.0222 14.3138C11.0222 14.58 11.2425 14.8004 11.5088 14.8004Z" fill="#404040"/>
|
|
92
|
+
<path d="M10.3795 14.7725C10.6366 14.7725 10.8431 14.5659 10.8431 14.3089C10.8431 14.0518 10.6366 13.8452 10.3795 13.8452C10.1224 13.8452 9.91583 14.0518 9.91583 14.3089C9.91583 14.5659 10.1224 14.7725 10.3795 14.7725Z" fill="#404040"/>
|
|
93
|
+
<path d="M12.6381 15.98C12.9227 15.98 13.1523 15.7504 13.1523 15.4658C13.1523 15.1812 12.9227 14.9517 12.6381 14.9517C12.3535 14.9517 12.124 15.1812 12.124 15.4658C12.124 15.7504 12.3535 15.98 12.6381 15.98Z" fill="#404040"/>
|
|
94
|
+
<path d="M11.5088 15.9571C11.7796 15.9571 11.9954 15.7368 11.9954 15.4705C11.9954 15.2042 11.7751 14.9839 11.5088 14.9839C11.2425 14.9839 11.0222 15.2042 11.0222 15.4705C11.0222 15.7368 11.2425 15.9571 11.5088 15.9571Z" fill="#404040"/>
|
|
95
|
+
<path d="M10.3795 15.9298C10.6366 15.9298 10.8431 15.7232 10.8431 15.4661C10.8431 15.209 10.6366 15.0024 10.3795 15.0024C10.1224 15.0024 9.91583 15.209 9.91583 15.4661C9.91583 15.7232 10.1224 15.9298 10.3795 15.9298Z" fill="#404040"/>
|
|
96
|
+
<path d="M13.7628 17.1645C14.062 17.1645 14.3045 16.9219 14.3045 16.6228C14.3045 16.3236 14.062 16.0811 13.7628 16.0811C13.4637 16.0811 13.2211 16.3236 13.2211 16.6228C13.2211 16.9219 13.4637 17.1645 13.7628 17.1645Z" fill="#404040"/>
|
|
97
|
+
<path d="M12.6381 17.1372C12.9227 17.1372 13.1523 16.9077 13.1523 16.623C13.1523 16.3384 12.9227 16.1089 12.6381 16.1089C12.3535 16.1089 12.124 16.3384 12.124 16.623C12.124 16.9077 12.3535 17.1372 12.6381 17.1372Z" fill="#404040"/>
|
|
98
|
+
<path d="M11.5088 17.1138C11.7796 17.1138 11.9954 16.8935 11.9954 16.6272C11.9954 16.361 11.7751 16.1406 11.5088 16.1406C11.2425 16.1406 11.0222 16.361 11.0222 16.6272C11.0222 16.8935 11.2425 17.1138 11.5088 17.1138Z" fill="#404040"/>
|
|
99
|
+
<path d="M9.25478 9.25C9.01147 9.25 8.81866 9.4474 8.81866 9.68611C8.81866 9.92483 9.01606 10.1222 9.25478 10.1222C9.49349 10.1222 9.69089 9.92483 9.69089 9.68611C9.69089 9.4474 9.49349 9.25 9.25478 9.25Z" fill="#404040"/>
|
|
100
|
+
<path d="M9.25478 11.564C9.01147 11.564 8.81866 11.7614 8.81866 12.0001C8.81866 12.2388 9.01606 12.4362 9.25478 12.4362C9.49349 12.4362 9.69089 12.2388 9.69089 12.0001C9.69089 11.7614 9.49349 11.564 9.25478 11.564Z" fill="#404040"/>
|
|
101
|
+
<path d="M9.25478 12.7207C9.01147 12.7207 8.81866 12.9181 8.81866 13.1568C8.81866 13.3955 9.01606 13.5929 9.25478 13.5929C9.49349 13.5929 9.69089 13.3955 9.69089 13.1568C9.69089 12.9181 9.49349 12.7207 9.25478 12.7207Z" fill="#404040"/>
|
|
102
|
+
<path d="M9.25478 13.873C9.01147 13.873 8.81866 14.0704 8.81866 14.3092C8.81866 14.5479 9.01606 14.7453 9.25478 14.7453C9.49349 14.7453 9.69089 14.5479 9.69089 14.3092C9.69089 14.0704 9.49349 13.873 9.25478 13.873Z" fill="#404040"/>
|
|
103
|
+
<path d="M9.25478 10.4072C9.01147 10.4072 8.81866 10.6046 8.81866 10.8433C8.81866 11.0866 9.01606 11.2795 9.25478 11.2795C9.49349 11.2795 9.69089 11.0821 9.69089 10.8433C9.69089 10.6 9.49349 10.4072 9.25478 10.4072Z" fill="#404040"/>
|
|
104
|
+
<path d="M8.1255 9.85156C7.90056 9.85156 7.71234 10.0352 7.71234 10.2647C7.71234 10.4943 7.89597 10.6779 8.1255 10.6779C8.35504 10.6779 8.53866 10.4943 8.53866 10.2647C8.53866 10.0352 8.35504 9.85156 8.1255 9.85156Z" fill="#404040"/>
|
|
105
|
+
<path d="M8.1255 12.165C7.90056 12.165 7.71234 12.3487 7.71234 12.5782C7.71234 12.8077 7.89597 12.9914 8.1255 12.9914C8.35504 12.9914 8.53866 12.8077 8.53866 12.5782C8.53866 12.3487 8.35504 12.165 8.1255 12.165Z" fill="#404040"/>
|
|
106
|
+
<path d="M8.1255 13.3223C7.90056 13.3223 7.71234 13.5059 7.71234 13.7354C7.71234 13.965 7.89597 14.1486 8.1255 14.1486C8.35504 14.1486 8.53866 13.965 8.53866 13.7354C8.53866 13.5059 8.35504 13.3223 8.1255 13.3223Z" fill="#404040"/>
|
|
107
|
+
<path d="M8.1255 11.0083C7.90056 11.0083 7.71234 11.1919 7.71234 11.4215C7.71234 11.5087 7.73989 11.5867 7.7812 11.651C7.85465 11.7612 7.9786 11.83 8.12091 11.83C8.26322 11.83 8.38717 11.7566 8.46062 11.651C8.50653 11.5867 8.52948 11.5041 8.52948 11.4215C8.52948 11.1965 8.34585 11.0083 8.11632 11.0083H8.1255Z" fill="#404040"/>
|
|
108
|
+
<path d="M7.07422 11.6234C7.05127 11.6188 7.02373 11.6143 6.99618 11.6143C6.96864 11.6143 6.94568 11.6143 6.91814 11.6234C6.74369 11.6602 6.61057 11.8162 6.61057 11.9999C6.61057 12.1881 6.74369 12.3396 6.91814 12.3763C6.94109 12.3809 6.96864 12.3855 6.99618 12.3855C7.02373 12.3855 7.04668 12.3855 7.07422 12.3763C7.24867 12.3396 7.3818 12.1835 7.3818 11.9999C7.3818 11.8117 7.24867 11.6602 7.07422 11.6234Z" fill="#404040"/>
|
|
109
|
+
<path d="M6.07344 11.7018C6.01376 11.665 5.9449 11.6421 5.87145 11.6421C5.798 11.6421 5.72914 11.665 5.66946 11.7018C5.57306 11.766 5.50879 11.8762 5.50879 12.0002C5.50879 12.1012 5.5501 12.1884 5.61437 12.2526C5.67864 12.3169 5.77046 12.3582 5.86686 12.3582C5.96326 12.3582 6.05508 12.3169 6.11935 12.2526C6.18362 12.1884 6.22493 12.0966 6.22493 12.0002C6.22493 11.8762 6.16066 11.766 6.06426 11.7018H6.07344Z" fill="#404040"/>
|
|
110
|
+
<path d="M4.74216 12.2432C4.55854 12.2432 4.40704 12.3947 4.40704 12.5783C4.40704 12.7619 4.55854 12.9134 4.74216 12.9134C4.92579 12.9134 5.07728 12.7619 5.07728 12.5783C5.07728 12.3947 4.92579 12.2432 4.74216 12.2432Z" fill="#404040"/>
|
|
111
|
+
<path d="M4.74215 11.0864C4.62738 11.0864 4.52639 11.1461 4.46671 11.2333C4.42998 11.2884 4.41162 11.3527 4.41162 11.4215C4.41162 11.6052 4.56311 11.7567 4.74674 11.7567C4.93037 11.7567 5.08186 11.6052 5.08186 11.4215C5.08186 11.3527 5.05891 11.2884 5.02677 11.2333C4.96709 11.1461 4.8661 11.0864 4.75133 11.0864H4.74215Z" fill="#404040"/>
|
|
112
|
+
<path d="M1.61134 11.9497C1.61134 11.9497 1.60216 11.9176 1.59757 11.8992C1.5838 11.8671 1.56543 11.8396 1.54248 11.8166C1.49657 11.7707 1.4323 11.7432 1.35885 11.7432C1.2854 11.7432 1.22572 11.7707 1.17523 11.8166C1.15227 11.8396 1.13391 11.8671 1.12014 11.8992C1.11555 11.913 1.10637 11.9314 1.10637 11.9497C1.10637 11.9681 1.10178 11.9819 1.10178 12.0002C1.10178 12.0002 1.10178 12.037 1.10637 12.0507C1.10637 12.0691 1.11555 12.0829 1.12014 12.1012C1.15686 12.193 1.24868 12.2573 1.35885 12.2573C1.46903 12.2573 1.55625 12.193 1.59757 12.1012C1.60216 12.0875 1.61134 12.0691 1.61134 12.0507C1.61134 12.0324 1.61593 12.0186 1.61593 12.0002C1.61593 12.0002 1.61593 11.9635 1.61134 11.9497Z" fill="#404040"/>
|
|
113
|
+
<path d="M0.229533 11.7656C0.100995 11.7656 0 11.8712 0 11.9952C0 12.1237 0.105585 12.2247 0.229533 12.2247C0.353481 12.2247 0.459067 12.1191 0.459067 11.9952C0.459067 11.8666 0.353481 11.7656 0.229533 11.7656Z" fill="#404040"/>
|
|
114
|
+
<path d="M2.48817 12.2939C2.33209 12.2939 2.20355 12.4225 2.20355 12.5786C2.20355 12.7346 2.33209 12.8632 2.48817 12.8632C2.64426 12.8632 2.77279 12.7346 2.77279 12.5786C2.77279 12.4225 2.64426 12.2939 2.48817 12.2939Z" fill="#404040"/>
|
|
115
|
+
<path d="M13.414 12C16.7284 12 19.414 9.31446 19.414 6C19.414 2.68554 16.7284 0 13.414 0H9.71848L15.9847 6.22035L10.228 12L15.9847 17.7796L9.71848 24H13.414C16.7284 24 19.414 21.3145 19.414 18C19.414 14.6855 16.7284 12 13.414 12Z" fill="url(#paint0_linear_10849_9504)"/>
|
|
116
|
+
<path d="M18.6519 14.7221L24.1653 11.9998L18.6519 9.27295V14.7221Z" fill="url(#paint1_linear_10849_9504)"/>
|
|
117
|
+
<path d="M9.25478 0C9.01147 0 8.81866 0.197399 8.81866 0.436113C8.81866 0.674828 9.01606 0.872226 9.25478 0.872226C9.49349 0.872226 9.69089 0.674828 9.69089 0.436113C9.69089 0.197399 9.49349 0 9.25478 0Z" fill="url(#paint2_linear_10849_9504)"/>
|
|
118
|
+
<path d="M8.1255 0.0273438C7.90056 0.0273438 7.71234 0.21097 7.71234 0.440504C7.71234 0.670037 7.89597 0.853664 8.1255 0.853664C8.35504 0.853664 8.53866 0.670037 8.53866 0.440504C8.53866 0.21097 8.35504 0.0273438 8.1255 0.0273438Z" fill="url(#paint3_linear_10849_9504)"/>
|
|
119
|
+
<path d="M6.99618 0.0507812C6.78501 0.0507812 6.61057 0.225227 6.61057 0.436397C6.61057 0.647568 6.78501 0.822013 6.99618 0.822013C7.20735 0.822013 7.3818 0.647568 7.3818 0.436397C7.3818 0.225227 7.20735 0.0507812 6.99618 0.0507812Z" fill="url(#paint4_linear_10849_9504)"/>
|
|
120
|
+
<path d="M5.87147 0.078125C5.67407 0.078125 5.5134 0.238798 5.5134 0.436197C5.5134 0.633596 5.67407 0.794269 5.87147 0.794269C6.06887 0.794269 6.22954 0.633596 6.22954 0.436197C6.22954 0.238798 6.06887 0.078125 5.87147 0.078125Z" fill="url(#paint5_linear_10849_9504)"/>
|
|
121
|
+
<path d="M4.74216 0.101074C4.55854 0.101074 4.40704 0.252566 4.40704 0.436193C4.40704 0.619819 4.55854 0.771311 4.74216 0.771311C4.92579 0.771311 5.07728 0.619819 5.07728 0.436193C5.07728 0.252566 4.92579 0.101074 4.74216 0.101074Z" fill="url(#paint6_linear_10849_9504)"/>
|
|
122
|
+
<path d="M3.61284 0.128418C3.44299 0.128418 3.30527 0.266138 3.30527 0.435993C3.30527 0.605847 3.44299 0.743567 3.61284 0.743567C3.7827 0.743567 3.92042 0.605847 3.92042 0.435993C3.92042 0.266138 3.7827 0.128418 3.61284 0.128418Z" fill="url(#paint7_linear_10849_9504)"/>
|
|
123
|
+
<path d="M2.48817 0.15625C2.33209 0.15625 2.20355 0.284789 2.20355 0.440871C2.20355 0.596954 2.33209 0.725493 2.48817 0.725493C2.64426 0.725493 2.77279 0.596954 2.77279 0.440871C2.77279 0.284789 2.64426 0.15625 2.48817 0.15625Z" fill="url(#paint8_linear_10849_9504)"/>
|
|
124
|
+
<path d="M1.35885 0.179199C1.21654 0.179199 1.10178 0.293966 1.10178 0.436276C1.10178 0.578587 1.21654 0.693354 1.35885 0.693354C1.50116 0.693354 1.61593 0.578587 1.61593 0.436276C1.61593 0.293966 1.50116 0.179199 1.35885 0.179199Z" fill="url(#paint9_linear_10849_9504)"/>
|
|
125
|
+
<path d="M0.229533 0.66561C0.356301 0.66561 0.459067 0.562844 0.459067 0.436076C0.459067 0.309309 0.356301 0.206543 0.229533 0.206543C0.102766 0.206543 0 0.309309 0 0.436076C0 0.562844 0.102766 0.66561 0.229533 0.66561Z" fill="url(#paint10_linear_10849_9504)"/>
|
|
126
|
+
<path d="M10.3795 2.05671C10.6366 2.05671 10.8431 1.85013 10.8431 1.59305C10.8431 1.33597 10.6366 1.12939 10.3795 1.12939C10.1224 1.12939 9.91583 1.33597 9.91583 1.59305C9.91583 1.85013 10.1224 2.05671 10.3795 2.05671Z" fill="url(#paint11_linear_10849_9504)"/>
|
|
127
|
+
<path d="M9.25478 1.15674C9.01147 1.15674 8.81866 1.35414 8.81866 1.59285C8.81866 1.83157 9.01606 2.02896 9.25478 2.02896C9.49349 2.02896 9.69089 1.83157 9.69089 1.59285C9.69089 1.35414 9.49349 1.15674 9.25478 1.15674Z" fill="url(#paint12_linear_10849_9504)"/>
|
|
128
|
+
<path d="M8.1255 1.17969C7.90056 1.17969 7.71234 1.36331 7.71234 1.59285C7.71234 1.82238 7.89597 2.00601 8.1255 2.00601C8.35504 2.00601 8.53866 1.82238 8.53866 1.59285C8.53866 1.36331 8.35504 1.17969 8.1255 1.17969Z" fill="url(#paint13_linear_10849_9504)"/>
|
|
129
|
+
<path d="M6.99618 1.20752C6.78501 1.20752 6.61057 1.38196 6.61057 1.59314C6.61057 1.80431 6.78501 1.97875 6.99618 1.97875C7.20735 1.97875 7.3818 1.80431 7.3818 1.59314C7.3818 1.38196 7.20735 1.20752 6.99618 1.20752Z" fill="url(#paint14_linear_10849_9504)"/>
|
|
130
|
+
<path d="M5.87147 1.23486C5.67407 1.23486 5.5134 1.39554 5.5134 1.59294C5.5134 1.79033 5.67407 1.95101 5.87147 1.95101C6.06887 1.95101 6.22954 1.79033 6.22954 1.59294C6.22954 1.39554 6.06887 1.23486 5.87147 1.23486Z" fill="url(#paint15_linear_10849_9504)"/>
|
|
131
|
+
<path d="M4.74216 1.25781C4.55854 1.25781 4.40704 1.4093 4.40704 1.59293C4.40704 1.77656 4.55854 1.92805 4.74216 1.92805C4.92579 1.92805 5.07728 1.77656 5.07728 1.59293C5.07728 1.4093 4.92579 1.25781 4.74216 1.25781Z" fill="url(#paint16_linear_10849_9504)"/>
|
|
132
|
+
<path d="M3.61284 1.90031C3.78271 1.90031 3.92042 1.7626 3.92042 1.59273C3.92042 1.42286 3.78271 1.28516 3.61284 1.28516C3.44297 1.28516 3.30527 1.42286 3.30527 1.59273C3.30527 1.7626 3.44297 1.90031 3.61284 1.90031Z" fill="url(#paint17_linear_10849_9504)"/>
|
|
133
|
+
<path d="M2.48817 1.87784C2.64537 1.87784 2.77279 1.75041 2.77279 1.59322C2.77279 1.43602 2.64537 1.30859 2.48817 1.30859C2.33098 1.30859 2.20355 1.43602 2.20355 1.59322C2.20355 1.75041 2.33098 1.87784 2.48817 1.87784Z" fill="url(#paint18_linear_10849_9504)"/>
|
|
134
|
+
<path d="M11.5088 3.2364C11.7796 3.2364 11.9954 3.01605 11.9954 2.74979C11.9954 2.48354 11.7751 2.26318 11.5088 2.26318C11.2425 2.26318 11.0222 2.48354 11.0222 2.74979C11.0222 3.01605 11.2425 3.2364 11.5088 3.2364Z" fill="url(#paint19_linear_10849_9504)"/>
|
|
135
|
+
<path d="M10.3795 3.21345C10.6366 3.21345 10.8431 3.00687 10.8431 2.74979C10.8431 2.49271 10.6366 2.28613 10.3795 2.28613C10.1224 2.28613 9.91583 2.49271 9.91583 2.74979C9.91583 3.00687 10.1224 3.21345 10.3795 3.21345Z" fill="url(#paint20_linear_10849_9504)"/>
|
|
136
|
+
<path d="M9.25478 2.31348C9.01147 2.31348 8.81866 2.51088 8.81866 2.74959C8.81866 2.9883 9.01606 3.1857 9.25478 3.1857C9.49349 3.1857 9.69089 2.9883 9.69089 2.74959C9.69089 2.51088 9.49349 2.31348 9.25478 2.31348Z" fill="url(#paint21_linear_10849_9504)"/>
|
|
137
|
+
<path d="M8.1255 3.16323C8.35368 3.16323 8.53866 2.97826 8.53866 2.75007C8.53866 2.52189 8.35368 2.33691 8.1255 2.33691C7.89732 2.33691 7.71234 2.52189 7.71234 2.75007C7.71234 2.97826 7.89732 3.16323 8.1255 3.16323Z" fill="url(#paint22_linear_10849_9504)"/>
|
|
138
|
+
<path d="M6.99618 2.36426C6.78501 2.36426 6.61057 2.5387 6.61057 2.74987C6.61057 2.96104 6.78501 3.13549 6.99618 3.13549C7.20735 3.13549 7.3818 2.96104 7.3818 2.74987C7.3818 2.5387 7.20735 2.36426 6.99618 2.36426Z" fill="url(#paint23_linear_10849_9504)"/>
|
|
139
|
+
<path d="M5.87147 3.10775C6.06923 3.10775 6.22954 2.94743 6.22954 2.74967C6.22954 2.55192 6.06923 2.3916 5.87147 2.3916C5.67371 2.3916 5.5134 2.55192 5.5134 2.74967C5.5134 2.94743 5.67371 3.10775 5.87147 3.10775Z" fill="url(#paint24_linear_10849_9504)"/>
|
|
140
|
+
<path d="M4.74216 2.41455C4.55854 2.41455 4.40704 2.56604 4.40704 2.74967C4.40704 2.9333 4.55854 3.08479 4.74216 3.08479C4.92579 3.08479 5.07728 2.9333 5.07728 2.74967C5.07728 2.56604 4.92579 2.41455 4.74216 2.41455Z" fill="url(#paint25_linear_10849_9504)"/>
|
|
141
|
+
<path d="M12.6381 4.42089C12.9227 4.42089 13.1523 4.19135 13.1523 3.90673C13.1523 3.62211 12.9227 3.39258 12.6381 3.39258C12.3535 3.39258 12.124 3.62211 12.124 3.90673C12.124 4.19135 12.3535 4.42089 12.6381 4.42089Z" fill="url(#paint26_linear_10849_9504)"/>
|
|
142
|
+
<path d="M11.5088 4.39314C11.7796 4.39314 11.9954 4.17279 11.9954 3.90653C11.9954 3.64027 11.7751 3.41992 11.5088 3.41992C11.2425 3.41992 11.0222 3.64027 11.0222 3.90653C11.0222 4.17279 11.2425 4.39314 11.5088 4.39314Z" fill="url(#paint27_linear_10849_9504)"/>
|
|
143
|
+
<path d="M13.7628 5.60049C14.0612 5.60049 14.3045 5.35718 14.3045 5.05879C14.3045 4.7604 14.0612 4.51709 13.7628 4.51709C13.4644 4.51709 13.2211 4.7604 13.2211 5.05879C13.2211 5.35718 13.4644 5.60049 13.7628 5.60049Z" fill="url(#paint28_linear_10849_9504)"/>
|
|
144
|
+
<path d="M12.6381 5.57763C12.9227 5.57763 13.1523 5.34809 13.1523 5.06347C13.1523 4.77885 12.9227 4.54932 12.6381 4.54932C12.3535 4.54932 12.124 4.77885 12.124 5.06347C12.124 5.34809 12.3535 5.57763 12.6381 5.57763Z" fill="url(#paint29_linear_10849_9504)"/>
|
|
145
|
+
<path d="M15.4568 6.22041C15.4568 5.90825 15.2043 5.65576 14.8921 5.65576C14.5799 5.65576 14.3275 5.90825 14.3275 6.22041C14.3275 6.53258 14.5799 6.78507 14.8921 6.78507C15.2043 6.78507 15.4568 6.53258 15.4568 6.22041Z" fill="url(#paint30_linear_10849_9504)"/>
|
|
146
|
+
<path d="M13.7628 6.76211C14.062 6.76211 14.3045 6.51958 14.3045 6.22041C14.3045 5.92124 14.062 5.67871 13.7628 5.67871C13.4637 5.67871 13.2211 5.92124 13.2211 6.22041C13.2211 6.51958 13.4637 6.76211 13.7628 6.76211Z" fill="url(#paint31_linear_10849_9504)"/>
|
|
147
|
+
<path d="M12.6381 6.73436C12.9227 6.73436 13.1523 6.50483 13.1523 6.22021C13.1523 5.93559 12.9227 5.70605 12.6381 5.70605C12.3535 5.70605 12.124 5.93559 12.124 6.22021C12.124 6.50483 12.3535 6.73436 12.6381 6.73436Z" fill="url(#paint32_linear_10849_9504)"/>
|
|
148
|
+
<path d="M10.3795 11.3067C10.6366 11.3067 10.8431 11.1001 10.8431 10.8431C10.8431 10.586 10.6366 10.3794 10.3795 10.3794C10.1224 10.3794 9.91583 10.586 9.91583 10.8431C9.91583 11.1001 10.1224 11.3067 10.3795 11.3067Z" fill="url(#paint33_linear_10849_9504)"/>
|
|
149
|
+
<path d="M6.99618 10.4575C6.78501 10.4575 6.61057 10.632 6.61057 10.8431C6.61057 11.0543 6.78501 11.2288 6.99618 11.2288C7.20735 11.2288 7.3818 11.0543 7.3818 10.8431C7.3818 10.632 7.20735 10.4575 6.99618 10.4575Z" fill="url(#paint34_linear_10849_9504)"/>
|
|
150
|
+
<path d="M5.87147 10.4854C5.67407 10.4854 5.5134 10.646 5.5134 10.8434C5.5134 11.0408 5.67407 11.2015 5.87147 11.2015C6.06887 11.2015 6.22954 11.0408 6.22954 10.8434C6.22954 10.646 6.06887 10.4854 5.87147 10.4854Z" fill="url(#paint35_linear_10849_9504)"/>
|
|
151
|
+
<path d="M3.61284 11.7289C3.78271 11.7289 3.92042 11.5912 3.92042 11.4213C3.92042 11.2515 3.78271 11.1138 3.61284 11.1138C3.44297 11.1138 3.30527 11.2515 3.30527 11.4213C3.30527 11.5912 3.44297 11.7289 3.61284 11.7289Z" fill="url(#paint36_linear_10849_9504)"/>
|
|
152
|
+
<path d="M2.48817 11.706C2.64537 11.706 2.77279 11.5785 2.77279 11.4213C2.77279 11.2641 2.64537 11.1367 2.48817 11.1367C2.33098 11.1367 2.20355 11.2641 2.20355 11.4213C2.20355 11.5785 2.33098 11.706 2.48817 11.706Z" fill="url(#paint37_linear_10849_9504)"/>
|
|
153
|
+
<path d="M11.5088 10.1773C11.7796 10.1773 11.9954 9.95697 11.9954 9.69071C11.9954 9.42445 11.7751 9.2041 11.5088 9.2041C11.2425 9.2041 11.0222 9.42445 11.0222 9.69071C11.0222 9.95697 11.2425 10.1773 11.5088 10.1773Z" fill="url(#paint38_linear_10849_9504)"/>
|
|
154
|
+
<path d="M10.3795 10.15C10.6366 10.15 10.8431 9.94339 10.8431 9.68631C10.8431 9.42924 10.6366 9.22266 10.3795 9.22266C10.1224 9.22266 9.91583 9.42924 9.91583 9.68631C9.91583 9.94339 10.1224 10.15 10.3795 10.15Z" fill="url(#paint39_linear_10849_9504)"/>
|
|
155
|
+
<path d="M12.6381 9.04345C12.9227 9.04345 13.1523 8.81391 13.1523 8.52929C13.1523 8.24467 12.9227 8.01514 12.6381 8.01514C12.3535 8.01514 12.124 8.24467 12.124 8.52929C12.124 8.81391 12.3535 9.04345 12.6381 9.04345Z" fill="url(#paint40_linear_10849_9504)"/>
|
|
156
|
+
<path d="M11.5088 9.02058C11.7796 9.02058 11.9954 8.80023 11.9954 8.53397C11.9954 8.26771 11.7751 8.04736 11.5088 8.04736C11.2425 8.04736 11.0222 8.26771 11.0222 8.53397C11.0222 8.80023 11.2425 9.02058 11.5088 9.02058Z" fill="url(#paint41_linear_10849_9504)"/>
|
|
157
|
+
<path d="M10.3795 8.99323C10.6366 8.99323 10.8431 8.78665 10.8431 8.52958C10.8431 8.2725 10.6366 8.06592 10.3795 8.06592C10.1224 8.06592 9.91583 8.2725 9.91583 8.52958C9.91583 8.78665 10.1224 8.99323 10.3795 8.99323Z" fill="url(#paint42_linear_10849_9504)"/>
|
|
158
|
+
<path d="M13.7628 7.91445C14.0612 7.91445 14.3045 7.67115 14.3045 7.37275C14.3045 7.07436 14.0612 6.83105 13.7628 6.83105C13.4644 6.83105 13.2211 7.07436 13.2211 7.37275C13.2211 7.67115 13.4644 7.91445 13.7628 7.91445Z" fill="url(#paint43_linear_10849_9504)"/>
|
|
159
|
+
<path d="M12.6381 7.88671C12.9227 7.88671 13.1523 7.65717 13.1523 7.37255C13.1523 7.08793 12.9227 6.8584 12.6381 6.8584C12.3535 6.8584 12.124 7.08793 12.124 7.37255C12.124 7.65717 12.3535 7.88671 12.6381 7.88671Z" fill="url(#paint44_linear_10849_9504)"/>
|
|
160
|
+
<path d="M11.5088 7.86385C11.7796 7.86385 11.9954 7.64349 11.9954 7.37724C11.9954 7.11098 11.7751 6.89062 11.5088 6.89062C11.2425 6.89062 11.0222 7.11098 11.0222 7.37724C11.0222 7.64349 11.2425 7.86385 11.5088 7.86385Z" fill="url(#paint45_linear_10849_9504)"/>
|
|
161
|
+
<path d="M9.25478 23.123C9.01147 23.123 8.81866 23.3204 8.81866 23.5592C8.81866 23.7979 9.01606 23.9953 9.25478 23.9953C9.49349 23.9953 9.69089 23.7979 9.69089 23.5592C9.69089 23.3204 9.49349 23.123 9.25478 23.123Z" fill="url(#paint46_linear_10849_9504)"/>
|
|
162
|
+
<path d="M8.1255 23.9772C8.35368 23.9772 8.53866 23.7922 8.53866 23.564C8.53866 23.3359 8.35368 23.1509 8.1255 23.1509C7.89732 23.1509 7.71234 23.3359 7.71234 23.564C7.71234 23.7922 7.89732 23.9772 8.1255 23.9772Z" fill="url(#paint47_linear_10849_9504)"/>
|
|
163
|
+
<path d="M6.99618 23.1782C6.78501 23.1782 6.61057 23.3527 6.61057 23.5638C6.61057 23.775 6.78501 23.9495 6.99618 23.9495C7.20735 23.9495 7.3818 23.775 7.3818 23.5638C7.3818 23.3527 7.20735 23.1782 6.99618 23.1782Z" fill="url(#paint48_linear_10849_9504)"/>
|
|
164
|
+
<path d="M5.87147 23.9222C6.06923 23.9222 6.22954 23.7619 6.22954 23.5641C6.22954 23.3664 6.06923 23.2061 5.87147 23.2061C5.67371 23.2061 5.5134 23.3664 5.5134 23.5641C5.5134 23.7619 5.67371 23.9222 5.87147 23.9222Z" fill="url(#paint49_linear_10849_9504)"/>
|
|
165
|
+
<path d="M4.74216 23.229C4.55854 23.229 4.40704 23.3805 4.40704 23.5641C4.40704 23.7478 4.55854 23.8992 4.74216 23.8992C4.92579 23.8992 5.07728 23.7478 5.07728 23.5641C5.07728 23.3805 4.92579 23.229 4.74216 23.229Z" fill="url(#paint50_linear_10849_9504)"/>
|
|
166
|
+
<path d="M3.61284 23.8715C3.78271 23.8715 3.92042 23.7338 3.92042 23.5639C3.92042 23.3941 3.78271 23.2563 3.61284 23.2563C3.44297 23.2563 3.30527 23.3941 3.30527 23.5639C3.30527 23.7338 3.44297 23.8715 3.61284 23.8715Z" fill="url(#paint51_linear_10849_9504)"/>
|
|
167
|
+
<path d="M2.48817 23.8485C2.64537 23.8485 2.77279 23.7211 2.77279 23.5639C2.77279 23.4067 2.64537 23.2793 2.48817 23.2793C2.33098 23.2793 2.20355 23.4067 2.20355 23.5639C2.20355 23.7211 2.33098 23.8485 2.48817 23.8485Z" fill="url(#paint52_linear_10849_9504)"/>
|
|
168
|
+
<path d="M1.35885 23.8208C1.50083 23.8208 1.61593 23.7057 1.61593 23.5637C1.61593 23.4217 1.50083 23.3066 1.35885 23.3066C1.21687 23.3066 1.10178 23.4217 1.10178 23.5637C1.10178 23.7057 1.21687 23.8208 1.35885 23.8208Z" fill="url(#paint53_linear_10849_9504)"/>
|
|
169
|
+
<path d="M0.229533 23.7935C0.356301 23.7935 0.459067 23.6908 0.459067 23.564C0.459067 23.4372 0.356301 23.3345 0.229533 23.3345C0.102766 23.3345 0 23.4372 0 23.564C0 23.6908 0.102766 23.7935 0.229533 23.7935Z" fill="url(#paint54_linear_10849_9504)"/>
|
|
170
|
+
<path d="M10.3795 22.8663C10.6366 22.8663 10.8431 22.6597 10.8431 22.4026C10.8431 22.1455 10.6366 21.939 10.3795 21.939C10.1224 21.939 9.91583 22.1455 9.91583 22.4026C9.91583 22.6597 10.1224 22.8663 10.3795 22.8663Z" fill="url(#paint55_linear_10849_9504)"/>
|
|
171
|
+
<path d="M9.25478 21.9663C9.01147 21.9663 8.81866 22.1637 8.81866 22.4024C8.81866 22.6411 9.01606 22.8385 9.25478 22.8385C9.49349 22.8385 9.69089 22.6411 9.69089 22.4024C9.69089 22.1637 9.49349 21.9663 9.25478 21.9663Z" fill="url(#paint56_linear_10849_9504)"/>
|
|
172
|
+
<path d="M8.1255 22.82C8.35368 22.82 8.53866 22.635 8.53866 22.4068C8.53866 22.1786 8.35368 21.9937 8.1255 21.9937C7.89732 21.9937 7.71234 22.1786 7.71234 22.4068C7.71234 22.635 7.89732 22.82 8.1255 22.82Z" fill="url(#paint57_linear_10849_9504)"/>
|
|
173
|
+
<path d="M6.99618 22.0215C6.78501 22.0215 6.61057 22.1959 6.61057 22.4071C6.61057 22.6183 6.78501 22.7927 6.99618 22.7927C7.20735 22.7927 7.3818 22.6183 7.3818 22.4071C7.3818 22.1959 7.20735 22.0215 6.99618 22.0215Z" fill="url(#paint58_linear_10849_9504)"/>
|
|
174
|
+
<path d="M5.87147 22.0444C5.67407 22.0444 5.5134 22.2051 5.5134 22.4025C5.5134 22.5999 5.67407 22.7606 5.87147 22.7606C6.06887 22.7606 6.22954 22.5999 6.22954 22.4025C6.22954 22.2051 6.06887 22.0444 5.87147 22.0444Z" fill="url(#paint59_linear_10849_9504)"/>
|
|
175
|
+
<path d="M4.74216 22.0718C4.55854 22.0718 4.40704 22.2233 4.40704 22.4069C4.40704 22.5905 4.55854 22.742 4.74216 22.742C4.92579 22.742 5.07728 22.5905 5.07728 22.4069C5.07728 22.2233 4.92579 22.0718 4.74216 22.0718Z" fill="url(#paint60_linear_10849_9504)"/>
|
|
176
|
+
<path d="M3.61284 22.0947C3.44299 22.0947 3.30527 22.2324 3.30527 22.4023C3.30527 22.5722 3.44299 22.7099 3.61284 22.7099C3.7827 22.7099 3.92042 22.5722 3.92042 22.4023C3.92042 22.2324 3.7827 22.0947 3.61284 22.0947Z" fill="url(#paint61_linear_10849_9504)"/>
|
|
177
|
+
<path d="M2.48817 22.6918C2.64537 22.6918 2.77279 22.5644 2.77279 22.4072C2.77279 22.25 2.64537 22.1226 2.48817 22.1226C2.33098 22.1226 2.20355 22.25 2.20355 22.4072C2.20355 22.5644 2.33098 22.6918 2.48817 22.6918Z" fill="url(#paint62_linear_10849_9504)"/>
|
|
178
|
+
<path d="M11.5088 21.7369C11.7796 21.7369 11.9954 21.5165 11.9954 21.2503C11.9954 20.984 11.7751 20.7637 11.5088 20.7637C11.2425 20.7637 11.0222 20.984 11.0222 21.2503C11.0222 21.5165 11.2425 21.7369 11.5088 21.7369Z" fill="url(#paint63_linear_10849_9504)"/>
|
|
179
|
+
<path d="M10.3795 21.7139C10.6366 21.7139 10.8431 21.5074 10.8431 21.2503C10.8431 20.9932 10.6366 20.7866 10.3795 20.7866C10.1224 20.7866 9.91583 20.9932 9.91583 21.2503C9.91583 21.5074 10.1224 21.7139 10.3795 21.7139Z" fill="url(#paint64_linear_10849_9504)"/>
|
|
180
|
+
<path d="M9.25478 20.814C9.01147 20.814 8.81866 21.0114 8.81866 21.2501C8.81866 21.4888 9.01606 21.6862 9.25478 21.6862C9.49349 21.6862 9.69089 21.4888 9.69089 21.2501C9.69089 21.0114 9.49349 20.814 9.25478 20.814Z" fill="url(#paint65_linear_10849_9504)"/>
|
|
181
|
+
<path d="M8.1255 20.8369C7.90056 20.8369 7.71234 21.0205 7.71234 21.2501C7.71234 21.4796 7.89597 21.6632 8.1255 21.6632C8.35504 21.6632 8.53866 21.4796 8.53866 21.2501C8.53866 21.0205 8.35504 20.8369 8.1255 20.8369Z" fill="url(#paint66_linear_10849_9504)"/>
|
|
182
|
+
<path d="M6.99618 20.8647C6.78501 20.8647 6.61057 21.0392 6.61057 21.2504C6.61057 21.4615 6.78501 21.636 6.99618 21.636C7.20735 21.636 7.3818 21.4615 7.3818 21.2504C7.3818 21.0392 7.20735 20.8647 6.99618 20.8647Z" fill="url(#paint67_linear_10849_9504)"/>
|
|
183
|
+
<path d="M5.87147 21.6082C6.06923 21.6082 6.22954 21.4479 6.22954 21.2502C6.22954 21.0524 6.06923 20.8921 5.87147 20.8921C5.67371 20.8921 5.5134 21.0524 5.5134 21.2502C5.5134 21.4479 5.67371 21.6082 5.87147 21.6082Z" fill="url(#paint68_linear_10849_9504)"/>
|
|
184
|
+
<path d="M4.74216 20.915C4.55854 20.915 4.40704 21.0665 4.40704 21.2502C4.40704 21.4338 4.55854 21.5853 4.74216 21.5853C4.92579 21.5853 5.07728 21.4338 5.07728 21.2502C5.07728 21.0665 4.92579 20.915 4.74216 20.915Z" fill="url(#paint69_linear_10849_9504)"/>
|
|
185
|
+
<path d="M12.6381 20.6074C12.9227 20.6074 13.1523 20.3779 13.1523 20.0933C13.1523 19.8086 12.9227 19.5791 12.6381 19.5791C12.3535 19.5791 12.124 19.8086 12.124 20.0933C12.124 20.3779 12.3535 20.6074 12.6381 20.6074Z" fill="url(#paint70_linear_10849_9504)"/>
|
|
186
|
+
<path d="M11.5088 20.5802C11.7796 20.5802 11.9954 20.3598 11.9954 20.0935C11.9954 19.8273 11.7751 19.6069 11.5088 19.6069C11.2425 19.6069 11.0222 19.8273 11.0222 20.0935C11.0222 20.3598 11.2425 20.5802 11.5088 20.5802Z" fill="url(#paint71_linear_10849_9504)"/>
|
|
187
|
+
<path d="M13.7628 19.4784C14.062 19.4784 14.3045 19.2359 14.3045 18.9367C14.3045 18.6375 14.062 18.395 13.7628 18.395C13.4637 18.395 13.2211 18.6375 13.2211 18.9367C13.2211 19.2359 13.4637 19.4784 13.7628 19.4784Z" fill="url(#paint72_linear_10849_9504)"/>
|
|
188
|
+
<path d="M12.6381 19.4507C12.9227 19.4507 13.1523 19.2211 13.1523 18.9365C13.1523 18.6519 12.9227 18.4224 12.6381 18.4224C12.3535 18.4224 12.124 18.6519 12.124 18.9365C12.124 19.2211 12.3535 19.4507 12.6381 19.4507Z" fill="url(#paint73_linear_10849_9504)"/>
|
|
189
|
+
<path d="M15.4568 17.7795C15.4568 17.4673 15.2043 17.2148 14.8921 17.2148C14.5799 17.2148 14.3275 17.4673 14.3275 17.7795C14.3275 18.0917 14.5799 18.3441 14.8921 18.3441C15.2043 18.3441 15.4568 18.0917 15.4568 17.7795Z" fill="url(#paint74_linear_10849_9504)"/>
|
|
190
|
+
<path d="M13.7628 18.3212C14.0612 18.3212 14.3045 18.0779 14.3045 17.7795C14.3045 17.4811 14.0612 17.2378 13.7628 17.2378C13.4644 17.2378 13.2211 17.4811 13.2211 17.7795C13.2211 18.0779 13.4644 18.3212 13.7628 18.3212Z" fill="url(#paint75_linear_10849_9504)"/>
|
|
191
|
+
<path d="M12.6381 18.2939C12.9227 18.2939 13.1523 18.0644 13.1523 17.7798C13.1523 17.4952 12.9227 17.2656 12.6381 17.2656C12.3535 17.2656 12.124 17.4952 12.124 17.7798C12.124 18.0644 12.3535 18.2939 12.6381 18.2939Z" fill="url(#paint76_linear_10849_9504)"/>
|
|
192
|
+
<path d="M10.3795 13.6207C10.6366 13.6207 10.8431 13.4141 10.8431 13.157C10.8431 12.8999 10.6366 12.6934 10.3795 12.6934C10.1224 12.6934 9.91583 12.8999 9.91583 13.157C9.91583 13.4141 10.1224 13.6207 10.3795 13.6207Z" fill="url(#paint77_linear_10849_9504)"/>
|
|
193
|
+
<path d="M6.99618 12.7715C6.78501 12.7715 6.61057 12.9459 6.61057 13.1571C6.61057 13.3683 6.78501 13.5427 6.99618 13.5427C7.20735 13.5427 7.3818 13.3683 7.3818 13.1571C7.3818 12.9459 7.20735 12.7715 6.99618 12.7715Z" fill="url(#paint78_linear_10849_9504)"/>
|
|
194
|
+
<path d="M5.87147 13.515C6.06923 13.515 6.22954 13.3547 6.22954 13.1569C6.22954 12.9591 6.06923 12.7988 5.87147 12.7988C5.67371 12.7988 5.5134 12.9591 5.5134 13.1569C5.5134 13.3547 5.67371 13.515 5.87147 13.515Z" fill="url(#paint79_linear_10849_9504)"/>
|
|
195
|
+
<path d="M3.61284 12.271C3.44299 12.271 3.30527 12.4087 3.30527 12.5786C3.30527 12.7484 3.44299 12.8861 3.61284 12.8861C3.7827 12.8861 3.92042 12.7484 3.92042 12.5786C3.92042 12.4087 3.7827 12.271 3.61284 12.271Z" fill="url(#paint80_linear_10849_9504)"/>
|
|
196
|
+
<path d="M11.5088 14.8004C11.7796 14.8004 11.9954 14.58 11.9954 14.3138C11.9954 14.0475 11.7751 13.8271 11.5088 13.8271C11.2425 13.8271 11.0222 14.0475 11.0222 14.3138C11.0222 14.58 11.2425 14.8004 11.5088 14.8004Z" fill="url(#paint81_linear_10849_9504)"/>
|
|
197
|
+
<path d="M10.3795 14.7725C10.6366 14.7725 10.8431 14.5659 10.8431 14.3089C10.8431 14.0518 10.6366 13.8452 10.3795 13.8452C10.1224 13.8452 9.91583 14.0518 9.91583 14.3089C9.91583 14.5659 10.1224 14.7725 10.3795 14.7725Z" fill="url(#paint82_linear_10849_9504)"/>
|
|
198
|
+
<path d="M12.6381 15.98C12.9227 15.98 13.1523 15.7504 13.1523 15.4658C13.1523 15.1812 12.9227 14.9517 12.6381 14.9517C12.3535 14.9517 12.124 15.1812 12.124 15.4658C12.124 15.7504 12.3535 15.98 12.6381 15.98Z" fill="url(#paint83_linear_10849_9504)"/>
|
|
199
|
+
<path d="M11.5088 15.9571C11.7796 15.9571 11.9954 15.7368 11.9954 15.4705C11.9954 15.2042 11.7751 14.9839 11.5088 14.9839C11.2425 14.9839 11.0222 15.2042 11.0222 15.4705C11.0222 15.7368 11.2425 15.9571 11.5088 15.9571Z" fill="url(#paint84_linear_10849_9504)"/>
|
|
200
|
+
<path d="M10.3795 15.9298C10.6366 15.9298 10.8431 15.7232 10.8431 15.4661C10.8431 15.209 10.6366 15.0024 10.3795 15.0024C10.1224 15.0024 9.91583 15.209 9.91583 15.4661C9.91583 15.7232 10.1224 15.9298 10.3795 15.9298Z" fill="url(#paint85_linear_10849_9504)"/>
|
|
201
|
+
<path d="M13.7628 17.1645C14.062 17.1645 14.3045 16.9219 14.3045 16.6228C14.3045 16.3236 14.062 16.0811 13.7628 16.0811C13.4637 16.0811 13.2211 16.3236 13.2211 16.6228C13.2211 16.9219 13.4637 17.1645 13.7628 17.1645Z" fill="url(#paint86_linear_10849_9504)"/>
|
|
202
|
+
<path d="M12.6381 17.1372C12.9227 17.1372 13.1523 16.9077 13.1523 16.623C13.1523 16.3384 12.9227 16.1089 12.6381 16.1089C12.3535 16.1089 12.124 16.3384 12.124 16.623C12.124 16.9077 12.3535 17.1372 12.6381 17.1372Z" fill="url(#paint87_linear_10849_9504)"/>
|
|
203
|
+
<path d="M11.5088 17.1138C11.7796 17.1138 11.9954 16.8935 11.9954 16.6272C11.9954 16.361 11.7751 16.1406 11.5088 16.1406C11.2425 16.1406 11.0222 16.361 11.0222 16.6272C11.0222 16.8935 11.2425 17.1138 11.5088 17.1138Z" fill="url(#paint88_linear_10849_9504)"/>
|
|
204
|
+
<path d="M9.25478 9.25C9.01147 9.25 8.81866 9.4474 8.81866 9.68611C8.81866 9.92483 9.01606 10.1222 9.25478 10.1222C9.49349 10.1222 9.69089 9.92483 9.69089 9.68611C9.69089 9.4474 9.49349 9.25 9.25478 9.25Z" fill="url(#paint89_linear_10849_9504)"/>
|
|
205
|
+
<path d="M9.25478 11.564C9.01147 11.564 8.81866 11.7614 8.81866 12.0001C8.81866 12.2388 9.01606 12.4362 9.25478 12.4362C9.49349 12.4362 9.69089 12.2388 9.69089 12.0001C9.69089 11.7614 9.49349 11.564 9.25478 11.564Z" fill="url(#paint90_linear_10849_9504)"/>
|
|
206
|
+
<path d="M9.25478 12.7207C9.01147 12.7207 8.81866 12.9181 8.81866 13.1568C8.81866 13.3955 9.01606 13.5929 9.25478 13.5929C9.49349 13.5929 9.69089 13.3955 9.69089 13.1568C9.69089 12.9181 9.49349 12.7207 9.25478 12.7207Z" fill="url(#paint91_linear_10849_9504)"/>
|
|
207
|
+
<path d="M9.25478 13.873C9.01147 13.873 8.81866 14.0704 8.81866 14.3092C8.81866 14.5479 9.01606 14.7453 9.25478 14.7453C9.49349 14.7453 9.69089 14.5479 9.69089 14.3092C9.69089 14.0704 9.49349 13.873 9.25478 13.873Z" fill="url(#paint92_linear_10849_9504)"/>
|
|
208
|
+
<path d="M9.25478 10.4072C9.01147 10.4072 8.81866 10.6046 8.81866 10.8433C8.81866 11.0866 9.01606 11.2795 9.25478 11.2795C9.49349 11.2795 9.69089 11.0821 9.69089 10.8433C9.69089 10.6 9.49349 10.4072 9.25478 10.4072Z" fill="url(#paint93_linear_10849_9504)"/>
|
|
209
|
+
<path d="M8.1255 9.85156C7.90056 9.85156 7.71234 10.0352 7.71234 10.2647C7.71234 10.4943 7.89597 10.6779 8.1255 10.6779C8.35504 10.6779 8.53866 10.4943 8.53866 10.2647C8.53866 10.0352 8.35504 9.85156 8.1255 9.85156Z" fill="url(#paint94_linear_10849_9504)"/>
|
|
210
|
+
<path d="M8.1255 12.165C7.90056 12.165 7.71234 12.3487 7.71234 12.5782C7.71234 12.8077 7.89597 12.9914 8.1255 12.9914C8.35504 12.9914 8.53866 12.8077 8.53866 12.5782C8.53866 12.3487 8.35504 12.165 8.1255 12.165Z" fill="url(#paint95_linear_10849_9504)"/>
|
|
211
|
+
<path d="M8.1255 13.3223C7.90056 13.3223 7.71234 13.5059 7.71234 13.7354C7.71234 13.965 7.89597 14.1486 8.1255 14.1486C8.35504 14.1486 8.53866 13.965 8.53866 13.7354C8.53866 13.5059 8.35504 13.3223 8.1255 13.3223Z" fill="url(#paint96_linear_10849_9504)"/>
|
|
212
|
+
<path d="M8.1255 11.0083C7.90056 11.0083 7.71234 11.1919 7.71234 11.4215C7.71234 11.5087 7.73989 11.5867 7.7812 11.651C7.85465 11.7612 7.9786 11.83 8.12091 11.83C8.26322 11.83 8.38717 11.7566 8.46062 11.651C8.50653 11.5867 8.52948 11.5041 8.52948 11.4215C8.52948 11.1965 8.34585 11.0083 8.11632 11.0083H8.1255Z" fill="url(#paint97_linear_10849_9504)"/>
|
|
213
|
+
<path d="M7.07422 11.6234C7.05127 11.6188 7.02373 11.6143 6.99618 11.6143C6.96864 11.6143 6.94568 11.6143 6.91814 11.6234C6.74369 11.6602 6.61057 11.8162 6.61057 11.9999C6.61057 12.1881 6.74369 12.3396 6.91814 12.3763C6.94109 12.3809 6.96864 12.3855 6.99618 12.3855C7.02373 12.3855 7.04668 12.3855 7.07422 12.3763C7.24867 12.3396 7.3818 12.1835 7.3818 11.9999C7.3818 11.8117 7.24867 11.6602 7.07422 11.6234Z" fill="url(#paint98_linear_10849_9504)"/>
|
|
214
|
+
<path d="M6.07344 11.7018C6.01376 11.665 5.9449 11.6421 5.87145 11.6421C5.798 11.6421 5.72914 11.665 5.66946 11.7018C5.57306 11.766 5.50879 11.8762 5.50879 12.0002C5.50879 12.1012 5.5501 12.1884 5.61437 12.2526C5.67864 12.3169 5.77046 12.3582 5.86686 12.3582C5.96326 12.3582 6.05508 12.3169 6.11935 12.2526C6.18362 12.1884 6.22493 12.0966 6.22493 12.0002C6.22493 11.8762 6.16066 11.766 6.06426 11.7018H6.07344Z" fill="url(#paint99_linear_10849_9504)"/>
|
|
215
|
+
<path d="M4.74216 12.2432C4.55854 12.2432 4.40704 12.3947 4.40704 12.5783C4.40704 12.7619 4.55854 12.9134 4.74216 12.9134C4.92579 12.9134 5.07728 12.7619 5.07728 12.5783C5.07728 12.3947 4.92579 12.2432 4.74216 12.2432Z" fill="url(#paint100_linear_10849_9504)"/>
|
|
216
|
+
<path d="M4.74215 11.0864C4.62738 11.0864 4.52639 11.1461 4.46671 11.2333C4.42998 11.2884 4.41162 11.3527 4.41162 11.4215C4.41162 11.6052 4.56311 11.7567 4.74674 11.7567C4.93037 11.7567 5.08186 11.6052 5.08186 11.4215C5.08186 11.3527 5.05891 11.2884 5.02677 11.2333C4.96709 11.1461 4.8661 11.0864 4.75133 11.0864H4.74215Z" fill="url(#paint101_linear_10849_9504)"/>
|
|
217
|
+
<path d="M1.61134 11.9497C1.61134 11.9497 1.60216 11.9176 1.59757 11.8992C1.5838 11.8671 1.56543 11.8396 1.54248 11.8166C1.49657 11.7707 1.4323 11.7432 1.35885 11.7432C1.2854 11.7432 1.22572 11.7707 1.17523 11.8166C1.15227 11.8396 1.13391 11.8671 1.12014 11.8992C1.11555 11.913 1.10637 11.9314 1.10637 11.9497C1.10637 11.9681 1.10178 11.9819 1.10178 12.0002C1.10178 12.0002 1.10178 12.037 1.10637 12.0507C1.10637 12.0691 1.11555 12.0829 1.12014 12.1012C1.15686 12.193 1.24868 12.2573 1.35885 12.2573C1.46903 12.2573 1.55625 12.193 1.59757 12.1012C1.60216 12.0875 1.61134 12.0691 1.61134 12.0507C1.61134 12.0324 1.61593 12.0186 1.61593 12.0002C1.61593 12.0002 1.61593 11.9635 1.61134 11.9497Z" fill="url(#paint102_linear_10849_9504)"/>
|
|
218
|
+
<path d="M0.229533 11.7656C0.100995 11.7656 0 11.8712 0 11.9952C0 12.1237 0.105585 12.2247 0.229533 12.2247C0.353481 12.2247 0.459067 12.1191 0.459067 11.9952C0.459067 11.8666 0.353481 11.7656 0.229533 11.7656Z" fill="url(#paint103_linear_10849_9504)"/>
|
|
219
|
+
<path d="M2.48817 12.2939C2.33209 12.2939 2.20355 12.4225 2.20355 12.5786C2.20355 12.7346 2.33209 12.8632 2.48817 12.8632C2.64426 12.8632 2.77279 12.7346 2.77279 12.5786C2.77279 12.4225 2.64426 12.2939 2.48817 12.2939Z" fill="url(#paint104_linear_10849_9504)"/>
|
|
220
|
+
</g>
|
|
221
|
+
<defs>
|
|
222
|
+
<linearGradient id="paint0_linear_10849_9504" x1="3.56633e-05" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
223
|
+
<stop stop-color="#404040"/>
|
|
224
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
225
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
226
|
+
</linearGradient>
|
|
227
|
+
<linearGradient id="paint1_linear_10849_9504" x1="1.364e-05" y1="11.9998" x2="24.1653" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
228
|
+
<stop stop-color="#404040"/>
|
|
229
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
230
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
231
|
+
</linearGradient>
|
|
232
|
+
<linearGradient id="paint2_linear_10849_9504" x1="-1.12323e-05" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
233
|
+
<stop stop-color="#404040"/>
|
|
234
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
235
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
236
|
+
</linearGradient>
|
|
237
|
+
<linearGradient id="paint3_linear_10849_9504" x1="1.82804e-05" y1="11.9998" x2="24.1653" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
238
|
+
<stop stop-color="#404040"/>
|
|
239
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
240
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
241
|
+
</linearGradient>
|
|
242
|
+
<linearGradient id="paint4_linear_10849_9504" x1="5.05753e-06" y1="12.0003" x2="24.1653" y2="12.0003" gradientUnits="userSpaceOnUse">
|
|
243
|
+
<stop stop-color="#404040"/>
|
|
244
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
245
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
246
|
+
</linearGradient>
|
|
247
|
+
<linearGradient id="paint5_linear_10849_9504" x1="9.4669e-06" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
248
|
+
<stop stop-color="#404040"/>
|
|
249
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
250
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
251
|
+
</linearGradient>
|
|
252
|
+
<linearGradient id="paint6_linear_10849_9504" x1="4.01532e-06" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
253
|
+
<stop stop-color="#404040"/>
|
|
254
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
255
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
256
|
+
</linearGradient>
|
|
257
|
+
<linearGradient id="paint7_linear_10849_9504" x1="-1.25523e-05" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
258
|
+
<stop stop-color="#404040"/>
|
|
259
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
260
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
261
|
+
</linearGradient>
|
|
262
|
+
<linearGradient id="paint8_linear_10849_9504" x1="3.30991e-05" y1="12.0002" x2="24.1653" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
263
|
+
<stop stop-color="#404040"/>
|
|
264
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
265
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
266
|
+
</linearGradient>
|
|
267
|
+
<linearGradient id="paint9_linear_10849_9504" x1="1.64227e-05" y1="12.0002" x2="24.1653" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
268
|
+
<stop stop-color="#404040"/>
|
|
269
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
270
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
271
|
+
</linearGradient>
|
|
272
|
+
<linearGradient id="paint10_linear_10849_9504" x1="0" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
273
|
+
<stop stop-color="#404040"/>
|
|
274
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
275
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
276
|
+
</linearGradient>
|
|
277
|
+
<linearGradient id="paint11_linear_10849_9504" x1="-7.54487e-06" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
278
|
+
<stop stop-color="#404040"/>
|
|
279
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
280
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
281
|
+
</linearGradient>
|
|
282
|
+
<linearGradient id="paint12_linear_10849_9504" x1="-1.12323e-05" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
283
|
+
<stop stop-color="#404040"/>
|
|
284
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
285
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
286
|
+
</linearGradient>
|
|
287
|
+
<linearGradient id="paint13_linear_10849_9504" x1="1.82804e-05" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
288
|
+
<stop stop-color="#404040"/>
|
|
289
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
290
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
291
|
+
</linearGradient>
|
|
292
|
+
<linearGradient id="paint14_linear_10849_9504" x1="5.05753e-06" y1="12.0002" x2="24.1653" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
293
|
+
<stop stop-color="#404040"/>
|
|
294
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
295
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
296
|
+
</linearGradient>
|
|
297
|
+
<linearGradient id="paint15_linear_10849_9504" x1="9.4669e-06" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
298
|
+
<stop stop-color="#404040"/>
|
|
299
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
300
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
301
|
+
</linearGradient>
|
|
302
|
+
<linearGradient id="paint16_linear_10849_9504" x1="4.01532e-06" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
303
|
+
<stop stop-color="#404040"/>
|
|
304
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
305
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
306
|
+
</linearGradient>
|
|
307
|
+
<linearGradient id="paint17_linear_10849_9504" x1="-1.25523e-05" y1="11.9998" x2="24.1653" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
308
|
+
<stop stop-color="#404040"/>
|
|
309
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
310
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
311
|
+
</linearGradient>
|
|
312
|
+
<linearGradient id="paint18_linear_10849_9504" x1="3.30991e-05" y1="12.0003" x2="24.1653" y2="12.0003" gradientUnits="userSpaceOnUse">
|
|
313
|
+
<stop stop-color="#404040"/>
|
|
314
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
315
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
316
|
+
</linearGradient>
|
|
317
|
+
<linearGradient id="paint19_linear_10849_9504" x1="2.64618e-06" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
318
|
+
<stop stop-color="#404040"/>
|
|
319
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
320
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
321
|
+
</linearGradient>
|
|
322
|
+
<linearGradient id="paint20_linear_10849_9504" x1="-7.54487e-06" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
323
|
+
<stop stop-color="#404040"/>
|
|
324
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
325
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
326
|
+
</linearGradient>
|
|
327
|
+
<linearGradient id="paint21_linear_10849_9504" x1="-1.12323e-05" y1="11.9998" x2="24.1653" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
328
|
+
<stop stop-color="#404040"/>
|
|
329
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
330
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
331
|
+
</linearGradient>
|
|
332
|
+
<linearGradient id="paint22_linear_10849_9504" x1="1.82804e-05" y1="12.0003" x2="24.1653" y2="12.0003" gradientUnits="userSpaceOnUse">
|
|
333
|
+
<stop stop-color="#404040"/>
|
|
334
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
335
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
336
|
+
</linearGradient>
|
|
337
|
+
<linearGradient id="paint23_linear_10849_9504" x1="5.05753e-06" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
338
|
+
<stop stop-color="#404040"/>
|
|
339
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
340
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
341
|
+
</linearGradient>
|
|
342
|
+
<linearGradient id="paint24_linear_10849_9504" x1="9.4669e-06" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
343
|
+
<stop stop-color="#404040"/>
|
|
344
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
345
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
346
|
+
</linearGradient>
|
|
347
|
+
<linearGradient id="paint25_linear_10849_9504" x1="4.01532e-06" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
348
|
+
<stop stop-color="#404040"/>
|
|
349
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
350
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
351
|
+
</linearGradient>
|
|
352
|
+
<linearGradient id="paint26_linear_10849_9504" x1="1.60758e-05" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
353
|
+
<stop stop-color="#404040"/>
|
|
354
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
355
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
356
|
+
</linearGradient>
|
|
357
|
+
<linearGradient id="paint27_linear_10849_9504" x1="2.64618e-06" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
358
|
+
<stop stop-color="#404040"/>
|
|
359
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
360
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
361
|
+
</linearGradient>
|
|
362
|
+
<linearGradient id="paint28_linear_10849_9504" x1="9.30778e-06" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
363
|
+
<stop stop-color="#404040"/>
|
|
364
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
365
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
366
|
+
</linearGradient>
|
|
367
|
+
<linearGradient id="paint29_linear_10849_9504" x1="1.60758e-05" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
368
|
+
<stop stop-color="#404040"/>
|
|
369
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
370
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
371
|
+
</linearGradient>
|
|
372
|
+
<linearGradient id="paint30_linear_10849_9504" x1="-9.03139e-06" y1="12.0001" x2="24.1652" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
373
|
+
<stop stop-color="#404040"/>
|
|
374
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
375
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
376
|
+
</linearGradient>
|
|
377
|
+
<linearGradient id="paint31_linear_10849_9504" x1="9.30778e-06" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
378
|
+
<stop stop-color="#404040"/>
|
|
379
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
380
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
381
|
+
</linearGradient>
|
|
382
|
+
<linearGradient id="paint32_linear_10849_9504" x1="1.60758e-05" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
383
|
+
<stop stop-color="#404040"/>
|
|
384
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
385
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
386
|
+
</linearGradient>
|
|
387
|
+
<linearGradient id="paint33_linear_10849_9504" x1="-7.54487e-06" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
388
|
+
<stop stop-color="#404040"/>
|
|
389
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
390
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
391
|
+
</linearGradient>
|
|
392
|
+
<linearGradient id="paint34_linear_10849_9504" x1="5.05753e-06" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
393
|
+
<stop stop-color="#404040"/>
|
|
394
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
395
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
396
|
+
</linearGradient>
|
|
397
|
+
<linearGradient id="paint35_linear_10849_9504" x1="9.4669e-06" y1="12.0003" x2="24.1653" y2="12.0003" gradientUnits="userSpaceOnUse">
|
|
398
|
+
<stop stop-color="#404040"/>
|
|
399
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
400
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
401
|
+
</linearGradient>
|
|
402
|
+
<linearGradient id="paint36_linear_10849_9504" x1="-1.25523e-05" y1="11.9998" x2="24.1653" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
403
|
+
<stop stop-color="#404040"/>
|
|
404
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
405
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
406
|
+
</linearGradient>
|
|
407
|
+
<linearGradient id="paint37_linear_10849_9504" x1="3.30991e-05" y1="11.9998" x2="24.1653" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
408
|
+
<stop stop-color="#404040"/>
|
|
409
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
410
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
411
|
+
</linearGradient>
|
|
412
|
+
<linearGradient id="paint38_linear_10849_9504" x1="2.64618e-06" y1="11.9998" x2="24.1653" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
413
|
+
<stop stop-color="#404040"/>
|
|
414
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
415
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
416
|
+
</linearGradient>
|
|
417
|
+
<linearGradient id="paint39_linear_10849_9504" x1="-7.54487e-06" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
418
|
+
<stop stop-color="#404040"/>
|
|
419
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
420
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
421
|
+
</linearGradient>
|
|
422
|
+
<linearGradient id="paint40_linear_10849_9504" x1="1.60758e-05" y1="11.9998" x2="24.1653" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
423
|
+
<stop stop-color="#404040"/>
|
|
424
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
425
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
426
|
+
</linearGradient>
|
|
427
|
+
<linearGradient id="paint41_linear_10849_9504" x1="2.64618e-06" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
428
|
+
<stop stop-color="#404040"/>
|
|
429
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
430
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
431
|
+
</linearGradient>
|
|
432
|
+
<linearGradient id="paint42_linear_10849_9504" x1="-7.54487e-06" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
433
|
+
<stop stop-color="#404040"/>
|
|
434
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
435
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
436
|
+
</linearGradient>
|
|
437
|
+
<linearGradient id="paint43_linear_10849_9504" x1="9.30778e-06" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
438
|
+
<stop stop-color="#404040"/>
|
|
439
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
440
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
441
|
+
</linearGradient>
|
|
442
|
+
<linearGradient id="paint44_linear_10849_9504" x1="1.60758e-05" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
443
|
+
<stop stop-color="#404040"/>
|
|
444
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
445
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
446
|
+
</linearGradient>
|
|
447
|
+
<linearGradient id="paint45_linear_10849_9504" x1="2.64618e-06" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
448
|
+
<stop stop-color="#404040"/>
|
|
449
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
450
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
451
|
+
</linearGradient>
|
|
452
|
+
<linearGradient id="paint46_linear_10849_9504" x1="-1.12323e-05" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
453
|
+
<stop stop-color="#404040"/>
|
|
454
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
455
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
456
|
+
</linearGradient>
|
|
457
|
+
<linearGradient id="paint47_linear_10849_9504" x1="1.82804e-05" y1="12.0002" x2="24.1653" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
458
|
+
<stop stop-color="#404040"/>
|
|
459
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
460
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
461
|
+
</linearGradient>
|
|
462
|
+
<linearGradient id="paint48_linear_10849_9504" x1="5.05753e-06" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
463
|
+
<stop stop-color="#404040"/>
|
|
464
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
465
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
466
|
+
</linearGradient>
|
|
467
|
+
<linearGradient id="paint49_linear_10849_9504" x1="9.4669e-06" y1="12.0002" x2="24.1653" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
468
|
+
<stop stop-color="#404040"/>
|
|
469
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
470
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
471
|
+
</linearGradient>
|
|
472
|
+
<linearGradient id="paint50_linear_10849_9504" x1="4.01532e-06" y1="12.0002" x2="24.1653" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
473
|
+
<stop stop-color="#404040"/>
|
|
474
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
475
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
476
|
+
</linearGradient>
|
|
477
|
+
<linearGradient id="paint51_linear_10849_9504" x1="-1.25523e-05" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
478
|
+
<stop stop-color="#404040"/>
|
|
479
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
480
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
481
|
+
</linearGradient>
|
|
482
|
+
<linearGradient id="paint52_linear_10849_9504" x1="3.30991e-05" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
483
|
+
<stop stop-color="#404040"/>
|
|
484
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
485
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
486
|
+
</linearGradient>
|
|
487
|
+
<linearGradient id="paint53_linear_10849_9504" x1="1.64227e-05" y1="11.9998" x2="24.1653" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
488
|
+
<stop stop-color="#404040"/>
|
|
489
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
490
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
491
|
+
</linearGradient>
|
|
492
|
+
<linearGradient id="paint54_linear_10849_9504" x1="0" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
493
|
+
<stop stop-color="#404040"/>
|
|
494
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
495
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
496
|
+
</linearGradient>
|
|
497
|
+
<linearGradient id="paint55_linear_10849_9504" x1="-7.54487e-06" y1="12.0002" x2="24.1653" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
498
|
+
<stop stop-color="#404040"/>
|
|
499
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
500
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
501
|
+
</linearGradient>
|
|
502
|
+
<linearGradient id="paint56_linear_10849_9504" x1="-1.12323e-05" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
503
|
+
<stop stop-color="#404040"/>
|
|
504
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
505
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
506
|
+
</linearGradient>
|
|
507
|
+
<linearGradient id="paint57_linear_10849_9504" x1="1.82804e-05" y1="11.9998" x2="24.1653" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
508
|
+
<stop stop-color="#404040"/>
|
|
509
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
510
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
511
|
+
</linearGradient>
|
|
512
|
+
<linearGradient id="paint58_linear_10849_9504" x1="5.05753e-06" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
513
|
+
<stop stop-color="#404040"/>
|
|
514
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
515
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
516
|
+
</linearGradient>
|
|
517
|
+
<linearGradient id="paint59_linear_10849_9504" x1="9.4669e-06" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
518
|
+
<stop stop-color="#404040"/>
|
|
519
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
520
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
521
|
+
</linearGradient>
|
|
522
|
+
<linearGradient id="paint60_linear_10849_9504" x1="4.01532e-06" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
523
|
+
<stop stop-color="#404040"/>
|
|
524
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
525
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
526
|
+
</linearGradient>
|
|
527
|
+
<linearGradient id="paint61_linear_10849_9504" x1="-1.25523e-05" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
528
|
+
<stop stop-color="#404040"/>
|
|
529
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
530
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
531
|
+
</linearGradient>
|
|
532
|
+
<linearGradient id="paint62_linear_10849_9504" x1="3.30991e-05" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
533
|
+
<stop stop-color="#404040"/>
|
|
534
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
535
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
536
|
+
</linearGradient>
|
|
537
|
+
<linearGradient id="paint63_linear_10849_9504" x1="2.64618e-06" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
538
|
+
<stop stop-color="#404040"/>
|
|
539
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
540
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
541
|
+
</linearGradient>
|
|
542
|
+
<linearGradient id="paint64_linear_10849_9504" x1="-7.54487e-06" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
543
|
+
<stop stop-color="#404040"/>
|
|
544
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
545
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
546
|
+
</linearGradient>
|
|
547
|
+
<linearGradient id="paint65_linear_10849_9504" x1="-1.12323e-05" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
548
|
+
<stop stop-color="#404040"/>
|
|
549
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
550
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
551
|
+
</linearGradient>
|
|
552
|
+
<linearGradient id="paint66_linear_10849_9504" x1="1.82804e-05" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
553
|
+
<stop stop-color="#404040"/>
|
|
554
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
555
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
556
|
+
</linearGradient>
|
|
557
|
+
<linearGradient id="paint67_linear_10849_9504" x1="5.05753e-06" y1="12.0002" x2="24.1653" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
558
|
+
<stop stop-color="#404040"/>
|
|
559
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
560
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
561
|
+
</linearGradient>
|
|
562
|
+
<linearGradient id="paint68_linear_10849_9504" x1="9.4669e-06" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
563
|
+
<stop stop-color="#404040"/>
|
|
564
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
565
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
566
|
+
</linearGradient>
|
|
567
|
+
<linearGradient id="paint69_linear_10849_9504" x1="4.01532e-06" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
568
|
+
<stop stop-color="#404040"/>
|
|
569
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
570
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
571
|
+
</linearGradient>
|
|
572
|
+
<linearGradient id="paint70_linear_10849_9504" x1="1.60758e-05" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
573
|
+
<stop stop-color="#404040"/>
|
|
574
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
575
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
576
|
+
</linearGradient>
|
|
577
|
+
<linearGradient id="paint71_linear_10849_9504" x1="2.64618e-06" y1="12.0002" x2="24.1653" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
578
|
+
<stop stop-color="#404040"/>
|
|
579
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
580
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
581
|
+
</linearGradient>
|
|
582
|
+
<linearGradient id="paint72_linear_10849_9504" x1="9.30778e-06" y1="12.0002" x2="24.1653" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
583
|
+
<stop stop-color="#404040"/>
|
|
584
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
585
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
586
|
+
</linearGradient>
|
|
587
|
+
<linearGradient id="paint73_linear_10849_9504" x1="1.60758e-05" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
588
|
+
<stop stop-color="#404040"/>
|
|
589
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
590
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
591
|
+
</linearGradient>
|
|
592
|
+
<linearGradient id="paint74_linear_10849_9504" x1="-9.03139e-06" y1="11.9998" x2="24.1652" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
593
|
+
<stop stop-color="#404040"/>
|
|
594
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
595
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
596
|
+
</linearGradient>
|
|
597
|
+
<linearGradient id="paint75_linear_10849_9504" x1="9.30778e-06" y1="11.9998" x2="24.1653" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
598
|
+
<stop stop-color="#404040"/>
|
|
599
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
600
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
601
|
+
</linearGradient>
|
|
602
|
+
<linearGradient id="paint76_linear_10849_9504" x1="1.60758e-05" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
603
|
+
<stop stop-color="#404040"/>
|
|
604
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
605
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
606
|
+
</linearGradient>
|
|
607
|
+
<linearGradient id="paint77_linear_10849_9504" x1="-7.54487e-06" y1="12.0002" x2="24.1653" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
608
|
+
<stop stop-color="#404040"/>
|
|
609
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
610
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
611
|
+
</linearGradient>
|
|
612
|
+
<linearGradient id="paint78_linear_10849_9504" x1="5.05753e-06" y1="12.0003" x2="24.1653" y2="12.0003" gradientUnits="userSpaceOnUse">
|
|
613
|
+
<stop stop-color="#404040"/>
|
|
614
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
615
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
616
|
+
</linearGradient>
|
|
617
|
+
<linearGradient id="paint79_linear_10849_9504" x1="9.4669e-06" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
618
|
+
<stop stop-color="#404040"/>
|
|
619
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
620
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
621
|
+
</linearGradient>
|
|
622
|
+
<linearGradient id="paint80_linear_10849_9504" x1="-1.25523e-05" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
623
|
+
<stop stop-color="#404040"/>
|
|
624
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
625
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
626
|
+
</linearGradient>
|
|
627
|
+
<linearGradient id="paint81_linear_10849_9504" x1="2.64618e-06" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
628
|
+
<stop stop-color="#404040"/>
|
|
629
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
630
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
631
|
+
</linearGradient>
|
|
632
|
+
<linearGradient id="paint82_linear_10849_9504" x1="-7.54487e-06" y1="11.9998" x2="24.1653" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
633
|
+
<stop stop-color="#404040"/>
|
|
634
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
635
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
636
|
+
</linearGradient>
|
|
637
|
+
<linearGradient id="paint83_linear_10849_9504" x1="1.60758e-05" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
638
|
+
<stop stop-color="#404040"/>
|
|
639
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
640
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
641
|
+
</linearGradient>
|
|
642
|
+
<linearGradient id="paint84_linear_10849_9504" x1="2.64618e-06" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
643
|
+
<stop stop-color="#404040"/>
|
|
644
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
645
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
646
|
+
</linearGradient>
|
|
647
|
+
<linearGradient id="paint85_linear_10849_9504" x1="-7.54487e-06" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
648
|
+
<stop stop-color="#404040"/>
|
|
649
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
650
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
651
|
+
</linearGradient>
|
|
652
|
+
<linearGradient id="paint86_linear_10849_9504" x1="9.30778e-06" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
653
|
+
<stop stop-color="#404040"/>
|
|
654
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
655
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
656
|
+
</linearGradient>
|
|
657
|
+
<linearGradient id="paint87_linear_10849_9504" x1="1.60758e-05" y1="12.0002" x2="24.1653" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
658
|
+
<stop stop-color="#404040"/>
|
|
659
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
660
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
661
|
+
</linearGradient>
|
|
662
|
+
<linearGradient id="paint88_linear_10849_9504" x1="2.64618e-06" y1="11.9998" x2="24.1653" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
663
|
+
<stop stop-color="#404040"/>
|
|
664
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
665
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
666
|
+
</linearGradient>
|
|
667
|
+
<linearGradient id="paint89_linear_10849_9504" x1="-1.12323e-05" y1="11.9998" x2="24.1653" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
668
|
+
<stop stop-color="#404040"/>
|
|
669
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
670
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
671
|
+
</linearGradient>
|
|
672
|
+
<linearGradient id="paint90_linear_10849_9504" x1="-1.12323e-05" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
673
|
+
<stop stop-color="#404040"/>
|
|
674
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
675
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
676
|
+
</linearGradient>
|
|
677
|
+
<linearGradient id="paint91_linear_10849_9504" x1="-1.12323e-05" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
678
|
+
<stop stop-color="#404040"/>
|
|
679
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
680
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
681
|
+
</linearGradient>
|
|
682
|
+
<linearGradient id="paint92_linear_10849_9504" x1="-1.12323e-05" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
683
|
+
<stop stop-color="#404040"/>
|
|
684
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
685
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
686
|
+
</linearGradient>
|
|
687
|
+
<linearGradient id="paint93_linear_10849_9504" x1="-1.12323e-05" y1="12.0002" x2="24.1653" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
688
|
+
<stop stop-color="#404040"/>
|
|
689
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
690
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
691
|
+
</linearGradient>
|
|
692
|
+
<linearGradient id="paint94_linear_10849_9504" x1="1.82804e-05" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
693
|
+
<stop stop-color="#404040"/>
|
|
694
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
695
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
696
|
+
</linearGradient>
|
|
697
|
+
<linearGradient id="paint95_linear_10849_9504" x1="1.82804e-05" y1="11.9998" x2="24.1653" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
698
|
+
<stop stop-color="#404040"/>
|
|
699
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
700
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
701
|
+
</linearGradient>
|
|
702
|
+
<linearGradient id="paint96_linear_10849_9504" x1="1.82804e-05" y1="12.0002" x2="24.1653" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
703
|
+
<stop stop-color="#404040"/>
|
|
704
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
705
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
706
|
+
</linearGradient>
|
|
707
|
+
<linearGradient id="paint97_linear_10849_9504" x1="2.05065e-05" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
708
|
+
<stop stop-color="#404040"/>
|
|
709
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
710
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
711
|
+
</linearGradient>
|
|
712
|
+
<linearGradient id="paint98_linear_10849_9504" x1="5.05753e-06" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
713
|
+
<stop stop-color="#404040"/>
|
|
714
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
715
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
716
|
+
</linearGradient>
|
|
717
|
+
<linearGradient id="paint99_linear_10849_9504" x1="-1.15631e-05" y1="12.0002" x2="24.1653" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
718
|
+
<stop stop-color="#404040"/>
|
|
719
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
720
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
721
|
+
</linearGradient>
|
|
722
|
+
<linearGradient id="paint100_linear_10849_9504" x1="4.01532e-06" y1="11.9999" x2="24.1653" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
723
|
+
<stop stop-color="#404040"/>
|
|
724
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
725
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
726
|
+
</linearGradient>
|
|
727
|
+
<linearGradient id="paint101_linear_10849_9504" x1="-8.78186e-06" y1="12" x2="24.1653" y2="12" gradientUnits="userSpaceOnUse">
|
|
728
|
+
<stop stop-color="#404040"/>
|
|
729
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
730
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
731
|
+
</linearGradient>
|
|
732
|
+
<linearGradient id="paint102_linear_10849_9504" x1="1.64227e-05" y1="12.0002" x2="24.1653" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
733
|
+
<stop stop-color="#404040"/>
|
|
734
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
735
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
736
|
+
</linearGradient>
|
|
737
|
+
<linearGradient id="paint103_linear_10849_9504" x1="0" y1="11.9997" x2="24.1653" y2="11.9997" gradientUnits="userSpaceOnUse">
|
|
738
|
+
<stop stop-color="#404040"/>
|
|
739
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
740
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
741
|
+
</linearGradient>
|
|
742
|
+
<linearGradient id="paint104_linear_10849_9504" x1="3.30991e-05" y1="12.0001" x2="24.1653" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
743
|
+
<stop stop-color="#404040"/>
|
|
744
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
745
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
746
|
+
</linearGradient>
|
|
747
|
+
<clipPath id="clip0_10849_9504">
|
|
748
|
+
<rect width="150.514" height="24" fill="white"/>
|
|
749
|
+
</clipPath>
|
|
750
|
+
</defs>
|
|
751
|
+
</svg>
|