ciris-agent 1.7.7__py3-none-any.whl

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 (986) hide show
  1. ciris_adapters/README.md +113 -0
  2. ciris_adapters/__init__.py +30 -0
  3. ciris_adapters/ciris_covenant_metrics/README.md +144 -0
  4. ciris_adapters/ciris_covenant_metrics/__init__.py +36 -0
  5. ciris_adapters/ciris_covenant_metrics/adapter.py +249 -0
  6. ciris_adapters/ciris_covenant_metrics/manifest.json +152 -0
  7. ciris_adapters/ciris_covenant_metrics/services.py +403 -0
  8. ciris_adapters/ciris_hosted_tools/__init__.py +24 -0
  9. ciris_adapters/ciris_hosted_tools/adapter.py +169 -0
  10. ciris_adapters/ciris_hosted_tools/manifest.json +94 -0
  11. ciris_adapters/ciris_hosted_tools/services.py +744 -0
  12. ciris_adapters/external_data_sql/README.md +559 -0
  13. ciris_adapters/external_data_sql/__init__.py +43 -0
  14. ciris_adapters/external_data_sql/adapter.py +144 -0
  15. ciris_adapters/external_data_sql/configurable.py +315 -0
  16. ciris_adapters/external_data_sql/dialects/__init__.py +37 -0
  17. ciris_adapters/external_data_sql/dialects/base.py +133 -0
  18. ciris_adapters/external_data_sql/dialects/mysql.py +63 -0
  19. ciris_adapters/external_data_sql/dialects/postgresql.py +59 -0
  20. ciris_adapters/external_data_sql/dialects/sqlite.py +62 -0
  21. ciris_adapters/external_data_sql/example_config.json +88 -0
  22. ciris_adapters/external_data_sql/example_privacy_schema.yaml +127 -0
  23. ciris_adapters/external_data_sql/manifest.json +195 -0
  24. ciris_adapters/external_data_sql/privacy_schema_loader.py +189 -0
  25. ciris_adapters/external_data_sql/protocol.py +101 -0
  26. ciris_adapters/external_data_sql/schemas.py +146 -0
  27. ciris_adapters/external_data_sql/service.py +1547 -0
  28. ciris_adapters/external_data_sql/service_old.py +492 -0
  29. ciris_adapters/home_assistant/__init__.py +63 -0
  30. ciris_adapters/home_assistant/adapter.py +201 -0
  31. ciris_adapters/home_assistant/communication_service.py +347 -0
  32. ciris_adapters/home_assistant/configurable.py +667 -0
  33. ciris_adapters/home_assistant/manifest.json +203 -0
  34. ciris_adapters/home_assistant/schemas.py +129 -0
  35. ciris_adapters/home_assistant/service.py +751 -0
  36. ciris_adapters/home_assistant/tool_service.py +441 -0
  37. ciris_adapters/mcp_client/__init__.py +82 -0
  38. ciris_adapters/mcp_client/adapter.py +847 -0
  39. ciris_adapters/mcp_client/config.py +280 -0
  40. ciris_adapters/mcp_client/configurable.py +422 -0
  41. ciris_adapters/mcp_client/manifest.json +185 -0
  42. ciris_adapters/mcp_client/mcp_communication_service.py +393 -0
  43. ciris_adapters/mcp_client/mcp_tool_service.py +463 -0
  44. ciris_adapters/mcp_client/mcp_wise_service.py +394 -0
  45. ciris_adapters/mcp_client/schemas.py +149 -0
  46. ciris_adapters/mcp_client/security.py +592 -0
  47. ciris_adapters/mcp_common/__init__.py +44 -0
  48. ciris_adapters/mcp_common/manifest.json +25 -0
  49. ciris_adapters/mcp_common/protocol.py +315 -0
  50. ciris_adapters/mcp_common/schemas.py +225 -0
  51. ciris_adapters/mcp_server/__init__.py +47 -0
  52. ciris_adapters/mcp_server/adapter.py +581 -0
  53. ciris_adapters/mcp_server/config.py +260 -0
  54. ciris_adapters/mcp_server/configurable.py +393 -0
  55. ciris_adapters/mcp_server/handlers.py +663 -0
  56. ciris_adapters/mcp_server/manifest.json +211 -0
  57. ciris_adapters/mcp_server/security.py +500 -0
  58. ciris_adapters/mock_llm/README.md +117 -0
  59. ciris_adapters/mock_llm/__init__.py +21 -0
  60. ciris_adapters/mock_llm/adapter.py +131 -0
  61. ciris_adapters/mock_llm/configurable.py +237 -0
  62. ciris_adapters/mock_llm/manifest.json +106 -0
  63. ciris_adapters/mock_llm/protocol.py +37 -0
  64. ciris_adapters/mock_llm/responses.py +520 -0
  65. ciris_adapters/mock_llm/responses_action_selection.py +1041 -0
  66. ciris_adapters/mock_llm/responses_epistemic.py +17 -0
  67. ciris_adapters/mock_llm/responses_feedback.py +27 -0
  68. ciris_adapters/mock_llm/schemas.py +35 -0
  69. ciris_adapters/mock_llm/service.py +294 -0
  70. ciris_adapters/navigation/__init__.py +21 -0
  71. ciris_adapters/navigation/adapter.py +129 -0
  72. ciris_adapters/navigation/configurable.py +239 -0
  73. ciris_adapters/navigation/manifest.json +104 -0
  74. ciris_adapters/navigation/service.py +487 -0
  75. ciris_adapters/reddit/README.md +132 -0
  76. ciris_adapters/reddit/REDDIT_ADAPTER_ANALYSIS.md +715 -0
  77. ciris_adapters/reddit/REDDIT_ADAPTER_SUMMARY.txt +278 -0
  78. ciris_adapters/reddit/REDDIT_ANALYSIS_INDEX.md +307 -0
  79. ciris_adapters/reddit/REDDIT_PRODUCTION_READINESS_PLAN.md +518 -0
  80. ciris_adapters/reddit/__init__.py +15 -0
  81. ciris_adapters/reddit/adapter.py +189 -0
  82. ciris_adapters/reddit/configurable.py +274 -0
  83. ciris_adapters/reddit/error_handler.py +307 -0
  84. ciris_adapters/reddit/manifest.json +218 -0
  85. ciris_adapters/reddit/observer.py +532 -0
  86. ciris_adapters/reddit/protocol.py +34 -0
  87. ciris_adapters/reddit/schemas.py +433 -0
  88. ciris_adapters/reddit/service.py +1471 -0
  89. ciris_adapters/sample_adapter/README.md +474 -0
  90. ciris_adapters/sample_adapter/__init__.py +45 -0
  91. ciris_adapters/sample_adapter/adapter.py +208 -0
  92. ciris_adapters/sample_adapter/configurable.py +469 -0
  93. ciris_adapters/sample_adapter/manifest.json +247 -0
  94. ciris_adapters/sample_adapter/services.py +486 -0
  95. ciris_adapters/weather/__init__.py +16 -0
  96. ciris_adapters/weather/adapter.py +130 -0
  97. ciris_adapters/weather/configurable.py +240 -0
  98. ciris_adapters/weather/manifest.json +156 -0
  99. ciris_adapters/weather/service.py +600 -0
  100. ciris_agent-1.7.7.dist-info/METADATA +284 -0
  101. ciris_agent-1.7.7.dist-info/RECORD +986 -0
  102. ciris_agent-1.7.7.dist-info/WHEEL +5 -0
  103. ciris_agent-1.7.7.dist-info/entry_points.txt +15 -0
  104. ciris_agent-1.7.7.dist-info/licenses/LICENSE +205 -0
  105. ciris_agent-1.7.7.dist-info/licenses/NOTICE +82 -0
  106. ciris_agent-1.7.7.dist-info/top_level.txt +4 -0
  107. ciris_engine/__init__.py +15 -0
  108. ciris_engine/ciris_templates/ally.yaml +632 -0
  109. ciris_engine/ciris_templates/default.yaml +411 -0
  110. ciris_engine/ciris_templates/echo-core.yaml +629 -0
  111. ciris_engine/ciris_templates/echo-speculative.yaml +764 -0
  112. ciris_engine/ciris_templates/echo.yaml +647 -0
  113. ciris_engine/ciris_templates/sage.yaml +332 -0
  114. ciris_engine/ciris_templates/scout.yaml +338 -0
  115. ciris_engine/ciris_templates/test.yaml +168 -0
  116. ciris_engine/cli.py +42 -0
  117. ciris_engine/config/CIRIS_SERVICES.json +19 -0
  118. ciris_engine/config/MODEL_CAPABILITIES.json +419 -0
  119. ciris_engine/config/PRICING_DATA.json +179 -0
  120. ciris_engine/config/__init__.py +50 -0
  121. ciris_engine/config/ciris_services.py +113 -0
  122. ciris_engine/config/model_capabilities.py +388 -0
  123. ciris_engine/config/pricing_models.py +276 -0
  124. ciris_engine/constants.py +35 -0
  125. ciris_engine/data/__init__.py +1 -0
  126. ciris_engine/data/covenant_1.0b.txt +978 -0
  127. ciris_engine/gui_static/11steps.svg +107 -0
  128. ciris_engine/gui_static/2x-schematics.png +0 -0
  129. ciris_engine/gui_static/404/index.html +1 -0
  130. ciris_engine/gui_static/404.html +1 -0
  131. ciris_engine/gui_static/_next/static/0edhkwDxd5UccTsCmtaBi/_buildManifest.js +1 -0
  132. ciris_engine/gui_static/_next/static/0edhkwDxd5UccTsCmtaBi/_ssgManifest.js +1 -0
  133. ciris_engine/gui_static/_next/static/U-3xTQao7hc2wnAi-Uekm/_buildManifest.js +1 -0
  134. ciris_engine/gui_static/_next/static/U-3xTQao7hc2wnAi-Uekm/_ssgManifest.js +1 -0
  135. ciris_engine/gui_static/_next/static/chunks/3297-60e86ba0f8a7b040.js +1 -0
  136. ciris_engine/gui_static/_next/static/chunks/3835-2aad4b7f5f8e4643.js +1 -0
  137. ciris_engine/gui_static/_next/static/chunks/4499-99a0bc47de0b8975.js +1 -0
  138. ciris_engine/gui_static/_next/static/chunks/4534-af88cd4ba6e99bff.js +1 -0
  139. ciris_engine/gui_static/_next/static/chunks/4541-84b455f9e0dc4cfe.js +1 -0
  140. ciris_engine/gui_static/_next/static/chunks/4789-61412711484754bb.js +1 -0
  141. ciris_engine/gui_static/_next/static/chunks/6539-c6398bc9d7018430.js +1 -0
  142. ciris_engine/gui_static/_next/static/chunks/704-8e827b26cc8c2d32.js +1 -0
  143. ciris_engine/gui_static/_next/static/chunks/704-fb45d630f3192c6f.js +1 -0
  144. ciris_engine/gui_static/_next/static/chunks/8072-de4952a2e6d2b33f.js +1 -0
  145. ciris_engine/gui_static/_next/static/chunks/8315-b91d03a3949db0af.js +1 -0
  146. ciris_engine/gui_static/_next/static/chunks/8386-f93a83ccbd789bd9.js +1 -0
  147. ciris_engine/gui_static/_next/static/chunks/87c73c54-781a7f35148d5433.js +1 -0
  148. ciris_engine/gui_static/_next/static/chunks/8903-fefea3339a02d41b.js +1 -0
  149. ciris_engine/gui_static/_next/static/chunks/9090-e66485adf8d9d990.js +1 -0
  150. ciris_engine/gui_static/_next/static/chunks/app/_not-found/page-a67d9808462c23b1.js +1 -0
  151. ciris_engine/gui_static/_next/static/chunks/app/account/api-keys/page-2d7ee1583bbbd02e.js +1 -0
  152. ciris_engine/gui_static/_next/static/chunks/app/account/api-keys/page-6a3c2bae6fe92b7b.js +1 -0
  153. ciris_engine/gui_static/_next/static/chunks/app/account/consent/page-2ed3a035136bc4e8.js +1 -0
  154. ciris_engine/gui_static/_next/static/chunks/app/account/consent/page-b2f5c91844a32422.js +1 -0
  155. ciris_engine/gui_static/_next/static/chunks/app/account/page-25b90f89af3ea58c.js +1 -0
  156. ciris_engine/gui_static/_next/static/chunks/app/account/page-b65d16c94ecaf69c.js +1 -0
  157. ciris_engine/gui_static/_next/static/chunks/app/account/privacy/page-675b6d05c8f9184f.js +1 -0
  158. ciris_engine/gui_static/_next/static/chunks/app/account/privacy/page-cbee2e1c8ab52145.js +1 -0
  159. ciris_engine/gui_static/_next/static/chunks/app/account/settings/page-0f44da06697cf9f0.js +1 -0
  160. ciris_engine/gui_static/_next/static/chunks/app/account/settings/page-563420253577edbf.js +1 -0
  161. ciris_engine/gui_static/_next/static/chunks/app/adapters/page-1854631018bc32be.js +1 -0
  162. ciris_engine/gui_static/_next/static/chunks/app/agents/page-8353752c176a7c70.js +1 -0
  163. ciris_engine/gui_static/_next/static/chunks/app/agents/page-f61a529f110a6040.js +1 -0
  164. ciris_engine/gui_static/_next/static/chunks/app/api-demo/page-7f19b9d20d39be28.js +1 -0
  165. ciris_engine/gui_static/_next/static/chunks/app/api-demo/page-d1063938f249b8bd.js +1 -0
  166. ciris_engine/gui_static/_next/static/chunks/app/audit/page-321b6728b8fff0bb.js +1 -0
  167. ciris_engine/gui_static/_next/static/chunks/app/audit/page-ebac35ca961a1277.js +1 -0
  168. ciris_engine/gui_static/_next/static/chunks/app/billing/page-6f3dc3bd02924f8e.js +1 -0
  169. ciris_engine/gui_static/_next/static/chunks/app/billing/page-fa4a469f814c821a.js +1 -0
  170. ciris_engine/gui_static/_next/static/chunks/app/comms/page-0d4f734269addd8f.js +1 -0
  171. ciris_engine/gui_static/_next/static/chunks/app/comms/page-79227d426050089c.js +1 -0
  172. ciris_engine/gui_static/_next/static/chunks/app/config/page-018d21d683b6e5bc.js +1 -0
  173. ciris_engine/gui_static/_next/static/chunks/app/config/page-2aa5a5363ca2a371.js +1 -0
  174. ciris_engine/gui_static/_next/static/chunks/app/consent/page-198373205fd316e2.js +1 -0
  175. ciris_engine/gui_static/_next/static/chunks/app/consent/page-f2ca39e7713b13f8.js +1 -0
  176. ciris_engine/gui_static/_next/static/chunks/app/dashboard/page-1dd5a196f643c60d.js +1 -0
  177. ciris_engine/gui_static/_next/static/chunks/app/dashboard/page-530a04d3abbb8cda.js +1 -0
  178. ciris_engine/gui_static/_next/static/chunks/app/docs/page-3193b06d094ab654.js +1 -0
  179. ciris_engine/gui_static/_next/static/chunks/app/docs/page-330e996dedb87aba.js +1 -0
  180. ciris_engine/gui_static/_next/static/chunks/app/layout-0a70f5fc460298b1.js +1 -0
  181. ciris_engine/gui_static/_next/static/chunks/app/layout-21f2f99dd5b336e9.js +1 -0
  182. ciris_engine/gui_static/_next/static/chunks/app/login/page-33240e6c6034a49d.js +1 -0
  183. ciris_engine/gui_static/_next/static/chunks/app/login/page-68ffab6d54a7fdcd.js +1 -0
  184. ciris_engine/gui_static/_next/static/chunks/app/logs/page-8a6167aecc4a475c.js +1 -0
  185. ciris_engine/gui_static/_next/static/chunks/app/memory/page-9ca8c5d0056de3ff.js +1 -0
  186. ciris_engine/gui_static/_next/static/chunks/app/memory/page-e961226941c18f81.js +1 -0
  187. ciris_engine/gui_static/_next/static/chunks/app/page-6fdb065a787a4974.js +1 -0
  188. ciris_engine/gui_static/_next/static/chunks/app/page-89f87d431be6064a.js +1 -0
  189. ciris_engine/gui_static/_next/static/chunks/app/runtime/page-2e728b9c43aa164d.js +1 -0
  190. ciris_engine/gui_static/_next/static/chunks/app/runtime/page-c7dd033dc40a72f0.js +1 -0
  191. ciris_engine/gui_static/_next/static/chunks/app/services/page-ae9f0bdf11d01a95.js +1 -0
  192. ciris_engine/gui_static/_next/static/chunks/app/services/page-b10feb79ca5d75e5.js +1 -0
  193. ciris_engine/gui_static/_next/static/chunks/app/sessions/page-13ebe7ef1c16ae11.js +1 -0
  194. ciris_engine/gui_static/_next/static/chunks/app/sessions/page-e6c82b16d617f785.js +1 -0
  195. ciris_engine/gui_static/_next/static/chunks/app/setup/page-0beb5f5b5a5c20fc.js +1 -0
  196. ciris_engine/gui_static/_next/static/chunks/app/setup/page-2595e729eae30c0e.js +1 -0
  197. ciris_engine/gui_static/_next/static/chunks/app/status-dashboard/page-1037c987aecc3653.js +1 -0
  198. ciris_engine/gui_static/_next/static/chunks/app/status-dashboard/page-2ffd147f6d3162ff.js +1 -0
  199. ciris_engine/gui_static/_next/static/chunks/app/system/page-2c5798d58cafcd91.js +1 -0
  200. ciris_engine/gui_static/_next/static/chunks/app/system/page-505b1ba4eceb01c3.js +1 -0
  201. ciris_engine/gui_static/_next/static/chunks/app/test-auth/page-b0cad31d5cb1b2fa.js +1 -0
  202. ciris_engine/gui_static/_next/static/chunks/app/test-auth/page-f3ecd7a8012df230.js +1 -0
  203. ciris_engine/gui_static/_next/static/chunks/app/test-login/page-f35117fdc4105801.js +1 -0
  204. ciris_engine/gui_static/_next/static/chunks/app/test-login/page-fb583a7924114906.js +1 -0
  205. ciris_engine/gui_static/_next/static/chunks/app/test-sdk/page-50f116fd76935563.js +1 -0
  206. ciris_engine/gui_static/_next/static/chunks/app/test-sdk/page-c37d8aa5ba623a44.js +1 -0
  207. ciris_engine/gui_static/_next/static/chunks/app/tools/page-429aec7a707777ef.js +1 -0
  208. ciris_engine/gui_static/_next/static/chunks/app/tools/page-5f705aad60e0c04e.js +1 -0
  209. ciris_engine/gui_static/_next/static/chunks/app/users/page-13476b8b0f3808cc.js +1 -0
  210. ciris_engine/gui_static/_next/static/chunks/app/users/page-7e500d154ed5bba4.js +1 -0
  211. ciris_engine/gui_static/_next/static/chunks/app/wa/page-cc4a9d8a5cb44d08.js +1 -0
  212. ciris_engine/gui_static/_next/static/chunks/app/wa/page-ec3e429efbc79230.js +1 -0
  213. ciris_engine/gui_static/_next/static/chunks/framework-9d29490f5ba089ba.js +1 -0
  214. ciris_engine/gui_static/_next/static/chunks/main-1f554952e47a82c4.js +1 -0
  215. ciris_engine/gui_static/_next/static/chunks/main-app-26fa8aed029082e5.js +1 -0
  216. ciris_engine/gui_static/_next/static/chunks/main-app-97b0486ef6bcef25.js +1 -0
  217. ciris_engine/gui_static/_next/static/chunks/pages/_app-6ce685456e616eb2.js +1 -0
  218. ciris_engine/gui_static/_next/static/chunks/pages/_error-d4bce98d93fe21e7.js +1 -0
  219. ciris_engine/gui_static/_next/static/chunks/polyfills-42372ed130431b0a.js +1 -0
  220. ciris_engine/gui_static/_next/static/chunks/webpack-fcebd240b7f8477d.js +1 -0
  221. ciris_engine/gui_static/_next/static/css/16b94b1fe0cc6e37.css +3 -0
  222. ciris_engine/gui_static/_next/static/css/77a24ceaae86deff.css +3 -0
  223. ciris_engine/gui_static/_next/static/media/4cf2300e9c8272f7-s.p.woff2 +0 -0
  224. ciris_engine/gui_static/_next/static/media/747892c23ea88013-s.woff2 +0 -0
  225. ciris_engine/gui_static/_next/static/media/8d697b304b401681-s.woff2 +0 -0
  226. ciris_engine/gui_static/_next/static/media/93f479601ee12b01-s.p.woff2 +0 -0
  227. ciris_engine/gui_static/_next/static/media/9610d9e46709d722-s.woff2 +0 -0
  228. ciris_engine/gui_static/_next/static/media/ba015fad6dcf6784-s.woff2 +0 -0
  229. ciris_engine/gui_static/_next/static/media/d8298875641ec7d4-s.p.woff2 +0 -0
  230. ciris_engine/gui_static/account/api-keys/index.html +1 -0
  231. ciris_engine/gui_static/account/api-keys/index.txt +27 -0
  232. ciris_engine/gui_static/account/consent/index.html +1 -0
  233. ciris_engine/gui_static/account/consent/index.txt +27 -0
  234. ciris_engine/gui_static/account/index.html +1 -0
  235. ciris_engine/gui_static/account/index.txt +27 -0
  236. ciris_engine/gui_static/account/privacy/index.html +1 -0
  237. ciris_engine/gui_static/account/privacy/index.txt +27 -0
  238. ciris_engine/gui_static/account/settings/index.html +1 -0
  239. ciris_engine/gui_static/account/settings/index.txt +27 -0
  240. ciris_engine/gui_static/adapters/index.html +1 -0
  241. ciris_engine/gui_static/adapters/index.txt +27 -0
  242. ciris_engine/gui_static/agents/index.html +1 -0
  243. ciris_engine/gui_static/agents/index.txt +27 -0
  244. ciris_engine/gui_static/andrew-roberts-euBRXcx57T4-unsplash.jpg +0 -0
  245. ciris_engine/gui_static/api-demo/index.html +1 -0
  246. ciris_engine/gui_static/api-demo/index.txt +27 -0
  247. ciris_engine/gui_static/audit/index.html +1 -0
  248. ciris_engine/gui_static/audit/index.txt +27 -0
  249. ciris_engine/gui_static/billing/index.html +1 -0
  250. ciris_engine/gui_static/billing/index.txt +27 -0
  251. ciris_engine/gui_static/blurryinfo.png +0 -0
  252. ciris_engine/gui_static/chip-vincent-PkQDwfl9Flc-unsplash.jpg +0 -0
  253. ciris_engine/gui_static/ciris-architecture.svg +338 -0
  254. ciris_engine/gui_static/comms/index.html +1 -0
  255. ciris_engine/gui_static/comms/index.txt +27 -0
  256. ciris_engine/gui_static/config/index.html +1 -0
  257. ciris_engine/gui_static/config/index.txt +27 -0
  258. ciris_engine/gui_static/consent/index.html +1 -0
  259. ciris_engine/gui_static/consent/index.txt +27 -0
  260. ciris_engine/gui_static/dashboard/index.html +1 -0
  261. ciris_engine/gui_static/dashboard/index.txt +27 -0
  262. ciris_engine/gui_static/docs/index.html +1 -0
  263. ciris_engine/gui_static/docs/index.txt +27 -0
  264. ciris_engine/gui_static/eric.png +0 -0
  265. ciris_engine/gui_static/file.svg +1 -0
  266. ciris_engine/gui_static/globe.svg +1 -0
  267. ciris_engine/gui_static/index.html +1 -0
  268. ciris_engine/gui_static/index.txt +27 -0
  269. ciris_engine/gui_static/infogfx-1@2x.png +0 -0
  270. ciris_engine/gui_static/infogfx-2.png +0 -0
  271. ciris_engine/gui_static/infogfx-dark-1.png +0 -0
  272. ciris_engine/gui_static/kelly-vohs-soSTXmIxTDU-unsplash.jpg +0 -0
  273. ciris_engine/gui_static/login/index.html +1 -0
  274. ciris_engine/gui_static/login/index.txt +27 -0
  275. ciris_engine/gui_static/logs/index.html +1 -0
  276. ciris_engine/gui_static/logs/index.txt +27 -0
  277. ciris_engine/gui_static/memory/index.html +1 -0
  278. ciris_engine/gui_static/memory/index.txt +27 -0
  279. ciris_engine/gui_static/nathan-farrish-ArcTfEoBgzs-unsplash.jpg +0 -0
  280. ciris_engine/gui_static/next.svg +1 -0
  281. ciris_engine/gui_static/overview.svg +512 -0
  282. ciris_engine/gui_static/overview1.svg +407 -0
  283. ciris_engine/gui_static/overview2.svg +370 -0
  284. ciris_engine/gui_static/pipeline-visualization.svg +278 -0
  285. ciris_engine/gui_static/privacy-policy.html +160 -0
  286. ciris_engine/gui_static/runtime/index.html +8 -0
  287. ciris_engine/gui_static/runtime/index.txt +27 -0
  288. ciris_engine/gui_static/services/index.html +1 -0
  289. ciris_engine/gui_static/services/index.txt +27 -0
  290. ciris_engine/gui_static/sessions/index.html +1 -0
  291. ciris_engine/gui_static/sessions/index.txt +27 -0
  292. ciris_engine/gui_static/setup/index.html +1 -0
  293. ciris_engine/gui_static/setup/index.txt +27 -0
  294. ciris_engine/gui_static/status-dashboard/index.html +1 -0
  295. ciris_engine/gui_static/status-dashboard/index.txt +27 -0
  296. ciris_engine/gui_static/system/index.html +1 -0
  297. ciris_engine/gui_static/system/index.txt +27 -0
  298. ciris_engine/gui_static/terms-of-service.html +174 -0
  299. ciris_engine/gui_static/test-auth/index.html +1 -0
  300. ciris_engine/gui_static/test-auth/index.txt +27 -0
  301. ciris_engine/gui_static/test-login/index.html +1 -0
  302. ciris_engine/gui_static/test-login/index.txt +27 -0
  303. ciris_engine/gui_static/test-sdk/index.html +1 -0
  304. ciris_engine/gui_static/test-sdk/index.txt +27 -0
  305. ciris_engine/gui_static/tools/index.html +1 -0
  306. ciris_engine/gui_static/tools/index.txt +27 -0
  307. ciris_engine/gui_static/users/index.html +1 -0
  308. ciris_engine/gui_static/users/index.txt +27 -0
  309. ciris_engine/gui_static/vercel.svg +1 -0
  310. ciris_engine/gui_static/videos/video1.mp4 +0 -0
  311. ciris_engine/gui_static/videos/video3.mp4 +0 -0
  312. ciris_engine/gui_static/wa/index.html +1 -0
  313. ciris_engine/gui_static/wa/index.txt +27 -0
  314. ciris_engine/gui_static/window.svg +1 -0
  315. ciris_engine/logic/__init__.py +8 -0
  316. ciris_engine/logic/adapters/__init__.py +74 -0
  317. ciris_engine/logic/adapters/api/__init__.py +5 -0
  318. ciris_engine/logic/adapters/api/adapter.py +1037 -0
  319. ciris_engine/logic/adapters/api/api_communication.py +370 -0
  320. ciris_engine/logic/adapters/api/api_document.py +330 -0
  321. ciris_engine/logic/adapters/api/api_observer.py +24 -0
  322. ciris_engine/logic/adapters/api/api_runtime_control.py +388 -0
  323. ciris_engine/logic/adapters/api/api_tools.py +299 -0
  324. ciris_engine/logic/adapters/api/api_vision.py +215 -0
  325. ciris_engine/logic/adapters/api/app.py +272 -0
  326. ciris_engine/logic/adapters/api/auth.py +159 -0
  327. ciris_engine/logic/adapters/api/config.py +101 -0
  328. ciris_engine/logic/adapters/api/constants.py +55 -0
  329. ciris_engine/logic/adapters/api/dependencies/__init__.py +1 -0
  330. ciris_engine/logic/adapters/api/dependencies/auth.py +260 -0
  331. ciris_engine/logic/adapters/api/endpoints/__init__.py +1 -0
  332. ciris_engine/logic/adapters/api/endpoints/emergency.py +86 -0
  333. ciris_engine/logic/adapters/api/middleware/__init__.py +1 -0
  334. ciris_engine/logic/adapters/api/middleware/rate_limiter.py +302 -0
  335. ciris_engine/logic/adapters/api/models.py +29 -0
  336. ciris_engine/logic/adapters/api/routes/__init__.py +52 -0
  337. ciris_engine/logic/adapters/api/routes/agent.py +1762 -0
  338. ciris_engine/logic/adapters/api/routes/audit.py +707 -0
  339. ciris_engine/logic/adapters/api/routes/auth.py +1745 -0
  340. ciris_engine/logic/adapters/api/routes/billing.py +895 -0
  341. ciris_engine/logic/adapters/api/routes/config.py +329 -0
  342. ciris_engine/logic/adapters/api/routes/connectors.py +534 -0
  343. ciris_engine/logic/adapters/api/routes/consent.py +637 -0
  344. ciris_engine/logic/adapters/api/routes/dsar.py +637 -0
  345. ciris_engine/logic/adapters/api/routes/dsar_multi_source.py +484 -0
  346. ciris_engine/logic/adapters/api/routes/emergency.py +302 -0
  347. ciris_engine/logic/adapters/api/routes/memory.py +733 -0
  348. ciris_engine/logic/adapters/api/routes/memory_filters.py +230 -0
  349. ciris_engine/logic/adapters/api/routes/memory_models.py +112 -0
  350. ciris_engine/logic/adapters/api/routes/memory_queries.py +236 -0
  351. ciris_engine/logic/adapters/api/routes/memory_query_helpers.py +394 -0
  352. ciris_engine/logic/adapters/api/routes/memory_visualization.py +359 -0
  353. ciris_engine/logic/adapters/api/routes/memory_visualization_helpers.py +110 -0
  354. ciris_engine/logic/adapters/api/routes/partnership.py +541 -0
  355. ciris_engine/logic/adapters/api/routes/setup.py +1374 -0
  356. ciris_engine/logic/adapters/api/routes/system.py +3049 -0
  357. ciris_engine/logic/adapters/api/routes/system_extensions.py +952 -0
  358. ciris_engine/logic/adapters/api/routes/telemetry.py +1987 -0
  359. ciris_engine/logic/adapters/api/routes/telemetry_converters.py +141 -0
  360. ciris_engine/logic/adapters/api/routes/telemetry_helpers.py +111 -0
  361. ciris_engine/logic/adapters/api/routes/telemetry_logs_reader.py +280 -0
  362. ciris_engine/logic/adapters/api/routes/telemetry_metrics.py +131 -0
  363. ciris_engine/logic/adapters/api/routes/telemetry_models.py +190 -0
  364. ciris_engine/logic/adapters/api/routes/telemetry_otlp.py +878 -0
  365. ciris_engine/logic/adapters/api/routes/telemetry_resource_helpers.py +191 -0
  366. ciris_engine/logic/adapters/api/routes/tickets.py +541 -0
  367. ciris_engine/logic/adapters/api/routes/tools.py +556 -0
  368. ciris_engine/logic/adapters/api/routes/transparency.py +281 -0
  369. ciris_engine/logic/adapters/api/routes/users.py +981 -0
  370. ciris_engine/logic/adapters/api/routes/verification.py +373 -0
  371. ciris_engine/logic/adapters/api/routes/wa.py +369 -0
  372. ciris_engine/logic/adapters/api/service_configuration.py +177 -0
  373. ciris_engine/logic/adapters/api/services/__init__.py +1 -0
  374. ciris_engine/logic/adapters/api/services/auth_service.py +1417 -0
  375. ciris_engine/logic/adapters/api/services/oauth_security.py +68 -0
  376. ciris_engine/logic/adapters/base.py +141 -0
  377. ciris_engine/logic/adapters/base_adapter.py +73 -0
  378. ciris_engine/logic/adapters/base_observer.py +1141 -0
  379. ciris_engine/logic/adapters/base_vision.py +312 -0
  380. ciris_engine/logic/adapters/cirisnode_client.py +307 -0
  381. ciris_engine/logic/adapters/cli/__init__.py +3 -0
  382. ciris_engine/logic/adapters/cli/adapter.py +207 -0
  383. ciris_engine/logic/adapters/cli/cli_adapter.py +902 -0
  384. ciris_engine/logic/adapters/cli/cli_observer.py +268 -0
  385. ciris_engine/logic/adapters/cli/cli_tools.py +427 -0
  386. ciris_engine/logic/adapters/cli/cli_wa_service.py +134 -0
  387. ciris_engine/logic/adapters/cli/config.py +73 -0
  388. ciris_engine/logic/adapters/discord/__init__.py +3 -0
  389. ciris_engine/logic/adapters/discord/adapter.py +783 -0
  390. ciris_engine/logic/adapters/discord/ciris_discord_client.py +159 -0
  391. ciris_engine/logic/adapters/discord/config.py +177 -0
  392. ciris_engine/logic/adapters/discord/constants.py +185 -0
  393. ciris_engine/logic/adapters/discord/discord-stubs.pyi +50 -0
  394. ciris_engine/logic/adapters/discord/discord_adapter.py +1584 -0
  395. ciris_engine/logic/adapters/discord/discord_audit.py +150 -0
  396. ciris_engine/logic/adapters/discord/discord_channel_manager.py +351 -0
  397. ciris_engine/logic/adapters/discord/discord_connection_manager.py +313 -0
  398. ciris_engine/logic/adapters/discord/discord_embed_formatter.py +369 -0
  399. ciris_engine/logic/adapters/discord/discord_error_classifier.py +302 -0
  400. ciris_engine/logic/adapters/discord/discord_error_handler.py +316 -0
  401. ciris_engine/logic/adapters/discord/discord_guidance_handler.py +460 -0
  402. ciris_engine/logic/adapters/discord/discord_message_handler.py +207 -0
  403. ciris_engine/logic/adapters/discord/discord_observer.py +670 -0
  404. ciris_engine/logic/adapters/discord/discord_rate_limiter.py +249 -0
  405. ciris_engine/logic/adapters/discord/discord_reaction_handler.py +278 -0
  406. ciris_engine/logic/adapters/discord/discord_tool_handler.py +465 -0
  407. ciris_engine/logic/adapters/discord/discord_tool_service.py +790 -0
  408. ciris_engine/logic/adapters/discord/discord_tools.py +90 -0
  409. ciris_engine/logic/adapters/discord/discord_vision_helper.py +148 -0
  410. ciris_engine/logic/adapters/discord/py.typed +0 -0
  411. ciris_engine/logic/adapters/document_parser.py +320 -0
  412. ciris_engine/logic/audit/__init__.py +10 -0
  413. ciris_engine/logic/audit/hash_chain.py +313 -0
  414. ciris_engine/logic/audit/signature_manager.py +352 -0
  415. ciris_engine/logic/audit/verifier.py +408 -0
  416. ciris_engine/logic/buses/__init__.py +21 -0
  417. ciris_engine/logic/buses/base_bus.py +178 -0
  418. ciris_engine/logic/buses/bus_manager.py +121 -0
  419. ciris_engine/logic/buses/communication_bus.py +387 -0
  420. ciris_engine/logic/buses/llm_bus.py +722 -0
  421. ciris_engine/logic/buses/memory_bus.py +577 -0
  422. ciris_engine/logic/buses/prohibitions.py +502 -0
  423. ciris_engine/logic/buses/runtime_control_bus.py +539 -0
  424. ciris_engine/logic/buses/tool_bus.py +482 -0
  425. ciris_engine/logic/buses/wise_bus.py +684 -0
  426. ciris_engine/logic/config/__init__.py +25 -0
  427. ciris_engine/logic/config/bootstrap.py +255 -0
  428. ciris_engine/logic/config/config_accessor.py +202 -0
  429. ciris_engine/logic/config/db_paths.py +194 -0
  430. ciris_engine/logic/config/env_utils.py +39 -0
  431. ciris_engine/logic/conscience/__init__.py +16 -0
  432. ciris_engine/logic/conscience/build_deferral_package.py +0 -0
  433. ciris_engine/logic/conscience/core.py +688 -0
  434. ciris_engine/logic/conscience/interface.py +33 -0
  435. ciris_engine/logic/conscience/registry.py +76 -0
  436. ciris_engine/logic/conscience/thought_depth_guardrail.py +231 -0
  437. ciris_engine/logic/conscience/updated_status_conscience.py +156 -0
  438. ciris_engine/logic/context/__init__.py +10 -0
  439. ciris_engine/logic/context/batch_context.py +550 -0
  440. ciris_engine/logic/context/builder.py +149 -0
  441. ciris_engine/logic/context/channel_resolution.py +136 -0
  442. ciris_engine/logic/context/secrets_snapshot.py +52 -0
  443. ciris_engine/logic/context/system_snapshot.py +116 -0
  444. ciris_engine/logic/context/system_snapshot_helpers.py +1651 -0
  445. ciris_engine/logic/covenant/__init__.py +33 -0
  446. ciris_engine/logic/covenant/executor.py +303 -0
  447. ciris_engine/logic/covenant/extractor.py +382 -0
  448. ciris_engine/logic/covenant/handler.py +241 -0
  449. ciris_engine/logic/covenant/verifier.py +383 -0
  450. ciris_engine/logic/dma/__init__.py +15 -0
  451. ciris_engine/logic/dma/action_selection/__init__.py +11 -0
  452. ciris_engine/logic/dma/action_selection/action_instruction_generator.py +444 -0
  453. ciris_engine/logic/dma/action_selection/context_builder.py +508 -0
  454. ciris_engine/logic/dma/action_selection/faculty_integration.py +193 -0
  455. ciris_engine/logic/dma/action_selection/special_cases.py +132 -0
  456. ciris_engine/logic/dma/action_selection_pdma.py +365 -0
  457. ciris_engine/logic/dma/base_dma.py +335 -0
  458. ciris_engine/logic/dma/csdma.py +239 -0
  459. ciris_engine/logic/dma/dma_executor.py +575 -0
  460. ciris_engine/logic/dma/dsdma_base.py +410 -0
  461. ciris_engine/logic/dma/exceptions.py +4 -0
  462. ciris_engine/logic/dma/factory.py +150 -0
  463. ciris_engine/logic/dma/pdma.py +120 -0
  464. ciris_engine/logic/dma/prompt_loader.py +189 -0
  465. ciris_engine/logic/dma/prompts/action_selection_pdma.yml +58 -0
  466. ciris_engine/logic/dma/prompts/csdma_common_sense.yml +28 -0
  467. ciris_engine/logic/dma/prompts/dsdma_base.yml +17 -0
  468. ciris_engine/logic/dma/prompts/pdma_ethical.yml +42 -0
  469. ciris_engine/logic/formatters/__init__.py +26 -0
  470. ciris_engine/logic/formatters/crisis_resources.py +80 -0
  471. ciris_engine/logic/formatters/escalation.py +21 -0
  472. ciris_engine/logic/formatters/identity.py +224 -0
  473. ciris_engine/logic/formatters/prompt_blocks.py +64 -0
  474. ciris_engine/logic/formatters/system_snapshot.py +193 -0
  475. ciris_engine/logic/formatters/user_profiles.py +108 -0
  476. ciris_engine/logic/handlers/__init__.py +1 -0
  477. ciris_engine/logic/handlers/control/__init__.py +1 -0
  478. ciris_engine/logic/handlers/control/defer_handler.py +195 -0
  479. ciris_engine/logic/handlers/control/ponder_handler.py +154 -0
  480. ciris_engine/logic/handlers/control/reject_handler.py +81 -0
  481. ciris_engine/logic/handlers/external/__init__.py +1 -0
  482. ciris_engine/logic/handlers/external/observe_handler.py +154 -0
  483. ciris_engine/logic/handlers/external/speak_handler.py +250 -0
  484. ciris_engine/logic/handlers/external/tool_handler.py +148 -0
  485. ciris_engine/logic/handlers/memory/__init__.py +1 -0
  486. ciris_engine/logic/handlers/memory/forget_handler.py +107 -0
  487. ciris_engine/logic/handlers/memory/memorize_handler.py +391 -0
  488. ciris_engine/logic/handlers/memory/recall_handler.py +213 -0
  489. ciris_engine/logic/handlers/terminal/__init__.py +1 -0
  490. ciris_engine/logic/handlers/terminal/task_complete_handler.py +299 -0
  491. ciris_engine/logic/infrastructure/__init__.py +1 -0
  492. ciris_engine/logic/infrastructure/handlers/__init__.py +8 -0
  493. ciris_engine/logic/infrastructure/handlers/action_dispatcher.py +382 -0
  494. ciris_engine/logic/infrastructure/handlers/base_handler.py +450 -0
  495. ciris_engine/logic/infrastructure/handlers/exceptions.py +2 -0
  496. ciris_engine/logic/infrastructure/handlers/handler_registry.py +59 -0
  497. ciris_engine/logic/infrastructure/handlers/helpers.py +55 -0
  498. ciris_engine/logic/infrastructure/step_streaming.py +149 -0
  499. ciris_engine/logic/infrastructure/sub_services/__init__.py +1 -0
  500. ciris_engine/logic/infrastructure/sub_services/identity_variance_monitor.py +1035 -0
  501. ciris_engine/logic/infrastructure/sub_services/pattern_analysis_loop.py +758 -0
  502. ciris_engine/logic/infrastructure/sub_services/wa_cli_bootstrap.py +229 -0
  503. ciris_engine/logic/infrastructure/sub_services/wa_cli_display.py +176 -0
  504. ciris_engine/logic/infrastructure/sub_services/wa_cli_oauth.py +404 -0
  505. ciris_engine/logic/infrastructure/sub_services/wa_cli_wizard.py +181 -0
  506. ciris_engine/logic/persistence/__init__.py +130 -0
  507. ciris_engine/logic/persistence/analytics.py +97 -0
  508. ciris_engine/logic/persistence/db/__init__.py +28 -0
  509. ciris_engine/logic/persistence/db/core.py +520 -0
  510. ciris_engine/logic/persistence/db/dialect.py +380 -0
  511. ciris_engine/logic/persistence/db/execution_helpers.py +216 -0
  512. ciris_engine/logic/persistence/db/migration_runner.py +191 -0
  513. ciris_engine/logic/persistence/db/operations.py +313 -0
  514. ciris_engine/logic/persistence/db/query_builder.py +232 -0
  515. ciris_engine/logic/persistence/db/retry.py +154 -0
  516. ciris_engine/logic/persistence/db/setup.py +18 -0
  517. ciris_engine/logic/persistence/migrations/postgres/001_initial_schema.sql +4 -0
  518. ciris_engine/logic/persistence/migrations/postgres/002_add_retry_status.sql +3 -0
  519. ciris_engine/logic/persistence/migrations/postgres/003_add_task_update_tracking.sql +8 -0
  520. ciris_engine/logic/persistence/migrations/postgres/004_add_occurrence_id.sql +54 -0
  521. ciris_engine/logic/persistence/migrations/postgres/005_add_consolidation_locks.sql +22 -0
  522. ciris_engine/logic/persistence/migrations/postgres/006_add_correlation_id_unique_index.sql +16 -0
  523. ciris_engine/logic/persistence/migrations/postgres/007_add_dsar_tickets.sql +39 -0
  524. ciris_engine/logic/persistence/migrations/postgres/008_rename_to_tickets_add_sop.sql +123 -0
  525. ciris_engine/logic/persistence/migrations/postgres/009_add_ticket_status_columns.sql +39 -0
  526. ciris_engine/logic/persistence/migrations/postgres/010_add_images_to_tasks.sql +5 -0
  527. ciris_engine/logic/persistence/migrations/sqlite/001_initial_schema.sql +357 -0
  528. ciris_engine/logic/persistence/migrations/sqlite/002_add_retry_status.sql +3 -0
  529. ciris_engine/logic/persistence/migrations/sqlite/003_add_task_update_tracking.sql +8 -0
  530. ciris_engine/logic/persistence/migrations/sqlite/004_add_occurrence_id.sql +45 -0
  531. ciris_engine/logic/persistence/migrations/sqlite/005_add_consolidation_locks.sql +22 -0
  532. ciris_engine/logic/persistence/migrations/sqlite/006_add_correlation_id_unique_index.sql +16 -0
  533. ciris_engine/logic/persistence/migrations/sqlite/007_add_dsar_tickets.sql +39 -0
  534. ciris_engine/logic/persistence/migrations/sqlite/008_rename_to_tickets_add_sop.sql +120 -0
  535. ciris_engine/logic/persistence/migrations/sqlite/009_add_ticket_status_columns.sql +129 -0
  536. ciris_engine/logic/persistence/migrations/sqlite/010_add_images_to_tasks.sql +17 -0
  537. ciris_engine/logic/persistence/models/__init__.py +141 -0
  538. ciris_engine/logic/persistence/models/correlations.py +881 -0
  539. ciris_engine/logic/persistence/models/deferral.py +68 -0
  540. ciris_engine/logic/persistence/models/dsar.py +286 -0
  541. ciris_engine/logic/persistence/models/graph.py +362 -0
  542. ciris_engine/logic/persistence/models/identity.py +264 -0
  543. ciris_engine/logic/persistence/models/queue_status.py +139 -0
  544. ciris_engine/logic/persistence/models/tasks.py +1043 -0
  545. ciris_engine/logic/persistence/models/thoughts.py +400 -0
  546. ciris_engine/logic/persistence/models/tickets.py +518 -0
  547. ciris_engine/logic/persistence/stores/__init__.py +13 -0
  548. ciris_engine/logic/persistence/stores/auth_helpers.py +117 -0
  549. ciris_engine/logic/persistence/stores/authentication_store.py +414 -0
  550. ciris_engine/logic/persistence/utils.py +212 -0
  551. ciris_engine/logic/processors/__init__.py +30 -0
  552. ciris_engine/logic/processors/core/__init__.py +1 -0
  553. ciris_engine/logic/processors/core/base_processor.py +280 -0
  554. ciris_engine/logic/processors/core/main_processor.py +1777 -0
  555. ciris_engine/logic/processors/core/step_decorators.py +1583 -0
  556. ciris_engine/logic/processors/core/thought_processor/__init__.py +20 -0
  557. ciris_engine/logic/processors/core/thought_processor/action_execution.py +49 -0
  558. ciris_engine/logic/processors/core/thought_processor/conscience_execution.py +382 -0
  559. ciris_engine/logic/processors/core/thought_processor/finalize_action.py +66 -0
  560. ciris_engine/logic/processors/core/thought_processor/gather_context.py +120 -0
  561. ciris_engine/logic/processors/core/thought_processor/main.py +920 -0
  562. ciris_engine/logic/processors/core/thought_processor/perform_aspdma.py +86 -0
  563. ciris_engine/logic/processors/core/thought_processor/perform_dmas.py +106 -0
  564. ciris_engine/logic/processors/core/thought_processor/recursive_processing.py +237 -0
  565. ciris_engine/logic/processors/core/thought_processor/round_complete.py +52 -0
  566. ciris_engine/logic/processors/core/thought_processor/start_round.py +64 -0
  567. ciris_engine/logic/processors/exceptions.py +59 -0
  568. ciris_engine/logic/processors/states/__init__.py +1 -0
  569. ciris_engine/logic/processors/states/dream_processor.py +1381 -0
  570. ciris_engine/logic/processors/states/play_processor.py +141 -0
  571. ciris_engine/logic/processors/states/shutdown_processor.py +623 -0
  572. ciris_engine/logic/processors/states/solitude_processor.py +305 -0
  573. ciris_engine/logic/processors/states/wakeup_processor.py +802 -0
  574. ciris_engine/logic/processors/states/work_processor.py +742 -0
  575. ciris_engine/logic/processors/support/__init__.py +1 -0
  576. ciris_engine/logic/processors/support/dma_orchestrator.py +336 -0
  577. ciris_engine/logic/processors/support/processing_queue.py +133 -0
  578. ciris_engine/logic/processors/support/shutdown_condition_evaluator.py +294 -0
  579. ciris_engine/logic/processors/support/state_manager.py +358 -0
  580. ciris_engine/logic/processors/support/task_manager.py +303 -0
  581. ciris_engine/logic/processors/support/thought_escalation.py +116 -0
  582. ciris_engine/logic/processors/support/thought_manager.py +328 -0
  583. ciris_engine/logic/processors/support/thought_manager_enhanced.py +105 -0
  584. ciris_engine/logic/registries/__init__.py +34 -0
  585. ciris_engine/logic/registries/base.py +653 -0
  586. ciris_engine/logic/registries/circuit_breaker.py +275 -0
  587. ciris_engine/logic/registries/typed_registries.py +184 -0
  588. ciris_engine/logic/runtime/__init__.py +7 -0
  589. ciris_engine/logic/runtime/adapter_loader.py +261 -0
  590. ciris_engine/logic/runtime/adapter_manager.py +1053 -0
  591. ciris_engine/logic/runtime/ciris_runtime.py +2342 -0
  592. ciris_engine/logic/runtime/ciris_runtime_helpers.py +923 -0
  593. ciris_engine/logic/runtime/component_builder.py +361 -0
  594. ciris_engine/logic/runtime/identity_manager.py +219 -0
  595. ciris_engine/logic/runtime/module_loader.py +207 -0
  596. ciris_engine/logic/runtime/prevent_sideeffects.py +30 -0
  597. ciris_engine/logic/runtime/runtime_interface.py +23 -0
  598. ciris_engine/logic/runtime/service_initializer.py +1623 -0
  599. ciris_engine/logic/secrets/__init__.py +30 -0
  600. ciris_engine/logic/secrets/encryption.py +175 -0
  601. ciris_engine/logic/secrets/filter.py +295 -0
  602. ciris_engine/logic/secrets/service.py +652 -0
  603. ciris_engine/logic/secrets/store.py +669 -0
  604. ciris_engine/logic/services/__init__.py +1 -0
  605. ciris_engine/logic/services/adaptation/__init__.py +3 -0
  606. ciris_engine/logic/services/base_graph_service.py +142 -0
  607. ciris_engine/logic/services/base_infrastructure_service.py +69 -0
  608. ciris_engine/logic/services/base_scheduled_service.py +136 -0
  609. ciris_engine/logic/services/base_service.py +247 -0
  610. ciris_engine/logic/services/governance/__init__.py +3 -0
  611. ciris_engine/logic/services/governance/adaptive_filter/__init__.py +14 -0
  612. ciris_engine/logic/services/governance/adaptive_filter/service.py +818 -0
  613. ciris_engine/logic/services/governance/consent/__init__.py +53 -0
  614. ciris_engine/logic/services/governance/consent/air.py +403 -0
  615. ciris_engine/logic/services/governance/consent/decay.py +324 -0
  616. ciris_engine/logic/services/governance/consent/dsar_automation.py +589 -0
  617. ciris_engine/logic/services/governance/consent/exceptions.py +106 -0
  618. ciris_engine/logic/services/governance/consent/metrics.py +270 -0
  619. ciris_engine/logic/services/governance/consent/partnership.py +533 -0
  620. ciris_engine/logic/services/governance/consent/service.py +1256 -0
  621. ciris_engine/logic/services/governance/dsar/__init__.py +29 -0
  622. ciris_engine/logic/services/governance/dsar/orchestrator.py +977 -0
  623. ciris_engine/logic/services/governance/dsar/schemas.py +141 -0
  624. ciris_engine/logic/services/governance/dsar/signature_service.py +283 -0
  625. ciris_engine/logic/services/governance/self_observation/__init__.py +20 -0
  626. ciris_engine/logic/services/governance/self_observation/service.py +1153 -0
  627. ciris_engine/logic/services/governance/visibility/__init__.py +17 -0
  628. ciris_engine/logic/services/governance/visibility/service.py +512 -0
  629. ciris_engine/logic/services/governance/wise_authority/__init__.py +15 -0
  630. ciris_engine/logic/services/governance/wise_authority/service.py +827 -0
  631. ciris_engine/logic/services/graph/__init__.py +5 -0
  632. ciris_engine/logic/services/graph/audit_service/__init__.py +5 -0
  633. ciris_engine/logic/services/graph/audit_service/service.py +1675 -0
  634. ciris_engine/logic/services/graph/base.py +208 -0
  635. ciris_engine/logic/services/graph/config_service/__init__.py +5 -0
  636. ciris_engine/logic/services/graph/config_service/service.py +372 -0
  637. ciris_engine/logic/services/graph/incident_service/__init__.py +5 -0
  638. ciris_engine/logic/services/graph/incident_service/service.py +803 -0
  639. ciris_engine/logic/services/graph/memory_service.py +1120 -0
  640. ciris_engine/logic/services/graph/telemetry_service/__init__.py +5 -0
  641. ciris_engine/logic/services/graph/telemetry_service/exceptions.py +104 -0
  642. ciris_engine/logic/services/graph/telemetry_service/helpers.py +1337 -0
  643. ciris_engine/logic/services/graph/telemetry_service/service.py +2429 -0
  644. ciris_engine/logic/services/graph/tsdb_consolidation/__init__.py +17 -0
  645. ciris_engine/logic/services/graph/tsdb_consolidation/aggregation_helpers.py +355 -0
  646. ciris_engine/logic/services/graph/tsdb_consolidation/cleanup_helpers.py +438 -0
  647. ciris_engine/logic/services/graph/tsdb_consolidation/compressor.py +260 -0
  648. ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/__init__.py +27 -0
  649. ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/audit.py +326 -0
  650. ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/conversation.py +291 -0
  651. ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/memory.py +197 -0
  652. ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/metrics.py +251 -0
  653. ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/task.py +257 -0
  654. ciris_engine/logic/services/graph/tsdb_consolidation/consolidators/trace.py +363 -0
  655. ciris_engine/logic/services/graph/tsdb_consolidation/data_converter.py +545 -0
  656. ciris_engine/logic/services/graph/tsdb_consolidation/date_calculation_helpers.py +193 -0
  657. ciris_engine/logic/services/graph/tsdb_consolidation/db_query_helpers.py +296 -0
  658. ciris_engine/logic/services/graph/tsdb_consolidation/edge_helpers.py +92 -0
  659. ciris_engine/logic/services/graph/tsdb_consolidation/edge_manager.py +896 -0
  660. ciris_engine/logic/services/graph/tsdb_consolidation/extensive_helpers.py +322 -0
  661. ciris_engine/logic/services/graph/tsdb_consolidation/period_manager.py +152 -0
  662. ciris_engine/logic/services/graph/tsdb_consolidation/profound_helpers.py +277 -0
  663. ciris_engine/logic/services/graph/tsdb_consolidation/query_manager.py +812 -0
  664. ciris_engine/logic/services/graph/tsdb_consolidation/service.py +1692 -0
  665. ciris_engine/logic/services/graph/tsdb_consolidation/sql_builders.py +363 -0
  666. ciris_engine/logic/services/infrastructure/__init__.py +1 -0
  667. ciris_engine/logic/services/infrastructure/authentication/__init__.py +5 -0
  668. ciris_engine/logic/services/infrastructure/authentication/service.py +1634 -0
  669. ciris_engine/logic/services/infrastructure/database_maintenance/__init__.py +15 -0
  670. ciris_engine/logic/services/infrastructure/database_maintenance/service.py +764 -0
  671. ciris_engine/logic/services/infrastructure/resource_monitor/__init__.py +7 -0
  672. ciris_engine/logic/services/infrastructure/resource_monitor/ciris_billing_provider.py +755 -0
  673. ciris_engine/logic/services/infrastructure/resource_monitor/service.py +409 -0
  674. ciris_engine/logic/services/infrastructure/resource_monitor/simple_credit_provider.py +129 -0
  675. ciris_engine/logic/services/lifecycle/__init__.py +3 -0
  676. ciris_engine/logic/services/lifecycle/initialization/__init__.py +10 -0
  677. ciris_engine/logic/services/lifecycle/initialization/service.py +312 -0
  678. ciris_engine/logic/services/lifecycle/scheduler/__init__.py +5 -0
  679. ciris_engine/logic/services/lifecycle/scheduler/service.py +607 -0
  680. ciris_engine/logic/services/lifecycle/shutdown/__init__.py +9 -0
  681. ciris_engine/logic/services/lifecycle/shutdown/service.py +378 -0
  682. ciris_engine/logic/services/lifecycle/time/__init__.py +15 -0
  683. ciris_engine/logic/services/lifecycle/time/service.py +259 -0
  684. ciris_engine/logic/services/memory_service/__init__.py +8 -0
  685. ciris_engine/logic/services/mixins/__init__.py +13 -0
  686. ciris_engine/logic/services/mixins/example_usage.py +200 -0
  687. ciris_engine/logic/services/mixins/request_metrics.py +179 -0
  688. ciris_engine/logic/services/runtime/__init__.py +3 -0
  689. ciris_engine/logic/services/runtime/adapter_configuration/__init__.py +16 -0
  690. ciris_engine/logic/services/runtime/adapter_configuration/service.py +674 -0
  691. ciris_engine/logic/services/runtime/adapter_configuration/session.py +67 -0
  692. ciris_engine/logic/services/runtime/control_service/__init__.py +5 -0
  693. ciris_engine/logic/services/runtime/control_service/service.py +2269 -0
  694. ciris_engine/logic/services/runtime/llm_service/__init__.py +14 -0
  695. ciris_engine/logic/services/runtime/llm_service/pricing_calculator.py +279 -0
  696. ciris_engine/logic/services/runtime/llm_service/service.py +930 -0
  697. ciris_engine/logic/services/tools/__init__.py +5 -0
  698. ciris_engine/logic/services/tools/core_tool_service/__init__.py +8 -0
  699. ciris_engine/logic/services/tools/core_tool_service/service.py +852 -0
  700. ciris_engine/logic/setup/__init__.py +1 -0
  701. ciris_engine/logic/setup/first_run.py +250 -0
  702. ciris_engine/logic/setup/wizard.py +327 -0
  703. ciris_engine/logic/telemetry/__init__.py +46 -0
  704. ciris_engine/logic/telemetry/core.py +239 -0
  705. ciris_engine/logic/telemetry/hot_cold_config.py +133 -0
  706. ciris_engine/logic/telemetry/log_collector.py +190 -0
  707. ciris_engine/logic/telemetry/resource_monitor.py +7 -0
  708. ciris_engine/logic/telemetry/security.py +79 -0
  709. ciris_engine/logic/utils/__init__.py +18 -0
  710. ciris_engine/logic/utils/channel_utils.py +75 -0
  711. ciris_engine/logic/utils/consent/__init__.py +1 -0
  712. ciris_engine/logic/utils/consent/partnership_utils.py +172 -0
  713. ciris_engine/logic/utils/constants.py +92 -0
  714. ciris_engine/logic/utils/context_utils.py +145 -0
  715. ciris_engine/logic/utils/directory_setup.py +533 -0
  716. ciris_engine/logic/utils/graphql_context_provider.py +152 -0
  717. ciris_engine/logic/utils/identity_resolution.py +843 -0
  718. ciris_engine/logic/utils/incident_capture_handler.py +303 -0
  719. ciris_engine/logic/utils/initialization_manager.py +74 -0
  720. ciris_engine/logic/utils/jsondict_helpers.py +290 -0
  721. ciris_engine/logic/utils/log_sanitizer.py +97 -0
  722. ciris_engine/logic/utils/logging_config.py +151 -0
  723. ciris_engine/logic/utils/observability_decorators.py +544 -0
  724. ciris_engine/logic/utils/occurrence_utils.py +155 -0
  725. ciris_engine/logic/utils/path_resolution.py +281 -0
  726. ciris_engine/logic/utils/platform_detection.py +286 -0
  727. ciris_engine/logic/utils/privacy.py +266 -0
  728. ciris_engine/logic/utils/profile_loader.py +124 -0
  729. ciris_engine/logic/utils/profile_manager.py +16 -0
  730. ciris_engine/logic/utils/runtime_utils.py +69 -0
  731. ciris_engine/logic/utils/shutdown_manager.py +107 -0
  732. ciris_engine/logic/utils/task_formatters.py +60 -0
  733. ciris_engine/logic/utils/task_thought_factory.py +404 -0
  734. ciris_engine/logic/utils/thought_utils.py +54 -0
  735. ciris_engine/logic/utils/user_utils.py +70 -0
  736. ciris_engine/protocols/__init__.py +0 -0
  737. ciris_engine/protocols/adapters/__init__.py +35 -0
  738. ciris_engine/protocols/adapters/base.py +149 -0
  739. ciris_engine/protocols/adapters/configurable.py +265 -0
  740. ciris_engine/protocols/adapters/message.py +90 -0
  741. ciris_engine/protocols/audit/__init__.py +1 -0
  742. ciris_engine/protocols/buses/__init__.py +1 -0
  743. ciris_engine/protocols/config/__init__.py +1 -0
  744. ciris_engine/protocols/conscience/__init__.py +1 -0
  745. ciris_engine/protocols/consent.py +88 -0
  746. ciris_engine/protocols/context/__init__.py +1 -0
  747. ciris_engine/protocols/data/__init__.py +1 -0
  748. ciris_engine/protocols/dma/__init__.py +1 -0
  749. ciris_engine/protocols/dma/base.py +107 -0
  750. ciris_engine/protocols/faculties.py +34 -0
  751. ciris_engine/protocols/formatters/__init__.py +1 -0
  752. ciris_engine/protocols/handlers/__init__.py +1 -0
  753. ciris_engine/protocols/infrastructure/__init__.py +25 -0
  754. ciris_engine/protocols/infrastructure/base.py +377 -0
  755. ciris_engine/protocols/persistence/__init__.py +1 -0
  756. ciris_engine/protocols/pipeline_control.py +609 -0
  757. ciris_engine/protocols/processors/__init__.py +19 -0
  758. ciris_engine/protocols/processors/agent.py +299 -0
  759. ciris_engine/protocols/processors/base.py +130 -0
  760. ciris_engine/protocols/processors/orchestration.py +62 -0
  761. ciris_engine/protocols/registries/__init__.py +1 -0
  762. ciris_engine/protocols/runtime/__init__.py +1 -0
  763. ciris_engine/protocols/runtime/base.py +163 -0
  764. ciris_engine/protocols/secrets/__init__.py +1 -0
  765. ciris_engine/protocols/services/__init__.py +80 -0
  766. ciris_engine/protocols/services/adaptation/__init__.py +7 -0
  767. ciris_engine/protocols/services/adaptation/self_observation.py +265 -0
  768. ciris_engine/protocols/services/governance/__init__.py +20 -0
  769. ciris_engine/protocols/services/governance/communication.py +58 -0
  770. ciris_engine/protocols/services/governance/filter.py +56 -0
  771. ciris_engine/protocols/services/governance/visibility.py +32 -0
  772. ciris_engine/protocols/services/governance/wa_auth.py +192 -0
  773. ciris_engine/protocols/services/governance/wise_authority.py +75 -0
  774. ciris_engine/protocols/services/graph/__init__.py +19 -0
  775. ciris_engine/protocols/services/graph/audit.py +92 -0
  776. ciris_engine/protocols/services/graph/config.py +54 -0
  777. ciris_engine/protocols/services/graph/incident_management.py +103 -0
  778. ciris_engine/protocols/services/graph/memory.py +110 -0
  779. ciris_engine/protocols/services/graph/telemetry.py +51 -0
  780. ciris_engine/protocols/services/graph/tsdb_consolidation.py +87 -0
  781. ciris_engine/protocols/services/infrastructure/__init__.py +11 -0
  782. ciris_engine/protocols/services/infrastructure/authentication.py +159 -0
  783. ciris_engine/protocols/services/infrastructure/credit_gate.py +46 -0
  784. ciris_engine/protocols/services/infrastructure/database_maintenance.py +25 -0
  785. ciris_engine/protocols/services/infrastructure/resource_monitor.py +83 -0
  786. ciris_engine/protocols/services/lifecycle/__init__.py +13 -0
  787. ciris_engine/protocols/services/lifecycle/initialization.py +41 -0
  788. ciris_engine/protocols/services/lifecycle/scheduler.py +42 -0
  789. ciris_engine/protocols/services/lifecycle/shutdown.py +50 -0
  790. ciris_engine/protocols/services/lifecycle/time.py +31 -0
  791. ciris_engine/protocols/services/runtime/__init__.py +13 -0
  792. ciris_engine/protocols/services/runtime/llm.py +50 -0
  793. ciris_engine/protocols/services/runtime/runtime_control.py +193 -0
  794. ciris_engine/protocols/services/runtime/secrets.py +100 -0
  795. ciris_engine/protocols/services/runtime/tool.py +123 -0
  796. ciris_engine/protocols/telemetry/__init__.py +1 -0
  797. ciris_engine/protocols/utils/__init__.py +1 -0
  798. ciris_engine/schemas/__init__.py +112 -0
  799. ciris_engine/schemas/actions/__init__.py +37 -0
  800. ciris_engine/schemas/actions/parameters.py +137 -0
  801. ciris_engine/schemas/adapters/__init__.py +13 -0
  802. ciris_engine/schemas/adapters/cirisnode.py +135 -0
  803. ciris_engine/schemas/adapters/cli.py +97 -0
  804. ciris_engine/schemas/adapters/cli_tools.py +98 -0
  805. ciris_engine/schemas/adapters/discord.py +125 -0
  806. ciris_engine/schemas/adapters/graphql_core.py +144 -0
  807. ciris_engine/schemas/adapters/registration.py +47 -0
  808. ciris_engine/schemas/adapters/runtime_context.py +48 -0
  809. ciris_engine/schemas/adapters/tool_execution.py +45 -0
  810. ciris_engine/schemas/adapters/tools.py +96 -0
  811. ciris_engine/schemas/api/__init__.py +1 -0
  812. ciris_engine/schemas/api/agent.py +50 -0
  813. ciris_engine/schemas/api/audit.py +38 -0
  814. ciris_engine/schemas/api/auth.py +351 -0
  815. ciris_engine/schemas/api/config_security.py +242 -0
  816. ciris_engine/schemas/api/emergency.py +111 -0
  817. ciris_engine/schemas/api/responses.py +72 -0
  818. ciris_engine/schemas/api/runtime.py +26 -0
  819. ciris_engine/schemas/api/telemetry.py +109 -0
  820. ciris_engine/schemas/api/wa.py +90 -0
  821. ciris_engine/schemas/audit/__init__.py +13 -0
  822. ciris_engine/schemas/audit/core.py +139 -0
  823. ciris_engine/schemas/audit/hash_chain.py +58 -0
  824. ciris_engine/schemas/audit/verification.py +131 -0
  825. ciris_engine/schemas/buses/__init__.py +1 -0
  826. ciris_engine/schemas/config/__init__.py +41 -0
  827. ciris_engine/schemas/config/agent.py +279 -0
  828. ciris_engine/schemas/config/cognitive_state_behaviors.py +194 -0
  829. ciris_engine/schemas/config/default_dsar_sops.py +178 -0
  830. ciris_engine/schemas/config/essential.py +195 -0
  831. ciris_engine/schemas/config/tickets.py +86 -0
  832. ciris_engine/schemas/conscience/__init__.py +25 -0
  833. ciris_engine/schemas/conscience/context.py +34 -0
  834. ciris_engine/schemas/conscience/core.py +145 -0
  835. ciris_engine/schemas/conscience/results.py +24 -0
  836. ciris_engine/schemas/consent/__init__.py +5 -0
  837. ciris_engine/schemas/consent/core.py +404 -0
  838. ciris_engine/schemas/context/__init__.py +1 -0
  839. ciris_engine/schemas/covenant.py +382 -0
  840. ciris_engine/schemas/data/__init__.py +1 -0
  841. ciris_engine/schemas/dma/__init__.py +16 -0
  842. ciris_engine/schemas/dma/core.py +199 -0
  843. ciris_engine/schemas/dma/faculty.py +192 -0
  844. ciris_engine/schemas/dma/prompts.py +172 -0
  845. ciris_engine/schemas/dma/results.py +103 -0
  846. ciris_engine/schemas/formatters/__init__.py +1 -0
  847. ciris_engine/schemas/handlers/__init__.py +10 -0
  848. ciris_engine/schemas/handlers/context.py +119 -0
  849. ciris_engine/schemas/handlers/contexts.py +100 -0
  850. ciris_engine/schemas/handlers/core.py +167 -0
  851. ciris_engine/schemas/handlers/memory_schemas.py +67 -0
  852. ciris_engine/schemas/handlers/schemas.py +95 -0
  853. ciris_engine/schemas/identity.py +149 -0
  854. ciris_engine/schemas/infrastructure/__init__.py +1 -0
  855. ciris_engine/schemas/infrastructure/base.py +256 -0
  856. ciris_engine/schemas/infrastructure/behavioral_patterns.py +129 -0
  857. ciris_engine/schemas/infrastructure/feedback_loop.py +57 -0
  858. ciris_engine/schemas/infrastructure/identity_variance.py +141 -0
  859. ciris_engine/schemas/infrastructure/oauth.py +175 -0
  860. ciris_engine/schemas/infrastructure/wa_cli_wizard.py +54 -0
  861. ciris_engine/schemas/persistence/__init__.py +34 -0
  862. ciris_engine/schemas/persistence/core.py +140 -0
  863. ciris_engine/schemas/persistence/correlations.py +73 -0
  864. ciris_engine/schemas/persistence/postgres/__init__.py +1 -0
  865. ciris_engine/schemas/persistence/postgres/tables.py +280 -0
  866. ciris_engine/schemas/persistence/sqlite/__init__.py +1 -0
  867. ciris_engine/schemas/persistence/sqlite/tables.py +281 -0
  868. ciris_engine/schemas/platform.py +149 -0
  869. ciris_engine/schemas/processors/__init__.py +26 -0
  870. ciris_engine/schemas/processors/base.py +130 -0
  871. ciris_engine/schemas/processors/cognitive.py +77 -0
  872. ciris_engine/schemas/processors/context.py +35 -0
  873. ciris_engine/schemas/processors/core.py +152 -0
  874. ciris_engine/schemas/processors/dma.py +105 -0
  875. ciris_engine/schemas/processors/error.py +122 -0
  876. ciris_engine/schemas/processors/main.py +109 -0
  877. ciris_engine/schemas/processors/phase_results.py +21 -0
  878. ciris_engine/schemas/processors/results.py +99 -0
  879. ciris_engine/schemas/processors/solitude.py +79 -0
  880. ciris_engine/schemas/processors/state.py +202 -0
  881. ciris_engine/schemas/processors/state_example.py +177 -0
  882. ciris_engine/schemas/processors/states.py +21 -0
  883. ciris_engine/schemas/processors/status.py +34 -0
  884. ciris_engine/schemas/registries/__init__.py +1 -0
  885. ciris_engine/schemas/registries/base.py +66 -0
  886. ciris_engine/schemas/resources/__init__.py +15 -0
  887. ciris_engine/schemas/resources/crisis.py +315 -0
  888. ciris_engine/schemas/runtime/__init__.py +42 -0
  889. ciris_engine/schemas/runtime/adapter_management.py +186 -0
  890. ciris_engine/schemas/runtime/api.py +58 -0
  891. ciris_engine/schemas/runtime/audit.py +50 -0
  892. ciris_engine/schemas/runtime/bootstrap.py +33 -0
  893. ciris_engine/schemas/runtime/contexts.py +61 -0
  894. ciris_engine/schemas/runtime/core.py +161 -0
  895. ciris_engine/schemas/runtime/enums.py +167 -0
  896. ciris_engine/schemas/runtime/extended.py +232 -0
  897. ciris_engine/schemas/runtime/manifest.py +311 -0
  898. ciris_engine/schemas/runtime/memory.py +60 -0
  899. ciris_engine/schemas/runtime/messages.py +108 -0
  900. ciris_engine/schemas/runtime/models.py +156 -0
  901. ciris_engine/schemas/runtime/processing_context.py +43 -0
  902. ciris_engine/schemas/runtime/protocols_core.py +96 -0
  903. ciris_engine/schemas/runtime/resources.py +33 -0
  904. ciris_engine/schemas/runtime/system_context.py +417 -0
  905. ciris_engine/schemas/secrets/__init__.py +1 -0
  906. ciris_engine/schemas/secrets/core.py +267 -0
  907. ciris_engine/schemas/secrets/service.py +95 -0
  908. ciris_engine/schemas/services/__init__.py +33 -0
  909. ciris_engine/schemas/services/audit_summary_node.py +172 -0
  910. ciris_engine/schemas/services/authority/__init__.py +39 -0
  911. ciris_engine/schemas/services/authority/jwt.py +158 -0
  912. ciris_engine/schemas/services/authority/wa_updates.py +138 -0
  913. ciris_engine/schemas/services/authority/wise_authority.py +163 -0
  914. ciris_engine/schemas/services/authority_core.py +370 -0
  915. ciris_engine/schemas/services/capabilities.py +72 -0
  916. ciris_engine/schemas/services/community_core.py +95 -0
  917. ciris_engine/schemas/services/context.py +111 -0
  918. ciris_engine/schemas/services/conversation_summary_node.py +189 -0
  919. ciris_engine/schemas/services/core/__init__.py +153 -0
  920. ciris_engine/schemas/services/core/runtime.py +262 -0
  921. ciris_engine/schemas/services/core/runtime_config.py +117 -0
  922. ciris_engine/schemas/services/core/secrets.py +65 -0
  923. ciris_engine/schemas/services/correlation_node.py +179 -0
  924. ciris_engine/schemas/services/credit_gate.py +92 -0
  925. ciris_engine/schemas/services/discord_nodes.py +299 -0
  926. ciris_engine/schemas/services/feedback_core.py +131 -0
  927. ciris_engine/schemas/services/filters_core.py +270 -0
  928. ciris_engine/schemas/services/governance.py +26 -0
  929. ciris_engine/schemas/services/graph/__init__.py +26 -0
  930. ciris_engine/schemas/services/graph/attributes.py +254 -0
  931. ciris_engine/schemas/services/graph/audit.py +98 -0
  932. ciris_engine/schemas/services/graph/consolidation.py +338 -0
  933. ciris_engine/schemas/services/graph/edge_types.py +43 -0
  934. ciris_engine/schemas/services/graph/edges.py +88 -0
  935. ciris_engine/schemas/services/graph/incident.py +312 -0
  936. ciris_engine/schemas/services/graph/memory.py +84 -0
  937. ciris_engine/schemas/services/graph/node_data.py +174 -0
  938. ciris_engine/schemas/services/graph/query_results.py +82 -0
  939. ciris_engine/schemas/services/graph/telemetry.py +250 -0
  940. ciris_engine/schemas/services/graph/tsdb_consolidation.py +27 -0
  941. ciris_engine/schemas/services/graph/tsdb_models.py +107 -0
  942. ciris_engine/schemas/services/graph_core.py +196 -0
  943. ciris_engine/schemas/services/graph_typed_nodes.py +194 -0
  944. ciris_engine/schemas/services/infrastructure/__init__.py +1 -0
  945. ciris_engine/schemas/services/infrastructure/resource_monitor.py +20 -0
  946. ciris_engine/schemas/services/lifecycle/__init__.py +9 -0
  947. ciris_engine/schemas/services/lifecycle/initialization.py +33 -0
  948. ciris_engine/schemas/services/lifecycle/time.py +50 -0
  949. ciris_engine/schemas/services/llm.py +187 -0
  950. ciris_engine/schemas/services/metadata.py +43 -0
  951. ciris_engine/schemas/services/nodes.py +704 -0
  952. ciris_engine/schemas/services/operations.py +126 -0
  953. ciris_engine/schemas/services/requests.py +128 -0
  954. ciris_engine/schemas/services/resources_core.py +182 -0
  955. ciris_engine/schemas/services/runtime_control.py +1010 -0
  956. ciris_engine/schemas/services/shutdown.py +88 -0
  957. ciris_engine/schemas/services/special/__init__.py +0 -0
  958. ciris_engine/schemas/services/special/self_observation.py +396 -0
  959. ciris_engine/schemas/services/trace_summary_node.py +199 -0
  960. ciris_engine/schemas/services/visibility.py +98 -0
  961. ciris_engine/schemas/streaming/__init__.py +10 -0
  962. ciris_engine/schemas/streaming/reasoning_stream.py +95 -0
  963. ciris_engine/schemas/telemetry/__init__.py +0 -0
  964. ciris_engine/schemas/telemetry/collector.py +67 -0
  965. ciris_engine/schemas/telemetry/core.py +252 -0
  966. ciris_engine/schemas/telemetry/unified.py +59 -0
  967. ciris_engine/schemas/tools.py +72 -0
  968. ciris_engine/schemas/types.py +47 -0
  969. ciris_engine/schemas/utils/__init__.py +1 -0
  970. ciris_engine/schemas/utils/config_validator.py +54 -0
  971. ciris_engine/utils/__init__.py +1 -0
  972. ciris_engine/utils/serialization.py +35 -0
  973. ciris_sdk/__init__.py +124 -0
  974. ciris_sdk/auth_store.py +261 -0
  975. ciris_sdk/client.py +261 -0
  976. ciris_sdk/exceptions.py +73 -0
  977. ciris_sdk/model_types.py +258 -0
  978. ciris_sdk/models.py +354 -0
  979. ciris_sdk/pagination.py +214 -0
  980. ciris_sdk/rate_limiter.py +188 -0
  981. ciris_sdk/setup.py +17 -0
  982. ciris_sdk/telemetry_models.py +257 -0
  983. ciris_sdk/telemetry_responses.py +199 -0
  984. ciris_sdk/transport.py +177 -0
  985. ciris_sdk/websocket.py +400 -0
  986. main.py +766 -0
@@ -0,0 +1,407 @@
1
+ <svg width="1300" height="823" viewBox="0 0 1300 823" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_2105_1222)">
3
+ <path opacity="0.2" d="M-887 424L714.281 1348.5" stroke="#5F52FF" stroke-width="0.5"/>
4
+ <path opacity="0.2" d="M-874.189 416.604L727.092 1341.1" stroke="#5F52FF" stroke-width="0.5"/>
5
+ <path opacity="0.2" d="M-861.379 409.208L739.902 1333.71" stroke="#5F52FF" stroke-width="0.5"/>
6
+ <path opacity="0.2" d="M-848.569 401.812L752.712 1326.31" stroke="#5F52FF" stroke-width="0.5"/>
7
+ <path opacity="0.2" d="M-835.759 394.416L765.522 1318.92" stroke="#5F52FF" stroke-width="0.5"/>
8
+ <path opacity="0.2" d="M-822.949 387.02L778.332 1311.52" stroke="#5F52FF" stroke-width="0.5"/>
9
+ <path opacity="0.2" d="M-810.138 379.624L791.143 1304.12" stroke="#5F52FF" stroke-width="0.5"/>
10
+ <path opacity="0.2" d="M-797.328 372.228L803.953 1296.73" stroke="#5F52FF" stroke-width="0.5"/>
11
+ <path opacity="0.2" d="M-784.518 364.832L816.763 1289.33" stroke="#5F52FF" stroke-width="0.5"/>
12
+ <path opacity="0.2" d="M-771.708 357.436L829.573 1281.94" stroke="#5F52FF" stroke-width="0.5"/>
13
+ <path opacity="0.2" d="M-758.897 350.04L842.384 1274.54" stroke="#5F52FF" stroke-width="0.5"/>
14
+ <path opacity="0.2" d="M-746.087 342.644L855.194 1267.14" stroke="#5F52FF" stroke-width="0.5"/>
15
+ <path opacity="0.2" d="M-733.276 335.248L868.005 1259.75" stroke="#5F52FF" stroke-width="0.5"/>
16
+ <path opacity="0.2" d="M-720.467 327.852L880.814 1252.35" stroke="#5F52FF" stroke-width="0.5"/>
17
+ <path opacity="0.2" d="M-707.656 320.456L893.625 1244.96" stroke="#5F52FF" stroke-width="0.5"/>
18
+ <path opacity="0.2" d="M-694.846 313.06L906.435 1237.56" stroke="#5F52FF" stroke-width="0.5"/>
19
+ <path opacity="0.2" d="M-682.036 305.664L919.245 1230.16" stroke="#5F52FF" stroke-width="0.5"/>
20
+ <path opacity="0.2" d="M-669.226 298.268L932.055 1222.77" stroke="#5F52FF" stroke-width="0.5"/>
21
+ <path opacity="0.2" d="M-656.415 290.872L944.866 1215.37" stroke="#5F52FF" stroke-width="0.5"/>
22
+ <path opacity="0.2" d="M-643.605 283.476L957.676 1207.98" stroke="#5F52FF" stroke-width="0.5"/>
23
+ <path opacity="0.2" d="M-630.795 276.08L970.486 1200.58" stroke="#5F52FF" stroke-width="0.5"/>
24
+ <path opacity="0.2" d="M-617.984 268.684L983.297 1193.18" stroke="#5F52FF" stroke-width="0.5"/>
25
+ <path opacity="0.2" d="M-605.175 261.288L996.106 1185.79" stroke="#5F52FF" stroke-width="0.5"/>
26
+ <path opacity="0.2" d="M-592.364 253.892L1008.92 1178.39" stroke="#5F52FF" stroke-width="0.5"/>
27
+ <path opacity="0.2" d="M-579.554 246.496L1021.73 1171" stroke="#5F52FF" stroke-width="0.5"/>
28
+ <path opacity="0.2" d="M-566.743 239.1L1034.54 1163.6" stroke="#5F52FF" stroke-width="0.5"/>
29
+ <path opacity="0.2" d="M-553.934 231.704L1047.35 1156.2" stroke="#5F52FF" stroke-width="0.5"/>
30
+ <path opacity="0.2" d="M-541.123 224.308L1060.16 1148.81" stroke="#5F52FF" stroke-width="0.5"/>
31
+ <path opacity="0.2" d="M-528.312 216.912L1072.97 1141.41" stroke="#5F52FF" stroke-width="0.5"/>
32
+ <path opacity="0.2" d="M-515.503 209.516L1085.78 1134.02" stroke="#5F52FF" stroke-width="0.5"/>
33
+ <path opacity="0.2" d="M-502.692 202.12L1098.59 1126.62" stroke="#5F52FF" stroke-width="0.5"/>
34
+ <path opacity="0.2" d="M-489.882 194.724L1111.4 1119.22" stroke="#5F52FF" stroke-width="0.5"/>
35
+ <path opacity="0.2" d="M-477.072 187.328L1124.21 1111.83" stroke="#5F52FF" stroke-width="0.5"/>
36
+ <path opacity="0.2" d="M-464.262 179.932L1137.02 1104.43" stroke="#5F52FF" stroke-width="0.5"/>
37
+ <path opacity="0.2" d="M-451.451 172.536L1149.83 1097.04" stroke="#5F52FF" stroke-width="0.5"/>
38
+ <path opacity="0.2" d="M-438.642 165.14L1162.64 1089.64" stroke="#5F52FF" stroke-width="0.5"/>
39
+ <path opacity="0.2" d="M-425.831 157.744L1175.45 1082.24" stroke="#5F52FF" stroke-width="0.5"/>
40
+ <path opacity="0.2" d="M-413.021 150.348L1188.26 1074.85" stroke="#5F52FF" stroke-width="0.5"/>
41
+ <path opacity="0.2" d="M-400.21 142.952L1201.07 1067.45" stroke="#5F52FF" stroke-width="0.5"/>
42
+ <path opacity="0.2" d="M-387.4 135.556L1213.88 1060.06" stroke="#5F52FF" stroke-width="0.5"/>
43
+ <path opacity="0.2" d="M-374.59 128.16L1226.69 1052.66" stroke="#5F52FF" stroke-width="0.5"/>
44
+ <path opacity="0.2" d="M-361.779 120.764L1239.5 1045.26" stroke="#5F52FF" stroke-width="0.5"/>
45
+ <path opacity="0.2" d="M-348.97 113.368L1252.31 1037.87" stroke="#5F52FF" stroke-width="0.5"/>
46
+ <path opacity="0.2" d="M-336.159 105.972L1265.12 1030.47" stroke="#5F52FF" stroke-width="0.5"/>
47
+ <path opacity="0.2" d="M-323.349 98.576L1277.93 1023.08" stroke="#5F52FF" stroke-width="0.5"/>
48
+ <path opacity="0.2" d="M-310.539 91.1801L1290.74 1015.68" stroke="#5F52FF" stroke-width="0.5"/>
49
+ <path opacity="0.2" d="M-297.729 83.7841L1303.55 1008.28" stroke="#5F52FF" stroke-width="0.5"/>
50
+ <path opacity="0.2" d="M-284.918 76.3881L1316.36 1000.89" stroke="#5F52FF" stroke-width="0.5"/>
51
+ <path opacity="0.2" d="M-272.107 68.9919L1329.17 993.492" stroke="#5F52FF" stroke-width="0.5"/>
52
+ <path opacity="0.2" d="M-259.298 61.5959L1341.98 986.096" stroke="#5F52FF" stroke-width="0.5"/>
53
+ <path opacity="0.2" d="M-246.487 54.2L1354.79 978.7" stroke="#5F52FF" stroke-width="0.5"/>
54
+ <path opacity="0.2" d="M-233.677 46.804L1367.6 971.304" stroke="#5F52FF" stroke-width="0.5"/>
55
+ <path opacity="0.2" d="M-220.867 39.408L1380.41 963.908" stroke="#5F52FF" stroke-width="0.5"/>
56
+ <path opacity="0.2" d="M-208.057 32.012L1393.22 956.512" stroke="#5F52FF" stroke-width="0.5"/>
57
+ <path opacity="0.2" d="M-195.246 24.616L1406.03 949.116" stroke="#5F52FF" stroke-width="0.5"/>
58
+ <path opacity="0.2" d="M-182.437 17.22L1418.84 941.72" stroke="#5F52FF" stroke-width="0.5"/>
59
+ <path opacity="0.2" d="M-169.626 9.82397L1431.66 934.324" stroke="#5F52FF" stroke-width="0.5"/>
60
+ <path opacity="0.2" d="M-156.815 2.42798L1444.47 926.928" stroke="#5F52FF" stroke-width="0.5"/>
61
+ <path opacity="0.2" d="M-144.006 -4.96802L1457.28 919.532" stroke="#5F52FF" stroke-width="0.5"/>
62
+ <path opacity="0.2" d="M-131.195 -12.364L1470.09 912.136" stroke="#5F52FF" stroke-width="0.5"/>
63
+ <path opacity="0.2" d="M-118.385 -19.76L1482.9 904.74" stroke="#5F52FF" stroke-width="0.5"/>
64
+ <path opacity="0.2" d="M-105.574 -27.156L1495.71 897.344" stroke="#5F52FF" stroke-width="0.5"/>
65
+ <path opacity="0.2" d="M-92.7646 -34.552L1508.52 889.948" stroke="#5F52FF" stroke-width="0.5"/>
66
+ <path opacity="0.2" d="M-79.9541 -41.948L1521.33 882.552" stroke="#5F52FF" stroke-width="0.5"/>
67
+ <path opacity="0.2" d="M-67.1436 -49.344L1534.14 875.156" stroke="#5F52FF" stroke-width="0.5"/>
68
+ <path opacity="0.2" d="M-54.334 -56.74L1546.95 867.76" stroke="#5F52FF" stroke-width="0.5"/>
69
+ <path opacity="0.2" d="M-41.5234 -64.136L1559.76 860.364" stroke="#5F52FF" stroke-width="0.5"/>
70
+ <path opacity="0.2" d="M-28.7129 -71.532L1572.57 852.968" stroke="#5F52FF" stroke-width="0.5"/>
71
+ <path opacity="0.2" d="M-15.9033 -78.928L1585.38 845.572" stroke="#5F52FF" stroke-width="0.5"/>
72
+ <path opacity="0.2" d="M-3.09277 -86.3241L1598.19 838.176" stroke="#5F52FF" stroke-width="0.5"/>
73
+ <path opacity="0.2" d="M9.71777 -93.72L1611 830.78" stroke="#5F52FF" stroke-width="0.5"/>
74
+ <path opacity="0.2" d="M22.5273 -101.116L1623.81 823.384" stroke="#5F52FF" stroke-width="0.5"/>
75
+ <path opacity="0.2" d="M35.3379 -108.512L1636.62 815.988" stroke="#5F52FF" stroke-width="0.5"/>
76
+ <path opacity="0.2" d="M48.1484 -115.908L1649.43 808.592" stroke="#5F52FF" stroke-width="0.5"/>
77
+ <path opacity="0.2" d="M60.958 -123.304L1662.24 801.196" stroke="#5F52FF" stroke-width="0.5"/>
78
+ <path opacity="0.2" d="M73.7686 -130.7L1675.05 793.8" stroke="#5F52FF" stroke-width="0.5"/>
79
+ <path opacity="0.2" d="M86.5791 -138.096L1687.86 786.404" stroke="#5F52FF" stroke-width="0.5"/>
80
+ <path opacity="0.2" d="M99.3887 -145.492L1700.67 779.008" stroke="#5F52FF" stroke-width="0.5"/>
81
+ <path opacity="0.2" d="M112.199 -152.888L1713.48 771.612" stroke="#5F52FF" stroke-width="0.5"/>
82
+ <path opacity="0.2" d="M125.01 -160.284L1726.29 764.216" stroke="#5F52FF" stroke-width="0.5"/>
83
+ <path opacity="0.2" d="M137.819 -167.68L1739.1 756.82" stroke="#5F52FF" stroke-width="0.5"/>
84
+ <path opacity="0.2" d="M150.63 -175.076L1751.91 749.424" stroke="#5F52FF" stroke-width="0.5"/>
85
+ <path opacity="0.2" d="M163.44 -182.472L1764.72 742.028" stroke="#5F52FF" stroke-width="0.5"/>
86
+ <path opacity="0.2" d="M176.25 -189.868L1777.53 734.632" stroke="#5F52FF" stroke-width="0.5"/>
87
+ <path opacity="0.2" d="M189.061 -197.264L1790.34 727.236" stroke="#5F52FF" stroke-width="0.5"/>
88
+ <path opacity="0.2" d="M201.871 -204.66L1803.15 719.84" stroke="#5F52FF" stroke-width="0.5"/>
89
+ <path opacity="0.2" d="M214.682 -212.056L1815.96 712.444" stroke="#5F52FF" stroke-width="0.5"/>
90
+ <path opacity="0.2" d="M227.491 -219.452L1828.77 705.048" stroke="#5F52FF" stroke-width="0.5"/>
91
+ <path opacity="0.2" d="M240.302 -226.848L1841.58 697.652" stroke="#5F52FF" stroke-width="0.5"/>
92
+ <path opacity="0.2" d="M253.112 -234.244L1854.39 690.256" stroke="#5F52FF" stroke-width="0.5"/>
93
+ <path opacity="0.2" d="M265.922 -241.64L1867.2 682.86" stroke="#5F52FF" stroke-width="0.5"/>
94
+ <path opacity="0.2" d="M278.732 -249.036L1880.01 675.464" stroke="#5F52FF" stroke-width="0.5"/>
95
+ <path opacity="0.2" d="M291.543 -256.432L1892.82 668.068" stroke="#5F52FF" stroke-width="0.5"/>
96
+ <path opacity="0.2" d="M304.353 -263.828L1905.63 660.672" stroke="#5F52FF" stroke-width="0.5"/>
97
+ <path opacity="0.2" d="M317.163 -271.224L1918.44 653.276" stroke="#5F52FF" stroke-width="0.5"/>
98
+ <path opacity="0.2" d="M329.974 -278.62L1931.25 645.88" stroke="#5F52FF" stroke-width="0.5"/>
99
+ <path opacity="0.2" d="M342.783 -286.016L1944.06 638.484" stroke="#5F52FF" stroke-width="0.5"/>
100
+ <path opacity="0.2" d="M355.594 -293.412L1956.87 631.088" stroke="#5F52FF" stroke-width="0.5"/>
101
+ <path opacity="0.2" d="M368.404 -300.808L1969.69 623.692" stroke="#5F52FF" stroke-width="0.5"/>
102
+ <path opacity="0.2" d="M381.214 -308.204L1982.49 616.296" stroke="#5F52FF" stroke-width="0.5"/>
103
+ <path opacity="0.2" d="M394.024 -315.6L1995.31 608.9" stroke="#5F52FF" stroke-width="0.5"/>
104
+ <path opacity="0.2" d="M406.835 -322.996L2008.12 601.504" stroke="#5F52FF" stroke-width="0.5"/>
105
+ <path opacity="0.2" d="M419.646 -330.392L2020.93 594.108" stroke="#5F52FF" stroke-width="0.5"/>
106
+ <path opacity="0.2" d="M432.455 -337.788L2033.74 586.712" stroke="#5F52FF" stroke-width="0.5"/>
107
+ <path opacity="0.2" d="M445.266 -345.184L2046.55 579.316" stroke="#5F52FF" stroke-width="0.5"/>
108
+ <path opacity="0.2" d="M458.076 -352.58L2059.36 571.92" stroke="#5F52FF" stroke-width="0.5"/>
109
+ <path opacity="0.2" d="M470.886 -359.976L2072.17 564.524" stroke="#5F52FF" stroke-width="0.5"/>
110
+ <path opacity="0.2" d="M483.696 -367.372L2084.98 557.128" stroke="#5F52FF" stroke-width="0.5"/>
111
+ <path opacity="0.2" d="M496.507 -374.768L2097.79 549.732" stroke="#5F52FF" stroke-width="0.5"/>
112
+ <path opacity="0.2" d="M509.316 -382.164L2110.6 542.336" stroke="#5F52FF" stroke-width="0.5"/>
113
+ <path opacity="0.2" d="M522.127 -389.56L2123.41 534.94" stroke="#5F52FF" stroke-width="0.5"/>
114
+ <path opacity="0.2" d="M534.938 -396.956L2136.22 527.544" stroke="#5F52FF" stroke-width="0.5"/>
115
+ <path opacity="0.2" d="M547.747 -404.352L2149.03 520.148" stroke="#5F52FF" stroke-width="0.5"/>
116
+ <path opacity="0.2" d="M560.558 -411.748L2161.84 512.752" stroke="#5F52FF" stroke-width="0.5"/>
117
+ <path opacity="0.2" d="M573.368 -419.144L2174.65 505.356" stroke="#5F52FF" stroke-width="0.5"/>
118
+ <path opacity="0.2" d="M586.178 -426.54L2187.46 497.96" stroke="#5F52FF" stroke-width="0.5"/>
119
+ <path opacity="0.2" d="M586.178 -426.54L-887.001 424" stroke="#5F52FF" stroke-width="0.5"/>
120
+ <path opacity="0.2" d="M598.988 -419.144L-874.19 431.396" stroke="#5F52FF" stroke-width="0.5"/>
121
+ <path opacity="0.2" d="M611.799 -411.748L-861.38 438.792" stroke="#5F52FF" stroke-width="0.5"/>
122
+ <path opacity="0.2" d="M624.608 -404.352L-848.57 446.188" stroke="#5F52FF" stroke-width="0.5"/>
123
+ <path opacity="0.2" d="M637.419 -396.956L-835.76 453.584" stroke="#5F52FF" stroke-width="0.5"/>
124
+ <path opacity="0.2" d="M650.229 -389.56L-822.949 460.98" stroke="#5F52FF" stroke-width="0.5"/>
125
+ <path opacity="0.2" d="M663.04 -382.164L-810.139 468.376" stroke="#5F52FF" stroke-width="0.5"/>
126
+ <path opacity="0.2" d="M675.85 -374.768L-797.329 475.772" stroke="#5F52FF" stroke-width="0.5"/>
127
+ <path opacity="0.2" d="M688.66 -367.372L-784.519 483.168" stroke="#5F52FF" stroke-width="0.5"/>
128
+ <path opacity="0.2" d="M701.471 -359.976L-771.708 490.564" stroke="#5F52FF" stroke-width="0.5"/>
129
+ <path opacity="0.2" d="M714.28 -352.58L-758.898 497.96" stroke="#5F52FF" stroke-width="0.5"/>
130
+ <path opacity="0.2" d="M727.091 -345.184L-746.088 505.356" stroke="#5F52FF" stroke-width="0.5"/>
131
+ <path opacity="0.2" d="M739.901 -337.788L-733.277 512.752" stroke="#5F52FF" stroke-width="0.5"/>
132
+ <path opacity="0.2" d="M752.711 -330.392L-720.468 520.148" stroke="#5F52FF" stroke-width="0.5"/>
133
+ <path opacity="0.2" d="M765.521 -322.996L-707.657 527.544" stroke="#5F52FF" stroke-width="0.5"/>
134
+ <path opacity="0.2" d="M778.332 -315.6L-694.847 534.94" stroke="#5F52FF" stroke-width="0.5"/>
135
+ <path opacity="0.2" d="M791.143 -308.204L-682.036 542.336" stroke="#5F52FF" stroke-width="0.5"/>
136
+ <path opacity="0.2" d="M803.952 -300.808L-669.227 549.732" stroke="#5F52FF" stroke-width="0.5"/>
137
+ <path opacity="0.2" d="M816.763 -293.412L-656.416 557.128" stroke="#5F52FF" stroke-width="0.5"/>
138
+ <path opacity="0.2" d="M829.573 -286.016L-643.605 564.524" stroke="#5F52FF" stroke-width="0.5"/>
139
+ <path opacity="0.2" d="M842.383 -278.62L-630.796 571.92" stroke="#5F52FF" stroke-width="0.5"/>
140
+ <path opacity="0.2" d="M855.193 -271.224L-617.985 579.316" stroke="#5F52FF" stroke-width="0.5"/>
141
+ <path opacity="0.2" d="M868.004 -263.828L-605.175 586.712" stroke="#5F52FF" stroke-width="0.5"/>
142
+ <path opacity="0.2" d="M880.813 -256.432L-592.365 594.108" stroke="#5F52FF" stroke-width="0.5"/>
143
+ <path opacity="0.2" d="M893.624 -249.036L-579.555 601.504" stroke="#5F52FF" stroke-width="0.5"/>
144
+ <path opacity="0.2" d="M906.435 -241.64L-566.744 608.9" stroke="#5F52FF" stroke-width="0.5"/>
145
+ <path opacity="0.2" d="M919.244 -234.244L-553.935 616.296" stroke="#5F52FF" stroke-width="0.5"/>
146
+ <path opacity="0.2" d="M932.055 -226.848L-541.124 623.692" stroke="#5F52FF" stroke-width="0.5"/>
147
+ <path opacity="0.2" d="M944.865 -219.452L-528.313 631.088" stroke="#5F52FF" stroke-width="0.5"/>
148
+ <path opacity="0.2" d="M957.675 -212.056L-515.504 638.484" stroke="#5F52FF" stroke-width="0.5"/>
149
+ <path opacity="0.2" d="M970.485 -204.66L-502.693 645.88" stroke="#5F52FF" stroke-width="0.5"/>
150
+ <path opacity="0.2" d="M983.296 -197.264L-489.883 653.276" stroke="#5F52FF" stroke-width="0.5"/>
151
+ <path opacity="0.2" d="M996.106 -189.868L-477.072 660.672" stroke="#5F52FF" stroke-width="0.5"/>
152
+ <path opacity="0.2" d="M1008.92 -182.472L-464.263 668.068" stroke="#5F52FF" stroke-width="0.5"/>
153
+ <path opacity="0.2" d="M1021.73 -175.076L-451.452 675.464" stroke="#5F52FF" stroke-width="0.5"/>
154
+ <path opacity="0.2" d="M1034.54 -167.68L-438.642 682.86" stroke="#5F52FF" stroke-width="0.5"/>
155
+ <path opacity="0.2" d="M1047.35 -160.284L-425.832 690.256" stroke="#5F52FF" stroke-width="0.5"/>
156
+ <path opacity="0.2" d="M1060.16 -152.888L-413.021 697.652" stroke="#5F52FF" stroke-width="0.5"/>
157
+ <path opacity="0.2" d="M1072.97 -145.492L-400.211 705.048" stroke="#5F52FF" stroke-width="0.5"/>
158
+ <path opacity="0.2" d="M1085.78 -138.096L-387.401 712.444" stroke="#5F52FF" stroke-width="0.5"/>
159
+ <path opacity="0.2" d="M1098.59 -130.7L-374.591 719.84" stroke="#5F52FF" stroke-width="0.5"/>
160
+ <path opacity="0.2" d="M1111.4 -123.304L-361.78 727.236" stroke="#5F52FF" stroke-width="0.5"/>
161
+ <path opacity="0.2" d="M1124.21 -115.908L-348.97 734.632" stroke="#5F52FF" stroke-width="0.5"/>
162
+ <path opacity="0.2" d="M1137.02 -108.512L-336.16 742.028" stroke="#5F52FF" stroke-width="0.5"/>
163
+ <path opacity="0.2" d="M1149.83 -101.116L-323.35 749.424" stroke="#5F52FF" stroke-width="0.5"/>
164
+ <path opacity="0.2" d="M1162.64 -93.7198L-310.539 756.82" stroke="#5F52FF" stroke-width="0.5"/>
165
+ <path opacity="0.2" d="M1175.45 -86.3239L-297.729 764.216" stroke="#5F52FF" stroke-width="0.5"/>
166
+ <path opacity="0.2" d="M1188.26 -78.9279L-284.919 771.612" stroke="#5F52FF" stroke-width="0.5"/>
167
+ <path opacity="0.2" d="M1201.07 -71.5319L-272.108 779.008" stroke="#5F52FF" stroke-width="0.5"/>
168
+ <path opacity="0.2" d="M1213.88 -64.1359L-259.299 786.404" stroke="#5F52FF" stroke-width="0.5"/>
169
+ <path opacity="0.2" d="M1226.69 -56.7399L-246.488 793.8" stroke="#5F52FF" stroke-width="0.5"/>
170
+ <path opacity="0.2" d="M1239.5 -49.3438L-233.678 801.196" stroke="#5F52FF" stroke-width="0.5"/>
171
+ <path opacity="0.2" d="M1252.31 -41.9478L-220.868 808.592" stroke="#5F52FF" stroke-width="0.5"/>
172
+ <path opacity="0.2" d="M1265.12 -34.5518L-208.058 815.988" stroke="#5F52FF" stroke-width="0.5"/>
173
+ <path opacity="0.2" d="M1277.93 -27.1558L-195.247 823.384" stroke="#5F52FF" stroke-width="0.5"/>
174
+ <path opacity="0.2" d="M1290.74 -19.7598L-182.436 830.78" stroke="#5F52FF" stroke-width="0.5"/>
175
+ <path opacity="0.2" d="M1303.55 -12.3638L-169.627 838.176" stroke="#5F52FF" stroke-width="0.5"/>
176
+ <path opacity="0.2" d="M1316.36 -4.96777L-156.816 845.572" stroke="#5F52FF" stroke-width="0.5"/>
177
+ <path opacity="0.2" d="M1329.17 2.42822L-144.006 852.968" stroke="#5F52FF" stroke-width="0.5"/>
178
+ <path opacity="0.2" d="M1341.98 9.82422L-131.196 860.364" stroke="#5F52FF" stroke-width="0.5"/>
179
+ <path opacity="0.2" d="M1354.79 17.2202L-118.386 867.76" stroke="#5F52FF" stroke-width="0.5"/>
180
+ <path opacity="0.2" d="M1367.6 24.6162L-105.575 875.156" stroke="#5F52FF" stroke-width="0.5"/>
181
+ <path opacity="0.2" d="M1380.41 32.0122L-92.7656 882.552" stroke="#5F52FF" stroke-width="0.5"/>
182
+ <path opacity="0.2" d="M1393.22 39.4082L-79.955 889.948" stroke="#5F52FF" stroke-width="0.5"/>
183
+ <path opacity="0.2" d="M1406.03 46.8042L-67.1445 897.344" stroke="#5F52FF" stroke-width="0.5"/>
184
+ <path opacity="0.2" d="M1418.84 54.2002L-54.3349 904.74" stroke="#5F52FF" stroke-width="0.5"/>
185
+ <path opacity="0.2" d="M1431.65 61.5962L-41.5244 912.136" stroke="#5F52FF" stroke-width="0.5"/>
186
+ <path opacity="0.2" d="M1444.46 68.9922L-28.7138 919.532" stroke="#5F52FF" stroke-width="0.5"/>
187
+ <path opacity="0.2" d="M1457.28 76.3882L-15.9033 926.928" stroke="#5F52FF" stroke-width="0.5"/>
188
+ <path opacity="0.2" d="M1470.08 83.7842L-3.09371 934.324" stroke="#5F52FF" stroke-width="0.5"/>
189
+ <path opacity="0.2" d="M1482.9 91.1802L9.71684 941.72" stroke="#5F52FF" stroke-width="0.5"/>
190
+ <path opacity="0.2" d="M1495.71 98.5762L22.5274 949.116" stroke="#5F52FF" stroke-width="0.5"/>
191
+ <path opacity="0.2" d="M1508.52 105.972L35.337 956.512" stroke="#5F52FF" stroke-width="0.5"/>
192
+ <path opacity="0.2" d="M1521.33 113.368L48.1475 963.908" stroke="#5F52FF" stroke-width="0.5"/>
193
+ <path opacity="0.2" d="M1534.14 120.764L60.958 971.304" stroke="#5F52FF" stroke-width="0.5"/>
194
+ <path opacity="0.2" d="M1546.95 128.16L73.7676 978.7" stroke="#5F52FF" stroke-width="0.5"/>
195
+ <path opacity="0.2" d="M1559.76 135.556L86.5782 986.096" stroke="#5F52FF" stroke-width="0.5"/>
196
+ <path opacity="0.2" d="M1572.57 142.952L99.3887 993.492" stroke="#5F52FF" stroke-width="0.5"/>
197
+ <path opacity="0.2" d="M1572.57 142.956L99.4649 993.456" stroke="#5F52FF" stroke-width="0.5"/>
198
+ <path opacity="0.2" d="M1585.56 150.456L112.455 1000.96" stroke="#5F52FF" stroke-width="0.5"/>
199
+ <path opacity="0.2" d="M1598.55 157.956L125.445 1008.46" stroke="#5F52FF" stroke-width="0.5"/>
200
+ <path opacity="0.2" d="M1610.68 164.956L137.569 1015.46" stroke="#5F52FF" stroke-width="0.5"/>
201
+ <path opacity="0.2" d="M1623.67 172.456L150.561 1022.96" stroke="#5F52FF" stroke-width="0.5"/>
202
+ <path opacity="0.2" d="M1636.66 179.956L163.551 1030.46" stroke="#5F52FF" stroke-width="0.5"/>
203
+ <path opacity="0.2" d="M1649.65 187.456L176.541 1037.96" stroke="#5F52FF" stroke-width="0.5"/>
204
+ <path opacity="0.2" d="M1662.64 194.956L189.531 1045.46" stroke="#5F52FF" stroke-width="0.5"/>
205
+ <path opacity="0.2" d="M1674.76 201.956L201.655 1052.46" stroke="#5F52FF" stroke-width="0.5"/>
206
+ <path opacity="0.2" d="M1687.75 209.456L214.646 1059.96" stroke="#5F52FF" stroke-width="0.5"/>
207
+ <path opacity="0.2" d="M1700.75 216.956L227.637 1067.46" stroke="#5F52FF" stroke-width="0.5"/>
208
+ <path opacity="0.2" d="M1713.74 224.456L240.627 1074.96" stroke="#5F52FF" stroke-width="0.5"/>
209
+ <path opacity="0.2" d="M1725.86 231.456L252.751 1081.96" stroke="#5F52FF" stroke-width="0.5"/>
210
+ <path opacity="0.2" d="M1738.85 238.956L265.741 1089.46" stroke="#5F52FF" stroke-width="0.5"/>
211
+ <path opacity="0.2" d="M1751.84 246.456L278.732 1096.96" stroke="#5F52FF" stroke-width="0.5"/>
212
+ <path opacity="0.2" d="M1764.83 253.956L291.723 1104.46" stroke="#5F52FF" stroke-width="0.5"/>
213
+ <path opacity="0.2" d="M1777.82 261.456L304.713 1111.96" stroke="#5F52FF" stroke-width="0.5"/>
214
+ <path opacity="0.2" d="M1789.95 268.456L316.837 1118.96" stroke="#5F52FF" stroke-width="0.5"/>
215
+ <path opacity="0.2" d="M1802.94 275.956L329.827 1126.46" stroke="#5F52FF" stroke-width="0.5"/>
216
+ <path opacity="0.2" d="M1815.93 283.456L342.817 1133.96" stroke="#5F52FF" stroke-width="0.5"/>
217
+ <path opacity="0.2" d="M1828.92 290.956L355.809 1141.46" stroke="#5F52FF" stroke-width="0.5"/>
218
+ <path opacity="0.2" d="M1841.91 298.456L368.799 1148.96" stroke="#5F52FF" stroke-width="0.5"/>
219
+ <path opacity="0.2" d="M1854.03 305.456L380.923 1155.96" stroke="#5F52FF" stroke-width="0.5"/>
220
+ <path opacity="0.2" d="M1867.02 312.956L393.913 1163.46" stroke="#5F52FF" stroke-width="0.5"/>
221
+ <path opacity="0.2" d="M1880.01 320.456L406.903 1170.96" stroke="#5F52FF" stroke-width="0.5"/>
222
+ <path opacity="0.2" d="M1893 327.956L419.894 1178.46" stroke="#5F52FF" stroke-width="0.5"/>
223
+ <path opacity="0.2" d="M1905.99 335.456L432.885 1185.96" stroke="#5F52FF" stroke-width="0.5"/>
224
+ <path opacity="0.2" d="M1918.12 342.456L445.009 1192.96" stroke="#5F52FF" stroke-width="0.5"/>
225
+ <path opacity="0.2" d="M1931.11 349.956L457.999 1200.46" stroke="#5F52FF" stroke-width="0.5"/>
226
+ <path opacity="0.2" d="M1944.1 357.456L470.989 1207.96" stroke="#5F52FF" stroke-width="0.5"/>
227
+ <path opacity="0.2" d="M1957.09 364.956L483.98 1215.46" stroke="#5F52FF" stroke-width="0.5"/>
228
+ <path opacity="0.2" d="M1970.08 372.456L496.971 1222.96" stroke="#5F52FF" stroke-width="0.5"/>
229
+ <path opacity="0.2" d="M1982.2 379.456L509.095 1229.96" stroke="#5F52FF" stroke-width="0.5"/>
230
+ <path opacity="0.2" d="M1995.19 386.956L522.085 1237.46" stroke="#5F52FF" stroke-width="0.5"/>
231
+ <path opacity="0.2" d="M2008.18 394.456L535.075 1244.96" stroke="#5F52FF" stroke-width="0.5"/>
232
+ <path opacity="0.2" d="M2021.17 401.956L548.065 1252.46" stroke="#5F52FF" stroke-width="0.5"/>
233
+ <path opacity="0.2" d="M2033.3 408.956L560.19 1259.46" stroke="#5F52FF" stroke-width="0.5"/>
234
+ <path opacity="0.2" d="M2046.29 416.456L573.181 1266.96" stroke="#5F52FF" stroke-width="0.5"/>
235
+ <path opacity="0.2" d="M2059.28 423.956L586.171 1274.46" stroke="#5F52FF" stroke-width="0.5"/>
236
+ <path opacity="0.2" d="M2072.27 431.456L599.161 1281.96" stroke="#5F52FF" stroke-width="0.5"/>
237
+ <path opacity="0.2" d="M2085.26 438.956L612.151 1289.46" stroke="#5F52FF" stroke-width="0.5"/>
238
+ <path opacity="0.2" d="M2097.39 445.956L624.276 1296.46" stroke="#5F52FF" stroke-width="0.5"/>
239
+ <path opacity="0.2" d="M2110.38 453.456L637.267 1303.96" stroke="#5F52FF" stroke-width="0.5"/>
240
+ <path opacity="0.2" d="M2123.37 460.956L650.257 1311.46" stroke="#5F52FF" stroke-width="0.5"/>
241
+ <path opacity="0.2" d="M2136.36 468.456L663.247 1318.96" stroke="#5F52FF" stroke-width="0.5"/>
242
+ <path opacity="0.2" d="M2149.35 475.956L676.237 1326.46" stroke="#5F52FF" stroke-width="0.5"/>
243
+ <path opacity="0.2" d="M2161.47 482.956L688.362 1333.46" stroke="#5F52FF" stroke-width="0.5"/>
244
+ <path opacity="0.2" d="M2174.46 490.456L701.353 1340.96" stroke="#5F52FF" stroke-width="0.5"/>
245
+ <path opacity="0.2" d="M2187.45 497.956L714.343 1348.46" stroke="#5F52FF" stroke-width="0.5"/>
246
+ <path d="M445.137 542.635L309.86 620.737L207.219 561.478" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
247
+ <path d="M446.455 526.57L311.178 604.672L208 545.102" stroke="#E9725A" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
248
+ <path d="M834.535 346.5L719.354 280" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
249
+ <path d="M819.521 352.5L676.627 270" stroke="#28FFB4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
250
+ <path d="M485.373 526.71L486.764 525.907L492.375 529.146L495.623 527.271L496.871 527.991L492.232 530.67L485.373 526.71ZM500.305 526.141C499.797 526.434 499.241 526.627 498.638 526.719C498.034 526.803 497.441 526.79 496.856 526.68C496.266 526.566 495.723 526.367 495.227 526.081C494.732 525.795 494.386 525.481 494.189 525.14C493.992 524.799 493.97 524.456 494.122 524.112C494.281 523.763 494.615 523.442 495.123 523.149C495.637 522.852 496.193 522.66 496.79 522.572C497.38 522.48 497.977 522.498 498.581 522.627C499.184 522.748 499.759 522.966 500.305 523.281L500.591 523.446L496.914 525.569C497.193 525.694 497.472 525.778 497.752 525.822C498.031 525.859 498.304 525.859 498.571 525.822C498.838 525.778 499.082 525.692 499.305 525.564C499.584 525.402 499.762 525.237 499.838 525.069C499.914 524.893 499.902 524.717 499.8 524.541L501.057 523.815C501.394 524.2 501.502 524.599 501.381 525.014C501.261 525.421 500.902 525.796 500.305 526.141ZM498.4 523.677C497.993 523.516 497.593 523.439 497.199 523.446C496.799 523.45 496.44 523.543 496.123 523.727C495.799 523.914 495.634 524.123 495.628 524.354C495.615 524.581 495.748 524.812 496.028 525.047L498.4 523.677ZM505.497 523.143C504.951 523.459 504.383 523.636 503.792 523.677C503.195 523.713 502.658 523.594 502.182 523.319C501.89 523.151 501.712 522.971 501.649 522.78C501.585 522.582 501.63 522.366 501.782 522.131C501.941 521.893 502.208 521.622 502.582 521.317L503.744 520.36L503.487 520.212C503.265 520.083 503.033 520.027 502.792 520.041C502.55 520.056 502.277 520.151 501.973 520.327C501.687 520.492 501.515 520.661 501.458 520.833C501.407 521.002 501.499 521.158 501.734 521.301L500.448 522.043C499.896 521.717 499.683 521.352 499.81 520.949C499.937 520.538 500.328 520.144 500.982 519.766C501.687 519.359 502.347 519.128 502.963 519.073C503.586 519.015 504.132 519.121 504.602 519.392L508.184 521.46L506.955 522.17L506.402 521.851C506.434 522.104 506.374 522.337 506.221 522.549C506.069 522.755 505.827 522.953 505.497 523.143ZM504.888 522.417C505.103 522.293 505.262 522.157 505.364 522.01C505.472 521.86 505.5 521.704 505.45 521.543C505.399 521.381 505.25 521.229 505.002 521.086L504.583 520.844L503.659 521.653C503.411 521.862 503.268 522.032 503.23 522.164C503.186 522.293 503.262 522.414 503.459 522.527C503.649 522.637 503.868 522.687 504.116 522.676C504.364 522.657 504.621 522.571 504.888 522.417ZM504.477 517.881L505.734 517.155L506.591 517.65C506.426 517.371 506.398 517.12 506.506 516.896C506.607 516.669 506.823 516.46 507.153 516.269L507.554 516.038L508.744 516.726L508.287 516.99C507.995 517.158 507.795 517.329 507.687 517.501C507.573 517.67 507.569 517.851 507.677 518.046C507.785 518.233 508.023 518.432 508.392 518.645L510.726 519.993L509.43 520.741L504.477 517.881ZM508.718 515.432L509.976 514.706L510.652 515.096C510.595 514.85 510.627 514.612 510.747 514.381C510.862 514.146 511.087 513.932 511.424 513.738C511.798 513.521 512.195 513.384 512.615 513.325C513.034 513.259 513.459 513.274 513.891 513.369C514.329 513.461 514.755 513.626 515.168 513.864L518.254 515.646L516.968 516.389L514.034 514.695C513.723 514.515 513.405 514.416 513.081 514.398C512.751 514.376 512.427 514.456 512.11 514.64C511.932 514.742 511.802 514.865 511.719 515.008C511.637 515.144 511.63 515.298 511.7 515.47C511.776 515.639 511.96 515.807 512.253 515.976L514.968 517.544L513.672 518.292L508.718 515.432Z" fill="#465358"/>
251
+ <path d="M441.373 516.71L443.983 515.203C444.752 514.759 445.542 514.475 446.355 514.35C447.168 514.218 447.959 514.228 448.727 514.378C449.496 514.528 450.213 514.796 450.88 515.181C451.541 515.562 452.001 515.975 452.261 516.418C452.522 516.862 452.541 517.32 452.319 517.793C452.103 518.263 451.61 518.719 450.842 519.163L448.232 520.67L441.373 516.71ZM449.642 518.47C450.105 518.202 450.391 517.927 450.499 517.645C450.607 517.355 450.566 517.075 450.375 516.803C450.178 516.528 449.864 516.266 449.432 516.017C448.994 515.764 448.54 515.582 448.07 515.472C447.594 515.359 447.108 515.335 446.612 515.401C446.123 515.463 445.647 515.628 445.183 515.896L443.964 516.6L448.422 519.174L449.642 518.47ZM457.859 515.244C457.35 515.537 456.795 515.73 456.191 515.822C455.588 515.906 454.994 515.893 454.41 515.783C453.819 515.669 453.276 515.47 452.781 515.184C452.286 514.898 451.94 514.584 451.743 514.243C451.546 513.902 451.524 513.559 451.676 513.215C451.835 512.866 452.168 512.545 452.676 512.252C453.191 511.955 453.746 511.763 454.343 511.675C454.934 511.583 455.531 511.601 456.134 511.73C456.738 511.851 457.312 512.069 457.859 512.384L458.144 512.549L454.467 514.672C454.747 514.797 455.026 514.881 455.305 514.925C455.585 514.962 455.858 514.962 456.125 514.925C456.391 514.881 456.636 514.795 456.858 514.667C457.138 514.505 457.316 514.34 457.392 514.172C457.468 513.996 457.455 513.82 457.354 513.644L458.611 512.918C458.948 513.303 459.056 513.702 458.935 514.117C458.814 514.524 458.455 514.899 457.859 515.244ZM455.953 512.78C455.547 512.619 455.147 512.542 454.753 512.549C454.353 512.553 453.994 512.646 453.676 512.83C453.353 513.017 453.187 513.226 453.181 513.457C453.168 513.684 453.302 513.915 453.581 514.15L455.953 512.78ZM457.916 510.492L457.059 510.987L456.078 510.42L456.935 509.925L456.325 509.573C455.989 509.379 455.782 509.194 455.706 509.018C455.636 508.838 455.668 508.669 455.801 508.512C455.928 508.35 456.147 508.18 456.459 508L457.564 507.362L458.545 507.929L457.773 508.374C457.602 508.473 457.516 508.563 457.516 508.644C457.516 508.724 457.595 508.811 457.754 508.902L458.231 509.177L459.469 508.462L460.45 509.029L459.212 509.744L463.184 512.037L461.889 512.785L457.916 510.492ZM467.933 509.428C467.425 509.721 466.869 509.913 466.266 510.005C465.662 510.089 465.069 510.077 464.484 509.967C463.894 509.853 463.351 509.653 462.855 509.367C462.36 509.081 462.014 508.768 461.817 508.427C461.62 508.086 461.598 507.743 461.75 507.398C461.909 507.05 462.243 506.729 462.751 506.436C463.265 506.139 463.821 505.946 464.418 505.858C465.008 505.766 465.605 505.785 466.209 505.913C466.812 506.034 467.387 506.252 467.933 506.568L468.219 506.733L464.542 508.856C464.821 508.98 465.1 509.065 465.38 509.109C465.659 509.145 465.932 509.145 466.199 509.109C466.466 509.065 466.71 508.978 466.933 508.85C467.212 508.689 467.39 508.524 467.466 508.355C467.542 508.179 467.53 508.003 467.428 507.827L468.685 507.101C469.022 507.486 469.13 507.886 469.009 508.3C468.889 508.707 468.53 509.083 467.933 509.428ZM466.028 506.964C465.621 506.802 465.221 506.725 464.827 506.733C464.427 506.736 464.068 506.83 463.751 507.013C463.427 507.2 463.262 507.409 463.256 507.64C463.243 507.867 463.376 508.098 463.656 508.333L466.028 506.964ZM466.505 504.4L467.762 503.674L468.619 504.169C468.454 503.891 468.426 503.639 468.534 503.416C468.635 503.188 468.851 502.979 469.181 502.789L469.581 502.558L470.772 503.245L470.315 503.509C470.023 503.678 469.823 503.848 469.715 504.021C469.601 504.189 469.597 504.371 469.705 504.565C469.813 504.752 470.051 504.952 470.42 505.165L472.754 506.512L471.458 507.26L466.505 504.4Z" fill="#465358"/>
252
+ <path d="M400.373 489.21L402.983 487.703C403.752 487.259 404.542 486.975 405.355 486.85C406.168 486.718 406.959 486.728 407.727 486.878C408.496 487.028 409.213 487.296 409.88 487.681C410.541 488.062 411.001 488.475 411.261 488.918C411.522 489.362 411.541 489.82 411.319 490.293C411.103 490.763 410.61 491.219 409.842 491.663L407.232 493.17L400.373 489.21ZM408.642 490.97C409.105 490.702 409.391 490.427 409.499 490.145C409.607 489.855 409.566 489.575 409.375 489.303C409.178 489.028 408.864 488.766 408.432 488.517C407.994 488.264 407.54 488.082 407.07 487.972C406.594 487.859 406.108 487.835 405.612 487.901C405.123 487.963 404.647 488.128 404.183 488.396L402.964 489.1L407.422 491.674L408.642 490.97ZM416.859 487.744C416.35 488.037 415.795 488.23 415.191 488.322C414.588 488.406 413.994 488.393 413.41 488.283C412.819 488.169 412.276 487.97 411.781 487.684C411.286 487.398 410.94 487.084 410.743 486.743C410.546 486.402 410.524 486.059 410.676 485.715C410.835 485.366 411.168 485.045 411.676 484.752C412.191 484.455 412.746 484.263 413.343 484.175C413.934 484.083 414.531 484.101 415.134 484.23C415.738 484.351 416.312 484.569 416.859 484.884L417.144 485.049L413.467 487.172C413.747 487.297 414.026 487.381 414.305 487.425C414.585 487.462 414.858 487.462 415.125 487.425C415.391 487.381 415.636 487.295 415.858 487.167C416.138 487.005 416.316 486.84 416.392 486.672C416.468 486.496 416.455 486.32 416.354 486.144L417.611 485.418C417.948 485.803 418.056 486.202 417.935 486.617C417.814 487.024 417.455 487.399 416.859 487.744ZM414.953 485.28C414.547 485.119 414.147 485.042 413.753 485.049C413.353 485.053 412.994 485.146 412.676 485.33C412.353 485.517 412.187 485.726 412.181 485.957C412.168 486.184 412.302 486.415 412.581 486.65L414.953 485.28ZM416.916 482.992L416.059 483.487L415.078 482.92L415.935 482.425L415.325 482.073C414.989 481.879 414.782 481.694 414.706 481.518C414.636 481.338 414.668 481.169 414.801 481.012C414.928 480.85 415.147 480.68 415.459 480.5L416.564 479.862L417.545 480.429L416.773 480.874C416.602 480.973 416.516 481.063 416.516 481.144C416.516 481.224 416.595 481.311 416.754 481.402L417.231 481.677L418.469 480.962L419.45 481.529L418.212 482.244L422.184 484.537L420.889 485.285L416.916 482.992ZM426.933 481.928C426.425 482.221 425.869 482.413 425.266 482.505C424.662 482.589 424.069 482.577 423.484 482.467C422.894 482.353 422.351 482.153 421.855 481.867C421.36 481.581 421.014 481.268 420.817 480.927C420.62 480.586 420.598 480.243 420.75 479.898C420.909 479.55 421.243 479.229 421.751 478.936C422.265 478.639 422.821 478.446 423.418 478.358C424.008 478.266 424.605 478.285 425.209 478.413C425.812 478.534 426.387 478.752 426.933 479.068L427.219 479.233L423.542 481.356C423.821 481.48 424.1 481.565 424.38 481.609C424.659 481.645 424.932 481.645 425.199 481.609C425.466 481.565 425.71 481.478 425.933 481.35C426.212 481.189 426.39 481.024 426.466 480.855C426.542 480.679 426.53 480.503 426.428 480.327L427.685 479.601C428.022 479.986 428.13 480.386 428.009 480.8C427.889 481.207 427.53 481.583 426.933 481.928ZM425.028 479.464C424.621 479.302 424.221 479.225 423.827 479.233C423.427 479.236 423.068 479.33 422.751 479.513C422.427 479.7 422.262 479.909 422.256 480.14C422.243 480.367 422.376 480.598 422.656 480.833L425.028 479.464ZM425.505 476.9L426.762 476.174L427.619 476.669C427.454 476.391 427.426 476.139 427.534 475.916C427.635 475.688 427.851 475.479 428.181 475.289L428.581 475.058L429.772 475.745L429.315 476.009C429.023 476.178 428.823 476.348 428.715 476.521C428.601 476.689 428.597 476.871 428.705 477.065C428.813 477.252 429.051 477.452 429.42 477.665L431.754 479.012L430.458 479.76L425.505 476.9ZM429.746 474.451L431.004 473.725L431.861 474.22C431.696 473.942 431.667 473.69 431.775 473.467C431.877 473.239 432.093 473.03 432.423 472.84L432.823 472.609L434.014 473.296L433.557 473.56C433.265 473.729 433.065 473.899 432.957 474.072C432.842 474.24 432.839 474.422 432.947 474.616C433.055 474.803 433.293 475.003 433.662 475.216L435.996 476.563L434.7 477.311L429.746 474.451ZM440.609 474.032C440.063 474.347 439.494 474.525 438.904 474.565C438.307 474.602 437.77 474.483 437.294 474.208C437.002 474.039 436.824 473.859 436.76 473.669C436.697 473.471 436.741 473.254 436.894 473.02C437.052 472.781 437.319 472.51 437.694 472.206L438.856 471.249L438.599 471.1C438.377 470.972 438.145 470.915 437.903 470.93C437.662 470.944 437.389 471.04 437.084 471.216C436.798 471.381 436.627 471.549 436.57 471.722C436.519 471.89 436.611 472.046 436.846 472.189L435.56 472.932C435.007 472.605 434.795 472.241 434.922 471.837C435.049 471.427 435.439 471.032 436.093 470.655C436.798 470.248 437.459 470.017 438.075 469.962C438.697 469.903 439.243 470.009 439.713 470.281L443.295 472.349L442.066 473.058L441.514 472.739C441.546 472.992 441.485 473.225 441.333 473.438C441.18 473.643 440.939 473.841 440.609 474.032ZM439.999 473.306C440.215 473.181 440.374 473.045 440.475 472.899C440.583 472.748 440.612 472.593 440.561 472.431C440.51 472.27 440.361 472.118 440.113 471.975L439.694 471.733L438.77 472.541C438.523 472.75 438.38 472.921 438.342 473.053C438.297 473.181 438.373 473.302 438.57 473.416C438.761 473.526 438.98 473.575 439.228 473.564C439.475 473.546 439.732 473.46 439.999 473.306ZM437.683 467.669L438.978 466.921L445.837 470.881L444.542 471.629L437.683 467.669ZM452.114 467.389C451.606 467.683 451.05 467.875 450.447 467.967C449.844 468.051 449.25 468.038 448.665 467.928C448.075 467.815 447.532 467.615 447.036 467.329C446.541 467.043 446.195 466.729 445.998 466.388C445.801 466.047 445.779 465.704 445.931 465.36C446.09 465.011 446.424 464.691 446.932 464.397C447.446 464.1 448.002 463.908 448.599 463.82C449.189 463.728 449.786 463.746 450.39 463.875C450.993 463.996 451.568 464.214 452.114 464.529L452.4 464.694L448.723 466.817C449.002 466.942 449.281 467.026 449.561 467.07C449.84 467.107 450.113 467.107 450.38 467.07C450.647 467.026 450.891 466.94 451.114 466.812C451.393 466.65 451.571 466.485 451.647 466.317C451.723 466.141 451.711 465.965 451.609 465.789L452.867 465.063C453.203 465.448 453.311 465.847 453.19 466.262C453.07 466.669 452.711 467.045 452.114 467.389ZM450.209 464.925C449.802 464.764 449.402 464.687 449.008 464.694C448.608 464.698 448.249 464.791 447.932 464.975C447.608 465.162 447.443 465.371 447.437 465.602C447.424 465.829 447.557 466.06 447.837 466.295L450.209 464.925ZM450.238 462.621L451.638 461.812L456.582 463.259L454.058 460.415L455.449 459.612L458.545 463.545L457.059 464.403L450.238 462.621ZM463.714 460.692C463.206 460.985 462.65 461.178 462.047 461.269C461.444 461.354 460.85 461.341 460.266 461.231C459.675 461.117 459.132 460.917 458.637 460.631C458.141 460.345 457.795 460.032 457.598 459.691C457.401 459.35 457.379 459.007 457.531 458.662C457.69 458.314 458.024 457.993 458.532 457.7C459.046 457.403 459.602 457.21 460.199 457.122C460.789 457.031 461.386 457.049 461.99 457.177C462.593 457.298 463.168 457.517 463.714 457.832L464 457.997L460.323 460.12C460.602 460.245 460.882 460.329 461.161 460.373C461.44 460.41 461.714 460.41 461.98 460.373C462.247 460.329 462.491 460.243 462.714 460.114C462.993 459.953 463.171 459.788 463.247 459.619C463.323 459.443 463.311 459.267 463.209 459.091L464.467 458.365C464.803 458.75 464.911 459.15 464.791 459.564C464.67 459.971 464.311 460.347 463.714 460.692ZM461.809 458.228C461.402 458.067 461.002 457.99 460.608 457.997C460.208 458.001 459.85 458.094 459.532 458.277C459.208 458.464 459.043 458.673 459.037 458.904C459.024 459.132 459.157 459.363 459.437 459.597L461.809 458.228ZM462.286 455.665L463.543 454.939L464.219 455.329C464.162 455.084 464.194 454.845 464.315 454.614C464.429 454.38 464.654 454.165 464.991 453.971C465.366 453.754 465.763 453.617 466.182 453.558C466.601 453.492 467.027 453.507 467.458 453.602C467.897 453.694 468.322 453.859 468.735 454.097L471.821 455.879L470.535 456.622L467.601 454.928C467.29 454.748 466.973 454.649 466.649 454.631C466.318 454.609 465.995 454.689 465.677 454.873C465.499 454.975 465.369 455.098 465.286 455.241C465.204 455.377 465.197 455.531 465.267 455.703C465.344 455.872 465.528 456.041 465.82 456.209L468.535 457.777L467.239 458.525L462.286 455.665ZM475.127 453.971C474.815 454.151 474.523 454.279 474.25 454.356C473.971 454.429 473.676 454.446 473.364 454.405C473.059 454.361 472.736 454.24 472.393 454.042L469.725 452.502L468.868 452.997L467.887 452.431L468.744 451.936L467.22 451.056L468.515 450.308L470.04 451.188L471.278 450.473L472.259 451.039L471.021 451.754L473.555 453.217C473.714 453.309 473.866 453.357 474.012 453.36C474.152 453.36 474.307 453.311 474.479 453.212L475.251 452.766L476.232 453.333L475.127 453.971ZM479.447 451.609C478.742 452.016 478.05 452.254 477.37 452.324C476.697 452.39 476.039 452.26 475.398 451.933L476.655 451.207C476.992 451.365 477.313 451.429 477.618 451.4C477.929 451.367 478.253 451.253 478.589 451.059C478.862 450.901 479.034 450.747 479.104 450.597C479.167 450.443 479.113 450.316 478.942 450.217C478.821 450.148 478.7 450.107 478.58 450.096C478.459 450.085 478.288 450.111 478.065 450.173C477.843 450.228 477.538 450.338 477.151 450.503C476.554 450.745 476.039 450.91 475.608 450.998C475.176 451.086 474.798 451.11 474.474 451.07C474.156 451.026 473.855 450.921 473.569 450.756C473.099 450.485 472.921 450.162 473.036 449.788C473.15 449.414 473.528 449.042 474.169 448.672C474.88 448.261 475.576 448.036 476.255 447.995C476.929 447.951 477.535 448.078 478.075 448.375L476.875 449.068C476.57 448.899 476.268 448.835 475.97 448.875C475.671 448.916 475.373 449.022 475.074 449.194C474.826 449.337 474.671 449.482 474.607 449.629C474.55 449.772 474.604 449.891 474.769 449.986C474.89 450.056 475.02 450.094 475.16 450.102C475.3 450.102 475.481 450.071 475.703 450.008C475.925 449.939 476.227 449.823 476.608 449.662C477.192 449.42 477.697 449.257 478.123 449.172C478.542 449.084 478.913 449.064 479.237 449.112C479.555 449.156 479.856 449.26 480.142 449.425C480.631 449.708 480.806 450.047 480.666 450.443C480.526 450.831 480.12 451.22 479.447 451.609Z" fill="#465358"/>
253
+ <path d="M319.488 535.989L321.117 535.048L330.624 537.479L329.147 538.332L327.156 537.798L324.251 539.476L325.165 540.631L323.736 541.456L319.488 535.989ZM325.566 537.353L321.631 536.291L323.479 538.557L325.566 537.353ZM336.161 534.283L334.904 535.009L334.227 534.618C334.285 534.864 334.256 535.104 334.142 535.339C334.021 535.57 333.792 535.782 333.456 535.977C333.081 536.193 332.684 536.334 332.265 536.4C331.846 536.459 331.417 536.442 330.979 536.351C330.547 536.255 330.125 536.088 329.712 535.85L326.625 534.068L327.911 533.326L330.846 535.02C331.157 535.199 331.477 535.3 331.808 535.322C332.132 535.34 332.452 535.258 332.77 535.075C332.948 534.972 333.078 534.853 333.16 534.717C333.243 534.574 333.246 534.418 333.17 534.25C333.1 534.077 332.919 533.907 332.627 533.738L329.912 532.171L331.208 531.423L336.161 534.283ZM339.638 532.407C339.174 532.675 338.666 532.84 338.114 532.902C337.555 532.961 336.996 532.928 336.437 532.803C335.872 532.675 335.342 532.468 334.846 532.182C334.344 531.892 333.986 531.586 333.77 531.263C333.547 530.937 333.49 530.614 333.598 530.295C333.706 529.976 333.992 529.683 334.456 529.415C334.786 529.225 335.135 529.093 335.504 529.019C335.878 528.942 336.266 528.92 336.666 528.953L334.17 527.512L335.465 526.764L342.324 530.724L341.067 531.45L340.41 531.071C340.486 531.313 340.464 531.546 340.343 531.769C340.222 531.993 339.987 532.206 339.638 532.407ZM338.895 531.604C339.162 531.45 339.32 531.285 339.371 531.109C339.422 530.933 339.381 530.755 339.247 530.576C339.108 530.392 338.882 530.211 338.571 530.031C338.26 529.852 337.945 529.721 337.628 529.641C337.31 529.56 337.002 529.536 336.704 529.569C336.399 529.599 336.113 529.69 335.846 529.844C335.573 530.002 335.411 530.169 335.361 530.345C335.303 530.517 335.345 530.695 335.484 530.878C335.631 531.058 335.859 531.238 336.17 531.417C336.482 531.597 336.793 531.729 337.104 531.813C337.415 531.89 337.723 531.914 338.028 531.885C338.333 531.855 338.622 531.762 338.895 531.604ZM338.728 527.081L340.023 526.333L344.977 529.193L343.681 529.941L338.728 527.081ZM336.822 525.981L338.118 525.233L339.271 525.898L337.975 526.646L336.822 525.981ZM348.276 527.288C347.964 527.468 347.672 527.596 347.399 527.673C347.12 527.747 346.824 527.763 346.513 527.723C346.208 527.679 345.885 527.558 345.542 527.36L342.874 525.82L342.017 526.315L341.036 525.748L341.893 525.253L340.369 524.373L341.664 523.625L343.189 524.505L344.427 523.79L345.408 524.357L344.17 525.072L346.704 526.535C346.863 526.626 347.015 526.674 347.161 526.678C347.301 526.678 347.456 526.628 347.628 526.529L348.399 526.084L349.381 526.65L348.276 527.288ZM355.402 523.306C354.894 523.599 354.339 523.791 353.735 523.883C353.132 523.967 352.538 523.955 351.954 523.845C351.363 523.731 350.82 523.531 350.325 523.245C349.83 522.959 349.483 522.646 349.287 522.305C349.09 521.964 349.067 521.621 349.22 521.276C349.379 520.928 349.712 520.607 350.22 520.314C350.735 520.017 351.29 519.824 351.887 519.736C352.478 519.644 353.075 519.663 353.678 519.791C354.281 519.912 354.856 520.13 355.402 520.446L355.688 520.611L352.011 522.734C352.29 522.858 352.57 522.943 352.849 522.987C353.129 523.023 353.402 523.023 353.669 522.987C353.935 522.943 354.18 522.856 354.402 522.728C354.682 522.567 354.859 522.402 354.936 522.233C355.012 522.057 354.999 521.881 354.898 521.705L356.155 520.979C356.492 521.364 356.6 521.764 356.479 522.178C356.358 522.585 355.999 522.961 355.402 523.306ZM353.497 520.842C353.091 520.68 352.691 520.603 352.297 520.611C351.897 520.614 351.538 520.708 351.22 520.891C350.896 521.078 350.731 521.287 350.725 521.518C350.712 521.745 350.846 521.976 351.125 522.211L353.497 520.842ZM353.526 518.537L354.927 517.728L359.871 519.175L357.346 516.331L358.737 515.528L361.833 519.461L360.347 520.319L353.526 518.537ZM367.003 516.608C366.494 516.902 365.939 517.094 365.335 517.186C364.732 517.27 364.138 517.257 363.554 517.147C362.963 517.034 362.42 516.834 361.925 516.548C361.43 516.262 361.084 515.948 360.887 515.607C360.69 515.266 360.668 514.923 360.82 514.579C360.979 514.23 361.312 513.91 361.82 513.616C362.335 513.319 362.89 513.127 363.487 513.039C364.078 512.947 364.675 512.965 365.278 513.094C365.882 513.215 366.456 513.433 367.003 513.748L367.288 513.913L363.611 516.036C363.891 516.161 364.17 516.245 364.449 516.289C364.729 516.326 365.002 516.326 365.269 516.289C365.535 516.245 365.78 516.159 366.002 516.031C366.282 515.869 366.46 515.704 366.536 515.536C366.612 515.36 366.599 515.184 366.498 515.008L367.755 514.282C368.092 514.667 368.2 515.066 368.079 515.481C367.958 515.888 367.6 516.264 367.003 516.608ZM365.097 514.144C364.691 513.983 364.291 513.906 363.897 513.913C363.497 513.917 363.138 514.01 362.82 514.194C362.497 514.381 362.331 514.59 362.325 514.821C362.312 515.048 362.446 515.279 362.725 515.514L365.097 514.144ZM365.574 511.581L366.832 510.855L367.508 511.246C367.451 511 367.483 510.762 367.603 510.531C367.718 510.296 367.943 510.081 368.28 509.887C368.654 509.671 369.051 509.533 369.47 509.475C369.89 509.409 370.315 509.423 370.747 509.519C371.185 509.61 371.611 509.775 372.023 510.014L375.11 511.796L373.824 512.538L370.89 510.844C370.579 510.664 370.261 510.565 369.937 510.547C369.607 510.525 369.283 510.606 368.965 510.789C368.788 510.892 368.657 511.015 368.575 511.158C368.492 511.293 368.486 511.447 368.556 511.62C368.632 511.788 368.816 511.957 369.108 512.126L371.823 513.693L370.528 514.441L365.574 511.581ZM378.415 509.887C378.104 510.067 377.812 510.195 377.539 510.272C377.259 510.346 376.964 510.362 376.653 510.322C376.348 510.278 376.024 510.157 375.681 509.959L373.014 508.419L372.156 508.914L371.175 508.347L372.033 507.852L370.508 506.972L371.804 506.224L373.328 507.104L374.567 506.389L375.548 506.956L374.309 507.671L376.843 509.134C377.002 509.225 377.155 509.273 377.301 509.277C377.44 509.277 377.596 509.227 377.767 509.128L378.539 508.683L379.52 509.249L378.415 509.887ZM382.735 507.525C382.03 507.932 381.338 508.17 380.658 508.24C379.985 508.306 379.328 508.176 378.686 507.85L379.944 507.124C380.281 507.281 380.601 507.345 380.906 507.316C381.217 507.283 381.541 507.169 381.878 506.975C382.151 506.817 382.322 506.663 382.392 506.513C382.456 506.359 382.402 506.233 382.23 506.134C382.11 506.064 381.989 506.024 381.868 506.013C381.748 506.002 381.576 506.027 381.354 506.09C381.132 506.145 380.827 506.255 380.439 506.42C379.842 506.662 379.328 506.827 378.896 506.915C378.464 507.003 378.086 507.026 377.762 506.986C377.445 506.942 377.143 506.838 376.857 506.673C376.387 506.401 376.21 506.079 376.324 505.705C376.438 505.331 376.816 504.958 377.458 504.588C378.169 504.177 378.864 503.952 379.544 503.912C380.217 503.868 380.824 503.994 381.363 504.291L380.163 504.984C379.858 504.815 379.557 504.751 379.258 504.792C378.96 504.832 378.661 504.938 378.363 505.111C378.115 505.254 377.959 505.398 377.896 505.545C377.839 505.688 377.893 505.807 378.058 505.903C378.178 505.972 378.309 506.011 378.448 506.018C378.588 506.018 378.769 505.987 378.991 505.925C379.214 505.855 379.515 505.739 379.896 505.578C380.481 505.336 380.986 505.173 381.411 505.089C381.83 505.001 382.202 504.98 382.526 505.028C382.843 505.072 383.145 505.177 383.431 505.342C383.92 505.624 384.094 505.963 383.955 506.359C383.815 506.748 383.408 507.136 382.735 507.525Z" fill="#465358"/>
254
+ <path d="M427.488 559.489L429.117 558.548L438.624 560.979L437.147 561.832L435.156 561.298L432.251 562.976L433.165 564.131L431.736 564.956L427.488 559.489ZM433.566 560.853L429.631 559.791L431.479 562.057L433.566 560.853ZM441.97 559.18C441.462 559.473 440.91 559.664 440.313 559.752C439.716 559.832 439.125 559.818 438.541 559.708C437.95 559.594 437.407 559.394 436.912 559.108C436.416 558.822 436.07 558.509 435.873 558.168C435.676 557.827 435.651 557.486 435.797 557.145C435.95 556.8 436.28 556.481 436.788 556.188C437.467 555.795 438.179 555.583 438.922 555.55C439.665 555.517 440.367 555.647 441.027 555.94L439.731 556.688C439.414 556.571 439.09 556.523 438.76 556.545C438.43 556.56 438.128 556.646 437.855 556.804C437.601 556.95 437.452 557.11 437.407 557.282C437.356 557.451 437.401 557.627 437.54 557.81C437.686 557.99 437.915 558.169 438.226 558.349C438.538 558.529 438.849 558.661 439.16 558.745C439.471 558.822 439.776 558.848 440.074 558.822C440.373 558.796 440.649 558.71 440.903 558.564C441.189 558.399 441.341 558.219 441.36 558.025C441.386 557.827 441.275 557.63 441.027 557.436L442.323 556.688C442.85 557.08 443.091 557.498 443.047 557.942C442.996 558.382 442.637 558.795 441.97 559.18ZM447.206 556.025C446.895 556.204 446.603 556.333 446.33 556.41C446.05 556.483 445.755 556.5 445.444 556.459C445.139 556.415 444.815 556.294 444.472 556.096L441.805 554.556L440.947 555.051L439.966 554.485L440.823 553.99L439.299 553.11L440.595 552.362L442.119 553.242L443.357 552.527L444.339 553.093L443.1 553.808L445.634 555.271C445.793 555.363 445.945 555.411 446.091 555.414C446.231 555.414 446.387 555.365 446.558 555.266L447.33 554.82L448.311 555.387L447.206 556.025Z" fill="#465358"/>
255
+ <path d="M601.706 527.272C600.988 526.857 600.369 526.32 599.848 525.66C599.334 524.996 598.943 524.276 598.676 523.498C598.416 522.725 598.286 521.96 598.286 521.205C598.286 520.442 598.416 519.828 598.676 519.362C598.943 518.893 599.334 518.627 599.848 518.565C600.369 518.499 600.988 518.673 601.706 519.087C602.43 519.505 603.049 520.046 603.563 520.71C604.084 521.37 604.475 522.087 604.735 522.86C605.002 523.638 605.135 524.404 605.135 525.159C605.135 525.915 605.002 526.527 604.735 526.997C604.475 527.47 604.084 527.739 603.563 527.805C603.049 527.867 602.43 527.69 601.706 527.272ZM601.706 525.842C602.157 526.102 602.528 526.199 602.82 526.133C603.119 526.063 603.338 525.871 603.478 525.556C603.617 525.233 603.687 524.822 603.687 524.323C603.687 523.817 603.617 523.326 603.478 522.85C603.338 522.365 603.119 521.92 602.82 521.513C602.528 521.11 602.157 520.778 601.706 520.517C601.268 520.264 600.899 520.169 600.601 520.231C600.302 520.294 600.083 520.486 599.943 520.809C599.804 521.132 599.734 521.542 599.734 522.041C599.734 522.54 599.804 523.031 599.943 523.515C600.083 523.992 600.302 524.437 600.601 524.851C600.899 525.259 601.268 525.589 601.706 525.842ZM608.72 525.337C609.184 525.605 609.58 525.962 609.911 526.41C610.241 526.857 610.492 527.357 610.663 527.911C610.835 528.457 610.92 529.02 610.92 529.6C610.92 530.172 610.835 530.635 610.663 530.991C610.492 531.339 610.241 531.55 609.911 531.624C609.58 531.69 609.184 531.589 608.72 531.321C608.39 531.13 608.098 530.892 607.843 530.606C607.596 530.316 607.386 529.99 607.215 529.627L607.215 532.52L605.919 531.772L605.919 523.852L607.177 524.578L607.177 525.337C607.348 525.15 607.561 525.053 607.815 525.046C608.069 525.038 608.371 525.135 608.72 525.337ZM608.396 526.382C608.129 526.228 607.907 526.173 607.729 526.217C607.551 526.254 607.418 526.378 607.329 526.591C607.24 526.804 607.196 527.09 607.196 527.449C607.196 527.808 607.24 528.146 607.329 528.461C607.418 528.769 607.551 529.048 607.729 529.297C607.907 529.546 608.129 529.748 608.396 529.902C608.669 530.06 608.895 530.117 609.072 530.073C609.25 530.029 609.38 529.902 609.463 529.693C609.552 529.48 609.596 529.194 609.596 528.835C609.596 528.476 609.552 528.138 609.463 527.823C609.38 527.511 609.25 527.235 609.072 526.993C608.895 526.743 608.669 526.54 608.396 526.382ZM613.63 534.024C613.319 533.844 613.062 533.656 612.859 533.458C612.655 533.252 612.493 533.005 612.373 532.715C612.258 532.429 612.201 532.088 612.201 531.692L612.201 528.612L611.344 528.117L611.344 526.984L612.201 527.479L612.201 525.719L613.497 526.467L613.497 528.227L614.735 528.942L614.735 530.075L613.497 529.36L613.497 532.286C613.497 532.469 613.532 532.625 613.602 532.754C613.671 532.875 613.792 532.985 613.964 533.084L614.735 533.529L614.735 534.662L613.63 534.024ZM615.464 529.363L616.759 530.111L616.759 535.831L615.464 535.083L615.464 529.363ZM615.464 527.163L616.759 527.911L616.759 529.242L615.464 528.494L615.464 527.163ZM620.068 537.873C619.547 537.572 619.093 537.182 618.705 536.701C618.324 536.217 618.032 535.693 617.829 535.128C617.632 534.56 617.534 533.99 617.534 533.418C617.534 532.846 617.632 532.389 617.829 532.048C618.032 531.711 618.324 531.524 618.705 531.487C619.093 531.454 619.547 531.588 620.068 531.889C620.595 532.193 621.049 532.584 621.43 533.06C621.817 533.541 622.109 534.065 622.306 534.633C622.503 535.202 622.602 535.772 622.602 536.344C622.602 536.916 622.503 537.372 622.306 537.713C622.109 538.047 621.817 538.234 621.43 538.274C621.049 538.311 620.595 538.177 620.068 537.873ZM620.068 536.641C620.347 536.802 620.576 536.861 620.754 536.817C620.938 536.776 621.071 536.652 621.154 536.443C621.243 536.23 621.287 535.944 621.287 535.585C621.287 535.225 621.243 534.888 621.154 534.573C621.071 534.261 620.938 533.982 620.754 533.737C620.576 533.487 620.347 533.282 620.068 533.121C619.795 532.963 619.566 532.904 619.382 532.945C619.204 532.981 619.071 533.106 618.982 533.319C618.893 533.531 618.848 533.817 618.848 534.177C618.848 534.536 618.893 534.873 618.982 535.189C619.071 535.497 619.204 535.775 619.382 536.025C619.566 536.278 619.795 536.483 620.068 536.641ZM623.381 533.934L624.638 534.66L624.638 535.441C624.823 535.268 625.045 535.177 625.305 535.166C625.566 535.147 625.864 535.235 626.201 535.43C626.575 535.646 626.893 535.921 627.153 536.255C627.42 536.585 627.62 536.961 627.753 537.382C627.893 537.808 627.963 538.259 627.963 538.735L627.963 542.299L626.677 541.557L626.677 538.169C626.677 537.809 626.604 537.485 626.458 537.195C626.312 536.898 626.08 536.658 625.762 536.475C625.585 536.372 625.413 536.321 625.248 536.321C625.089 536.317 624.953 536.389 624.838 536.535C624.73 536.686 624.676 536.929 624.676 537.267L624.676 540.402L623.381 539.654L623.381 533.934ZM598.572 528.41L599.962 529.213L599.962 532.348L603.011 534.108L603.011 530.973L604.402 531.776L604.402 539.696L603.011 538.893L603.011 535.56L599.962 533.8L599.962 537.133L598.572 536.33L598.572 528.41ZM607.025 541.343C606.479 541.027 606.041 540.624 605.711 540.133C605.381 539.634 605.215 539.11 605.215 538.56C605.215 538.222 605.282 537.979 605.415 537.828C605.555 537.674 605.765 537.605 606.044 537.619C606.33 537.638 606.698 537.733 607.149 537.905L608.559 538.433L608.559 538.136C608.559 537.88 608.492 537.65 608.359 537.449C608.226 537.247 608.007 537.058 607.702 536.882C607.416 536.717 607.184 536.653 607.006 536.69C606.835 536.73 606.746 536.888 606.74 537.163L605.454 536.42C605.46 535.779 605.669 535.412 606.082 535.32C606.501 535.225 607.038 535.366 607.692 535.744C608.397 536.151 608.927 536.607 609.283 537.113C609.645 537.623 609.826 538.149 609.826 538.692L609.826 542.828L608.597 542.118L608.597 541.48C608.394 541.634 608.162 541.698 607.902 541.673C607.648 541.643 607.356 541.533 607.025 541.343ZM607.349 540.452C607.565 540.576 607.762 540.646 607.94 540.661C608.124 540.679 608.273 540.626 608.388 540.501C608.502 540.377 608.559 540.171 608.559 539.885L608.559 539.401L607.397 539.005C607.092 538.895 606.873 538.857 606.74 538.89C606.606 538.915 606.54 539.042 606.54 539.269C606.54 539.489 606.606 539.704 606.74 539.913C606.879 540.118 607.083 540.298 607.349 540.452ZM610.692 537.608L611.949 538.334L611.949 539.115C612.133 538.942 612.356 538.851 612.616 538.84C612.876 538.821 613.175 538.909 613.511 539.104C613.886 539.32 614.204 539.595 614.464 539.929C614.731 540.259 614.931 540.634 615.064 541.056C615.204 541.481 615.274 541.932 615.274 542.409L615.274 545.973L613.988 545.231L613.988 541.843C613.988 541.483 613.915 541.159 613.769 540.869C613.623 540.572 613.391 540.332 613.073 540.149C612.895 540.046 612.724 539.995 612.559 539.995C612.4 539.991 612.263 540.062 612.149 540.209C612.041 540.359 611.987 540.603 611.987 540.941L611.987 544.076L610.692 543.328L610.692 537.608ZM618.255 547.826C617.791 547.559 617.395 547.201 617.064 546.754C616.734 546.299 616.483 545.799 616.312 545.252C616.14 544.699 616.055 544.136 616.055 543.564C616.055 542.984 616.14 542.521 616.312 542.172C616.483 541.817 616.734 541.606 617.064 541.54C617.395 541.474 617.791 541.575 618.255 541.842C618.585 542.033 618.874 542.269 619.122 542.552C619.376 542.838 619.589 543.162 619.76 543.525L619.76 540.643L621.056 541.391L621.056 549.311L619.798 548.585L619.798 547.826C619.627 548.013 619.414 548.11 619.16 548.118C618.906 548.125 618.604 548.028 618.255 547.826ZM618.579 546.781C618.846 546.935 619.068 546.99 619.246 546.946C619.424 546.902 619.557 546.778 619.646 546.572C619.735 546.36 619.779 546.074 619.779 545.714C619.779 545.355 619.735 545.018 619.646 544.702C619.557 544.387 619.424 544.108 619.246 543.866C619.068 543.617 618.846 543.415 618.579 543.261C618.306 543.104 618.08 543.047 617.903 543.091C617.725 543.127 617.591 543.252 617.503 543.465C617.42 543.681 617.379 543.969 617.379 544.328C617.379 544.688 617.42 545.023 617.503 545.335C617.591 545.643 617.725 545.921 617.903 546.171C618.08 546.42 618.306 546.624 618.579 546.781ZM622.041 541.96L623.337 542.708L623.337 550.628L622.041 549.88L622.041 541.96ZM626.607 552.648C626.099 552.355 625.654 551.97 625.273 551.493C624.898 551.013 624.612 550.492 624.416 549.931C624.219 549.363 624.12 548.793 624.12 548.221C624.12 547.649 624.219 547.192 624.416 546.851C624.612 546.51 624.898 546.319 625.273 546.279C625.654 546.242 626.099 546.371 626.607 546.664C627.121 546.961 627.566 547.346 627.94 547.819C628.315 548.285 628.598 548.811 628.788 549.398C628.985 549.981 629.083 550.587 629.083 551.218L629.083 551.548L625.406 549.425C625.438 549.729 625.505 550.014 625.606 550.278C625.714 550.538 625.851 550.774 626.016 550.987C626.187 551.196 626.384 551.365 626.607 551.493C626.886 551.654 627.118 551.726 627.302 551.708C627.493 551.686 627.639 551.587 627.74 551.411L628.998 552.137C628.833 552.621 628.54 552.914 628.121 553.017C627.708 553.116 627.204 552.993 626.607 552.648ZM627.788 549.766C627.724 549.333 627.591 548.948 627.388 548.611C627.185 548.266 626.924 548.002 626.607 547.819C626.283 547.632 626.019 547.594 625.816 547.704C625.613 547.806 625.479 548.037 625.416 548.397L627.788 549.766ZM629.865 548.677L631.123 549.403L631.123 550.393C631.281 550.111 631.485 549.961 631.732 549.942C631.98 549.917 632.269 549.999 632.599 550.19L632.999 550.421L632.999 551.796L632.542 551.532C632.25 551.363 632.002 551.275 631.799 551.268C631.596 551.253 631.437 551.341 631.323 551.532C631.215 551.719 631.161 552.025 631.161 552.45L631.161 555.145L629.865 554.397L629.865 548.677ZM635.707 557.902C635.002 557.495 634.45 557.015 634.05 556.461C633.656 555.911 633.44 555.277 633.402 554.558L634.659 555.284C634.691 555.655 634.796 555.964 634.974 556.214C635.158 556.467 635.418 556.69 635.755 556.885C636.028 557.042 636.247 557.114 636.412 557.099C636.577 557.077 636.66 556.967 636.66 556.769C636.66 556.63 636.635 556.505 636.584 556.395C636.533 556.285 636.425 556.15 636.26 555.988C636.101 555.823 635.853 555.614 635.517 555.361C635.009 554.965 634.609 554.602 634.316 554.272C634.024 553.942 633.815 553.627 633.688 553.326C633.567 553.029 633.507 552.716 633.507 552.386C633.507 551.843 633.697 551.528 634.078 551.44C634.459 551.352 634.971 551.493 635.612 551.863C636.323 552.274 636.866 552.763 637.241 553.332C637.616 553.893 637.809 554.481 637.822 555.097L636.622 554.404C636.615 554.056 636.52 553.763 636.336 553.524C636.152 553.286 635.911 553.081 635.612 552.908C635.364 552.765 635.161 552.703 635.002 552.721C634.85 552.743 634.774 552.85 634.774 553.04C634.774 553.18 634.805 553.312 634.869 553.436C634.939 553.557 635.056 553.698 635.221 553.86C635.393 554.017 635.644 554.221 635.974 554.47C636.476 554.855 636.87 555.211 637.155 555.537C637.441 555.856 637.644 556.168 637.765 556.472C637.886 556.769 637.946 557.083 637.946 557.413C637.946 557.977 637.74 558.298 637.327 558.375C636.92 558.449 636.381 558.291 635.707 557.902Z" fill="#5F52FF"/>
256
+ <path d="M512.385 376.102L609.876 432.388L446.782 526.551" stroke="#E9725A" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
257
+ <path d="M591.448 598.497L469.691 528.2L796.28 339.644" stroke="#28FFB4" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
258
+ <path d="M587.636 625L444.742 542.5" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
259
+ <path d="M604.448 620L432.975 521" stroke="#E9725A" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
260
+ <rect width="724.618" height="192.065" transform="matrix(0.866025 -0.5 0.866025 0.5 21.6406 506.135)" fill="#7B70FF" fill-opacity="0.15"/>
261
+ <rect x="0.866025" width="723.618" height="191.065" transform="matrix(0.866025 -0.5 0.866025 0.5 21.7567 506.568)" stroke="#7B70FF" stroke-opacity="0.5" stroke-linejoin="round"/>
262
+ <path d="M316.946 366.513L318.48 367.399L321.481 374.774L321.481 369.131L322.824 369.907L322.824 377.827L321.29 376.941L318.29 369.566L318.29 375.209L316.946 374.433L316.946 366.513ZM326.218 379.918C325.698 379.618 325.243 379.227 324.856 378.747C324.475 378.263 324.183 377.738 323.98 377.174C323.783 376.605 323.684 376.035 323.684 375.463C323.684 374.891 323.783 374.435 323.98 374.094C324.183 373.756 324.475 373.569 324.856 373.533C325.243 373.5 325.698 373.634 326.218 373.934C326.745 374.239 327.199 374.629 327.581 375.106C327.968 375.586 328.26 376.11 328.457 376.679C328.654 377.247 328.752 377.817 328.752 378.389C328.752 378.961 328.654 379.418 328.457 379.759C328.26 380.092 327.968 380.279 327.581 380.32C327.199 380.356 326.745 380.223 326.218 379.918ZM326.218 378.686C326.498 378.848 326.726 378.906 326.904 378.862C327.088 378.822 327.222 378.697 327.304 378.488C327.393 378.276 327.438 377.99 327.438 377.63C327.438 377.271 327.393 376.934 327.304 376.618C327.222 376.307 327.088 376.028 326.904 375.782C326.726 375.533 326.498 375.328 326.218 375.166C325.945 375.009 325.717 374.95 325.532 374.99C325.355 375.027 325.221 375.152 325.132 375.364C325.043 375.577 324.999 375.863 324.999 376.222C324.999 376.582 325.043 376.919 325.132 377.234C325.221 377.542 325.355 377.821 325.532 378.07C325.717 378.323 325.945 378.529 326.218 378.686ZM331.522 382.981C331.059 382.713 330.662 382.355 330.332 381.908C330.001 381.453 329.751 380.953 329.579 380.407C329.408 379.853 329.322 379.29 329.322 378.718C329.322 378.139 329.408 377.675 329.579 377.327C329.751 376.971 330.001 376.76 330.332 376.694C330.662 376.628 331.059 376.729 331.522 376.997C331.853 377.187 332.142 377.424 332.389 377.706C332.643 377.992 332.856 378.317 333.028 378.68L333.028 375.798L334.323 376.546L334.323 384.466L333.066 383.74L333.066 382.981C332.894 383.168 332.682 383.265 332.427 383.272C332.173 383.279 331.872 383.182 331.522 382.981ZM331.846 381.936C332.113 382.09 332.335 382.145 332.513 382.101C332.691 382.057 332.824 381.932 332.913 381.727C333.002 381.514 333.047 381.228 333.047 380.869C333.047 380.509 333.002 380.172 332.913 379.857C332.824 379.541 332.691 379.263 332.513 379.021C332.335 378.771 332.113 378.57 331.846 378.416C331.573 378.258 331.348 378.201 331.17 378.245C330.992 378.282 330.859 378.406 330.77 378.619C330.687 378.835 330.646 379.123 330.646 379.483C330.646 379.842 330.687 380.177 330.77 380.489C330.859 380.797 330.992 381.076 331.17 381.325C331.348 381.574 331.573 381.778 331.846 381.936ZM337.585 386.481C337.077 386.188 336.633 385.803 336.252 385.326C335.877 384.846 335.591 384.325 335.394 383.764C335.198 383.196 335.099 382.626 335.099 382.054C335.099 381.482 335.198 381.025 335.394 380.684C335.591 380.343 335.877 380.152 336.252 380.112C336.633 380.075 337.077 380.204 337.585 380.497C338.1 380.794 338.544 381.179 338.919 381.652C339.294 382.118 339.576 382.644 339.767 383.231C339.964 383.814 340.062 384.42 340.062 385.051L340.062 385.381L336.385 383.258C336.417 383.562 336.484 383.847 336.585 384.111C336.693 384.371 336.83 384.607 336.995 384.82C337.166 385.029 337.363 385.198 337.585 385.326C337.865 385.487 338.097 385.559 338.281 385.541C338.471 385.519 338.617 385.42 338.719 385.244L339.977 385.97C339.811 386.454 339.519 386.747 339.1 386.85C338.687 386.949 338.182 386.826 337.585 386.481ZM338.767 383.599C338.703 383.166 338.57 382.781 338.367 382.444C338.163 382.099 337.903 381.835 337.585 381.652C337.262 381.465 336.998 381.427 336.795 381.537C336.592 381.639 336.458 381.87 336.395 382.23L338.767 383.599ZM343.426 389.853C342.498 389.318 341.819 388.562 341.387 387.587C340.955 386.604 340.739 385.479 340.739 384.21C340.739 382.941 340.955 382.069 341.387 381.592C341.819 381.108 342.498 381.134 343.426 381.669C344.359 382.208 345.039 382.967 345.464 383.946C345.896 384.921 346.112 386.043 346.112 387.312C346.112 388.581 345.896 389.457 345.464 389.941C345.039 390.421 344.359 390.392 343.426 389.853ZM343.426 388.5C343.883 388.764 344.204 388.718 344.388 388.362C344.572 387.999 344.664 387.371 344.664 386.476C344.664 385.574 344.572 384.839 344.388 384.27C344.204 383.702 343.883 383.286 343.426 383.022C342.968 382.758 342.648 382.804 342.463 383.159C342.279 383.515 342.187 384.144 342.187 385.046C342.187 385.941 342.279 386.676 342.463 387.251C342.648 387.82 342.968 388.236 343.426 388.5Z" fill="#5F52FF"/>
263
+ <path d="M176.406 453.892L179.017 455.399C179.785 455.843 180.426 456.385 180.941 457.027C181.462 457.665 181.849 458.354 182.103 459.095C182.357 459.836 182.484 460.591 182.484 461.361C182.484 462.124 182.357 462.729 182.103 463.176C181.849 463.623 181.462 463.869 180.941 463.913C180.426 463.961 179.785 463.763 179.017 463.319L176.406 461.812L176.406 453.892ZM179.017 461.933C179.48 462.201 179.861 462.311 180.16 462.263C180.465 462.212 180.687 462.036 180.827 461.735C180.966 461.427 181.036 461.024 181.036 460.525C181.036 460.019 180.966 459.535 180.827 459.073C180.687 458.604 180.465 458.171 180.16 457.775C179.861 457.383 179.48 457.053 179.017 456.785L177.797 456.081L177.797 461.229L179.017 461.933ZM183.251 460.044L184.547 460.792L184.547 466.512L183.251 465.764L183.251 460.044ZM183.251 457.844L184.547 458.592L184.547 459.923L183.251 459.175L183.251 457.844ZM187.512 468.356C186.807 467.949 186.255 467.469 185.855 466.915C185.461 466.365 185.245 465.731 185.207 465.012L186.464 465.738C186.496 466.108 186.601 466.418 186.779 466.667C186.963 466.92 187.223 467.144 187.56 467.338C187.833 467.496 188.052 467.568 188.217 467.553C188.382 467.531 188.465 467.421 188.465 467.223C188.465 467.084 188.439 466.959 188.389 466.849C188.338 466.739 188.23 466.603 188.065 466.442C187.906 466.277 187.658 466.068 187.322 465.815C186.814 465.419 186.414 465.056 186.121 464.726C185.829 464.396 185.62 464.081 185.493 463.78C185.372 463.483 185.312 463.169 185.312 462.839C185.312 462.297 185.502 461.981 185.883 461.893C186.264 461.805 186.776 461.947 187.417 462.317C188.128 462.728 188.671 463.217 189.046 463.785C189.421 464.346 189.614 464.935 189.627 465.551L188.427 464.858C188.42 464.51 188.325 464.216 188.141 463.978C187.957 463.74 187.715 463.534 187.417 463.362C187.169 463.219 186.966 463.157 186.807 463.175C186.655 463.197 186.579 463.303 186.579 463.494C186.579 463.633 186.61 463.765 186.674 463.89C186.744 464.011 186.861 464.152 187.026 464.313C187.198 464.471 187.449 464.675 187.779 464.924C188.281 465.309 188.674 465.665 188.96 465.991C189.246 466.31 189.449 466.622 189.57 466.926C189.691 467.223 189.751 467.536 189.751 467.866C189.751 468.431 189.545 468.752 189.132 468.829C188.725 468.902 188.185 468.745 187.512 468.356ZM192.692 471.346C192.184 471.053 191.742 470.67 191.367 470.197C190.999 469.72 190.717 469.201 190.52 468.64C190.323 468.072 190.224 467.502 190.224 466.93C190.224 466.358 190.323 465.901 190.52 465.56C190.717 465.219 190.999 465.027 191.367 464.983C191.742 464.942 192.184 465.069 192.692 465.362C193.371 465.755 193.911 466.264 194.311 466.891C194.711 467.518 194.949 468.191 195.026 468.91L193.73 468.162C193.673 467.828 193.552 467.524 193.368 467.249C193.19 466.97 192.965 466.752 192.692 466.594C192.438 466.448 192.225 466.398 192.053 466.446C191.882 466.486 191.752 466.613 191.663 466.825C191.58 467.042 191.539 467.329 191.539 467.689C191.539 468.048 191.58 468.384 191.663 468.695C191.752 469.003 191.882 469.28 192.053 469.526C192.225 469.771 192.438 469.968 192.692 470.114C192.977 470.279 193.209 470.321 193.387 470.241C193.571 470.164 193.686 469.969 193.73 469.658L195.026 470.406C194.949 471.058 194.708 471.476 194.302 471.66C193.895 471.836 193.358 471.731 192.692 471.346ZM198.051 474.441C197.531 474.14 197.076 473.749 196.689 473.269C196.308 472.785 196.016 472.261 195.813 471.696C195.616 471.128 195.517 470.558 195.517 469.986C195.517 469.414 195.616 468.957 195.813 468.616C196.016 468.279 196.308 468.092 196.689 468.055C197.076 468.022 197.531 468.156 198.051 468.457C198.578 468.761 199.032 469.151 199.414 469.628C199.801 470.108 200.093 470.633 200.29 471.201C200.487 471.769 200.585 472.34 200.585 472.912C200.585 473.484 200.487 473.94 200.29 474.281C200.093 474.615 199.801 474.802 199.414 474.842C199.032 474.879 198.578 474.745 198.051 474.441ZM198.051 473.209C198.331 473.37 198.559 473.429 198.737 473.385C198.921 473.344 199.055 473.22 199.137 473.011C199.226 472.798 199.271 472.512 199.271 472.153C199.271 471.793 199.226 471.456 199.137 471.141C199.055 470.829 198.921 470.55 198.737 470.305C198.559 470.055 198.331 469.85 198.051 469.689C197.778 469.531 197.55 469.472 197.365 469.513C197.188 469.549 197.054 469.674 196.965 469.887C196.876 470.099 196.832 470.385 196.832 470.745C196.832 471.104 196.876 471.441 196.965 471.757C197.054 472.065 197.188 472.343 197.365 472.593C197.55 472.846 197.778 473.051 198.051 473.209ZM201.364 470.502L202.622 471.228L202.622 472.218C202.781 471.935 202.984 471.785 203.232 471.767C203.479 471.741 203.768 471.823 204.099 472.014L204.499 472.245L204.499 473.62L204.041 473.356C203.749 473.187 203.502 473.099 203.298 473.092C203.095 473.077 202.936 473.165 202.822 473.356C202.714 473.543 202.66 473.849 202.66 474.275L202.66 476.97L201.364 476.222L201.364 470.502ZM207.216 479.732C206.753 479.464 206.356 479.107 206.025 478.66C205.695 478.205 205.444 477.704 205.273 477.158C205.101 476.604 205.016 476.042 205.016 475.47C205.016 474.89 205.101 474.426 205.273 474.078C205.444 473.722 205.695 473.512 206.025 473.446C206.356 473.38 206.753 473.48 207.216 473.748C207.546 473.939 207.835 474.175 208.083 474.458C208.337 474.744 208.55 475.068 208.721 475.431L208.721 472.549L210.017 473.297L210.017 481.217L208.759 480.491L208.759 479.732C208.588 479.919 208.375 480.016 208.121 480.024C207.867 480.031 207.566 479.934 207.216 479.732ZM207.54 478.687C207.807 478.841 208.029 478.896 208.207 478.852C208.385 478.808 208.518 478.683 208.607 478.478C208.696 478.265 208.74 477.979 208.74 477.62C208.74 477.261 208.696 476.923 208.607 476.608C208.518 476.293 208.385 476.014 208.207 475.772C208.029 475.523 207.807 475.321 207.54 475.167C207.267 475.009 207.042 474.953 206.864 474.997C206.686 475.033 206.553 475.158 206.464 475.371C206.381 475.587 206.34 475.875 206.34 476.234C206.34 476.593 206.381 476.929 206.464 477.241C206.553 477.549 206.686 477.827 206.864 478.077C207.042 478.326 207.267 478.529 207.54 478.687Z" fill="#5F52FF"/>
264
+ <path d="M693.658 163.244C692.953 162.837 692.35 162.305 691.848 161.649C691.346 160.993 690.969 160.283 690.714 159.52C690.46 158.75 690.333 157.988 690.333 157.232C690.333 156.477 690.46 155.865 690.714 155.395C690.969 154.919 691.346 154.642 691.848 154.565C692.35 154.488 692.953 154.653 693.658 155.06C694.363 155.467 694.963 155.997 695.459 156.649C695.96 157.306 696.338 158.019 696.592 158.789C696.846 159.552 696.973 160.311 696.973 161.066C696.973 161.821 696.846 162.437 696.592 162.914C696.338 163.383 695.96 163.657 695.459 163.734C694.963 163.814 694.363 163.651 693.658 163.244ZM693.658 162.177C694.16 162.467 694.579 162.577 694.916 162.507C695.252 162.43 695.503 162.212 695.668 161.853C695.833 161.493 695.916 161.028 695.916 160.456C695.916 159.884 695.833 159.323 695.668 158.773C695.503 158.222 695.252 157.718 694.916 157.26C694.579 156.794 694.16 156.417 693.658 156.127C693.156 155.837 692.734 155.729 692.391 155.802C692.055 155.872 691.804 156.087 691.639 156.446C691.48 156.809 691.4 157.276 691.4 157.848C691.4 158.42 691.48 158.98 691.639 159.526C691.804 160.076 692.055 160.584 692.391 161.05C692.734 161.512 693.156 161.887 693.658 162.177ZM697.874 159.826L698.789 160.354L698.789 161.322C698.967 161.044 699.186 160.902 699.446 160.899C699.706 160.895 700.005 160.99 700.342 161.185L700.723 161.405L700.723 162.45L700.313 162.213C700.014 162.041 699.754 161.949 699.532 161.938C699.316 161.924 699.144 162.012 699.017 162.202C698.89 162.393 698.827 162.712 698.827 163.159L698.827 166.096L697.874 165.546L697.874 159.826ZM701.521 161.931L702.483 162.487L702.483 168.207L701.521 167.651L701.521 161.931ZM701.521 159.731L702.483 160.287L702.483 161.475L701.521 160.919L701.521 159.731ZM705.777 172.441C705.117 172.06 704.599 171.592 704.225 171.039C703.856 170.489 703.647 169.895 703.596 169.257L704.539 169.801C704.59 170.182 704.72 170.514 704.929 170.797C705.145 171.083 705.434 171.33 705.796 171.539C706.216 171.781 706.558 171.865 706.825 171.792C707.092 171.719 707.225 171.385 707.225 170.791L707.225 170.12C707.054 170.307 706.832 170.402 706.558 170.406C706.292 170.406 705.984 170.305 705.634 170.104C705.158 169.829 704.748 169.464 704.406 169.009C704.063 168.554 703.802 168.052 703.624 167.502C703.447 166.952 703.358 166.391 703.358 165.819C703.358 165.247 703.447 164.789 703.624 164.444C703.802 164.099 704.063 163.901 704.406 163.85C704.748 163.791 705.158 163.9 705.634 164.175C705.996 164.384 706.314 164.651 706.587 164.978C706.86 165.304 707.086 165.672 707.263 166.083L707.263 165.247L708.187 165.781L708.187 171.347C708.187 171.904 708.083 172.309 707.873 172.562C707.664 172.815 707.378 172.925 707.016 172.892C706.66 172.863 706.247 172.712 705.777 172.441ZM705.796 169.251C706.12 169.438 706.387 169.508 706.597 169.46C706.812 169.409 706.974 169.264 707.082 169.026C707.19 168.787 707.244 168.466 707.244 168.063C707.244 167.667 707.19 167.288 707.082 166.925C706.974 166.554 706.812 166.222 706.597 165.929C706.387 165.639 706.12 165.401 705.796 165.214C705.479 165.031 705.212 164.961 704.996 165.005C704.787 165.053 704.628 165.199 704.52 165.445C704.412 165.683 704.358 166.001 704.358 166.397C704.358 166.8 704.412 167.183 704.52 167.546C704.628 167.909 704.787 168.239 704.996 168.536C705.212 168.829 705.479 169.068 705.796 169.251ZM709.289 166.416L710.251 166.972L710.251 172.692L709.289 172.136L709.289 166.416ZM709.289 164.216L710.251 164.772L710.251 165.96L709.289 165.404L709.289 164.216ZM711.354 167.609L712.269 168.137L712.269 168.951C712.453 168.764 712.675 168.661 712.936 168.643C713.202 168.628 713.507 168.72 713.85 168.918C714.244 169.145 714.571 169.433 714.831 169.781C715.098 170.126 715.295 170.5 715.422 170.903C715.549 171.299 715.613 171.695 715.613 172.091L715.613 175.787L714.669 175.243L714.669 171.657C714.669 171.268 714.581 170.905 714.403 170.568C714.225 170.231 713.961 169.961 713.612 169.759C713.441 169.66 713.256 169.602 713.059 169.583C712.863 169.558 712.688 169.629 712.536 169.798C712.383 169.959 712.307 170.26 712.307 170.7L712.307 173.879L711.354 173.329L711.354 167.609ZM718.484 177.445C718.192 177.277 717.954 177.095 717.77 176.901C717.592 176.71 717.458 176.49 717.369 176.241C717.281 175.984 717.236 175.691 717.236 175.361L717.236 171.918L716.341 171.401L716.341 170.488L717.236 171.005L717.236 169.245L718.198 169.8L718.198 171.56L719.503 172.314L719.503 173.227L718.198 172.473L718.198 175.795C718.198 175.993 718.236 176.162 718.313 176.301C718.389 176.433 718.516 176.551 718.694 176.653L719.503 177.121L719.503 178.034L718.484 177.445ZM720.322 172.787L721.237 173.315L721.237 174.283C721.415 174.004 721.634 173.863 721.894 173.859C722.155 173.855 722.453 173.951 722.79 174.145L723.171 174.365L723.171 175.41L722.761 175.174C722.463 175.001 722.202 174.91 721.98 174.899C721.764 174.884 721.593 174.972 721.466 175.163C721.339 175.353 721.275 175.672 721.275 176.12L721.275 179.057L720.322 178.507L720.322 172.787ZM725.502 181.629C724.95 181.31 724.512 180.911 724.188 180.43C723.87 179.946 723.711 179.433 723.711 178.89C723.711 178.56 723.778 178.32 723.912 178.17C724.051 178.016 724.254 177.939 724.521 177.939C724.794 177.943 725.134 178.021 725.541 178.175L727.046 178.714L727.046 178.318C727.046 178.018 726.96 177.748 726.788 177.51C726.623 177.275 726.373 177.061 726.036 176.866C725.706 176.676 725.429 176.597 725.207 176.63C724.991 176.659 724.874 176.844 724.855 177.185L723.902 176.635C723.915 175.997 724.121 175.636 724.521 175.552C724.921 175.468 725.423 175.6 726.026 175.948C726.674 176.322 727.16 176.749 727.484 177.229C727.814 177.713 727.979 178.219 727.979 178.747L727.979 182.927L727.084 182.41L727.084 181.717C726.881 181.893 726.646 181.97 726.379 181.948C726.118 181.923 725.826 181.816 725.502 181.629ZM725.636 180.804C725.877 180.944 726.103 181.023 726.312 181.041C726.528 181.063 726.703 181.002 726.836 180.859C726.976 180.713 727.046 180.474 727.046 180.144L727.046 179.561L725.693 179.099C725.35 178.982 725.096 178.938 724.931 178.967C724.772 179 724.693 179.156 724.693 179.435C724.693 179.692 724.772 179.939 724.931 180.177C725.09 180.416 725.325 180.625 725.636 180.804ZM728.955 177.771L729.917 178.326L729.917 184.046L728.955 183.491L728.955 177.771ZM728.955 175.571L729.917 176.126L729.917 177.314L728.955 176.759L728.955 175.571ZM731.021 176.763L731.973 177.313L731.973 185.233L731.021 184.683L731.021 176.763Z" fill="#465358"/>
265
+ <path d="M533.143 301.162L534.219 301.784L536.306 309.687L538.373 304.182L539.449 304.803L536.868 311.233L535.725 310.573L533.143 301.162ZM542.301 314.502C541.825 314.227 541.406 313.857 541.044 313.391C540.688 312.929 540.412 312.414 540.215 311.846C540.025 311.281 539.929 310.713 539.929 310.141C539.929 309.569 540.025 309.11 540.215 308.766C540.412 308.425 540.688 308.228 541.044 308.177C541.406 308.129 541.825 308.243 542.301 308.518C542.778 308.793 543.194 309.162 543.549 309.624C543.911 310.089 544.187 310.608 544.378 311.18C544.575 311.748 544.673 312.33 544.673 312.924L544.673 313.254L540.92 311.087C540.952 311.442 541.025 311.778 541.139 312.093C541.253 312.408 541.409 312.696 541.606 312.957C541.803 313.21 542.035 313.413 542.301 313.567C542.612 313.747 542.879 313.82 543.102 313.787C543.324 313.747 543.492 313.613 543.606 313.386L544.569 313.941C544.41 314.421 544.13 314.715 543.73 314.821C543.33 314.927 542.854 314.821 542.301 314.502ZM543.664 311.769C543.6 311.263 543.451 310.806 543.216 310.399C542.987 309.988 542.682 309.673 542.301 309.453C541.92 309.233 541.612 309.195 541.377 309.338C541.149 309.477 541.003 309.763 540.939 310.196L543.664 311.769ZM545.553 310.528L546.515 311.083L546.515 316.803L545.553 316.248L545.553 310.528ZM545.553 308.328L546.515 308.883L546.515 310.071L545.553 309.516L545.553 308.328ZM547.619 309.52L548.572 310.07L548.572 317.99L547.619 317.44L547.619 309.52ZM549.751 310.751L550.77 311.339L550.77 319.259L549.751 318.671L549.751 310.751ZM552.011 312.056L554.383 313.426C555.126 313.855 555.752 314.392 556.26 315.037C556.768 315.675 557.149 316.364 557.403 317.105C557.657 317.846 557.784 318.594 557.784 319.349C557.784 320.104 557.657 320.706 557.403 321.153C557.149 321.6 556.768 321.853 556.26 321.912C555.752 321.963 555.126 321.775 554.383 321.346L552.011 319.976L552.011 312.056ZM554.383 320.301C554.91 320.605 555.349 320.733 555.698 320.686C556.047 320.638 556.304 320.445 556.47 320.108C556.641 319.767 556.727 319.311 556.727 318.739C556.727 318.167 556.641 317.615 556.47 317.083C556.304 316.548 556.047 316.055 555.698 315.604C555.349 315.153 554.91 314.775 554.383 314.471L553.031 313.69L553.031 319.52L554.383 320.301Z" fill="#465358"/>
266
+ <path d="M692.305 129.852L690.143 128.603L690.143 127.162L695.878 130.473L695.878 131.914L693.715 130.666L693.715 137.145L692.305 136.331L692.305 129.852ZM698.067 139.79C697.521 139.474 697.083 139.071 696.753 138.58C696.422 138.081 696.257 137.557 696.257 137.007C696.257 136.669 696.324 136.425 696.457 136.275C696.597 136.121 696.807 136.051 697.086 136.066C697.372 136.084 697.74 136.18 698.191 136.352L699.601 136.88L699.601 136.583C699.601 136.326 699.534 136.097 699.401 135.896C699.268 135.694 699.048 135.505 698.744 135.329C698.458 135.164 698.226 135.1 698.048 135.137C697.877 135.177 697.788 135.335 697.781 135.61L696.495 134.867C696.502 134.225 696.711 133.859 697.124 133.767C697.543 133.672 698.08 133.813 698.734 134.191C699.439 134.598 699.969 135.054 700.325 135.56C700.687 136.07 700.868 136.596 700.868 137.139L700.868 141.275L699.639 140.565L699.639 139.927C699.436 140.081 699.204 140.145 698.944 140.12C698.69 140.09 698.397 139.98 698.067 139.79ZM698.391 138.899C698.607 139.023 698.804 139.093 698.982 139.108C699.166 139.126 699.315 139.073 699.429 138.948C699.544 138.823 699.601 138.618 699.601 138.332L699.601 137.848L698.439 137.452C698.134 137.342 697.915 137.304 697.781 137.337C697.648 137.362 697.581 137.489 697.581 137.716C697.581 137.936 697.648 138.151 697.781 138.36C697.921 138.565 698.124 138.745 698.391 138.899ZM701.733 136.054L702.991 136.78L702.991 137.594C703.156 137.396 703.359 137.283 703.601 137.253C703.842 137.224 704.131 137.306 704.467 137.501C704.81 137.699 705.106 137.961 705.353 138.287C705.601 138.614 705.792 138.988 705.925 139.409C706.109 139.193 706.338 139.068 706.611 139.035C706.89 138.999 707.208 139.083 707.563 139.288C707.906 139.486 708.202 139.748 708.449 140.075C708.703 140.405 708.897 140.781 709.031 141.202C709.164 141.624 709.231 142.069 709.231 142.539L709.231 146.103L707.935 145.355L707.935 141.967C707.935 141.615 707.868 141.294 707.735 141.004C707.602 140.715 707.398 140.491 707.125 140.333C706.852 140.176 706.617 140.15 706.42 140.256C706.23 140.366 706.135 140.674 706.135 141.18L706.135 144.315L704.839 143.567L704.839 140.179C704.839 139.827 704.769 139.505 704.629 139.211C704.496 138.922 704.296 138.7 704.029 138.546C703.75 138.384 703.512 138.357 703.315 138.463C703.124 138.573 703.029 138.881 703.029 139.387L703.029 142.522L701.733 141.774L701.733 136.054ZM713.018 142.438C713.482 142.705 713.879 143.063 714.209 143.51C714.539 143.958 714.79 144.458 714.962 145.012C715.133 145.558 715.219 146.121 715.219 146.7C715.219 147.272 715.133 147.736 714.962 148.092C714.79 148.44 714.539 148.651 714.209 148.724C713.879 148.79 713.482 148.689 713.018 148.422C712.688 148.231 712.396 147.993 712.142 147.707C711.894 147.417 711.685 147.091 711.513 146.728L711.513 149.621L710.218 148.873L710.218 140.953L711.475 141.679L711.475 142.438C711.647 142.251 711.859 142.154 712.113 142.146C712.368 142.139 712.669 142.236 713.018 142.438ZM712.695 143.483C712.428 143.329 712.206 143.274 712.028 143.318C711.85 143.354 711.717 143.479 711.628 143.692C711.539 143.904 711.494 144.19 711.494 144.55C711.494 144.909 711.539 145.246 711.628 145.562C711.717 145.87 711.85 146.148 712.028 146.398C712.206 146.647 712.428 146.849 712.695 147.003C712.968 147.16 713.193 147.217 713.371 147.173C713.549 147.129 713.679 147.003 713.762 146.794C713.85 146.581 713.895 146.295 713.895 145.936C713.895 145.576 713.85 145.239 713.762 144.924C713.679 144.612 713.549 144.335 713.371 144.093C713.193 143.844 712.968 143.64 712.695 143.483ZM718.272 151.455C717.764 151.161 717.319 150.776 716.938 150.3C716.563 149.819 716.278 149.299 716.081 148.738C715.884 148.169 715.785 147.599 715.785 147.027C715.785 146.455 715.884 145.999 716.081 145.658C716.278 145.317 716.563 145.126 716.938 145.086C717.319 145.049 717.764 145.177 718.272 145.471C718.786 145.768 719.231 146.153 719.605 146.626C719.98 147.091 720.263 147.618 720.453 148.204C720.65 148.787 720.749 149.394 720.749 150.025L720.749 150.355L717.071 148.232C717.103 148.536 717.17 148.82 717.271 149.084C717.379 149.345 717.516 149.581 717.681 149.794C717.853 150.003 718.049 150.171 718.272 150.3C718.551 150.461 718.783 150.533 718.967 150.514C719.158 150.492 719.304 150.393 719.405 150.217L720.663 150.943C720.498 151.427 720.206 151.721 719.786 151.823C719.374 151.922 718.869 151.799 718.272 151.455ZM719.453 148.573C719.389 148.14 719.256 147.755 719.053 147.418C718.85 147.073 718.589 146.809 718.272 146.626C717.948 146.439 717.684 146.4 717.481 146.51C717.278 146.613 717.144 146.844 717.081 147.203L719.453 148.573ZM721.53 147.484L722.788 148.21L722.788 149.2C722.946 148.918 723.15 148.767 723.397 148.749C723.645 148.723 723.934 148.806 724.264 148.996L724.664 149.227L724.664 150.602L724.207 150.338C723.915 150.17 723.667 150.082 723.464 150.074C723.261 150.06 723.102 150.148 722.988 150.338C722.88 150.525 722.826 150.832 722.826 151.257L722.826 153.952L721.53 153.204L721.53 147.484ZM727.598 148.787L732.694 151.729L732.694 153.17L728.988 151.031L728.988 152.769L732.418 154.749L732.418 156.124L728.988 154.144L728.988 156.069L732.675 158.197L732.675 159.638L727.598 156.707L727.598 148.787ZM733.009 154.111L734.409 154.92L735.629 159.925L736.829 156.317L738.22 157.12L736.362 161.767L734.876 160.909L733.009 154.111ZM738.75 157.426L740.045 158.174L740.045 163.894L738.75 163.146L738.75 157.426ZM738.75 155.226L740.045 155.974L740.045 157.305L738.75 156.557L738.75 155.226ZM743.02 165.743C742.557 165.476 742.16 165.118 741.83 164.671C741.499 164.216 741.248 163.716 741.077 163.169C740.905 162.616 740.82 162.053 740.82 161.481C740.82 160.901 740.905 160.438 741.077 160.089C741.248 159.734 741.499 159.523 741.83 159.457C742.16 159.391 742.557 159.492 743.02 159.759C743.351 159.95 743.64 160.186 743.887 160.469C744.141 160.755 744.354 161.079 744.525 161.442L744.525 158.56L745.821 159.308L745.821 167.228L744.564 166.502L744.564 165.743C744.392 165.93 744.179 166.027 743.925 166.035C743.671 166.042 743.37 165.945 743.02 165.743ZM743.344 164.698C743.611 164.852 743.833 164.907 744.011 164.863C744.189 164.819 744.322 164.695 744.411 164.489C744.5 164.277 744.544 163.991 744.544 163.631C744.544 163.272 744.5 162.935 744.411 162.619C744.322 162.304 744.189 162.025 744.011 161.783C743.833 161.534 743.611 161.332 743.344 161.178C743.071 161.021 742.846 160.964 742.668 161.008C742.49 161.044 742.357 161.169 742.268 161.382C742.185 161.598 742.144 161.886 742.144 162.245C742.144 162.605 742.185 162.94 742.268 163.252C742.357 163.56 742.49 163.838 742.668 164.088C742.846 164.337 743.071 164.541 743.344 164.698ZM749.083 169.244C748.575 168.95 748.131 168.565 747.75 168.089C747.375 167.608 747.089 167.088 746.892 166.527C746.695 165.958 746.597 165.388 746.597 164.816C746.597 164.244 746.695 163.788 746.892 163.447C747.089 163.106 747.375 162.915 747.75 162.875C748.131 162.838 748.575 162.966 749.083 163.26C749.598 163.557 750.042 163.942 750.417 164.415C750.792 164.88 751.074 165.407 751.265 165.993C751.462 166.576 751.56 167.183 751.56 167.814L751.56 168.144L747.883 166.021C747.915 166.325 747.981 166.609 748.083 166.873C748.191 167.134 748.327 167.37 748.493 167.583C748.664 167.792 748.861 167.96 749.083 168.089C749.363 168.25 749.594 168.322 749.779 168.303C749.969 168.281 750.115 168.182 750.217 168.006L751.474 168.732C751.309 169.216 751.017 169.51 750.598 169.612C750.185 169.711 749.68 169.588 749.083 169.244ZM750.265 166.362C750.201 165.929 750.068 165.544 749.864 165.207C749.661 164.862 749.401 164.598 749.083 164.415C748.759 164.228 748.496 164.189 748.293 164.299C748.089 164.402 747.956 164.633 747.892 164.992L750.265 166.362ZM752.342 165.273L753.599 165.999L753.599 166.78C753.783 166.608 754.006 166.516 754.266 166.505C754.526 166.487 754.825 166.575 755.162 166.769C755.536 166.985 755.854 167.26 756.114 167.594C756.381 167.924 756.581 168.3 756.714 168.722C756.854 169.147 756.924 169.598 756.924 170.075L756.924 173.639L755.638 172.896L755.638 169.508C755.638 169.149 755.565 168.824 755.419 168.535C755.273 168.238 755.041 167.997 754.723 167.814C754.546 167.711 754.374 167.66 754.209 167.66C754.05 167.656 753.914 167.728 753.799 167.875C753.691 168.025 753.637 168.269 753.637 168.606L753.637 171.741L752.342 170.993L752.342 165.273ZM759.848 175.327C759.537 175.147 759.28 174.958 759.076 174.76C758.873 174.555 758.711 174.307 758.591 174.018C758.476 173.732 758.419 173.391 758.419 172.995L758.419 169.915L757.562 169.42L757.562 168.287L758.419 168.782L758.419 167.022L759.715 167.77L759.715 169.53L760.953 170.245L760.953 171.378L759.715 170.663L759.715 173.589C759.715 173.772 759.75 173.928 759.82 174.056C759.889 174.177 760.01 174.287 760.182 174.386L760.953 174.832L760.953 175.965L759.848 175.327ZM690.572 138.41L691.962 139.213L691.962 142.975L695.078 141.011L696.811 142.012L694.058 143.635L696.811 149.933L695.144 148.97L693.106 144.207L691.962 144.867L691.962 147.133L690.572 146.33L690.572 138.41ZM697.38 144.541L698.637 145.267L698.637 146.048C698.821 145.875 699.044 145.784 699.304 145.773C699.564 145.754 699.863 145.842 700.199 146.037C700.574 146.253 700.892 146.528 701.152 146.862C701.419 147.192 701.619 147.567 701.752 147.989C701.892 148.414 701.962 148.865 701.962 149.342L701.962 152.906L700.676 152.164L700.676 148.776C700.676 148.416 700.603 148.092 700.457 147.802C700.311 147.505 700.079 147.265 699.761 147.082C699.583 146.979 699.412 146.928 699.247 146.928C699.088 146.924 698.951 146.995 698.837 147.142C698.729 147.292 698.675 147.536 698.675 147.874L698.675 151.009L697.38 150.261L697.38 144.541ZM705.277 154.952C704.756 154.651 704.302 154.261 703.914 153.78C703.533 153.296 703.241 152.772 703.038 152.207C702.841 151.639 702.743 151.069 702.743 150.497C702.743 149.925 702.841 149.468 703.038 149.127C703.241 148.79 703.533 148.603 703.914 148.566C704.302 148.533 704.756 148.667 705.277 148.968C705.804 149.272 706.258 149.663 706.639 150.139C707.026 150.62 707.318 151.144 707.515 151.712C707.712 152.281 707.81 152.851 707.81 153.423C707.81 153.995 707.712 154.451 707.515 154.792C707.318 155.126 707.026 155.313 706.639 155.353C706.258 155.39 705.804 155.256 705.277 154.952ZM705.277 153.72C705.556 153.881 705.785 153.94 705.962 153.896C706.147 153.856 706.28 153.731 706.363 153.522C706.451 153.309 706.496 153.023 706.496 152.664C706.496 152.305 706.451 151.967 706.363 151.652C706.28 151.34 706.147 151.062 705.962 150.816C705.785 150.567 705.556 150.361 705.277 150.2C705.003 150.042 704.775 149.984 704.591 150.024C704.413 150.061 704.279 150.185 704.191 150.398C704.102 150.611 704.057 150.897 704.057 151.256C704.057 151.615 704.102 151.953 704.191 152.268C704.279 152.576 704.413 152.855 704.591 153.104C704.775 153.357 705.003 153.562 705.277 153.72ZM708.142 150.754L709.542 151.563L710.609 156.106L711.562 152.729L712.791 153.438L713.743 157.915L714.81 154.604L716.211 155.413L714.486 160.137L713.134 159.356L712.181 154.956L711.219 158.251L709.866 157.47L708.142 150.754ZM716.748 153.523L718.044 154.271L718.044 162.191L716.748 161.443L716.748 153.523ZM721.314 164.211C720.806 163.918 720.361 163.533 719.98 163.056C719.605 162.576 719.32 162.055 719.123 161.494C718.926 160.926 718.827 160.356 718.827 159.784C718.827 159.212 718.926 158.755 719.123 158.414C719.32 158.073 719.605 157.882 719.98 157.842C720.361 157.805 720.806 157.934 721.314 158.227C721.828 158.524 722.273 158.909 722.647 159.382C723.022 159.848 723.305 160.374 723.495 160.961C723.692 161.544 723.791 162.15 723.791 162.781L723.791 163.111L720.113 160.988C720.145 161.292 720.212 161.577 720.314 161.841C720.421 162.101 720.558 162.337 720.723 162.55C720.895 162.759 721.091 162.928 721.314 163.056C721.593 163.217 721.825 163.289 722.009 163.271C722.2 163.249 722.346 163.15 722.447 162.974L723.705 163.7C723.54 164.184 723.248 164.477 722.828 164.58C722.416 164.679 721.911 164.556 721.314 164.211ZM722.495 161.329C722.432 160.896 722.298 160.511 722.095 160.174C721.892 159.829 721.631 159.565 721.314 159.382C720.99 159.195 720.726 159.157 720.523 159.267C720.32 159.369 720.186 159.6 720.123 159.96L722.495 161.329ZM726.563 167.242C726.1 166.974 725.703 166.617 725.372 166.169C725.042 165.715 724.791 165.214 724.62 164.668C724.448 164.114 724.363 163.551 724.363 162.979C724.363 162.4 724.448 161.936 724.62 161.588C724.791 161.232 725.042 161.021 725.372 160.955C725.703 160.889 726.1 160.99 726.563 161.258C726.894 161.448 727.182 161.685 727.43 161.967C727.684 162.253 727.897 162.578 728.068 162.941L728.068 160.059L729.364 160.807L729.364 168.727L728.107 168.001L728.107 167.242C727.935 167.429 727.722 167.526 727.468 167.533C727.214 167.541 726.913 167.443 726.563 167.242ZM726.887 166.197C727.154 166.351 727.376 166.406 727.554 166.362C727.732 166.318 727.865 166.193 727.954 165.988C728.043 165.775 728.087 165.489 728.087 165.13C728.087 164.77 728.043 164.433 727.954 164.118C727.865 163.802 727.732 163.524 727.554 163.282C727.376 163.032 727.154 162.831 726.887 162.677C726.614 162.519 726.389 162.462 726.211 162.506C726.033 162.543 725.9 162.668 725.811 162.88C725.728 163.097 725.687 163.384 725.687 163.744C725.687 164.103 725.728 164.439 725.811 164.75C725.9 165.058 726.033 165.337 726.211 165.586C726.389 165.836 726.614 166.039 726.887 166.197ZM732.598 172.926C731.899 172.522 731.356 172.029 730.969 171.446C730.581 170.863 730.369 170.245 730.33 169.593L731.607 170.33C731.639 170.649 731.743 170.929 731.921 171.171C732.105 171.417 732.347 171.626 732.645 171.798C732.995 172 733.28 172.066 733.503 171.996C733.731 171.938 733.846 171.659 733.846 171.16L733.846 170.467C733.674 170.625 733.461 170.7 733.207 170.693C732.96 170.682 732.671 170.581 732.34 170.39C731.877 170.123 731.48 169.769 731.15 169.329C730.819 168.889 730.569 168.403 730.397 167.871C730.226 167.332 730.14 166.784 730.14 166.227C730.14 165.662 730.226 165.213 730.397 164.879C730.569 164.538 730.819 164.338 731.15 164.28C731.48 164.221 731.877 164.326 732.34 164.593C732.683 164.791 732.982 165.037 733.236 165.33C733.496 165.627 733.712 165.965 733.884 166.342L733.884 165.616L735.141 166.342L735.141 171.908C735.141 172.458 735.03 172.852 734.808 173.091C734.585 173.336 734.284 173.441 733.903 173.404C733.522 173.368 733.087 173.208 732.598 172.926ZM732.664 169.4C732.931 169.554 733.153 169.613 733.331 169.576C733.509 169.532 733.642 169.411 733.731 169.213C733.82 169.008 733.865 168.729 733.865 168.377C733.865 168.025 733.82 167.695 733.731 167.387C733.642 167.079 733.509 166.804 733.331 166.562C733.153 166.313 732.931 166.111 732.664 165.957C732.391 165.8 732.166 165.743 731.988 165.787C731.81 165.823 731.677 165.944 731.588 166.15C731.505 166.359 731.464 166.639 731.464 166.991C731.464 167.343 731.505 167.671 731.588 167.976C731.677 168.276 731.81 168.551 731.988 168.801C732.166 169.043 732.391 169.243 732.664 169.4ZM738.403 174.078C737.895 173.784 737.451 173.399 737.07 172.923C736.695 172.442 736.409 171.922 736.212 171.361C736.015 170.792 735.917 170.222 735.917 169.65C735.917 169.078 736.015 168.622 736.212 168.281C736.409 167.94 736.695 167.749 737.07 167.709C737.451 167.672 737.895 167.8 738.403 168.094C738.918 168.391 739.362 168.776 739.737 169.249C740.112 169.714 740.394 170.241 740.585 170.827C740.782 171.41 740.88 172.017 740.88 172.648L740.88 172.978L737.203 170.855C737.235 171.159 737.302 171.443 737.403 171.707C737.511 171.968 737.648 172.204 737.813 172.417C737.984 172.626 738.181 172.794 738.403 172.923C738.683 173.084 738.915 173.156 739.099 173.137C739.289 173.115 739.435 173.016 739.537 172.84L740.794 173.566C740.629 174.05 740.337 174.344 739.918 174.446C739.505 174.545 739 174.422 738.403 174.078ZM739.585 171.196C739.521 170.763 739.388 170.378 739.185 170.041C738.981 169.696 738.721 169.432 738.403 169.249C738.08 169.062 737.816 169.023 737.613 169.133C737.409 169.236 737.276 169.467 737.213 169.826L739.585 171.196ZM746.822 178.938C746.155 178.553 745.577 178.036 745.088 177.387C744.599 176.738 744.224 176.03 743.964 175.264C743.71 174.494 743.583 173.731 743.583 172.976C743.583 172.213 743.713 171.599 743.973 171.133C744.24 170.664 744.631 170.398 745.145 170.336C745.666 170.27 746.288 170.446 747.012 170.864C747.603 171.205 748.124 171.627 748.574 172.129C749.025 172.631 749.391 173.179 749.67 173.773C749.949 174.36 750.13 174.956 750.213 175.561L748.794 174.741C748.692 174.25 748.486 173.783 748.174 173.339C747.863 172.895 747.476 172.54 747.012 172.272C746.568 172.015 746.196 171.922 745.898 171.991C745.599 172.054 745.38 172.246 745.24 172.569C745.101 172.892 745.031 173.306 745.031 173.812C745.031 174.311 745.101 174.802 745.24 175.286C745.38 175.77 745.599 176.219 745.898 176.633C746.196 177.04 746.568 177.372 747.012 177.629C747.508 177.915 747.908 177.996 748.212 177.871C748.517 177.739 748.73 177.436 748.851 176.963L746.726 175.737L746.726 174.439L750.299 176.501L750.299 180.813L749.27 180.219L749.27 178.844C749.041 179.196 748.724 179.387 748.317 179.416C747.917 179.442 747.419 179.283 746.822 178.938ZM751.263 175.65L752.52 176.376L752.52 177.366C752.679 177.084 752.882 176.933 753.13 176.915C753.377 176.889 753.666 176.972 753.997 177.162L754.397 177.393L754.397 178.768L753.939 178.504C753.647 178.336 753.4 178.248 753.196 178.24C752.993 178.226 752.834 178.314 752.72 178.504C752.612 178.691 752.558 178.998 752.558 179.423L752.558 182.118L751.263 181.37L751.263 175.65ZM756.676 184.627C756.13 184.312 755.692 183.909 755.362 183.417C755.031 182.919 754.866 182.394 754.866 181.844C754.866 181.507 754.933 181.263 755.066 181.113C755.206 180.959 755.415 180.889 755.695 180.904C755.981 180.922 756.349 181.018 756.8 181.19L758.21 181.718L758.21 181.421C758.21 181.164 758.143 180.935 758.01 180.733C757.876 180.532 757.657 180.343 757.353 180.167C757.067 180.002 756.835 179.938 756.657 179.974C756.486 180.015 756.397 180.172 756.39 180.447L755.104 179.705C755.111 179.063 755.32 178.697 755.733 178.605C756.152 178.51 756.689 178.651 757.343 179.028C758.048 179.435 758.578 179.892 758.934 180.398C759.296 180.908 759.477 181.434 759.477 181.976L759.477 186.112L758.248 185.403L758.248 184.765C758.045 184.919 757.813 184.983 757.553 184.957C757.299 184.928 757.006 184.818 756.676 184.627ZM757 183.736C757.216 183.861 757.413 183.931 757.591 183.945C757.775 183.964 757.924 183.911 758.038 183.786C758.153 183.661 758.21 183.456 758.21 183.17L758.21 182.686L757.048 182.29C756.743 182.18 756.524 182.141 756.39 182.174C756.257 182.2 756.19 182.327 756.19 182.554C756.19 182.774 756.257 182.988 756.39 183.197C756.53 183.403 756.733 183.582 757 183.736ZM763.143 182.377C763.607 182.645 764.004 183.002 764.334 183.45C764.664 183.897 764.915 184.398 765.086 184.951C765.258 185.498 765.344 186.06 765.344 186.64C765.344 187.212 765.258 187.676 765.086 188.031C764.915 188.38 764.664 188.59 764.334 188.664C764.004 188.73 763.607 188.629 763.143 188.361C762.813 188.171 762.521 187.932 762.267 187.646C762.019 187.357 761.809 187.03 761.638 186.667L761.638 189.56L760.342 188.812L760.342 180.892L761.6 181.618L761.6 182.377C761.771 182.19 761.984 182.093 762.238 182.086C762.492 182.078 762.794 182.176 763.143 182.377ZM762.819 183.422C762.552 183.268 762.33 183.213 762.152 183.257C761.975 183.294 761.841 183.419 761.752 183.631C761.663 183.844 761.619 184.13 761.619 184.489C761.619 184.849 761.663 185.186 761.752 185.501C761.841 185.809 761.975 186.088 762.152 186.337C762.33 186.587 762.552 186.788 762.819 186.942C763.092 187.1 763.318 187.157 763.496 187.113C763.673 187.069 763.804 186.942 763.886 186.733C763.975 186.521 764.019 186.235 764.019 185.875C764.019 185.516 763.975 185.179 763.886 184.863C763.804 184.552 763.673 184.275 763.496 184.033C763.318 183.783 763.092 183.58 762.819 183.422ZM766.12 182.028L767.415 182.776L767.415 185.702C767.599 185.544 767.818 185.461 768.072 185.454C768.326 185.447 768.615 185.537 768.939 185.724C769.314 185.94 769.632 186.215 769.892 186.549C770.159 186.879 770.359 187.254 770.492 187.676C770.632 188.101 770.702 188.552 770.702 189.029L770.702 192.593L769.416 191.851L769.416 188.463C769.416 188.103 769.343 187.779 769.196 187.489C769.05 187.192 768.819 186.952 768.501 186.769C768.323 186.666 768.152 186.615 767.987 186.615C767.828 186.611 767.691 186.682 767.577 186.829C767.469 186.979 767.415 187.223 767.415 187.561L767.415 190.696L766.12 189.948L766.12 182.028Z" fill="#5F52FF"/>
267
+ <path d="M535.305 266.852L533.143 265.603L533.143 264.162L538.878 267.473L538.878 268.914L536.715 267.666L536.715 274.145L535.305 273.331L535.305 266.852ZM541.067 276.79C540.521 276.474 540.083 276.071 539.753 275.58C539.422 275.081 539.257 274.557 539.257 274.007C539.257 273.669 539.324 273.425 539.457 273.275C539.597 273.121 539.807 273.051 540.086 273.066C540.372 273.084 540.74 273.18 541.191 273.352L542.601 273.88L542.601 273.583C542.601 273.326 542.534 273.097 542.401 272.896C542.268 272.694 542.048 272.505 541.744 272.329C541.458 272.164 541.226 272.1 541.048 272.137C540.877 272.177 540.788 272.335 540.781 272.61L539.495 271.867C539.502 271.225 539.711 270.859 540.124 270.767C540.543 270.672 541.08 270.813 541.734 271.191C542.439 271.598 542.969 272.054 543.325 272.56C543.687 273.07 543.868 273.596 543.868 274.139L543.868 278.275L542.639 277.565L542.639 276.927C542.436 277.081 542.204 277.145 541.944 277.12C541.69 277.09 541.397 276.98 541.067 276.79ZM541.391 275.899C541.607 276.023 541.804 276.093 541.982 276.108C542.166 276.126 542.315 276.073 542.429 275.948C542.544 275.823 542.601 275.618 542.601 275.332L542.601 274.848L541.439 274.452C541.134 274.342 540.915 274.304 540.781 274.337C540.648 274.362 540.581 274.489 540.581 274.716C540.581 274.936 540.648 275.151 540.781 275.36C540.921 275.565 541.124 275.745 541.391 275.899ZM544.733 273.054L545.991 273.78L545.991 274.594C546.156 274.396 546.359 274.283 546.601 274.253C546.842 274.224 547.131 274.306 547.467 274.501C547.81 274.699 548.106 274.961 548.353 275.287C548.601 275.614 548.792 275.988 548.925 276.409C549.109 276.193 549.338 276.068 549.611 276.035C549.89 275.999 550.208 276.083 550.563 276.288C550.906 276.486 551.202 276.748 551.449 277.075C551.703 277.405 551.897 277.781 552.031 278.202C552.164 278.624 552.231 279.069 552.231 279.539L552.231 283.103L550.935 282.355L550.935 278.967C550.935 278.615 550.868 278.294 550.735 278.004C550.602 277.715 550.398 277.491 550.125 277.333C549.852 277.176 549.617 277.15 549.42 277.256C549.23 277.366 549.135 277.674 549.135 278.18L549.135 281.315L547.839 280.567L547.839 277.179C547.839 276.827 547.769 276.505 547.629 276.211C547.496 275.922 547.296 275.7 547.029 275.546C546.75 275.384 546.512 275.357 546.315 275.463C546.124 275.573 546.029 275.881 546.029 276.387L546.029 279.522L544.733 278.774L544.733 273.054ZM556.018 279.438C556.482 279.705 556.879 280.063 557.209 280.51C557.539 280.958 557.79 281.458 557.962 282.012C558.133 282.558 558.219 283.121 558.219 283.7C558.219 284.272 558.133 284.736 557.962 285.092C557.79 285.44 557.539 285.651 557.209 285.724C556.879 285.79 556.482 285.689 556.018 285.422C555.688 285.231 555.396 284.993 555.142 284.707C554.894 284.417 554.685 284.091 554.513 283.728L554.513 286.621L553.218 285.873L553.218 277.953L554.475 278.679L554.475 279.438C554.647 279.251 554.859 279.154 555.113 279.146C555.368 279.139 555.669 279.236 556.018 279.438ZM555.695 280.483C555.428 280.329 555.206 280.274 555.028 280.318C554.85 280.354 554.717 280.479 554.628 280.692C554.539 280.904 554.494 281.19 554.494 281.55C554.494 281.909 554.539 282.246 554.628 282.562C554.717 282.87 554.85 283.148 555.028 283.398C555.206 283.647 555.428 283.849 555.695 284.003C555.968 284.16 556.193 284.217 556.371 284.173C556.549 284.129 556.679 284.003 556.762 283.794C556.85 283.581 556.895 283.295 556.895 282.936C556.895 282.576 556.85 282.239 556.762 281.924C556.679 281.612 556.549 281.335 556.371 281.093C556.193 280.844 555.968 280.64 555.695 280.483ZM561.272 288.455C560.764 288.161 560.319 287.776 559.938 287.3C559.563 286.819 559.278 286.299 559.081 285.738C558.884 285.169 558.785 284.599 558.785 284.027C558.785 283.455 558.884 282.999 559.081 282.658C559.278 282.317 559.563 282.126 559.938 282.086C560.319 282.049 560.764 282.177 561.272 282.471C561.786 282.768 562.231 283.153 562.605 283.626C562.98 284.091 563.263 284.618 563.453 285.204C563.65 285.787 563.749 286.394 563.749 287.025L563.749 287.355L560.071 285.232C560.103 285.536 560.17 285.82 560.271 286.084C560.379 286.345 560.516 286.581 560.681 286.794C560.853 287.003 561.049 287.171 561.272 287.3C561.551 287.461 561.783 287.533 561.967 287.514C562.158 287.492 562.304 287.393 562.405 287.217L563.663 287.943C563.498 288.427 563.206 288.721 562.786 288.823C562.374 288.922 561.869 288.799 561.272 288.455ZM562.453 285.573C562.389 285.14 562.256 284.755 562.053 284.418C561.85 284.073 561.589 283.809 561.272 283.626C560.948 283.439 560.684 283.4 560.481 283.51C560.278 283.613 560.144 283.844 560.081 284.203L562.453 285.573ZM564.53 284.484L565.788 285.21L565.788 286.2C565.946 285.918 566.15 285.767 566.397 285.749C566.645 285.723 566.934 285.806 567.264 285.996L567.664 286.227L567.664 287.602L567.207 287.338C566.915 287.17 566.667 287.082 566.464 287.074C566.261 287.06 566.102 287.148 565.988 287.338C565.88 287.525 565.826 287.832 565.826 288.257L565.826 290.952L564.53 290.204L564.53 284.484ZM570.598 285.787L575.694 288.729L575.694 290.17L571.988 288.031L571.988 289.769L575.418 291.749L575.418 293.124L571.988 291.144L571.988 293.069L575.675 295.197L575.675 296.638L570.598 293.707L570.598 285.787ZM576.009 291.111L577.409 291.92L578.629 296.925L579.829 293.317L581.22 294.12L579.362 298.767L577.876 297.909L576.009 291.111ZM581.75 294.426L583.045 295.174L583.045 300.894L581.75 300.146L581.75 294.426ZM581.75 292.226L583.045 292.974L583.045 294.305L581.75 293.557L581.75 292.226ZM586.02 302.743C585.557 302.476 585.16 302.118 584.83 301.671C584.499 301.216 584.248 300.716 584.077 300.169C583.905 299.616 583.82 299.053 583.82 298.481C583.82 297.901 583.905 297.438 584.077 297.089C584.248 296.734 584.499 296.523 584.83 296.457C585.16 296.391 585.557 296.492 586.02 296.759C586.351 296.95 586.64 297.186 586.887 297.469C587.141 297.755 587.354 298.079 587.525 298.442L587.525 295.56L588.821 296.308L588.821 304.228L587.564 303.502L587.564 302.743C587.392 302.93 587.179 303.027 586.925 303.035C586.671 303.042 586.37 302.945 586.02 302.743ZM586.344 301.698C586.611 301.852 586.833 301.907 587.011 301.863C587.189 301.819 587.322 301.695 587.411 301.489C587.5 301.277 587.544 300.991 587.544 300.631C587.544 300.272 587.5 299.935 587.411 299.619C587.322 299.304 587.189 299.025 587.011 298.783C586.833 298.534 586.611 298.332 586.344 298.178C586.071 298.021 585.846 297.964 585.668 298.008C585.49 298.044 585.357 298.169 585.268 298.382C585.185 298.598 585.144 298.886 585.144 299.245C585.144 299.605 585.185 299.94 585.268 300.252C585.357 300.56 585.49 300.838 585.668 301.088C585.846 301.337 586.071 301.541 586.344 301.698ZM592.083 306.244C591.575 305.95 591.131 305.565 590.75 305.089C590.375 304.608 590.089 304.088 589.892 303.527C589.695 302.958 589.597 302.388 589.597 301.816C589.597 301.244 589.695 300.788 589.892 300.447C590.089 300.106 590.375 299.915 590.75 299.875C591.131 299.838 591.575 299.966 592.083 300.26C592.598 300.557 593.042 300.942 593.417 301.415C593.792 301.88 594.074 302.407 594.265 302.993C594.462 303.576 594.56 304.183 594.56 304.814L594.56 305.144L590.883 303.021C590.915 303.325 590.981 303.609 591.083 303.873C591.191 304.134 591.327 304.37 591.493 304.583C591.664 304.792 591.861 304.96 592.083 305.089C592.363 305.25 592.594 305.322 592.779 305.303C592.969 305.281 593.115 305.182 593.217 305.006L594.474 305.732C594.309 306.216 594.017 306.51 593.598 306.612C593.185 306.711 592.68 306.588 592.083 306.244ZM593.265 303.362C593.201 302.929 593.068 302.544 592.864 302.207C592.661 301.862 592.401 301.598 592.083 301.415C591.759 301.228 591.496 301.189 591.293 301.299C591.089 301.402 590.956 301.633 590.892 301.992L593.265 303.362ZM595.342 302.273L596.599 302.999L596.599 303.78C596.783 303.608 597.006 303.516 597.266 303.505C597.526 303.487 597.825 303.575 598.162 303.769C598.536 303.985 598.854 304.26 599.114 304.594C599.381 304.924 599.581 305.3 599.714 305.722C599.854 306.147 599.924 306.598 599.924 307.075L599.924 310.639L598.638 309.896L598.638 306.508C598.638 306.149 598.565 305.824 598.419 305.535C598.273 305.238 598.041 304.997 597.723 304.814C597.546 304.711 597.374 304.66 597.209 304.66C597.05 304.656 596.914 304.728 596.799 304.875C596.691 305.025 596.637 305.269 596.637 305.606L596.637 308.741L595.342 307.993L595.342 302.273ZM602.848 312.327C602.537 312.147 602.28 311.958 602.076 311.76C601.873 311.555 601.711 311.307 601.591 311.018C601.476 310.732 601.419 310.391 601.419 309.995L601.419 306.915L600.562 306.42L600.562 305.287L601.419 305.782L601.419 304.022L602.715 304.77L602.715 306.53L603.953 307.245L603.953 308.378L602.715 307.663L602.715 310.589C602.715 310.772 602.75 310.928 602.82 311.056C602.889 311.177 603.01 311.287 603.182 311.386L603.953 311.832L603.953 312.965L602.848 312.327ZM533.572 275.41L534.962 276.213L534.962 279.975L538.078 278.011L539.811 279.012L537.058 280.635L539.811 286.933L538.144 285.97L536.106 281.207L534.962 281.867L534.962 284.133L533.572 283.33L533.572 275.41ZM540.38 281.541L541.637 282.267L541.637 283.048C541.821 282.875 542.044 282.784 542.304 282.773C542.564 282.754 542.863 282.842 543.199 283.037C543.574 283.253 543.892 283.528 544.152 283.862C544.419 284.192 544.619 284.567 544.752 284.989C544.892 285.414 544.962 285.865 544.962 286.342L544.962 289.906L543.676 289.164L543.676 285.776C543.676 285.416 543.603 285.092 543.457 284.802C543.311 284.505 543.079 284.265 542.761 284.082C542.583 283.979 542.412 283.928 542.247 283.928C542.088 283.924 541.951 283.995 541.837 284.142C541.729 284.292 541.675 284.536 541.675 284.874L541.675 288.009L540.38 287.261L540.38 281.541ZM548.277 291.952C547.756 291.651 547.302 291.261 546.914 290.78C546.533 290.296 546.241 289.772 546.038 289.207C545.841 288.639 545.743 288.069 545.743 287.497C545.743 286.925 545.841 286.468 546.038 286.127C546.241 285.79 546.533 285.603 546.914 285.566C547.302 285.533 547.756 285.667 548.277 285.968C548.804 286.272 549.258 286.663 549.639 287.139C550.026 287.62 550.318 288.144 550.515 288.712C550.712 289.281 550.81 289.851 550.81 290.423C550.81 290.995 550.712 291.451 550.515 291.792C550.318 292.126 550.026 292.313 549.639 292.353C549.258 292.39 548.804 292.256 548.277 291.952ZM548.277 290.72C548.556 290.881 548.785 290.94 548.962 290.896C549.147 290.856 549.28 290.731 549.363 290.522C549.451 290.309 549.496 290.023 549.496 289.664C549.496 289.305 549.451 288.967 549.363 288.652C549.28 288.34 549.147 288.062 548.962 287.816C548.785 287.567 548.556 287.361 548.277 287.2C548.003 287.042 547.775 286.984 547.591 287.024C547.413 287.061 547.279 287.185 547.191 287.398C547.102 287.611 547.057 287.897 547.057 288.256C547.057 288.615 547.102 288.953 547.191 289.268C547.279 289.576 547.413 289.855 547.591 290.104C547.775 290.357 548.003 290.562 548.277 290.72ZM551.142 287.754L552.542 288.563L553.609 293.106L554.562 289.729L555.791 290.438L556.743 294.915L557.81 291.604L559.211 292.413L557.486 297.137L556.134 296.356L555.181 291.956L554.219 295.251L552.866 294.47L551.142 287.754ZM559.748 290.523L561.044 291.271L561.044 299.191L559.748 298.443L559.748 290.523ZM564.314 301.211C563.806 300.918 563.361 300.533 562.98 300.056C562.605 299.576 562.32 299.055 562.123 298.494C561.926 297.926 561.827 297.356 561.827 296.784C561.827 296.212 561.926 295.755 562.123 295.414C562.32 295.073 562.605 294.882 562.98 294.842C563.361 294.805 563.806 294.934 564.314 295.227C564.828 295.524 565.273 295.909 565.647 296.382C566.022 296.848 566.305 297.374 566.495 297.961C566.692 298.544 566.791 299.15 566.791 299.781L566.791 300.111L563.113 297.988C563.145 298.292 563.212 298.577 563.314 298.841C563.421 299.101 563.558 299.337 563.723 299.55C563.895 299.759 564.091 299.928 564.314 300.056C564.593 300.217 564.825 300.289 565.009 300.271C565.2 300.249 565.346 300.15 565.447 299.974L566.705 300.7C566.54 301.184 566.248 301.477 565.828 301.58C565.416 301.679 564.911 301.556 564.314 301.211ZM565.495 298.329C565.432 297.896 565.298 297.511 565.095 297.174C564.892 296.829 564.631 296.565 564.314 296.382C563.99 296.195 563.726 296.157 563.523 296.267C563.32 296.369 563.186 296.6 563.123 296.96L565.495 298.329ZM569.563 304.242C569.1 303.974 568.703 303.617 568.372 303.169C568.042 302.715 567.791 302.214 567.62 301.668C567.448 301.114 567.363 300.551 567.363 299.979C567.363 299.4 567.448 298.936 567.62 298.588C567.791 298.232 568.042 298.021 568.372 297.955C568.703 297.889 569.1 297.99 569.563 298.258C569.894 298.448 570.182 298.685 570.43 298.967C570.684 299.253 570.897 299.578 571.068 299.941L571.068 297.059L572.364 297.807L572.364 305.727L571.107 305.001L571.107 304.242C570.935 304.429 570.722 304.526 570.468 304.533C570.214 304.541 569.913 304.443 569.563 304.242ZM569.887 303.197C570.154 303.351 570.376 303.406 570.554 303.362C570.732 303.318 570.865 303.193 570.954 302.988C571.043 302.775 571.087 302.489 571.087 302.13C571.087 301.77 571.043 301.433 570.954 301.118C570.865 300.802 570.732 300.524 570.554 300.282C570.376 300.032 570.154 299.831 569.887 299.677C569.614 299.519 569.389 299.462 569.211 299.506C569.033 299.543 568.9 299.668 568.811 299.88C568.728 300.097 568.687 300.384 568.687 300.744C568.687 301.103 568.728 301.439 568.811 301.75C568.9 302.058 569.033 302.337 569.211 302.586C569.389 302.836 569.614 303.039 569.887 303.197ZM575.598 309.926C574.899 309.522 574.356 309.029 573.969 308.446C573.581 307.863 573.369 307.245 573.33 306.593L574.607 307.33C574.639 307.649 574.743 307.929 574.921 308.171C575.105 308.417 575.347 308.626 575.645 308.798C575.995 309 576.28 309.066 576.503 308.996C576.731 308.938 576.846 308.659 576.846 308.16L576.846 307.467C576.674 307.625 576.461 307.7 576.207 307.693C575.96 307.682 575.671 307.581 575.34 307.39C574.877 307.123 574.48 306.769 574.15 306.329C573.819 305.889 573.569 305.403 573.397 304.871C573.226 304.332 573.14 303.784 573.14 303.227C573.14 302.662 573.226 302.213 573.397 301.879C573.569 301.538 573.819 301.338 574.15 301.28C574.48 301.221 574.877 301.326 575.34 301.593C575.683 301.791 575.982 302.037 576.236 302.33C576.496 302.627 576.712 302.965 576.884 303.342L576.884 302.616L578.141 303.342L578.141 308.908C578.141 309.458 578.03 309.852 577.808 310.091C577.585 310.336 577.284 310.441 576.903 310.404C576.522 310.368 576.087 310.208 575.598 309.926ZM575.664 306.4C575.931 306.554 576.153 306.613 576.331 306.576C576.509 306.532 576.642 306.411 576.731 306.213C576.82 306.008 576.865 305.729 576.865 305.377C576.865 305.025 576.82 304.695 576.731 304.387C576.642 304.079 576.509 303.804 576.331 303.562C576.153 303.313 575.931 303.111 575.664 302.957C575.391 302.8 575.166 302.743 574.988 302.787C574.81 302.823 574.677 302.944 574.588 303.15C574.505 303.359 574.464 303.639 574.464 303.991C574.464 304.343 574.505 304.671 574.588 304.976C574.677 305.276 574.81 305.551 574.988 305.801C575.166 306.043 575.391 306.243 575.664 306.4ZM581.403 311.078C580.895 310.784 580.451 310.399 580.07 309.923C579.695 309.442 579.409 308.922 579.212 308.361C579.015 307.792 578.917 307.222 578.917 306.65C578.917 306.078 579.015 305.622 579.212 305.281C579.409 304.94 579.695 304.749 580.07 304.709C580.451 304.672 580.895 304.8 581.403 305.094C581.918 305.391 582.362 305.776 582.737 306.249C583.112 306.714 583.394 307.241 583.585 307.827C583.782 308.41 583.88 309.017 583.88 309.648L583.88 309.978L580.203 307.855C580.235 308.159 580.302 308.443 580.403 308.707C580.511 308.968 580.648 309.204 580.813 309.417C580.984 309.626 581.181 309.794 581.403 309.923C581.683 310.084 581.915 310.156 582.099 310.137C582.289 310.115 582.435 310.016 582.537 309.84L583.794 310.566C583.629 311.05 583.337 311.344 582.918 311.446C582.505 311.545 582 311.422 581.403 311.078ZM582.585 308.196C582.521 307.763 582.388 307.378 582.185 307.041C581.981 306.696 581.721 306.432 581.403 306.249C581.08 306.062 580.816 306.023 580.613 306.133C580.409 306.236 580.276 306.467 580.213 306.826L582.585 308.196ZM589.822 315.938C589.155 315.553 588.577 315.036 588.088 314.387C587.599 313.738 587.224 313.03 586.964 312.264C586.71 311.494 586.583 310.731 586.583 309.976C586.583 309.213 586.713 308.599 586.973 308.133C587.24 307.664 587.631 307.398 588.145 307.336C588.666 307.27 589.288 307.446 590.012 307.864C590.603 308.205 591.124 308.627 591.574 309.129C592.025 309.631 592.391 310.179 592.67 310.773C592.949 311.36 593.13 311.956 593.213 312.561L591.794 311.741C591.692 311.25 591.486 310.783 591.174 310.339C590.863 309.895 590.476 309.54 590.012 309.272C589.568 309.015 589.196 308.922 588.898 308.991C588.599 309.054 588.38 309.246 588.24 309.569C588.101 309.892 588.031 310.306 588.031 310.812C588.031 311.311 588.101 311.802 588.24 312.286C588.38 312.77 588.599 313.219 588.898 313.633C589.196 314.04 589.568 314.372 590.012 314.629C590.508 314.915 590.908 314.996 591.212 314.871C591.517 314.739 591.73 314.436 591.851 313.963L589.726 312.737L589.726 311.439L593.299 313.501L593.299 317.813L592.27 317.219L592.27 315.844C592.041 316.196 591.724 316.387 591.317 316.416C590.917 316.442 590.419 316.283 589.822 315.938ZM594.263 312.65L595.52 313.376L595.52 314.366C595.679 314.084 595.882 313.933 596.13 313.915C596.377 313.889 596.666 313.972 596.997 314.162L597.397 314.393L597.397 315.768L596.939 315.504C596.647 315.336 596.4 315.248 596.196 315.24C595.993 315.226 595.834 315.314 595.72 315.504C595.612 315.691 595.558 315.998 595.558 316.423L595.558 319.118L594.263 318.37L594.263 312.65ZM599.676 321.627C599.13 321.312 598.692 320.909 598.362 320.417C598.031 319.919 597.866 319.394 597.866 318.844C597.866 318.507 597.933 318.263 598.066 318.113C598.206 317.959 598.415 317.889 598.695 317.904C598.981 317.922 599.349 318.018 599.8 318.19L601.21 318.718L601.21 318.421C601.21 318.164 601.143 317.935 601.01 317.733C600.876 317.532 600.657 317.343 600.353 317.167C600.067 317.002 599.835 316.938 599.657 316.974C599.486 317.015 599.397 317.172 599.39 317.447L598.104 316.705C598.111 316.063 598.32 315.697 598.733 315.605C599.152 315.51 599.689 315.651 600.343 316.028C601.048 316.435 601.578 316.892 601.934 317.398C602.296 317.908 602.477 318.434 602.477 318.976L602.477 323.112L601.248 322.403L601.248 321.765C601.045 321.919 600.813 321.983 600.553 321.957C600.299 321.928 600.006 321.818 599.676 321.627ZM600 320.736C600.216 320.861 600.413 320.931 600.591 320.945C600.775 320.964 600.924 320.911 601.038 320.786C601.153 320.661 601.21 320.456 601.21 320.17L601.21 319.686L600.048 319.29C599.743 319.18 599.524 319.141 599.39 319.174C599.257 319.2 599.19 319.327 599.19 319.554C599.19 319.774 599.257 319.988 599.39 320.197C599.53 320.403 599.733 320.582 600 320.736ZM606.143 319.377C606.607 319.645 607.004 320.002 607.334 320.45C607.664 320.897 607.915 321.398 608.086 321.951C608.258 322.498 608.344 323.06 608.344 323.64C608.344 324.212 608.258 324.676 608.086 325.031C607.915 325.38 607.664 325.59 607.334 325.664C607.004 325.73 606.607 325.629 606.143 325.361C605.813 325.171 605.521 324.932 605.267 324.646C605.019 324.357 604.809 324.03 604.638 323.667L604.638 326.56L603.342 325.812L603.342 317.892L604.6 318.618L604.6 319.377C604.771 319.19 604.984 319.093 605.238 319.086C605.492 319.078 605.794 319.176 606.143 319.377ZM605.819 320.422C605.552 320.268 605.33 320.213 605.152 320.257C604.975 320.294 604.841 320.419 604.752 320.631C604.663 320.844 604.619 321.13 604.619 321.489C604.619 321.849 604.663 322.186 604.752 322.501C604.841 322.809 604.975 323.088 605.152 323.337C605.33 323.587 605.552 323.788 605.819 323.942C606.092 324.1 606.318 324.157 606.496 324.113C606.673 324.069 606.804 323.942 606.886 323.733C606.975 323.521 607.019 323.235 607.019 322.875C607.019 322.516 606.975 322.179 606.886 321.863C606.804 321.552 606.673 321.275 606.496 321.033C606.318 320.783 606.092 320.58 605.819 320.422ZM609.12 319.028L610.415 319.776L610.415 322.702C610.599 322.544 610.818 322.461 611.072 322.454C611.326 322.447 611.615 322.537 611.939 322.724C612.314 322.94 612.632 323.215 612.892 323.549C613.159 323.879 613.359 324.254 613.492 324.676C613.632 325.101 613.702 325.552 613.702 326.029L613.702 329.593L612.416 328.851L612.416 325.463C612.416 325.103 612.343 324.779 612.196 324.489C612.05 324.192 611.819 323.952 611.501 323.769C611.323 323.666 611.152 323.615 610.987 323.615C610.828 323.611 610.691 323.682 610.577 323.829C610.469 323.979 610.415 324.223 610.415 324.561L610.415 327.696L609.12 326.948L609.12 319.028ZM535.02 291.844L533.333 290.87L533.333 289.583L535.02 290.557L535.02 288.621L536.134 289.264L536.134 291.2L537.811 292.168L537.811 293.455L536.134 292.487L536.134 294.435L535.02 293.791L535.02 291.844ZM543.99 300.477C543.266 300.059 542.644 299.52 542.123 298.86C541.609 298.197 541.218 297.476 540.951 296.699C540.691 295.925 540.561 295.161 540.561 294.405C540.561 293.643 540.691 293.028 540.951 292.563C541.218 292.093 541.609 291.828 542.123 291.765C542.644 291.699 543.266 291.875 543.99 292.293C544.549 292.616 545.048 293.028 545.486 293.531C545.924 294.033 546.277 294.585 546.543 295.186C546.81 295.788 546.985 296.394 547.067 297.007L545.657 296.193C545.594 295.855 545.486 295.529 545.333 295.214C545.187 294.902 544.997 294.616 544.762 294.356C544.533 294.099 544.276 293.888 543.99 293.723C543.546 293.467 543.174 293.369 542.876 293.432C542.577 293.494 542.358 293.687 542.218 294.009C542.079 294.325 542.009 294.735 542.009 295.241C542.009 295.74 542.079 296.231 542.218 296.715C542.358 297.192 542.577 297.637 542.876 298.052C543.174 298.459 543.546 298.791 543.99 299.047C544.301 299.227 544.574 299.311 544.809 299.3C545.044 299.289 545.235 299.198 545.381 299.025C545.533 298.857 545.635 298.622 545.686 298.321L547.086 299.13C547.023 299.687 546.858 300.127 546.591 300.45C546.33 300.776 545.975 300.945 545.524 300.956C545.079 300.97 544.568 300.811 543.99 300.477ZM550.193 304.058C549.672 303.758 549.218 303.367 548.831 302.887C548.45 302.403 548.157 301.879 547.954 301.314C547.757 300.746 547.659 300.175 547.659 299.603C547.659 299.031 547.757 298.575 547.954 298.234C548.157 297.897 548.45 297.71 548.831 297.673C549.218 297.64 549.672 297.774 550.193 298.074C550.72 298.379 551.174 298.769 551.555 299.246C551.943 299.726 552.235 300.251 552.432 300.819C552.628 301.387 552.727 301.957 552.727 302.529C552.727 303.101 552.628 303.558 552.432 303.899C552.235 304.233 551.943 304.42 551.555 304.46C551.174 304.497 550.72 304.363 550.193 304.058ZM550.193 302.826C550.472 302.988 550.701 303.046 550.879 303.002C551.063 302.962 551.196 302.837 551.279 302.628C551.368 302.416 551.412 302.13 551.412 301.77C551.412 301.411 551.368 301.074 551.279 300.758C551.196 300.447 551.063 300.168 550.879 299.922C550.701 299.673 550.472 299.468 550.193 299.306C549.92 299.149 549.691 299.09 549.507 299.13C549.329 299.167 549.196 299.292 549.107 299.504C549.018 299.717 548.974 300.003 548.974 300.362C548.974 300.722 549.018 301.059 549.107 301.374C549.196 301.682 549.329 301.961 549.507 302.21C549.691 302.463 549.92 302.669 550.193 302.826ZM553.506 300.119L554.764 300.845L554.764 301.659C554.929 301.461 555.132 301.348 555.373 301.318C555.615 301.289 555.904 301.371 556.24 301.566C556.583 301.764 556.878 302.026 557.126 302.352C557.374 302.679 557.564 303.053 557.698 303.474C557.882 303.258 558.111 303.133 558.384 303.1C558.663 303.064 558.981 303.148 559.336 303.353C559.679 303.551 559.974 303.813 560.222 304.14C560.476 304.47 560.67 304.846 560.803 305.267C560.937 305.689 561.003 306.134 561.003 306.604L561.003 310.168L559.708 309.42L559.708 306.032C559.708 305.68 559.641 305.359 559.508 305.069C559.374 304.78 559.171 304.556 558.898 304.398C558.625 304.241 558.39 304.215 558.193 304.321C558.003 304.431 557.907 304.739 557.907 305.245L557.907 308.38L556.612 307.632L556.612 304.244C556.612 303.892 556.542 303.57 556.402 303.276C556.269 302.987 556.069 302.765 555.802 302.611C555.523 302.449 555.284 302.422 555.087 302.528C554.897 302.638 554.802 302.946 554.802 303.452L554.802 306.587L553.506 305.839L553.506 300.119ZM561.99 305.018L563.248 305.744L563.248 306.558C563.413 306.36 563.616 306.246 563.858 306.217C564.099 306.187 564.388 306.27 564.725 306.464C565.067 306.662 565.363 306.924 565.61 307.251C565.858 307.577 566.049 307.951 566.182 308.373C566.366 308.156 566.595 308.032 566.868 307.999C567.147 307.962 567.465 308.046 567.821 308.252C568.164 308.45 568.459 308.712 568.707 309.038C568.961 309.368 569.154 309.744 569.288 310.166C569.421 310.587 569.488 311.033 569.488 311.502L569.488 315.066L568.192 314.318L568.192 310.93C568.192 310.578 568.125 310.257 567.992 309.968C567.859 309.678 567.655 309.454 567.382 309.297C567.109 309.139 566.874 309.113 566.677 309.22C566.487 309.33 566.392 309.638 566.392 310.144L566.392 313.279L565.096 312.531L565.096 309.143C565.096 308.791 565.026 308.468 564.886 308.175C564.753 307.885 564.553 307.663 564.286 307.509C564.007 307.348 563.769 307.32 563.572 307.427C563.381 307.537 563.286 307.845 563.286 308.351L563.286 311.486L561.99 310.738L561.99 305.018ZM575.057 318.282L573.799 317.556L573.799 316.775C573.615 316.947 573.393 317.042 573.133 317.061C572.872 317.072 572.574 316.98 572.237 316.786C571.862 316.569 571.542 316.296 571.275 315.966C571.015 315.632 570.815 315.253 570.675 314.828C570.542 314.406 570.475 313.957 570.475 313.48L570.475 309.916L571.761 310.659L571.761 314.047C571.761 314.406 571.834 314.734 571.98 315.031C572.126 315.321 572.358 315.557 572.675 315.741C572.853 315.843 573.022 315.896 573.18 315.9C573.345 315.9 573.482 315.825 573.59 315.675C573.704 315.528 573.761 315.286 573.761 314.949L573.761 311.814L575.057 312.562L575.057 318.282ZM576.047 313.133L577.305 313.859L577.305 314.64C577.489 314.468 577.711 314.376 577.972 314.365C578.232 314.347 578.531 314.435 578.867 314.629C579.242 314.846 579.559 315.121 579.82 315.454C580.086 315.784 580.287 316.16 580.42 316.582C580.56 317.007 580.629 317.458 580.629 317.935L580.629 321.499L579.343 320.756L579.343 317.368C579.343 317.009 579.27 316.685 579.124 316.395C578.978 316.098 578.746 315.858 578.429 315.674C578.251 315.572 578.08 315.52 577.914 315.52C577.756 315.517 577.619 315.588 577.505 315.735C577.397 315.885 577.343 316.129 577.343 316.466L577.343 319.601L576.047 318.853L576.047 313.133ZM581.61 316.345L582.906 317.093L582.906 322.813L581.61 322.065L581.61 316.345ZM581.61 314.145L582.906 314.893L582.906 316.224L581.61 315.476L581.61 314.145ZM586.167 324.828C585.658 324.534 585.217 324.151 584.842 323.678C584.474 323.202 584.191 322.683 583.995 322.122C583.798 321.553 583.699 320.983 583.699 320.411C583.699 319.839 583.798 319.383 583.995 319.042C584.191 318.701 584.474 318.508 584.842 318.464C585.217 318.424 585.658 318.55 586.167 318.844C586.846 319.236 587.386 319.746 587.786 320.373C588.186 321 588.424 321.673 588.5 322.391L587.205 321.643C587.148 321.31 587.027 321.005 586.843 320.73C586.665 320.452 586.44 320.233 586.167 320.076C585.913 319.929 585.7 319.88 585.528 319.927C585.357 319.968 585.227 320.094 585.138 320.307C585.055 320.523 585.014 320.811 585.014 321.17C585.014 321.53 585.055 321.865 585.138 322.177C585.227 322.485 585.357 322.762 585.528 323.007C585.7 323.253 585.913 323.449 586.167 323.596C586.452 323.761 586.684 323.803 586.862 323.722C587.046 323.645 587.16 323.451 587.205 323.139L588.5 323.887C588.424 324.54 588.183 324.958 587.776 325.141C587.37 325.317 586.833 325.213 586.167 324.828ZM590.755 327.477C590.208 327.161 589.77 326.758 589.44 326.267C589.11 325.768 588.945 325.244 588.945 324.694C588.945 324.356 589.011 324.112 589.145 323.962C589.284 323.808 589.494 323.738 589.773 323.753C590.059 323.771 590.427 323.867 590.878 324.039L592.288 324.567L592.288 324.27C592.288 324.013 592.222 323.784 592.088 323.583C591.955 323.381 591.736 323.192 591.431 323.016C591.145 322.851 590.913 322.787 590.736 322.824C590.564 322.864 590.475 323.022 590.469 323.297L589.183 322.554C589.189 321.912 589.399 321.546 589.811 321.454C590.231 321.359 590.767 321.5 591.421 321.878C592.126 322.285 592.657 322.741 593.012 323.247C593.374 323.757 593.555 324.283 593.555 324.826L593.555 328.962L592.326 328.252L592.326 327.614C592.123 327.768 591.891 327.832 591.631 327.807C591.377 327.777 591.085 327.667 590.755 327.477ZM591.078 326.586C591.294 326.71 591.491 326.78 591.669 326.795C591.853 326.813 592.002 326.76 592.117 326.635C592.231 326.51 592.288 326.305 592.288 326.019L592.288 325.535L591.126 325.139C590.821 325.029 590.602 324.991 590.469 325.024C590.335 325.049 590.269 325.176 590.269 325.403C590.269 325.623 590.335 325.838 590.469 326.047C590.608 326.252 590.812 326.432 591.078 326.586ZM596.355 330.578C596.043 330.398 595.786 330.209 595.583 330.011C595.38 329.806 595.218 329.558 595.097 329.269C594.983 328.983 594.926 328.642 594.926 328.246L594.926 325.166L594.068 324.671L594.068 323.538L594.926 324.033L594.926 322.273L596.221 323.021L596.221 324.781L597.46 325.496L597.46 326.629L596.221 325.914L596.221 328.84C596.221 329.023 596.256 329.179 596.326 329.307C596.396 329.428 596.517 329.538 596.688 329.637L597.46 330.083L597.46 331.216L596.355 330.578ZM598.188 325.916L599.484 326.664L599.484 332.384L598.188 331.636L598.188 325.916ZM598.188 323.716L599.484 324.464L599.484 325.795L598.188 325.047L598.188 323.716ZM602.792 334.427C602.271 334.126 601.817 333.735 601.43 333.255C601.049 332.771 600.757 332.247 600.553 331.682C600.357 331.114 600.258 330.544 600.258 329.972C600.258 329.4 600.357 328.943 600.553 328.602C600.757 328.265 601.049 328.078 601.43 328.041C601.817 328.008 602.271 328.142 602.792 328.443C603.319 328.747 603.773 329.137 604.154 329.614C604.542 330.094 604.834 330.619 605.031 331.187C605.228 331.755 605.326 332.326 605.326 332.898C605.326 333.47 605.228 333.926 605.031 334.267C604.834 334.601 604.542 334.788 604.154 334.828C603.773 334.865 603.319 334.731 602.792 334.427ZM602.792 333.195C603.072 333.356 603.3 333.415 603.478 333.371C603.662 333.33 603.796 333.206 603.878 332.997C603.967 332.784 604.011 332.498 604.011 332.139C604.011 331.779 603.967 331.442 603.878 331.127C603.796 330.815 603.662 330.536 603.478 330.291C603.3 330.041 603.072 329.836 602.792 329.675C602.519 329.517 602.29 329.458 602.106 329.499C601.928 329.535 601.795 329.66 601.706 329.873C601.617 330.085 601.573 330.371 601.573 330.731C601.573 331.09 601.617 331.427 601.706 331.743C601.795 332.051 601.928 332.329 602.106 332.579C602.29 332.832 602.519 333.037 602.792 333.195ZM606.105 330.487L607.363 331.213L607.363 331.994C607.547 331.822 607.769 331.73 608.03 331.719C608.29 331.701 608.589 331.789 608.925 331.983C609.3 332.2 609.617 332.475 609.878 332.808C610.144 333.138 610.345 333.514 610.478 333.936C610.618 334.361 610.687 334.812 610.687 335.289L610.687 338.853L609.401 338.11L609.401 334.722C609.401 334.363 609.328 334.039 609.182 333.749C609.036 333.452 608.804 333.212 608.487 333.028C608.309 332.926 608.138 332.874 607.972 332.874C607.814 332.871 607.677 332.942 607.563 333.089C607.455 333.239 607.401 333.483 607.401 333.82L607.401 336.955L606.105 336.207L606.105 330.487ZM613.659 340.701C612.954 340.294 612.402 339.813 612.002 339.26C611.608 338.71 611.392 338.075 611.354 337.357L612.611 338.083C612.643 338.453 612.748 338.763 612.926 339.012C613.11 339.265 613.37 339.489 613.707 339.683C613.98 339.841 614.199 339.912 614.364 339.898C614.529 339.876 614.612 339.766 614.612 339.568C614.612 339.428 614.587 339.304 614.536 339.194C614.485 339.084 614.377 338.948 614.212 338.787C614.053 338.622 613.805 338.413 613.469 338.16C612.961 337.764 612.561 337.401 612.268 337.071C611.976 336.741 611.767 336.425 611.64 336.125C611.519 335.828 611.459 335.514 611.459 335.184C611.459 334.642 611.649 334.326 612.03 334.238C612.411 334.15 612.923 334.291 613.564 334.662C614.275 335.072 614.818 335.562 615.193 336.13C615.568 336.691 615.761 337.28 615.774 337.896L614.574 337.203C614.567 336.854 614.472 336.561 614.288 336.323C614.104 336.084 613.863 335.879 613.564 335.707C613.316 335.564 613.113 335.501 612.954 335.52C612.802 335.542 612.726 335.648 612.726 335.839C612.726 335.978 612.757 336.11 612.821 336.235C612.891 336.356 613.008 336.497 613.173 336.658C613.345 336.816 613.596 337.019 613.926 337.269C614.428 337.654 614.822 338.009 615.107 338.336C615.393 338.655 615.596 338.966 615.717 339.271C615.838 339.568 615.898 339.881 615.898 340.211C615.898 340.776 615.692 341.097 615.279 341.174C614.872 341.247 614.332 341.089 613.659 340.701Z" fill="#5F52FF"/>
268
+ <path d="M627.5 263.152L653.5 245.152H673.5L700.5 267.152H705.25M705.25 267.152H710L726.5 225.152L670.5 235.152L649.5 188.652L635 192.152L601.5 222.152L594.5 231.652L611 260.152L627.5 267.152H705.25ZM604.5 229.152L649.5 235.152M660.5 192.152L713.5 218.152M697 189.652L675 225.152M702.5 188.652L720 214.652" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
269
+ <circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 699 225.212)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
270
+ <circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 699 219.101)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
271
+ <circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 699 213.753)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
272
+ <circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 699 208.405)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
273
+ <circle cx="9.62541" cy="9.62541" r="8.62541" transform="matrix(0.866025 -0.5 0.866025 0.5 711.346 208.405)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
274
+ <circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 615 193.212)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
275
+ <circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 615 187.101)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
276
+ <circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 615 181.753)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
277
+ <circle cx="8.44162" cy="8.44162" r="7.44162" transform="matrix(0.866025 -0.5 0.866025 0.5 629.396 181.753)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
278
+ <circle cx="8.44162" cy="8.44162" r="7.44162" transform="matrix(0.866025 -0.5 0.866025 0.5 629.396 177.753)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
279
+ <circle cx="8.44162" cy="8.44162" r="7.44162" transform="matrix(0.866025 -0.5 0.866025 0.5 629.396 173.753)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
280
+ <circle cx="21.9295" cy="21.9295" r="20.9295" transform="matrix(0.866025 -0.5 0.866025 0.5 626 241.582)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
281
+ <circle cx="21.9295" cy="21.9295" r="20.9295" transform="matrix(0.866025 -0.5 0.866025 0.5 626 233.582)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
282
+ <circle cx="21.9295" cy="21.9295" r="20.9295" transform="matrix(0.866025 -0.5 0.866025 0.5 626 226.582)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
283
+ <circle cx="21.9295" cy="21.9295" r="20.9295" transform="matrix(0.866025 -0.5 0.866025 0.5 626 219.582)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
284
+ <circle cx="21.9295" cy="21.9295" r="20.9295" transform="matrix(0.866025 -0.5 0.866025 0.5 626 212.582)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
285
+ <circle cx="12.5581" cy="12.5581" r="11.5581" transform="matrix(0.866025 -0.5 -0.866025 -0.5 663.983 225.14)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
286
+ <circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 689 269.764)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
287
+ <circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 689 265.555)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
288
+ <circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 689 259.872)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
289
+ <circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 689 254.19)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
290
+ <circle cx="6.62868" cy="6.62868" r="5.62868" transform="matrix(0.866025 -0.5 0.866025 0.5 697.502 254.19)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
291
+ <circle cx="6.16392" cy="6.16392" r="5.16392" transform="matrix(0.866025 -0.5 0.866025 0.5 689 189.137)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
292
+ <circle cx="6.16392" cy="6.16392" r="5.16392" transform="matrix(0.866025 -0.5 0.866025 0.5 689 186.888)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
293
+ <circle cx="6.16392" cy="6.16392" r="5.16392" transform="matrix(0.866025 -0.5 0.866025 0.5 689 183.852)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
294
+ <circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 575 230.764)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
295
+ <circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 575 226.555)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
296
+ <circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 575 220.872)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
297
+ <circle cx="11.5372" cy="11.5372" r="10.5372" transform="matrix(0.866025 -0.5 0.866025 0.5 575 215.19)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
298
+ <circle cx="6.62868" cy="6.62868" r="5.62868" transform="matrix(0.866025 -0.5 0.866025 0.5 583.502 215.19)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
299
+ <circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 590 266.865)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2"/>
300
+ <circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 590 260.753)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
301
+ <circle cx="16.753" cy="16.753" r="15.753" transform="matrix(0.866025 -0.5 0.866025 0.5 590 255.405)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2"/>
302
+ <path d="M421.5 351.5L457 342.5M512 310.5L534 334.5M434 310.5L455.5 324.5M497.5 379L539 346.5L492 334.5L495.5 304L436 303L422.5 310.5L414.5 347.5L423.5 363.5L465.5 387.5L497.5 379Z" stroke="#5F52FF" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
303
+ <path d="M538.464 338.678L553.564 341.009L557.602 349.727L546.536 356.116L531.435 353.785L527.399 345.067L538.464 338.678Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
304
+ <path d="M538.464 333.337L553.564 335.668L557.602 344.386L546.536 350.775L531.435 348.444L527.399 339.725L538.464 333.337Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
305
+ <path d="M538.464 328.723L553.564 331.053L557.602 339.771L546.536 346.16L531.435 343.829L527.399 335.111L538.464 328.723Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
306
+ <path d="M498.464 302.678L513.564 305.009L517.602 313.727L506.536 320.116L491.435 317.785L487.399 309.067L498.464 302.678Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
307
+ <path d="M498.464 297.337L513.564 299.668L517.602 308.386L506.536 314.775L491.435 312.444L487.399 303.725L498.464 297.337Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
308
+ <path d="M498.464 292.722L513.564 295.053L517.602 303.771L506.536 310.16L491.435 307.829L487.399 299.111L498.464 292.722Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
309
+ <path d="M498.464 288.272L513.564 290.602L517.602 299.32L506.536 305.709L491.435 303.379L487.399 294.66L498.464 288.272Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
310
+ <path d="M421.464 300.678L436.564 303.009L440.602 311.727L429.536 318.116L414.435 315.785L410.399 307.067L421.464 300.678Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
311
+ <path d="M421.464 295.337L436.564 297.668L440.602 306.386L429.536 312.775L414.435 310.444L410.399 301.725L421.464 295.337Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
312
+ <path d="M421.464 290.722L436.564 293.053L440.602 301.771L429.536 308.16L414.435 305.829L410.399 297.111L421.464 290.722Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
313
+ <path d="M421.464 286.272L436.564 288.602L440.602 297.32L429.536 303.709L414.435 301.379L410.399 292.66L421.464 286.272Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
314
+ <path d="M468.885 327.432L498.927 332.069L506.958 349.414L484.947 362.123L454.903 357.486L446.873 340.141L468.885 327.432Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
315
+ <path d="M468.885 320.432L498.927 325.069L506.958 342.414L484.947 355.123L454.903 350.486L446.873 333.141L468.885 320.432Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
316
+ <path d="M468.885 312.432L498.927 317.069L506.958 334.414L484.947 347.123L454.903 342.486L446.873 325.141L468.885 312.432Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
317
+ <path d="M468.885 304.432L498.927 309.069L506.958 326.414L484.947 339.123L454.903 334.486L446.873 317.141L468.885 304.432Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
318
+ <path d="M472.336 311.886L489.468 314.53L494.049 324.421L481.496 331.669L464.362 329.025L459.783 319.133L472.336 311.886Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
319
+ <path d="M472.336 306.702L489.468 309.346L494.049 319.237L481.496 326.485L464.362 323.841L459.783 313.949L472.336 306.702Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
320
+ <path d="M472.336 301.702L489.468 304.346L494.049 314.237L481.496 321.485L464.362 318.841L459.783 308.949L472.336 301.702Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
321
+ <path d="M412.464 350.678L427.564 353.009L431.602 361.727L420.536 368.116L405.435 365.785L401.399 357.067L412.464 350.678Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
322
+ <path d="M412.464 345.337L427.564 347.668L431.602 356.386L420.536 362.775L405.435 360.444L401.399 351.725L412.464 345.337Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
323
+ <path d="M412.464 340.723L427.564 343.053L431.602 351.771L420.536 358.16L405.435 355.829L401.399 347.111L412.464 340.723Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
324
+ <path d="M474.714 375.274L498.231 378.903L504.518 392.481L487.286 402.43L463.768 398.8L457.482 385.222L474.714 375.274Z" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
325
+ <path d="M474.714 369.728L498.231 373.357L504.518 386.935L487.286 396.884L463.768 393.254L457.482 379.677L474.714 369.728Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
326
+ <path d="M474.714 363.39L498.231 367.019L504.518 380.597L487.286 390.546L463.768 386.916L457.482 373.339L474.714 363.39Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
327
+ <path d="M474.714 357.052L498.231 360.681L504.518 374.259L487.286 384.208L463.768 380.578L457.482 367.001L474.714 357.052Z" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
328
+ <rect x="252" y="418.511" width="127" height="28" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
329
+ <rect x="1.73205" width="72.3126" height="72.3126" transform="matrix(0.866025 -0.5 0.866025 0.5 251.232 462.789)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
330
+ <rect x="1.73205" width="72.3126" height="72.3126" transform="matrix(0.866025 -0.5 0.866025 0.5 251.232 448.533)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
331
+ <mask id="path-329-inside-1_2105_1222" fill="white">
332
+ <path d="M251 432.412L315.357 395.255L379.713 432.412L315.357 469.568L251 432.412Z"/>
333
+ </mask>
334
+ <path d="M251 432.412L315.357 395.255L379.713 432.412L315.357 469.568L251 432.412Z" fill="#F8F7FF"/>
335
+ <path d="M251 432.412L249.268 431.412C248.311 431.964 248.311 432.859 249.268 433.412L251 432.412ZM315.357 395.255L317.089 394.255C316.132 393.703 314.581 393.703 313.625 394.255L315.357 395.255ZM379.713 432.412L381.445 433.412C382.402 432.859 382.402 431.964 381.445 431.412L379.713 432.412ZM315.357 469.568L313.625 470.568C314.581 471.12 316.132 471.12 317.089 470.568L315.357 469.568ZM251 432.412L252.732 433.412L317.089 396.255L315.357 395.255L313.625 394.255L249.268 431.412L251 432.412ZM315.357 395.255L313.625 396.255L377.981 433.412L379.713 432.412L381.445 431.412L317.089 394.255L315.357 395.255ZM379.713 432.412L377.981 431.412L313.625 468.568L315.357 469.568L317.089 470.568L381.445 433.412L379.713 432.412ZM315.357 469.568L317.089 468.568L252.732 431.412L251 432.412L249.268 433.412L313.625 470.568L315.357 469.568Z" fill="#5F52FF" mask="url(#path-329-inside-1_2105_1222)"/>
336
+ <mask id="path-331-inside-2_2105_1222" fill="white">
337
+ <path d="M251 418.156L315.357 381L379.713 418.156L315.357 455.313L251 418.156Z"/>
338
+ </mask>
339
+ <path d="M251 418.156L315.357 381L379.713 418.156L315.357 455.313L251 418.156Z" fill="#F8F7FF"/>
340
+ <path d="M251 418.156L249.268 417.156C248.311 417.709 248.311 418.604 249.268 419.156L251 418.156ZM315.357 381L317.089 380C316.132 379.448 314.581 379.448 313.625 380L315.357 381ZM379.713 418.156L381.445 419.156C382.402 418.604 382.402 417.709 381.445 417.156L379.713 418.156ZM315.357 455.313L313.625 456.313C314.581 456.865 316.132 456.865 317.089 456.313L315.357 455.313ZM251 418.156L252.732 419.156L317.089 382L315.357 381L313.625 380L249.268 417.156L251 418.156ZM315.357 381L313.625 382L377.981 419.156L379.713 418.156L381.445 417.156L317.089 380L315.357 381ZM379.713 418.156L377.981 417.156L313.625 454.313L315.357 455.313L317.089 456.313L381.445 419.156L379.713 418.156ZM315.357 455.313L317.089 454.313L252.732 417.156L251 418.156L249.268 419.156L313.625 456.313L315.357 455.313Z" fill="#5F52FF" mask="url(#path-331-inside-2_2105_1222)"/>
341
+ <mask id="path-333-inside-3_2105_1222" fill="white">
342
+ <path d="M264.506 410.358L315.356 381L366.207 410.358L315.356 439.717L264.506 410.358Z"/>
343
+ </mask>
344
+ <path d="M264.506 410.358L315.356 381L366.207 410.358L315.356 439.717L264.506 410.358Z" fill="#DAFFF4"/>
345
+ <path d="M264.506 410.358L262.774 409.358C261.817 409.911 261.817 410.806 262.774 411.358L264.506 410.358ZM315.356 381L317.088 380C316.132 379.448 314.581 379.448 313.624 380L315.356 381ZM366.207 410.358L367.939 411.358C368.895 410.806 368.895 409.911 367.939 409.358L366.207 410.358ZM315.356 439.717L313.624 440.717C314.581 441.269 316.132 441.269 317.088 440.717L315.356 439.717ZM264.506 410.358L266.238 411.358L317.088 382L315.356 381L313.624 380L262.774 409.358L264.506 410.358ZM315.356 381L313.624 382L364.474 411.358L366.207 410.358L367.939 409.358L317.088 380L315.356 381ZM366.207 410.358L364.474 409.358L313.624 438.717L315.356 439.717L317.088 440.717L367.939 411.358L366.207 410.358ZM315.356 439.717L317.088 438.717L266.238 409.358L264.506 410.358L262.774 411.358L313.624 440.717L315.356 439.717Z" fill="#5F52FF" mask="url(#path-333-inside-3_2105_1222)"/>
346
+ <rect x="1.73205" width="72.4008" height="72.4008" transform="matrix(0.866025 -0.5 0.866025 0.5 534.232 625.366)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
347
+ <mask id="path-336-inside-4_2105_1222" fill="white">
348
+ <path d="M618.867 635.109L598.993 646.583L534.402 609.292L554.276 597.817L618.867 635.109ZM641.723 621.913L620.854 633.961L556.264 596.67L577.132 584.622L641.723 621.913ZM663.584 609.292L643.71 620.766L579.119 583.474L598.993 572L663.584 609.292Z"/>
349
+ </mask>
350
+ <path d="M618.867 635.109L598.993 646.583L534.402 609.292L554.276 597.817L618.867 635.109ZM641.723 621.913L620.854 633.961L556.264 596.67L577.132 584.622L641.723 621.913ZM663.584 609.292L643.71 620.766L579.119 583.474L598.993 572L663.584 609.292Z" fill="#F8F7FF"/>
351
+ <path d="M618.867 635.109L620.599 636.109C621.556 635.557 621.556 634.661 620.599 634.109L618.867 635.109ZM598.993 646.583L597.261 647.583C598.218 648.135 599.769 648.135 600.725 647.583L598.993 646.583ZM534.402 609.292L532.67 608.292C531.714 608.844 531.714 609.739 532.67 610.292L534.402 609.292ZM554.276 597.817L556.008 596.817C555.052 596.265 553.501 596.265 552.544 596.817L554.276 597.817ZM641.723 621.913L643.455 622.913C644.411 622.361 644.411 621.465 643.455 620.913L641.723 621.913ZM620.854 633.961L619.122 634.961C620.079 635.514 621.63 635.514 622.586 634.961L620.854 633.961ZM556.264 596.67L554.532 595.67C553.575 596.222 553.575 597.118 554.532 597.67L556.264 596.67ZM577.132 584.622L578.864 583.622C577.907 583.069 576.356 583.069 575.4 583.622L577.132 584.622ZM663.584 609.292L665.316 610.292C666.273 609.739 666.273 608.844 665.316 608.292L663.584 609.292ZM643.71 620.766L641.978 621.766C642.935 622.318 644.486 622.318 645.442 621.766L643.71 620.766ZM579.119 583.474L577.387 582.474C576.431 583.026 576.431 583.922 577.387 584.474L579.119 583.474ZM598.993 572L600.725 571C599.769 570.448 598.218 570.448 597.261 571L598.993 572ZM618.867 635.109L617.135 634.109L597.261 645.583L598.993 646.583L600.725 647.583L620.599 636.109L618.867 635.109ZM598.993 646.583L600.725 645.583L536.134 608.292L534.402 609.292L532.67 610.292L597.261 647.583L598.993 646.583ZM534.402 609.292L536.134 610.292L556.008 598.817L554.276 597.817L552.544 596.817L532.67 608.292L534.402 609.292ZM554.276 597.817L552.544 598.817L617.135 636.109L618.867 635.109L620.599 634.109L556.008 596.817L554.276 597.817ZM641.723 621.913L639.991 620.913L619.122 632.961L620.854 633.961L622.586 634.961L643.455 622.913L641.723 621.913ZM620.854 633.961L622.586 632.961L557.996 595.67L556.264 596.67L554.532 597.67L619.122 634.961L620.854 633.961ZM556.264 596.67L557.996 597.67L578.864 585.622L577.132 584.622L575.4 583.622L554.532 595.67L556.264 596.67ZM577.132 584.622L575.4 585.622L639.991 622.913L641.723 621.913L643.455 620.913L578.864 583.622L577.132 584.622ZM663.584 609.292L661.852 608.292L641.978 619.766L643.71 620.766L645.442 621.766L665.316 610.292L663.584 609.292ZM643.71 620.766L645.442 619.766L580.851 582.474L579.119 583.474L577.387 584.474L641.978 621.766L643.71 620.766ZM579.119 583.474L580.851 584.474L600.725 573L598.993 572L597.261 571L577.387 582.474L579.119 583.474ZM598.993 572L597.261 573L661.852 610.292L663.584 609.292L665.316 608.292L600.725 571L598.993 572Z" fill="#5F52FF" mask="url(#path-336-inside-4_2105_1222)"/>
352
+ <mask id="path-338-inside-5_2105_1222" fill="white">
353
+ <path d="M618.867 620.109L598.993 631.583L534.402 594.292L554.276 582.817L618.867 620.109ZM641.723 606.913L620.854 618.961L556.264 581.67L577.132 569.622L641.723 606.913ZM663.584 594.292L643.71 605.766L579.119 568.474L598.993 557L663.584 594.292Z"/>
354
+ </mask>
355
+ <path d="M618.867 620.109L598.993 631.583L534.402 594.292L554.276 582.817L618.867 620.109ZM641.723 606.913L620.854 618.961L556.264 581.67L577.132 569.622L641.723 606.913ZM663.584 594.292L643.71 605.766L579.119 568.474L598.993 557L663.584 594.292Z" fill="#F8F7FF"/>
356
+ <path d="M618.867 620.109L620.599 621.109C621.556 620.557 621.556 619.661 620.599 619.109L618.867 620.109ZM598.993 631.583L597.261 632.583C598.218 633.135 599.769 633.135 600.725 632.583L598.993 631.583ZM534.402 594.292L532.67 593.292C531.714 593.844 531.714 594.739 532.67 595.292L534.402 594.292ZM554.276 582.817L556.008 581.817C555.052 581.265 553.501 581.265 552.544 581.817L554.276 582.817ZM641.723 606.913L643.455 607.913C643.914 607.648 644.172 607.288 644.172 606.913C644.172 606.538 643.914 606.178 643.455 605.913L641.723 606.913ZM620.854 618.961L619.122 619.961C620.079 620.514 621.63 620.514 622.586 619.961L620.854 618.961ZM556.264 581.67L554.532 580.67C553.575 581.222 553.575 582.118 554.532 582.67L556.264 581.67ZM577.132 569.622L578.864 568.622C577.907 568.069 576.356 568.069 575.4 568.622L577.132 569.622ZM663.584 594.292L665.316 595.292C666.273 594.739 666.273 593.844 665.316 593.292L663.584 594.292ZM643.71 605.766L641.978 606.766C642.935 607.318 644.486 607.318 645.442 606.766L643.71 605.766ZM579.119 568.474L577.387 567.474C576.431 568.026 576.431 568.922 577.387 569.474L579.119 568.474ZM598.993 557L600.725 556C599.769 555.448 598.218 555.448 597.261 556L598.993 557ZM618.867 620.109L617.135 619.109L597.261 630.583L598.993 631.583L600.725 632.583L620.599 621.109L618.867 620.109ZM598.993 631.583L600.725 630.583L536.134 593.292L534.402 594.292L532.67 595.292L597.261 632.583L598.993 631.583ZM534.402 594.292L536.134 595.292L556.008 583.817L554.276 582.817L552.544 581.817L532.67 593.292L534.402 594.292ZM554.276 582.817L552.544 583.817L617.135 621.109L618.867 620.109L620.599 619.109L556.008 581.817L554.276 582.817ZM641.723 606.913L639.991 605.913L619.122 617.961L620.854 618.961L622.586 619.961L643.455 607.913L641.723 606.913ZM620.854 618.961L622.586 617.961L557.996 580.67L556.264 581.67L554.532 582.67L619.122 619.961L620.854 618.961ZM556.264 581.67L557.996 582.67L578.864 570.622L577.132 569.622L575.4 568.622L554.532 580.67L556.264 581.67ZM577.132 569.622L575.4 570.622L639.991 607.913L641.723 606.913L643.455 605.913L578.864 568.622L577.132 569.622ZM663.584 594.292L661.852 593.292L641.978 604.766L643.71 605.766L645.442 606.766L665.316 595.292L663.584 594.292ZM643.71 605.766L645.442 604.766L580.851 567.474L579.119 568.474L577.387 569.474L641.978 606.766L643.71 605.766ZM579.119 568.474L580.851 569.474L600.725 558L598.993 557L597.261 556L577.387 567.474L579.119 568.474ZM598.993 557L597.261 558L661.852 595.292L663.584 594.292L665.316 593.292L600.725 556L598.993 557Z" fill="#5F52FF" mask="url(#path-338-inside-5_2105_1222)"/>
357
+ <mask id="path-340-inside-6_2105_1222" fill="white">
358
+ <path d="M618.867 605.109L598.993 616.583L534.402 579.292L554.276 567.817L618.867 605.109ZM641.723 591.913L620.854 603.961L556.264 566.67L577.132 554.622L641.723 591.913ZM663.584 579.292L643.71 590.766L579.119 553.474L598.993 542L663.584 579.292Z"/>
359
+ </mask>
360
+ <path d="M618.867 605.109L598.993 616.583L534.402 579.292L554.276 567.817L618.867 605.109ZM641.723 591.913L620.854 603.961L556.264 566.67L577.132 554.622L641.723 591.913ZM663.584 579.292L643.71 590.766L579.119 553.474L598.993 542L663.584 579.292Z" fill="#DAFFF4"/>
361
+ <path d="M618.867 605.109L620.599 606.109C621.058 605.844 621.316 605.484 621.316 605.109C621.316 604.734 621.058 604.374 620.599 604.109L618.867 605.109ZM598.993 616.583L597.261 617.583C598.218 618.135 599.769 618.135 600.725 617.583L598.993 616.583ZM534.402 579.292L532.67 578.292C531.714 578.844 531.714 579.739 532.67 580.292L534.402 579.292ZM554.276 567.817L556.008 566.817C555.052 566.265 553.501 566.265 552.544 566.817L554.276 567.817ZM641.723 591.913L643.455 592.913C644.411 592.361 644.411 591.465 643.455 590.913L641.723 591.913ZM620.854 603.961L619.122 604.961C620.079 605.514 621.63 605.514 622.586 604.961L620.854 603.961ZM556.264 566.67L554.532 565.67C553.575 566.222 553.575 567.118 554.532 567.67L556.264 566.67ZM577.132 554.622L578.864 553.622C577.907 553.069 576.356 553.069 575.4 553.622L577.132 554.622ZM663.584 579.292L665.316 580.292C665.775 580.026 666.033 579.667 666.033 579.292C666.033 578.916 665.775 578.557 665.316 578.292L663.584 579.292ZM643.71 590.766L641.978 591.766C642.935 592.318 644.486 592.318 645.442 591.766L643.71 590.766ZM579.119 553.474L577.387 552.474C576.431 553.026 576.431 553.922 577.387 554.474L579.119 553.474ZM598.993 542L600.725 541C599.769 540.448 598.218 540.448 597.261 541L598.993 542ZM618.867 605.109L617.135 604.109L597.261 615.583L598.993 616.583L600.725 617.583L620.599 606.109L618.867 605.109ZM598.993 616.583L600.725 615.583L536.134 578.292L534.402 579.292L532.67 580.292L597.261 617.583L598.993 616.583ZM534.402 579.292L536.134 580.292L556.008 568.817L554.276 567.817L552.544 566.817L532.67 578.292L534.402 579.292ZM554.276 567.817L552.544 568.817L617.135 606.109L618.867 605.109L620.599 604.109L556.008 566.817L554.276 567.817ZM641.723 591.913L639.991 590.913L619.122 602.961L620.854 603.961L622.586 604.961L643.455 592.913L641.723 591.913ZM620.854 603.961L622.586 602.961L557.996 565.67L556.264 566.67L554.532 567.67L619.122 604.961L620.854 603.961ZM556.264 566.67L557.996 567.67L578.864 555.622L577.132 554.622L575.4 553.622L554.532 565.67L556.264 566.67ZM577.132 554.622L575.4 555.622L639.991 592.913L641.723 591.913L643.455 590.913L578.864 553.622L577.132 554.622ZM663.584 579.292L661.852 578.292L641.978 589.766L643.71 590.766L645.442 591.766L665.316 580.292L663.584 579.292ZM643.71 590.766L645.442 589.766L580.851 552.474L579.119 553.474L577.387 554.474L641.978 591.766L643.71 590.766ZM579.119 553.474L580.851 554.474L600.725 543L598.993 542L597.261 541L577.387 552.474L579.119 553.474ZM598.993 542L597.261 543L661.852 580.292L663.584 579.292L665.316 578.292L600.725 541L598.993 542Z" fill="#5F52FF" mask="url(#path-340-inside-6_2105_1222)"/>
362
+ <rect width="188.633" height="75.32" transform="matrix(0.866025 -0.5 0.866025 0.5 755 392.279)" fill="#7B70FF" fill-opacity="0.15"/>
363
+ <rect x="0.866025" width="187.633" height="74.32" transform="matrix(0.866025 -0.5 0.866025 0.5 755.116 392.712)" stroke="#7B70FF" stroke-opacity="0.5" stroke-linejoin="round"/>
364
+ <path d="M921.118 251.41L922.509 252.213L922.509 258.692L925.758 260.568L925.758 262.009L921.118 259.33L921.118 251.41ZM928.744 263.864C928.223 263.564 927.769 263.173 927.382 262.693C927 262.209 926.708 261.685 926.505 261.12C926.308 260.552 926.21 259.981 926.21 259.409C926.21 258.837 926.308 258.381 926.505 258.04C926.708 257.703 927 257.516 927.382 257.479C927.769 257.446 928.223 257.58 928.744 257.88C929.271 258.185 929.725 258.575 930.106 259.052C930.493 259.532 930.786 260.057 930.982 260.625C931.179 261.193 931.278 261.763 931.278 262.335C931.278 262.907 931.179 263.364 930.982 263.705C930.786 264.039 930.493 264.226 930.106 264.266C929.725 264.303 929.271 264.169 928.744 263.864ZM928.744 262.632C929.023 262.794 929.252 262.852 929.43 262.808C929.614 262.768 929.747 262.643 929.83 262.434C929.919 262.222 929.963 261.936 929.963 261.576C929.963 261.217 929.919 260.88 929.83 260.564C929.747 260.253 929.614 259.974 929.43 259.728C929.252 259.479 929.023 259.274 928.744 259.112C928.471 258.955 928.242 258.896 928.058 258.936C927.88 258.973 927.747 259.098 927.658 259.31C927.569 259.523 927.524 259.809 927.524 260.168C927.524 260.528 927.569 260.865 927.658 261.18C927.747 261.488 927.88 261.767 928.058 262.016C928.242 262.269 928.471 262.475 928.744 262.632ZM934.334 267.092C933.826 266.799 933.384 266.415 933.01 265.942C932.641 265.466 932.359 264.947 932.162 264.386C931.965 263.818 931.866 263.247 931.866 262.675C931.866 262.103 931.965 261.647 932.162 261.306C932.359 260.965 932.641 260.772 933.01 260.728C933.384 260.688 933.826 260.815 934.334 261.108C935.013 261.5 935.553 262.01 935.953 262.637C936.353 263.264 936.592 263.937 936.668 264.655L935.372 263.907C935.315 263.574 935.194 263.269 935.01 262.994C934.832 262.716 934.607 262.498 934.334 262.34C934.08 262.193 933.867 262.144 933.696 262.191C933.524 262.232 933.394 262.358 933.305 262.571C933.222 262.787 933.181 263.075 933.181 263.434C933.181 263.794 933.222 264.129 933.305 264.441C933.394 264.749 933.524 265.026 933.696 265.271C933.867 265.517 934.08 265.713 934.334 265.86C934.62 266.025 934.851 266.067 935.029 265.986C935.213 265.909 935.328 265.715 935.372 265.403L936.668 266.151C936.592 266.804 936.35 267.222 935.944 267.405C935.537 267.581 935.001 267.477 934.334 267.092ZM938.922 269.741C938.376 269.425 937.937 269.022 937.607 268.531C937.277 268.032 937.112 267.508 937.112 266.958C937.112 266.62 937.178 266.377 937.312 266.226C937.452 266.072 937.661 266.003 937.941 266.017C938.226 266.036 938.595 266.131 939.046 266.303L940.456 266.831L940.456 266.534C940.456 266.278 940.389 266.048 940.255 265.847C940.122 265.645 939.903 265.456 939.598 265.28C939.312 265.115 939.081 265.051 938.903 265.088C938.731 265.128 938.642 265.286 938.636 265.561L937.35 264.818C937.356 264.177 937.566 263.81 937.979 263.718C938.398 263.623 938.935 263.764 939.589 264.142C940.294 264.549 940.824 265.005 941.18 265.511C941.542 266.021 941.723 266.547 941.723 267.09L941.723 271.226L940.494 270.516L940.494 269.878C940.29 270.032 940.059 270.096 939.798 270.071C939.544 270.041 939.252 269.931 938.922 269.741ZM939.246 268.85C939.462 268.974 939.659 269.044 939.836 269.059C940.02 269.077 940.17 269.024 940.284 268.899C940.398 268.775 940.456 268.569 940.456 268.283L940.456 267.799L939.293 267.403C938.988 267.293 938.769 267.255 938.636 267.288C938.503 267.313 938.436 267.44 938.436 267.667C938.436 267.887 938.503 268.102 938.636 268.311C938.776 268.516 938.979 268.696 939.246 268.85ZM942.588 263.805L943.884 264.553L943.884 272.473L942.588 271.725L942.588 263.805ZM921.042 264.566L922.3 265.292L922.3 266.106C922.465 265.908 922.668 265.794 922.909 265.765C923.151 265.736 923.44 265.818 923.776 266.013C924.119 266.21 924.415 266.473 924.662 266.799C924.91 267.125 925.1 267.499 925.234 267.921C925.418 267.705 925.647 267.58 925.92 267.547C926.199 267.51 926.517 267.595 926.872 267.8C927.215 267.998 927.511 268.26 927.758 268.586C928.012 268.916 928.206 269.292 928.339 269.714C928.473 270.136 928.539 270.581 928.539 271.051L928.539 274.615L927.244 273.867L927.244 270.478C927.244 270.126 927.177 269.806 927.044 269.516C926.91 269.226 926.707 269.003 926.434 268.845C926.161 268.687 925.926 268.662 925.729 268.768C925.539 268.878 925.443 269.186 925.443 269.692L925.443 272.827L924.148 272.079L924.148 268.691C924.148 268.339 924.078 268.016 923.938 267.723C923.805 267.433 923.605 267.211 923.338 267.057C923.059 266.896 922.82 266.869 922.624 266.975C922.433 267.085 922.338 267.393 922.338 267.899L922.338 271.034L921.042 270.286L921.042 264.566ZM931.803 276.631C931.295 276.338 930.851 275.953 930.47 275.476C930.095 274.996 929.809 274.475 929.612 273.914C929.415 273.346 929.317 272.775 929.317 272.203C929.317 271.631 929.415 271.175 929.612 270.834C929.809 270.493 930.095 270.302 930.47 270.262C930.851 270.225 931.295 270.354 931.803 270.647C932.318 270.944 932.762 271.329 933.137 271.802C933.512 272.268 933.794 272.794 933.985 273.38C934.182 273.963 934.28 274.57 934.28 275.201L934.28 275.531L930.603 273.408C930.635 273.712 930.701 273.996 930.803 274.26C930.911 274.521 931.048 274.757 931.213 274.97C931.384 275.179 931.581 275.348 931.803 275.476C932.083 275.637 932.315 275.709 932.499 275.69C932.689 275.668 932.835 275.569 932.937 275.393L934.194 276.119C934.029 276.603 933.737 276.897 933.318 276.999C932.905 277.098 932.4 276.976 931.803 276.631ZM932.985 273.749C932.921 273.316 932.788 272.931 932.585 272.594C932.381 272.249 932.121 271.985 931.803 271.802C931.479 271.615 931.216 271.576 931.013 271.686C930.809 271.789 930.676 272.02 930.613 272.379L932.985 273.749ZM935.062 272.66L936.319 273.386L936.319 274.2C936.484 274.002 936.688 273.889 936.929 273.859C937.17 273.83 937.459 273.912 937.796 274.107C938.139 274.305 938.434 274.567 938.682 274.893C938.93 275.22 939.12 275.594 939.253 276.015C939.438 275.799 939.666 275.674 939.939 275.641C940.219 275.605 940.536 275.689 940.892 275.894C941.235 276.092 941.53 276.354 941.778 276.681C942.032 277.011 942.226 277.387 942.359 277.808C942.492 278.23 942.559 278.675 942.559 279.145L942.559 282.709L941.263 281.961L941.263 278.573C941.263 278.221 941.197 277.9 941.063 277.61C940.93 277.321 940.727 277.097 940.454 276.939C940.181 276.782 939.946 276.756 939.749 276.862C939.558 276.972 939.463 277.28 939.463 277.786L939.463 280.921L938.167 280.173L938.167 276.785C938.167 276.433 938.098 276.111 937.958 275.817C937.824 275.528 937.624 275.306 937.358 275.152C937.078 274.99 936.84 274.963 936.643 275.069C936.453 275.179 936.357 275.487 936.357 275.993L936.357 279.128L935.062 278.38L935.062 272.66ZM945.871 284.753C945.35 284.452 944.896 284.062 944.508 283.581C944.127 283.097 943.835 282.573 943.632 282.008C943.435 281.44 943.337 280.87 943.337 280.298C943.337 279.726 943.435 279.269 943.632 278.928C943.835 278.591 944.127 278.404 944.508 278.367C944.896 278.334 945.35 278.468 945.871 278.769C946.398 279.073 946.852 279.464 947.233 279.94C947.62 280.421 947.912 280.945 948.109 281.513C948.306 282.082 948.405 282.652 948.405 283.224C948.405 283.796 948.306 284.252 948.109 284.593C947.912 284.927 947.62 285.114 947.233 285.154C946.852 285.191 946.398 285.057 945.871 284.753ZM945.871 283.521C946.15 283.682 946.379 283.741 946.557 283.697C946.741 283.656 946.874 283.532 946.957 283.323C947.046 283.11 947.09 282.824 947.09 282.465C947.09 282.105 947.046 281.768 946.957 281.453C946.874 281.141 946.741 280.862 946.557 280.617C946.379 280.367 946.15 280.162 945.871 280.001C945.598 279.843 945.369 279.784 945.185 279.825C945.007 279.861 944.874 279.986 944.785 280.199C944.696 280.411 944.651 280.697 944.651 281.057C944.651 281.416 944.696 281.753 944.785 282.069C944.874 282.377 945.007 282.655 945.185 282.905C945.369 283.158 945.598 283.363 945.871 283.521ZM949.184 280.814L950.441 281.54L950.441 282.53C950.6 282.247 950.803 282.097 951.051 282.079C951.299 282.053 951.588 282.135 951.918 282.326L952.318 282.557L952.318 283.932L951.861 283.668C951.569 283.499 951.321 283.411 951.118 283.404C950.914 283.389 950.756 283.477 950.641 283.668C950.533 283.855 950.479 284.161 950.479 284.587L950.479 287.282L949.184 286.534L949.184 280.814ZM952.835 289.632L953.635 290.094C953.781 290.178 953.896 290.226 953.978 290.237C954.067 290.259 954.137 290.248 954.188 290.204C954.239 290.16 954.289 290.086 954.34 289.984L954.474 289.665L952.597 282.784L953.997 283.593L955.178 288.543L956.322 284.935L957.712 285.738L955.712 290.875C955.598 291.168 955.474 291.39 955.34 291.54C955.207 291.69 955.032 291.769 954.816 291.777C954.607 291.795 954.34 291.711 954.016 291.524L952.835 290.842L952.835 289.632ZM923.29 284.916C922.592 284.513 922.049 284.02 921.661 283.437C921.274 282.854 921.061 282.236 921.023 281.583L922.3 282.32C922.331 282.639 922.436 282.92 922.614 283.162C922.798 283.407 923.04 283.616 923.338 283.789C923.687 283.99 923.973 284.056 924.195 283.987C924.424 283.928 924.538 283.649 924.538 283.151L924.538 282.458C924.367 282.615 924.154 282.69 923.9 282.683C923.652 282.672 923.363 282.571 923.033 282.381C922.57 282.113 922.173 281.759 921.842 281.319C921.512 280.879 921.261 280.393 921.09 279.862C920.918 279.323 920.833 278.774 920.833 278.217C920.833 277.652 920.918 277.203 921.09 276.869C921.261 276.528 921.512 276.329 921.842 276.27C922.173 276.211 922.57 276.316 923.033 276.583C923.376 276.782 923.675 277.027 923.929 277.32C924.189 277.617 924.405 277.955 924.576 278.332L924.576 277.606L925.834 278.332L925.834 283.899C925.834 284.449 925.723 284.843 925.501 285.081C925.278 285.327 924.977 285.431 924.596 285.395C924.214 285.358 923.779 285.198 923.29 284.916ZM923.357 281.391C923.624 281.545 923.846 281.603 924.024 281.566C924.202 281.522 924.335 281.401 924.424 281.204C924.513 280.998 924.557 280.72 924.557 280.368C924.557 280.016 924.513 279.685 924.424 279.377C924.335 279.069 924.202 278.794 924.024 278.552C923.846 278.303 923.624 278.101 923.357 277.947C923.084 277.79 922.859 277.733 922.681 277.777C922.503 277.814 922.37 277.935 922.281 278.14C922.198 278.349 922.157 278.629 922.157 278.982C922.157 279.333 922.198 279.662 922.281 279.966C922.37 280.267 922.503 280.542 922.681 280.791C922.859 281.033 923.084 281.233 923.357 281.391ZM926.819 278.901L928.077 279.627L928.077 280.617C928.236 280.335 928.439 280.185 928.687 280.166C928.934 280.141 929.223 280.223 929.553 280.414L929.954 280.645L929.954 282.02L929.496 281.756C929.204 281.587 928.956 281.499 928.753 281.492C928.55 281.477 928.391 281.565 928.277 281.756C928.169 281.943 928.115 282.249 928.115 282.674L928.115 285.369L926.819 284.621L926.819 278.901ZM932.233 287.879C931.687 287.564 931.249 287.16 930.918 286.669C930.588 286.17 930.423 285.646 930.423 285.096C930.423 284.759 930.49 284.515 930.623 284.364C930.763 284.21 930.972 284.141 931.252 284.155C931.538 284.174 931.906 284.269 932.357 284.441L933.767 284.969L933.767 284.672C933.767 284.416 933.7 284.187 933.567 283.985C933.433 283.783 933.214 283.594 932.909 283.418C932.624 283.253 932.392 283.189 932.214 283.226C932.042 283.266 931.954 283.424 931.947 283.699L930.661 282.956C930.667 282.315 930.877 281.948 931.29 281.856C931.709 281.761 932.246 281.902 932.9 282.28C933.605 282.687 934.135 283.143 934.491 283.649C934.853 284.159 935.034 284.685 935.034 285.228L935.034 289.364L933.805 288.654L933.805 288.016C933.602 288.17 933.37 288.235 933.109 288.209C932.855 288.18 932.563 288.07 932.233 287.879ZM932.557 286.988C932.773 287.113 932.97 287.182 933.147 287.197C933.332 287.215 933.481 287.162 933.595 287.037C933.71 286.913 933.767 286.707 933.767 286.421L933.767 285.937L932.604 285.541C932.3 285.431 932.081 285.393 931.947 285.426C931.814 285.452 931.747 285.578 931.747 285.805C931.747 286.025 931.814 286.24 931.947 286.449C932.087 286.654 932.29 286.834 932.557 286.988ZM938.7 285.629C939.163 285.896 939.56 286.254 939.891 286.701C940.221 287.148 940.472 287.649 940.643 288.203C940.815 288.749 940.9 289.312 940.9 289.891C940.9 290.463 940.815 290.927 940.643 291.283C940.472 291.631 940.221 291.842 939.891 291.915C939.56 291.981 939.163 291.88 938.7 291.613C938.37 291.422 938.077 291.184 937.823 290.898C937.576 290.608 937.366 290.282 937.195 289.919L937.195 292.812L935.899 292.064L935.899 284.144L937.157 284.87L937.157 285.629C937.328 285.442 937.541 285.344 937.795 285.337C938.049 285.33 938.351 285.427 938.7 285.629ZM938.376 286.674C938.109 286.52 937.887 286.465 937.709 286.509C937.531 286.545 937.398 286.67 937.309 286.883C937.22 287.095 937.176 287.381 937.176 287.741C937.176 288.1 937.22 288.437 937.309 288.753C937.398 289.061 937.531 289.339 937.709 289.589C937.887 289.838 938.109 290.04 938.376 290.194C938.649 290.351 938.875 290.408 939.052 290.364C939.23 290.32 939.36 290.194 939.443 289.985C939.532 289.772 939.576 289.486 939.576 289.127C939.576 288.767 939.532 288.43 939.443 288.115C939.36 287.803 939.23 287.526 939.052 287.284C938.875 287.035 938.649 286.831 938.376 286.674ZM941.676 285.279L942.972 286.027L942.972 288.953C943.156 288.795 943.375 288.713 943.629 288.706C943.883 288.698 944.172 288.788 944.496 288.975C944.871 289.191 945.188 289.466 945.449 289.8C945.715 290.13 945.916 290.506 946.049 290.928C946.189 291.353 946.258 291.804 946.258 292.281L946.258 295.845L944.972 295.102L944.972 291.714C944.972 291.355 944.899 291.03 944.753 290.741C944.607 290.444 944.375 290.203 944.058 290.02C943.88 289.917 943.709 289.866 943.543 289.866C943.385 289.862 943.248 289.934 943.134 290.081C943.026 290.231 942.972 290.475 942.972 290.812L942.972 293.947L941.676 293.199L941.676 285.279ZM949.23 297.692C948.525 297.285 947.973 296.805 947.573 296.251C947.179 295.701 946.963 295.067 946.925 294.348L948.182 295.074C948.214 295.445 948.319 295.755 948.497 296.004C948.681 296.257 948.941 296.481 949.278 296.675C949.551 296.833 949.77 296.904 949.935 296.889C950.1 296.867 950.183 296.757 950.183 296.559C950.183 296.42 950.158 296.295 950.107 296.185C950.056 296.075 949.948 295.94 949.783 295.778C949.624 295.613 949.376 295.404 949.04 295.151C948.532 294.755 948.132 294.392 947.839 294.062C947.547 293.732 947.338 293.417 947.211 293.116C947.09 292.819 947.03 292.506 947.03 292.176C947.03 291.633 947.22 291.318 947.601 291.23C947.982 291.142 948.494 291.283 949.135 291.653C949.846 292.064 950.389 292.554 950.764 293.122C951.139 293.683 951.332 294.271 951.345 294.887L950.145 294.194C950.138 293.846 950.043 293.553 949.859 293.314C949.675 293.076 949.434 292.871 949.135 292.698C948.887 292.555 948.684 292.493 948.525 292.511C948.373 292.533 948.297 292.64 948.297 292.83C948.297 292.97 948.328 293.102 948.392 293.226C948.462 293.347 948.579 293.489 948.744 293.65C948.916 293.808 949.167 294.011 949.497 294.26C949.999 294.645 950.392 295.001 950.678 295.327C950.964 295.646 951.167 295.958 951.288 296.262C951.409 296.559 951.469 296.873 951.469 297.203C951.469 297.768 951.263 298.088 950.85 298.165C950.443 298.239 949.903 298.081 949.23 297.692Z" fill="#5F52FF"/>
365
+ <rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 885.779 335.866)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
366
+ <rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 885.779 327.866)" fill="#DAF4FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
367
+ <rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 885.779 319.866)" fill="#DAF4FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
368
+ <rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 885.779 311.866)" fill="#DAF4FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
369
+ <path d="M921.986 315V330" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
370
+ <rect x="1.73205" width="23.9521" height="23.9521" transform="matrix(0.866025 -0.5 0.866025 0.5 899.677 303.842)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
371
+ <rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 834.779 364.866)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
372
+ <rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 834.779 356.866)" fill="#F9F1DB" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
373
+ <path d="M870.986 360V375" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
374
+ <rect x="1.73205" width="23.9521" height="23.9521" transform="matrix(0.866025 -0.5 0.866025 0.5 848.677 348.842)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
375
+ <rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 782.779 394.866)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
376
+ <rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 782.779 386.866)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
377
+ <rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 782.779 378.866)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
378
+ <rect x="1.73205" width="40" height="40" transform="matrix(0.866025 -0.5 0.866025 0.5 782.779 370.866)" fill="#DAFFF4" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
379
+ <path d="M818.986 374V389" stroke="#5F52FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
380
+ <rect x="1.73205" width="23.9521" height="23.9521" transform="matrix(0.866025 -0.5 0.866025 0.5 796.677 362.842)" fill="#FFD9E0" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
381
+ <path d="M49.9563 507.729C49.3657 508.07 48.7592 508.314 48.1368 508.46C47.5081 508.603 46.8889 508.642 46.2792 508.576C45.6759 508.506 45.1138 508.325 44.5931 508.031L45.9648 507.239C46.4539 507.507 46.9429 507.613 47.4319 507.558C47.9145 507.5 48.3972 507.331 48.8799 507.052C49.28 506.821 49.5213 506.59 49.6039 506.359C49.6864 506.128 49.5816 505.929 49.2895 505.76C49.1244 505.665 48.9434 505.611 48.7465 505.6C48.556 505.586 48.2956 505.622 47.9654 505.71C47.6351 505.791 47.1969 505.941 46.6507 506.161C45.9648 506.44 45.3552 506.634 44.8217 506.744C44.2882 506.847 43.7928 506.869 43.3356 506.81C42.8847 506.748 42.4528 506.598 42.04 506.36C41.659 506.139 41.4272 505.885 41.3446 505.595C41.2684 505.302 41.3414 504.995 41.5637 504.676C41.7923 504.354 42.167 504.042 42.6878 503.741C43.5833 503.224 44.4724 502.946 45.3552 502.905C46.2379 502.865 47.054 503.047 47.8034 503.45L46.4602 504.225C46.0347 504.009 45.606 503.916 45.1742 503.945C44.7423 503.967 44.2882 504.115 43.8119 504.39C43.4562 504.596 43.2403 504.801 43.1641 505.006C43.0942 505.208 43.1768 505.377 43.4118 505.512C43.5833 505.611 43.7643 505.672 43.9548 505.694C44.1517 505.712 44.4057 505.683 44.7169 505.606C45.0344 505.525 45.4504 505.384 45.9648 505.182C46.746 504.863 47.416 504.649 47.9749 504.539C48.5401 504.425 49.0323 504.401 49.4515 504.467C49.877 504.53 50.2802 504.671 50.6613 504.891C51.1059 505.148 51.3662 505.437 51.4424 505.76C51.5187 506.075 51.4266 506.403 51.1662 506.744C50.9122 507.082 50.5089 507.41 49.9563 507.729ZM56.1329 504.163C55.6248 504.456 55.0691 504.649 54.4658 504.74C53.8624 504.825 53.2686 504.812 52.6844 504.702C52.0937 504.588 51.5507 504.388 51.0554 504.102C50.56 503.816 50.2139 503.503 50.017 503.162C49.8201 502.821 49.7979 502.478 49.9503 502.133C50.1091 501.785 50.4425 501.464 50.9506 501.171C51.465 500.874 52.0207 500.681 52.6177 500.593C53.2083 500.502 53.8053 500.52 54.4086 500.648C55.0119 500.769 55.5867 500.988 56.1329 501.303L56.4187 501.468L52.7415 503.591C53.021 503.716 53.3004 503.8 53.5798 503.844C53.8593 503.881 54.1324 503.881 54.3991 503.844C54.6658 503.8 54.9103 503.714 55.1326 503.585C55.4121 503.424 55.5899 503.259 55.6661 503.09C55.7423 502.914 55.7296 502.738 55.628 502.562L56.8855 501.836C57.222 502.221 57.33 502.621 57.2093 503.035C57.0887 503.442 56.7299 503.818 56.1329 504.163ZM54.2276 501.699C53.8212 501.538 53.4211 501.461 53.0273 501.468C52.6272 501.472 52.2684 501.565 51.9508 501.748C51.6269 501.935 51.4618 502.144 51.4555 502.375C51.4428 502.603 51.5761 502.834 51.8556 503.068L54.2276 501.699ZM54.7045 499.136L55.9619 498.41L56.8193 498.905C56.6542 498.626 56.6256 498.375 56.7336 498.151C56.8352 497.924 57.0511 497.715 57.3813 497.524L57.7814 497.293L58.9722 497.981L58.515 498.245C58.2228 498.413 58.0228 498.584 57.9148 498.756C57.8005 498.925 57.7973 499.106 57.9053 499.301C58.0132 499.488 58.2514 499.688 58.6198 499.9L60.9537 501.248L59.6581 501.996L54.7045 499.136ZM58.4985 496.945L59.8989 496.137L64.843 497.583L62.3186 494.74L63.7094 493.937L66.8054 497.869L65.3193 498.727L58.4985 496.945ZM64.6205 493.411L65.9161 492.663L70.8697 495.523L69.5742 496.271L64.6205 493.411ZM62.7152 492.311L64.0108 491.563L65.1635 492.228L63.8679 492.976L62.7152 492.311ZM74.6258 493.486C74.1177 493.779 73.5652 493.97 72.9682 494.058C72.3712 494.139 71.7806 494.124 71.1963 494.014C70.6057 493.9 70.0627 493.701 69.5673 493.415C69.0719 493.129 68.7258 492.815 68.5289 492.474C68.3321 492.133 68.3067 491.792 68.4527 491.451C68.6052 491.106 68.9354 490.787 69.4435 490.494C70.123 490.102 70.8343 489.889 71.5774 489.856C72.3204 489.823 73.0222 489.953 73.6827 490.247L72.3871 490.995C72.0695 490.877 71.7457 490.83 71.4154 490.852C71.0852 490.866 70.7835 490.952 70.5104 491.11C70.2564 491.257 70.1071 491.416 70.0627 491.589C70.0119 491.757 70.0563 491.933 70.196 492.117C70.3421 492.296 70.5707 492.476 70.8819 492.656C71.1931 492.835 71.5043 492.967 71.8155 493.052C72.1267 493.129 72.4315 493.154 72.73 493.129C73.0285 493.103 73.3048 493.017 73.5588 492.87C73.8446 492.705 73.997 492.525 74.0161 492.331C74.0415 492.133 73.9303 491.937 73.6827 491.743L74.9782 490.995C75.5054 491.387 75.7467 491.805 75.7022 492.249C75.6514 492.689 75.2926 493.101 74.6258 493.486ZM80.3188 490.199C79.8108 490.493 79.2551 490.685 78.6517 490.777C78.0484 490.861 77.4546 490.848 76.8703 490.738C76.2797 490.625 75.7367 490.425 75.2413 490.139C74.746 489.853 74.3998 489.539 74.203 489.198C74.0061 488.857 73.9839 488.514 74.1363 488.17C74.295 487.821 74.6285 487.501 75.1365 487.207C75.651 486.91 76.2067 486.718 76.8036 486.63C77.3943 486.538 77.9912 486.556 78.5946 486.685C79.1979 486.806 79.7727 487.024 80.3188 487.339L80.6046 487.504L76.9275 489.627C77.2069 489.752 77.4864 489.836 77.7658 489.88C78.0452 489.917 78.3183 489.917 78.5851 489.88C78.8518 489.836 79.0963 489.75 79.3186 489.622C79.598 489.46 79.7758 489.295 79.852 489.127C79.9283 488.951 79.9156 488.775 79.8139 488.599L81.0714 487.873C81.408 488.258 81.516 488.657 81.3953 489.072C81.2746 489.479 80.9158 489.855 80.3188 490.199ZM78.4136 487.735C78.0071 487.574 77.607 487.497 77.2133 487.504C76.8132 487.508 76.4543 487.601 76.1368 487.785C75.8129 487.972 75.6478 488.181 75.6414 488.412C75.6287 488.639 75.7621 488.87 76.0415 489.105L78.4136 487.735ZM79.5728 482.578L80.9636 481.775L83.6786 483.342L86.727 481.582L84.0121 480.015L85.4029 479.212L92.2618 483.172L90.871 483.975L87.9845 482.308L84.9361 484.068L87.8226 485.735L86.4317 486.538L79.5728 482.578ZM95.3809 481.503C94.8347 481.818 94.2663 481.996 93.6757 482.037C93.0787 482.073 92.5421 481.954 92.0658 481.679C91.7736 481.51 91.5958 481.331 91.5323 481.14C91.4688 480.942 91.5133 480.726 91.6657 480.491C91.8244 480.253 92.0912 479.981 92.4659 479.677L93.6281 478.72L93.3709 478.572C93.1486 478.443 92.9168 478.386 92.6755 478.401C92.4341 478.416 92.161 478.511 91.8562 478.687C91.5704 478.852 91.3989 479.021 91.3418 479.193C91.291 479.362 91.3831 479.518 91.618 479.661L90.332 480.403C89.7795 480.077 89.5667 479.712 89.6937 479.309C89.8208 478.898 90.2113 478.504 90.8655 478.126C91.5704 477.719 92.2309 477.488 92.8469 477.433C93.4693 477.374 94.0155 477.481 94.4855 477.752L98.0673 479.82L96.8384 480.53L96.2859 480.211C96.3177 480.464 96.2573 480.696 96.1049 480.909C95.9525 481.114 95.7112 481.312 95.3809 481.503ZM94.7712 480.777C94.9872 480.652 95.1459 480.517 95.2476 480.37C95.3555 480.22 95.3841 480.064 95.3333 479.903C95.2825 479.741 95.1332 479.589 94.8856 479.446L94.4664 479.204L93.5424 480.013C93.2947 480.222 93.1518 480.392 93.1137 480.524C93.0692 480.652 93.1454 480.773 93.3423 480.887C93.5328 480.997 93.7519 481.047 93.9996 481.036C94.2473 481.017 94.5045 480.931 94.7712 480.777ZM94.3602 476.24L95.6177 475.514L96.294 475.905C96.2369 475.659 96.2686 475.421 96.3893 475.19C96.5036 474.955 96.7291 474.741 97.0657 474.546C97.4404 474.33 97.8373 474.193 98.2564 474.134C98.6756 474.068 99.1011 474.083 99.533 474.178C99.9712 474.27 100.397 474.435 100.809 474.673L103.896 476.455L102.61 477.197L99.6759 475.503C99.3647 475.324 99.0471 475.225 98.7232 475.206C98.393 475.184 98.0691 475.265 97.7516 475.448C97.5737 475.551 97.4435 475.674 97.361 475.817C97.2784 475.953 97.2721 476.107 97.3419 476.279C97.4181 476.448 97.6023 476.616 97.8944 476.785L100.609 478.352L99.3139 479.1L94.3602 476.24ZM107.373 474.58C106.909 474.847 106.401 475.012 105.849 475.075C105.29 475.133 104.731 475.1 104.172 474.976C103.607 474.847 103.076 474.64 102.581 474.354C102.079 474.064 101.72 473.758 101.505 473.436C101.282 473.109 101.225 472.787 101.333 472.468C101.441 472.149 101.727 471.855 102.19 471.588C102.521 471.397 102.87 471.265 103.238 471.192C103.613 471.115 104 471.093 104.401 471.126L101.905 469.685L103.2 468.937L110.059 472.897L108.802 473.623L108.144 473.243C108.221 473.485 108.198 473.718 108.078 473.942C107.957 474.165 107.722 474.378 107.373 474.58ZM106.63 473.777C106.896 473.623 107.055 473.458 107.106 473.282C107.157 473.106 107.116 472.928 106.982 472.748C106.842 472.565 106.617 472.383 106.306 472.204C105.995 472.024 105.68 471.894 105.363 471.813C105.045 471.732 104.737 471.709 104.439 471.742C104.134 471.771 103.848 471.863 103.581 472.017C103.308 472.174 103.146 472.341 103.095 472.517C103.038 472.689 103.08 472.867 103.219 473.051C103.365 473.23 103.594 473.41 103.905 473.59C104.216 473.769 104.528 473.901 104.839 473.986C105.15 474.063 105.458 474.086 105.763 474.057C106.068 474.028 106.357 473.934 106.63 473.777ZM104.567 468.148L105.862 467.4L112.721 471.36L111.426 472.108L104.567 468.148ZM116.486 469.318C115.978 469.611 115.423 469.804 114.819 469.895C114.216 469.98 113.622 469.967 113.038 469.857C112.447 469.743 111.904 469.543 111.409 469.257C110.913 468.971 110.567 468.658 110.37 468.317C110.174 467.976 110.151 467.633 110.304 467.288C110.463 466.94 110.796 466.619 111.304 466.326C111.818 466.029 112.374 465.836 112.971 465.748C113.562 465.657 114.159 465.675 114.762 465.803C115.365 465.924 115.94 466.143 116.486 466.458L116.772 466.623L113.095 468.746C113.374 468.871 113.654 468.955 113.933 468.999C114.213 469.036 114.486 469.036 114.753 468.999C115.019 468.955 115.264 468.869 115.486 468.74C115.766 468.579 115.943 468.414 116.02 468.245C116.096 468.069 116.083 467.893 115.981 467.717L117.239 466.991C117.575 467.376 117.683 467.776 117.563 468.19C117.442 468.597 117.083 468.973 116.486 469.318ZM114.581 466.854C114.175 466.693 113.775 466.616 113.381 466.623C112.981 466.627 112.622 466.72 112.304 466.903C111.98 467.09 111.815 467.299 111.809 467.53C111.796 467.758 111.93 467.989 112.209 468.223L114.581 466.854ZM115.058 464.291L116.315 463.565L117.173 464.06C117.008 463.781 116.979 463.53 117.087 463.306C117.189 463.079 117.405 462.87 117.735 462.679L118.135 462.448L119.326 463.136L118.868 463.4C118.576 463.568 118.376 463.739 118.268 463.911C118.154 464.08 118.151 464.261 118.259 464.456C118.367 464.643 118.605 464.842 118.973 465.055L121.307 466.403L120.012 467.151L115.058 464.291ZM126.349 463.624C125.644 464.031 124.952 464.269 124.272 464.339C123.599 464.405 122.942 464.274 122.3 463.948L123.558 463.222C123.895 463.38 124.215 463.444 124.52 463.415C124.831 463.382 125.155 463.268 125.492 463.074C125.765 462.916 125.936 462.762 126.006 462.612C126.07 462.458 126.016 462.331 125.844 462.232C125.724 462.162 125.603 462.122 125.482 462.111C125.362 462.1 125.19 462.126 124.968 462.188C124.746 462.243 124.441 462.353 124.053 462.518C123.456 462.76 122.942 462.925 122.51 463.013C122.078 463.101 121.7 463.125 121.376 463.085C121.059 463.041 120.757 462.936 120.471 462.771C120.001 462.5 119.824 462.177 119.938 461.803C120.052 461.429 120.43 461.057 121.072 460.687C121.783 460.276 122.478 460.05 123.158 460.01C123.831 459.966 124.438 460.093 124.977 460.39L123.777 461.083C123.472 460.914 123.171 460.85 122.872 460.89C122.574 460.93 122.275 461.037 121.977 461.209C121.729 461.352 121.573 461.497 121.51 461.644C121.453 461.787 121.507 461.906 121.672 462.001C121.792 462.071 121.923 462.109 122.062 462.117C122.202 462.117 122.383 462.085 122.605 462.023C122.828 461.953 123.129 461.838 123.51 461.677C124.095 461.435 124.599 461.271 125.025 461.187C125.444 461.099 125.816 461.079 126.14 461.127C126.457 461.171 126.759 461.275 127.045 461.44C127.534 461.722 127.708 462.062 127.569 462.458C127.429 462.846 127.022 463.235 126.349 463.624Z" fill="#465358"/>
382
+ <path d="M351 480L419.637 519.627L431.754 520.623L430.029 513.627L361.392 474" stroke="#E9725A" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1 3"/>
383
+ <rect x="1.73205" width="72.3126" height="72.3126" transform="matrix(0.866025 -0.5 0.866025 0.5 110.232 542.789)" fill="#5F52FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
384
+ <rect x="1.73205" width="72.3126" height="72.3126" transform="matrix(0.866025 -0.5 0.866025 0.5 110.232 528.533)" fill="#F8F7FF" stroke="#5F52FF" stroke-width="2" stroke-linejoin="round"/>
385
+ <mask id="path-365-inside-7_2105_1222" fill="white">
386
+ <path d="M110 516.412L174.357 479.255L238.713 516.412L174.357 553.568L110 516.412Z"/>
387
+ </mask>
388
+ <path d="M110 516.412L174.357 479.255L238.713 516.412L174.357 553.568L110 516.412Z" fill="#F8F7FF"/>
389
+ <path d="M110 516.412L108.268 515.412C107.311 515.964 107.311 516.859 108.268 517.412L110 516.412ZM174.357 479.255L176.089 478.255C175.132 477.703 173.581 477.703 172.625 478.255L174.357 479.255ZM238.713 516.412L240.445 517.412C241.402 516.859 241.402 515.964 240.445 515.412L238.713 516.412ZM174.357 553.568L172.625 554.568C173.581 555.12 175.132 555.12 176.089 554.568L174.357 553.568ZM110 516.412L111.732 517.412L176.089 480.255L174.357 479.255L172.625 478.255L108.268 515.412L110 516.412ZM174.357 479.255L172.625 480.255L236.981 517.412L238.713 516.412L240.445 515.412L176.089 478.255L174.357 479.255ZM238.713 516.412L236.981 515.412L172.625 552.568L174.357 553.568L176.089 554.568L240.445 517.412L238.713 516.412ZM174.357 553.568L176.089 552.568L111.732 515.412L110 516.412L108.268 517.412L172.625 554.568L174.357 553.568Z" fill="#5F52FF" mask="url(#path-365-inside-7_2105_1222)"/>
390
+ <mask id="path-367-inside-8_2105_1222" fill="white">
391
+ <path d="M110 506.156L174.357 469L238.713 506.156L174.357 543.313L110 506.156Z"/>
392
+ </mask>
393
+ <path d="M110 506.156L174.357 469L238.713 506.156L174.357 543.313L110 506.156Z" fill="#F8F7FF"/>
394
+ <path d="M110 506.156L108.268 505.156C107.311 505.709 107.311 506.604 108.268 507.156L110 506.156ZM174.357 469L176.089 468C175.132 467.448 173.581 467.448 172.625 468L174.357 469ZM238.713 506.156L240.445 507.156C241.402 506.604 241.402 505.709 240.445 505.156L238.713 506.156ZM174.357 543.313L172.625 544.313C173.581 544.865 175.132 544.865 176.089 544.313L174.357 543.313ZM110 506.156L111.732 507.156L176.089 470L174.357 469L172.625 468L108.268 505.156L110 506.156ZM174.357 469L172.625 470L236.981 507.156L238.713 506.156L240.445 505.156L176.089 468L174.357 469ZM238.713 506.156L236.981 505.156L172.625 542.313L174.357 543.313L176.089 544.313L240.445 507.156L238.713 506.156ZM174.357 543.313L176.089 542.313L111.732 505.156L110 506.156L108.268 507.156L172.625 544.313L174.357 543.313Z" fill="#5F52FF" mask="url(#path-367-inside-8_2105_1222)"/>
395
+ <mask id="path-369-inside-9_2105_1222" fill="white">
396
+ <path d="M119.619 500.603L174.357 469L229.095 500.603L174.357 532.206L119.619 500.603Z"/>
397
+ </mask>
398
+ <path d="M119.619 500.603L174.357 469L229.095 500.603L174.357 532.206L119.619 500.603Z" fill="#DAF4FF"/>
399
+ <path d="M119.619 500.603L117.887 499.603C116.931 500.155 116.931 501.051 117.887 501.603L119.619 500.603ZM174.357 469L176.089 468C175.133 467.448 173.582 467.448 172.625 468L174.357 469ZM229.095 500.603L230.827 501.603C231.784 501.051 231.784 500.155 230.827 499.603L229.095 500.603ZM174.357 532.206L172.625 533.206C173.582 533.758 175.133 533.758 176.089 533.206L174.357 532.206ZM119.619 500.603L121.351 501.603L176.089 470L174.357 469L172.625 468L117.887 499.603L119.619 500.603ZM174.357 469L172.625 470L227.363 501.603L229.095 500.603L230.827 499.603L176.089 468L174.357 469ZM229.095 500.603L227.363 499.603L172.625 531.206L174.357 532.206L176.089 533.206L230.827 501.603L229.095 500.603ZM174.357 532.206L176.089 531.206L121.351 499.603L119.619 500.603L117.887 501.603L172.625 533.206L174.357 532.206Z" fill="#5F52FF" mask="url(#path-369-inside-9_2105_1222)"/>
400
+ <path d="M174.5 531V542" stroke="#5F52FF" stroke-width="2"/>
401
+ </g>
402
+ <defs>
403
+ <clipPath id="clip0_2105_1222">
404
+ <rect width="1300" height="823" fill="white"/>
405
+ </clipPath>
406
+ </defs>
407
+ </svg>