@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.
Files changed (233) hide show
  1. package/README.md +213 -0
  2. package/bin/hermes-webui.mjs +588 -0
  3. package/package.json +25 -0
  4. package/scripts/sync-vendor.mjs +74 -0
  5. package/templates/launchd/com.bitseek.hermes-webui.plist +21 -0
  6. package/templates/systemd/hermes-webui.service +13 -0
  7. package/templates/windows/hermes-webui-task.ps1 +3 -0
  8. package/vendor/agent-frontend-shell/.bitseek-source.json +6 -0
  9. package/vendor/agent-frontend-shell/.dockerignore +7 -0
  10. package/vendor/agent-frontend-shell/.env.docker.example +89 -0
  11. package/vendor/agent-frontend-shell/.env.example +34 -0
  12. package/vendor/agent-frontend-shell/.github/FUNDING.yml +3 -0
  13. package/vendor/agent-frontend-shell/.github/workflows/browser-smoke.yml +42 -0
  14. package/vendor/agent-frontend-shell/.github/workflows/docker-smoke.yml +233 -0
  15. package/vendor/agent-frontend-shell/.github/workflows/native-windows-startup.yml +132 -0
  16. package/vendor/agent-frontend-shell/.github/workflows/release.yml +57 -0
  17. package/vendor/agent-frontend-shell/.github/workflows/tests.yml +88 -0
  18. package/vendor/agent-frontend-shell/.vscode/launch.json +59 -0
  19. package/vendor/agent-frontend-shell/.vscode/settings.json +13 -0
  20. package/vendor/agent-frontend-shell/AGENTS.md +80 -0
  21. package/vendor/agent-frontend-shell/ARCHITECTURE.md +1658 -0
  22. package/vendor/agent-frontend-shell/BUGS.md +52 -0
  23. package/vendor/agent-frontend-shell/CHANGELOG.md +7295 -0
  24. package/vendor/agent-frontend-shell/CONTRIBUTING.md +205 -0
  25. package/vendor/agent-frontend-shell/CONTRIBUTORS.md +107 -0
  26. package/vendor/agent-frontend-shell/DESIGN.md +173 -0
  27. package/vendor/agent-frontend-shell/Dockerfile +91 -0
  28. package/vendor/agent-frontend-shell/LICENSE +21 -0
  29. package/vendor/agent-frontend-shell/README-CUSTOM.md +76 -0
  30. package/vendor/agent-frontend-shell/README.md +705 -0
  31. package/vendor/agent-frontend-shell/ROADMAP.md +351 -0
  32. package/vendor/agent-frontend-shell/SPRINTS.md +147 -0
  33. package/vendor/agent-frontend-shell/TESTING.md +1932 -0
  34. package/vendor/agent-frontend-shell/THEMES.md +170 -0
  35. package/vendor/agent-frontend-shell/api/__init__.py +1 -0
  36. package/vendor/agent-frontend-shell/api/agent_health.py +392 -0
  37. package/vendor/agent-frontend-shell/api/agent_sessions.py +782 -0
  38. package/vendor/agent-frontend-shell/api/auth.py +592 -0
  39. package/vendor/agent-frontend-shell/api/background.py +87 -0
  40. package/vendor/agent-frontend-shell/api/clarify.py +238 -0
  41. package/vendor/agent-frontend-shell/api/commands.py +124 -0
  42. package/vendor/agent-frontend-shell/api/compression_anchor.py +134 -0
  43. package/vendor/agent-frontend-shell/api/config.py +5178 -0
  44. package/vendor/agent-frontend-shell/api/dashboard_probe.py +255 -0
  45. package/vendor/agent-frontend-shell/api/extensions.py +253 -0
  46. package/vendor/agent-frontend-shell/api/gateway_chat.py +435 -0
  47. package/vendor/agent-frontend-shell/api/gateway_watcher.py +230 -0
  48. package/vendor/agent-frontend-shell/api/goals.py +608 -0
  49. package/vendor/agent-frontend-shell/api/helpers.py +474 -0
  50. package/vendor/agent-frontend-shell/api/kanban_bridge.py +1255 -0
  51. package/vendor/agent-frontend-shell/api/metering.py +194 -0
  52. package/vendor/agent-frontend-shell/api/models.py +4210 -0
  53. package/vendor/agent-frontend-shell/api/oauth.py +770 -0
  54. package/vendor/agent-frontend-shell/api/onboarding.py +1046 -0
  55. package/vendor/agent-frontend-shell/api/passkeys.py +365 -0
  56. package/vendor/agent-frontend-shell/api/profiles.py +1499 -0
  57. package/vendor/agent-frontend-shell/api/providers.py +2175 -0
  58. package/vendor/agent-frontend-shell/api/request_diagnostics.py +160 -0
  59. package/vendor/agent-frontend-shell/api/rollback.py +320 -0
  60. package/vendor/agent-frontend-shell/api/routes.py +13990 -0
  61. package/vendor/agent-frontend-shell/api/run_journal.py +284 -0
  62. package/vendor/agent-frontend-shell/api/runner_client.py +156 -0
  63. package/vendor/agent-frontend-shell/api/runtime_adapter.py +431 -0
  64. package/vendor/agent-frontend-shell/api/session_discoverability.py +640 -0
  65. package/vendor/agent-frontend-shell/api/session_events.py +45 -0
  66. package/vendor/agent-frontend-shell/api/session_lifecycle.py +208 -0
  67. package/vendor/agent-frontend-shell/api/session_ops.py +207 -0
  68. package/vendor/agent-frontend-shell/api/session_recovery.py +655 -0
  69. package/vendor/agent-frontend-shell/api/skill_usage.py +32 -0
  70. package/vendor/agent-frontend-shell/api/startup.py +128 -0
  71. package/vendor/agent-frontend-shell/api/state_sync.py +187 -0
  72. package/vendor/agent-frontend-shell/api/streaming.py +7048 -0
  73. package/vendor/agent-frontend-shell/api/system_health.py +167 -0
  74. package/vendor/agent-frontend-shell/api/terminal.py +410 -0
  75. package/vendor/agent-frontend-shell/api/turn_journal.py +214 -0
  76. package/vendor/agent-frontend-shell/api/updates.py +1261 -0
  77. package/vendor/agent-frontend-shell/api/upload.py +322 -0
  78. package/vendor/agent-frontend-shell/api/usage.py +26 -0
  79. package/vendor/agent-frontend-shell/api/workspace.py +867 -0
  80. package/vendor/agent-frontend-shell/api/workspace_git.py +1261 -0
  81. package/vendor/agent-frontend-shell/api/worktrees.py +357 -0
  82. package/vendor/agent-frontend-shell/bootstrap.py +492 -0
  83. package/vendor/agent-frontend-shell/ctl.sh +427 -0
  84. package/vendor/agent-frontend-shell/docker-compose.custom.yml +26 -0
  85. package/vendor/agent-frontend-shell/docker-compose.three-container.yml +168 -0
  86. package/vendor/agent-frontend-shell/docker-compose.two-container.yml +147 -0
  87. package/vendor/agent-frontend-shell/docker-compose.yml +57 -0
  88. package/vendor/agent-frontend-shell/docker_init.bash +459 -0
  89. package/vendor/agent-frontend-shell/docs/CONTRACTS.md +207 -0
  90. package/vendor/agent-frontend-shell/docs/EXTENSIONS.md +212 -0
  91. package/vendor/agent-frontend-shell/docs/ISSUES.md +23 -0
  92. package/vendor/agent-frontend-shell/docs/UIUX-GUIDE.md +196 -0
  93. package/vendor/agent-frontend-shell/docs/advanced-chat-setup.md +83 -0
  94. package/vendor/agent-frontend-shell/docs/docker.md +337 -0
  95. package/vendor/agent-frontend-shell/docs/onboarding-agent-checklist.md +207 -0
  96. package/vendor/agent-frontend-shell/docs/onboarding.md +202 -0
  97. package/vendor/agent-frontend-shell/docs/remote-access.md +75 -0
  98. package/vendor/agent-frontend-shell/docs/rfcs/README.md +53 -0
  99. package/vendor/agent-frontend-shell/docs/rfcs/agent-source-boundary.md +70 -0
  100. package/vendor/agent-frontend-shell/docs/rfcs/canonical-session-resolution.md +124 -0
  101. package/vendor/agent-frontend-shell/docs/rfcs/hermes-run-adapter-contract.md +1079 -0
  102. package/vendor/agent-frontend-shell/docs/rfcs/turn-journal.md +195 -0
  103. package/vendor/agent-frontend-shell/docs/rfcs/webui-run-state-consistency-contract.md +157 -0
  104. package/vendor/agent-frontend-shell/docs/supervisor.md +280 -0
  105. package/vendor/agent-frontend-shell/docs/troubleshooting.md +132 -0
  106. package/vendor/agent-frontend-shell/docs/ui-ux/index.html +863 -0
  107. package/vendor/agent-frontend-shell/docs/ui-ux/two-stage-proposal.html +768 -0
  108. package/vendor/agent-frontend-shell/docs/why-hermes.md +489 -0
  109. package/vendor/agent-frontend-shell/docs/workspace-git.md +92 -0
  110. package/vendor/agent-frontend-shell/docs/wsl-autostart.md +126 -0
  111. package/vendor/agent-frontend-shell/eslint.runtime-guard.config.mjs +35 -0
  112. package/vendor/agent-frontend-shell/extensions/bitseek-design-system.md +330 -0
  113. package/vendor/agent-frontend-shell/extensions/branding/assets/apple-touch-icon.png +0 -0
  114. package/vendor/agent-frontend-shell/extensions/branding/assets/empty-logo.svg +739 -0
  115. package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-192.png +0 -0
  116. package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-32.png +0 -0
  117. package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-512.png +0 -0
  118. package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-512.svg +745 -0
  119. package/vendor/agent-frontend-shell/extensions/branding/assets/favicon.ico +0 -0
  120. package/vendor/agent-frontend-shell/extensions/branding/assets/favicon.svg +745 -0
  121. package/vendor/agent-frontend-shell/extensions/branding/assets/titlebar-icon-v2.svg +751 -0
  122. package/vendor/agent-frontend-shell/extensions/branding/assets/titlebar-icon-v3.svg +739 -0
  123. package/vendor/agent-frontend-shell/extensions/branding/assets/titlebar-icon.svg +745 -0
  124. package/vendor/agent-frontend-shell/extensions/branding/branding.js +112 -0
  125. package/vendor/agent-frontend-shell/extensions/branding/config.json +14 -0
  126. package/vendor/agent-frontend-shell/extensions/branding/manifest.json +53 -0
  127. package/vendor/agent-frontend-shell/extensions/index.js +67 -0
  128. package/vendor/agent-frontend-shell/extensions/loader/hermes-loader.js +77 -0
  129. package/vendor/agent-frontend-shell/extensions/manifest.json +16 -0
  130. package/vendor/agent-frontend-shell/extensions/pages/ai-teammates/page.css +333 -0
  131. package/vendor/agent-frontend-shell/extensions/pages/ai-teammates/page.js +487 -0
  132. package/vendor/agent-frontend-shell/extensions/pages/manifest.json +6 -0
  133. package/vendor/agent-frontend-shell/extensions/pages/registry.css +56 -0
  134. package/vendor/agent-frontend-shell/extensions/pages/registry.js +302 -0
  135. package/vendor/agent-frontend-shell/extensions/themes/bitseek/index.css +93 -0
  136. package/vendor/agent-frontend-shell/extensions/themes/bitseek/index.js +98 -0
  137. package/vendor/agent-frontend-shell/install.sh +63 -0
  138. package/vendor/agent-frontend-shell/mcp_server.py +567 -0
  139. package/vendor/agent-frontend-shell/package.json +12 -0
  140. package/vendor/agent-frontend-shell/pyproject.toml +56 -0
  141. package/vendor/agent-frontend-shell/pytest.ini +3 -0
  142. package/vendor/agent-frontend-shell/requirements.txt +5 -0
  143. package/vendor/agent-frontend-shell/server.py +624 -0
  144. package/vendor/agent-frontend-shell/start.ps1 +210 -0
  145. package/vendor/agent-frontend-shell/start.sh +65 -0
  146. package/vendor/agent-frontend-shell/static/apple-touch-icon.png +0 -0
  147. package/vendor/agent-frontend-shell/static/boot.js +1990 -0
  148. package/vendor/agent-frontend-shell/static/commands.js +1402 -0
  149. package/vendor/agent-frontend-shell/static/favicon-192.png +0 -0
  150. package/vendor/agent-frontend-shell/static/favicon-32.png +0 -0
  151. package/vendor/agent-frontend-shell/static/favicon-512.png +0 -0
  152. package/vendor/agent-frontend-shell/static/favicon-512.svg +18 -0
  153. package/vendor/agent-frontend-shell/static/favicon.ico +0 -0
  154. package/vendor/agent-frontend-shell/static/favicon.svg +20 -0
  155. package/vendor/agent-frontend-shell/static/i18n.js +15389 -0
  156. package/vendor/agent-frontend-shell/static/icons.js +92 -0
  157. package/vendor/agent-frontend-shell/static/index.html +1506 -0
  158. package/vendor/agent-frontend-shell/static/login.js +177 -0
  159. package/vendor/agent-frontend-shell/static/manifest.json +53 -0
  160. package/vendor/agent-frontend-shell/static/messages.js +3521 -0
  161. package/vendor/agent-frontend-shell/static/onboarding.js +800 -0
  162. package/vendor/agent-frontend-shell/static/panels.js +7995 -0
  163. package/vendor/agent-frontend-shell/static/pwa-startup.js +83 -0
  164. package/vendor/agent-frontend-shell/static/sessions.js +5165 -0
  165. package/vendor/agent-frontend-shell/static/style.css +4774 -0
  166. package/vendor/agent-frontend-shell/static/sw.js +173 -0
  167. package/vendor/agent-frontend-shell/static/terminal.js +632 -0
  168. package/vendor/agent-frontend-shell/static/ui.js +8997 -0
  169. package/vendor/agent-frontend-shell/static/vendor/js-yaml/4.1.0/js-yaml.min.js +2 -0
  170. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_AMS-Regular.ttf +0 -0
  171. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_AMS-Regular.woff +0 -0
  172. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_AMS-Regular.woff2 +0 -0
  173. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
  174. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
  175. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
  176. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
  177. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
  178. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
  179. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
  180. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Bold.woff +0 -0
  181. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
  182. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
  183. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Regular.woff +0 -0
  184. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
  185. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Bold.ttf +0 -0
  186. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Bold.woff +0 -0
  187. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Bold.woff2 +0 -0
  188. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
  189. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-BoldItalic.woff +0 -0
  190. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
  191. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Italic.ttf +0 -0
  192. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Italic.woff +0 -0
  193. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Italic.woff2 +0 -0
  194. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Regular.ttf +0 -0
  195. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Regular.woff +0 -0
  196. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Regular.woff2 +0 -0
  197. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
  198. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-BoldItalic.woff +0 -0
  199. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
  200. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-Italic.ttf +0 -0
  201. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-Italic.woff +0 -0
  202. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-Italic.woff2 +0 -0
  203. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
  204. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Bold.woff +0 -0
  205. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
  206. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
  207. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Italic.woff +0 -0
  208. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
  209. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
  210. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Regular.woff +0 -0
  211. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
  212. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Script-Regular.ttf +0 -0
  213. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Script-Regular.woff +0 -0
  214. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Script-Regular.woff2 +0 -0
  215. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size1-Regular.ttf +0 -0
  216. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size1-Regular.woff +0 -0
  217. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size1-Regular.woff2 +0 -0
  218. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size2-Regular.ttf +0 -0
  219. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size2-Regular.woff +0 -0
  220. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size2-Regular.woff2 +0 -0
  221. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size3-Regular.ttf +0 -0
  222. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size3-Regular.woff +0 -0
  223. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size3-Regular.woff2 +0 -0
  224. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size4-Regular.ttf +0 -0
  225. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size4-Regular.woff +0 -0
  226. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size4-Regular.woff2 +0 -0
  227. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
  228. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Typewriter-Regular.woff +0 -0
  229. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
  230. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/katex.min.css +1 -0
  231. package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/katex.min.js +1 -0
  232. package/vendor/agent-frontend-shell/static/vendor/smd.min.js +29 -0
  233. package/vendor/agent-frontend-shell/static/workspace.js +680 -0
@@ -0,0 +1,745 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_10832_20745)">
3
+ <rect width="16" height="16" rx="3" fill="white"/>
4
+ <path d="M8.90544 7.99187C10.5339 7.99187 11.8541 6.67147 11.8541 5.04264C11.8541 3.41381 10.5336 2.09375 8.90544 2.09375H7.08905L10.1695 5.15021L7.34133 7.99187L10.1695 10.8335L7.08905 13.89H8.90544C10.5339 13.89 11.8541 12.5696 11.8541 10.9408C11.8541 9.31193 10.5339 7.99154 8.90544 7.99154V7.99187Z" fill="#404040"/>
5
+ <path d="M11.4785 9.33081L14.1875 7.99182L11.4785 6.65283V9.33081Z" fill="#404040"/>
6
+ <path d="M6.86009 2.09375C6.74159 2.09375 6.64532 2.19003 6.64532 2.30856C6.64532 2.42709 6.74159 2.52337 6.86009 2.52337C6.97859 2.52337 7.07486 2.42709 7.07486 2.30856C7.07486 2.19003 6.97859 2.09375 6.86009 2.09375Z" fill="#404040"/>
7
+ <path d="M6.30542 2.10645C6.19389 2.10645 6.10327 2.19708 6.10327 2.30864C6.10327 2.42019 6.19389 2.51083 6.30542 2.51083C6.41696 2.51083 6.50758 2.42019 6.50758 2.30864C6.50758 2.19708 6.41696 2.10645 6.30542 2.10645Z" fill="#404040"/>
8
+ <path d="M5.75131 2.11914C5.64674 2.11914 5.56177 2.20413 5.56177 2.30872C5.56177 2.4133 5.64674 2.49829 5.75131 2.49829C5.85587 2.49829 5.94084 2.4133 5.94084 2.30872C5.94084 2.20413 5.85587 2.11914 5.75131 2.11914Z" fill="#404040"/>
9
+ <path d="M5.19731 2.13135C5.09972 2.13135 5.02039 2.2107 5.02039 2.30831C5.02039 2.40592 5.09972 2.48527 5.19731 2.48527C5.2949 2.48527 5.37424 2.40592 5.37424 2.30831C5.37424 2.2107 5.2949 2.13135 5.19731 2.13135Z" fill="#404040"/>
10
+ <path d="M4.64313 2.14453C4.55251 2.14453 4.47882 2.2179 4.47882 2.30888C4.47882 2.39985 4.55251 2.47322 4.64313 2.47322C4.73375 2.47322 4.80744 2.39951 4.80744 2.30888C4.80744 2.21824 4.73375 2.14453 4.64313 2.14453Z" fill="#404040"/>
11
+ <path d="M4.08914 2.15674C4.00549 2.15674 3.93744 2.22447 3.93744 2.30847C3.93744 2.39246 4.00516 2.46019 4.08914 2.46019C4.17312 2.46019 4.24083 2.39246 4.24083 2.30847C4.24083 2.22447 4.17312 2.15674 4.08914 2.15674Z" fill="#404040"/>
12
+ <path d="M3.53429 2.16992C3.45761 2.16992 3.3952 2.23201 3.3952 2.30903C3.3952 2.38606 3.45728 2.44814 3.53429 2.44814C3.6113 2.44814 3.67337 2.38606 3.67337 2.30903C3.67337 2.23201 3.6113 2.16992 3.53429 2.16992Z" fill="#404040"/>
13
+ <path d="M2.98035 2.18213C2.91064 2.18213 2.85388 2.23857 2.85388 2.30862C2.85388 2.37868 2.91031 2.43512 2.98035 2.43512C3.05039 2.43512 3.10682 2.37868 3.10682 2.30862C3.10682 2.23857 3.05039 2.18213 2.98035 2.18213Z" fill="#404040"/>
14
+ <path d="M2.42636 2.42209C2.48924 2.42209 2.54021 2.37111 2.54021 2.30821C2.54021 2.24532 2.48924 2.19434 2.42636 2.19434C2.36347 2.19434 2.3125 2.24532 2.3125 2.30821C2.3125 2.37111 2.36347 2.42209 2.42636 2.42209Z" fill="#404040"/>
15
+ <path d="M7.41427 3.10426C7.53974 3.10426 7.64165 3.00234 7.64165 2.87684C7.64165 2.75134 7.53974 2.64941 7.41427 2.64941C7.2888 2.64941 7.18689 2.75134 7.18689 2.87684C7.18689 3.00234 7.2888 3.10426 7.41427 3.10426Z" fill="#404040"/>
16
+ <path d="M6.86009 2.66211C6.74159 2.66211 6.64532 2.75839 6.64532 2.87692C6.64532 2.99545 6.74159 3.09173 6.86009 3.09173C6.97859 3.09173 7.07486 2.99545 7.07486 2.87692C7.07486 2.75839 6.97859 2.66211 6.86009 2.66211Z" fill="#404040"/>
17
+ <path d="M6.30542 2.6748C6.19389 2.6748 6.10327 2.76544 6.10327 2.877C6.10327 2.98855 6.19389 3.07919 6.30542 3.07919C6.41696 3.07919 6.50758 2.98855 6.50758 2.877C6.50758 2.76544 6.41696 2.6748 6.30542 2.6748Z" fill="#404040"/>
18
+ <path d="M5.75131 2.6875C5.64674 2.6875 5.56177 2.77249 5.56177 2.87708C5.56177 2.98166 5.64674 3.06665 5.75131 3.06665C5.85587 3.06665 5.94084 2.98166 5.94084 2.87708C5.94084 2.77249 5.85587 2.6875 5.75131 2.6875Z" fill="#404040"/>
19
+ <path d="M5.19731 2.7002C5.09972 2.7002 5.02039 2.77955 5.02039 2.87716C5.02039 2.97477 5.09972 3.05412 5.19731 3.05412C5.2949 3.05412 5.37424 2.97477 5.37424 2.87716C5.37424 2.77955 5.2949 2.7002 5.19731 2.7002Z" fill="#404040"/>
20
+ <path d="M4.64313 2.7124C4.55251 2.7124 4.47882 2.78611 4.47882 2.87675C4.47882 2.96738 4.55251 3.04109 4.64313 3.04109C4.73375 3.04109 4.80744 2.96738 4.80744 2.87675C4.80744 2.78611 4.73375 2.7124 4.64313 2.7124Z" fill="#404040"/>
21
+ <path d="M4.08914 3.02806C4.17292 3.02806 4.24083 2.96013 4.24083 2.87634C4.24083 2.79254 4.17292 2.72461 4.08914 2.72461C4.00536 2.72461 3.93744 2.79254 3.93744 2.87634C3.93744 2.96013 4.00536 3.02806 4.08914 3.02806Z" fill="#404040"/>
22
+ <path d="M3.53429 3.01602C3.6111 3.01602 3.67337 2.95373 3.67337 2.8769C3.67337 2.80008 3.6111 2.73779 3.53429 2.73779C3.45747 2.73779 3.3952 2.80008 3.3952 2.8769C3.3952 2.95373 3.45747 3.01602 3.53429 3.01602Z" fill="#404040"/>
23
+ <path d="M7.96827 3.68565C8.10071 3.68565 8.20826 3.57808 8.20826 3.44561C8.20826 3.31314 8.10071 3.20557 7.96827 3.20557C7.83582 3.20557 7.72827 3.31314 7.72827 3.44561C7.72827 3.57808 7.83582 3.68565 7.96827 3.68565Z" fill="#404040"/>
24
+ <path d="M7.41427 3.67262C7.53974 3.67262 7.64165 3.5707 7.64165 3.4452C7.64165 3.3197 7.53974 3.21777 7.41427 3.21777C7.2888 3.21777 7.18689 3.3197 7.18689 3.4452C7.18689 3.5707 7.2888 3.67262 7.41427 3.67262Z" fill="#404040"/>
25
+ <path d="M6.86009 3.23096C6.74159 3.23096 6.64532 3.32724 6.64532 3.44577C6.64532 3.56429 6.74159 3.66058 6.86009 3.66058C6.97859 3.66058 7.07486 3.56429 7.07486 3.44577C7.07486 3.32724 6.97859 3.23096 6.86009 3.23096Z" fill="#404040"/>
26
+ <path d="M6.30542 3.64755C6.41707 3.64755 6.50758 3.55702 6.50758 3.44536C6.50758 3.33369 6.41707 3.24316 6.30542 3.24316C6.19378 3.24316 6.10327 3.33369 6.10327 3.44536C6.10327 3.55702 6.19378 3.64755 6.30542 3.64755Z" fill="#404040"/>
27
+ <path d="M5.75131 3.25537C5.64674 3.25537 5.56177 3.34037 5.56177 3.44495C5.56177 3.54953 5.64674 3.63452 5.75131 3.63452C5.85587 3.63452 5.94084 3.54953 5.94084 3.44495C5.94084 3.34037 5.85587 3.25537 5.75131 3.25537Z" fill="#404040"/>
28
+ <path d="M5.19731 3.62248C5.29502 3.62248 5.37424 3.54325 5.37424 3.44551C5.37424 3.34778 5.29502 3.26855 5.19731 3.26855C5.0996 3.26855 5.02039 3.34778 5.02039 3.44551C5.02039 3.54325 5.0996 3.62248 5.19731 3.62248Z" fill="#404040"/>
29
+ <path d="M4.64313 3.28125C4.55251 3.28125 4.47882 3.35496 4.47882 3.44559C4.47882 3.53623 4.55251 3.60994 4.64313 3.60994C4.73375 3.60994 4.80744 3.53623 4.80744 3.44559C4.80744 3.35496 4.73375 3.28125 4.64313 3.28125Z" fill="#404040"/>
30
+ <path d="M8.52244 4.26655C8.66186 4.26655 8.77505 4.15333 8.77505 4.01389C8.77505 3.87445 8.66186 3.76123 8.52244 3.76123C8.38303 3.76123 8.26984 3.87445 8.26984 4.01389C8.26984 4.15333 8.38303 4.26655 8.52244 4.26655Z" fill="#404040"/>
31
+ <path d="M7.96827 4.25303C8.10071 4.25303 8.20826 4.14546 8.20826 4.01299C8.20826 3.88052 8.10071 3.77295 7.96827 3.77295C7.83582 3.77295 7.72827 3.88052 7.72827 4.01299C7.72827 4.14546 7.83582 4.25303 7.96827 4.25303Z" fill="#404040"/>
32
+ <path d="M9.07638 4.84695C9.22277 4.84695 9.3416 4.7281 9.3416 4.58168C9.3416 4.43527 9.22277 4.31641 9.07638 4.31641C8.92999 4.31641 8.81116 4.43527 8.81116 4.58168C8.81116 4.7281 8.92999 4.84695 9.07638 4.84695Z" fill="#404040"/>
33
+ <path d="M8.52244 4.83442C8.66186 4.83442 8.77505 4.7212 8.77505 4.58176C8.77505 4.44232 8.66186 4.3291 8.52244 4.3291C8.38303 4.3291 8.26984 4.44232 8.26984 4.58176C8.26984 4.7212 8.38303 4.83442 8.52244 4.83442Z" fill="#404040"/>
34
+ <path d="M9.90913 5.15045C9.90913 4.99706 9.78465 4.87256 9.63129 4.87256C9.47793 4.87256 9.35345 4.99706 9.35345 5.15045C9.35345 5.30384 9.47793 5.42834 9.63129 5.42834C9.78465 5.42834 9.90913 5.30384 9.90913 5.15045Z" fill="#404040"/>
35
+ <path d="M9.07638 5.41531C9.22286 5.41531 9.3416 5.29655 9.3416 5.15004C9.3416 5.00353 9.22286 4.88477 9.07638 4.88477C8.9299 4.88477 8.81116 5.00353 8.81116 5.15004C8.81116 5.29655 8.9299 5.41531 9.07638 5.41531Z" fill="#404040"/>
36
+ <path d="M8.52244 5.40229C8.66186 5.40229 8.77505 5.28907 8.77505 5.14963C8.77505 5.01019 8.66186 4.89697 8.52244 4.89697C8.38303 4.89697 8.26984 5.01019 8.26984 5.14963C8.26984 5.28907 8.38303 5.40229 8.52244 5.40229Z" fill="#404040"/>
37
+ <path d="M7.41427 7.65114C7.53974 7.65114 7.64165 7.54921 7.64165 7.42371C7.64165 7.29822 7.53974 7.19629 7.41427 7.19629C7.2888 7.19629 7.18689 7.29822 7.18689 7.42371C7.18689 7.54921 7.2888 7.65114 7.41427 7.65114Z" fill="#404040"/>
38
+ <path d="M5.75131 7.23389C5.64674 7.23389 5.56177 7.31888 5.56177 7.42346C5.56177 7.52805 5.64674 7.61304 5.75131 7.61304C5.85587 7.61304 5.94084 7.52805 5.94084 7.42346C5.94084 7.31888 5.85587 7.23389 5.75131 7.23389Z" fill="#404040"/>
39
+ <path d="M5.19731 7.24707C5.09972 7.24707 5.02039 7.32642 5.02039 7.42403C5.02039 7.52164 5.09972 7.60099 5.19731 7.60099C5.2949 7.60099 5.37424 7.52164 5.37424 7.42403C5.37424 7.32642 5.2949 7.24707 5.19731 7.24707Z" fill="#404040"/>
40
+ <path d="M4.08914 7.85912C4.17292 7.85912 4.24083 7.79119 4.24083 7.70739C4.24083 7.62359 4.17292 7.55566 4.08914 7.55566C4.00536 7.55566 3.93744 7.62359 3.93744 7.70739C3.93744 7.79119 4.00536 7.85912 4.08914 7.85912Z" fill="#404040"/>
41
+ <path d="M3.53429 7.84707C3.6111 7.84707 3.67337 7.78479 3.67337 7.70796C3.67337 7.63113 3.6111 7.56885 3.53429 7.56885C3.45747 7.56885 3.3952 7.63113 3.3952 7.70796C3.3952 7.78479 3.45747 7.84707 3.53429 7.84707Z" fill="#404040"/>
42
+ <path d="M7.96827 7.09483C8.10071 7.09483 8.20826 6.98726 8.20826 6.85479C8.20826 6.72232 8.10071 6.61475 7.96827 6.61475C7.83582 6.61475 7.72827 6.72232 7.72827 6.85479C7.72827 6.98726 7.83582 7.09483 7.96827 7.09483Z" fill="#404040"/>
43
+ <path d="M7.41427 7.08278C7.53974 7.08278 7.64165 6.98085 7.64165 6.85535C7.64165 6.72986 7.53974 6.62793 7.41427 6.62793C7.2888 6.62793 7.18689 6.72986 7.18689 6.85535C7.18689 6.98085 7.2888 7.08278 7.41427 7.08278Z" fill="#404040"/>
44
+ <path d="M8.52244 6.5395C8.66186 6.5395 8.77505 6.42628 8.77505 6.28684C8.77505 6.14739 8.66186 6.03418 8.52244 6.03418C8.38303 6.03418 8.26984 6.14739 8.26984 6.28684C8.26984 6.42628 8.38303 6.5395 8.52244 6.5395Z" fill="#404040"/>
45
+ <path d="M7.96827 6.52696C8.10071 6.52696 8.20826 6.41939 8.20826 6.28692C8.20826 6.15445 8.10071 6.04688 7.96827 6.04688C7.83582 6.04688 7.72827 6.15445 7.72827 6.28692C7.72827 6.41939 7.83582 6.52696 7.96827 6.52696Z" fill="#404040"/>
46
+ <path d="M7.41427 6.51442C7.53974 6.51442 7.64165 6.41249 7.64165 6.287C7.64165 6.1615 7.53974 6.05957 7.41427 6.05957C7.2888 6.05957 7.18689 6.1615 7.18689 6.287C7.18689 6.41249 7.2888 6.51442 7.41427 6.51442Z" fill="#404040"/>
47
+ <path d="M9.07638 5.98367C9.22277 5.98367 9.3416 5.86481 9.3416 5.7184C9.3416 5.57198 9.22277 5.45312 9.07638 5.45312C8.92999 5.45312 8.81116 5.57198 8.81116 5.7184C8.81116 5.86481 8.92999 5.98367 9.07638 5.98367Z" fill="#404040"/>
48
+ <path d="M8.52244 5.97114C8.66186 5.97114 8.77505 5.85792 8.77505 5.71848C8.77505 5.57904 8.66186 5.46582 8.52244 5.46582C8.38303 5.46582 8.26984 5.57904 8.26984 5.71848C8.26984 5.85792 8.38303 5.97114 8.52244 5.97114Z" fill="#404040"/>
49
+ <path d="M7.96827 5.9586C8.10071 5.9586 8.20826 5.85103 8.20826 5.71856C8.20826 5.58609 8.10071 5.47852 7.96827 5.47852C7.83582 5.47852 7.72827 5.58609 7.72827 5.71856C7.72827 5.85103 7.83582 5.9586 7.96827 5.9586Z" fill="#404040"/>
50
+ <path d="M6.86009 13.4604C6.74159 13.4604 6.64532 13.5567 6.64532 13.6753C6.64532 13.7938 6.74159 13.8901 6.86009 13.8901C6.97859 13.8901 7.07486 13.7938 7.07486 13.6753C7.07486 13.5567 6.97859 13.4604 6.86009 13.4604Z" fill="#404040"/>
51
+ <path d="M6.30542 13.8775C6.41707 13.8775 6.50758 13.787 6.50758 13.6753C6.50758 13.5637 6.41707 13.4731 6.30542 13.4731C6.19378 13.4731 6.10327 13.5637 6.10327 13.6753C6.10327 13.787 6.19378 13.8775 6.30542 13.8775Z" fill="#404040"/>
52
+ <path d="M5.75131 13.4863C5.64674 13.4863 5.56177 13.5713 5.56177 13.6759C5.56177 13.7805 5.64674 13.8655 5.75131 13.8655C5.85587 13.8655 5.94084 13.7805 5.94084 13.6759C5.94084 13.5713 5.85587 13.4863 5.75131 13.4863Z" fill="#404040"/>
53
+ <path d="M5.19731 13.8525C5.29502 13.8525 5.37424 13.7732 5.37424 13.6755C5.37424 13.5778 5.29502 13.4985 5.19731 13.4985C5.0996 13.4985 5.02039 13.5778 5.02039 13.6755C5.02039 13.7732 5.0996 13.8525 5.19731 13.8525Z" fill="#404040"/>
54
+ <path d="M4.64313 13.5107C4.55251 13.5107 4.47882 13.5844 4.47882 13.6751C4.47882 13.7657 4.55251 13.8394 4.64313 13.8394C4.73375 13.8394 4.80744 13.7661 4.80744 13.6751C4.80744 13.5841 4.73375 13.5107 4.64313 13.5107Z" fill="#404040"/>
55
+ <path d="M4.08914 13.8269C4.17292 13.8269 4.24083 13.759 4.24083 13.6752C4.24083 13.5914 4.17292 13.5234 4.08914 13.5234C4.00536 13.5234 3.93744 13.5914 3.93744 13.6752C3.93744 13.759 4.00536 13.8269 4.08914 13.8269Z" fill="#404040"/>
56
+ <path d="M3.53429 13.8144C3.6111 13.8144 3.67337 13.7521 3.67337 13.6752C3.67337 13.5984 3.6111 13.5361 3.53429 13.5361C3.45747 13.5361 3.3952 13.5984 3.3952 13.6752C3.3952 13.7521 3.45747 13.8144 3.53429 13.8144Z" fill="#404040"/>
57
+ <path d="M2.98035 13.8018C3.0502 13.8018 3.10682 13.7452 3.10682 13.6753C3.10682 13.6055 3.0502 13.5488 2.98035 13.5488C2.9105 13.5488 2.85388 13.6055 2.85388 13.6753C2.85388 13.7452 2.9105 13.8018 2.98035 13.8018Z" fill="#404040"/>
58
+ <path d="M2.42636 13.7893C2.48924 13.7893 2.54021 13.7383 2.54021 13.6754C2.54021 13.6125 2.48924 13.5615 2.42636 13.5615C2.36347 13.5615 2.3125 13.6125 2.3125 13.6754C2.3125 13.7383 2.36347 13.7893 2.42636 13.7893Z" fill="#404040"/>
59
+ <path d="M7.41427 13.3342C7.53974 13.3342 7.64165 13.2323 7.64165 13.1068C7.64165 12.9813 7.53974 12.8794 7.41427 12.8794C7.2888 12.8794 7.18689 12.9813 7.18689 13.1068C7.18689 13.2323 7.2888 13.3342 7.41427 13.3342Z" fill="#404040"/>
60
+ <path d="M6.86009 12.8926C6.74159 12.8926 6.64532 12.9889 6.64532 13.1074C6.64532 13.2259 6.74159 13.3222 6.86009 13.3222C6.97859 13.3222 7.07486 13.2259 7.07486 13.1074C7.07486 12.9889 6.97859 12.8926 6.86009 12.8926Z" fill="#404040"/>
61
+ <path d="M6.30542 13.3092C6.41707 13.3092 6.50758 13.2186 6.50758 13.107C6.50758 12.9953 6.41707 12.9048 6.30542 12.9048C6.19378 12.9048 6.10327 12.9953 6.10327 13.107C6.10327 13.2186 6.19378 13.3092 6.30542 13.3092Z" fill="#404040"/>
62
+ <path d="M5.75131 12.917C5.64674 12.917 5.56177 13.002 5.56177 13.1066C5.56177 13.2112 5.64674 13.2961 5.75131 13.2961C5.85587 13.2961 5.94084 13.2112 5.94084 13.1066C5.94084 13.002 5.85587 12.917 5.75131 12.917Z" fill="#404040"/>
63
+ <path d="M5.19731 12.9297C5.09972 12.9297 5.02039 13.009 5.02039 13.1066C5.02039 13.2043 5.09972 13.2836 5.19731 13.2836C5.2949 13.2836 5.37424 13.2043 5.37424 13.1066C5.37424 13.009 5.2949 12.9297 5.19731 12.9297Z" fill="#404040"/>
64
+ <path d="M4.64313 12.9424C4.55251 12.9424 4.47882 13.0161 4.47882 13.1067C4.47882 13.1974 4.55251 13.2711 4.64313 13.2711C4.73375 13.2711 4.80744 13.1977 4.80744 13.1067C4.80744 13.0158 4.73375 12.9424 4.64313 12.9424Z" fill="#404040"/>
65
+ <path d="M4.08914 12.9556C4.00549 12.9556 3.93744 13.0233 3.93744 13.1073C3.93744 13.1913 4.00516 13.259 4.08914 13.259C4.17312 13.259 4.24083 13.1913 4.24083 13.1073C4.24083 13.0233 4.17312 12.9556 4.08914 12.9556Z" fill="#404040"/>
66
+ <path d="M3.53429 13.246C3.6111 13.246 3.67337 13.1837 3.67337 13.1069C3.67337 13.0301 3.6111 12.9678 3.53429 12.9678C3.45747 12.9678 3.3952 13.0301 3.3952 13.1069C3.3952 13.1837 3.45747 13.246 3.53429 13.246Z" fill="#404040"/>
67
+ <path d="M7.96827 12.7789C8.10071 12.7789 8.20826 12.6713 8.20826 12.5389C8.20826 12.4064 8.10071 12.2988 7.96827 12.2988C7.83582 12.2988 7.72827 12.4064 7.72827 12.5389C7.72827 12.6713 7.83582 12.7789 7.96827 12.7789Z" fill="#404040"/>
68
+ <path d="M7.41427 12.7659C7.53974 12.7659 7.64165 12.664 7.64165 12.5385C7.64165 12.413 7.53974 12.311 7.41427 12.311C7.2888 12.311 7.18689 12.413 7.18689 12.5385C7.18689 12.664 7.2888 12.7659 7.41427 12.7659Z" fill="#404040"/>
69
+ <path d="M6.86009 12.3232C6.74159 12.3232 6.64532 12.4195 6.64532 12.5381C6.64532 12.6566 6.74159 12.7529 6.86009 12.7529C6.97859 12.7529 7.07486 12.6566 7.07486 12.5381C7.07486 12.4195 6.97859 12.3232 6.86009 12.3232Z" fill="#404040"/>
70
+ <path d="M6.30542 12.3364C6.19389 12.3364 6.10327 12.4271 6.10327 12.5386C6.10327 12.6502 6.19389 12.7408 6.30542 12.7408C6.41696 12.7408 6.50758 12.6502 6.50758 12.5386C6.50758 12.4271 6.41696 12.3364 6.30542 12.3364Z" fill="#404040"/>
71
+ <path d="M5.75131 12.3491C5.64674 12.3491 5.56177 12.4341 5.56177 12.5387C5.56177 12.6433 5.64674 12.7283 5.75131 12.7283C5.85587 12.7283 5.94084 12.6433 5.94084 12.5387C5.94084 12.4341 5.85587 12.3491 5.75131 12.3491Z" fill="#404040"/>
72
+ <path d="M5.19731 12.7157C5.29502 12.7157 5.37424 12.6365 5.37424 12.5388C5.37424 12.441 5.29502 12.3618 5.19731 12.3618C5.0996 12.3618 5.02039 12.441 5.02039 12.5388C5.02039 12.6365 5.0996 12.7157 5.19731 12.7157Z" fill="#404040"/>
73
+ <path d="M4.64313 12.374C4.55251 12.374 4.47882 12.4474 4.47882 12.5384C4.47882 12.6293 4.55251 12.7027 4.64313 12.7027C4.73375 12.7027 4.80744 12.629 4.80744 12.5384C4.80744 12.4477 4.73375 12.374 4.64313 12.374Z" fill="#404040"/>
74
+ <path d="M8.52244 12.2231C8.66186 12.2231 8.77505 12.1099 8.77505 11.9704C8.77505 11.831 8.66186 11.7178 8.52244 11.7178C8.38303 11.7178 8.26984 11.831 8.26984 11.9704C8.26984 12.1099 8.38303 12.2231 8.52244 12.2231Z" fill="#404040"/>
75
+ <path d="M7.96827 12.2101C8.10071 12.2101 8.20826 12.1025 8.20826 11.97C8.20826 11.8376 8.10071 11.73 7.96827 11.73C7.83582 11.73 7.72827 11.8376 7.72827 11.97C7.72827 12.1025 7.83582 12.2101 7.96827 12.2101Z" fill="#404040"/>
76
+ <path d="M9.07638 11.6668C9.22286 11.6668 9.3416 11.548 9.3416 11.4015C9.3416 11.255 9.22286 11.1362 9.07638 11.1362C8.9299 11.1362 8.81116 11.255 8.81116 11.4015C8.81116 11.548 8.9299 11.6668 9.07638 11.6668Z" fill="#404040"/>
77
+ <path d="M8.52244 11.6542C8.66186 11.6542 8.77505 11.541 8.77505 11.4016C8.77505 11.2621 8.66186 11.1489 8.52244 11.1489C8.38303 11.1489 8.26984 11.2621 8.26984 11.4016C8.26984 11.541 8.38303 11.6542 8.52244 11.6542Z" fill="#404040"/>
78
+ <path d="M9.90913 10.8336C9.90913 10.6802 9.78465 10.5557 9.63129 10.5557C9.47793 10.5557 9.35345 10.6802 9.35345 10.8336C9.35345 10.9869 9.47793 11.1114 9.63129 11.1114C9.78465 11.1114 9.90913 10.9869 9.90913 10.8336Z" fill="#404040"/>
79
+ <path d="M9.07638 11.0994C9.22277 11.0994 9.3416 10.9805 9.3416 10.8341C9.3416 10.6877 9.22277 10.5688 9.07638 10.5688C8.92999 10.5688 8.81116 10.6877 8.81116 10.8341C8.81116 10.9805 8.92999 11.0994 9.07638 11.0994Z" fill="#404040"/>
80
+ <path d="M8.52244 11.0864C8.66186 11.0864 8.77505 10.9732 8.77505 10.8337C8.77505 10.6943 8.66186 10.5811 8.52244 10.5811C8.38303 10.5811 8.26984 10.6943 8.26984 10.8337C8.26984 10.9732 8.38303 11.0864 8.52244 11.0864Z" fill="#404040"/>
81
+ <path d="M7.41427 8.78786C7.53974 8.78786 7.64165 8.68593 7.64165 8.56043C7.64165 8.43493 7.53974 8.33301 7.41427 8.33301C7.2888 8.33301 7.18689 8.43493 7.18689 8.56043C7.18689 8.68593 7.2888 8.78786 7.41427 8.78786Z" fill="#404040"/>
82
+ <path d="M5.75131 8.37061C5.64674 8.37061 5.56177 8.4556 5.56177 8.56018C5.56177 8.66476 5.64674 8.74976 5.75131 8.74976C5.85587 8.74976 5.94084 8.66476 5.94084 8.56018C5.94084 8.4556 5.85587 8.37061 5.75131 8.37061Z" fill="#404040"/>
83
+ <path d="M5.19731 8.73722C5.29502 8.73722 5.37424 8.65799 5.37424 8.56026C5.37424 8.46253 5.29502 8.3833 5.19731 8.3833C5.0996 8.3833 5.02039 8.46253 5.02039 8.56026C5.02039 8.65799 5.0996 8.73722 5.19731 8.73722Z" fill="#404040"/>
84
+ <path d="M4.08914 8.12451C4.00549 8.12451 3.93744 8.19224 3.93744 8.27624C3.93744 8.36024 4.00516 8.42797 4.08914 8.42797C4.17312 8.42797 4.24083 8.36024 4.24083 8.27624C4.24083 8.19224 4.17312 8.12451 4.08914 8.12451Z" fill="#404040"/>
85
+ <path d="M7.96827 9.36876C8.10071 9.36876 8.20826 9.26118 8.20826 9.12871C8.20826 8.99624 8.10071 8.88867 7.96827 8.88867C7.83582 8.88867 7.72827 8.99624 7.72827 9.12871C7.72827 9.26118 7.83582 9.36876 7.96827 9.36876Z" fill="#404040"/>
86
+ <path d="M7.41427 9.35622C7.53974 9.35622 7.64165 9.25429 7.64165 9.12879C7.64165 9.00329 7.53974 8.90137 7.41427 8.90137C7.2888 8.90137 7.18689 9.00329 7.18689 9.12879C7.18689 9.25429 7.2888 9.35622 7.41427 9.35622Z" fill="#404040"/>
87
+ <path d="M8.52244 9.94965C8.66186 9.94965 8.77505 9.83644 8.77505 9.69699C8.77505 9.55755 8.66186 9.44434 8.52244 9.44434C8.38303 9.44434 8.26984 9.55755 8.26984 9.69699C8.26984 9.83644 8.38303 9.94965 8.52244 9.94965Z" fill="#404040"/>
88
+ <path d="M7.96827 9.93711C8.10071 9.93711 8.20826 9.82954 8.20826 9.69707C8.20826 9.5646 8.10071 9.45703 7.96827 9.45703C7.83582 9.45703 7.72827 9.5646 7.72827 9.69707C7.72827 9.82954 7.83582 9.93711 7.96827 9.93711Z" fill="#404040"/>
89
+ <path d="M7.41427 9.92409C7.53974 9.92409 7.64165 9.82216 7.64165 9.69666C7.64165 9.57116 7.53974 9.46924 7.41427 9.46924C7.2888 9.46924 7.18689 9.57116 7.18689 9.69666C7.18689 9.82216 7.2888 9.92409 7.41427 9.92409Z" fill="#404040"/>
90
+ <path d="M9.07638 10.5305C9.22286 10.5305 9.3416 10.4118 9.3416 10.2653C9.3416 10.1188 9.22286 10 9.07638 10C8.9299 10 8.81116 10.1188 8.81116 10.2653C8.81116 10.4118 8.9299 10.5305 9.07638 10.5305Z" fill="#404040"/>
91
+ <path d="M8.52244 10.518C8.66186 10.518 8.77505 10.4048 8.77505 10.2654C8.77505 10.1259 8.66186 10.0127 8.52244 10.0127C8.38303 10.0127 8.26984 10.1259 8.26984 10.2654C8.26984 10.4048 8.38303 10.518 8.52244 10.518Z" fill="#404040"/>
92
+ <path d="M7.96827 10.5055C8.10071 10.5055 8.20826 10.3979 8.20826 10.2654C8.20826 10.133 8.10071 10.0254 7.96827 10.0254C7.83582 10.0254 7.72827 10.133 7.72827 10.2654C7.72827 10.3979 7.83582 10.5055 7.96827 10.5055Z" fill="#404040"/>
93
+ <path d="M6.86009 6.64062C6.74159 6.64062 6.64532 6.73691 6.64532 6.85543C6.64532 6.97396 6.74159 7.07024 6.86009 7.07024C6.97859 7.07024 7.07486 6.97396 7.07486 6.85543C7.07486 6.73691 6.97859 6.64062 6.86009 6.64062Z" fill="#404040"/>
94
+ <path d="M6.86009 7.77686C6.74159 7.77686 6.64532 7.87314 6.64532 7.99166C6.64532 8.11019 6.74159 8.20647 6.86009 8.20647C6.97859 8.20647 7.07486 8.11019 7.07486 7.99166C7.07486 7.87314 6.97859 7.77686 6.86009 7.77686Z" fill="#404040"/>
95
+ <path d="M6.86009 8.34473C6.74159 8.34473 6.64532 8.44101 6.64532 8.55954C6.64532 8.67806 6.74159 8.77434 6.86009 8.77434C6.97859 8.77434 7.07486 8.67806 7.07486 8.55954C7.07486 8.44101 6.97859 8.34473 6.86009 8.34473Z" fill="#404040"/>
96
+ <path d="M6.86009 8.91406C6.74159 8.91406 6.64532 9.01034 6.64532 9.12887C6.64532 9.2474 6.74159 9.34368 6.86009 9.34368C6.97859 9.34368 7.07486 9.2474 7.07486 9.12887C7.07486 9.01034 6.97859 8.91406 6.86009 8.91406Z" fill="#404040"/>
97
+ <path d="M6.86009 7.2085C6.74159 7.2085 6.64532 7.30478 6.64532 7.42331C6.64532 7.54183 6.74159 7.63811 6.86009 7.63811C6.97859 7.63811 7.07486 7.54183 7.07486 7.42331C7.07486 7.30478 6.97859 7.2085 6.86009 7.2085Z" fill="#404040"/>
98
+ <path d="M6.30542 6.9375C6.19389 6.9375 6.10327 7.02814 6.10327 7.13969C6.10327 7.25125 6.19389 7.34189 6.30542 7.34189C6.41696 7.34189 6.50758 7.25125 6.50758 7.13969C6.50758 7.02814 6.41696 6.9375 6.30542 6.9375Z" fill="#404040"/>
99
+ <path d="M6.30542 8.07422C6.19389 8.07422 6.10327 8.16486 6.10327 8.27641C6.10327 8.38797 6.19389 8.4786 6.30542 8.4786C6.41696 8.4786 6.50758 8.38797 6.50758 8.27641C6.50758 8.16486 6.41696 8.07422 6.30542 8.07422Z" fill="#404040"/>
100
+ <path d="M6.30542 8.64209C6.19389 8.64209 6.10327 8.73273 6.10327 8.84428C6.10327 8.95584 6.19389 9.04648 6.30542 9.04648C6.41696 9.04648 6.50758 8.95584 6.50758 8.84428C6.50758 8.73273 6.41696 8.64209 6.30542 8.64209Z" fill="#404040"/>
101
+ <path d="M6.30542 7.50586C6.19389 7.50586 6.10327 7.5965 6.10327 7.70805C6.10327 7.74989 6.11588 7.78873 6.13779 7.82094C6.17397 7.87472 6.23572 7.90991 6.30542 7.90991C6.37513 7.90991 6.43654 7.87472 6.47305 7.82094C6.49496 7.78873 6.50758 7.74989 6.50758 7.70805C6.50758 7.5965 6.41696 7.50586 6.30542 7.50586Z" fill="#404040"/>
102
+ <path d="M5.78948 7.80623C5.7772 7.80357 5.76425 7.80225 5.75131 7.80225C5.73836 7.80225 5.72541 7.80357 5.71313 7.80623C5.62683 7.82383 5.56177 7.90019 5.56177 7.99182C5.56177 8.08346 5.62683 8.15982 5.71313 8.17742C5.72541 8.18007 5.73836 8.1814 5.75131 8.1814C5.76425 8.1814 5.7772 8.18007 5.78948 8.17742C5.87578 8.15982 5.94084 8.08346 5.94084 7.99182C5.94084 7.90019 5.87578 7.82383 5.78948 7.80623Z" fill="#404040"/>
103
+ <path d="M5.29623 7.84564C5.26801 7.82672 5.23382 7.81543 5.19731 7.81543C5.1608 7.81543 5.12661 7.82672 5.09839 7.84564C5.05126 7.87752 5.02039 7.9313 5.02039 7.99239C5.02039 8.0412 5.0403 8.08535 5.07217 8.11756C5.10404 8.14943 5.14851 8.16935 5.19731 8.16935C5.24611 8.16935 5.29025 8.14943 5.32245 8.11756C5.35432 8.08568 5.37424 8.0412 5.37424 7.99239C5.37424 7.9313 5.34337 7.87752 5.29623 7.84564Z" fill="#404040"/>
104
+ <path d="M4.64313 8.11133C4.55251 8.11133 4.47882 8.1847 4.47882 8.27567C4.47882 8.36664 4.55251 8.44002 4.64313 8.44002C4.73375 8.44002 4.80744 8.36631 4.80744 8.27567C4.80744 8.18503 4.73375 8.11133 4.64313 8.11133Z" fill="#404040"/>
105
+ <path d="M4.64372 7.54346C4.58695 7.54346 4.53716 7.57234 4.50762 7.61584C4.49003 7.64206 4.47974 7.6736 4.47974 7.7078C4.47974 7.79844 4.55343 7.87215 4.64405 7.87215C4.73467 7.87215 4.80836 7.79877 4.80836 7.7078C4.80836 7.67394 4.79807 7.64206 4.78048 7.61584C4.75093 7.57201 4.70114 7.54346 4.64438 7.54346H4.64372Z" fill="#404040"/>
106
+ <path d="M3.10417 7.96632C3.10251 7.95802 3.09985 7.95005 3.09686 7.94275C3.09056 7.92748 3.08126 7.91386 3.06964 7.90258C3.04674 7.87967 3.01521 7.86572 2.98035 7.86572C2.9455 7.86572 2.91396 7.88 2.89106 7.90258C2.87977 7.91386 2.87048 7.92748 2.86384 7.94275C2.86052 7.95038 2.8582 7.95835 2.85654 7.96632C2.85488 7.97462 2.85388 7.98292 2.85388 7.99189C2.85388 8.00052 2.85488 8.00915 2.85654 8.01745C2.8582 8.02575 2.86085 8.03372 2.86384 8.04102C2.88309 8.08651 2.9279 8.11805 2.98035 8.11805C3.0328 8.11805 3.07761 8.08618 3.09686 8.04102C3.10018 8.03339 3.10251 8.02542 3.10417 8.01745C3.10583 8.00915 3.10682 8.00085 3.10682 7.99189C3.10682 7.98325 3.10583 7.97462 3.10417 7.96632Z" fill="#404040"/>
107
+ <path d="M2.42636 7.87842C2.36362 7.87842 2.3125 7.92922 2.3125 7.9923C2.3125 8.05505 2.36329 8.10618 2.42636 8.10618C2.48942 8.10618 2.54021 8.05538 2.54021 7.9923C2.54021 7.92955 2.48942 7.87842 2.42636 7.87842Z" fill="#404040"/>
108
+ <path d="M3.53429 8.13721C3.45761 8.13721 3.3952 8.19929 3.3952 8.27632C3.3952 8.35334 3.45728 8.41543 3.53429 8.41543C3.6113 8.41543 3.67337 8.35334 3.67337 8.27632C3.67337 8.19929 3.6113 8.13721 3.53429 8.13721Z" fill="#404040"/>
109
+ <path d="M8.90544 7.99187C10.5339 7.99187 11.8541 6.67147 11.8541 5.04264C11.8541 3.41381 10.5336 2.09375 8.90544 2.09375H7.08905L10.1695 5.15021L7.34133 7.99187L10.1695 10.8335L7.08905 13.89H8.90544C10.5339 13.89 11.8541 12.5696 11.8541 10.9408C11.8541 9.31193 10.5339 7.99154 8.90544 7.99154V7.99187Z" fill="url(#paint0_linear_10832_20745)"/>
110
+ <path d="M11.4785 9.33081L14.1875 7.99182L11.4785 6.65283V9.33081Z" fill="url(#paint1_linear_10832_20745)"/>
111
+ <path d="M6.86009 2.09375C6.74159 2.09375 6.64532 2.19003 6.64532 2.30856C6.64532 2.42709 6.74159 2.52337 6.86009 2.52337C6.97859 2.52337 7.07486 2.42709 7.07486 2.30856C7.07486 2.19003 6.97859 2.09375 6.86009 2.09375Z" fill="url(#paint2_linear_10832_20745)"/>
112
+ <path d="M6.30542 2.10645C6.19389 2.10645 6.10327 2.19708 6.10327 2.30864C6.10327 2.42019 6.19389 2.51083 6.30542 2.51083C6.41696 2.51083 6.50758 2.42019 6.50758 2.30864C6.50758 2.19708 6.41696 2.10645 6.30542 2.10645Z" fill="url(#paint3_linear_10832_20745)"/>
113
+ <path d="M5.75131 2.11914C5.64674 2.11914 5.56177 2.20413 5.56177 2.30872C5.56177 2.4133 5.64674 2.49829 5.75131 2.49829C5.85587 2.49829 5.94084 2.4133 5.94084 2.30872C5.94084 2.20413 5.85587 2.11914 5.75131 2.11914Z" fill="url(#paint4_linear_10832_20745)"/>
114
+ <path d="M5.19731 2.13135C5.09972 2.13135 5.02039 2.2107 5.02039 2.30831C5.02039 2.40592 5.09972 2.48527 5.19731 2.48527C5.2949 2.48527 5.37424 2.40592 5.37424 2.30831C5.37424 2.2107 5.2949 2.13135 5.19731 2.13135Z" fill="url(#paint5_linear_10832_20745)"/>
115
+ <path d="M4.64313 2.14453C4.55251 2.14453 4.47882 2.2179 4.47882 2.30888C4.47882 2.39985 4.55251 2.47322 4.64313 2.47322C4.73375 2.47322 4.80744 2.39951 4.80744 2.30888C4.80744 2.21824 4.73375 2.14453 4.64313 2.14453Z" fill="url(#paint6_linear_10832_20745)"/>
116
+ <path d="M4.08914 2.15674C4.00549 2.15674 3.93744 2.22447 3.93744 2.30847C3.93744 2.39246 4.00516 2.46019 4.08914 2.46019C4.17312 2.46019 4.24083 2.39246 4.24083 2.30847C4.24083 2.22447 4.17312 2.15674 4.08914 2.15674Z" fill="url(#paint7_linear_10832_20745)"/>
117
+ <path d="M3.53429 2.16992C3.45761 2.16992 3.3952 2.23201 3.3952 2.30903C3.3952 2.38606 3.45728 2.44814 3.53429 2.44814C3.6113 2.44814 3.67337 2.38606 3.67337 2.30903C3.67337 2.23201 3.6113 2.16992 3.53429 2.16992Z" fill="url(#paint8_linear_10832_20745)"/>
118
+ <path d="M2.98035 2.18213C2.91064 2.18213 2.85388 2.23857 2.85388 2.30862C2.85388 2.37868 2.91031 2.43512 2.98035 2.43512C3.05039 2.43512 3.10682 2.37868 3.10682 2.30862C3.10682 2.23857 3.05039 2.18213 2.98035 2.18213Z" fill="url(#paint9_linear_10832_20745)"/>
119
+ <path d="M2.42636 2.42209C2.48924 2.42209 2.54021 2.37111 2.54021 2.30821C2.54021 2.24532 2.48924 2.19434 2.42636 2.19434C2.36347 2.19434 2.3125 2.24532 2.3125 2.30821C2.3125 2.37111 2.36347 2.42209 2.42636 2.42209Z" fill="url(#paint10_linear_10832_20745)"/>
120
+ <path d="M7.41427 3.10426C7.53974 3.10426 7.64165 3.00234 7.64165 2.87684C7.64165 2.75134 7.53974 2.64941 7.41427 2.64941C7.2888 2.64941 7.18689 2.75134 7.18689 2.87684C7.18689 3.00234 7.2888 3.10426 7.41427 3.10426Z" fill="url(#paint11_linear_10832_20745)"/>
121
+ <path d="M6.86009 2.66211C6.74159 2.66211 6.64532 2.75839 6.64532 2.87692C6.64532 2.99545 6.74159 3.09173 6.86009 3.09173C6.97859 3.09173 7.07486 2.99545 7.07486 2.87692C7.07486 2.75839 6.97859 2.66211 6.86009 2.66211Z" fill="url(#paint12_linear_10832_20745)"/>
122
+ <path d="M6.30542 2.6748C6.19389 2.6748 6.10327 2.76544 6.10327 2.877C6.10327 2.98855 6.19389 3.07919 6.30542 3.07919C6.41696 3.07919 6.50758 2.98855 6.50758 2.877C6.50758 2.76544 6.41696 2.6748 6.30542 2.6748Z" fill="url(#paint13_linear_10832_20745)"/>
123
+ <path d="M5.75131 2.6875C5.64674 2.6875 5.56177 2.77249 5.56177 2.87708C5.56177 2.98166 5.64674 3.06665 5.75131 3.06665C5.85587 3.06665 5.94084 2.98166 5.94084 2.87708C5.94084 2.77249 5.85587 2.6875 5.75131 2.6875Z" fill="url(#paint14_linear_10832_20745)"/>
124
+ <path d="M5.19731 2.7002C5.09972 2.7002 5.02039 2.77955 5.02039 2.87716C5.02039 2.97477 5.09972 3.05412 5.19731 3.05412C5.2949 3.05412 5.37424 2.97477 5.37424 2.87716C5.37424 2.77955 5.2949 2.7002 5.19731 2.7002Z" fill="url(#paint15_linear_10832_20745)"/>
125
+ <path d="M4.64313 2.7124C4.55251 2.7124 4.47882 2.78611 4.47882 2.87675C4.47882 2.96738 4.55251 3.04109 4.64313 3.04109C4.73375 3.04109 4.80744 2.96738 4.80744 2.87675C4.80744 2.78611 4.73375 2.7124 4.64313 2.7124Z" fill="url(#paint16_linear_10832_20745)"/>
126
+ <path d="M4.08914 3.02806C4.17292 3.02806 4.24083 2.96013 4.24083 2.87634C4.24083 2.79254 4.17292 2.72461 4.08914 2.72461C4.00536 2.72461 3.93744 2.79254 3.93744 2.87634C3.93744 2.96013 4.00536 3.02806 4.08914 3.02806Z" fill="url(#paint17_linear_10832_20745)"/>
127
+ <path d="M3.53429 3.01602C3.6111 3.01602 3.67337 2.95373 3.67337 2.8769C3.67337 2.80008 3.6111 2.73779 3.53429 2.73779C3.45747 2.73779 3.3952 2.80008 3.3952 2.8769C3.3952 2.95373 3.45747 3.01602 3.53429 3.01602Z" fill="url(#paint18_linear_10832_20745)"/>
128
+ <path d="M7.96827 3.68565C8.10071 3.68565 8.20826 3.57808 8.20826 3.44561C8.20826 3.31314 8.10071 3.20557 7.96827 3.20557C7.83582 3.20557 7.72827 3.31314 7.72827 3.44561C7.72827 3.57808 7.83582 3.68565 7.96827 3.68565Z" fill="url(#paint19_linear_10832_20745)"/>
129
+ <path d="M7.41427 3.67262C7.53974 3.67262 7.64165 3.5707 7.64165 3.4452C7.64165 3.3197 7.53974 3.21777 7.41427 3.21777C7.2888 3.21777 7.18689 3.3197 7.18689 3.4452C7.18689 3.5707 7.2888 3.67262 7.41427 3.67262Z" fill="url(#paint20_linear_10832_20745)"/>
130
+ <path d="M6.86009 3.23096C6.74159 3.23096 6.64532 3.32724 6.64532 3.44577C6.64532 3.56429 6.74159 3.66058 6.86009 3.66058C6.97859 3.66058 7.07486 3.56429 7.07486 3.44577C7.07486 3.32724 6.97859 3.23096 6.86009 3.23096Z" fill="url(#paint21_linear_10832_20745)"/>
131
+ <path d="M6.30542 3.64755C6.41707 3.64755 6.50758 3.55702 6.50758 3.44536C6.50758 3.33369 6.41707 3.24316 6.30542 3.24316C6.19378 3.24316 6.10327 3.33369 6.10327 3.44536C6.10327 3.55702 6.19378 3.64755 6.30542 3.64755Z" fill="url(#paint22_linear_10832_20745)"/>
132
+ <path d="M5.75131 3.25537C5.64674 3.25537 5.56177 3.34037 5.56177 3.44495C5.56177 3.54953 5.64674 3.63452 5.75131 3.63452C5.85587 3.63452 5.94084 3.54953 5.94084 3.44495C5.94084 3.34037 5.85587 3.25537 5.75131 3.25537Z" fill="url(#paint23_linear_10832_20745)"/>
133
+ <path d="M5.19731 3.62248C5.29502 3.62248 5.37424 3.54325 5.37424 3.44551C5.37424 3.34778 5.29502 3.26855 5.19731 3.26855C5.0996 3.26855 5.02039 3.34778 5.02039 3.44551C5.02039 3.54325 5.0996 3.62248 5.19731 3.62248Z" fill="url(#paint24_linear_10832_20745)"/>
134
+ <path d="M4.64313 3.28125C4.55251 3.28125 4.47882 3.35496 4.47882 3.44559C4.47882 3.53623 4.55251 3.60994 4.64313 3.60994C4.73375 3.60994 4.80744 3.53623 4.80744 3.44559C4.80744 3.35496 4.73375 3.28125 4.64313 3.28125Z" fill="url(#paint25_linear_10832_20745)"/>
135
+ <path d="M8.52244 4.26655C8.66186 4.26655 8.77505 4.15333 8.77505 4.01389C8.77505 3.87445 8.66186 3.76123 8.52244 3.76123C8.38303 3.76123 8.26984 3.87445 8.26984 4.01389C8.26984 4.15333 8.38303 4.26655 8.52244 4.26655Z" fill="url(#paint26_linear_10832_20745)"/>
136
+ <path d="M7.96827 4.25303C8.10071 4.25303 8.20826 4.14546 8.20826 4.01299C8.20826 3.88052 8.10071 3.77295 7.96827 3.77295C7.83582 3.77295 7.72827 3.88052 7.72827 4.01299C7.72827 4.14546 7.83582 4.25303 7.96827 4.25303Z" fill="url(#paint27_linear_10832_20745)"/>
137
+ <path d="M9.07638 4.84695C9.22277 4.84695 9.3416 4.7281 9.3416 4.58168C9.3416 4.43527 9.22277 4.31641 9.07638 4.31641C8.92999 4.31641 8.81116 4.43527 8.81116 4.58168C8.81116 4.7281 8.92999 4.84695 9.07638 4.84695Z" fill="url(#paint28_linear_10832_20745)"/>
138
+ <path d="M8.52244 4.83442C8.66186 4.83442 8.77505 4.7212 8.77505 4.58176C8.77505 4.44232 8.66186 4.3291 8.52244 4.3291C8.38303 4.3291 8.26984 4.44232 8.26984 4.58176C8.26984 4.7212 8.38303 4.83442 8.52244 4.83442Z" fill="url(#paint29_linear_10832_20745)"/>
139
+ <path d="M9.90913 5.15045C9.90913 4.99706 9.78465 4.87256 9.63129 4.87256C9.47793 4.87256 9.35345 4.99706 9.35345 5.15045C9.35345 5.30384 9.47793 5.42834 9.63129 5.42834C9.78465 5.42834 9.90913 5.30384 9.90913 5.15045Z" fill="url(#paint30_linear_10832_20745)"/>
140
+ <path d="M9.07638 5.41531C9.22286 5.41531 9.3416 5.29655 9.3416 5.15004C9.3416 5.00353 9.22286 4.88477 9.07638 4.88477C8.9299 4.88477 8.81116 5.00353 8.81116 5.15004C8.81116 5.29655 8.9299 5.41531 9.07638 5.41531Z" fill="url(#paint31_linear_10832_20745)"/>
141
+ <path d="M8.52244 5.40229C8.66186 5.40229 8.77505 5.28907 8.77505 5.14963C8.77505 5.01019 8.66186 4.89697 8.52244 4.89697C8.38303 4.89697 8.26984 5.01019 8.26984 5.14963C8.26984 5.28907 8.38303 5.40229 8.52244 5.40229Z" fill="url(#paint32_linear_10832_20745)"/>
142
+ <path d="M7.41427 7.65114C7.53974 7.65114 7.64165 7.54921 7.64165 7.42371C7.64165 7.29822 7.53974 7.19629 7.41427 7.19629C7.2888 7.19629 7.18689 7.29822 7.18689 7.42371C7.18689 7.54921 7.2888 7.65114 7.41427 7.65114Z" fill="url(#paint33_linear_10832_20745)"/>
143
+ <path d="M5.75131 7.23389C5.64674 7.23389 5.56177 7.31888 5.56177 7.42346C5.56177 7.52805 5.64674 7.61304 5.75131 7.61304C5.85587 7.61304 5.94084 7.52805 5.94084 7.42346C5.94084 7.31888 5.85587 7.23389 5.75131 7.23389Z" fill="url(#paint34_linear_10832_20745)"/>
144
+ <path d="M5.19731 7.24707C5.09972 7.24707 5.02039 7.32642 5.02039 7.42403C5.02039 7.52164 5.09972 7.60099 5.19731 7.60099C5.2949 7.60099 5.37424 7.52164 5.37424 7.42403C5.37424 7.32642 5.2949 7.24707 5.19731 7.24707Z" fill="url(#paint35_linear_10832_20745)"/>
145
+ <path d="M4.08914 7.85912C4.17292 7.85912 4.24083 7.79119 4.24083 7.70739C4.24083 7.62359 4.17292 7.55566 4.08914 7.55566C4.00536 7.55566 3.93744 7.62359 3.93744 7.70739C3.93744 7.79119 4.00536 7.85912 4.08914 7.85912Z" fill="url(#paint36_linear_10832_20745)"/>
146
+ <path d="M3.53429 7.84707C3.6111 7.84707 3.67337 7.78479 3.67337 7.70796C3.67337 7.63113 3.6111 7.56885 3.53429 7.56885C3.45747 7.56885 3.3952 7.63113 3.3952 7.70796C3.3952 7.78479 3.45747 7.84707 3.53429 7.84707Z" fill="url(#paint37_linear_10832_20745)"/>
147
+ <path d="M7.96827 7.09483C8.10071 7.09483 8.20826 6.98726 8.20826 6.85479C8.20826 6.72232 8.10071 6.61475 7.96827 6.61475C7.83582 6.61475 7.72827 6.72232 7.72827 6.85479C7.72827 6.98726 7.83582 7.09483 7.96827 7.09483Z" fill="url(#paint38_linear_10832_20745)"/>
148
+ <path d="M7.41427 7.08278C7.53974 7.08278 7.64165 6.98085 7.64165 6.85535C7.64165 6.72986 7.53974 6.62793 7.41427 6.62793C7.2888 6.62793 7.18689 6.72986 7.18689 6.85535C7.18689 6.98085 7.2888 7.08278 7.41427 7.08278Z" fill="url(#paint39_linear_10832_20745)"/>
149
+ <path d="M8.52244 6.5395C8.66186 6.5395 8.77505 6.42628 8.77505 6.28684C8.77505 6.14739 8.66186 6.03418 8.52244 6.03418C8.38303 6.03418 8.26984 6.14739 8.26984 6.28684C8.26984 6.42628 8.38303 6.5395 8.52244 6.5395Z" fill="url(#paint40_linear_10832_20745)"/>
150
+ <path d="M7.96827 6.52696C8.10071 6.52696 8.20826 6.41939 8.20826 6.28692C8.20826 6.15445 8.10071 6.04688 7.96827 6.04688C7.83582 6.04688 7.72827 6.15445 7.72827 6.28692C7.72827 6.41939 7.83582 6.52696 7.96827 6.52696Z" fill="url(#paint41_linear_10832_20745)"/>
151
+ <path d="M7.41427 6.51442C7.53974 6.51442 7.64165 6.41249 7.64165 6.287C7.64165 6.1615 7.53974 6.05957 7.41427 6.05957C7.2888 6.05957 7.18689 6.1615 7.18689 6.287C7.18689 6.41249 7.2888 6.51442 7.41427 6.51442Z" fill="url(#paint42_linear_10832_20745)"/>
152
+ <path d="M9.07638 5.98367C9.22277 5.98367 9.3416 5.86481 9.3416 5.7184C9.3416 5.57198 9.22277 5.45312 9.07638 5.45312C8.92999 5.45312 8.81116 5.57198 8.81116 5.7184C8.81116 5.86481 8.92999 5.98367 9.07638 5.98367Z" fill="url(#paint43_linear_10832_20745)"/>
153
+ <path d="M8.52244 5.97114C8.66186 5.97114 8.77505 5.85792 8.77505 5.71848C8.77505 5.57904 8.66186 5.46582 8.52244 5.46582C8.38303 5.46582 8.26984 5.57904 8.26984 5.71848C8.26984 5.85792 8.38303 5.97114 8.52244 5.97114Z" fill="url(#paint44_linear_10832_20745)"/>
154
+ <path d="M7.96827 5.9586C8.10071 5.9586 8.20826 5.85103 8.20826 5.71856C8.20826 5.58609 8.10071 5.47852 7.96827 5.47852C7.83582 5.47852 7.72827 5.58609 7.72827 5.71856C7.72827 5.85103 7.83582 5.9586 7.96827 5.9586Z" fill="url(#paint45_linear_10832_20745)"/>
155
+ <path d="M6.86009 13.4604C6.74159 13.4604 6.64532 13.5567 6.64532 13.6753C6.64532 13.7938 6.74159 13.8901 6.86009 13.8901C6.97859 13.8901 7.07486 13.7938 7.07486 13.6753C7.07486 13.5567 6.97859 13.4604 6.86009 13.4604Z" fill="url(#paint46_linear_10832_20745)"/>
156
+ <path d="M6.30542 13.8775C6.41707 13.8775 6.50758 13.787 6.50758 13.6753C6.50758 13.5637 6.41707 13.4731 6.30542 13.4731C6.19378 13.4731 6.10327 13.5637 6.10327 13.6753C6.10327 13.787 6.19378 13.8775 6.30542 13.8775Z" fill="url(#paint47_linear_10832_20745)"/>
157
+ <path d="M5.75131 13.4863C5.64674 13.4863 5.56177 13.5713 5.56177 13.6759C5.56177 13.7805 5.64674 13.8655 5.75131 13.8655C5.85587 13.8655 5.94084 13.7805 5.94084 13.6759C5.94084 13.5713 5.85587 13.4863 5.75131 13.4863Z" fill="url(#paint48_linear_10832_20745)"/>
158
+ <path d="M5.19731 13.8525C5.29502 13.8525 5.37424 13.7732 5.37424 13.6755C5.37424 13.5778 5.29502 13.4985 5.19731 13.4985C5.0996 13.4985 5.02039 13.5778 5.02039 13.6755C5.02039 13.7732 5.0996 13.8525 5.19731 13.8525Z" fill="url(#paint49_linear_10832_20745)"/>
159
+ <path d="M4.64313 13.5107C4.55251 13.5107 4.47882 13.5844 4.47882 13.6751C4.47882 13.7657 4.55251 13.8394 4.64313 13.8394C4.73375 13.8394 4.80744 13.7661 4.80744 13.6751C4.80744 13.5841 4.73375 13.5107 4.64313 13.5107Z" fill="url(#paint50_linear_10832_20745)"/>
160
+ <path d="M4.08914 13.8269C4.17292 13.8269 4.24083 13.759 4.24083 13.6752C4.24083 13.5914 4.17292 13.5234 4.08914 13.5234C4.00536 13.5234 3.93744 13.5914 3.93744 13.6752C3.93744 13.759 4.00536 13.8269 4.08914 13.8269Z" fill="url(#paint51_linear_10832_20745)"/>
161
+ <path d="M3.53429 13.8144C3.6111 13.8144 3.67337 13.7521 3.67337 13.6752C3.67337 13.5984 3.6111 13.5361 3.53429 13.5361C3.45747 13.5361 3.3952 13.5984 3.3952 13.6752C3.3952 13.7521 3.45747 13.8144 3.53429 13.8144Z" fill="url(#paint52_linear_10832_20745)"/>
162
+ <path d="M2.98035 13.8018C3.0502 13.8018 3.10682 13.7452 3.10682 13.6753C3.10682 13.6055 3.0502 13.5488 2.98035 13.5488C2.9105 13.5488 2.85388 13.6055 2.85388 13.6753C2.85388 13.7452 2.9105 13.8018 2.98035 13.8018Z" fill="url(#paint53_linear_10832_20745)"/>
163
+ <path d="M2.42636 13.7893C2.48924 13.7893 2.54021 13.7383 2.54021 13.6754C2.54021 13.6125 2.48924 13.5615 2.42636 13.5615C2.36347 13.5615 2.3125 13.6125 2.3125 13.6754C2.3125 13.7383 2.36347 13.7893 2.42636 13.7893Z" fill="url(#paint54_linear_10832_20745)"/>
164
+ <path d="M7.41427 13.3342C7.53974 13.3342 7.64165 13.2323 7.64165 13.1068C7.64165 12.9813 7.53974 12.8794 7.41427 12.8794C7.2888 12.8794 7.18689 12.9813 7.18689 13.1068C7.18689 13.2323 7.2888 13.3342 7.41427 13.3342Z" fill="url(#paint55_linear_10832_20745)"/>
165
+ <path d="M6.86009 12.8926C6.74159 12.8926 6.64532 12.9889 6.64532 13.1074C6.64532 13.2259 6.74159 13.3222 6.86009 13.3222C6.97859 13.3222 7.07486 13.2259 7.07486 13.1074C7.07486 12.9889 6.97859 12.8926 6.86009 12.8926Z" fill="url(#paint56_linear_10832_20745)"/>
166
+ <path d="M6.30542 13.3092C6.41707 13.3092 6.50758 13.2186 6.50758 13.107C6.50758 12.9953 6.41707 12.9048 6.30542 12.9048C6.19378 12.9048 6.10327 12.9953 6.10327 13.107C6.10327 13.2186 6.19378 13.3092 6.30542 13.3092Z" fill="url(#paint57_linear_10832_20745)"/>
167
+ <path d="M5.75131 12.917C5.64674 12.917 5.56177 13.002 5.56177 13.1066C5.56177 13.2112 5.64674 13.2961 5.75131 13.2961C5.85587 13.2961 5.94084 13.2112 5.94084 13.1066C5.94084 13.002 5.85587 12.917 5.75131 12.917Z" fill="url(#paint58_linear_10832_20745)"/>
168
+ <path d="M5.19731 12.9297C5.09972 12.9297 5.02039 13.009 5.02039 13.1066C5.02039 13.2043 5.09972 13.2836 5.19731 13.2836C5.2949 13.2836 5.37424 13.2043 5.37424 13.1066C5.37424 13.009 5.2949 12.9297 5.19731 12.9297Z" fill="url(#paint59_linear_10832_20745)"/>
169
+ <path d="M4.64313 12.9424C4.55251 12.9424 4.47882 13.0161 4.47882 13.1067C4.47882 13.1974 4.55251 13.2711 4.64313 13.2711C4.73375 13.2711 4.80744 13.1977 4.80744 13.1067C4.80744 13.0158 4.73375 12.9424 4.64313 12.9424Z" fill="url(#paint60_linear_10832_20745)"/>
170
+ <path d="M4.08914 12.9556C4.00549 12.9556 3.93744 13.0233 3.93744 13.1073C3.93744 13.1913 4.00516 13.259 4.08914 13.259C4.17312 13.259 4.24083 13.1913 4.24083 13.1073C4.24083 13.0233 4.17312 12.9556 4.08914 12.9556Z" fill="url(#paint61_linear_10832_20745)"/>
171
+ <path d="M3.53429 13.246C3.6111 13.246 3.67337 13.1837 3.67337 13.1069C3.67337 13.0301 3.6111 12.9678 3.53429 12.9678C3.45747 12.9678 3.3952 13.0301 3.3952 13.1069C3.3952 13.1837 3.45747 13.246 3.53429 13.246Z" fill="url(#paint62_linear_10832_20745)"/>
172
+ <path d="M7.96827 12.7789C8.10071 12.7789 8.20826 12.6713 8.20826 12.5389C8.20826 12.4064 8.10071 12.2988 7.96827 12.2988C7.83582 12.2988 7.72827 12.4064 7.72827 12.5389C7.72827 12.6713 7.83582 12.7789 7.96827 12.7789Z" fill="url(#paint63_linear_10832_20745)"/>
173
+ <path d="M7.41427 12.7659C7.53974 12.7659 7.64165 12.664 7.64165 12.5385C7.64165 12.413 7.53974 12.311 7.41427 12.311C7.2888 12.311 7.18689 12.413 7.18689 12.5385C7.18689 12.664 7.2888 12.7659 7.41427 12.7659Z" fill="url(#paint64_linear_10832_20745)"/>
174
+ <path d="M6.86009 12.3232C6.74159 12.3232 6.64532 12.4195 6.64532 12.5381C6.64532 12.6566 6.74159 12.7529 6.86009 12.7529C6.97859 12.7529 7.07486 12.6566 7.07486 12.5381C7.07486 12.4195 6.97859 12.3232 6.86009 12.3232Z" fill="url(#paint65_linear_10832_20745)"/>
175
+ <path d="M6.30542 12.3364C6.19389 12.3364 6.10327 12.4271 6.10327 12.5386C6.10327 12.6502 6.19389 12.7408 6.30542 12.7408C6.41696 12.7408 6.50758 12.6502 6.50758 12.5386C6.50758 12.4271 6.41696 12.3364 6.30542 12.3364Z" fill="url(#paint66_linear_10832_20745)"/>
176
+ <path d="M5.75131 12.3491C5.64674 12.3491 5.56177 12.4341 5.56177 12.5387C5.56177 12.6433 5.64674 12.7283 5.75131 12.7283C5.85587 12.7283 5.94084 12.6433 5.94084 12.5387C5.94084 12.4341 5.85587 12.3491 5.75131 12.3491Z" fill="url(#paint67_linear_10832_20745)"/>
177
+ <path d="M5.19731 12.7157C5.29502 12.7157 5.37424 12.6365 5.37424 12.5388C5.37424 12.441 5.29502 12.3618 5.19731 12.3618C5.0996 12.3618 5.02039 12.441 5.02039 12.5388C5.02039 12.6365 5.0996 12.7157 5.19731 12.7157Z" fill="url(#paint68_linear_10832_20745)"/>
178
+ <path d="M4.64313 12.374C4.55251 12.374 4.47882 12.4474 4.47882 12.5384C4.47882 12.6293 4.55251 12.7027 4.64313 12.7027C4.73375 12.7027 4.80744 12.629 4.80744 12.5384C4.80744 12.4477 4.73375 12.374 4.64313 12.374Z" fill="url(#paint69_linear_10832_20745)"/>
179
+ <path d="M8.52244 12.2231C8.66186 12.2231 8.77505 12.1099 8.77505 11.9704C8.77505 11.831 8.66186 11.7178 8.52244 11.7178C8.38303 11.7178 8.26984 11.831 8.26984 11.9704C8.26984 12.1099 8.38303 12.2231 8.52244 12.2231Z" fill="url(#paint70_linear_10832_20745)"/>
180
+ <path d="M7.96827 12.2101C8.10071 12.2101 8.20826 12.1025 8.20826 11.97C8.20826 11.8376 8.10071 11.73 7.96827 11.73C7.83582 11.73 7.72827 11.8376 7.72827 11.97C7.72827 12.1025 7.83582 12.2101 7.96827 12.2101Z" fill="url(#paint71_linear_10832_20745)"/>
181
+ <path d="M9.07638 11.6668C9.22286 11.6668 9.3416 11.548 9.3416 11.4015C9.3416 11.255 9.22286 11.1362 9.07638 11.1362C8.9299 11.1362 8.81116 11.255 8.81116 11.4015C8.81116 11.548 8.9299 11.6668 9.07638 11.6668Z" fill="url(#paint72_linear_10832_20745)"/>
182
+ <path d="M8.52244 11.6542C8.66186 11.6542 8.77505 11.541 8.77505 11.4016C8.77505 11.2621 8.66186 11.1489 8.52244 11.1489C8.38303 11.1489 8.26984 11.2621 8.26984 11.4016C8.26984 11.541 8.38303 11.6542 8.52244 11.6542Z" fill="url(#paint73_linear_10832_20745)"/>
183
+ <path d="M9.90913 10.8336C9.90913 10.6802 9.78465 10.5557 9.63129 10.5557C9.47793 10.5557 9.35345 10.6802 9.35345 10.8336C9.35345 10.9869 9.47793 11.1114 9.63129 11.1114C9.78465 11.1114 9.90913 10.9869 9.90913 10.8336Z" fill="url(#paint74_linear_10832_20745)"/>
184
+ <path d="M9.07638 11.0994C9.22277 11.0994 9.3416 10.9805 9.3416 10.8341C9.3416 10.6877 9.22277 10.5688 9.07638 10.5688C8.92999 10.5688 8.81116 10.6877 8.81116 10.8341C8.81116 10.9805 8.92999 11.0994 9.07638 11.0994Z" fill="url(#paint75_linear_10832_20745)"/>
185
+ <path d="M8.52244 11.0864C8.66186 11.0864 8.77505 10.9732 8.77505 10.8337C8.77505 10.6943 8.66186 10.5811 8.52244 10.5811C8.38303 10.5811 8.26984 10.6943 8.26984 10.8337C8.26984 10.9732 8.38303 11.0864 8.52244 11.0864Z" fill="url(#paint76_linear_10832_20745)"/>
186
+ <path d="M7.41427 8.78786C7.53974 8.78786 7.64165 8.68593 7.64165 8.56043C7.64165 8.43493 7.53974 8.33301 7.41427 8.33301C7.2888 8.33301 7.18689 8.43493 7.18689 8.56043C7.18689 8.68593 7.2888 8.78786 7.41427 8.78786Z" fill="url(#paint77_linear_10832_20745)"/>
187
+ <path d="M5.75131 8.37061C5.64674 8.37061 5.56177 8.4556 5.56177 8.56018C5.56177 8.66476 5.64674 8.74976 5.75131 8.74976C5.85587 8.74976 5.94084 8.66476 5.94084 8.56018C5.94084 8.4556 5.85587 8.37061 5.75131 8.37061Z" fill="url(#paint78_linear_10832_20745)"/>
188
+ <path d="M5.19731 8.73722C5.29502 8.73722 5.37424 8.65799 5.37424 8.56026C5.37424 8.46253 5.29502 8.3833 5.19731 8.3833C5.0996 8.3833 5.02039 8.46253 5.02039 8.56026C5.02039 8.65799 5.0996 8.73722 5.19731 8.73722Z" fill="url(#paint79_linear_10832_20745)"/>
189
+ <path d="M4.08914 8.12451C4.00549 8.12451 3.93744 8.19224 3.93744 8.27624C3.93744 8.36024 4.00516 8.42797 4.08914 8.42797C4.17312 8.42797 4.24083 8.36024 4.24083 8.27624C4.24083 8.19224 4.17312 8.12451 4.08914 8.12451Z" fill="url(#paint80_linear_10832_20745)"/>
190
+ <path d="M7.96827 9.36876C8.10071 9.36876 8.20826 9.26118 8.20826 9.12871C8.20826 8.99624 8.10071 8.88867 7.96827 8.88867C7.83582 8.88867 7.72827 8.99624 7.72827 9.12871C7.72827 9.26118 7.83582 9.36876 7.96827 9.36876Z" fill="url(#paint81_linear_10832_20745)"/>
191
+ <path d="M7.41427 9.35622C7.53974 9.35622 7.64165 9.25429 7.64165 9.12879C7.64165 9.00329 7.53974 8.90137 7.41427 8.90137C7.2888 8.90137 7.18689 9.00329 7.18689 9.12879C7.18689 9.25429 7.2888 9.35622 7.41427 9.35622Z" fill="url(#paint82_linear_10832_20745)"/>
192
+ <path d="M8.52244 9.94965C8.66186 9.94965 8.77505 9.83644 8.77505 9.69699C8.77505 9.55755 8.66186 9.44434 8.52244 9.44434C8.38303 9.44434 8.26984 9.55755 8.26984 9.69699C8.26984 9.83644 8.38303 9.94965 8.52244 9.94965Z" fill="url(#paint83_linear_10832_20745)"/>
193
+ <path d="M7.96827 9.93711C8.10071 9.93711 8.20826 9.82954 8.20826 9.69707C8.20826 9.5646 8.10071 9.45703 7.96827 9.45703C7.83582 9.45703 7.72827 9.5646 7.72827 9.69707C7.72827 9.82954 7.83582 9.93711 7.96827 9.93711Z" fill="url(#paint84_linear_10832_20745)"/>
194
+ <path d="M7.41427 9.92409C7.53974 9.92409 7.64165 9.82216 7.64165 9.69666C7.64165 9.57116 7.53974 9.46924 7.41427 9.46924C7.2888 9.46924 7.18689 9.57116 7.18689 9.69666C7.18689 9.82216 7.2888 9.92409 7.41427 9.92409Z" fill="url(#paint85_linear_10832_20745)"/>
195
+ <path d="M9.07638 10.5305C9.22286 10.5305 9.3416 10.4118 9.3416 10.2653C9.3416 10.1188 9.22286 10 9.07638 10C8.9299 10 8.81116 10.1188 8.81116 10.2653C8.81116 10.4118 8.9299 10.5305 9.07638 10.5305Z" fill="url(#paint86_linear_10832_20745)"/>
196
+ <path d="M8.52244 10.518C8.66186 10.518 8.77505 10.4048 8.77505 10.2654C8.77505 10.1259 8.66186 10.0127 8.52244 10.0127C8.38303 10.0127 8.26984 10.1259 8.26984 10.2654C8.26984 10.4048 8.38303 10.518 8.52244 10.518Z" fill="url(#paint87_linear_10832_20745)"/>
197
+ <path d="M7.96827 10.5055C8.10071 10.5055 8.20826 10.3979 8.20826 10.2654C8.20826 10.133 8.10071 10.0254 7.96827 10.0254C7.83582 10.0254 7.72827 10.133 7.72827 10.2654C7.72827 10.3979 7.83582 10.5055 7.96827 10.5055Z" fill="url(#paint88_linear_10832_20745)"/>
198
+ <path d="M6.86009 6.64062C6.74159 6.64062 6.64532 6.73691 6.64532 6.85543C6.64532 6.97396 6.74159 7.07024 6.86009 7.07024C6.97859 7.07024 7.07486 6.97396 7.07486 6.85543C7.07486 6.73691 6.97859 6.64062 6.86009 6.64062Z" fill="url(#paint89_linear_10832_20745)"/>
199
+ <path d="M6.86009 7.77686C6.74159 7.77686 6.64532 7.87314 6.64532 7.99166C6.64532 8.11019 6.74159 8.20647 6.86009 8.20647C6.97859 8.20647 7.07486 8.11019 7.07486 7.99166C7.07486 7.87314 6.97859 7.77686 6.86009 7.77686Z" fill="url(#paint90_linear_10832_20745)"/>
200
+ <path d="M6.86009 8.34473C6.74159 8.34473 6.64532 8.44101 6.64532 8.55954C6.64532 8.67806 6.74159 8.77434 6.86009 8.77434C6.97859 8.77434 7.07486 8.67806 7.07486 8.55954C7.07486 8.44101 6.97859 8.34473 6.86009 8.34473Z" fill="url(#paint91_linear_10832_20745)"/>
201
+ <path d="M6.86009 8.91406C6.74159 8.91406 6.64532 9.01034 6.64532 9.12887C6.64532 9.2474 6.74159 9.34368 6.86009 9.34368C6.97859 9.34368 7.07486 9.2474 7.07486 9.12887C7.07486 9.01034 6.97859 8.91406 6.86009 8.91406Z" fill="url(#paint92_linear_10832_20745)"/>
202
+ <path d="M6.86009 7.2085C6.74159 7.2085 6.64532 7.30478 6.64532 7.42331C6.64532 7.54183 6.74159 7.63811 6.86009 7.63811C6.97859 7.63811 7.07486 7.54183 7.07486 7.42331C7.07486 7.30478 6.97859 7.2085 6.86009 7.2085Z" fill="url(#paint93_linear_10832_20745)"/>
203
+ <path d="M6.30542 6.9375C6.19389 6.9375 6.10327 7.02814 6.10327 7.13969C6.10327 7.25125 6.19389 7.34189 6.30542 7.34189C6.41696 7.34189 6.50758 7.25125 6.50758 7.13969C6.50758 7.02814 6.41696 6.9375 6.30542 6.9375Z" fill="url(#paint94_linear_10832_20745)"/>
204
+ <path d="M6.30542 8.07422C6.19389 8.07422 6.10327 8.16486 6.10327 8.27641C6.10327 8.38797 6.19389 8.4786 6.30542 8.4786C6.41696 8.4786 6.50758 8.38797 6.50758 8.27641C6.50758 8.16486 6.41696 8.07422 6.30542 8.07422Z" fill="url(#paint95_linear_10832_20745)"/>
205
+ <path d="M6.30542 8.64209C6.19389 8.64209 6.10327 8.73273 6.10327 8.84428C6.10327 8.95584 6.19389 9.04648 6.30542 9.04648C6.41696 9.04648 6.50758 8.95584 6.50758 8.84428C6.50758 8.73273 6.41696 8.64209 6.30542 8.64209Z" fill="url(#paint96_linear_10832_20745)"/>
206
+ <path d="M6.30542 7.50586C6.19389 7.50586 6.10327 7.5965 6.10327 7.70805C6.10327 7.74989 6.11588 7.78873 6.13779 7.82094C6.17397 7.87472 6.23572 7.90991 6.30542 7.90991C6.37513 7.90991 6.43654 7.87472 6.47305 7.82094C6.49496 7.78873 6.50758 7.74989 6.50758 7.70805C6.50758 7.5965 6.41696 7.50586 6.30542 7.50586Z" fill="url(#paint97_linear_10832_20745)"/>
207
+ <path d="M5.78948 7.80623C5.7772 7.80357 5.76425 7.80225 5.75131 7.80225C5.73836 7.80225 5.72541 7.80357 5.71313 7.80623C5.62683 7.82383 5.56177 7.90019 5.56177 7.99182C5.56177 8.08346 5.62683 8.15982 5.71313 8.17742C5.72541 8.18007 5.73836 8.1814 5.75131 8.1814C5.76425 8.1814 5.7772 8.18007 5.78948 8.17742C5.87578 8.15982 5.94084 8.08346 5.94084 7.99182C5.94084 7.90019 5.87578 7.82383 5.78948 7.80623Z" fill="url(#paint98_linear_10832_20745)"/>
208
+ <path d="M5.29623 7.84564C5.26801 7.82672 5.23382 7.81543 5.19731 7.81543C5.1608 7.81543 5.12661 7.82672 5.09839 7.84564C5.05126 7.87752 5.02039 7.9313 5.02039 7.99239C5.02039 8.0412 5.0403 8.08535 5.07217 8.11756C5.10404 8.14943 5.14851 8.16935 5.19731 8.16935C5.24611 8.16935 5.29025 8.14943 5.32245 8.11756C5.35432 8.08568 5.37424 8.0412 5.37424 7.99239C5.37424 7.9313 5.34337 7.87752 5.29623 7.84564Z" fill="url(#paint99_linear_10832_20745)"/>
209
+ <path d="M4.64313 8.11133C4.55251 8.11133 4.47882 8.1847 4.47882 8.27567C4.47882 8.36664 4.55251 8.44002 4.64313 8.44002C4.73375 8.44002 4.80744 8.36631 4.80744 8.27567C4.80744 8.18503 4.73375 8.11133 4.64313 8.11133Z" fill="url(#paint100_linear_10832_20745)"/>
210
+ <path d="M4.64372 7.54346C4.58695 7.54346 4.53716 7.57234 4.50762 7.61584C4.49003 7.64206 4.47974 7.6736 4.47974 7.7078C4.47974 7.79844 4.55343 7.87215 4.64405 7.87215C4.73467 7.87215 4.80836 7.79877 4.80836 7.7078C4.80836 7.67394 4.79807 7.64206 4.78048 7.61584C4.75093 7.57201 4.70114 7.54346 4.64438 7.54346H4.64372Z" fill="url(#paint101_linear_10832_20745)"/>
211
+ <path d="M3.10417 7.96632C3.10251 7.95802 3.09985 7.95005 3.09686 7.94275C3.09056 7.92748 3.08126 7.91386 3.06964 7.90258C3.04674 7.87967 3.01521 7.86572 2.98035 7.86572C2.9455 7.86572 2.91396 7.88 2.89106 7.90258C2.87977 7.91386 2.87048 7.92748 2.86384 7.94275C2.86052 7.95038 2.8582 7.95835 2.85654 7.96632C2.85488 7.97462 2.85388 7.98292 2.85388 7.99189C2.85388 8.00052 2.85488 8.00915 2.85654 8.01745C2.8582 8.02575 2.86085 8.03372 2.86384 8.04102C2.88309 8.08651 2.9279 8.11805 2.98035 8.11805C3.0328 8.11805 3.07761 8.08618 3.09686 8.04102C3.10018 8.03339 3.10251 8.02542 3.10417 8.01745C3.10583 8.00915 3.10682 8.00085 3.10682 7.99189C3.10682 7.98325 3.10583 7.97462 3.10417 7.96632Z" fill="url(#paint102_linear_10832_20745)"/>
212
+ <path d="M2.42636 7.87842C2.36362 7.87842 2.3125 7.92922 2.3125 7.9923C2.3125 8.05505 2.36329 8.10618 2.42636 8.10618C2.48942 8.10618 2.54021 8.05538 2.54021 7.9923C2.54021 7.92955 2.48942 7.87842 2.42636 7.87842Z" fill="url(#paint103_linear_10832_20745)"/>
213
+ <path d="M3.53429 8.13721C3.45761 8.13721 3.3952 8.19929 3.3952 8.27632C3.3952 8.35334 3.45728 8.41543 3.53429 8.41543C3.6113 8.41543 3.67337 8.35334 3.67337 8.27632C3.67337 8.19929 3.6113 8.13721 3.53429 8.13721Z" fill="url(#paint104_linear_10832_20745)"/>
214
+ </g>
215
+ <defs>
216
+ <linearGradient id="paint0_linear_10832_20745" x1="2.31207" y1="7.99187" x2="14.1873" y2="7.99187" gradientUnits="userSpaceOnUse">
217
+ <stop stop-color="#404040"/>
218
+ <stop offset="0.5" stop-color="#FF7F50"/>
219
+ <stop offset="1" stop-color="#F7BEA1"/>
220
+ </linearGradient>
221
+ <linearGradient id="paint1_linear_10832_20745" x1="2.31227" y1="7.99182" x2="14.1875" y2="7.99182" gradientUnits="userSpaceOnUse">
222
+ <stop stop-color="#404040"/>
223
+ <stop offset="0.5" stop-color="#FF7F50"/>
224
+ <stop offset="1" stop-color="#F7BEA1"/>
225
+ </linearGradient>
226
+ <linearGradient id="paint2_linear_10832_20745" x1="2.31282" y1="7.99187" x2="14.188" y2="7.99187" gradientUnits="userSpaceOnUse">
227
+ <stop stop-color="#404040"/>
228
+ <stop offset="0.5" stop-color="#FF7F50"/>
229
+ <stop offset="1" stop-color="#F7BEA1"/>
230
+ </linearGradient>
231
+ <linearGradient id="paint3_linear_10832_20745" x1="2.31216" y1="7.99195" x2="14.1874" y2="7.99195" gradientUnits="userSpaceOnUse">
232
+ <stop stop-color="#404040"/>
233
+ <stop offset="0.5" stop-color="#FF7F50"/>
234
+ <stop offset="1" stop-color="#F7BEA1"/>
235
+ </linearGradient>
236
+ <linearGradient id="paint4_linear_10832_20745" x1="2.31239" y1="7.99203" x2="14.1876" y2="7.99203" gradientUnits="userSpaceOnUse">
237
+ <stop stop-color="#404040"/>
238
+ <stop offset="0.5" stop-color="#FF7F50"/>
239
+ <stop offset="1" stop-color="#F7BEA1"/>
240
+ </linearGradient>
241
+ <linearGradient id="paint5_linear_10832_20745" x1="2.3124" y1="7.99162" x2="14.1876" y2="7.99162" gradientUnits="userSpaceOnUse">
242
+ <stop stop-color="#404040"/>
243
+ <stop offset="0.5" stop-color="#FF7F50"/>
244
+ <stop offset="1" stop-color="#F7BEA1"/>
245
+ </linearGradient>
246
+ <linearGradient id="paint6_linear_10832_20745" x1="2.31257" y1="7.99219" x2="14.1878" y2="7.99219" gradientUnits="userSpaceOnUse">
247
+ <stop stop-color="#404040"/>
248
+ <stop offset="0.5" stop-color="#FF7F50"/>
249
+ <stop offset="1" stop-color="#F7BEA1"/>
250
+ </linearGradient>
251
+ <linearGradient id="paint7_linear_10832_20745" x1="2.31291" y1="7.99178" x2="14.1882" y2="7.99178" gradientUnits="userSpaceOnUse">
252
+ <stop stop-color="#404040"/>
253
+ <stop offset="0.5" stop-color="#FF7F50"/>
254
+ <stop offset="1" stop-color="#F7BEA1"/>
255
+ </linearGradient>
256
+ <linearGradient id="paint8_linear_10832_20745" x1="2.31208" y1="7.99234" x2="14.1873" y2="7.99234" gradientUnits="userSpaceOnUse">
257
+ <stop stop-color="#404040"/>
258
+ <stop offset="0.5" stop-color="#FF7F50"/>
259
+ <stop offset="1" stop-color="#F7BEA1"/>
260
+ </linearGradient>
261
+ <linearGradient id="paint9_linear_10832_20745" x1="2.31248" y1="7.99193" x2="14.1877" y2="7.99193" gradientUnits="userSpaceOnUse">
262
+ <stop stop-color="#404040"/>
263
+ <stop offset="0.5" stop-color="#FF7F50"/>
264
+ <stop offset="1" stop-color="#F7BEA1"/>
265
+ </linearGradient>
266
+ <linearGradient id="paint10_linear_10832_20745" x1="2.31283" y1="7.99153" x2="14.188" y2="7.99153" gradientUnits="userSpaceOnUse">
267
+ <stop stop-color="#404040"/>
268
+ <stop offset="0.5" stop-color="#FF7F50"/>
269
+ <stop offset="1" stop-color="#F7BEA1"/>
270
+ </linearGradient>
271
+ <linearGradient id="paint11_linear_10832_20745" x1="2.31265" y1="7.99175" x2="14.1879" y2="7.99175" gradientUnits="userSpaceOnUse">
272
+ <stop stop-color="#404040"/>
273
+ <stop offset="0.5" stop-color="#FF7F50"/>
274
+ <stop offset="1" stop-color="#F7BEA1"/>
275
+ </linearGradient>
276
+ <linearGradient id="paint12_linear_10832_20745" x1="2.31282" y1="7.99183" x2="14.188" y2="7.99183" gradientUnits="userSpaceOnUse">
277
+ <stop stop-color="#404040"/>
278
+ <stop offset="0.5" stop-color="#FF7F50"/>
279
+ <stop offset="1" stop-color="#F7BEA1"/>
280
+ </linearGradient>
281
+ <linearGradient id="paint13_linear_10832_20745" x1="2.31216" y1="7.99191" x2="14.1874" y2="7.99191" gradientUnits="userSpaceOnUse">
282
+ <stop stop-color="#404040"/>
283
+ <stop offset="0.5" stop-color="#FF7F50"/>
284
+ <stop offset="1" stop-color="#F7BEA1"/>
285
+ </linearGradient>
286
+ <linearGradient id="paint14_linear_10832_20745" x1="2.31239" y1="7.99199" x2="14.1876" y2="7.99199" gradientUnits="userSpaceOnUse">
287
+ <stop stop-color="#404040"/>
288
+ <stop offset="0.5" stop-color="#FF7F50"/>
289
+ <stop offset="1" stop-color="#F7BEA1"/>
290
+ </linearGradient>
291
+ <linearGradient id="paint15_linear_10832_20745" x1="2.3124" y1="7.99207" x2="14.1876" y2="7.99207" gradientUnits="userSpaceOnUse">
292
+ <stop stop-color="#404040"/>
293
+ <stop offset="0.5" stop-color="#FF7F50"/>
294
+ <stop offset="1" stop-color="#F7BEA1"/>
295
+ </linearGradient>
296
+ <linearGradient id="paint16_linear_10832_20745" x1="2.31257" y1="7.99166" x2="14.1878" y2="7.99166" gradientUnits="userSpaceOnUse">
297
+ <stop stop-color="#404040"/>
298
+ <stop offset="0.5" stop-color="#FF7F50"/>
299
+ <stop offset="1" stop-color="#F7BEA1"/>
300
+ </linearGradient>
301
+ <linearGradient id="paint17_linear_10832_20745" x1="2.31291" y1="7.99125" x2="14.1882" y2="7.99125" gradientUnits="userSpaceOnUse">
302
+ <stop stop-color="#404040"/>
303
+ <stop offset="0.5" stop-color="#FF7F50"/>
304
+ <stop offset="1" stop-color="#F7BEA1"/>
305
+ </linearGradient>
306
+ <linearGradient id="paint18_linear_10832_20745" x1="2.31208" y1="7.99182" x2="14.1873" y2="7.99182" gradientUnits="userSpaceOnUse">
307
+ <stop stop-color="#404040"/>
308
+ <stop offset="0.5" stop-color="#FF7F50"/>
309
+ <stop offset="1" stop-color="#F7BEA1"/>
310
+ </linearGradient>
311
+ <linearGradient id="paint19_linear_10832_20745" x1="2.31231" y1="7.99212" x2="14.1875" y2="7.99212" gradientUnits="userSpaceOnUse">
312
+ <stop stop-color="#404040"/>
313
+ <stop offset="0.5" stop-color="#FF7F50"/>
314
+ <stop offset="1" stop-color="#F7BEA1"/>
315
+ </linearGradient>
316
+ <linearGradient id="paint20_linear_10832_20745" x1="2.31265" y1="7.99172" x2="14.1879" y2="7.99172" gradientUnits="userSpaceOnUse">
317
+ <stop stop-color="#404040"/>
318
+ <stop offset="0.5" stop-color="#FF7F50"/>
319
+ <stop offset="1" stop-color="#F7BEA1"/>
320
+ </linearGradient>
321
+ <linearGradient id="paint21_linear_10832_20745" x1="2.31282" y1="7.99228" x2="14.188" y2="7.99228" gradientUnits="userSpaceOnUse">
322
+ <stop stop-color="#404040"/>
323
+ <stop offset="0.5" stop-color="#FF7F50"/>
324
+ <stop offset="1" stop-color="#F7BEA1"/>
325
+ </linearGradient>
326
+ <linearGradient id="paint22_linear_10832_20745" x1="2.31216" y1="7.99187" x2="14.1874" y2="7.99187" gradientUnits="userSpaceOnUse">
327
+ <stop stop-color="#404040"/>
328
+ <stop offset="0.5" stop-color="#FF7F50"/>
329
+ <stop offset="1" stop-color="#F7BEA1"/>
330
+ </linearGradient>
331
+ <linearGradient id="paint23_linear_10832_20745" x1="2.31239" y1="7.99146" x2="14.1876" y2="7.99146" gradientUnits="userSpaceOnUse">
332
+ <stop stop-color="#404040"/>
333
+ <stop offset="0.5" stop-color="#FF7F50"/>
334
+ <stop offset="1" stop-color="#F7BEA1"/>
335
+ </linearGradient>
336
+ <linearGradient id="paint24_linear_10832_20745" x1="2.3124" y1="7.99203" x2="14.1876" y2="7.99203" gradientUnits="userSpaceOnUse">
337
+ <stop stop-color="#404040"/>
338
+ <stop offset="0.5" stop-color="#FF7F50"/>
339
+ <stop offset="1" stop-color="#F7BEA1"/>
340
+ </linearGradient>
341
+ <linearGradient id="paint25_linear_10832_20745" x1="2.31257" y1="7.99211" x2="14.1878" y2="7.99211" gradientUnits="userSpaceOnUse">
342
+ <stop stop-color="#404040"/>
343
+ <stop offset="0.5" stop-color="#FF7F50"/>
344
+ <stop offset="1" stop-color="#F7BEA1"/>
345
+ </linearGradient>
346
+ <linearGradient id="paint26_linear_10832_20745" x1="2.31247" y1="7.99201" x2="14.1877" y2="7.99201" gradientUnits="userSpaceOnUse">
347
+ <stop stop-color="#404040"/>
348
+ <stop offset="0.5" stop-color="#FF7F50"/>
349
+ <stop offset="1" stop-color="#F7BEA1"/>
350
+ </linearGradient>
351
+ <linearGradient id="paint27_linear_10832_20745" x1="2.31231" y1="7.99144" x2="14.1875" y2="7.99144" gradientUnits="userSpaceOnUse">
352
+ <stop stop-color="#404040"/>
353
+ <stop offset="0.5" stop-color="#FF7F50"/>
354
+ <stop offset="1" stop-color="#F7BEA1"/>
355
+ </linearGradient>
356
+ <linearGradient id="paint28_linear_10832_20745" x1="2.31206" y1="7.99173" x2="14.1873" y2="7.99173" gradientUnits="userSpaceOnUse">
357
+ <stop stop-color="#404040"/>
358
+ <stop offset="0.5" stop-color="#FF7F50"/>
359
+ <stop offset="1" stop-color="#F7BEA1"/>
360
+ </linearGradient>
361
+ <linearGradient id="paint29_linear_10832_20745" x1="2.31247" y1="7.99181" x2="14.1877" y2="7.99181" gradientUnits="userSpaceOnUse">
362
+ <stop stop-color="#404040"/>
363
+ <stop offset="0.5" stop-color="#FF7F50"/>
364
+ <stop offset="1" stop-color="#F7BEA1"/>
365
+ </linearGradient>
366
+ <linearGradient id="paint30_linear_10832_20745" x1="2.31264" y1="7.9921" x2="14.1879" y2="7.9921" gradientUnits="userSpaceOnUse">
367
+ <stop stop-color="#404040"/>
368
+ <stop offset="0.5" stop-color="#FF7F50"/>
369
+ <stop offset="1" stop-color="#F7BEA1"/>
370
+ </linearGradient>
371
+ <linearGradient id="paint31_linear_10832_20745" x1="2.31206" y1="7.9917" x2="14.1873" y2="7.9917" gradientUnits="userSpaceOnUse">
372
+ <stop stop-color="#404040"/>
373
+ <stop offset="0.5" stop-color="#FF7F50"/>
374
+ <stop offset="1" stop-color="#F7BEA1"/>
375
+ </linearGradient>
376
+ <linearGradient id="paint32_linear_10832_20745" x1="2.31247" y1="7.99129" x2="14.1877" y2="7.99129" gradientUnits="userSpaceOnUse">
377
+ <stop stop-color="#404040"/>
378
+ <stop offset="0.5" stop-color="#FF7F50"/>
379
+ <stop offset="1" stop-color="#F7BEA1"/>
380
+ </linearGradient>
381
+ <linearGradient id="paint33_linear_10832_20745" x1="2.31265" y1="7.99211" x2="14.1879" y2="7.99211" gradientUnits="userSpaceOnUse">
382
+ <stop stop-color="#404040"/>
383
+ <stop offset="0.5" stop-color="#FF7F50"/>
384
+ <stop offset="1" stop-color="#F7BEA1"/>
385
+ </linearGradient>
386
+ <linearGradient id="paint34_linear_10832_20745" x1="2.31239" y1="7.99153" x2="14.1876" y2="7.99153" gradientUnits="userSpaceOnUse">
387
+ <stop stop-color="#404040"/>
388
+ <stop offset="0.5" stop-color="#FF7F50"/>
389
+ <stop offset="1" stop-color="#F7BEA1"/>
390
+ </linearGradient>
391
+ <linearGradient id="paint35_linear_10832_20745" x1="2.3124" y1="7.9921" x2="14.1876" y2="7.9921" gradientUnits="userSpaceOnUse">
392
+ <stop stop-color="#404040"/>
393
+ <stop offset="0.5" stop-color="#FF7F50"/>
394
+ <stop offset="1" stop-color="#F7BEA1"/>
395
+ </linearGradient>
396
+ <linearGradient id="paint36_linear_10832_20745" x1="2.31291" y1="7.99159" x2="14.1882" y2="7.99159" gradientUnits="userSpaceOnUse">
397
+ <stop stop-color="#404040"/>
398
+ <stop offset="0.5" stop-color="#FF7F50"/>
399
+ <stop offset="1" stop-color="#F7BEA1"/>
400
+ </linearGradient>
401
+ <linearGradient id="paint37_linear_10832_20745" x1="2.31208" y1="7.99216" x2="14.1873" y2="7.99216" gradientUnits="userSpaceOnUse">
402
+ <stop stop-color="#404040"/>
403
+ <stop offset="0.5" stop-color="#FF7F50"/>
404
+ <stop offset="1" stop-color="#F7BEA1"/>
405
+ </linearGradient>
406
+ <linearGradient id="paint38_linear_10832_20745" x1="2.31231" y1="7.99125" x2="14.1875" y2="7.99125" gradientUnits="userSpaceOnUse">
407
+ <stop stop-color="#404040"/>
408
+ <stop offset="0.5" stop-color="#FF7F50"/>
409
+ <stop offset="1" stop-color="#F7BEA1"/>
410
+ </linearGradient>
411
+ <linearGradient id="paint39_linear_10832_20745" x1="2.31265" y1="7.99182" x2="14.1879" y2="7.99182" gradientUnits="userSpaceOnUse">
412
+ <stop stop-color="#404040"/>
413
+ <stop offset="0.5" stop-color="#FF7F50"/>
414
+ <stop offset="1" stop-color="#F7BEA1"/>
415
+ </linearGradient>
416
+ <linearGradient id="paint40_linear_10832_20745" x1="2.31247" y1="7.9917" x2="14.1877" y2="7.9917" gradientUnits="userSpaceOnUse">
417
+ <stop stop-color="#404040"/>
418
+ <stop offset="0.5" stop-color="#FF7F50"/>
419
+ <stop offset="1" stop-color="#F7BEA1"/>
420
+ </linearGradient>
421
+ <linearGradient id="paint41_linear_10832_20745" x1="2.31231" y1="7.99178" x2="14.1875" y2="7.99178" gradientUnits="userSpaceOnUse">
422
+ <stop stop-color="#404040"/>
423
+ <stop offset="0.5" stop-color="#FF7F50"/>
424
+ <stop offset="1" stop-color="#F7BEA1"/>
425
+ </linearGradient>
426
+ <linearGradient id="paint42_linear_10832_20745" x1="2.31265" y1="7.99186" x2="14.1879" y2="7.99186" gradientUnits="userSpaceOnUse">
427
+ <stop stop-color="#404040"/>
428
+ <stop offset="0.5" stop-color="#FF7F50"/>
429
+ <stop offset="1" stop-color="#F7BEA1"/>
430
+ </linearGradient>
431
+ <linearGradient id="paint43_linear_10832_20745" x1="2.31206" y1="7.99166" x2="14.1873" y2="7.99166" gradientUnits="userSpaceOnUse">
432
+ <stop stop-color="#404040"/>
433
+ <stop offset="0.5" stop-color="#FF7F50"/>
434
+ <stop offset="1" stop-color="#F7BEA1"/>
435
+ </linearGradient>
436
+ <linearGradient id="paint44_linear_10832_20745" x1="2.31247" y1="7.99174" x2="14.1877" y2="7.99174" gradientUnits="userSpaceOnUse">
437
+ <stop stop-color="#404040"/>
438
+ <stop offset="0.5" stop-color="#FF7F50"/>
439
+ <stop offset="1" stop-color="#F7BEA1"/>
440
+ </linearGradient>
441
+ <linearGradient id="paint45_linear_10832_20745" x1="2.31231" y1="7.99182" x2="14.1875" y2="7.99182" gradientUnits="userSpaceOnUse">
442
+ <stop stop-color="#404040"/>
443
+ <stop offset="0.5" stop-color="#FF7F50"/>
444
+ <stop offset="1" stop-color="#F7BEA1"/>
445
+ </linearGradient>
446
+ <linearGradient id="paint46_linear_10832_20745" x1="2.31282" y1="7.99161" x2="14.188" y2="7.99161" gradientUnits="userSpaceOnUse">
447
+ <stop stop-color="#404040"/>
448
+ <stop offset="0.5" stop-color="#FF7F50"/>
449
+ <stop offset="1" stop-color="#F7BEA1"/>
450
+ </linearGradient>
451
+ <linearGradient id="paint47_linear_10832_20745" x1="2.31216" y1="7.9917" x2="14.1874" y2="7.9917" gradientUnits="userSpaceOnUse">
452
+ <stop stop-color="#404040"/>
453
+ <stop offset="0.5" stop-color="#FF7F50"/>
454
+ <stop offset="1" stop-color="#F7BEA1"/>
455
+ </linearGradient>
456
+ <linearGradient id="paint48_linear_10832_20745" x1="2.31239" y1="7.99227" x2="14.1876" y2="7.99227" gradientUnits="userSpaceOnUse">
457
+ <stop stop-color="#404040"/>
458
+ <stop offset="0.5" stop-color="#FF7F50"/>
459
+ <stop offset="1" stop-color="#F7BEA1"/>
460
+ </linearGradient>
461
+ <linearGradient id="paint49_linear_10832_20745" x1="2.3124" y1="7.99185" x2="14.1876" y2="7.99185" gradientUnits="userSpaceOnUse">
462
+ <stop stop-color="#404040"/>
463
+ <stop offset="0.5" stop-color="#FF7F50"/>
464
+ <stop offset="1" stop-color="#F7BEA1"/>
465
+ </linearGradient>
466
+ <linearGradient id="paint50_linear_10832_20745" x1="2.31257" y1="7.99145" x2="14.1878" y2="7.99145" gradientUnits="userSpaceOnUse">
467
+ <stop stop-color="#404040"/>
468
+ <stop offset="0.5" stop-color="#FF7F50"/>
469
+ <stop offset="1" stop-color="#F7BEA1"/>
470
+ </linearGradient>
471
+ <linearGradient id="paint51_linear_10832_20745" x1="2.31291" y1="7.99151" x2="14.1882" y2="7.99151" gradientUnits="userSpaceOnUse">
472
+ <stop stop-color="#404040"/>
473
+ <stop offset="0.5" stop-color="#FF7F50"/>
474
+ <stop offset="1" stop-color="#F7BEA1"/>
475
+ </linearGradient>
476
+ <linearGradient id="paint52_linear_10832_20745" x1="2.31208" y1="7.9916" x2="14.1873" y2="7.9916" gradientUnits="userSpaceOnUse">
477
+ <stop stop-color="#404040"/>
478
+ <stop offset="0.5" stop-color="#FF7F50"/>
479
+ <stop offset="1" stop-color="#F7BEA1"/>
480
+ </linearGradient>
481
+ <linearGradient id="paint53_linear_10832_20745" x1="2.31248" y1="7.99168" x2="14.1877" y2="7.99168" gradientUnits="userSpaceOnUse">
482
+ <stop stop-color="#404040"/>
483
+ <stop offset="0.5" stop-color="#FF7F50"/>
484
+ <stop offset="1" stop-color="#F7BEA1"/>
485
+ </linearGradient>
486
+ <linearGradient id="paint54_linear_10832_20745" x1="2.31283" y1="7.99177" x2="14.188" y2="7.99177" gradientUnits="userSpaceOnUse">
487
+ <stop stop-color="#404040"/>
488
+ <stop offset="0.5" stop-color="#FF7F50"/>
489
+ <stop offset="1" stop-color="#F7BEA1"/>
490
+ </linearGradient>
491
+ <linearGradient id="paint55_linear_10832_20745" x1="2.31265" y1="7.99157" x2="14.1879" y2="7.99157" gradientUnits="userSpaceOnUse">
492
+ <stop stop-color="#404040"/>
493
+ <stop offset="0.5" stop-color="#FF7F50"/>
494
+ <stop offset="1" stop-color="#F7BEA1"/>
495
+ </linearGradient>
496
+ <linearGradient id="paint56_linear_10832_20745" x1="2.31282" y1="7.99214" x2="14.188" y2="7.99214" gradientUnits="userSpaceOnUse">
497
+ <stop stop-color="#404040"/>
498
+ <stop offset="0.5" stop-color="#FF7F50"/>
499
+ <stop offset="1" stop-color="#F7BEA1"/>
500
+ </linearGradient>
501
+ <linearGradient id="paint57_linear_10832_20745" x1="2.31216" y1="7.99174" x2="14.1874" y2="7.99174" gradientUnits="userSpaceOnUse">
502
+ <stop stop-color="#404040"/>
503
+ <stop offset="0.5" stop-color="#FF7F50"/>
504
+ <stop offset="1" stop-color="#F7BEA1"/>
505
+ </linearGradient>
506
+ <linearGradient id="paint58_linear_10832_20745" x1="2.31239" y1="7.99133" x2="14.1876" y2="7.99133" gradientUnits="userSpaceOnUse">
507
+ <stop stop-color="#404040"/>
508
+ <stop offset="0.5" stop-color="#FF7F50"/>
509
+ <stop offset="1" stop-color="#F7BEA1"/>
510
+ </linearGradient>
511
+ <linearGradient id="paint59_linear_10832_20745" x1="2.3124" y1="7.99141" x2="14.1876" y2="7.99141" gradientUnits="userSpaceOnUse">
512
+ <stop stop-color="#404040"/>
513
+ <stop offset="0.5" stop-color="#FF7F50"/>
514
+ <stop offset="1" stop-color="#F7BEA1"/>
515
+ </linearGradient>
516
+ <linearGradient id="paint60_linear_10832_20745" x1="2.31257" y1="7.99147" x2="14.1878" y2="7.99147" gradientUnits="userSpaceOnUse">
517
+ <stop stop-color="#404040"/>
518
+ <stop offset="0.5" stop-color="#FF7F50"/>
519
+ <stop offset="1" stop-color="#F7BEA1"/>
520
+ </linearGradient>
521
+ <linearGradient id="paint61_linear_10832_20745" x1="2.31291" y1="7.99204" x2="14.1882" y2="7.99204" gradientUnits="userSpaceOnUse">
522
+ <stop stop-color="#404040"/>
523
+ <stop offset="0.5" stop-color="#FF7F50"/>
524
+ <stop offset="1" stop-color="#F7BEA1"/>
525
+ </linearGradient>
526
+ <linearGradient id="paint62_linear_10832_20745" x1="2.31208" y1="7.99164" x2="14.1873" y2="7.99164" gradientUnits="userSpaceOnUse">
527
+ <stop stop-color="#404040"/>
528
+ <stop offset="0.5" stop-color="#FF7F50"/>
529
+ <stop offset="1" stop-color="#F7BEA1"/>
530
+ </linearGradient>
531
+ <linearGradient id="paint63_linear_10832_20745" x1="2.31231" y1="7.99202" x2="14.1875" y2="7.99202" gradientUnits="userSpaceOnUse">
532
+ <stop stop-color="#404040"/>
533
+ <stop offset="0.5" stop-color="#FF7F50"/>
534
+ <stop offset="1" stop-color="#F7BEA1"/>
535
+ </linearGradient>
536
+ <linearGradient id="paint64_linear_10832_20745" x1="2.31265" y1="7.99161" x2="14.1879" y2="7.99161" gradientUnits="userSpaceOnUse">
537
+ <stop stop-color="#404040"/>
538
+ <stop offset="0.5" stop-color="#FF7F50"/>
539
+ <stop offset="1" stop-color="#F7BEA1"/>
540
+ </linearGradient>
541
+ <linearGradient id="paint65_linear_10832_20745" x1="2.31282" y1="7.9912" x2="14.188" y2="7.9912" gradientUnits="userSpaceOnUse">
542
+ <stop stop-color="#404040"/>
543
+ <stop offset="0.5" stop-color="#FF7F50"/>
544
+ <stop offset="1" stop-color="#F7BEA1"/>
545
+ </linearGradient>
546
+ <linearGradient id="paint66_linear_10832_20745" x1="2.31216" y1="7.99177" x2="14.1874" y2="7.99177" gradientUnits="userSpaceOnUse">
547
+ <stop stop-color="#404040"/>
548
+ <stop offset="0.5" stop-color="#FF7F50"/>
549
+ <stop offset="1" stop-color="#F7BEA1"/>
550
+ </linearGradient>
551
+ <linearGradient id="paint67_linear_10832_20745" x1="2.31239" y1="7.99186" x2="14.1876" y2="7.99186" gradientUnits="userSpaceOnUse">
552
+ <stop stop-color="#404040"/>
553
+ <stop offset="0.5" stop-color="#FF7F50"/>
554
+ <stop offset="1" stop-color="#F7BEA1"/>
555
+ </linearGradient>
556
+ <linearGradient id="paint68_linear_10832_20745" x1="2.3124" y1="7.99193" x2="14.1876" y2="7.99193" gradientUnits="userSpaceOnUse">
557
+ <stop stop-color="#404040"/>
558
+ <stop offset="0.5" stop-color="#FF7F50"/>
559
+ <stop offset="1" stop-color="#F7BEA1"/>
560
+ </linearGradient>
561
+ <linearGradient id="paint69_linear_10832_20745" x1="2.31257" y1="7.99152" x2="14.1878" y2="7.99152" gradientUnits="userSpaceOnUse">
562
+ <stop stop-color="#404040"/>
563
+ <stop offset="0.5" stop-color="#FF7F50"/>
564
+ <stop offset="1" stop-color="#F7BEA1"/>
565
+ </linearGradient>
566
+ <linearGradient id="paint70_linear_10832_20745" x1="2.31247" y1="7.99198" x2="14.1877" y2="7.99198" gradientUnits="userSpaceOnUse">
567
+ <stop stop-color="#404040"/>
568
+ <stop offset="0.5" stop-color="#FF7F50"/>
569
+ <stop offset="1" stop-color="#F7BEA1"/>
570
+ </linearGradient>
571
+ <linearGradient id="paint71_linear_10832_20745" x1="2.31231" y1="7.99157" x2="14.1875" y2="7.99157" gradientUnits="userSpaceOnUse">
572
+ <stop stop-color="#404040"/>
573
+ <stop offset="0.5" stop-color="#FF7F50"/>
574
+ <stop offset="1" stop-color="#F7BEA1"/>
575
+ </linearGradient>
576
+ <linearGradient id="paint72_linear_10832_20745" x1="2.31206" y1="7.99145" x2="14.1873" y2="7.99145" gradientUnits="userSpaceOnUse">
577
+ <stop stop-color="#404040"/>
578
+ <stop offset="0.5" stop-color="#FF7F50"/>
579
+ <stop offset="1" stop-color="#F7BEA1"/>
580
+ </linearGradient>
581
+ <linearGradient id="paint73_linear_10832_20745" x1="2.31247" y1="7.99153" x2="14.1877" y2="7.99153" gradientUnits="userSpaceOnUse">
582
+ <stop stop-color="#404040"/>
583
+ <stop offset="0.5" stop-color="#FF7F50"/>
584
+ <stop offset="1" stop-color="#F7BEA1"/>
585
+ </linearGradient>
586
+ <linearGradient id="paint74_linear_10832_20745" x1="2.31264" y1="7.9919" x2="14.1879" y2="7.9919" gradientUnits="userSpaceOnUse">
587
+ <stop stop-color="#404040"/>
588
+ <stop offset="0.5" stop-color="#FF7F50"/>
589
+ <stop offset="1" stop-color="#F7BEA1"/>
590
+ </linearGradient>
591
+ <linearGradient id="paint75_linear_10832_20745" x1="2.31206" y1="7.99214" x2="14.1873" y2="7.99214" gradientUnits="userSpaceOnUse">
592
+ <stop stop-color="#404040"/>
593
+ <stop offset="0.5" stop-color="#FF7F50"/>
594
+ <stop offset="1" stop-color="#F7BEA1"/>
595
+ </linearGradient>
596
+ <linearGradient id="paint76_linear_10832_20745" x1="2.31247" y1="7.99173" x2="14.1877" y2="7.99173" gradientUnits="userSpaceOnUse">
597
+ <stop stop-color="#404040"/>
598
+ <stop offset="0.5" stop-color="#FF7F50"/>
599
+ <stop offset="1" stop-color="#F7BEA1"/>
600
+ </linearGradient>
601
+ <linearGradient id="paint77_linear_10832_20745" x1="2.31265" y1="7.99204" x2="14.1879" y2="7.99204" gradientUnits="userSpaceOnUse">
602
+ <stop stop-color="#404040"/>
603
+ <stop offset="0.5" stop-color="#FF7F50"/>
604
+ <stop offset="1" stop-color="#F7BEA1"/>
605
+ </linearGradient>
606
+ <linearGradient id="paint78_linear_10832_20745" x1="2.31239" y1="7.99178" x2="14.1876" y2="7.99178" gradientUnits="userSpaceOnUse">
607
+ <stop stop-color="#404040"/>
608
+ <stop offset="0.5" stop-color="#FF7F50"/>
609
+ <stop offset="1" stop-color="#F7BEA1"/>
610
+ </linearGradient>
611
+ <linearGradient id="paint79_linear_10832_20745" x1="2.3124" y1="7.99186" x2="14.1876" y2="7.99186" gradientUnits="userSpaceOnUse">
612
+ <stop stop-color="#404040"/>
613
+ <stop offset="0.5" stop-color="#FF7F50"/>
614
+ <stop offset="1" stop-color="#F7BEA1"/>
615
+ </linearGradient>
616
+ <linearGradient id="paint80_linear_10832_20745" x1="2.31291" y1="7.99171" x2="14.1882" y2="7.99171" gradientUnits="userSpaceOnUse">
617
+ <stop stop-color="#404040"/>
618
+ <stop offset="0.5" stop-color="#FF7F50"/>
619
+ <stop offset="1" stop-color="#F7BEA1"/>
620
+ </linearGradient>
621
+ <linearGradient id="paint81_linear_10832_20745" x1="2.31231" y1="7.99192" x2="14.1875" y2="7.99192" gradientUnits="userSpaceOnUse">
622
+ <stop stop-color="#404040"/>
623
+ <stop offset="0.5" stop-color="#FF7F50"/>
624
+ <stop offset="1" stop-color="#F7BEA1"/>
625
+ </linearGradient>
626
+ <linearGradient id="paint82_linear_10832_20745" x1="2.31265" y1="7.992" x2="14.1879" y2="7.992" gradientUnits="userSpaceOnUse">
627
+ <stop stop-color="#404040"/>
628
+ <stop offset="0.5" stop-color="#FF7F50"/>
629
+ <stop offset="1" stop-color="#F7BEA1"/>
630
+ </linearGradient>
631
+ <linearGradient id="paint83_linear_10832_20745" x1="2.31247" y1="7.9918" x2="14.1877" y2="7.9918" gradientUnits="userSpaceOnUse">
632
+ <stop stop-color="#404040"/>
633
+ <stop offset="0.5" stop-color="#FF7F50"/>
634
+ <stop offset="1" stop-color="#F7BEA1"/>
635
+ </linearGradient>
636
+ <linearGradient id="paint84_linear_10832_20745" x1="2.31231" y1="7.99188" x2="14.1875" y2="7.99188" gradientUnits="userSpaceOnUse">
637
+ <stop stop-color="#404040"/>
638
+ <stop offset="0.5" stop-color="#FF7F50"/>
639
+ <stop offset="1" stop-color="#F7BEA1"/>
640
+ </linearGradient>
641
+ <linearGradient id="paint85_linear_10832_20745" x1="2.31265" y1="7.99147" x2="14.1879" y2="7.99147" gradientUnits="userSpaceOnUse">
642
+ <stop stop-color="#404040"/>
643
+ <stop offset="0.5" stop-color="#FF7F50"/>
644
+ <stop offset="1" stop-color="#F7BEA1"/>
645
+ </linearGradient>
646
+ <linearGradient id="paint86_linear_10832_20745" x1="2.31206" y1="7.99168" x2="14.1873" y2="7.99168" gradientUnits="userSpaceOnUse">
647
+ <stop stop-color="#404040"/>
648
+ <stop offset="0.5" stop-color="#FF7F50"/>
649
+ <stop offset="1" stop-color="#F7BEA1"/>
650
+ </linearGradient>
651
+ <linearGradient id="paint87_linear_10832_20745" x1="2.31247" y1="7.99176" x2="14.1877" y2="7.99176" gradientUnits="userSpaceOnUse">
652
+ <stop stop-color="#404040"/>
653
+ <stop offset="0.5" stop-color="#FF7F50"/>
654
+ <stop offset="1" stop-color="#F7BEA1"/>
655
+ </linearGradient>
656
+ <linearGradient id="paint88_linear_10832_20745" x1="2.31231" y1="7.99184" x2="14.1875" y2="7.99184" gradientUnits="userSpaceOnUse">
657
+ <stop stop-color="#404040"/>
658
+ <stop offset="0.5" stop-color="#FF7F50"/>
659
+ <stop offset="1" stop-color="#F7BEA1"/>
660
+ </linearGradient>
661
+ <linearGradient id="paint89_linear_10832_20745" x1="2.31282" y1="7.9919" x2="14.188" y2="7.9919" gradientUnits="userSpaceOnUse">
662
+ <stop stop-color="#404040"/>
663
+ <stop offset="0.5" stop-color="#FF7F50"/>
664
+ <stop offset="1" stop-color="#F7BEA1"/>
665
+ </linearGradient>
666
+ <linearGradient id="paint90_linear_10832_20745" x1="2.31282" y1="7.99166" x2="14.188" y2="7.99166" gradientUnits="userSpaceOnUse">
667
+ <stop stop-color="#404040"/>
668
+ <stop offset="0.5" stop-color="#FF7F50"/>
669
+ <stop offset="1" stop-color="#F7BEA1"/>
670
+ </linearGradient>
671
+ <linearGradient id="paint91_linear_10832_20745" x1="2.31282" y1="7.99114" x2="14.188" y2="7.99114" gradientUnits="userSpaceOnUse">
672
+ <stop stop-color="#404040"/>
673
+ <stop offset="0.5" stop-color="#FF7F50"/>
674
+ <stop offset="1" stop-color="#F7BEA1"/>
675
+ </linearGradient>
676
+ <linearGradient id="paint92_linear_10832_20745" x1="2.31282" y1="7.99208" x2="14.188" y2="7.99208" gradientUnits="userSpaceOnUse">
677
+ <stop stop-color="#404040"/>
678
+ <stop offset="0.5" stop-color="#FF7F50"/>
679
+ <stop offset="1" stop-color="#F7BEA1"/>
680
+ </linearGradient>
681
+ <linearGradient id="paint93_linear_10832_20745" x1="2.31282" y1="7.9917" x2="14.188" y2="7.9917" gradientUnits="userSpaceOnUse">
682
+ <stop stop-color="#404040"/>
683
+ <stop offset="0.5" stop-color="#FF7F50"/>
684
+ <stop offset="1" stop-color="#F7BEA1"/>
685
+ </linearGradient>
686
+ <linearGradient id="paint94_linear_10832_20745" x1="2.31216" y1="7.99196" x2="14.1874" y2="7.99196" gradientUnits="userSpaceOnUse">
687
+ <stop stop-color="#404040"/>
688
+ <stop offset="0.5" stop-color="#FF7F50"/>
689
+ <stop offset="1" stop-color="#F7BEA1"/>
690
+ </linearGradient>
691
+ <linearGradient id="paint95_linear_10832_20745" x1="2.31216" y1="7.99221" x2="14.1874" y2="7.99221" gradientUnits="userSpaceOnUse">
692
+ <stop stop-color="#404040"/>
693
+ <stop offset="0.5" stop-color="#FF7F50"/>
694
+ <stop offset="1" stop-color="#F7BEA1"/>
695
+ </linearGradient>
696
+ <linearGradient id="paint96_linear_10832_20745" x1="2.31216" y1="7.99169" x2="14.1874" y2="7.99169" gradientUnits="userSpaceOnUse">
697
+ <stop stop-color="#404040"/>
698
+ <stop offset="0.5" stop-color="#FF7F50"/>
699
+ <stop offset="1" stop-color="#F7BEA1"/>
700
+ </linearGradient>
701
+ <linearGradient id="paint97_linear_10832_20745" x1="2.31216" y1="7.99225" x2="14.1874" y2="7.99225" gradientUnits="userSpaceOnUse">
702
+ <stop stop-color="#404040"/>
703
+ <stop offset="0.5" stop-color="#FF7F50"/>
704
+ <stop offset="1" stop-color="#F7BEA1"/>
705
+ </linearGradient>
706
+ <linearGradient id="paint98_linear_10832_20745" x1="2.31239" y1="7.99182" x2="14.1876" y2="7.99182" gradientUnits="userSpaceOnUse">
707
+ <stop stop-color="#404040"/>
708
+ <stop offset="0.5" stop-color="#FF7F50"/>
709
+ <stop offset="1" stop-color="#F7BEA1"/>
710
+ </linearGradient>
711
+ <linearGradient id="paint99_linear_10832_20745" x1="2.31273" y1="7.99206" x2="14.188" y2="7.99206" gradientUnits="userSpaceOnUse">
712
+ <stop stop-color="#404040"/>
713
+ <stop offset="0.5" stop-color="#FF7F50"/>
714
+ <stop offset="1" stop-color="#F7BEA1"/>
715
+ </linearGradient>
716
+ <linearGradient id="paint100_linear_10832_20745" x1="2.31257" y1="7.99147" x2="14.1878" y2="7.99147" gradientUnits="userSpaceOnUse">
717
+ <stop stop-color="#404040"/>
718
+ <stop offset="0.5" stop-color="#FF7F50"/>
719
+ <stop offset="1" stop-color="#F7BEA1"/>
720
+ </linearGradient>
721
+ <linearGradient id="paint101_linear_10832_20745" x1="2.31315" y1="7.99167" x2="14.1884" y2="7.99167" gradientUnits="userSpaceOnUse">
722
+ <stop stop-color="#404040"/>
723
+ <stop offset="0.5" stop-color="#FF7F50"/>
724
+ <stop offset="1" stop-color="#F7BEA1"/>
725
+ </linearGradient>
726
+ <linearGradient id="paint102_linear_10832_20745" x1="2.31248" y1="7.99155" x2="14.1877" y2="7.99155" gradientUnits="userSpaceOnUse">
727
+ <stop stop-color="#404040"/>
728
+ <stop offset="0.5" stop-color="#FF7F50"/>
729
+ <stop offset="1" stop-color="#F7BEA1"/>
730
+ </linearGradient>
731
+ <linearGradient id="paint103_linear_10832_20745" x1="2.31283" y1="7.99196" x2="14.188" y2="7.99196" gradientUnits="userSpaceOnUse">
732
+ <stop stop-color="#404040"/>
733
+ <stop offset="0.5" stop-color="#FF7F50"/>
734
+ <stop offset="1" stop-color="#F7BEA1"/>
735
+ </linearGradient>
736
+ <linearGradient id="paint104_linear_10832_20745" x1="2.31208" y1="7.99179" x2="14.1873" y2="7.99179" gradientUnits="userSpaceOnUse">
737
+ <stop stop-color="#404040"/>
738
+ <stop offset="0.5" stop-color="#FF7F50"/>
739
+ <stop offset="1" stop-color="#F7BEA1"/>
740
+ </linearGradient>
741
+ <clipPath id="clip0_10832_20745">
742
+ <rect width="16" height="16" rx="3" fill="white"/>
743
+ </clipPath>
744
+ </defs>
745
+ </svg>