MindsDB 1.3.1__py3-none-any.whl → 25.1.2.0__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.

Potentially problematic release.


This version of MindsDB might be problematic. Click here for more details.

Files changed (1960) hide show
  1. MindsDB-25.1.2.0.dist-info/LICENSE +85 -0
  2. MindsDB-25.1.2.0.dist-info/METADATA +932 -0
  3. MindsDB-25.1.2.0.dist-info/RECORD +1923 -0
  4. {MindsDB-1.3.1.dist-info → MindsDB-25.1.2.0.dist-info}/WHEEL +1 -1
  5. mindsdb/__about__.py +5 -5
  6. mindsdb/__init__.py +1 -11
  7. mindsdb/__main__.py +552 -0
  8. mindsdb/api/common/check_auth.py +42 -0
  9. mindsdb/api/executor/__init__.py +2 -0
  10. mindsdb/api/executor/command_executor.py +2047 -0
  11. mindsdb/api/executor/controllers/__init__.py +1 -0
  12. mindsdb/api/executor/controllers/session_controller.py +91 -0
  13. mindsdb/api/executor/data_types/answer.py +16 -0
  14. mindsdb/api/executor/data_types/response_type.py +8 -0
  15. mindsdb/api/executor/datahub/__init__.py +1 -0
  16. mindsdb/api/executor/datahub/classes/tables_row.py +65 -0
  17. mindsdb/api/executor/datahub/datanodes/__init__.py +4 -0
  18. mindsdb/api/executor/datahub/datanodes/datanode.py +20 -0
  19. mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +180 -0
  20. mindsdb/api/executor/datahub/datanodes/integration_datanode.py +281 -0
  21. mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py +428 -0
  22. mindsdb/api/executor/datahub/datanodes/project_datanode.py +186 -0
  23. mindsdb/api/executor/datahub/datanodes/system_tables.py +525 -0
  24. mindsdb/api/executor/exceptions.py +39 -0
  25. mindsdb/api/executor/planner/__init__.py +5 -0
  26. mindsdb/api/executor/planner/exceptions.py +3 -0
  27. mindsdb/api/executor/planner/plan_join.py +640 -0
  28. mindsdb/api/executor/planner/plan_join_ts.py +384 -0
  29. mindsdb/api/executor/planner/query_plan.py +29 -0
  30. mindsdb/api/executor/planner/query_planner.py +837 -0
  31. mindsdb/api/executor/planner/query_prepare.py +527 -0
  32. mindsdb/api/executor/planner/step_result.py +19 -0
  33. mindsdb/api/executor/planner/steps.py +262 -0
  34. mindsdb/api/executor/planner/ts_utils.py +93 -0
  35. mindsdb/api/executor/planner/utils.py +126 -0
  36. mindsdb/api/executor/sql_query/result_set.py +312 -0
  37. mindsdb/api/executor/sql_query/sql_query.py +318 -0
  38. mindsdb/api/executor/sql_query/steps/__init__.py +13 -0
  39. mindsdb/api/executor/sql_query/steps/apply_predictor_step.py +424 -0
  40. mindsdb/api/executor/sql_query/steps/base.py +21 -0
  41. mindsdb/api/executor/sql_query/steps/delete_step.py +49 -0
  42. mindsdb/api/executor/sql_query/steps/fetch_dataframe.py +116 -0
  43. mindsdb/api/executor/sql_query/steps/insert_step.py +129 -0
  44. mindsdb/api/executor/sql_query/steps/join_step.py +109 -0
  45. mindsdb/api/executor/sql_query/steps/map_reduce_step.py +179 -0
  46. mindsdb/api/executor/sql_query/steps/multiple_step.py +24 -0
  47. mindsdb/api/executor/sql_query/steps/prepare_steps.py +59 -0
  48. mindsdb/api/executor/sql_query/steps/project_step.py +86 -0
  49. mindsdb/api/executor/sql_query/steps/sql_steps.py +41 -0
  50. mindsdb/api/executor/sql_query/steps/subselect_step.py +159 -0
  51. mindsdb/api/executor/sql_query/steps/union_step.py +56 -0
  52. mindsdb/api/executor/sql_query/steps/update_step.py +129 -0
  53. mindsdb/api/executor/utilities/functions.py +37 -0
  54. mindsdb/api/executor/utilities/sql.py +195 -0
  55. mindsdb/api/http/gui.py +94 -0
  56. mindsdb/api/http/gunicorn_wrapper.py +17 -0
  57. mindsdb/api/http/initialize.py +454 -0
  58. mindsdb/api/http/namespaces/agents.py +499 -0
  59. mindsdb/api/http/namespaces/analysis.py +117 -0
  60. mindsdb/api/http/namespaces/auth.py +167 -0
  61. mindsdb/api/http/namespaces/chatbots.py +318 -0
  62. mindsdb/api/http/namespaces/config.py +286 -0
  63. mindsdb/api/http/namespaces/configs/agents.py +3 -0
  64. mindsdb/api/http/namespaces/configs/analysis.py +3 -0
  65. mindsdb/api/http/namespaces/configs/auth.py +4 -0
  66. mindsdb/api/http/namespaces/configs/chatbots.py +3 -0
  67. mindsdb/api/http/namespaces/configs/config.py +3 -0
  68. mindsdb/api/http/namespaces/configs/databases.py +3 -0
  69. mindsdb/api/http/namespaces/configs/default.py +4 -0
  70. mindsdb/api/http/namespaces/configs/files.py +4 -0
  71. mindsdb/api/http/namespaces/configs/handlers.py +3 -0
  72. mindsdb/api/http/namespaces/configs/jobs.py +3 -0
  73. mindsdb/api/http/namespaces/configs/knowledge_bases.py +3 -0
  74. mindsdb/api/http/namespaces/configs/projects.py +3 -0
  75. mindsdb/api/http/namespaces/configs/skills.py +3 -0
  76. mindsdb/api/http/namespaces/configs/sql.py +3 -0
  77. mindsdb/api/http/namespaces/configs/tabs.py +3 -0
  78. mindsdb/api/http/namespaces/configs/tree.py +3 -0
  79. mindsdb/api/http/namespaces/configs/util.py +3 -0
  80. mindsdb/api/http/namespaces/configs/webhooks.py +3 -0
  81. mindsdb/api/http/namespaces/databases.py +394 -0
  82. mindsdb/api/http/namespaces/default.py +152 -0
  83. mindsdb/api/http/namespaces/file.py +191 -0
  84. mindsdb/api/http/namespaces/handlers.py +232 -0
  85. mindsdb/api/http/namespaces/jobs.py +99 -0
  86. mindsdb/api/http/namespaces/knowledge_bases.py +420 -0
  87. mindsdb/api/http/namespaces/models.py +297 -0
  88. mindsdb/api/http/namespaces/projects.py +46 -0
  89. mindsdb/api/http/namespaces/skills.py +170 -0
  90. mindsdb/api/http/namespaces/sql.py +162 -0
  91. mindsdb/api/http/namespaces/tab.py +131 -0
  92. mindsdb/api/http/namespaces/tree.py +105 -0
  93. mindsdb/api/http/namespaces/util.py +144 -0
  94. mindsdb/api/http/namespaces/views.py +153 -0
  95. mindsdb/api/http/namespaces/webhooks.py +29 -0
  96. mindsdb/api/http/start.py +67 -0
  97. mindsdb/api/http/utils.py +37 -0
  98. mindsdb/api/mongo/classes/__init__.py +5 -0
  99. mindsdb/api/mongo/classes/query_sql.py +18 -0
  100. mindsdb/api/mongo/classes/responder.py +45 -0
  101. mindsdb/api/mongo/classes/responder_collection.py +34 -0
  102. mindsdb/api/mongo/classes/scram.py +86 -0
  103. mindsdb/api/mongo/classes/session.py +23 -0
  104. mindsdb/api/mongo/functions/__init__.py +19 -0
  105. mindsdb/api/mongo/responders/__init__.py +73 -0
  106. mindsdb/api/mongo/responders/add_shard.py +13 -0
  107. mindsdb/api/mongo/responders/aggregate.py +90 -0
  108. mindsdb/api/mongo/responders/buildinfo.py +17 -0
  109. mindsdb/api/mongo/responders/coll_stats.py +62 -0
  110. mindsdb/api/mongo/responders/company_id.py +25 -0
  111. mindsdb/api/mongo/responders/connection_status.py +22 -0
  112. mindsdb/api/mongo/responders/count.py +21 -0
  113. mindsdb/api/mongo/responders/db_stats.py +31 -0
  114. mindsdb/api/mongo/responders/delete.py +105 -0
  115. mindsdb/api/mongo/responders/describe.py +23 -0
  116. mindsdb/api/mongo/responders/end_sessions.py +13 -0
  117. mindsdb/api/mongo/responders/find.py +175 -0
  118. mindsdb/api/mongo/responders/get_cmd_line_opts.py +18 -0
  119. mindsdb/api/mongo/responders/get_free_monitoring_status.py +14 -0
  120. mindsdb/api/mongo/responders/get_parameter.py +23 -0
  121. mindsdb/api/mongo/responders/getlog.py +14 -0
  122. mindsdb/api/mongo/responders/host_info.py +28 -0
  123. mindsdb/api/mongo/responders/insert.py +268 -0
  124. mindsdb/api/mongo/responders/is_master.py +20 -0
  125. mindsdb/api/mongo/responders/is_master_lower.py +13 -0
  126. mindsdb/api/mongo/responders/list_collections.py +55 -0
  127. mindsdb/api/mongo/responders/list_databases.py +37 -0
  128. mindsdb/api/mongo/responders/list_indexes.py +22 -0
  129. mindsdb/api/mongo/responders/ping.py +13 -0
  130. mindsdb/api/mongo/responders/recv_chunk_start.py +13 -0
  131. mindsdb/api/mongo/responders/replsetgetstatus.py +13 -0
  132. mindsdb/api/mongo/responders/sasl_continue.py +34 -0
  133. mindsdb/api/mongo/responders/sasl_start.py +33 -0
  134. mindsdb/api/mongo/responders/update_range_deletions.py +12 -0
  135. mindsdb/api/mongo/responders/whatsmyuri.py +18 -0
  136. mindsdb/api/mongo/server.py +388 -0
  137. mindsdb/api/mongo/start.py +15 -0
  138. mindsdb/api/mongo/utilities/mongodb_ast.py +257 -0
  139. mindsdb/api/mongo/utilities/mongodb_parser.py +145 -0
  140. mindsdb/api/mongo/utilities/mongodb_query.py +84 -0
  141. mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py +130 -0
  142. mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/__init__.py +3 -0
  143. mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py +37 -0
  144. mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py +22 -0
  145. mindsdb/api/mysql/mysql_proxy/classes/sql_statement_parser.py +151 -0
  146. mindsdb/api/mysql/mysql_proxy/data_types/__init__.py +0 -0
  147. mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py +212 -0
  148. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py +166 -0
  149. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/__init__.py +15 -0
  150. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py +140 -0
  151. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_count_packet.py +44 -0
  152. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_definition_packet.py +94 -0
  153. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/command_packet.py +159 -0
  154. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/eof_packet.py +52 -0
  155. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/err_packet.py +58 -0
  156. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/fast_auth_fail_packet.py +20 -0
  157. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_packet.py +80 -0
  158. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_response_packet.py +96 -0
  159. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/ok_packet.py +106 -0
  160. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/password_answer.py +13 -0
  161. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/resultset_row_package.py +54 -0
  162. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/stmt_prepare_header.py +46 -0
  163. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_packet.py +53 -0
  164. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_response_packet.py +16 -0
  165. mindsdb/api/mysql/mysql_proxy/executor/__init__.py +2 -0
  166. mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py +138 -0
  167. mindsdb/api/mysql/mysql_proxy/external_libs/__init__.py +0 -0
  168. mindsdb/api/mysql/mysql_proxy/external_libs/mysql_scramble.py +135 -0
  169. mindsdb/api/mysql/mysql_proxy/libs/__init__.py +1 -0
  170. mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py +1 -0
  171. mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py +1030 -0
  172. mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +930 -0
  173. mindsdb/api/mysql/mysql_proxy/utilities/__init__.py +1 -0
  174. mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py +18 -0
  175. mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py +48 -0
  176. mindsdb/api/mysql/start.py +13 -0
  177. mindsdb/api/postgres/__init__.py +0 -0
  178. mindsdb/api/postgres/postgres_proxy/__init__.py +0 -0
  179. mindsdb/api/postgres/postgres_proxy/executor/__init__.py +1 -0
  180. mindsdb/api/postgres/postgres_proxy/executor/executor.py +188 -0
  181. mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py +0 -0
  182. mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py +322 -0
  183. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py +34 -0
  184. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message.py +31 -0
  185. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py +1265 -0
  186. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_identifiers.py +31 -0
  187. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py +253 -0
  188. mindsdb/api/postgres/postgres_proxy/postgres_proxy.py +479 -0
  189. mindsdb/api/postgres/postgres_proxy/utilities/__init__.py +10 -0
  190. mindsdb/api/postgres/start.py +11 -0
  191. mindsdb/integrations/__init__.py +0 -0
  192. mindsdb/integrations/handlers/__init__.py +0 -0
  193. mindsdb/integrations/handlers/access_handler/__about__.py +9 -0
  194. mindsdb/integrations/handlers/access_handler/__init__.py +20 -0
  195. mindsdb/integrations/handlers/access_handler/access_handler.py +197 -0
  196. mindsdb/integrations/handlers/access_handler/connection_args.py +15 -0
  197. mindsdb/integrations/handlers/access_handler/icon.svg +19 -0
  198. mindsdb/integrations/handlers/access_handler/requirements.txt +2 -0
  199. mindsdb/integrations/handlers/access_handler/tests/__init__.py +0 -0
  200. mindsdb/integrations/handlers/access_handler/tests/test_access_handler.py +32 -0
  201. mindsdb/integrations/handlers/aerospike_handler/__about__.py +9 -0
  202. mindsdb/integrations/handlers/aerospike_handler/__init__.py +30 -0
  203. mindsdb/integrations/handlers/aerospike_handler/aerospike_handler.py +236 -0
  204. mindsdb/integrations/handlers/aerospike_handler/connection_args.py +46 -0
  205. mindsdb/integrations/handlers/aerospike_handler/icon.svg +11 -0
  206. mindsdb/integrations/handlers/aerospike_handler/requirements.txt +1 -0
  207. mindsdb/integrations/handlers/aerospike_handler/tests/__init__.py +0 -0
  208. mindsdb/integrations/handlers/aerospike_handler/tests/test_aerospike_handler.py +36 -0
  209. mindsdb/integrations/handlers/airtable_handler/__about__.py +9 -0
  210. mindsdb/integrations/handlers/airtable_handler/__init__.py +20 -0
  211. mindsdb/integrations/handlers/airtable_handler/airtable_handler.py +211 -0
  212. mindsdb/integrations/handlers/airtable_handler/connection_args.py +26 -0
  213. mindsdb/integrations/handlers/airtable_handler/icon.svg +11 -0
  214. mindsdb/integrations/handlers/airtable_handler/tests/__init__.py +0 -0
  215. mindsdb/integrations/handlers/airtable_handler/tests/test_airtable_handler.py +34 -0
  216. mindsdb/integrations/handlers/altibase_handler/__about__.py +9 -0
  217. mindsdb/integrations/handlers/altibase_handler/__init__.py +20 -0
  218. mindsdb/integrations/handlers/altibase_handler/altibase_handler.py +253 -0
  219. mindsdb/integrations/handlers/altibase_handler/connection_args.py +50 -0
  220. mindsdb/integrations/handlers/altibase_handler/icon.svg +3 -0
  221. mindsdb/integrations/handlers/altibase_handler/requirements.txt +2 -0
  222. mindsdb/integrations/handlers/altibase_handler/tests/__init__.py +0 -0
  223. mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler.py +67 -0
  224. mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler_dsn.py +68 -0
  225. mindsdb/integrations/handlers/anomaly_detection_handler/__about__.py +9 -0
  226. mindsdb/integrations/handlers/anomaly_detection_handler/__init__.py +19 -0
  227. mindsdb/integrations/handlers/anomaly_detection_handler/anomaly_detection_handler.py +180 -0
  228. mindsdb/integrations/handlers/anomaly_detection_handler/icon.svg +13 -0
  229. mindsdb/integrations/handlers/anomaly_detection_handler/requirements.txt +4 -0
  230. mindsdb/integrations/handlers/anomaly_detection_handler/utils.py +21 -0
  231. mindsdb/integrations/handlers/anthropic_handler/__about__.py +9 -0
  232. mindsdb/integrations/handlers/anthropic_handler/__init__.py +22 -0
  233. mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py +108 -0
  234. mindsdb/integrations/handlers/anthropic_handler/icon.svg +3 -0
  235. mindsdb/integrations/handlers/anthropic_handler/requirements.txt +1 -0
  236. mindsdb/integrations/handlers/anyscale_endpoints_handler/__about__.py +9 -0
  237. mindsdb/integrations/handlers/anyscale_endpoints_handler/__init__.py +20 -0
  238. mindsdb/integrations/handlers/anyscale_endpoints_handler/anyscale_endpoints_handler.py +290 -0
  239. mindsdb/integrations/handlers/anyscale_endpoints_handler/creation_args.py +14 -0
  240. mindsdb/integrations/handlers/anyscale_endpoints_handler/icon.svg +4 -0
  241. mindsdb/integrations/handlers/anyscale_endpoints_handler/requirements.txt +3 -0
  242. mindsdb/integrations/handlers/anyscale_endpoints_handler/settings.py +51 -0
  243. mindsdb/integrations/handlers/anyscale_endpoints_handler/tests/__init__.py +0 -0
  244. mindsdb/integrations/handlers/anyscale_endpoints_handler/tests/test_anyscale_endpoints_handler.py +212 -0
  245. mindsdb/integrations/handlers/apache_doris_handler/__about__.py +9 -0
  246. mindsdb/integrations/handlers/apache_doris_handler/__init__.py +20 -0
  247. mindsdb/integrations/handlers/apache_doris_handler/apache_doris_handler.py +10 -0
  248. mindsdb/integrations/handlers/apache_doris_handler/icon.svg +5 -0
  249. mindsdb/integrations/handlers/apache_doris_handler/requirements.txt +1 -0
  250. mindsdb/integrations/handlers/aqicn_handler/__about__.py +9 -0
  251. mindsdb/integrations/handlers/aqicn_handler/__init__.py +28 -0
  252. mindsdb/integrations/handlers/aqicn_handler/aqicn.py +35 -0
  253. mindsdb/integrations/handlers/aqicn_handler/aqicn_handler.py +97 -0
  254. mindsdb/integrations/handlers/aqicn_handler/aqicn_tables.py +425 -0
  255. mindsdb/integrations/handlers/aqicn_handler/connection_args.py +18 -0
  256. mindsdb/integrations/handlers/aqicn_handler/icon.png +0 -0
  257. mindsdb/integrations/handlers/aqicn_handler/tests/__init__.py +0 -0
  258. mindsdb/integrations/handlers/athena_handler/__about__.py +9 -0
  259. mindsdb/integrations/handlers/athena_handler/__init__.py +20 -0
  260. mindsdb/integrations/handlers/athena_handler/athena_handler.py +218 -0
  261. mindsdb/integrations/handlers/athena_handler/connection_args.py +51 -0
  262. mindsdb/integrations/handlers/athena_handler/icon.svg +22 -0
  263. mindsdb/integrations/handlers/athena_handler/tests/__init__.py +0 -0
  264. mindsdb/integrations/handlers/athena_handler/tests/test_athena_handler.py +85 -0
  265. mindsdb/integrations/handlers/aurora_handler/__about__.py +9 -0
  266. mindsdb/integrations/handlers/aurora_handler/__init__.py +20 -0
  267. mindsdb/integrations/handlers/aurora_handler/aurora_handler.py +140 -0
  268. mindsdb/integrations/handlers/aurora_handler/connection_args.py +50 -0
  269. mindsdb/integrations/handlers/aurora_handler/icon.svg +7 -0
  270. mindsdb/integrations/handlers/aurora_handler/requirements.txt +1 -0
  271. mindsdb/integrations/handlers/aurora_handler/tests/__init__.py +0 -0
  272. mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_mysql_handler.py +37 -0
  273. mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_postgres_handler.py +37 -0
  274. mindsdb/integrations/handlers/autogluon_handler/__about__.py +9 -0
  275. mindsdb/integrations/handlers/autogluon_handler/__init__.py +20 -0
  276. mindsdb/integrations/handlers/autogluon_handler/autogluon_handler.py +57 -0
  277. mindsdb/integrations/handlers/autogluon_handler/config.py +17 -0
  278. mindsdb/integrations/handlers/autogluon_handler/icon.svg +3 -0
  279. mindsdb/integrations/handlers/autogluon_handler/requirements.txt +2 -0
  280. mindsdb/integrations/handlers/autokeras_handler/__about__.py +9 -0
  281. mindsdb/integrations/handlers/autokeras_handler/__init__.py +22 -0
  282. mindsdb/integrations/handlers/autokeras_handler/autokeras_handler.py +139 -0
  283. mindsdb/integrations/handlers/autokeras_handler/icon.svg +9 -0
  284. mindsdb/integrations/handlers/autokeras_handler/requirements.txt +2 -0
  285. mindsdb/integrations/handlers/autosklearn_handler/__about__.py +9 -0
  286. mindsdb/integrations/handlers/autosklearn_handler/__init__.py +19 -0
  287. mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py +53 -0
  288. mindsdb/integrations/handlers/autosklearn_handler/config.py +29 -0
  289. mindsdb/integrations/handlers/autosklearn_handler/icon.png +0 -0
  290. mindsdb/integrations/handlers/autosklearn_handler/requirements.txt +2 -0
  291. mindsdb/integrations/handlers/azure_blob_handler/__about__.py +9 -0
  292. mindsdb/integrations/handlers/azure_blob_handler/__init__.py +20 -0
  293. mindsdb/integrations/handlers/azure_blob_handler/azure_blob_handler.py +346 -0
  294. mindsdb/integrations/handlers/azure_blob_handler/connection_args.py +25 -0
  295. mindsdb/integrations/handlers/azure_blob_handler/icon.svg +30 -0
  296. mindsdb/integrations/handlers/azure_blob_handler/requirements.txt +1 -0
  297. mindsdb/integrations/handlers/bedrock_handler/__about__.py +9 -0
  298. mindsdb/integrations/handlers/bedrock_handler/__init__.py +19 -0
  299. mindsdb/integrations/handlers/bedrock_handler/bedrock_handler.py +328 -0
  300. mindsdb/integrations/handlers/bedrock_handler/icon.svg +9 -0
  301. mindsdb/integrations/handlers/bedrock_handler/requirements.txt +1 -0
  302. mindsdb/integrations/handlers/bedrock_handler/settings.py +287 -0
  303. mindsdb/integrations/handlers/bedrock_handler/utilities.py +46 -0
  304. mindsdb/integrations/handlers/bigquery_handler/__about__.py +9 -0
  305. mindsdb/integrations/handlers/bigquery_handler/__init__.py +21 -0
  306. mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py +181 -0
  307. mindsdb/integrations/handlers/bigquery_handler/connection_args.py +30 -0
  308. mindsdb/integrations/handlers/bigquery_handler/icon.svg +5 -0
  309. mindsdb/integrations/handlers/bigquery_handler/requirements.txt +2 -0
  310. mindsdb/integrations/handlers/bigquery_handler/tests/__init__.py +0 -0
  311. mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py +221 -0
  312. mindsdb/integrations/handlers/binance_handler/__about__.py +9 -0
  313. mindsdb/integrations/handlers/binance_handler/__init__.py +19 -0
  314. mindsdb/integrations/handlers/binance_handler/binance_handler.py +144 -0
  315. mindsdb/integrations/handlers/binance_handler/binance_tables.py +175 -0
  316. mindsdb/integrations/handlers/binance_handler/icon.svg +14 -0
  317. mindsdb/integrations/handlers/binance_handler/requirements.txt +1 -0
  318. mindsdb/integrations/handlers/box_handler/__about__.py +9 -0
  319. mindsdb/integrations/handlers/box_handler/__init__.py +30 -0
  320. mindsdb/integrations/handlers/box_handler/box_handler.py +257 -0
  321. mindsdb/integrations/handlers/box_handler/connection_args.py +17 -0
  322. mindsdb/integrations/handlers/box_handler/icon.svg +1 -0
  323. mindsdb/integrations/handlers/box_handler/requirements.txt +1 -0
  324. mindsdb/integrations/handlers/byom_handler/__about__.py +9 -0
  325. mindsdb/integrations/handlers/byom_handler/__init__.py +21 -0
  326. mindsdb/integrations/handlers/byom_handler/byom_handler.py +678 -0
  327. mindsdb/integrations/handlers/byom_handler/connection_args.py +19 -0
  328. mindsdb/integrations/handlers/byom_handler/icon.svg +13 -0
  329. mindsdb/integrations/handlers/byom_handler/proc_wrapper.py +229 -0
  330. mindsdb/integrations/handlers/byom_handler/requirements.txt +2 -0
  331. mindsdb/integrations/handlers/cassandra_handler/__about__.py +9 -0
  332. mindsdb/integrations/handlers/cassandra_handler/__init__.py +21 -0
  333. mindsdb/integrations/handlers/cassandra_handler/cassandra_handler.py +27 -0
  334. mindsdb/integrations/handlers/cassandra_handler/connection_args.py +50 -0
  335. mindsdb/integrations/handlers/cassandra_handler/icon.svg +33 -0
  336. mindsdb/integrations/handlers/cassandra_handler/requirements.txt +1 -0
  337. mindsdb/integrations/handlers/cassandra_handler/tests/__init__.py +0 -0
  338. mindsdb/integrations/handlers/cassandra_handler/tests/test_cassandra_handler.py +39 -0
  339. mindsdb/integrations/handlers/chromadb_handler/__about__.py +9 -0
  340. mindsdb/integrations/handlers/chromadb_handler/__init__.py +29 -0
  341. mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +491 -0
  342. mindsdb/integrations/handlers/chromadb_handler/connection_args.py +28 -0
  343. mindsdb/integrations/handlers/chromadb_handler/icon.png +0 -0
  344. mindsdb/integrations/handlers/chromadb_handler/requirements.txt +1 -0
  345. mindsdb/integrations/handlers/chromadb_handler/settings.py +62 -0
  346. mindsdb/integrations/handlers/chromadb_handler/tests/__init__.py +0 -0
  347. mindsdb/integrations/handlers/ckan_handler/__about__.py +9 -0
  348. mindsdb/integrations/handlers/ckan_handler/__init__.py +28 -0
  349. mindsdb/integrations/handlers/ckan_handler/ckan_handler.py +310 -0
  350. mindsdb/integrations/handlers/ckan_handler/connection_args.py +22 -0
  351. mindsdb/integrations/handlers/ckan_handler/icon.png +0 -0
  352. mindsdb/integrations/handlers/ckan_handler/requirements.txt +1 -0
  353. mindsdb/integrations/handlers/ckan_handler/tests/__init__.py +0 -0
  354. mindsdb/integrations/handlers/ckan_handler/tests/test_ckan_handler.py +156 -0
  355. mindsdb/integrations/handlers/clickhouse_handler/__about__.py +9 -0
  356. mindsdb/integrations/handlers/clickhouse_handler/__init__.py +20 -0
  357. mindsdb/integrations/handlers/clickhouse_handler/clickhouse_handler.py +168 -0
  358. mindsdb/integrations/handlers/clickhouse_handler/connection_args.py +53 -0
  359. mindsdb/integrations/handlers/clickhouse_handler/icon.svg +4 -0
  360. mindsdb/integrations/handlers/clickhouse_handler/requirements.txt +1 -0
  361. mindsdb/integrations/handlers/clickhouse_handler/tests/__init__.py +0 -0
  362. mindsdb/integrations/handlers/clickhouse_handler/tests/test_clickhouse_handler.py +41 -0
  363. mindsdb/integrations/handlers/clipdrop_handler/__about__.py +9 -0
  364. mindsdb/integrations/handlers/clipdrop_handler/__init__.py +22 -0
  365. mindsdb/integrations/handlers/clipdrop_handler/clipdrop.py +87 -0
  366. mindsdb/integrations/handlers/clipdrop_handler/clipdrop_handler.py +193 -0
  367. mindsdb/integrations/handlers/clipdrop_handler/icon.svg +6 -0
  368. mindsdb/integrations/handlers/cloud_spanner_handler/__about__.py +9 -0
  369. mindsdb/integrations/handlers/cloud_spanner_handler/__init__.py +27 -0
  370. mindsdb/integrations/handlers/cloud_spanner_handler/cloud_spanner_handler.py +219 -0
  371. mindsdb/integrations/handlers/cloud_spanner_handler/connection_args.py +33 -0
  372. mindsdb/integrations/handlers/cloud_spanner_handler/icon.png +0 -0
  373. mindsdb/integrations/handlers/cloud_spanner_handler/requirements.txt +2 -0
  374. mindsdb/integrations/handlers/cloud_spanner_handler/tests/__init__.py +0 -0
  375. mindsdb/integrations/handlers/cloud_spanner_handler/tests/test_cloud_spanner_handler.py +50 -0
  376. mindsdb/integrations/handlers/cloud_sql_handler/__about__.py +9 -0
  377. mindsdb/integrations/handlers/cloud_sql_handler/__init__.py +20 -0
  378. mindsdb/integrations/handlers/cloud_sql_handler/cloud_sql_handler.py +123 -0
  379. mindsdb/integrations/handlers/cloud_sql_handler/connection_args.py +41 -0
  380. mindsdb/integrations/handlers/cloud_sql_handler/icon.png +0 -0
  381. mindsdb/integrations/handlers/cloud_sql_handler/requirements.txt +2 -0
  382. mindsdb/integrations/handlers/cloud_sql_handler/tests/__init__.py +0 -0
  383. mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mssql_handler.py +37 -0
  384. mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mysql_handler.py +37 -0
  385. mindsdb/integrations/handlers/cockroach_handler/__about__.py +9 -0
  386. mindsdb/integrations/handlers/cockroach_handler/__init__.py +19 -0
  387. mindsdb/integrations/handlers/cockroach_handler/cockroach_handler.py +11 -0
  388. mindsdb/integrations/handlers/cockroach_handler/icon.svg +11 -0
  389. mindsdb/integrations/handlers/cockroach_handler/tests/__init__.py +0 -0
  390. mindsdb/integrations/handlers/cockroach_handler/tests/test_cockroachdb_handler.py +34 -0
  391. mindsdb/integrations/handlers/cohere_handler/__about__.py +9 -0
  392. mindsdb/integrations/handlers/cohere_handler/__init__.py +21 -0
  393. mindsdb/integrations/handlers/cohere_handler/cohere_handler.py +88 -0
  394. mindsdb/integrations/handlers/cohere_handler/icon.svg +12 -0
  395. mindsdb/integrations/handlers/cohere_handler/requirements.txt +1 -0
  396. mindsdb/integrations/handlers/coinbase_handler/__about__.py +9 -0
  397. mindsdb/integrations/handlers/coinbase_handler/__init__.py +21 -0
  398. mindsdb/integrations/handlers/coinbase_handler/coinbase_handler.py +138 -0
  399. mindsdb/integrations/handlers/coinbase_handler/coinbase_tables.py +56 -0
  400. mindsdb/integrations/handlers/coinbase_handler/connection_args.py +34 -0
  401. mindsdb/integrations/handlers/coinbase_handler/icon.svg +3 -0
  402. mindsdb/integrations/handlers/coinbase_handler/requirements.txt +0 -0
  403. mindsdb/integrations/handlers/confluence_handler/__about__.py +9 -0
  404. mindsdb/integrations/handlers/confluence_handler/__init__.py +29 -0
  405. mindsdb/integrations/handlers/confluence_handler/confluence_handler.py +102 -0
  406. mindsdb/integrations/handlers/confluence_handler/confluence_table.py +193 -0
  407. mindsdb/integrations/handlers/confluence_handler/connection_args.py +32 -0
  408. mindsdb/integrations/handlers/confluence_handler/icon.svg +14 -0
  409. mindsdb/integrations/handlers/confluence_handler/requirements.txt +1 -0
  410. mindsdb/integrations/handlers/confluence_handler/tests/__init__.py +0 -0
  411. mindsdb/integrations/handlers/confluence_handler/tests/test_confluence_handler.py +68 -0
  412. mindsdb/integrations/handlers/couchbase_handler/__about__.py +9 -0
  413. mindsdb/integrations/handlers/couchbase_handler/__init__.py +30 -0
  414. mindsdb/integrations/handlers/couchbase_handler/connection_args.py +31 -0
  415. mindsdb/integrations/handlers/couchbase_handler/couchbase_handler.py +208 -0
  416. mindsdb/integrations/handlers/couchbase_handler/icon.svg +3 -0
  417. mindsdb/integrations/handlers/couchbase_handler/requirements.txt +1 -0
  418. mindsdb/integrations/handlers/couchbase_handler/tests/__init__.py +0 -0
  419. mindsdb/integrations/handlers/couchbase_handler/tests/test_couchbase_handler.py +39 -0
  420. mindsdb/integrations/handlers/couchbasevector_handler/__about__.py +9 -0
  421. mindsdb/integrations/handlers/couchbasevector_handler/__init__.py +30 -0
  422. mindsdb/integrations/handlers/couchbasevector_handler/connection_args.py +31 -0
  423. mindsdb/integrations/handlers/couchbasevector_handler/couchbasevector_handler.py +472 -0
  424. mindsdb/integrations/handlers/couchbasevector_handler/icon.svg +3 -0
  425. mindsdb/integrations/handlers/couchbasevector_handler/requirements.txt +1 -0
  426. mindsdb/integrations/handlers/couchbasevector_handler/tests/__init__.py +0 -0
  427. mindsdb/integrations/handlers/crate_handler/__about__.py +9 -0
  428. mindsdb/integrations/handlers/crate_handler/__init__.py +27 -0
  429. mindsdb/integrations/handlers/crate_handler/crate_handler.py +226 -0
  430. mindsdb/integrations/handlers/crate_handler/icon.svg +14 -0
  431. mindsdb/integrations/handlers/crate_handler/requirements.txt +2 -0
  432. mindsdb/integrations/handlers/crate_handler/tests/__init__.py +0 -0
  433. mindsdb/integrations/handlers/crate_handler/tests/test_crate_handler.py +46 -0
  434. mindsdb/integrations/handlers/d0lt_handler/__about__.py +9 -0
  435. mindsdb/integrations/handlers/d0lt_handler/__init__.py +29 -0
  436. mindsdb/integrations/handlers/d0lt_handler/d0lt_handler.py +12 -0
  437. mindsdb/integrations/handlers/d0lt_handler/icon.svg +6 -0
  438. mindsdb/integrations/handlers/d0lt_handler/requirements.txt +1 -0
  439. mindsdb/integrations/handlers/d0lt_handler/tests/__init__.py +0 -0
  440. mindsdb/integrations/handlers/d0lt_handler/tests/test_d0lt_handler.py +53 -0
  441. mindsdb/integrations/handlers/databend_handler/__about__.py +9 -0
  442. mindsdb/integrations/handlers/databend_handler/__init__.py +20 -0
  443. mindsdb/integrations/handlers/databend_handler/connection_args.py +36 -0
  444. mindsdb/integrations/handlers/databend_handler/databend_handler.py +199 -0
  445. mindsdb/integrations/handlers/databend_handler/icon.svg +9 -0
  446. mindsdb/integrations/handlers/databend_handler/requirements.txt +1 -0
  447. mindsdb/integrations/handlers/databend_handler/tests/__init__.py +1 -0
  448. mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py +37 -0
  449. mindsdb/integrations/handlers/databricks_handler/__about__.py +9 -0
  450. mindsdb/integrations/handlers/databricks_handler/__init__.py +29 -0
  451. mindsdb/integrations/handlers/databricks_handler/connection_args.py +58 -0
  452. mindsdb/integrations/handlers/databricks_handler/databricks_handler.py +261 -0
  453. mindsdb/integrations/handlers/databricks_handler/icon.svg +3 -0
  454. mindsdb/integrations/handlers/databricks_handler/requirements.txt +1 -0
  455. mindsdb/integrations/handlers/databricks_handler/tests/__init__.py +0 -0
  456. mindsdb/integrations/handlers/databricks_handler/tests/test_databricks_handler.py +37 -0
  457. mindsdb/integrations/handlers/datastax_handler/__about__.py +9 -0
  458. mindsdb/integrations/handlers/datastax_handler/__init__.py +27 -0
  459. mindsdb/integrations/handlers/datastax_handler/datastax_handler.py +12 -0
  460. mindsdb/integrations/handlers/datastax_handler/icon.svg +4 -0
  461. mindsdb/integrations/handlers/datastax_handler/requirements.txt +1 -0
  462. mindsdb/integrations/handlers/datastax_handler/tests/__init__.py +0 -0
  463. mindsdb/integrations/handlers/datastax_handler/tests/test_cassandra_handler.py +38 -0
  464. mindsdb/integrations/handlers/db2_handler/__about__.py +9 -0
  465. mindsdb/integrations/handlers/db2_handler/__init__.py +29 -0
  466. mindsdb/integrations/handlers/db2_handler/connection_args.py +53 -0
  467. mindsdb/integrations/handlers/db2_handler/db2_handler.py +235 -0
  468. mindsdb/integrations/handlers/db2_handler/icon.svg +49 -0
  469. mindsdb/integrations/handlers/db2_handler/requirements.txt +2 -0
  470. mindsdb/integrations/handlers/db2_handler/tests/__init__.py +0 -0
  471. mindsdb/integrations/handlers/db2_handler/tests/test_db2_handler.py +46 -0
  472. mindsdb/integrations/handlers/derby_handler/__about__.py +9 -0
  473. mindsdb/integrations/handlers/derby_handler/__init__.py +21 -0
  474. mindsdb/integrations/handlers/derby_handler/connection_args.py +50 -0
  475. mindsdb/integrations/handlers/derby_handler/derby_handler.py +203 -0
  476. mindsdb/integrations/handlers/derby_handler/icon.svg +21 -0
  477. mindsdb/integrations/handlers/derby_handler/requirements.txt +1 -0
  478. mindsdb/integrations/handlers/derby_handler/tests/__init__.py +0 -0
  479. mindsdb/integrations/handlers/derby_handler/tests/test_derby_handler.py +46 -0
  480. mindsdb/integrations/handlers/discord_handler/__about__.py +9 -0
  481. mindsdb/integrations/handlers/discord_handler/__init__.py +27 -0
  482. mindsdb/integrations/handlers/discord_handler/discord_handler.py +187 -0
  483. mindsdb/integrations/handlers/discord_handler/discord_tables.py +189 -0
  484. mindsdb/integrations/handlers/discord_handler/icon.svg +3 -0
  485. mindsdb/integrations/handlers/discord_handler/requirements.txt +0 -0
  486. mindsdb/integrations/handlers/discord_handler/tests/__init__.py +0 -0
  487. mindsdb/integrations/handlers/discord_handler/tests/test_discord.py +59 -0
  488. mindsdb/integrations/handlers/dockerhub_handler/__about__.py +9 -0
  489. mindsdb/integrations/handlers/dockerhub_handler/__init__.py +28 -0
  490. mindsdb/integrations/handlers/dockerhub_handler/connection_args.py +25 -0
  491. mindsdb/integrations/handlers/dockerhub_handler/dockerhub.py +55 -0
  492. mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py +112 -0
  493. mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py +509 -0
  494. mindsdb/integrations/handlers/dockerhub_handler/icon.svg +12 -0
  495. mindsdb/integrations/handlers/documentdb_handler/__about__.py +9 -0
  496. mindsdb/integrations/handlers/documentdb_handler/__init__.py +21 -0
  497. mindsdb/integrations/handlers/documentdb_handler/connection_args.py +53 -0
  498. mindsdb/integrations/handlers/documentdb_handler/documentdb_handler.py +41 -0
  499. mindsdb/integrations/handlers/documentdb_handler/icon.svg +15 -0
  500. mindsdb/integrations/handlers/dremio_handler/__about__.py +9 -0
  501. mindsdb/integrations/handlers/dremio_handler/__init__.py +20 -0
  502. mindsdb/integrations/handlers/dremio_handler/connection_args.py +31 -0
  503. mindsdb/integrations/handlers/dremio_handler/dremio_handler.py +222 -0
  504. mindsdb/integrations/handlers/dremio_handler/icon.svg +16 -0
  505. mindsdb/integrations/handlers/dremio_handler/requirements.txt +1 -0
  506. mindsdb/integrations/handlers/dremio_handler/tests/__init__.py +0 -0
  507. mindsdb/integrations/handlers/dremio_handler/tests/test_dremio_handler.py +35 -0
  508. mindsdb/integrations/handlers/dropbox_handler/__about__.py +9 -0
  509. mindsdb/integrations/handlers/dropbox_handler/__init__.py +30 -0
  510. mindsdb/integrations/handlers/dropbox_handler/connection_args.py +17 -0
  511. mindsdb/integrations/handlers/dropbox_handler/dropbox_handler.py +253 -0
  512. mindsdb/integrations/handlers/dropbox_handler/icon.svg +4 -0
  513. mindsdb/integrations/handlers/dropbox_handler/requirements.txt +1 -0
  514. mindsdb/integrations/handlers/dropbox_handler/tests/__init__.py +0 -0
  515. mindsdb/integrations/handlers/dropbox_handler/tests/test_dropbox_handler.py +18 -0
  516. mindsdb/integrations/handlers/druid_handler/__about__.py +9 -0
  517. mindsdb/integrations/handlers/druid_handler/__init__.py +20 -0
  518. mindsdb/integrations/handlers/druid_handler/connection_args.py +51 -0
  519. mindsdb/integrations/handlers/druid_handler/druid_handler.py +216 -0
  520. mindsdb/integrations/handlers/druid_handler/icon.svg +6 -0
  521. mindsdb/integrations/handlers/druid_handler/requirements.txt +1 -0
  522. mindsdb/integrations/handlers/druid_handler/tests/__init__.py +0 -0
  523. mindsdb/integrations/handlers/druid_handler/tests/test_druid_handler.py +35 -0
  524. mindsdb/integrations/handlers/dspy_handler/__about__.py +9 -0
  525. mindsdb/integrations/handlers/dspy_handler/__init__.py +19 -0
  526. mindsdb/integrations/handlers/dspy_handler/dspy_handler.py +250 -0
  527. mindsdb/integrations/handlers/dspy_handler/icon.svg +14 -0
  528. mindsdb/integrations/handlers/dspy_handler/requirements.txt +8 -0
  529. mindsdb/integrations/handlers/duckdb_handler/__about__.py +9 -0
  530. mindsdb/integrations/handlers/duckdb_handler/__init__.py +28 -0
  531. mindsdb/integrations/handlers/duckdb_handler/connection_args.py +17 -0
  532. mindsdb/integrations/handlers/duckdb_handler/duckdb_handler.py +170 -0
  533. mindsdb/integrations/handlers/duckdb_handler/icon.svg +10 -0
  534. mindsdb/integrations/handlers/duckdb_handler/tests/__init__.py +0 -0
  535. mindsdb/integrations/handlers/duckdb_handler/tests/test_duckdb_handler.py +48 -0
  536. mindsdb/integrations/handlers/dummy_data_handler/__about__.py +9 -0
  537. mindsdb/integrations/handlers/dummy_data_handler/__init__.py +19 -0
  538. mindsdb/integrations/handlers/dummy_data_handler/dummy_data_handler.py +97 -0
  539. mindsdb/integrations/handlers/dummy_data_handler/icon.svg +3 -0
  540. mindsdb/integrations/handlers/dynamodb_handler/__about__.py +9 -0
  541. mindsdb/integrations/handlers/dynamodb_handler/__init__.py +20 -0
  542. mindsdb/integrations/handlers/dynamodb_handler/connection_args.py +39 -0
  543. mindsdb/integrations/handlers/dynamodb_handler/dynamodb_handler.py +293 -0
  544. mindsdb/integrations/handlers/dynamodb_handler/icon.svg +17 -0
  545. mindsdb/integrations/handlers/dynamodb_handler/tests/__init__.py +0 -0
  546. mindsdb/integrations/handlers/dynamodb_handler/tests/test_dynamodb_handler.py +34 -0
  547. mindsdb/integrations/handlers/edgelessdb_handler/__about__.py +9 -0
  548. mindsdb/integrations/handlers/edgelessdb_handler/__init__.py +21 -0
  549. mindsdb/integrations/handlers/edgelessdb_handler/connection_args.py +45 -0
  550. mindsdb/integrations/handlers/edgelessdb_handler/edgelessdb_handler.py +12 -0
  551. mindsdb/integrations/handlers/edgelessdb_handler/icon.svg +13 -0
  552. mindsdb/integrations/handlers/edgelessdb_handler/requirements.txt +1 -0
  553. mindsdb/integrations/handlers/edgelessdb_handler/tests/__init__.py +0 -0
  554. mindsdb/integrations/handlers/edgelessdb_handler/tests/test_edgelessdb_handler.py +66 -0
  555. mindsdb/integrations/handlers/elasticsearch_handler/__about__.py +9 -0
  556. mindsdb/integrations/handlers/elasticsearch_handler/__init__.py +30 -0
  557. mindsdb/integrations/handlers/elasticsearch_handler/connection_args.py +38 -0
  558. mindsdb/integrations/handlers/elasticsearch_handler/elasticsearch_handler.py +288 -0
  559. mindsdb/integrations/handlers/elasticsearch_handler/icon.svg +16 -0
  560. mindsdb/integrations/handlers/elasticsearch_handler/requirements.txt +2 -0
  561. mindsdb/integrations/handlers/elasticsearch_handler/tests/__init__.py +0 -0
  562. mindsdb/integrations/handlers/elasticsearch_handler/tests/test_elasticsearch_handler.py +32 -0
  563. mindsdb/integrations/handlers/email_handler/__about__.py +9 -0
  564. mindsdb/integrations/handlers/email_handler/__init__.py +21 -0
  565. mindsdb/integrations/handlers/email_handler/email_client.py +165 -0
  566. mindsdb/integrations/handlers/email_handler/email_handler.py +99 -0
  567. mindsdb/integrations/handlers/email_handler/email_ingestor.py +86 -0
  568. mindsdb/integrations/handlers/email_handler/email_tables.py +159 -0
  569. mindsdb/integrations/handlers/email_handler/icon.png +0 -0
  570. mindsdb/integrations/handlers/email_handler/requirements.txt +2 -0
  571. mindsdb/integrations/handlers/email_handler/settings.py +60 -0
  572. mindsdb/integrations/handlers/empress_handler/__about__.py +9 -0
  573. mindsdb/integrations/handlers/empress_handler/__init__.py +20 -0
  574. mindsdb/integrations/handlers/empress_handler/connection_args.py +42 -0
  575. mindsdb/integrations/handlers/empress_handler/empress_handler.py +211 -0
  576. mindsdb/integrations/handlers/empress_handler/icon.png +0 -0
  577. mindsdb/integrations/handlers/empress_handler/requirements.txt +1 -0
  578. mindsdb/integrations/handlers/empress_handler/tests/__init__.py +0 -0
  579. mindsdb/integrations/handlers/empress_handler/tests/test_empress_handler.py +55 -0
  580. mindsdb/integrations/handlers/eventbrite_handler/__about__.py +9 -0
  581. mindsdb/integrations/handlers/eventbrite_handler/__init__.py +27 -0
  582. mindsdb/integrations/handlers/eventbrite_handler/eventbrite_handler.py +94 -0
  583. mindsdb/integrations/handlers/eventbrite_handler/eventbrite_tables.py +612 -0
  584. mindsdb/integrations/handlers/eventbrite_handler/icon.png +0 -0
  585. mindsdb/integrations/handlers/eventbrite_handler/requirements.txt +1 -0
  586. mindsdb/integrations/handlers/eventstoredb_handler/__about__.py +9 -0
  587. mindsdb/integrations/handlers/eventstoredb_handler/__init__.py +27 -0
  588. mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py +216 -0
  589. mindsdb/integrations/handlers/eventstoredb_handler/icon.svg +10 -0
  590. mindsdb/integrations/handlers/faunadb_handler/__about__.py +9 -0
  591. mindsdb/integrations/handlers/faunadb_handler/__init__.py +30 -0
  592. mindsdb/integrations/handlers/faunadb_handler/connection_args.py +39 -0
  593. mindsdb/integrations/handlers/faunadb_handler/faunadb_handler.py +267 -0
  594. mindsdb/integrations/handlers/faunadb_handler/icon.svg +3 -0
  595. mindsdb/integrations/handlers/faunadb_handler/requirements.txt +1 -0
  596. mindsdb/integrations/handlers/faunadb_handler/tests/__init__.py +0 -0
  597. mindsdb/integrations/handlers/faunadb_handler/tests/test_faunadb_handler.py +41 -0
  598. mindsdb/integrations/handlers/file_handler/__about__.py +9 -0
  599. mindsdb/integrations/handlers/file_handler/__init__.py +16 -0
  600. mindsdb/integrations/handlers/file_handler/file_handler.py +528 -0
  601. mindsdb/integrations/handlers/file_handler/icon.svg +8 -0
  602. mindsdb/integrations/handlers/file_handler/requirements.txt +4 -0
  603. mindsdb/integrations/handlers/file_handler/tests/__init__.py +0 -0
  604. mindsdb/integrations/handlers/file_handler/tests/data/test.txt +10 -0
  605. mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py +458 -0
  606. mindsdb/integrations/handlers/financial_modeling_prep_handler/__about__.py +9 -0
  607. mindsdb/integrations/handlers/financial_modeling_prep_handler/__init__.py +19 -0
  608. mindsdb/integrations/handlers/financial_modeling_prep_handler/financial_modeling_handler.py +56 -0
  609. mindsdb/integrations/handlers/financial_modeling_prep_handler/financial_modeling_tables.py +89 -0
  610. mindsdb/integrations/handlers/financial_modeling_prep_handler/icon.svg +67 -0
  611. mindsdb/integrations/handlers/firebird_handler/__about__.py +9 -0
  612. mindsdb/integrations/handlers/firebird_handler/__init__.py +20 -0
  613. mindsdb/integrations/handlers/firebird_handler/connection_args.py +34 -0
  614. mindsdb/integrations/handlers/firebird_handler/firebird_handler.py +240 -0
  615. mindsdb/integrations/handlers/firebird_handler/icon.svg +16 -0
  616. mindsdb/integrations/handlers/firebird_handler/requirements.txt +2 -0
  617. mindsdb/integrations/handlers/firebird_handler/tests/__init__.py +0 -0
  618. mindsdb/integrations/handlers/firebird_handler/tests/test_firebird_handler.py +37 -0
  619. mindsdb/integrations/handlers/flaml_handler/__about__.py +9 -0
  620. mindsdb/integrations/handlers/flaml_handler/__init__.py +19 -0
  621. mindsdb/integrations/handlers/flaml_handler/flaml_handler.py +47 -0
  622. mindsdb/integrations/handlers/flaml_handler/icon.svg +5 -0
  623. mindsdb/integrations/handlers/flaml_handler/requirements.txt +2 -0
  624. mindsdb/integrations/handlers/frappe_handler/__about__.py +9 -0
  625. mindsdb/integrations/handlers/frappe_handler/__init__.py +19 -0
  626. mindsdb/integrations/handlers/frappe_handler/frappe_client.py +111 -0
  627. mindsdb/integrations/handlers/frappe_handler/frappe_handler.py +209 -0
  628. mindsdb/integrations/handlers/frappe_handler/frappe_tables.py +82 -0
  629. mindsdb/integrations/handlers/frappe_handler/icon.svg +11 -0
  630. mindsdb/integrations/handlers/frappe_handler/requirements.txt +0 -0
  631. mindsdb/integrations/handlers/gcs_handler/__about__.py +9 -0
  632. mindsdb/integrations/handlers/gcs_handler/__init__.py +20 -0
  633. mindsdb/integrations/handlers/gcs_handler/connection_args.py +29 -0
  634. mindsdb/integrations/handlers/gcs_handler/gcs_handler.py +375 -0
  635. mindsdb/integrations/handlers/gcs_handler/gcs_tables.py +50 -0
  636. mindsdb/integrations/handlers/gcs_handler/icon.svg +1 -0
  637. mindsdb/integrations/handlers/gcs_handler/requirements.txt +4 -0
  638. mindsdb/integrations/handlers/github_handler/__about__.py +9 -0
  639. mindsdb/integrations/handlers/github_handler/__init__.py +28 -0
  640. mindsdb/integrations/handlers/github_handler/connection_args.py +32 -0
  641. mindsdb/integrations/handlers/github_handler/github_handler.py +124 -0
  642. mindsdb/integrations/handlers/github_handler/github_tables.py +968 -0
  643. mindsdb/integrations/handlers/github_handler/icon.svg +10 -0
  644. mindsdb/integrations/handlers/github_handler/requirements.txt +1 -0
  645. mindsdb/integrations/handlers/gitlab_handler/__about__.py +9 -0
  646. mindsdb/integrations/handlers/gitlab_handler/__init__.py +19 -0
  647. mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py +84 -0
  648. mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py +393 -0
  649. mindsdb/integrations/handlers/gitlab_handler/icon.svg +6 -0
  650. mindsdb/integrations/handlers/gitlab_handler/requirements.txt +1 -0
  651. mindsdb/integrations/handlers/gmail_handler/__about__.py +9 -0
  652. mindsdb/integrations/handlers/gmail_handler/__init__.py +20 -0
  653. mindsdb/integrations/handlers/gmail_handler/connection_args.py +27 -0
  654. mindsdb/integrations/handlers/gmail_handler/gmail_handler.py +566 -0
  655. mindsdb/integrations/handlers/gmail_handler/icon.svg +14 -0
  656. mindsdb/integrations/handlers/gmail_handler/requirements.txt +2 -0
  657. mindsdb/integrations/handlers/gmail_handler/tests/__init__.py +0 -0
  658. mindsdb/integrations/handlers/gmail_handler/tests/test_gmail_handler.py +50 -0
  659. mindsdb/integrations/handlers/gmail_handler/utils.py +45 -0
  660. mindsdb/integrations/handlers/google_analytics_handler/__about__.py +9 -0
  661. mindsdb/integrations/handlers/google_analytics_handler/__init__.py +18 -0
  662. mindsdb/integrations/handlers/google_analytics_handler/google_analytics_handler.py +129 -0
  663. mindsdb/integrations/handlers/google_analytics_handler/google_analytics_tables.py +283 -0
  664. mindsdb/integrations/handlers/google_analytics_handler/icon.svg +4 -0
  665. mindsdb/integrations/handlers/google_analytics_handler/requirements.txt +2 -0
  666. mindsdb/integrations/handlers/google_analytics_handler/tests/__init__.py +0 -0
  667. mindsdb/integrations/handlers/google_analytics_handler/tests/test_google_analytics_handler.py +48 -0
  668. mindsdb/integrations/handlers/google_books_handler/__about__.py +9 -0
  669. mindsdb/integrations/handlers/google_books_handler/__init__.py +20 -0
  670. mindsdb/integrations/handlers/google_books_handler/google_books_handler.py +184 -0
  671. mindsdb/integrations/handlers/google_books_handler/google_books_tables.py +185 -0
  672. mindsdb/integrations/handlers/google_books_handler/icon.svg +5 -0
  673. mindsdb/integrations/handlers/google_books_handler/requirements.txt +2 -0
  674. mindsdb/integrations/handlers/google_books_handler/tests/__init__.py +0 -0
  675. mindsdb/integrations/handlers/google_books_handler/tests/test_google_books_handler.py +41 -0
  676. mindsdb/integrations/handlers/google_calendar_handler/__about__.py +9 -0
  677. mindsdb/integrations/handlers/google_calendar_handler/__init__.py +21 -0
  678. mindsdb/integrations/handlers/google_calendar_handler/connection_args.py +12 -0
  679. mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py +292 -0
  680. mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py +228 -0
  681. mindsdb/integrations/handlers/google_calendar_handler/icon.svg +10 -0
  682. mindsdb/integrations/handlers/google_calendar_handler/requirements.txt +3 -0
  683. mindsdb/integrations/handlers/google_calendar_handler/tests/__init__.py +0 -0
  684. mindsdb/integrations/handlers/google_calendar_handler/tests/test_google_calendar_handler.py +56 -0
  685. mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py +9 -0
  686. mindsdb/integrations/handlers/google_content_shopping_handler/__init__.py +20 -0
  687. mindsdb/integrations/handlers/google_content_shopping_handler/connection_args.py +20 -0
  688. mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py +396 -0
  689. mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py +435 -0
  690. mindsdb/integrations/handlers/google_content_shopping_handler/icon.svg +15 -0
  691. mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt +2 -0
  692. mindsdb/integrations/handlers/google_content_shopping_handler/tests/__init__.py +0 -0
  693. mindsdb/integrations/handlers/google_content_shopping_handler/tests/test_google_content_shopping_handler.py +64 -0
  694. mindsdb/integrations/handlers/google_fit_handler/__about__.py +9 -0
  695. mindsdb/integrations/handlers/google_fit_handler/__init__.py +19 -0
  696. mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py +155 -0
  697. mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py +69 -0
  698. mindsdb/integrations/handlers/google_fit_handler/icon.svg +13 -0
  699. mindsdb/integrations/handlers/google_fit_handler/requirements.txt +4 -0
  700. mindsdb/integrations/handlers/google_gemini_handler/__about__.py +9 -0
  701. mindsdb/integrations/handlers/google_gemini_handler/__init__.py +30 -0
  702. mindsdb/integrations/handlers/google_gemini_handler/google_gemini_handler.py +370 -0
  703. mindsdb/integrations/handlers/google_gemini_handler/icon.svg +3 -0
  704. mindsdb/integrations/handlers/google_gemini_handler/requirements.txt +2 -0
  705. mindsdb/integrations/handlers/google_search_handler/__about__.py +9 -0
  706. mindsdb/integrations/handlers/google_search_handler/__init__.py +20 -0
  707. mindsdb/integrations/handlers/google_search_handler/connection_args.py +15 -0
  708. mindsdb/integrations/handlers/google_search_handler/google_search_handler.py +205 -0
  709. mindsdb/integrations/handlers/google_search_handler/google_search_tables.py +220 -0
  710. mindsdb/integrations/handlers/google_search_handler/icon.svg +19 -0
  711. mindsdb/integrations/handlers/google_search_handler/requirements.txt +2 -0
  712. mindsdb/integrations/handlers/google_search_handler/tests/__init__.py +0 -0
  713. mindsdb/integrations/handlers/google_search_handler/tests/test_google_search_handler.py +55 -0
  714. mindsdb/integrations/handlers/greptimedb_handler/__about__.py +9 -0
  715. mindsdb/integrations/handlers/greptimedb_handler/__init__.py +19 -0
  716. mindsdb/integrations/handlers/greptimedb_handler/greptimedb_handler.py +21 -0
  717. mindsdb/integrations/handlers/greptimedb_handler/icon.svg +3 -0
  718. mindsdb/integrations/handlers/greptimedb_handler/requirements.txt +1 -0
  719. mindsdb/integrations/handlers/groq_handler/__about__.py +9 -0
  720. mindsdb/integrations/handlers/groq_handler/__init__.py +23 -0
  721. mindsdb/integrations/handlers/groq_handler/groq_handler.py +136 -0
  722. mindsdb/integrations/handlers/groq_handler/icon.svg +30 -0
  723. mindsdb/integrations/handlers/groq_handler/requirements.txt +2 -0
  724. mindsdb/integrations/handlers/groq_handler/settings.py +31 -0
  725. mindsdb/integrations/handlers/hackernews_handler/__about__.py +9 -0
  726. mindsdb/integrations/handlers/hackernews_handler/__init__.py +21 -0
  727. mindsdb/integrations/handlers/hackernews_handler/hn_handler.py +102 -0
  728. mindsdb/integrations/handlers/hackernews_handler/hn_table.py +152 -0
  729. mindsdb/integrations/handlers/hackernews_handler/icon.svg +11 -0
  730. mindsdb/integrations/handlers/hana_handler/__about__.py +9 -0
  731. mindsdb/integrations/handlers/hana_handler/__init__.py +20 -0
  732. mindsdb/integrations/handlers/hana_handler/connection_args.py +57 -0
  733. mindsdb/integrations/handlers/hana_handler/hana_handler.py +259 -0
  734. mindsdb/integrations/handlers/hana_handler/icon.svg +13 -0
  735. mindsdb/integrations/handlers/hana_handler/requirements.txt +2 -0
  736. mindsdb/integrations/handlers/hive_handler/__about__.py +9 -0
  737. mindsdb/integrations/handlers/hive_handler/__init__.py +20 -0
  738. mindsdb/integrations/handlers/hive_handler/connection_args.py +53 -0
  739. mindsdb/integrations/handlers/hive_handler/hive_handler.py +224 -0
  740. mindsdb/integrations/handlers/hive_handler/icon.svg +41 -0
  741. mindsdb/integrations/handlers/hive_handler/requirements.txt +3 -0
  742. mindsdb/integrations/handlers/hive_handler/tests/__init__.py +0 -0
  743. mindsdb/integrations/handlers/hive_handler/tests/test_hive_handler.py +50 -0
  744. mindsdb/integrations/handlers/hsqldb_handler/__about__.py +9 -0
  745. mindsdb/integrations/handlers/hsqldb_handler/__init__.py +20 -0
  746. mindsdb/integrations/handlers/hsqldb_handler/connection_args.py +39 -0
  747. mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py +197 -0
  748. mindsdb/integrations/handlers/hsqldb_handler/icon.png +0 -0
  749. mindsdb/integrations/handlers/hsqldb_handler/requirements.txt +1 -0
  750. mindsdb/integrations/handlers/hubspot_handler/__about__.py +9 -0
  751. mindsdb/integrations/handlers/hubspot_handler/__init__.py +27 -0
  752. mindsdb/integrations/handlers/hubspot_handler/hubspot_handler.py +96 -0
  753. mindsdb/integrations/handlers/hubspot_handler/hubspot_tables.py +589 -0
  754. mindsdb/integrations/handlers/hubspot_handler/icon.svg +3 -0
  755. mindsdb/integrations/handlers/hubspot_handler/requirements.txt +1 -0
  756. mindsdb/integrations/handlers/huggingface_api_handler/__about__.py +9 -0
  757. mindsdb/integrations/handlers/huggingface_api_handler/__init__.py +19 -0
  758. mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py +6 -0
  759. mindsdb/integrations/handlers/huggingface_api_handler/huggingface_api_handler.py +250 -0
  760. mindsdb/integrations/handlers/huggingface_api_handler/icon.svg +24 -0
  761. mindsdb/integrations/handlers/huggingface_api_handler/requirements.txt +2 -0
  762. mindsdb/integrations/handlers/huggingface_api_handler/tests/__init__.py +0 -0
  763. mindsdb/integrations/handlers/huggingface_api_handler/tests/test_huggingface_api_handler.py +9 -0
  764. mindsdb/integrations/handlers/huggingface_handler/__about__.py +9 -0
  765. mindsdb/integrations/handlers/huggingface_handler/__init__.py +20 -0
  766. mindsdb/integrations/handlers/huggingface_handler/finetune.py +223 -0
  767. mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py +383 -0
  768. mindsdb/integrations/handlers/huggingface_handler/icon.svg +24 -0
  769. mindsdb/integrations/handlers/huggingface_handler/requirements.txt +5 -0
  770. mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt +6 -0
  771. mindsdb/integrations/handlers/huggingface_handler/settings.py +27 -0
  772. mindsdb/integrations/handlers/ibm_cos_handler/__about__.py +9 -0
  773. mindsdb/integrations/handlers/ibm_cos_handler/__init__.py +30 -0
  774. mindsdb/integrations/handlers/ibm_cos_handler/connection_args.py +38 -0
  775. mindsdb/integrations/handlers/ibm_cos_handler/ibm_cos_handler.py +338 -0
  776. mindsdb/integrations/handlers/ibm_cos_handler/icon.svg +54 -0
  777. mindsdb/integrations/handlers/ibm_cos_handler/requirements.txt +1 -0
  778. mindsdb/integrations/handlers/ibm_cos_handler/tests/__init__.py +0 -0
  779. mindsdb/integrations/handlers/ibm_cos_handler/tests/test_ibm_cos_handler.py +23 -0
  780. mindsdb/integrations/handlers/ignite_handler/__about__.py +9 -0
  781. mindsdb/integrations/handlers/ignite_handler/__init__.py +20 -0
  782. mindsdb/integrations/handlers/ignite_handler/connection_args.py +46 -0
  783. mindsdb/integrations/handlers/ignite_handler/icon.svg +5 -0
  784. mindsdb/integrations/handlers/ignite_handler/ignite_handler.py +207 -0
  785. mindsdb/integrations/handlers/ignite_handler/requirements.txt +1 -0
  786. mindsdb/integrations/handlers/ignite_handler/tests/__init__.py +0 -0
  787. mindsdb/integrations/handlers/ignite_handler/tests/test_ignite_handler.py +33 -0
  788. mindsdb/integrations/handlers/impala_handler/__about__.py +9 -0
  789. mindsdb/integrations/handlers/impala_handler/__init__.py +20 -0
  790. mindsdb/integrations/handlers/impala_handler/connection_args.py +37 -0
  791. mindsdb/integrations/handlers/impala_handler/icon.svg +13 -0
  792. mindsdb/integrations/handlers/impala_handler/impala_handler.py +156 -0
  793. mindsdb/integrations/handlers/impala_handler/requirements.txt +1 -0
  794. mindsdb/integrations/handlers/impala_handler/tests/__init__.py +0 -0
  795. mindsdb/integrations/handlers/impala_handler/tests/test_impala_handler.py +50 -0
  796. mindsdb/integrations/handlers/influxdb_handler/__about__.py +9 -0
  797. mindsdb/integrations/handlers/influxdb_handler/__init__.py +26 -0
  798. mindsdb/integrations/handlers/influxdb_handler/icon.svg +14 -0
  799. mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py +105 -0
  800. mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py +81 -0
  801. mindsdb/integrations/handlers/influxdb_handler/requirements.txt +1 -0
  802. mindsdb/integrations/handlers/informix_handler/__about__.py +9 -0
  803. mindsdb/integrations/handlers/informix_handler/__init__.py +20 -0
  804. mindsdb/integrations/handlers/informix_handler/icon.svg +5 -0
  805. mindsdb/integrations/handlers/informix_handler/informix_handler.py +318 -0
  806. mindsdb/integrations/handlers/informix_handler/requirements.txt +1 -0
  807. mindsdb/integrations/handlers/informix_handler/tests/__init__.py +0 -0
  808. mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py +52 -0
  809. mindsdb/integrations/handlers/ingres_handler/__about__.py +10 -0
  810. mindsdb/integrations/handlers/ingres_handler/__init__.py +20 -0
  811. mindsdb/integrations/handlers/ingres_handler/connection_args.py +36 -0
  812. mindsdb/integrations/handlers/ingres_handler/icon.svg +6 -0
  813. mindsdb/integrations/handlers/ingres_handler/ingres_handler.py +210 -0
  814. mindsdb/integrations/handlers/ingres_handler/requirements.txt +2 -0
  815. mindsdb/integrations/handlers/ingres_handler/tests/__init__.py +0 -0
  816. mindsdb/integrations/handlers/ingres_handler/tests/test_ingres_handler.py +53 -0
  817. mindsdb/integrations/handlers/instatus_handler/__about__.py +9 -0
  818. mindsdb/integrations/handlers/instatus_handler/__init__.py +28 -0
  819. mindsdb/integrations/handlers/instatus_handler/icon.svg +5 -0
  820. mindsdb/integrations/handlers/instatus_handler/instatus_handler.py +127 -0
  821. mindsdb/integrations/handlers/instatus_handler/instatus_tables.py +393 -0
  822. mindsdb/integrations/handlers/intercom_handler/__about__.py +9 -0
  823. mindsdb/integrations/handlers/intercom_handler/__init__.py +28 -0
  824. mindsdb/integrations/handlers/intercom_handler/icon.svg +3 -0
  825. mindsdb/integrations/handlers/intercom_handler/intercom_handler.py +117 -0
  826. mindsdb/integrations/handlers/intercom_handler/intercom_tables.py +152 -0
  827. mindsdb/integrations/handlers/jira_handler/__about__.py +9 -0
  828. mindsdb/integrations/handlers/jira_handler/__init__.py +26 -0
  829. mindsdb/integrations/handlers/jira_handler/icon.svg +15 -0
  830. mindsdb/integrations/handlers/jira_handler/jira_handler.py +119 -0
  831. mindsdb/integrations/handlers/jira_handler/jira_table.py +151 -0
  832. mindsdb/integrations/handlers/jira_handler/requirements.txt +1 -0
  833. mindsdb/integrations/handlers/kinetica_handler/__about__.py +9 -0
  834. mindsdb/integrations/handlers/kinetica_handler/__init__.py +22 -0
  835. mindsdb/integrations/handlers/kinetica_handler/connection_args.py +54 -0
  836. mindsdb/integrations/handlers/kinetica_handler/icon.svg +5 -0
  837. mindsdb/integrations/handlers/kinetica_handler/kinetica_handler.py +12 -0
  838. mindsdb/integrations/handlers/lancedb_handler/__about__.py +9 -0
  839. mindsdb/integrations/handlers/lancedb_handler/__init__.py +29 -0
  840. mindsdb/integrations/handlers/lancedb_handler/connection_args.py +35 -0
  841. mindsdb/integrations/handlers/lancedb_handler/icon.svg +8 -0
  842. mindsdb/integrations/handlers/lancedb_handler/lancedb_handler.py +329 -0
  843. mindsdb/integrations/handlers/lancedb_handler/requirements.txt +3 -0
  844. mindsdb/integrations/handlers/lancedb_handler/tests/__init__.py +0 -0
  845. mindsdb/integrations/handlers/lancedb_handler/tests/test_lancedb_handler.py +99 -0
  846. mindsdb/integrations/handlers/langchain_embedding_handler/__about__.py +9 -0
  847. mindsdb/integrations/handlers/langchain_embedding_handler/__init__.py +23 -0
  848. mindsdb/integrations/handlers/langchain_embedding_handler/icon.svg +14 -0
  849. mindsdb/integrations/handlers/langchain_embedding_handler/langchain_embedding_handler.py +221 -0
  850. mindsdb/integrations/handlers/langchain_embedding_handler/requirements.txt +2 -0
  851. mindsdb/integrations/handlers/langchain_embedding_handler/vllm_embeddings.py +111 -0
  852. mindsdb/integrations/handlers/langchain_handler/__about__.py +9 -0
  853. mindsdb/integrations/handlers/langchain_handler/__init__.py +19 -0
  854. mindsdb/integrations/handlers/langchain_handler/icon.svg +14 -0
  855. mindsdb/integrations/handlers/langchain_handler/langchain_handler.py +278 -0
  856. mindsdb/integrations/handlers/langchain_handler/requirements.txt +8 -0
  857. mindsdb/integrations/handlers/langchain_handler/tools.py +247 -0
  858. mindsdb/integrations/handlers/leonardoai_handler/__about__.py +9 -0
  859. mindsdb/integrations/handlers/leonardoai_handler/__init__.py +19 -0
  860. mindsdb/integrations/handlers/leonardoai_handler/icon.svg +306 -0
  861. mindsdb/integrations/handlers/leonardoai_handler/leonardo_ai_handler.py +225 -0
  862. mindsdb/integrations/handlers/leonardoai_handler/requirements.txt +0 -0
  863. mindsdb/integrations/handlers/libsql_handler/__about__.py +9 -0
  864. mindsdb/integrations/handlers/libsql_handler/__init__.py +28 -0
  865. mindsdb/integrations/handlers/libsql_handler/connection_args.py +22 -0
  866. mindsdb/integrations/handlers/libsql_handler/icon.svg +3 -0
  867. mindsdb/integrations/handlers/libsql_handler/libsql_handler.py +192 -0
  868. mindsdb/integrations/handlers/libsql_handler/requirements.txt +1 -0
  869. mindsdb/integrations/handlers/libsql_handler/tests/__init__.py +0 -0
  870. mindsdb/integrations/handlers/libsql_handler/tests/test_libsql_handler.py +45 -0
  871. mindsdb/integrations/handlers/lightdash_handler/__about__.py +9 -0
  872. mindsdb/integrations/handlers/lightdash_handler/__init__.py +27 -0
  873. mindsdb/integrations/handlers/lightdash_handler/api.py +513 -0
  874. mindsdb/integrations/handlers/lightdash_handler/icon.png +0 -0
  875. mindsdb/integrations/handlers/lightdash_handler/lightdash_handler.py +108 -0
  876. mindsdb/integrations/handlers/lightdash_handler/lightdash_tables.py +648 -0
  877. mindsdb/integrations/handlers/lightdash_handler/tests/__init__.py +0 -0
  878. mindsdb/integrations/handlers/lightfm_handler/__about__.py +9 -0
  879. mindsdb/integrations/handlers/lightfm_handler/__init__.py +21 -0
  880. mindsdb/integrations/handlers/lightfm_handler/helpers.py +175 -0
  881. mindsdb/integrations/handlers/lightfm_handler/icon.svg +14 -0
  882. mindsdb/integrations/handlers/lightfm_handler/lightfm_handler.py +198 -0
  883. mindsdb/integrations/handlers/lightfm_handler/requirements.txt +1 -0
  884. mindsdb/integrations/handlers/lightfm_handler/settings.py +7 -0
  885. mindsdb/integrations/handlers/lightwood_handler/__about__.py +9 -0
  886. mindsdb/integrations/handlers/lightwood_handler/__init__.py +19 -0
  887. mindsdb/integrations/handlers/lightwood_handler/functions.py +252 -0
  888. mindsdb/integrations/handlers/lightwood_handler/icon.svg +13 -0
  889. mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py +581 -0
  890. mindsdb/integrations/handlers/lightwood_handler/requirements.txt +4 -0
  891. mindsdb/integrations/handlers/lightwood_handler/tests/__init__.py +0 -0
  892. mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py +258 -0
  893. mindsdb/integrations/handlers/lightwood_handler/utils.py +76 -0
  894. mindsdb/integrations/handlers/lindorm_handler/__about__.py +9 -0
  895. mindsdb/integrations/handlers/lindorm_handler/__init__.py +28 -0
  896. mindsdb/integrations/handlers/lindorm_handler/icon.svg +5 -0
  897. mindsdb/integrations/handlers/lindorm_handler/lindorm_handler.py +220 -0
  898. mindsdb/integrations/handlers/lindorm_handler/requirements.txt +2 -0
  899. mindsdb/integrations/handlers/lindorm_handler/tests/__init__.py +0 -0
  900. mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py +33 -0
  901. mindsdb/integrations/handlers/litellm_handler/__about__.py +9 -0
  902. mindsdb/integrations/handlers/litellm_handler/__init__.py +30 -0
  903. mindsdb/integrations/handlers/litellm_handler/icon.png +0 -0
  904. mindsdb/integrations/handlers/litellm_handler/litellm_handler.py +141 -0
  905. mindsdb/integrations/handlers/litellm_handler/requirements.txt +2 -0
  906. mindsdb/integrations/handlers/litellm_handler/settings.py +39 -0
  907. mindsdb/integrations/handlers/llama_index_handler/__about__.py +9 -0
  908. mindsdb/integrations/handlers/llama_index_handler/__init__.py +19 -0
  909. mindsdb/integrations/handlers/llama_index_handler/icon.svg +9 -0
  910. mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py +201 -0
  911. mindsdb/integrations/handlers/llama_index_handler/requirements.txt +5 -0
  912. mindsdb/integrations/handlers/llama_index_handler/settings.py +65 -0
  913. mindsdb/integrations/handlers/ludwig_handler/__about__.py +9 -0
  914. mindsdb/integrations/handlers/ludwig_handler/__init__.py +19 -0
  915. mindsdb/integrations/handlers/ludwig_handler/functions.py +0 -0
  916. mindsdb/integrations/handlers/ludwig_handler/icon.svg +5 -0
  917. mindsdb/integrations/handlers/ludwig_handler/ludwig_handler.py +68 -0
  918. mindsdb/integrations/handlers/ludwig_handler/requirements.txt +3 -0
  919. mindsdb/integrations/handlers/ludwig_handler/utils.py +12 -0
  920. mindsdb/integrations/handlers/luma_handler/__about__.py +9 -0
  921. mindsdb/integrations/handlers/luma_handler/__init__.py +28 -0
  922. mindsdb/integrations/handlers/luma_handler/connection_args.py +18 -0
  923. mindsdb/integrations/handlers/luma_handler/icon.png +0 -0
  924. mindsdb/integrations/handlers/luma_handler/luma.py +47 -0
  925. mindsdb/integrations/handlers/luma_handler/luma_handler.py +77 -0
  926. mindsdb/integrations/handlers/luma_handler/luma_tables.py +164 -0
  927. mindsdb/integrations/handlers/luma_handler/requirements.txt +0 -0
  928. mindsdb/integrations/handlers/mariadb_handler/__about__.py +9 -0
  929. mindsdb/integrations/handlers/mariadb_handler/__init__.py +20 -0
  930. mindsdb/integrations/handlers/mariadb_handler/connection_args.py +76 -0
  931. mindsdb/integrations/handlers/mariadb_handler/icon.svg +3 -0
  932. mindsdb/integrations/handlers/mariadb_handler/mariadb_handler.py +12 -0
  933. mindsdb/integrations/handlers/mariadb_handler/requirements.txt +1 -0
  934. mindsdb/integrations/handlers/materialize_handler/__about__.py +9 -0
  935. mindsdb/integrations/handlers/materialize_handler/__init__.py +20 -0
  936. mindsdb/integrations/handlers/materialize_handler/icon.svg +7 -0
  937. mindsdb/integrations/handlers/materialize_handler/materialize_handler.py +43 -0
  938. mindsdb/integrations/handlers/materialize_handler/tests/__init__.py +0 -0
  939. mindsdb/integrations/handlers/materialize_handler/tests/test_materialize_handler.py +56 -0
  940. mindsdb/integrations/handlers/matrixone_handler/__about__.py +9 -0
  941. mindsdb/integrations/handlers/matrixone_handler/__init__.py +20 -0
  942. mindsdb/integrations/handlers/matrixone_handler/connection_args.py +52 -0
  943. mindsdb/integrations/handlers/matrixone_handler/icon.svg +9 -0
  944. mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py +168 -0
  945. mindsdb/integrations/handlers/matrixone_handler/requirements.txt +1 -0
  946. mindsdb/integrations/handlers/matrixone_handler/tests/__init__.py +0 -0
  947. mindsdb/integrations/handlers/matrixone_handler/tests/test_matrixone_handler.py +56 -0
  948. mindsdb/integrations/handlers/maxdb_handler/__about__.py +9 -0
  949. mindsdb/integrations/handlers/maxdb_handler/__init__.py +28 -0
  950. mindsdb/integrations/handlers/maxdb_handler/connection_args.py +42 -0
  951. mindsdb/integrations/handlers/maxdb_handler/icon.svg +13 -0
  952. mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py +185 -0
  953. mindsdb/integrations/handlers/maxdb_handler/requirements.txt +1 -0
  954. mindsdb/integrations/handlers/maxdb_handler/tests/__init__.py +0 -0
  955. mindsdb/integrations/handlers/maxdb_handler/tests/test_maxdb_handler.py +55 -0
  956. mindsdb/integrations/handlers/mediawiki_handler/__about__.py +9 -0
  957. mindsdb/integrations/handlers/mediawiki_handler/__init__.py +27 -0
  958. mindsdb/integrations/handlers/mediawiki_handler/icon.svg +153 -0
  959. mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py +87 -0
  960. mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py +98 -0
  961. mindsdb/integrations/handlers/mediawiki_handler/requirements.txt +1 -0
  962. mindsdb/integrations/handlers/mendeley_handler/__about__.py +9 -0
  963. mindsdb/integrations/handlers/mendeley_handler/__init__.py +19 -0
  964. mindsdb/integrations/handlers/mendeley_handler/icon.svg +14 -0
  965. mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py +225 -0
  966. mindsdb/integrations/handlers/mendeley_handler/mendeley_tables.py +134 -0
  967. mindsdb/integrations/handlers/mendeley_handler/requirements.txt +1 -0
  968. mindsdb/integrations/handlers/mendeley_handler/tests/__init__.py +0 -0
  969. mindsdb/integrations/handlers/mendeley_handler/tests/test_mendeley_handler.py +108 -0
  970. mindsdb/integrations/handlers/merlion_handler/__about__.py +9 -0
  971. mindsdb/integrations/handlers/merlion_handler/__init__.py +19 -0
  972. mindsdb/integrations/handlers/merlion_handler/adapters.py +182 -0
  973. mindsdb/integrations/handlers/merlion_handler/icon.svg +16 -0
  974. mindsdb/integrations/handlers/merlion_handler/merlion_handler.py +205 -0
  975. mindsdb/integrations/handlers/merlion_handler/requirements.txt +2 -0
  976. mindsdb/integrations/handlers/milvus_handler/__about__.py +9 -0
  977. mindsdb/integrations/handlers/milvus_handler/__init__.py +29 -0
  978. mindsdb/integrations/handlers/milvus_handler/connection_args.py +112 -0
  979. mindsdb/integrations/handlers/milvus_handler/icon.svg +5 -0
  980. mindsdb/integrations/handlers/milvus_handler/milvus_handler.py +332 -0
  981. mindsdb/integrations/handlers/milvus_handler/requirements.txt +1 -0
  982. mindsdb/integrations/handlers/milvus_handler/tests/__init__.py +0 -0
  983. mindsdb/integrations/handlers/minds_endpoint_handler/__about__.py +9 -0
  984. mindsdb/integrations/handlers/minds_endpoint_handler/__init__.py +23 -0
  985. mindsdb/integrations/handlers/minds_endpoint_handler/icon.svg +13 -0
  986. mindsdb/integrations/handlers/minds_endpoint_handler/minds_endpoint_handler.py +132 -0
  987. mindsdb/integrations/handlers/minds_endpoint_handler/requirements.txt +2 -0
  988. mindsdb/integrations/handlers/minds_endpoint_handler/settings.py +18 -0
  989. mindsdb/integrations/handlers/minds_endpoint_handler/tests/__init__.py +0 -0
  990. mindsdb/integrations/handlers/minds_endpoint_handler/tests/test_minds_endpoint_handler.py +160 -0
  991. mindsdb/integrations/handlers/mlflow_handler/__about__.py +9 -0
  992. mindsdb/integrations/handlers/mlflow_handler/__init__.py +18 -0
  993. mindsdb/integrations/handlers/mlflow_handler/icon.svg +4 -0
  994. mindsdb/integrations/handlers/mlflow_handler/mlflow_handler.py +83 -0
  995. mindsdb/integrations/handlers/mlflow_handler/requirements.txt +1 -0
  996. mindsdb/integrations/handlers/monetdb_handler/__about__.py +9 -0
  997. mindsdb/integrations/handlers/monetdb_handler/__init__.py +20 -0
  998. mindsdb/integrations/handlers/monetdb_handler/connection_args.py +44 -0
  999. mindsdb/integrations/handlers/monetdb_handler/icon.svg +4 -0
  1000. mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py +219 -0
  1001. mindsdb/integrations/handlers/monetdb_handler/requirements.txt +2 -0
  1002. mindsdb/integrations/handlers/monetdb_handler/tests/__init__.py +0 -0
  1003. mindsdb/integrations/handlers/monetdb_handler/tests/test_monetdb_handler.py +50 -0
  1004. mindsdb/integrations/handlers/monetdb_handler/utils/__init__.py +0 -0
  1005. mindsdb/integrations/handlers/monetdb_handler/utils/monet_get_id.py +50 -0
  1006. mindsdb/integrations/handlers/mongodb_handler/__about__.py +9 -0
  1007. mindsdb/integrations/handlers/mongodb_handler/__init__.py +21 -0
  1008. mindsdb/integrations/handlers/mongodb_handler/connection_args.py +46 -0
  1009. mindsdb/integrations/handlers/mongodb_handler/icon.svg +3 -0
  1010. mindsdb/integrations/handlers/mongodb_handler/mongodb_handler.py +372 -0
  1011. mindsdb/integrations/handlers/mongodb_handler/tests/__init__.py +0 -0
  1012. mindsdb/integrations/handlers/mongodb_handler/tests/test_mongodb_handler.py +125 -0
  1013. mindsdb/integrations/handlers/mongodb_handler/utils/__init__.py +0 -0
  1014. mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_render.py +286 -0
  1015. mindsdb/integrations/handlers/monkeylearn_handler/__about__.py +9 -0
  1016. mindsdb/integrations/handlers/monkeylearn_handler/__init__.py +19 -0
  1017. mindsdb/integrations/handlers/monkeylearn_handler/icon.png +0 -0
  1018. mindsdb/integrations/handlers/monkeylearn_handler/monkeylearn_handler.py +81 -0
  1019. mindsdb/integrations/handlers/monkeylearn_handler/requirements.txt +1 -0
  1020. mindsdb/integrations/handlers/ms_one_drive_handler/__about__.py +9 -0
  1021. mindsdb/integrations/handlers/ms_one_drive_handler/__init__.py +27 -0
  1022. mindsdb/integrations/handlers/ms_one_drive_handler/icon.svg +31 -0
  1023. mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py +102 -0
  1024. mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py +252 -0
  1025. mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py +100 -0
  1026. mindsdb/integrations/handlers/ms_teams_handler/__about__.py +9 -0
  1027. mindsdb/integrations/handlers/ms_teams_handler/__init__.py +27 -0
  1028. mindsdb/integrations/handlers/ms_teams_handler/icon.svg +23 -0
  1029. mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py +193 -0
  1030. mindsdb/integrations/handlers/ms_teams_handler/requirements.txt +2 -0
  1031. mindsdb/integrations/handlers/mssql_handler/__about__.py +9 -0
  1032. mindsdb/integrations/handlers/mssql_handler/__init__.py +21 -0
  1033. mindsdb/integrations/handlers/mssql_handler/connection_args.py +52 -0
  1034. mindsdb/integrations/handlers/mssql_handler/icon.svg +21 -0
  1035. mindsdb/integrations/handlers/mssql_handler/mssql_handler.py +218 -0
  1036. mindsdb/integrations/handlers/mssql_handler/requirements.txt +1 -0
  1037. mindsdb/integrations/handlers/mssql_handler/tests/__init__.py +0 -0
  1038. mindsdb/integrations/handlers/mssql_handler/tests/test_mssql_handler.py +169 -0
  1039. mindsdb/integrations/handlers/mysql_handler/__about__.py +9 -0
  1040. mindsdb/integrations/handlers/mysql_handler/__init__.py +20 -0
  1041. mindsdb/integrations/handlers/mysql_handler/connection_args.py +76 -0
  1042. mindsdb/integrations/handlers/mysql_handler/icon.svg +4 -0
  1043. mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +214 -0
  1044. mindsdb/integrations/handlers/mysql_handler/requirements.txt +1 -0
  1045. mindsdb/integrations/handlers/mysql_handler/settings.py +46 -0
  1046. mindsdb/integrations/handlers/neuralforecast_handler/__about__.py +9 -0
  1047. mindsdb/integrations/handlers/neuralforecast_handler/__init__.py +19 -0
  1048. mindsdb/integrations/handlers/neuralforecast_handler/icon.svg +5 -0
  1049. mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py +135 -0
  1050. mindsdb/integrations/handlers/neuralforecast_handler/requirements.txt +2 -0
  1051. mindsdb/integrations/handlers/neuralforecast_handler/requirements_extra.txt +2 -0
  1052. mindsdb/integrations/handlers/newsapi_handler/__about__.py +9 -0
  1053. mindsdb/integrations/handlers/newsapi_handler/__init__.py +29 -0
  1054. mindsdb/integrations/handlers/newsapi_handler/connection_args.py +14 -0
  1055. mindsdb/integrations/handlers/newsapi_handler/icon.png +0 -0
  1056. mindsdb/integrations/handlers/newsapi_handler/newsapi_handler.py +209 -0
  1057. mindsdb/integrations/handlers/newsapi_handler/requirements.txt +1 -0
  1058. mindsdb/integrations/handlers/newsapi_handler/tests/__init__.py +0 -0
  1059. mindsdb/integrations/handlers/newsapi_handler/tests/test_newsapi_handler.py +90 -0
  1060. mindsdb/integrations/handlers/notion_handler/__about__.py +9 -0
  1061. mindsdb/integrations/handlers/notion_handler/__init__.py +30 -0
  1062. mindsdb/integrations/handlers/notion_handler/icon.svg +11 -0
  1063. mindsdb/integrations/handlers/notion_handler/notion_handler.py +238 -0
  1064. mindsdb/integrations/handlers/notion_handler/notion_table.py +422 -0
  1065. mindsdb/integrations/handlers/notion_handler/requirements.txt +1 -0
  1066. mindsdb/integrations/handlers/notion_handler/tests/__init__.py +0 -0
  1067. mindsdb/integrations/handlers/notion_handler/tests/test_notion_handler.py +62 -0
  1068. mindsdb/integrations/handlers/npm_handler/__about__.py +9 -0
  1069. mindsdb/integrations/handlers/npm_handler/__init__.py +27 -0
  1070. mindsdb/integrations/handlers/npm_handler/api.py +26 -0
  1071. mindsdb/integrations/handlers/npm_handler/icon.svg +11 -0
  1072. mindsdb/integrations/handlers/npm_handler/npm_handler.py +53 -0
  1073. mindsdb/integrations/handlers/npm_handler/npm_tables.py +242 -0
  1074. mindsdb/integrations/handlers/npm_handler/tests/__init__.py +0 -0
  1075. mindsdb/integrations/handlers/nuo_jdbc_handler/__about__.py +9 -0
  1076. mindsdb/integrations/handlers/nuo_jdbc_handler/__init__.py +21 -0
  1077. mindsdb/integrations/handlers/nuo_jdbc_handler/connection_args.py +65 -0
  1078. mindsdb/integrations/handlers/nuo_jdbc_handler/icon.svg +3 -0
  1079. mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py +228 -0
  1080. mindsdb/integrations/handlers/nuo_jdbc_handler/requirements.txt +1 -0
  1081. mindsdb/integrations/handlers/nuo_jdbc_handler/tests/__init__.py +0 -0
  1082. mindsdb/integrations/handlers/nuo_jdbc_handler/tests/test_nuo_handler.py +50 -0
  1083. mindsdb/integrations/handlers/oceanbase_handler/__about__.py +9 -0
  1084. mindsdb/integrations/handlers/oceanbase_handler/__init__.py +20 -0
  1085. mindsdb/integrations/handlers/oceanbase_handler/icon.svg +4 -0
  1086. mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py +48 -0
  1087. mindsdb/integrations/handlers/oceanbase_handler/requirements.txt +1 -0
  1088. mindsdb/integrations/handlers/oceanbase_handler/tests/__init__.py +0 -0
  1089. mindsdb/integrations/handlers/oceanbase_handler/tests/test_oceanbase_handler.py +56 -0
  1090. mindsdb/integrations/handlers/oilpriceapi_handler/__about__.py +9 -0
  1091. mindsdb/integrations/handlers/oilpriceapi_handler/__init__.py +28 -0
  1092. mindsdb/integrations/handlers/oilpriceapi_handler/connection_args.py +18 -0
  1093. mindsdb/integrations/handlers/oilpriceapi_handler/icon.svg +7 -0
  1094. mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi.py +45 -0
  1095. mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_handler.py +100 -0
  1096. mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_tables.py +208 -0
  1097. mindsdb/integrations/handlers/ollama_handler/__about__.py +9 -0
  1098. mindsdb/integrations/handlers/ollama_handler/__init__.py +19 -0
  1099. mindsdb/integrations/handlers/ollama_handler/icon.png +0 -0
  1100. mindsdb/integrations/handlers/ollama_handler/ollama_handler.py +171 -0
  1101. mindsdb/integrations/handlers/openai_handler/__about__.py +9 -0
  1102. mindsdb/integrations/handlers/openai_handler/__init__.py +22 -0
  1103. mindsdb/integrations/handlers/openai_handler/constants.py +36 -0
  1104. mindsdb/integrations/handlers/openai_handler/creation_args.py +14 -0
  1105. mindsdb/integrations/handlers/openai_handler/helpers.py +197 -0
  1106. mindsdb/integrations/handlers/openai_handler/icon.svg +10 -0
  1107. mindsdb/integrations/handlers/openai_handler/model_using_args.py +5 -0
  1108. mindsdb/integrations/handlers/openai_handler/openai_handler.py +1188 -0
  1109. mindsdb/integrations/handlers/openai_handler/requirements.txt +2 -0
  1110. mindsdb/integrations/handlers/openai_handler/tests/__init__.py +0 -0
  1111. mindsdb/integrations/handlers/openai_handler/tests/test_openai_handler.py +509 -0
  1112. mindsdb/integrations/handlers/openbb_handler/__about__.py +9 -0
  1113. mindsdb/integrations/handlers/openbb_handler/__init__.py +27 -0
  1114. mindsdb/integrations/handlers/openbb_handler/icon.svg +3 -0
  1115. mindsdb/integrations/handlers/openbb_handler/openbb_handler.py +119 -0
  1116. mindsdb/integrations/handlers/openbb_handler/openbb_tables.py +337 -0
  1117. mindsdb/integrations/handlers/openbb_handler/requirements.txt +2 -0
  1118. mindsdb/integrations/handlers/opengauss_handler/__about__.py +9 -0
  1119. mindsdb/integrations/handlers/opengauss_handler/__init__.py +21 -0
  1120. mindsdb/integrations/handlers/opengauss_handler/connection_args.py +36 -0
  1121. mindsdb/integrations/handlers/opengauss_handler/icon.svg +6 -0
  1122. mindsdb/integrations/handlers/opengauss_handler/opengauss_handler.py +11 -0
  1123. mindsdb/integrations/handlers/opengauss_handler/tests/__init__.py +0 -0
  1124. mindsdb/integrations/handlers/opengauss_handler/tests/test_opengauss_handler.py +45 -0
  1125. mindsdb/integrations/handlers/openstreetmap_handler/__about__.py +9 -0
  1126. mindsdb/integrations/handlers/openstreetmap_handler/__init__.py +27 -0
  1127. mindsdb/integrations/handlers/openstreetmap_handler/icon.svg +10 -0
  1128. mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_handler.py +90 -0
  1129. mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_tables.py +243 -0
  1130. mindsdb/integrations/handlers/openstreetmap_handler/requirements.txt +1 -0
  1131. mindsdb/integrations/handlers/openstreetmap_handler/tests/__init__.py +0 -0
  1132. mindsdb/integrations/handlers/openstreetmap_handler/tests/test_openstreetmap_handler.py +37 -0
  1133. mindsdb/integrations/handlers/oracle_handler/__about__.py +9 -0
  1134. mindsdb/integrations/handlers/oracle_handler/__init__.py +28 -0
  1135. mindsdb/integrations/handlers/oracle_handler/connection_args.py +70 -0
  1136. mindsdb/integrations/handlers/oracle_handler/icon.svg +3 -0
  1137. mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +246 -0
  1138. mindsdb/integrations/handlers/oracle_handler/requirements.txt +1 -0
  1139. mindsdb/integrations/handlers/oracle_handler/tests/__init__.py +0 -0
  1140. mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py +32 -0
  1141. mindsdb/integrations/handlers/orioledb_handler/__about__.py +9 -0
  1142. mindsdb/integrations/handlers/orioledb_handler/__init__.py +21 -0
  1143. mindsdb/integrations/handlers/orioledb_handler/connection_args.py +36 -0
  1144. mindsdb/integrations/handlers/orioledb_handler/icon.svg +6 -0
  1145. mindsdb/integrations/handlers/orioledb_handler/orioledb_handler.py +11 -0
  1146. mindsdb/integrations/handlers/orioledb_handler/tests/__init__.py +0 -0
  1147. mindsdb/integrations/handlers/orioledb_handler/tests/test_orioledb_handler.py +56 -0
  1148. mindsdb/integrations/handlers/palm_handler/__about__.py +9 -0
  1149. mindsdb/integrations/handlers/palm_handler/__init__.py +19 -0
  1150. mindsdb/integrations/handlers/palm_handler/icon.svg +9 -0
  1151. mindsdb/integrations/handlers/palm_handler/palm_handler.py +448 -0
  1152. mindsdb/integrations/handlers/palm_handler/requirements.txt +1 -0
  1153. mindsdb/integrations/handlers/paypal_handler/__about__.py +9 -0
  1154. mindsdb/integrations/handlers/paypal_handler/__init__.py +27 -0
  1155. mindsdb/integrations/handlers/paypal_handler/icon.svg +5 -0
  1156. mindsdb/integrations/handlers/paypal_handler/paypal_handler.py +145 -0
  1157. mindsdb/integrations/handlers/paypal_handler/paypal_tables.py +283 -0
  1158. mindsdb/integrations/handlers/paypal_handler/requirements.txt +1 -0
  1159. mindsdb/integrations/handlers/pgvector_handler/__about__.py +9 -0
  1160. mindsdb/integrations/handlers/pgvector_handler/__init__.py +29 -0
  1161. mindsdb/integrations/handlers/pgvector_handler/connection_args.py +54 -0
  1162. mindsdb/integrations/handlers/pgvector_handler/icon.svg +23 -0
  1163. mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +447 -0
  1164. mindsdb/integrations/handlers/pgvector_handler/requirements.txt +0 -0
  1165. mindsdb/integrations/handlers/phoenix_handler/__about__.py +9 -0
  1166. mindsdb/integrations/handlers/phoenix_handler/__init__.py +20 -0
  1167. mindsdb/integrations/handlers/phoenix_handler/connection_args.py +50 -0
  1168. mindsdb/integrations/handlers/phoenix_handler/icon.png +0 -0
  1169. mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py +229 -0
  1170. mindsdb/integrations/handlers/phoenix_handler/requirements.txt +2 -0
  1171. mindsdb/integrations/handlers/phoenix_handler/tests/__init__.py +0 -0
  1172. mindsdb/integrations/handlers/phoenix_handler/tests/test_phoenix_handler.py +33 -0
  1173. mindsdb/integrations/handlers/pinecone_handler/__about__.py +9 -0
  1174. mindsdb/integrations/handlers/pinecone_handler/__init__.py +29 -0
  1175. mindsdb/integrations/handlers/pinecone_handler/connection_args.py +53 -0
  1176. mindsdb/integrations/handlers/pinecone_handler/icon.svg +21 -0
  1177. mindsdb/integrations/handlers/pinecone_handler/pinecone_handler.py +304 -0
  1178. mindsdb/integrations/handlers/pinecone_handler/requirements.txt +1 -0
  1179. mindsdb/integrations/handlers/pinecone_handler/tests/__init__.py +0 -0
  1180. mindsdb/integrations/handlers/pinot_handler/__about__.py +9 -0
  1181. mindsdb/integrations/handlers/pinot_handler/__init__.py +20 -0
  1182. mindsdb/integrations/handlers/pinot_handler/connection_args.py +49 -0
  1183. mindsdb/integrations/handlers/pinot_handler/icon.svg +7 -0
  1184. mindsdb/integrations/handlers/pinot_handler/pinot_handler.py +223 -0
  1185. mindsdb/integrations/handlers/pinot_handler/requirements.txt +1 -0
  1186. mindsdb/integrations/handlers/pinot_handler/tests/__init__.py +0 -0
  1187. mindsdb/integrations/handlers/pinot_handler/tests/test_pinot_handler.py +36 -0
  1188. mindsdb/integrations/handlers/pirateweather_handler/__about__.py +9 -0
  1189. mindsdb/integrations/handlers/pirateweather_handler/__init__.py +29 -0
  1190. mindsdb/integrations/handlers/pirateweather_handler/connection_args.py +14 -0
  1191. mindsdb/integrations/handlers/pirateweather_handler/icon.png +0 -0
  1192. mindsdb/integrations/handlers/pirateweather_handler/pirateweather_handler.py +236 -0
  1193. mindsdb/integrations/handlers/plaid_handler/__about__.py +9 -0
  1194. mindsdb/integrations/handlers/plaid_handler/__init__.py +21 -0
  1195. mindsdb/integrations/handlers/plaid_handler/icon.svg +3 -0
  1196. mindsdb/integrations/handlers/plaid_handler/plaid_handler.py +225 -0
  1197. mindsdb/integrations/handlers/plaid_handler/plaid_tables.py +159 -0
  1198. mindsdb/integrations/handlers/plaid_handler/requirements.txt +1 -0
  1199. mindsdb/integrations/handlers/plaid_handler/utils.py +9 -0
  1200. mindsdb/integrations/handlers/planetscale_handler/__about__.py +9 -0
  1201. mindsdb/integrations/handlers/planetscale_handler/__init__.py +20 -0
  1202. mindsdb/integrations/handlers/planetscale_handler/connection_args.py +36 -0
  1203. mindsdb/integrations/handlers/planetscale_handler/icon.svg +3 -0
  1204. mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py +14 -0
  1205. mindsdb/integrations/handlers/planetscale_handler/requirements.txt +1 -0
  1206. mindsdb/integrations/handlers/popularity_recommender_handler/__about__.py +9 -0
  1207. mindsdb/integrations/handlers/popularity_recommender_handler/__init__.py +21 -0
  1208. mindsdb/integrations/handlers/popularity_recommender_handler/icon.svg +10 -0
  1209. mindsdb/integrations/handlers/popularity_recommender_handler/popularity_recommender_handler.py +103 -0
  1210. mindsdb/integrations/handlers/popularity_recommender_handler/requirements.txt +1 -0
  1211. mindsdb/integrations/handlers/portkey_handler/__about__.py +9 -0
  1212. mindsdb/integrations/handlers/portkey_handler/__init__.py +22 -0
  1213. mindsdb/integrations/handlers/portkey_handler/icon.svg +9 -0
  1214. mindsdb/integrations/handlers/portkey_handler/portkey_handler.py +79 -0
  1215. mindsdb/integrations/handlers/portkey_handler/requirements.txt +1 -0
  1216. mindsdb/integrations/handlers/postgres_handler/__about__.py +9 -0
  1217. mindsdb/integrations/handlers/postgres_handler/__init__.py +20 -0
  1218. mindsdb/integrations/handlers/postgres_handler/connection_args.py +65 -0
  1219. mindsdb/integrations/handlers/postgres_handler/icon.svg +23 -0
  1220. mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +396 -0
  1221. mindsdb/integrations/handlers/postgres_handler/tests/__init__.py +0 -0
  1222. mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py +172 -0
  1223. mindsdb/integrations/handlers/pycaret_handler/__about__.py +9 -0
  1224. mindsdb/integrations/handlers/pycaret_handler/__init__.py +22 -0
  1225. mindsdb/integrations/handlers/pycaret_handler/icon.png +0 -0
  1226. mindsdb/integrations/handlers/pycaret_handler/pycaret_handler.py +116 -0
  1227. mindsdb/integrations/handlers/pycaret_handler/requirements.txt +2 -0
  1228. mindsdb/integrations/handlers/pycaret_handler/test/__init__.py +0 -0
  1229. mindsdb/integrations/handlers/pycaret_handler/test/test_pycaret.py +242 -0
  1230. mindsdb/integrations/handlers/pypi_handler/__about__.py +9 -0
  1231. mindsdb/integrations/handlers/pypi_handler/__init__.py +28 -0
  1232. mindsdb/integrations/handlers/pypi_handler/api.py +152 -0
  1233. mindsdb/integrations/handlers/pypi_handler/icon.svg +123 -0
  1234. mindsdb/integrations/handlers/pypi_handler/pypi_handler.py +73 -0
  1235. mindsdb/integrations/handlers/pypi_handler/pypi_tables.py +263 -0
  1236. mindsdb/integrations/handlers/qdrant_handler/__about__.py +9 -0
  1237. mindsdb/integrations/handlers/qdrant_handler/__init__.py +29 -0
  1238. mindsdb/integrations/handlers/qdrant_handler/connection_args.py +75 -0
  1239. mindsdb/integrations/handlers/qdrant_handler/icon.svg +10 -0
  1240. mindsdb/integrations/handlers/qdrant_handler/qdrant_handler.py +402 -0
  1241. mindsdb/integrations/handlers/qdrant_handler/requirements.txt +1 -0
  1242. mindsdb/integrations/handlers/questdb_handler/__about__.py +9 -0
  1243. mindsdb/integrations/handlers/questdb_handler/__init__.py +20 -0
  1244. mindsdb/integrations/handlers/questdb_handler/icon.svg +25 -0
  1245. mindsdb/integrations/handlers/questdb_handler/questdb_handler.py +72 -0
  1246. mindsdb/integrations/handlers/questdb_handler/requirements.txt +1 -0
  1247. mindsdb/integrations/handlers/questdb_handler/tests/__init__.py +0 -0
  1248. mindsdb/integrations/handlers/questdb_handler/tests/test_questdb_handler.py +35 -0
  1249. mindsdb/integrations/handlers/quickbooks_handler/__about__.py +9 -0
  1250. mindsdb/integrations/handlers/quickbooks_handler/__init__.py +21 -0
  1251. mindsdb/integrations/handlers/quickbooks_handler/icon.svg +11 -0
  1252. mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py +97 -0
  1253. mindsdb/integrations/handlers/quickbooks_handler/quickbooks_table.py +374 -0
  1254. mindsdb/integrations/handlers/quickbooks_handler/requirements.txt +1 -0
  1255. mindsdb/integrations/handlers/rag_handler/__about__.py +9 -0
  1256. mindsdb/integrations/handlers/rag_handler/__init__.py +29 -0
  1257. mindsdb/integrations/handlers/rag_handler/exceptions.py +26 -0
  1258. mindsdb/integrations/handlers/rag_handler/icon.svg +13 -0
  1259. mindsdb/integrations/handlers/rag_handler/ingest.py +185 -0
  1260. mindsdb/integrations/handlers/rag_handler/rag.py +147 -0
  1261. mindsdb/integrations/handlers/rag_handler/rag_handler.py +144 -0
  1262. mindsdb/integrations/handlers/rag_handler/requirements.txt +6 -0
  1263. mindsdb/integrations/handlers/rag_handler/settings.py +479 -0
  1264. mindsdb/integrations/handlers/ray_serve_handler/__about__.py +9 -0
  1265. mindsdb/integrations/handlers/ray_serve_handler/__init__.py +18 -0
  1266. mindsdb/integrations/handlers/ray_serve_handler/icon.svg +3 -0
  1267. mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py +66 -0
  1268. mindsdb/integrations/handlers/reddit_handler/__about__.py +9 -0
  1269. mindsdb/integrations/handlers/reddit_handler/__init__.py +21 -0
  1270. mindsdb/integrations/handlers/reddit_handler/icon.svg +11 -0
  1271. mindsdb/integrations/handlers/reddit_handler/reddit_handler.py +106 -0
  1272. mindsdb/integrations/handlers/reddit_handler/reddit_tables.py +195 -0
  1273. mindsdb/integrations/handlers/reddit_handler/requirements.txt +1 -0
  1274. mindsdb/integrations/handlers/redshift_handler/__about__.py +9 -0
  1275. mindsdb/integrations/handlers/redshift_handler/__init__.py +20 -0
  1276. mindsdb/integrations/handlers/redshift_handler/connection_args.py +58 -0
  1277. mindsdb/integrations/handlers/redshift_handler/icon.svg +9 -0
  1278. mindsdb/integrations/handlers/redshift_handler/redshift_handler.py +69 -0
  1279. mindsdb/integrations/handlers/redshift_handler/tests/__init__.py +0 -0
  1280. mindsdb/integrations/handlers/redshift_handler/tests/test_redshift_handler.py +154 -0
  1281. mindsdb/integrations/handlers/replicate_handler/__about__.py +9 -0
  1282. mindsdb/integrations/handlers/replicate_handler/__init__.py +19 -0
  1283. mindsdb/integrations/handlers/replicate_handler/assets/Arjuna.png +0 -0
  1284. mindsdb/integrations/handlers/replicate_handler/assets/groot.png +0 -0
  1285. mindsdb/integrations/handlers/replicate_handler/assets/warrior.png +0 -0
  1286. mindsdb/integrations/handlers/replicate_handler/icon.svg +5 -0
  1287. mindsdb/integrations/handlers/replicate_handler/replicate_handler.py +162 -0
  1288. mindsdb/integrations/handlers/replicate_handler/requirements.txt +1 -0
  1289. mindsdb/integrations/handlers/rocket_chat_handler/__about__.py +9 -0
  1290. mindsdb/integrations/handlers/rocket_chat_handler/__init__.py +19 -0
  1291. mindsdb/integrations/handlers/rocket_chat_handler/icon.svg +6 -0
  1292. mindsdb/integrations/handlers/rocket_chat_handler/requirements.txt +1 -0
  1293. mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py +153 -0
  1294. mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_tables.py +201 -0
  1295. mindsdb/integrations/handlers/rockset_handler/__about__.py +9 -0
  1296. mindsdb/integrations/handlers/rockset_handler/__init__.py +21 -0
  1297. mindsdb/integrations/handlers/rockset_handler/connection_args.py +45 -0
  1298. mindsdb/integrations/handlers/rockset_handler/icon.svg +5 -0
  1299. mindsdb/integrations/handlers/rockset_handler/requirements.txt +1 -0
  1300. mindsdb/integrations/handlers/rockset_handler/rockset_handler.py +11 -0
  1301. mindsdb/integrations/handlers/rockset_handler/tests/__init__.py +0 -0
  1302. mindsdb/integrations/handlers/rockset_handler/tests/test.png +0 -0
  1303. mindsdb/integrations/handlers/rockset_handler/tests/test2.png +0 -0
  1304. mindsdb/integrations/handlers/rockset_handler/tests/test_rockset_handler.py +32 -0
  1305. mindsdb/integrations/handlers/s3_handler/__about__.py +9 -0
  1306. mindsdb/integrations/handlers/s3_handler/__init__.py +20 -0
  1307. mindsdb/integrations/handlers/s3_handler/connection_args.py +47 -0
  1308. mindsdb/integrations/handlers/s3_handler/icon.svg +15 -0
  1309. mindsdb/integrations/handlers/s3_handler/s3_handler.py +454 -0
  1310. mindsdb/integrations/handlers/s3_handler/tests/__init__.py +0 -0
  1311. mindsdb/integrations/handlers/s3_handler/tests/test_s3_handler.py +37 -0
  1312. mindsdb/integrations/handlers/salesforce_handler/__about__.py +9 -0
  1313. mindsdb/integrations/handlers/salesforce_handler/__init__.py +30 -0
  1314. mindsdb/integrations/handlers/salesforce_handler/connection_args.py +39 -0
  1315. mindsdb/integrations/handlers/salesforce_handler/icon.svg +1 -0
  1316. mindsdb/integrations/handlers/salesforce_handler/requirements.txt +1 -0
  1317. mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py +180 -0
  1318. mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py +129 -0
  1319. mindsdb/integrations/handlers/sap_erp_handler/__about__.py +9 -0
  1320. mindsdb/integrations/handlers/sap_erp_handler/__init__.py +27 -0
  1321. mindsdb/integrations/handlers/sap_erp_handler/api.py +79 -0
  1322. mindsdb/integrations/handlers/sap_erp_handler/icon.svg +13 -0
  1323. mindsdb/integrations/handlers/sap_erp_handler/sap_erp_handler.py +161 -0
  1324. mindsdb/integrations/handlers/sap_erp_handler/sap_erp_tables.py +1928 -0
  1325. mindsdb/integrations/handlers/sap_erp_handler/tests/__init__.py +0 -0
  1326. mindsdb/integrations/handlers/scylla_handler/__about__.py +9 -0
  1327. mindsdb/integrations/handlers/scylla_handler/__init__.py +21 -0
  1328. mindsdb/integrations/handlers/scylla_handler/connection_args.py +50 -0
  1329. mindsdb/integrations/handlers/scylla_handler/icon.svg +17 -0
  1330. mindsdb/integrations/handlers/scylla_handler/requirements.txt +1 -0
  1331. mindsdb/integrations/handlers/scylla_handler/scylla_handler.py +205 -0
  1332. mindsdb/integrations/handlers/scylla_handler/tests/__init__.py +0 -0
  1333. mindsdb/integrations/handlers/scylla_handler/tests/test_scylla_handler.py +38 -0
  1334. mindsdb/integrations/handlers/sendinblue_handler/__about__.py +9 -0
  1335. mindsdb/integrations/handlers/sendinblue_handler/__init__.py +27 -0
  1336. mindsdb/integrations/handlers/sendinblue_handler/icon.svg +3 -0
  1337. mindsdb/integrations/handlers/sendinblue_handler/requirements.txt +1 -0
  1338. mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py +94 -0
  1339. mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py +276 -0
  1340. mindsdb/integrations/handlers/sentence_transformers_handler/__about__.py +9 -0
  1341. mindsdb/integrations/handlers/sentence_transformers_handler/__init__.py +21 -0
  1342. mindsdb/integrations/handlers/sentence_transformers_handler/icon.svg +21 -0
  1343. mindsdb/integrations/handlers/sentence_transformers_handler/requirements.txt +1 -0
  1344. mindsdb/integrations/handlers/sentence_transformers_handler/sentence_transformers_handler.py +75 -0
  1345. mindsdb/integrations/handlers/sentence_transformers_handler/settings.py +12 -0
  1346. mindsdb/integrations/handlers/serpstack_handler/__about__.py +9 -0
  1347. mindsdb/integrations/handlers/serpstack_handler/__init__.py +27 -0
  1348. mindsdb/integrations/handlers/serpstack_handler/icon.svg +86 -0
  1349. mindsdb/integrations/handlers/serpstack_handler/serpstack_handler.py +123 -0
  1350. mindsdb/integrations/handlers/serpstack_handler/serpstack_tables.py +260 -0
  1351. mindsdb/integrations/handlers/sharepoint_handler/__about__.py +9 -0
  1352. mindsdb/integrations/handlers/sharepoint_handler/__init__.py +27 -0
  1353. mindsdb/integrations/handlers/sharepoint_handler/icon.svg +23 -0
  1354. mindsdb/integrations/handlers/sharepoint_handler/sharepoint_api.py +579 -0
  1355. mindsdb/integrations/handlers/sharepoint_handler/sharepoint_handler.py +147 -0
  1356. mindsdb/integrations/handlers/sharepoint_handler/sharepoint_tables.py +581 -0
  1357. mindsdb/integrations/handlers/sharepoint_handler/tests/__init__.py +0 -0
  1358. mindsdb/integrations/handlers/sharepoint_handler/tests/test_sharepoint_handler.py +53 -0
  1359. mindsdb/integrations/handlers/sharepoint_handler/utils.py +163 -0
  1360. mindsdb/integrations/handlers/sheets_handler/__about__.py +9 -0
  1361. mindsdb/integrations/handlers/sheets_handler/__init__.py +20 -0
  1362. mindsdb/integrations/handlers/sheets_handler/connection_args.py +20 -0
  1363. mindsdb/integrations/handlers/sheets_handler/icon.svg +55 -0
  1364. mindsdb/integrations/handlers/sheets_handler/sheets_handler.py +176 -0
  1365. mindsdb/integrations/handlers/sheets_handler/tests/__init__.py +0 -0
  1366. mindsdb/integrations/handlers/sheets_handler/tests/test_sheets_handler.py +33 -0
  1367. mindsdb/integrations/handlers/shopify_handler/__about__.py +9 -0
  1368. mindsdb/integrations/handlers/shopify_handler/__init__.py +27 -0
  1369. mindsdb/integrations/handlers/shopify_handler/icon.svg +5 -0
  1370. mindsdb/integrations/handlers/shopify_handler/requirements.txt +1 -0
  1371. mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +143 -0
  1372. mindsdb/integrations/handlers/shopify_handler/shopify_tables.py +1083 -0
  1373. mindsdb/integrations/handlers/singlestore_handler/__about__.py +9 -0
  1374. mindsdb/integrations/handlers/singlestore_handler/__init__.py +21 -0
  1375. mindsdb/integrations/handlers/singlestore_handler/icon.svg +16 -0
  1376. mindsdb/integrations/handlers/singlestore_handler/requirements.txt +1 -0
  1377. mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py +12 -0
  1378. mindsdb/integrations/handlers/singlestore_handler/tests/__init__.py +0 -0
  1379. mindsdb/integrations/handlers/singlestore_handler/tests/test_singlestore_handler.py +42 -0
  1380. mindsdb/integrations/handlers/slack_handler/__about__.py +9 -0
  1381. mindsdb/integrations/handlers/slack_handler/__init__.py +28 -0
  1382. mindsdb/integrations/handlers/slack_handler/connection_args.py +26 -0
  1383. mindsdb/integrations/handlers/slack_handler/icon.svg +13 -0
  1384. mindsdb/integrations/handlers/slack_handler/requirements.txt +1 -0
  1385. mindsdb/integrations/handlers/slack_handler/slack_handler.py +339 -0
  1386. mindsdb/integrations/handlers/slack_handler/slack_tables.py +718 -0
  1387. mindsdb/integrations/handlers/slack_handler/tests/__init__.py +0 -0
  1388. mindsdb/integrations/handlers/slack_handler/tests/test_slack.py +27 -0
  1389. mindsdb/integrations/handlers/snowflake_handler/__about__.py +9 -0
  1390. mindsdb/integrations/handlers/snowflake_handler/__init__.py +21 -0
  1391. mindsdb/integrations/handlers/snowflake_handler/connection_args.py +63 -0
  1392. mindsdb/integrations/handlers/snowflake_handler/icon.svg +10 -0
  1393. mindsdb/integrations/handlers/snowflake_handler/requirements.txt +2 -0
  1394. mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +280 -0
  1395. mindsdb/integrations/handlers/snowflake_handler/tests/__init__.py +0 -0
  1396. mindsdb/integrations/handlers/snowflake_handler/tests/test_snowflake_handler.py +230 -0
  1397. mindsdb/integrations/handlers/solace_handler/__about__.py +9 -0
  1398. mindsdb/integrations/handlers/solace_handler/__init__.py +19 -0
  1399. mindsdb/integrations/handlers/solace_handler/icon.svg +3 -0
  1400. mindsdb/integrations/handlers/solace_handler/requirements.txt +1 -0
  1401. mindsdb/integrations/handlers/solace_handler/solace_handler.py +169 -0
  1402. mindsdb/integrations/handlers/solr_handler/__about__.py +9 -0
  1403. mindsdb/integrations/handlers/solr_handler/__init__.py +20 -0
  1404. mindsdb/integrations/handlers/solr_handler/connection_args.py +46 -0
  1405. mindsdb/integrations/handlers/solr_handler/icon.svg +10 -0
  1406. mindsdb/integrations/handlers/solr_handler/requirements.txt +1 -0
  1407. mindsdb/integrations/handlers/solr_handler/solr_handler.py +176 -0
  1408. mindsdb/integrations/handlers/solr_handler/tests/__init__.py +0 -0
  1409. mindsdb/integrations/handlers/solr_handler/tests/test_solr_handler.py +38 -0
  1410. mindsdb/integrations/handlers/spacy_handler/__about__.py +9 -0
  1411. mindsdb/integrations/handlers/spacy_handler/__init__.py +19 -0
  1412. mindsdb/integrations/handlers/spacy_handler/icon.svg +3 -0
  1413. mindsdb/integrations/handlers/spacy_handler/requirements.txt +1 -0
  1414. mindsdb/integrations/handlers/spacy_handler/spacy_handler.py +194 -0
  1415. mindsdb/integrations/handlers/sqlany_handler/__about__.py +9 -0
  1416. mindsdb/integrations/handlers/sqlany_handler/__init__.py +20 -0
  1417. mindsdb/integrations/handlers/sqlany_handler/connection_args.py +46 -0
  1418. mindsdb/integrations/handlers/sqlany_handler/icon.svg +13 -0
  1419. mindsdb/integrations/handlers/sqlany_handler/requirements.txt +2 -0
  1420. mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py +179 -0
  1421. mindsdb/integrations/handlers/sqlite_handler/__about__.py +9 -0
  1422. mindsdb/integrations/handlers/sqlite_handler/__init__.py +20 -0
  1423. mindsdb/integrations/handlers/sqlite_handler/connection_args.py +16 -0
  1424. mindsdb/integrations/handlers/sqlite_handler/icon.svg +12 -0
  1425. mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py +184 -0
  1426. mindsdb/integrations/handlers/sqlite_handler/tests/__init__.py +0 -0
  1427. mindsdb/integrations/handlers/sqlite_handler/tests/test_sqlite_handler.py +32 -0
  1428. mindsdb/integrations/handlers/sqreamdb_handler/__about__.py +9 -0
  1429. mindsdb/integrations/handlers/sqreamdb_handler/__init__.py +20 -0
  1430. mindsdb/integrations/handlers/sqreamdb_handler/connection_args.py +48 -0
  1431. mindsdb/integrations/handlers/sqreamdb_handler/icon.svg +21 -0
  1432. mindsdb/integrations/handlers/sqreamdb_handler/requirements.txt +2 -0
  1433. mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py +154 -0
  1434. mindsdb/integrations/handlers/sqreamdb_handler/tests/__init__.py +0 -0
  1435. mindsdb/integrations/handlers/sqreamdb_handler/tests/test_sqreamdb_handler.py +45 -0
  1436. mindsdb/integrations/handlers/stabilityai_handler/__about__.py +9 -0
  1437. mindsdb/integrations/handlers/stabilityai_handler/__init__.py +19 -0
  1438. mindsdb/integrations/handlers/stabilityai_handler/icon.svg +10 -0
  1439. mindsdb/integrations/handlers/stabilityai_handler/requirements.txt +2 -0
  1440. mindsdb/integrations/handlers/stabilityai_handler/stabilityai.py +186 -0
  1441. mindsdb/integrations/handlers/stabilityai_handler/stabilityai_handler.py +172 -0
  1442. mindsdb/integrations/handlers/starrocks_handler/__about__.py +9 -0
  1443. mindsdb/integrations/handlers/starrocks_handler/__init__.py +20 -0
  1444. mindsdb/integrations/handlers/starrocks_handler/icon.svg +9 -0
  1445. mindsdb/integrations/handlers/starrocks_handler/requirements.txt +1 -0
  1446. mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py +48 -0
  1447. mindsdb/integrations/handlers/starrocks_handler/tests/__init__.py +0 -0
  1448. mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py +56 -0
  1449. mindsdb/integrations/handlers/statsforecast_handler/__about__.py +9 -0
  1450. mindsdb/integrations/handlers/statsforecast_handler/__init__.py +19 -0
  1451. mindsdb/integrations/handlers/statsforecast_handler/icon.svg +5 -0
  1452. mindsdb/integrations/handlers/statsforecast_handler/requirements.txt +1 -0
  1453. mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt +1 -0
  1454. mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py +192 -0
  1455. mindsdb/integrations/handlers/strapi_handler/__about__.py +9 -0
  1456. mindsdb/integrations/handlers/strapi_handler/__init__.py +28 -0
  1457. mindsdb/integrations/handlers/strapi_handler/icon.svg +7 -0
  1458. mindsdb/integrations/handlers/strapi_handler/strapi_handler.py +153 -0
  1459. mindsdb/integrations/handlers/strapi_handler/strapi_tables.py +131 -0
  1460. mindsdb/integrations/handlers/strapi_handler/tests/__init__.py +0 -0
  1461. mindsdb/integrations/handlers/strapi_handler/tests/test_strapi_handler.py +51 -0
  1462. mindsdb/integrations/handlers/strava_handler/__about__.py +9 -0
  1463. mindsdb/integrations/handlers/strava_handler/__init__.py +27 -0
  1464. mindsdb/integrations/handlers/strava_handler/icon.svg +12 -0
  1465. mindsdb/integrations/handlers/strava_handler/requirements.txt +1 -0
  1466. mindsdb/integrations/handlers/strava_handler/strava_handler.py +113 -0
  1467. mindsdb/integrations/handlers/strava_handler/strava_tables.py +247 -0
  1468. mindsdb/integrations/handlers/stripe_handler/__about__.py +9 -0
  1469. mindsdb/integrations/handlers/stripe_handler/__init__.py +27 -0
  1470. mindsdb/integrations/handlers/stripe_handler/icon.svg +4 -0
  1471. mindsdb/integrations/handlers/stripe_handler/requirements.txt +1 -0
  1472. mindsdb/integrations/handlers/stripe_handler/stripe_handler.py +102 -0
  1473. mindsdb/integrations/handlers/stripe_handler/stripe_tables.py +508 -0
  1474. mindsdb/integrations/handlers/supabase_handler/__about__.py +9 -0
  1475. mindsdb/integrations/handlers/supabase_handler/__init__.py +20 -0
  1476. mindsdb/integrations/handlers/supabase_handler/icon.svg +15 -0
  1477. mindsdb/integrations/handlers/supabase_handler/supabase_handler.py +11 -0
  1478. mindsdb/integrations/handlers/supabase_handler/tests/__init__.py +0 -0
  1479. mindsdb/integrations/handlers/supabase_handler/tests/test_supabase_handler.py +46 -0
  1480. mindsdb/integrations/handlers/surrealdb_handler/__about__.py +9 -0
  1481. mindsdb/integrations/handlers/surrealdb_handler/__init__.py +20 -0
  1482. mindsdb/integrations/handlers/surrealdb_handler/connection_args.py +52 -0
  1483. mindsdb/integrations/handlers/surrealdb_handler/icon.svg +9 -0
  1484. mindsdb/integrations/handlers/surrealdb_handler/requirements.txt +1 -0
  1485. mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py +196 -0
  1486. mindsdb/integrations/handlers/surrealdb_handler/tests/__init__.py +0 -0
  1487. mindsdb/integrations/handlers/surrealdb_handler/tests/test_surrealdb_handler.py +57 -0
  1488. mindsdb/integrations/handlers/surrealdb_handler/utils/__init__.py +0 -0
  1489. mindsdb/integrations/handlers/surrealdb_handler/utils/surreal_get_info.py +20 -0
  1490. mindsdb/integrations/handlers/symbl_handler/__about__.py +9 -0
  1491. mindsdb/integrations/handlers/symbl_handler/__init__.py +28 -0
  1492. mindsdb/integrations/handlers/symbl_handler/connection_args.py +25 -0
  1493. mindsdb/integrations/handlers/symbl_handler/icon.svg +4 -0
  1494. mindsdb/integrations/handlers/symbl_handler/requirements.txt +1 -0
  1495. mindsdb/integrations/handlers/symbl_handler/symbl_handler.py +106 -0
  1496. mindsdb/integrations/handlers/symbl_handler/symbl_tables.py +648 -0
  1497. mindsdb/integrations/handlers/tdengine_handler/__about__.py +9 -0
  1498. mindsdb/integrations/handlers/tdengine_handler/__init__.py +20 -0
  1499. mindsdb/integrations/handlers/tdengine_handler/connection_args.py +36 -0
  1500. mindsdb/integrations/handlers/tdengine_handler/icon.svg +59 -0
  1501. mindsdb/integrations/handlers/tdengine_handler/requirements.txt +1 -0
  1502. mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py +146 -0
  1503. mindsdb/integrations/handlers/tdengine_handler/tests/__init__.py +0 -0
  1504. mindsdb/integrations/handlers/tdengine_handler/tests/test_tdengine_handler.py +48 -0
  1505. mindsdb/integrations/handlers/teradata_handler/__about__.py +9 -0
  1506. mindsdb/integrations/handlers/teradata_handler/__init__.py +20 -0
  1507. mindsdb/integrations/handlers/teradata_handler/connection_args.py +39 -0
  1508. mindsdb/integrations/handlers/teradata_handler/icon.svg +4 -0
  1509. mindsdb/integrations/handlers/teradata_handler/requirements.txt +2 -0
  1510. mindsdb/integrations/handlers/teradata_handler/teradata_handler.py +245 -0
  1511. mindsdb/integrations/handlers/tidb_handler/__about__.py +9 -0
  1512. mindsdb/integrations/handlers/tidb_handler/__init__.py +21 -0
  1513. mindsdb/integrations/handlers/tidb_handler/connection_args.py +36 -0
  1514. mindsdb/integrations/handlers/tidb_handler/icon.svg +5 -0
  1515. mindsdb/integrations/handlers/tidb_handler/requirements.txt +1 -0
  1516. mindsdb/integrations/handlers/tidb_handler/tests/__init__.py +0 -0
  1517. mindsdb/integrations/handlers/tidb_handler/tests/test_tidb_handler.py +45 -0
  1518. mindsdb/integrations/handlers/tidb_handler/tidb_handler.py +11 -0
  1519. mindsdb/integrations/handlers/timegpt_handler/__about__.py +9 -0
  1520. mindsdb/integrations/handlers/timegpt_handler/__init__.py +18 -0
  1521. mindsdb/integrations/handlers/timegpt_handler/icon.svg +5 -0
  1522. mindsdb/integrations/handlers/timegpt_handler/requirements.txt +1 -0
  1523. mindsdb/integrations/handlers/timegpt_handler/timegpt_handler.py +205 -0
  1524. mindsdb/integrations/handlers/timescaledb_handler/__about__.py +9 -0
  1525. mindsdb/integrations/handlers/timescaledb_handler/__init__.py +19 -0
  1526. mindsdb/integrations/handlers/timescaledb_handler/icon.svg +9 -0
  1527. mindsdb/integrations/handlers/timescaledb_handler/tests/__init__.py +0 -0
  1528. mindsdb/integrations/handlers/timescaledb_handler/tests/test_timescaledb_handler.py +47 -0
  1529. mindsdb/integrations/handlers/timescaledb_handler/timescaledb_handler.py +46 -0
  1530. mindsdb/integrations/handlers/tpot_handler/__about__.py +9 -0
  1531. mindsdb/integrations/handlers/tpot_handler/__init__.py +19 -0
  1532. mindsdb/integrations/handlers/tpot_handler/icon.png +0 -0
  1533. mindsdb/integrations/handlers/tpot_handler/requirements.txt +2 -0
  1534. mindsdb/integrations/handlers/tpot_handler/tpot_handler.py +80 -0
  1535. mindsdb/integrations/handlers/trino_handler/__about__.py +9 -0
  1536. mindsdb/integrations/handlers/trino_handler/__init__.py +19 -0
  1537. mindsdb/integrations/handlers/trino_handler/icon.svg +23 -0
  1538. mindsdb/integrations/handlers/trino_handler/requirements.txt +2 -0
  1539. mindsdb/integrations/handlers/trino_handler/tests/__init__.py +0 -0
  1540. mindsdb/integrations/handlers/trino_handler/tests/test_trino_handler.py +48 -0
  1541. mindsdb/integrations/handlers/trino_handler/trino_config_provider.py +12 -0
  1542. mindsdb/integrations/handlers/trino_handler/trino_handler.py +182 -0
  1543. mindsdb/integrations/handlers/tripadvisor_handler/__about__.py +9 -0
  1544. mindsdb/integrations/handlers/tripadvisor_handler/__init__.py +27 -0
  1545. mindsdb/integrations/handlers/tripadvisor_handler/icon.svg +4 -0
  1546. mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_api.py +215 -0
  1547. mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_handler.py +275 -0
  1548. mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_table.py +477 -0
  1549. mindsdb/integrations/handlers/twelve_labs_handler/__about__.py +9 -0
  1550. mindsdb/integrations/handlers/twelve_labs_handler/__init__.py +19 -0
  1551. mindsdb/integrations/handlers/twelve_labs_handler/icon.svg +7 -0
  1552. mindsdb/integrations/handlers/twelve_labs_handler/requirements.txt +2 -0
  1553. mindsdb/integrations/handlers/twelve_labs_handler/settings.py +271 -0
  1554. mindsdb/integrations/handlers/twelve_labs_handler/twelve_labs_api_client.py +567 -0
  1555. mindsdb/integrations/handlers/twelve_labs_handler/twelve_labs_handler.py +285 -0
  1556. mindsdb/integrations/handlers/twilio_handler/__about__.py +9 -0
  1557. mindsdb/integrations/handlers/twilio_handler/__init__.py +21 -0
  1558. mindsdb/integrations/handlers/twilio_handler/icon.svg +11 -0
  1559. mindsdb/integrations/handlers/twilio_handler/requirements.txt +1 -0
  1560. mindsdb/integrations/handlers/twilio_handler/twilio_handler.py +385 -0
  1561. mindsdb/integrations/handlers/twitter_handler/__about__.py +9 -0
  1562. mindsdb/integrations/handlers/twitter_handler/__init__.py +21 -0
  1563. mindsdb/integrations/handlers/twitter_handler/icon.svg +10 -0
  1564. mindsdb/integrations/handlers/twitter_handler/requirements.txt +1 -0
  1565. mindsdb/integrations/handlers/twitter_handler/twitter_handler.py +471 -0
  1566. mindsdb/integrations/handlers/unify_handler/__about__.py +9 -0
  1567. mindsdb/integrations/handlers/unify_handler/__init__.py +22 -0
  1568. mindsdb/integrations/handlers/unify_handler/creation_args.py +14 -0
  1569. mindsdb/integrations/handlers/unify_handler/icon.svg +25 -0
  1570. mindsdb/integrations/handlers/unify_handler/model_using_args.py +5 -0
  1571. mindsdb/integrations/handlers/unify_handler/requirements.txt +1 -0
  1572. mindsdb/integrations/handlers/unify_handler/tests/__init__.py +0 -0
  1573. mindsdb/integrations/handlers/unify_handler/tests/test_unify_handler.py +60 -0
  1574. mindsdb/integrations/handlers/unify_handler/unify_handler.py +67 -0
  1575. mindsdb/integrations/handlers/vertex_handler/__about__.py +9 -0
  1576. mindsdb/integrations/handlers/vertex_handler/__init__.py +19 -0
  1577. mindsdb/integrations/handlers/vertex_handler/icon.png +0 -0
  1578. mindsdb/integrations/handlers/vertex_handler/requirements.txt +1 -0
  1579. mindsdb/integrations/handlers/vertex_handler/vertex_client.py +95 -0
  1580. mindsdb/integrations/handlers/vertex_handler/vertex_handler.py +87 -0
  1581. mindsdb/integrations/handlers/vertica_handler/__about__.py +9 -0
  1582. mindsdb/integrations/handlers/vertica_handler/__init__.py +20 -0
  1583. mindsdb/integrations/handlers/vertica_handler/connection_args.py +41 -0
  1584. mindsdb/integrations/handlers/vertica_handler/icon.svg +8 -0
  1585. mindsdb/integrations/handlers/vertica_handler/requirements.txt +2 -0
  1586. mindsdb/integrations/handlers/vertica_handler/tests/__init__.py +0 -0
  1587. mindsdb/integrations/handlers/vertica_handler/tests/test_vertica_handler.py +53 -0
  1588. mindsdb/integrations/handlers/vertica_handler/vertica_handler.py +160 -0
  1589. mindsdb/integrations/handlers/vitess_handler/__about__.py +9 -0
  1590. mindsdb/integrations/handlers/vitess_handler/__init__.py +20 -0
  1591. mindsdb/integrations/handlers/vitess_handler/icon.svg +23 -0
  1592. mindsdb/integrations/handlers/vitess_handler/requirements.txt +1 -0
  1593. mindsdb/integrations/handlers/vitess_handler/tests/__init__.py +0 -0
  1594. mindsdb/integrations/handlers/vitess_handler/tests/test_vitess_handler.py +56 -0
  1595. mindsdb/integrations/handlers/vitess_handler/vitess_handler.py +48 -0
  1596. mindsdb/integrations/handlers/weaviate_handler/__about__.py +9 -0
  1597. mindsdb/integrations/handlers/weaviate_handler/__init__.py +29 -0
  1598. mindsdb/integrations/handlers/weaviate_handler/connection_args.py +29 -0
  1599. mindsdb/integrations/handlers/weaviate_handler/icon.svg +197 -0
  1600. mindsdb/integrations/handlers/weaviate_handler/requirements.txt +1 -0
  1601. mindsdb/integrations/handlers/weaviate_handler/weaviate_handler.py +652 -0
  1602. mindsdb/integrations/handlers/web_handler/__about__.py +9 -0
  1603. mindsdb/integrations/handlers/web_handler/__init__.py +24 -0
  1604. mindsdb/integrations/handlers/web_handler/icon.svg +11 -0
  1605. mindsdb/integrations/handlers/web_handler/requirements.txt +3 -0
  1606. mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py +343 -0
  1607. mindsdb/integrations/handlers/web_handler/web_handler.py +91 -0
  1608. mindsdb/integrations/handlers/webz_handler/__about__.py +9 -0
  1609. mindsdb/integrations/handlers/webz_handler/__init__.py +28 -0
  1610. mindsdb/integrations/handlers/webz_handler/icon.svg +4 -0
  1611. mindsdb/integrations/handlers/webz_handler/requirements.txt +3 -0
  1612. mindsdb/integrations/handlers/webz_handler/webz_handler.py +175 -0
  1613. mindsdb/integrations/handlers/webz_handler/webz_tables.py +218 -0
  1614. mindsdb/integrations/handlers/whatsapp_handler/__about__.py +9 -0
  1615. mindsdb/integrations/handlers/whatsapp_handler/__init__.py +28 -0
  1616. mindsdb/integrations/handlers/whatsapp_handler/icon.svg +19 -0
  1617. mindsdb/integrations/handlers/whatsapp_handler/requirements.txt +1 -0
  1618. mindsdb/integrations/handlers/whatsapp_handler/whatsapp_handler.py +420 -0
  1619. mindsdb/integrations/handlers/writer_handler/__about__.py +9 -0
  1620. mindsdb/integrations/handlers/writer_handler/__init__.py +30 -0
  1621. mindsdb/integrations/handlers/writer_handler/evaluate.py +362 -0
  1622. mindsdb/integrations/handlers/writer_handler/icon.svg +10 -0
  1623. mindsdb/integrations/handlers/writer_handler/ingest.py +11 -0
  1624. mindsdb/integrations/handlers/writer_handler/rag.py +14 -0
  1625. mindsdb/integrations/handlers/writer_handler/requirements.txt +4 -0
  1626. mindsdb/integrations/handlers/writer_handler/settings.py +86 -0
  1627. mindsdb/integrations/handlers/writer_handler/writer_handler.py +188 -0
  1628. mindsdb/integrations/handlers/xata_handler/__about__.py +9 -0
  1629. mindsdb/integrations/handlers/xata_handler/__init__.py +29 -0
  1630. mindsdb/integrations/handlers/xata_handler/connection_args.py +35 -0
  1631. mindsdb/integrations/handlers/xata_handler/icon.svg +29 -0
  1632. mindsdb/integrations/handlers/xata_handler/requirements.txt +1 -0
  1633. mindsdb/integrations/handlers/xata_handler/tests/__init__.py +0 -0
  1634. mindsdb/integrations/handlers/xata_handler/xata_handler.py +347 -0
  1635. mindsdb/integrations/handlers/youtube_handler/__about__.py +9 -0
  1636. mindsdb/integrations/handlers/youtube_handler/__init__.py +27 -0
  1637. mindsdb/integrations/handlers/youtube_handler/icon.svg +11 -0
  1638. mindsdb/integrations/handlers/youtube_handler/requirements.txt +2 -0
  1639. mindsdb/integrations/handlers/youtube_handler/youtube_handler.py +164 -0
  1640. mindsdb/integrations/handlers/youtube_handler/youtube_tables.py +448 -0
  1641. mindsdb/integrations/handlers/yugabyte_handler/__about__.py +9 -0
  1642. mindsdb/integrations/handlers/yugabyte_handler/__init__.py +19 -0
  1643. mindsdb/integrations/handlers/yugabyte_handler/icon.svg +4 -0
  1644. mindsdb/integrations/handlers/yugabyte_handler/tests/__init__.py +0 -0
  1645. mindsdb/integrations/handlers/yugabyte_handler/tests/test_yugabyte_handler.py +49 -0
  1646. mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py +60 -0
  1647. mindsdb/integrations/handlers/zendesk_handler/__about__.py +9 -0
  1648. mindsdb/integrations/handlers/zendesk_handler/__init__.py +28 -0
  1649. mindsdb/integrations/handlers/zendesk_handler/connection_args.py +33 -0
  1650. mindsdb/integrations/handlers/zendesk_handler/icon.svg +1 -0
  1651. mindsdb/integrations/handlers/zendesk_handler/requirements.txt +1 -0
  1652. mindsdb/integrations/handlers/zendesk_handler/zendesk_handler.py +89 -0
  1653. mindsdb/integrations/handlers/zendesk_handler/zendesk_tables.py +463 -0
  1654. mindsdb/integrations/handlers/zipcodebase_handler/__about__.py +9 -0
  1655. mindsdb/integrations/handlers/zipcodebase_handler/__init__.py +28 -0
  1656. mindsdb/integrations/handlers/zipcodebase_handler/connection_args.py +18 -0
  1657. mindsdb/integrations/handlers/zipcodebase_handler/icon.svg +4 -0
  1658. mindsdb/integrations/handlers/zipcodebase_handler/tests/__init__.py +0 -0
  1659. mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase.py +67 -0
  1660. mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_handler.py +107 -0
  1661. mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_tables.py +499 -0
  1662. mindsdb/integrations/handlers/zotero_handler/__about__.py +9 -0
  1663. mindsdb/integrations/handlers/zotero_handler/__init__.py +21 -0
  1664. mindsdb/integrations/handlers/zotero_handler/icon.svg +102 -0
  1665. mindsdb/integrations/handlers/zotero_handler/requirements.txt +1 -0
  1666. mindsdb/integrations/handlers/zotero_handler/zotero_handler.py +109 -0
  1667. mindsdb/integrations/handlers/zotero_handler/zotero_tables.py +157 -0
  1668. mindsdb/integrations/libs/__init__.py +3 -0
  1669. mindsdb/integrations/libs/api_handler.py +444 -0
  1670. mindsdb/integrations/libs/api_handler_exceptions.py +18 -0
  1671. mindsdb/integrations/libs/base.py +355 -0
  1672. mindsdb/integrations/libs/const.py +23 -0
  1673. mindsdb/integrations/libs/llm/__init__.py +0 -0
  1674. mindsdb/integrations/libs/llm/config.py +106 -0
  1675. mindsdb/integrations/libs/llm/utils.py +603 -0
  1676. mindsdb/integrations/libs/ml_exec_base.py +453 -0
  1677. mindsdb/integrations/libs/ml_handler_process/__init__.py +8 -0
  1678. mindsdb/integrations/libs/ml_handler_process/create_engine_process.py +28 -0
  1679. mindsdb/integrations/libs/ml_handler_process/create_validation_process.py +14 -0
  1680. mindsdb/integrations/libs/ml_handler_process/describe_process.py +117 -0
  1681. mindsdb/integrations/libs/ml_handler_process/func_call_process.py +26 -0
  1682. mindsdb/integrations/libs/ml_handler_process/handlers_cacher.py +28 -0
  1683. mindsdb/integrations/libs/ml_handler_process/learn_process.py +156 -0
  1684. mindsdb/integrations/libs/ml_handler_process/predict_process.py +35 -0
  1685. mindsdb/integrations/libs/ml_handler_process/update_engine_process.py +28 -0
  1686. mindsdb/integrations/libs/ml_handler_process/update_process.py +27 -0
  1687. mindsdb/integrations/libs/process_cache.py +430 -0
  1688. mindsdb/integrations/libs/realtime_chat_handler.py +33 -0
  1689. mindsdb/integrations/libs/response.py +95 -0
  1690. mindsdb/integrations/libs/storage_handler.py +88 -0
  1691. mindsdb/integrations/libs/vectordatabase_handler.py +534 -0
  1692. mindsdb/integrations/utilities/__init__.py +0 -0
  1693. mindsdb/integrations/utilities/datasets/__init__.py +0 -0
  1694. mindsdb/integrations/utilities/datasets/dataset.py +73 -0
  1695. mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv +21 -0
  1696. mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv +106 -0
  1697. mindsdb/integrations/utilities/date_utils.py +79 -0
  1698. mindsdb/integrations/utilities/handler_utils.py +70 -0
  1699. mindsdb/integrations/utilities/handlers/__init__.py +0 -0
  1700. mindsdb/integrations/utilities/handlers/api_utilities/__init__.py +1 -0
  1701. mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py +1 -0
  1702. mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py +138 -0
  1703. mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py +2 -0
  1704. mindsdb/integrations/utilities/handlers/auth_utilities/exceptions.py +11 -0
  1705. mindsdb/integrations/utilities/handlers/auth_utilities/google/__init__.py +2 -0
  1706. mindsdb/integrations/utilities/handlers/auth_utilities/google/google_service_account_oauth_utilities.py +59 -0
  1707. mindsdb/integrations/utilities/handlers/auth_utilities/google/google_user_oauth_utilities.py +108 -0
  1708. mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/__init__.py +1 -0
  1709. mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/ms_graph_api_auth_utilities.py +128 -0
  1710. mindsdb/integrations/utilities/handlers/query_utilities/__init__.py +4 -0
  1711. mindsdb/integrations/utilities/handlers/query_utilities/base_query_utilities.py +63 -0
  1712. mindsdb/integrations/utilities/handlers/query_utilities/delete_query_utilities.py +44 -0
  1713. mindsdb/integrations/utilities/handlers/query_utilities/exceptions.py +17 -0
  1714. mindsdb/integrations/utilities/handlers/query_utilities/insert_query_utilities.py +71 -0
  1715. mindsdb/integrations/utilities/handlers/query_utilities/select_query_utilities.py +134 -0
  1716. mindsdb/integrations/utilities/handlers/query_utilities/update_query_utilities.py +67 -0
  1717. mindsdb/integrations/utilities/handlers/validation_utilities/__init__.py +1 -0
  1718. mindsdb/integrations/utilities/handlers/validation_utilities/parameter_validation_utilities.py +18 -0
  1719. mindsdb/integrations/utilities/install.py +134 -0
  1720. mindsdb/integrations/utilities/query_traversal.py +239 -0
  1721. mindsdb/integrations/utilities/rag/__init__.py +0 -0
  1722. mindsdb/integrations/utilities/rag/chains/__init__.py +0 -0
  1723. mindsdb/integrations/utilities/rag/chains/map_reduce_summarizer_chain.py +218 -0
  1724. mindsdb/integrations/utilities/rag/config_loader.py +77 -0
  1725. mindsdb/integrations/utilities/rag/loaders/__init__.py +0 -0
  1726. mindsdb/integrations/utilities/rag/loaders/file_loader.py +44 -0
  1727. mindsdb/integrations/utilities/rag/loaders/vector_store_loader/MDBVectorStore.py +54 -0
  1728. mindsdb/integrations/utilities/rag/loaders/vector_store_loader/__init__.py +0 -0
  1729. mindsdb/integrations/utilities/rag/loaders/vector_store_loader/pgvector.py +84 -0
  1730. mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_loader.py +60 -0
  1731. mindsdb/integrations/utilities/rag/pipelines/__init__.py +0 -0
  1732. mindsdb/integrations/utilities/rag/pipelines/rag.py +253 -0
  1733. mindsdb/integrations/utilities/rag/rag_pipeline_builder.py +83 -0
  1734. mindsdb/integrations/utilities/rag/rerankers/__init__.py +0 -0
  1735. mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py +156 -0
  1736. mindsdb/integrations/utilities/rag/retrievers/__init__.py +0 -0
  1737. mindsdb/integrations/utilities/rag/retrievers/auto_retriever.py +117 -0
  1738. mindsdb/integrations/utilities/rag/retrievers/base.py +10 -0
  1739. mindsdb/integrations/utilities/rag/retrievers/multi_vector_retriever.py +101 -0
  1740. mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py +149 -0
  1741. mindsdb/integrations/utilities/rag/settings.py +511 -0
  1742. mindsdb/integrations/utilities/rag/splitters/__init__.py +0 -0
  1743. mindsdb/integrations/utilities/rag/splitters/file_splitter.py +132 -0
  1744. mindsdb/integrations/utilities/rag/utils.py +52 -0
  1745. mindsdb/integrations/utilities/rag/vector_store.py +99 -0
  1746. mindsdb/integrations/utilities/sql_utils.py +225 -0
  1747. mindsdb/integrations/utilities/test_utils.py +30 -0
  1748. mindsdb/integrations/utilities/time_series_utils.py +191 -0
  1749. mindsdb/integrations/utilities/utils.py +32 -0
  1750. mindsdb/interfaces/__init__.py +1 -0
  1751. mindsdb/interfaces/agents/__init__.py +0 -0
  1752. mindsdb/interfaces/agents/agents_controller.py +435 -0
  1753. mindsdb/interfaces/agents/callback_handlers.py +130 -0
  1754. mindsdb/interfaces/agents/constants.py +179 -0
  1755. mindsdb/interfaces/agents/langchain_agent.py +676 -0
  1756. mindsdb/interfaces/agents/langfuse_callback_handler.py +163 -0
  1757. mindsdb/interfaces/agents/mindsdb_chat_model.py +196 -0
  1758. mindsdb/interfaces/agents/mindsdb_database_agent.py +54 -0
  1759. mindsdb/interfaces/agents/safe_output_parser.py +51 -0
  1760. mindsdb/interfaces/chatbot/__init__.py +1 -0
  1761. mindsdb/interfaces/chatbot/chatbot_controller.py +409 -0
  1762. mindsdb/interfaces/chatbot/chatbot_executor.py +226 -0
  1763. mindsdb/interfaces/chatbot/chatbot_task.py +174 -0
  1764. mindsdb/interfaces/chatbot/memory.py +223 -0
  1765. mindsdb/interfaces/chatbot/model_executor.py +107 -0
  1766. mindsdb/interfaces/chatbot/polling.py +233 -0
  1767. mindsdb/interfaces/chatbot/types.py +38 -0
  1768. mindsdb/interfaces/database/__init__.py +0 -0
  1769. mindsdb/interfaces/database/database.py +122 -0
  1770. mindsdb/interfaces/database/integrations.py +931 -0
  1771. mindsdb/interfaces/database/log.py +297 -0
  1772. mindsdb/interfaces/database/projects.py +397 -0
  1773. mindsdb/interfaces/database/views.py +139 -0
  1774. mindsdb/interfaces/file/__init__.py +0 -0
  1775. mindsdb/interfaces/file/file_controller.py +146 -0
  1776. mindsdb/interfaces/functions/__init__.py +0 -0
  1777. mindsdb/interfaces/functions/controller.py +207 -0
  1778. mindsdb/interfaces/jobs/__init__.py +0 -0
  1779. mindsdb/interfaces/jobs/jobs_controller.py +549 -0
  1780. mindsdb/interfaces/jobs/scheduler.py +143 -0
  1781. mindsdb/interfaces/knowledge_base/__init__.py +0 -0
  1782. mindsdb/interfaces/knowledge_base/controller.py +899 -0
  1783. mindsdb/interfaces/knowledge_base/preprocessing/__init__.py +0 -0
  1784. mindsdb/interfaces/knowledge_base/preprocessing/constants.py +13 -0
  1785. mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py +176 -0
  1786. mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py +401 -0
  1787. mindsdb/interfaces/knowledge_base/preprocessing/models.py +108 -0
  1788. mindsdb/interfaces/model/__init__.py +0 -0
  1789. mindsdb/interfaces/model/functions.py +155 -0
  1790. mindsdb/interfaces/model/model_controller.py +488 -0
  1791. mindsdb/interfaces/query_context/__init__.py +0 -0
  1792. mindsdb/interfaces/query_context/context_controller.py +289 -0
  1793. mindsdb/interfaces/query_context/last_query.py +266 -0
  1794. mindsdb/interfaces/skills/__init__.py +1 -0
  1795. mindsdb/interfaces/skills/custom/__init__.py +0 -0
  1796. mindsdb/interfaces/skills/custom/text2sql/__init__.py +0 -0
  1797. mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py +37 -0
  1798. mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +88 -0
  1799. mindsdb/interfaces/skills/retrieval_tool.py +110 -0
  1800. mindsdb/interfaces/skills/skill_tool.py +255 -0
  1801. mindsdb/interfaces/skills/skills_controller.py +175 -0
  1802. mindsdb/interfaces/skills/sql_agent.py +256 -0
  1803. mindsdb/interfaces/storage/__init__.py +1 -0
  1804. mindsdb/interfaces/storage/db.py +597 -0
  1805. mindsdb/interfaces/storage/fs.py +661 -0
  1806. mindsdb/interfaces/storage/json.py +97 -0
  1807. mindsdb/interfaces/storage/model_fs.py +282 -0
  1808. mindsdb/interfaces/tabs/__init__.py +0 -0
  1809. mindsdb/interfaces/tabs/tabs_controller.py +291 -0
  1810. mindsdb/interfaces/tasks/__init__.py +0 -0
  1811. mindsdb/interfaces/tasks/task.py +16 -0
  1812. mindsdb/interfaces/tasks/task_monitor.py +150 -0
  1813. mindsdb/interfaces/tasks/task_thread.py +55 -0
  1814. mindsdb/interfaces/triggers/__init__.py +0 -0
  1815. mindsdb/interfaces/triggers/trigger_task.py +95 -0
  1816. mindsdb/interfaces/triggers/triggers_controller.py +167 -0
  1817. mindsdb/metrics/__init__.py +0 -0
  1818. mindsdb/metrics/metrics.py +50 -0
  1819. mindsdb/metrics/server.py +26 -0
  1820. mindsdb/migrations/__init__.py +0 -0
  1821. mindsdb/migrations/alembic.ini +65 -0
  1822. mindsdb/migrations/env.py +87 -0
  1823. mindsdb/migrations/migrate.py +53 -0
  1824. mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py +178 -0
  1825. mindsdb/migrations/versions/2022-01-26_47f97b83cee4_views.py +38 -0
  1826. mindsdb/migrations/versions/2022-02-09_27c5aca9e47e_db_files.py +256 -0
  1827. mindsdb/migrations/versions/2022-05-25_d74c189b87e6_predictor_integration.py +156 -0
  1828. mindsdb/migrations/versions/2022-07-08_999bceb904df_integration_args.py +106 -0
  1829. mindsdb/migrations/versions/2022-07-15_b5b53e0ea7f8_training_data_rows_columns_count.py +29 -0
  1830. mindsdb/migrations/versions/2022-07-22_6e834843e7e9_training_time.py +33 -0
  1831. mindsdb/migrations/versions/2022-08-19_976f15a37e6a_predictors_versioning.py +42 -0
  1832. mindsdb/migrations/versions/2022-08-25_6a54ba55872e_view_integration.py +36 -0
  1833. mindsdb/migrations/versions/2022-08-29_473e8f239481_straighten.py +81 -0
  1834. mindsdb/migrations/versions/2022-09-06_96d5fef10caa_data_integration_id.py +69 -0
  1835. mindsdb/migrations/versions/2022-09-08_87b2df2b83e1_predictor_status.py +74 -0
  1836. mindsdb/migrations/versions/2022-09-19_3d5e70105df7_content_storage.py +59 -0
  1837. mindsdb/migrations/versions/2022-09-29_cada7d2be947_json_storage.py +90 -0
  1838. mindsdb/migrations/versions/2022-10-14_43c52d23845a_projects.py +115 -0
  1839. mindsdb/migrations/versions/2022-11-07_1e60096fc817_predictor_version.py +66 -0
  1840. mindsdb/migrations/versions/2022-11-11_d429095b570f_data_integration_id.py +106 -0
  1841. mindsdb/migrations/versions/2022-12-26_459218b0844c_fix_unique_constraint.py +34 -0
  1842. mindsdb/migrations/versions/2023-02-02_b6d0a47294ac_jobs.py +56 -0
  1843. mindsdb/migrations/versions/2023-02-17_ee63d868fa84_predictor_integration_null.py +42 -0
  1844. mindsdb/migrations/versions/2023-02-25_3154382dab17_training_progress.py +36 -0
  1845. mindsdb/migrations/versions/2023-02-27_ef04cdbe51ed_jobs_user_class.py +33 -0
  1846. mindsdb/migrations/versions/2023-04-11_b8be148dbc85_jobs_history_query.py +35 -0
  1847. mindsdb/migrations/versions/2023-05-24_6d748f2c7b0b_remove_streams.py +46 -0
  1848. mindsdb/migrations/versions/2023-05-31_aaecd7012a78_chatbot.py +41 -0
  1849. mindsdb/migrations/versions/2023-06-16_9d6271bb2c38_update_chat_bots_table.py +28 -0
  1850. mindsdb/migrations/versions/2023-06-19_b5bf593ba659_create_chat_bots_history_table.py +35 -0
  1851. mindsdb/migrations/versions/2023-06-27_607709e1615b_update_project_names.py +60 -0
  1852. mindsdb/migrations/versions/2023-07-13_a57506731839_triggers.py +54 -0
  1853. mindsdb/migrations/versions/2023-07-19_ad04ee0bd385_chatbot_to_task.py +38 -0
  1854. mindsdb/migrations/versions/2023-08-29_b0382f5be48d_predictor_hostname.py +26 -0
  1855. mindsdb/migrations/versions/2023-08-31_4c26ad04eeaa_add_skills_table.py +32 -0
  1856. mindsdb/migrations/versions/2023-09-06_d44ab65a6a35_add_agents_table.py +35 -0
  1857. mindsdb/migrations/versions/2023-09-06_e187961e844a_add_agent_skills_table.py +29 -0
  1858. mindsdb/migrations/versions/2023-09-18_011e6f2dd9c2_backfill_agent_id.py +82 -0
  1859. mindsdb/migrations/versions/2023-09-18_f16d4ab03091_add_agent_id.py +28 -0
  1860. mindsdb/migrations/versions/2023-09-20_309db3d07cf4_add_knowledge_base.py +54 -0
  1861. mindsdb/migrations/versions/2023-10-03_6cb02dfd7f61_query_context.py +38 -0
  1862. mindsdb/migrations/versions/2023-11-01_c67822e96833_jobs_active.py +33 -0
  1863. mindsdb/migrations/versions/2023-12-25_4b3c9d63e89c_predictor_index.py +44 -0
  1864. mindsdb/migrations/versions/2024-02-02_5a5c49313e52_job_condition.py +32 -0
  1865. mindsdb/migrations/versions/2024-02-12_9461892bd889_llm_log.py +44 -0
  1866. mindsdb/migrations/versions/2024-04-25_2958416fbe75_drop_semaphor.py +36 -0
  1867. mindsdb/migrations/versions/2024-06-06_cbedc4968d5d_store_llm_data.py +34 -0
  1868. mindsdb/migrations/versions/2024-07-09_bfc6f44f5bc9_agent_model_optional.py +50 -0
  1869. mindsdb/migrations/versions/2024-07-19_45eb2eb61f70_add_provider_to_agent.py +47 -0
  1870. mindsdb/migrations/versions/2024-08-12_8e17ff6b75e9_agents_deleted_at.py +42 -0
  1871. mindsdb/migrations/versions/2024-10-07_6c57ed39a82b_added_webhook_token_to_chat_bots.py +27 -0
  1872. mindsdb/migrations/versions/2024-11-15_9d559f68d535_add_llm_log_columns.py +41 -0
  1873. mindsdb/migrations/versions/2024-11-19_0f89b523f346_agent_skills_parameters.py +28 -0
  1874. mindsdb/migrations/versions/2024-11-28_a8a3fac369e7_llm_log_json_in_out.py +103 -0
  1875. mindsdb/migrations/versions/2024-11-29_f6dc924079fa_predictor_training_metadata.py +44 -0
  1876. mindsdb/migrations/versions/__init__.py +0 -0
  1877. mindsdb/utilities/__init__.py +0 -0
  1878. mindsdb/utilities/auth.py +73 -0
  1879. mindsdb/utilities/cache.py +282 -0
  1880. mindsdb/utilities/config.py +530 -0
  1881. mindsdb/utilities/context.py +57 -0
  1882. mindsdb/utilities/context_executor.py +59 -0
  1883. mindsdb/utilities/exception.py +29 -0
  1884. mindsdb/utilities/fs.py +153 -0
  1885. mindsdb/utilities/functions.py +197 -0
  1886. mindsdb/utilities/hooks/__init__.py +34 -0
  1887. mindsdb/utilities/hooks/profiling.py +74 -0
  1888. mindsdb/utilities/json_encoder.py +33 -0
  1889. mindsdb/utilities/log.py +97 -0
  1890. mindsdb/utilities/log_controller.py +39 -0
  1891. mindsdb/utilities/ml_task_queue/__init__.py +57 -0
  1892. mindsdb/utilities/ml_task_queue/base.py +14 -0
  1893. mindsdb/utilities/ml_task_queue/const.py +26 -0
  1894. mindsdb/utilities/ml_task_queue/consumer.py +252 -0
  1895. mindsdb/utilities/ml_task_queue/producer.py +81 -0
  1896. mindsdb/utilities/ml_task_queue/task.py +82 -0
  1897. mindsdb/utilities/ml_task_queue/utils.py +124 -0
  1898. mindsdb/utilities/otel.py +72 -0
  1899. mindsdb/utilities/profiler/__init__.py +19 -0
  1900. mindsdb/utilities/profiler/profiler.py +144 -0
  1901. mindsdb/utilities/ps.py +78 -0
  1902. mindsdb/utilities/render/__init__.py +0 -0
  1903. mindsdb/utilities/render/sqlalchemy_render.py +831 -0
  1904. mindsdb/utilities/security.py +54 -0
  1905. mindsdb/utilities/sentry.py +46 -0
  1906. mindsdb/utilities/starters.py +33 -0
  1907. mindsdb/utilities/telemetry.py +44 -0
  1908. mindsdb/utilities/wizards.py +49 -0
  1909. MindsDB-1.3.1.dist-info/LICENSE +0 -21
  1910. MindsDB-1.3.1.dist-info/METADATA +0 -112
  1911. MindsDB-1.3.1.dist-info/RECORD +0 -55
  1912. mindsdb/config/__init__.py +0 -32
  1913. mindsdb/config/helpers.py +0 -21
  1914. mindsdb/external_libs/stats.py +0 -61
  1915. mindsdb/libs/__init__.py +0 -6
  1916. mindsdb/libs/backends/lightwood.py +0 -180
  1917. mindsdb/libs/backends/ludwig.py +0 -456
  1918. mindsdb/libs/constants/mindsdb.py +0 -81
  1919. mindsdb/libs/controllers/predictor.py +0 -583
  1920. mindsdb/libs/controllers/transaction.py +0 -254
  1921. mindsdb/libs/data_sources/file_ds.py +0 -196
  1922. mindsdb/libs/data_types/data_source.py +0 -59
  1923. mindsdb/libs/data_types/mindsdb_logger.py +0 -127
  1924. mindsdb/libs/data_types/probability_evaluation.py +0 -56
  1925. mindsdb/libs/data_types/transaction_data.py +0 -15
  1926. mindsdb/libs/data_types/transaction_output_data.py +0 -29
  1927. mindsdb/libs/data_types/transaction_output_row.py +0 -35
  1928. mindsdb/libs/helpers/explain_prediction.py +0 -114
  1929. mindsdb/libs/helpers/file_helpers.py +0 -66
  1930. mindsdb/libs/helpers/general_helpers.py +0 -276
  1931. mindsdb/libs/helpers/multi_data_source.py +0 -28
  1932. mindsdb/libs/helpers/parser.py +0 -161
  1933. mindsdb/libs/helpers/probabilistic_validator.py +0 -198
  1934. mindsdb/libs/helpers/sqlite_helpers.py +0 -33
  1935. mindsdb/libs/helpers/text_helpers.py +0 -79
  1936. mindsdb/libs/helpers/train_helpers.py +0 -4
  1937. mindsdb/libs/phases/base_module.py +0 -62
  1938. mindsdb/libs/phases/data_extractor/data_extractor.py +0 -233
  1939. mindsdb/libs/phases/data_transformer/data_transformer.py +0 -103
  1940. mindsdb/libs/phases/model_analyzer/helpers/column_evaluator.py +0 -120
  1941. mindsdb/libs/phases/model_analyzer/model_analyzer.py +0 -119
  1942. mindsdb/libs/phases/model_interface/model_interface.py +0 -31
  1943. mindsdb/libs/phases/stats_generator/scores.py +0 -377
  1944. mindsdb/libs/phases/stats_generator/stats_generator.py +0 -691
  1945. mindsdb/scraps.py +0 -133
  1946. {MindsDB-1.3.1.dist-info → MindsDB-25.1.2.0.dist-info}/top_level.txt +0 -0
  1947. /mindsdb/{external_libs → api}/__init__.py +0 -0
  1948. /mindsdb/{libs/backends → api/common}/__init__.py +0 -0
  1949. /mindsdb/{libs/constants → api/executor/data_types}/__init__.py +0 -0
  1950. /mindsdb/{libs/controllers → api/executor/datahub/classes}/__init__.py +0 -0
  1951. /mindsdb/{libs/data_sources → api/executor/sql_query}/__init__.py +0 -0
  1952. /mindsdb/{libs/data_types → api/executor/utilities}/__init__.py +0 -0
  1953. /mindsdb/{libs/helpers → api/http}/__init__.py +0 -0
  1954. /mindsdb/{libs/phases → api/http/namespaces}/__init__.py +0 -0
  1955. /mindsdb/{libs/phases/data_extractor → api/http/namespaces/configs}/__init__.py +0 -0
  1956. /mindsdb/{libs/phases/data_transformer → api/mongo}/__init__.py +0 -0
  1957. /mindsdb/{libs/phases/model_analyzer → api/mongo/utilities}/__init__.py +0 -0
  1958. /mindsdb/{libs/phases/model_analyzer/helpers → api/mysql}/__init__.py +0 -0
  1959. /mindsdb/{libs/phases/model_interface → api/mysql/mysql_proxy}/__init__.py +0 -0
  1960. /mindsdb/{libs/phases/stats_generator → api/mysql/mysql_proxy/classes}/__init__.py +0 -0
@@ -0,0 +1,102 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="512px" height="512px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" xmlns:xlink="http://www.w3.org/1999/xlink">
4
+ <g><path style="opacity:1" fill="#e3e3e3" d="M 254.5,17.5 C 255.487,22.3054 255.821,27.3054 255.5,32.5C 254.326,34.4409 252.659,35.9409 250.5,37C 250.957,37.414 251.291,37.914 251.5,38.5C 249.042,39.1243 247.376,40.6243 246.5,43C 247.299,44.7487 246.632,46.082 244.5,47C 245.428,47.3879 246.095,48.0546 246.5,49C 244.952,51.2644 243.286,53.431 241.5,55.5C 241.596,58.0007 242.263,60.1673 243.5,62C 242.428,63.2837 241.095,63.6171 239.5,63C 240.833,63.6667 240.833,64.3333 239.5,65C 243.322,66.6935 242.989,68.0268 238.5,69C 239.214,70.3431 238.88,71.6764 237.5,73C 239.657,74.0847 239.824,75.2513 238,76.5C 237.549,74.0712 236.715,73.9045 235.5,76C 235.833,76.3333 236.167,76.6667 236.5,77C 234.285,78.0438 231.952,78.7105 229.5,79C 228.638,81.7344 227.805,81.9011 227,79.5C 226.716,81.8856 225.716,82.5523 224,81.5C 222.513,82.2529 222.346,83.0862 223.5,84C 222.584,84.3742 221.75,84.8742 221,85.5C 219.018,84.9063 217.184,83.7396 215.5,82C 215.833,81 216.167,80 216.5,79C 215.027,78.2904 214.36,77.1238 214.5,75.5C 212.007,75.6709 210.174,74.6709 209,72.5C 207.214,74.8812 206.047,77.5478 205.5,80.5C 204.998,81.521 204.332,81.6877 203.5,81C 204.517,79.9505 204.684,78.7839 204,77.5C 203.667,78.1667 203.333,78.8333 203,79.5C 201.07,77.081 201.403,75.4144 204,74.5C 204.333,74.8333 204.667,75.1667 205,75.5C 207.303,73.2562 206.97,71.5896 204,70.5C 203.667,70.8333 203.333,71.1667 203,71.5C 202.667,70.5 202.333,69.5 202,68.5C 200.354,70.0548 200.021,71.7215 201,73.5C 198.266,74.3617 198.099,75.195 200.5,76C 199.953,76.9246 199.287,77.7579 198.5,78.5C 198.382,76.9172 197.549,75.2505 196,73.5C 194.244,74.4213 194.077,75.588 195.5,77C 195.248,79.8089 193.915,81.8089 191.5,83C 192.253,84.487 193.086,84.6537 194,83.5C 194.667,84.5 194.667,85.5 194,86.5C 192.287,87.8782 190.953,89.5448 190,91.5C 188.284,90.4477 187.284,91.1144 187,93.5C 186.667,92.8333 186.333,92.1667 186,91.5C 184.933,92.1905 183.766,92.6905 182.5,93C 183.056,93.3826 183.389,93.8826 183.5,94.5C 177.158,94.3338 170.825,94.5005 164.5,95C 159.29,100.706 154.29,106.539 149.5,112.5C 147.5,113.833 145.833,115.5 144.5,117.5C 143.662,117.842 143.328,118.508 143.5,119.5C 143.5,119.833 143.5,120.167 143.5,120.5C 142.182,121.757 140.849,123.091 139.5,124.5C 139.833,125.167 140.167,125.833 140.5,126.5C 139.478,127.354 138.645,128.354 138,129.5C 137.316,128.216 137.483,127.049 138.5,126C 138,125.5 137.5,125 137,124.5C 136.808,126.577 136.308,128.577 135.5,130.5C 134.269,129.349 134.269,128.183 135.5,127C 131.474,127.618 130.807,126.285 133.5,123C 132.711,119.903 131.544,119.736 130,122.5C 129.692,121.692 129.192,121.025 128.5,120.5C 126.885,121.154 125.218,121.654 123.5,122C 125.5,123 127.5,124 129.5,125C 128.333,125.5 127.5,126.333 127,127.5C 126.667,126.833 126.333,126.167 126,125.5C 125.5,126.667 124.667,127.5 123.5,128C 124.423,130.048 123.923,131.881 122,133.5C 119.376,126.874 118.043,126.874 118,133.5C 117.086,132.346 116.253,132.513 115.5,134C 119.031,134.879 119.864,136.712 118,139.5C 116.615,138.449 115.615,137.116 115,135.5C 114.309,137.891 113.309,137.891 112,135.5C 108.555,139.298 106.388,138.965 105.5,134.5C 106.59,132.997 107.757,132.664 109,133.5C 110.692,130.447 112.025,127.447 113,124.5C 113.333,125.167 113.667,125.833 114,126.5C 115.129,123.021 117.296,121.854 120.5,123C 119.914,120.72 119.08,118.553 118,116.5C 116.049,118.137 116.216,119.637 118.5,121C 117.216,121.684 116.049,121.517 115,120.5C 114,121.5 113,122.5 112,123.5C 111.667,122.833 111.333,122.167 111,121.5C 109.667,122.833 108.333,122.833 107,121.5C 106.383,122.449 106.549,123.282 107.5,124C 108.738,123.923 109.738,124.089 110.5,124.5C 109.902,125.795 109.402,127.128 109,128.5C 107,129.167 105.667,130.5 105,132.5C 104,131.5 103,130.5 102,129.5C 99.7796,129.948 97.2796,130.448 94.5,131C 94.5,132 94.5,133 94.5,134C 95.7932,134.49 97.1266,134.657 98.5,134.5C 98.281,135.675 98.6143,136.675 99.5,137.5C 101.23,138.026 102.564,139.026 103.5,140.5C 103.154,141.696 102.654,141.696 102,140.5C 101.667,141.833 101.333,143.167 101,144.5C 100.632,143.09 99.7989,142.09 98.5,141.5C 98.8346,142.664 98.8346,143.997 98.5,145.5C 97.1456,143.816 95.4789,143.316 93.5,144C 97.1358,144.626 97.1358,145.793 93.5,147.5C 94.0253,148.192 94.6919,148.692 95.5,149C 94.3589,151.308 92.6922,153.141 90.5,154.5C 87.8112,152.185 88.1445,150.185 91.5,148.5C 88.6896,147.854 86.8563,146.188 86,143.5C 84.8663,146.933 82.6996,149.433 79.5,151C 81.8284,151.986 83.8284,153.986 85.5,157C 85,157.5 84.5,158 84,158.5C 83.5,157.333 82.6667,156.5 81.5,156C 81.8333,155.667 82.1667,155.333 82.5,155C 81.552,154.517 80.552,154.351 79.5,154.5C 79.5,155.5 79.5,156.5 79.5,157.5C 81.3547,157.272 82.1881,157.939 82,159.5C 80.1162,159.732 77.7828,159.732 75,159.5C 73.635,161.86 71.635,163.527 69,164.5C 68.0255,162.122 67.3589,162.456 67,165.5C 66.1307,160.492 65.4641,160.825 65,166.5C 63.8525,167.458 62.8525,167.125 62,165.5C 61.3162,166.784 61.4829,167.951 62.5,169C 59.8758,171.359 59.2092,171.025 60.5,168C 59.5,167.333 58.5,167.333 57.5,168C 58.1258,181.526 58.1258,196.359 57.5,212.5C 57.7947,214.735 57.4614,216.735 56.5,218.5C 56.5,209.833 56.5,201.167 56.5,192.5C 56.5,172.833 56.5,153.167 56.5,133.5C 56.5,124.5 56.5,115.5 56.5,106.5C 72.954,99.1065 89.2873,91.4399 105.5,83.5C 148.246,65.2911 190.58,46.2911 232.5,26.5C 237.251,25.2895 241.584,23.2895 245.5,20.5C 248.594,19.7866 251.594,18.7866 254.5,17.5 Z"/></g>
5
+ <g><path style="opacity:0.923" fill="#939393" d="M 245.5,20.5 C 241.584,23.2895 237.251,25.2895 232.5,26.5C 231.778,26.0825 231.278,25.4158 231,24.5C 229.333,25.8333 227.667,25.8333 226,24.5C 225.047,26.5922 223.714,26.9255 222,25.5C 220.287,26.8782 218.953,28.5448 218,30.5C 216.984,29.3659 216.317,29.6992 216,31.5C 215.667,30.8333 215.333,30.1667 215,29.5C 214.097,30.7014 212.931,31.5348 211.5,32C 212.28,33.073 212.113,34.2396 211,35.5C 210.779,32.0569 209.779,31.7236 208,34.5C 207.282,33.5494 206.449,33.3828 205.5,34C 204.075,35.3619 203.242,36.8619 203,38.5C 202.333,37.8333 201.667,37.1667 201,36.5C 198.649,37.533 196.316,38.533 194,39.5C 192.674,39.2451 191.674,38.5784 191,37.5C 189.609,40.6363 187.442,41.803 184.5,41C 185.654,41.9138 185.487,42.7471 184,43.5C 183.667,42.8333 183.333,42.1667 183,41.5C 181.665,43.6048 179.998,44.2714 178,43.5C 176.209,45.4133 174.209,47.08 172,48.5C 170.23,47.7236 168.397,47.8903 166.5,49C 166.833,49.3333 167.167,49.6667 167.5,50C 166.24,51.113 165.073,51.2797 164,50.5C 163,51.5 162,52.5 161,53.5C 159.951,52.4829 158.784,52.3162 157.5,53C 156.792,55.7676 155.292,56.6009 153,55.5C 151.933,56.1905 150.766,56.6905 149.5,57C 146.628,58.0577 144.628,59.5577 143.5,61.5C 142.914,61.2907 142.414,60.9574 142,60.5C 140.333,61.5 139,62.8333 138,64.5C 136.68,62.4172 135.346,62.7506 134,65.5C 133.667,65.1667 133.333,64.8333 133,64.5C 130.763,66.2036 128.263,67.2036 125.5,67.5C 125.587,70.5983 125.087,70.9316 124,68.5C 123.667,69.1667 123.333,69.8333 123,70.5C 121.667,70.5 120.333,70.5 119,70.5C 114.033,79.6397 106.7,83.6397 97,82.5C 93.2622,84.4734 89.4288,86.1401 85.5,87.5C 84.2836,86.9984 83.1169,86.6651 82,86.5C 79.7754,87.9389 77.7754,89.6055 76,91.5C 74.324,90.9389 72.9906,89.9389 72,88.5C 71.2177,91.1877 69.7177,92.1877 67.5,91.5C 66.2011,92.09 65.3678,93.09 65,94.5C 64.6667,93.8333 64.3333,93.1667 64,92.5C 62.403,96.0665 60.2363,97.3998 57.5,96.5C 56.4756,97.8518 55.4756,99.1851 54.5,100.5C 53.1283,99.4884 51.795,98.4884 50.5,97.5C 50.5,96.8333 50.8333,96.5 51.5,96.5C 107.71,70.8948 164.044,45.5615 220.5,20.5C 222.049,20.7358 223.549,20.7358 225,20.5C 225.333,21.1667 225.667,21.8333 226,22.5C 228.8,21.8724 231.467,20.8724 234,19.5C 235.714,20.9255 237.047,20.5922 238,18.5C 238.308,19.3081 238.808,19.9747 239.5,20.5C 239.833,19.8333 240.167,19.1667 240.5,18.5C 241.167,19.1667 241.833,19.8333 242.5,20.5C 243.527,19.2086 244.527,19.2086 245.5,20.5 Z"/></g>
6
+ <g><path style="opacity:1" fill="#dcdcdc" d="M 255.5,32.5 C 255.5,53.1667 255.5,73.8333 255.5,94.5C 231.5,94.5 207.5,94.5 183.5,94.5C 183.389,93.8826 183.056,93.3826 182.5,93C 183.766,92.6905 184.933,92.1905 186,91.5C 186.333,92.1667 186.667,92.8333 187,93.5C 187.284,91.1144 188.284,90.4477 190,91.5C 190.953,89.5448 192.287,87.8782 194,86.5C 194.667,85.5 194.667,84.5 194,83.5C 193.086,84.6537 192.253,84.487 191.5,83C 193.915,81.8089 195.248,79.8089 195.5,77C 194.077,75.588 194.244,74.4213 196,73.5C 197.549,75.2505 198.382,76.9172 198.5,78.5C 199.287,77.7579 199.953,76.9246 200.5,76C 198.099,75.195 198.266,74.3617 201,73.5C 200.021,71.7215 200.354,70.0548 202,68.5C 202.333,69.5 202.667,70.5 203,71.5C 203.333,71.1667 203.667,70.8333 204,70.5C 206.97,71.5896 207.303,73.2562 205,75.5C 204.667,75.1667 204.333,74.8333 204,74.5C 201.403,75.4144 201.07,77.081 203,79.5C 203.333,78.8333 203.667,78.1667 204,77.5C 204.684,78.7839 204.517,79.9505 203.5,81C 204.332,81.6877 204.998,81.521 205.5,80.5C 206.047,77.5478 207.214,74.8812 209,72.5C 210.174,74.6709 212.007,75.6709 214.5,75.5C 214.36,77.1238 215.027,78.2904 216.5,79C 216.167,80 215.833,81 215.5,82C 217.184,83.7396 219.018,84.9063 221,85.5C 221.75,84.8742 222.584,84.3742 223.5,84C 222.346,83.0862 222.513,82.2529 224,81.5C 225.716,82.5523 226.716,81.8856 227,79.5C 227.805,81.9011 228.638,81.7344 229.5,79C 231.952,78.7105 234.285,78.0438 236.5,77C 236.167,76.6667 235.833,76.3333 235.5,76C 236.715,73.9045 237.549,74.0712 238,76.5C 239.824,75.2513 239.657,74.0847 237.5,73C 238.88,71.6764 239.214,70.3431 238.5,69C 242.989,68.0268 243.322,66.6935 239.5,65C 240.833,64.3333 240.833,63.6667 239.5,63C 241.095,63.6171 242.428,63.2837 243.5,62C 242.263,60.1673 241.596,58.0007 241.5,55.5C 243.286,53.431 244.952,51.2644 246.5,49C 246.095,48.0546 245.428,47.3879 244.5,47C 246.632,46.082 247.299,44.7487 246.5,43C 247.376,40.6243 249.042,39.1243 251.5,38.5C 251.291,37.914 250.957,37.414 250.5,37C 252.659,35.9409 254.326,34.4409 255.5,32.5 Z"/></g>
7
+ <g><path style="opacity:1" fill="#dcdcdc" d="M 257.5,17.5 C 266.167,21.1667 274.833,24.8333 283.5,28.5C 322.956,46.878 362.622,64.878 402.5,82.5C 420.5,90.8333 438.5,99.1667 456.5,107.5C 455.523,110.287 455.19,113.287 455.5,116.5C 455.5,134.5 455.5,152.5 455.5,170.5C 455.5,189.5 455.5,208.5 455.5,227.5C 455.5,252.167 455.5,276.833 455.5,301.5C 455.5,324.167 455.5,346.833 455.5,369.5C 455.5,374.5 455.5,379.5 455.5,384.5C 455.167,384.5 454.833,384.5 454.5,384.5C 454.5,378.833 454.5,373.167 454.5,367.5C 454.5,362.5 454.5,357.5 454.5,352.5C 454.5,343.5 454.5,334.5 454.5,325.5C 454.5,318.833 454.5,312.167 454.5,305.5C 454.5,301.5 454.5,297.5 454.5,293.5C 454.5,287.5 454.5,281.5 454.5,275.5C 454.5,268.167 454.5,260.833 454.5,253.5C 454.5,238.833 454.5,224.167 454.5,209.5C 454.5,199.833 454.5,190.167 454.5,180.5C 454.5,177.833 454.5,175.167 454.5,172.5C 454.5,167.5 454.5,162.5 454.5,157.5C 454.666,150.492 454.5,143.492 454,136.5C 453.5,136 453,135.5 452.5,135C 452.278,130.104 452.612,125.438 453.5,121C 453.175,118.597 452.008,116.764 450,115.5C 447.616,117.587 444.949,117.587 442,115.5C 441.426,116.354 440.759,117.354 440,118.5C 439.5,118.333 439,118.167 438.5,118C 439.596,113.809 438.429,113.309 435,116.5C 434.508,115.451 434.674,114.451 435.5,113.5C 433.711,112.123 431.711,111.123 429.5,110.5C 422.561,112.792 421.895,111.292 427.5,106C 426.008,102.788 424.174,102.288 422,104.5C 421.667,103.5 421.333,102.5 421,101.5C 419.045,102.453 417.378,103.787 416,105.5C 413.979,102.714 412.479,103.047 411.5,106.5C 408.121,105.558 407.954,103.892 411,101.5C 411.333,101.833 411.667,102.167 412,102.5C 413.943,100.285 415.609,100.285 417,102.5C 418.167,101.333 419.333,100.167 420.5,99C 418.581,97.0662 417.081,97.2329 416,99.5C 413.903,99.3062 411.737,99.3062 409.5,99.5C 408.667,98.5 407.833,97.5 407,96.5C 407.707,98.8431 407.374,101.176 406,103.5C 404.716,102.428 404.383,101.095 405,99.5C 403.633,100.524 402.8,100.024 402.5,98C 402.944,96.2382 403.444,96.4049 404,98.5C 404.848,95.3022 406.348,92.4689 408.5,90C 407.551,89.3828 406.718,89.5494 406,90.5C 405.683,88.6992 405.016,88.3659 404,89.5C 403.667,88.8333 403.333,88.1667 403,87.5C 402.333,88.8333 401.667,88.8333 401,87.5C 400.576,93.7636 399.742,93.9302 398.5,88C 401.39,86.1082 401.056,85.2749 397.5,85.5C 396.948,87.3307 396.948,88.9974 397.5,90.5C 396.645,91.293 395.811,90.9597 395,89.5C 394.667,91.0468 395.167,92.3801 396.5,93.5C 395.975,94.1924 395.308,94.6924 394.5,95C 395.931,95.4652 397.097,96.2986 398,97.5C 400.058,96.8905 400.891,95.8905 400.5,94.5C 401.831,97.0491 400.998,98.7158 398,99.5C 397.333,98.1667 396.667,98.1667 396,99.5C 395.517,98.552 395.351,97.552 395.5,96.5C 391.741,97.8091 388.408,96.9758 385.5,94C 390.788,94.5819 390.788,93.9152 385.5,92C 385.833,91.6667 386.167,91.3333 386.5,91C 384.944,89.401 383.277,87.901 381.5,86.5C 383.848,85.1397 384.015,83.4731 382,81.5C 381.085,82.3279 380.419,83.3279 380,84.5C 379.667,83.8333 379.333,83.1667 379,82.5C 378.834,88.7446 376.834,89.7446 373,85.5C 372.259,86.6405 371.425,86.6405 370.5,85.5C 370.467,84.011 369.967,82.6776 369,81.5C 368.667,82.1667 368.333,82.8333 368,83.5C 365.317,82.0725 363.15,80.0725 361.5,77.5C 362.698,77.0604 363.865,76.727 365,76.5C 365.671,73.2523 365.171,72.9189 363.5,75.5C 363.167,74.8333 362.833,74.1667 362.5,73.5C 361.069,73.9766 359.736,74.6433 358.5,75.5C 359.167,75.8333 359.833,76.1667 360.5,76.5C 359.635,77.5827 358.635,77.7494 357.5,77C 356.167,76.3333 356.167,75.6667 357.5,75C 356.833,74.6667 356.167,74.3333 355.5,74C 356.759,73.0766 358.092,72.2432 359.5,71.5C 358.005,71.5221 356.338,71.1887 354.5,70.5C 356.831,68.2003 356.664,66.5337 354,65.5C 353.926,68.1715 352.759,70.6715 350.5,73C 351.449,73.6172 352.282,73.4506 353,72.5C 353.456,73.7441 352.956,74.5774 351.5,75C 353.286,75.7845 354.786,76.9512 356,78.5C 355.551,82.2703 354.884,82.2703 354,78.5C 352.84,80.797 351.84,80.4637 351,77.5C 350.667,77.8333 350.333,78.1667 350,78.5C 347.943,77.0418 345.777,76.2085 343.5,76C 345.271,75.4646 345.604,74.6313 344.5,73.5C 343.833,73.8333 343.167,74.1667 342.5,74.5C 342.167,73.8333 341.833,73.1667 341.5,72.5C 340.459,74.9913 339.626,74.9913 339,72.5C 337.927,73.2797 336.76,73.113 335.5,72C 336.604,70.8687 336.271,70.0354 334.5,69.5C 333.304,69.8457 333.304,70.3457 334.5,71C 331.768,71.905 331.101,71.2383 332.5,69C 331.404,66.8531 329.904,66.3531 328,67.5C 326.355,65.2852 324.188,64.4519 321.5,65C 323.595,65.5556 323.762,66.0556 322,66.5C 320.238,65.4091 318.404,64.4091 316.5,63.5C 318.991,62.4593 318.991,61.6259 316.5,61C 318.615,60.5756 319.448,59.4089 319,57.5C 317.018,59.9611 314.851,60.4611 312.5,59C 314.167,57.3333 315.833,55.6667 317.5,54C 317,53.5 316.5,53 316,52.5C 314.625,56.0018 312.792,56.6685 310.5,54.5C 309.808,55.0253 309.308,55.6919 309,56.5C 307.213,55.6569 305.38,55.4902 303.5,56C 306.708,53.5532 306.708,51.8866 303.5,51C 305.271,48.8865 306.771,49.0532 308,51.5C 308.5,50.5 309,49.5 309.5,48.5C 308.478,47.646 307.645,46.646 307,45.5C 306.751,46.624 306.251,47.624 305.5,48.5C 302.204,48.9874 299.204,50.1541 296.5,52C 297.5,52.3333 298.5,52.6667 299.5,53C 299.167,53.3333 298.833,53.6667 298.5,54C 297.065,53.6888 295.732,53.8555 294.5,54.5C 293.908,51.8394 293.075,48.8394 292,45.5C 291.667,46.1667 291.333,46.8333 291,47.5C 289.934,44.4369 287.767,42.9369 284.5,43C 285.554,41.6124 285.72,40.1124 285,38.5C 284.292,42.6034 282.126,43.6034 278.5,41.5C 278.351,40.448 278.517,39.448 279,38.5C 279.914,39.6537 280.747,39.487 281.5,38C 279.382,37.7398 277.716,36.7398 276.5,35C 276.833,34.6667 277.167,34.3333 277.5,34C 276.584,33.6258 275.75,33.1258 275,32.5C 275,33.8333 275,35.1667 275,36.5C 273.391,35.8534 271.891,35.02 270.5,34C 271.668,32.5944 271.335,31.4277 269.5,30.5C 270.995,30.5221 272.662,30.1887 274.5,29.5C 273.372,28.7379 272.205,28.0712 271,27.5C 269.933,28.1905 268.766,28.6905 267.5,29C 268.863,31.1293 268.529,31.6293 266.5,30.5C 265.808,31.0253 265.308,31.6919 265,32.5C 262.796,30.9831 260.462,29.6498 258,28.5C 257.722,29.4158 257.222,30.0825 256.5,30.5C 256.182,25.9677 256.515,21.6344 257.5,17.5 Z"/></g>
8
+ <g><path style="opacity:1" fill="#d6d6d6" d="M 454.5,157.5 C 453.766,156.122 453.099,154.622 452.5,153C 452.957,152.586 453.291,152.086 453.5,151.5C 452.516,149.52 451.183,147.853 449.5,146.5C 451.991,145.459 451.991,144.626 449.5,144C 450.308,143.692 450.975,143.192 451.5,142.5C 449.816,140.649 447.983,138.982 446,137.5C 444.794,140.06 443.294,140.56 441.5,139C 442.101,137.395 443.101,136.062 444.5,135C 443.687,133.686 442.687,132.519 441.5,131.5C 442.274,130.289 443.107,130.289 444,131.5C 444.667,130.5 444.667,129.5 444,128.5C 443.259,129.641 442.425,129.641 441.5,128.5C 440.167,129.5 438.833,130.5 437.5,131.5C 436.494,132.396 436.494,133.062 437.5,133.5C 438.258,132.189 439.258,131.689 440.5,132C 438.826,133.506 437.826,135.339 437.5,137.5C 434.203,137.671 433.869,137.005 436.5,135.5C 435.902,134.205 435.402,132.872 435,131.5C 434.193,135.449 433.693,135.449 433.5,131.5C 432.5,131.5 431.5,131.5 430.5,131.5C 430.343,130.127 430.51,128.793 431,127.5C 435.129,127.867 435.462,126.533 432,123.5C 430.647,124.685 429.48,126.019 428.5,127.5C 428.923,130.063 428.923,132.396 428.5,134.5C 426.176,134.123 425.509,133.123 426.5,131.5C 425.502,128.972 424.669,128.972 424,131.5C 423.667,130.5 423.333,129.5 423,128.5C 422.612,129.428 421.945,130.095 421,130.5C 419.5,130 418,129.5 416.5,129C 417.5,128.667 418.5,128.333 419.5,128C 419.5,126 419.5,124 419.5,122C 419,121.5 418.5,121 418,120.5C 417.365,121.966 416.531,123.3 415.5,124.5C 416.167,125.167 416.833,125.833 417.5,126.5C 417.167,126.833 416.833,127.167 416.5,127.5C 415.5,126.167 414.5,126.167 413.5,127.5C 412.8,124.985 411.467,124.318 409.5,125.5C 409.167,125.167 408.833,124.833 408.5,124.5C 410.482,123.784 412.149,122.617 413.5,121C 412.004,120.493 410.837,120.993 410,122.5C 409.316,120.521 409.816,118.854 411.5,117.5C 410.282,117.891 409.448,117.224 409,115.5C 407.582,118.001 406.582,117.668 406,114.5C 405.333,116.167 405.333,117.833 406,119.5C 406.654,118.304 407.154,118.304 407.5,119.5C 406.985,121.225 406.318,122.892 405.5,124.5C 404.797,121.316 402.797,119.816 399.5,120C 398.874,119.25 398.374,118.416 398,117.5C 397.16,120.464 396.16,120.797 395,118.5C 393.927,119.28 392.76,119.113 391.5,118C 390.892,115.816 391.559,113.816 393.5,112C 392.167,112 390.833,112 389.5,112C 390.451,111.282 390.617,110.449 390,109.5C 388.509,111.004 386.676,111.837 384.5,112C 384.07,112.92 383.736,113.753 383.5,114.5C 381.22,113.245 380.053,111.245 380,108.5C 379.667,109.5 379.333,110.5 379,111.5C 375.538,111.017 375.038,109.85 377.5,108C 376.874,107.25 376.374,106.416 376,105.5C 375.138,107.087 374.471,108.754 374,110.5C 372.807,109.022 372.307,107.688 372.5,106.5C 371.5,107.167 370.5,107.833 369.5,108.5C 367.821,106.896 365.821,106.229 363.5,106.5C 360.167,103.167 356.833,99.8333 353.5,96.5C 353.389,95.8826 353.056,95.3826 352.5,95C 349.183,94.5017 345.85,94.335 342.5,94.5C 342.171,91.9683 341.005,90.9683 339,91.5C 338.986,89.402 339.153,87.5687 339.5,86C 338.449,84.6152 337.116,83.6152 335.5,83C 338.228,82.3611 338.728,81.1944 337,79.5C 335.68,79.799 334.18,79.9657 332.5,80C 336.205,83.4594 335.871,85.7928 331.5,87C 332.715,89.0955 333.549,88.9288 334,86.5C 335.167,87.6667 336.333,88.8333 337.5,90C 333.096,93.0162 329.429,92.0162 326.5,87C 327.448,86.5172 328.448,86.3505 329.5,86.5C 329.544,89.4808 329.877,89.8142 330.5,87.5C 330.182,86.3527 329.516,85.5194 328.5,85C 329.956,84.5774 330.456,83.7441 330,82.5C 328.355,82.6932 326.521,82.8598 324.5,83C 323.107,85.6833 321.774,85.85 320.5,83.5C 321.035,81.7295 321.869,81.3961 323,82.5C 324.44,80.9544 326.273,80.121 328.5,80C 327.192,79.1762 325.692,78.6762 324,78.5C 323.147,80.1247 322.147,80.4581 321,79.5C 320.275,81.158 319.108,81.658 317.5,81C 317.745,79.0886 317.745,77.0886 317.5,75C 316.167,74.3333 314.833,74.3333 313.5,75C 316.605,77.8297 316.771,80.663 314,83.5C 312.383,82.4642 312.216,81.2975 313.5,80C 312.234,79.6905 311.067,79.1905 310,78.5C 308.796,79.4706 308.296,80.4706 308.5,81.5C 307.029,80.6195 306.196,79.2861 306,77.5C 304.915,79.6574 303.749,79.8241 302.5,78C 305.167,77.3333 305.167,76.6667 302.5,76C 304.506,75.1513 305.172,73.9846 304.5,72.5C 301.303,73.14 300.137,74.8066 301,77.5C 300.333,76.1667 299.667,76.1667 299,77.5C 298.811,75.205 297.477,73.205 295,71.5C 291.793,74.1502 291.293,73.9835 293.5,71C 292.359,70.2588 292.359,69.4255 293.5,68.5C 291.815,66.9825 290.315,65.3159 289,63.5C 288.5,64 288,64.5 287.5,65C 290.681,67.0189 291.181,69.5189 289,72.5C 287.667,71.8333 286.333,71.1667 285,70.5C 283.93,67.7583 282.43,65.2583 280.5,63C 278.104,62.134 277.437,62.634 278.5,64.5C 278.167,65.5 277.5,66.1667 276.5,66.5C 274.833,65.5 273.5,64.1667 272.5,62.5C 272.167,63.1667 271.833,63.8333 271.5,64.5C 270.573,62.8872 269.739,61.2205 269,59.5C 268.667,60.8333 268.333,62.1667 268,63.5C 267.683,61.6992 267.016,61.3659 266,62.5C 263.904,61.2845 264.071,60.4512 266.5,60C 265.128,59.5983 263.795,59.0983 262.5,58.5C 262.167,59.1667 261.833,59.8333 261.5,60.5C 260.167,59.8333 258.833,59.1667 257.5,58.5C 256.502,49.1904 256.168,39.8571 256.5,30.5C 257.222,30.0825 257.722,29.4158 258,28.5C 260.462,29.6498 262.796,30.9831 265,32.5C 265.308,31.6919 265.808,31.0253 266.5,30.5C 268.529,31.6293 268.863,31.1293 267.5,29C 268.766,28.6905 269.933,28.1905 271,27.5C 272.205,28.0712 273.372,28.7379 274.5,29.5C 272.662,30.1887 270.995,30.5221 269.5,30.5C 271.335,31.4277 271.668,32.5944 270.5,34C 271.891,35.02 273.391,35.8534 275,36.5C 275,35.1667 275,33.8333 275,32.5C 275.75,33.1258 276.584,33.6258 277.5,34C 277.167,34.3333 276.833,34.6667 276.5,35C 277.716,36.7398 279.382,37.7398 281.5,38C 280.747,39.487 279.914,39.6537 279,38.5C 278.517,39.448 278.351,40.448 278.5,41.5C 282.126,43.6034 284.292,42.6034 285,38.5C 285.72,40.1124 285.554,41.6124 284.5,43C 287.767,42.9369 289.934,44.4369 291,47.5C 291.333,46.8333 291.667,46.1667 292,45.5C 293.075,48.8394 293.908,51.8394 294.5,54.5C 295.732,53.8555 297.065,53.6888 298.5,54C 298.833,53.6667 299.167,53.3333 299.5,53C 298.5,52.6667 297.5,52.3333 296.5,52C 299.204,50.1541 302.204,48.9874 305.5,48.5C 306.251,47.624 306.751,46.624 307,45.5C 307.645,46.646 308.478,47.646 309.5,48.5C 309,49.5 308.5,50.5 308,51.5C 306.771,49.0532 305.271,48.8865 303.5,51C 306.708,51.8866 306.708,53.5532 303.5,56C 305.38,55.4902 307.213,55.6569 309,56.5C 309.308,55.6919 309.808,55.0253 310.5,54.5C 312.792,56.6685 314.625,56.0018 316,52.5C 316.5,53 317,53.5 317.5,54C 315.833,55.6667 314.167,57.3333 312.5,59C 314.851,60.4611 317.018,59.9611 319,57.5C 319.448,59.4089 318.615,60.5756 316.5,61C 318.991,61.6259 318.991,62.4593 316.5,63.5C 318.404,64.4091 320.238,65.4091 322,66.5C 323.762,66.0556 323.595,65.5556 321.5,65C 324.188,64.4519 326.355,65.2852 328,67.5C 329.904,66.3531 331.404,66.8531 332.5,69C 331.101,71.2383 331.768,71.905 334.5,71C 333.304,70.3457 333.304,69.8457 334.5,69.5C 336.271,70.0354 336.604,70.8687 335.5,72C 336.76,73.113 337.927,73.2797 339,72.5C 339.626,74.9913 340.459,74.9913 341.5,72.5C 341.833,73.1667 342.167,73.8333 342.5,74.5C 343.167,74.1667 343.833,73.8333 344.5,73.5C 345.604,74.6313 345.271,75.4646 343.5,76C 345.777,76.2085 347.943,77.0418 350,78.5C 350.333,78.1667 350.667,77.8333 351,77.5C 351.84,80.4637 352.84,80.797 354,78.5C 354.884,82.2703 355.551,82.2703 356,78.5C 354.786,76.9512 353.286,75.7845 351.5,75C 352.956,74.5774 353.456,73.7441 353,72.5C 352.282,73.4506 351.449,73.6172 350.5,73C 352.759,70.6715 353.926,68.1715 354,65.5C 356.664,66.5337 356.831,68.2003 354.5,70.5C 356.338,71.1887 358.005,71.5221 359.5,71.5C 358.092,72.2432 356.759,73.0766 355.5,74C 356.167,74.3333 356.833,74.6667 357.5,75C 356.167,75.6667 356.167,76.3333 357.5,77C 358.635,77.7494 359.635,77.5827 360.5,76.5C 359.833,76.1667 359.167,75.8333 358.5,75.5C 359.736,74.6433 361.069,73.9766 362.5,73.5C 362.833,74.1667 363.167,74.8333 363.5,75.5C 365.171,72.9189 365.671,73.2523 365,76.5C 363.865,76.727 362.698,77.0604 361.5,77.5C 363.15,80.0725 365.317,82.0725 368,83.5C 368.333,82.8333 368.667,82.1667 369,81.5C 369.967,82.6776 370.467,84.011 370.5,85.5C 371.425,86.6405 372.259,86.6405 373,85.5C 376.834,89.7446 378.834,88.7446 379,82.5C 379.333,83.1667 379.667,83.8333 380,84.5C 380.419,83.3279 381.085,82.3279 382,81.5C 384.015,83.4731 383.848,85.1397 381.5,86.5C 383.277,87.901 384.944,89.401 386.5,91C 386.167,91.3333 385.833,91.6667 385.5,92C 390.788,93.9152 390.788,94.5819 385.5,94C 388.408,96.9758 391.741,97.8091 395.5,96.5C 395.351,97.552 395.517,98.552 396,99.5C 396.667,98.1667 397.333,98.1667 398,99.5C 400.998,98.7158 401.831,97.0491 400.5,94.5C 400.891,95.8905 400.058,96.8905 398,97.5C 397.097,96.2986 395.931,95.4652 394.5,95C 395.308,94.6924 395.975,94.1924 396.5,93.5C 395.167,92.3801 394.667,91.0468 395,89.5C 395.811,90.9597 396.645,91.293 397.5,90.5C 396.948,88.9974 396.948,87.3307 397.5,85.5C 401.056,85.2749 401.39,86.1082 398.5,88C 399.742,93.9302 400.576,93.7636 401,87.5C 401.667,88.8333 402.333,88.8333 403,87.5C 403.333,88.1667 403.667,88.8333 404,89.5C 405.016,88.3659 405.683,88.6992 406,90.5C 406.718,89.5494 407.551,89.3828 408.5,90C 406.348,92.4689 404.848,95.3022 404,98.5C 403.444,96.4049 402.944,96.2382 402.5,98C 402.8,100.024 403.633,100.524 405,99.5C 404.383,101.095 404.716,102.428 406,103.5C 407.374,101.176 407.707,98.8431 407,96.5C 407.833,97.5 408.667,98.5 409.5,99.5C 411.737,99.3062 413.903,99.3062 416,99.5C 417.081,97.2329 418.581,97.0662 420.5,99C 419.333,100.167 418.167,101.333 417,102.5C 415.609,100.285 413.943,100.285 412,102.5C 411.667,102.167 411.333,101.833 411,101.5C 407.954,103.892 408.121,105.558 411.5,106.5C 412.479,103.047 413.979,102.714 416,105.5C 417.378,103.787 419.045,102.453 421,101.5C 421.333,102.5 421.667,103.5 422,104.5C 424.174,102.288 426.008,102.788 427.5,106C 421.895,111.292 422.561,112.792 429.5,110.5C 431.711,111.123 433.711,112.123 435.5,113.5C 434.674,114.451 434.508,115.451 435,116.5C 438.429,113.309 439.596,113.809 438.5,118C 439,118.167 439.5,118.333 440,118.5C 440.759,117.354 441.426,116.354 442,115.5C 444.949,117.587 447.616,117.587 450,115.5C 452.008,116.764 453.175,118.597 453.5,121C 452.612,125.438 452.278,130.104 452.5,135C 453,135.5 453.5,136 454,136.5C 454.5,143.492 454.666,150.492 454.5,157.5 Z"/></g>
9
+ <g><path style="opacity:0.831" fill="#888888" d="M 426.5,81.5 C 425.262,81.81 425.262,82.31 426.5,83C 425.216,83.6838 424.049,83.5171 423,82.5C 422.667,83.1667 422.333,83.8333 422,84.5C 421.751,83.376 421.251,82.376 420.5,81.5C 418.833,81.5 417.167,81.5 415.5,81.5C 410.755,80.087 405.922,78.087 401,75.5C 397.761,74.3602 394.595,74.3602 391.5,75.5C 390.5,75 389.5,74.5 388.5,74C 389.654,73.0862 389.487,72.2529 388,71.5C 387.167,74 386,74.1667 384.5,72C 384.833,71.6667 385.167,71.3333 385.5,71C 383.006,69.5091 380.506,68.0091 378,66.5C 376.605,67.8146 375.605,67.4812 375,65.5C 373.428,69.5249 372.261,69.3583 371.5,65C 369.285,63.9562 366.952,63.2895 364.5,63C 365.5,62.6667 366.5,62.3333 367.5,62C 366.234,61.6905 365.067,61.1905 364,60.5C 363.275,62.158 362.108,62.658 360.5,62C 362.929,61.5488 363.096,60.7155 361,59.5C 359.456,62.2636 358.289,62.0969 357.5,59C 357.833,58.6667 358.167,58.3333 358.5,58C 356.422,55.8657 354.588,56.0323 353,58.5C 351.667,57.1667 350.333,55.8333 349,54.5C 346.827,57.277 346.327,57.1103 347.5,54C 346.333,53.5 345.5,52.6667 345,51.5C 344.667,51.8333 344.333,52.1667 344,52.5C 342.6,49.6545 341.1,49.3211 339.5,51.5C 336.025,49.1924 332.692,46.6924 329.5,44C 328.216,43.3162 327.049,43.4829 326,44.5C 325.683,42.6992 325.016,42.3659 324,43.5C 321.575,41.9938 319.242,40.3271 317,38.5C 316.667,39.1667 316.333,39.8333 316,40.5C 312.38,35.3408 307.547,33.3408 301.5,34.5C 302.061,32.9345 301.394,31.6011 299.5,30.5C 297.297,30.5866 295.13,30.5866 293,30.5C 290.835,29.4173 288.835,28.084 287,26.5C 285.923,27.4295 284.756,28.0962 283.5,28.5C 274.833,24.8333 266.167,21.1667 257.5,17.5C 256.5,16.1667 255.5,16.1667 254.5,17.5C 251.594,18.7866 248.594,19.7866 245.5,20.5C 244.527,19.2086 243.527,19.2086 242.5,20.5C 241.833,19.8333 241.167,19.1667 240.5,18.5C 240.167,19.1667 239.833,19.8333 239.5,20.5C 238.808,19.9747 238.308,19.3081 238,18.5C 237.047,20.5922 235.714,20.9255 234,19.5C 231.467,20.8724 228.8,21.8724 226,22.5C 225.667,21.8333 225.333,21.1667 225,20.5C 223.549,20.7358 222.049,20.7358 220.5,20.5C 229.62,15.7748 238.953,11.2748 248.5,7C 251.622,5.09575 254.955,4.42909 258.5,5C 314.709,30.2753 370.709,55.7753 426.5,81.5 Z"/></g>
10
+ <g><path style="opacity:1" fill="#9f9f9f" d="M 232.5,26.5 C 190.58,46.2911 148.246,65.2911 105.5,83.5C 97.3742,85.0206 89.5409,87.354 82,90.5C 81.228,90.3552 80.5613,90.0219 80,89.5C 76.4209,92.8723 72.2542,95.039 67.5,96C 63.5556,99.5464 59.2223,101.046 54.5,100.5C 55.4756,99.1851 56.4756,97.8518 57.5,96.5C 60.2363,97.3998 62.403,96.0665 64,92.5C 64.3333,93.1667 64.6667,93.8333 65,94.5C 65.3678,93.09 66.2011,92.09 67.5,91.5C 69.7177,92.1877 71.2177,91.1877 72,88.5C 72.9906,89.9389 74.324,90.9389 76,91.5C 77.7754,89.6055 79.7754,87.9389 82,86.5C 83.1169,86.6651 84.2836,86.9984 85.5,87.5C 89.4288,86.1401 93.2622,84.4734 97,82.5C 106.7,83.6397 114.033,79.6397 119,70.5C 120.333,70.5 121.667,70.5 123,70.5C 123.333,69.8333 123.667,69.1667 124,68.5C 125.087,70.9316 125.587,70.5983 125.5,67.5C 128.263,67.2036 130.763,66.2036 133,64.5C 133.333,64.8333 133.667,65.1667 134,65.5C 135.346,62.7506 136.68,62.4172 138,64.5C 139,62.8333 140.333,61.5 142,60.5C 142.414,60.9574 142.914,61.2907 143.5,61.5C 144.628,59.5577 146.628,58.0577 149.5,57C 150.766,56.6905 151.933,56.1905 153,55.5C 155.292,56.6009 156.792,55.7676 157.5,53C 158.784,52.3162 159.951,52.4829 161,53.5C 162,52.5 163,51.5 164,50.5C 165.073,51.2797 166.24,51.113 167.5,50C 167.167,49.6667 166.833,49.3333 166.5,49C 168.397,47.8903 170.23,47.7236 172,48.5C 174.209,47.08 176.209,45.4133 178,43.5C 179.998,44.2714 181.665,43.6048 183,41.5C 183.333,42.1667 183.667,42.8333 184,43.5C 185.487,42.7471 185.654,41.9138 184.5,41C 187.442,41.803 189.609,40.6363 191,37.5C 191.674,38.5784 192.674,39.2451 194,39.5C 196.316,38.533 198.649,37.533 201,36.5C 201.667,37.1667 202.333,37.8333 203,38.5C 203.242,36.8619 204.075,35.3619 205.5,34C 206.449,33.3828 207.282,33.5494 208,34.5C 209.779,31.7236 210.779,32.0569 211,35.5C 212.113,34.2396 212.28,33.073 211.5,32C 212.931,31.5348 214.097,30.7014 215,29.5C 215.333,30.1667 215.667,30.8333 216,31.5C 216.317,29.6992 216.984,29.3659 218,30.5C 218.953,28.5448 220.287,26.8782 222,25.5C 223.714,26.9255 225.047,26.5922 226,24.5C 227.667,25.8333 229.333,25.8333 231,24.5C 231.278,25.4158 231.778,26.0825 232.5,26.5 Z"/></g>
11
+ <g><path style="opacity:1" fill="#cfcfcf" d="M 254.5,17.5 C 255.5,16.1667 256.5,16.1667 257.5,17.5C 256.515,21.6344 256.182,25.9677 256.5,30.5C 256.168,39.8571 256.502,49.1904 257.5,58.5C 258.833,59.1667 260.167,59.8333 261.5,60.5C 261.833,59.8333 262.167,59.1667 262.5,58.5C 263.795,59.0983 265.128,59.5983 266.5,60C 264.071,60.4512 263.904,61.2845 266,62.5C 267.016,61.3659 267.683,61.6992 268,63.5C 268.333,62.1667 268.667,60.8333 269,59.5C 269.739,61.2205 270.573,62.8872 271.5,64.5C 271.833,63.8333 272.167,63.1667 272.5,62.5C 273.5,64.1667 274.833,65.5 276.5,66.5C 277.5,66.1667 278.167,65.5 278.5,64.5C 277.437,62.634 278.104,62.134 280.5,63C 282.43,65.2583 283.93,67.7583 285,70.5C 286.333,71.1667 287.667,71.8333 289,72.5C 291.181,69.5189 290.681,67.0189 287.5,65C 288,64.5 288.5,64 289,63.5C 290.315,65.3159 291.815,66.9825 293.5,68.5C 292.359,69.4255 292.359,70.2588 293.5,71C 291.293,73.9835 291.793,74.1502 295,71.5C 297.477,73.205 298.811,75.205 299,77.5C 299.667,76.1667 300.333,76.1667 301,77.5C 300.137,74.8066 301.303,73.14 304.5,72.5C 305.172,73.9846 304.506,75.1513 302.5,76C 305.167,76.6667 305.167,77.3333 302.5,78C 303.749,79.8241 304.915,79.6574 306,77.5C 306.196,79.2861 307.029,80.6195 308.5,81.5C 308.296,80.4706 308.796,79.4706 310,78.5C 311.067,79.1905 312.234,79.6905 313.5,80C 312.216,81.2975 312.383,82.4642 314,83.5C 316.771,80.663 316.605,77.8297 313.5,75C 314.833,74.3333 316.167,74.3333 317.5,75C 317.745,77.0886 317.745,79.0886 317.5,81C 319.108,81.658 320.275,81.158 321,79.5C 322.147,80.4581 323.147,80.1247 324,78.5C 325.692,78.6762 327.192,79.1762 328.5,80C 326.273,80.121 324.44,80.9544 323,82.5C 321.869,81.3961 321.035,81.7295 320.5,83.5C 321.774,85.85 323.107,85.6833 324.5,83C 326.521,82.8598 328.355,82.6932 330,82.5C 330.456,83.7441 329.956,84.5774 328.5,85C 329.516,85.5194 330.182,86.3527 330.5,87.5C 329.877,89.8142 329.544,89.4808 329.5,86.5C 328.448,86.3505 327.448,86.5172 326.5,87C 329.429,92.0162 333.096,93.0162 337.5,90C 336.333,88.8333 335.167,87.6667 334,86.5C 333.549,88.9288 332.715,89.0955 331.5,87C 335.871,85.7928 336.205,83.4594 332.5,80C 334.18,79.9657 335.68,79.799 337,79.5C 338.728,81.1944 338.228,82.3611 335.5,83C 337.116,83.6152 338.449,84.6152 339.5,86C 339.153,87.5687 338.986,89.402 339,91.5C 341.005,90.9683 342.171,91.9683 342.5,94.5C 313.5,94.5 284.5,94.5 255.5,94.5C 255.5,73.8333 255.5,53.1667 255.5,32.5C 255.821,27.3054 255.487,22.3054 254.5,17.5 Z"/></g>
12
+ <g><path style="opacity:1" fill="#9b9b9b" d="M 426.5,81.5 C 438.95,86.5581 451.283,91.8914 463.5,97.5C 463.5,98.1667 463.833,98.5 464.5,98.5C 463.685,99.8366 462.518,100.837 461,101.5C 458.262,99.3536 455.262,97.687 452,96.5C 449.076,95.3398 446.076,95.3398 443,96.5C 442.5,94.6667 441.333,93.5 439.5,93C 436.494,92.6676 433.66,91.8343 431,90.5C 430.667,91.1667 430.333,91.8333 430,92.5C 428.647,90.5664 427.147,88.7331 425.5,87C 422.168,86.7512 419.001,85.9179 416,84.5C 414.108,87.3895 413.275,87.0562 413.5,83.5C 411.876,83.6399 410.71,82.9733 410,81.5C 408.605,82.8146 407.605,82.4812 407,80.5C 405.89,82.0368 404.39,82.7035 402.5,82.5C 362.622,64.878 322.956,46.878 283.5,28.5C 284.756,28.0962 285.923,27.4295 287,26.5C 288.835,28.084 290.835,29.4173 293,30.5C 295.13,30.5866 297.297,30.5866 299.5,30.5C 301.394,31.6011 302.061,32.9345 301.5,34.5C 307.547,33.3408 312.38,35.3408 316,40.5C 316.333,39.8333 316.667,39.1667 317,38.5C 319.242,40.3271 321.575,41.9938 324,43.5C 325.016,42.3659 325.683,42.6992 326,44.5C 327.049,43.4829 328.216,43.3162 329.5,44C 332.692,46.6924 336.025,49.1924 339.5,51.5C 341.1,49.3211 342.6,49.6545 344,52.5C 344.333,52.1667 344.667,51.8333 345,51.5C 345.5,52.6667 346.333,53.5 347.5,54C 346.327,57.1103 346.827,57.277 349,54.5C 350.333,55.8333 351.667,57.1667 353,58.5C 354.588,56.0323 356.422,55.8657 358.5,58C 358.167,58.3333 357.833,58.6667 357.5,59C 358.289,62.0969 359.456,62.2636 361,59.5C 363.096,60.7155 362.929,61.5488 360.5,62C 362.108,62.658 363.275,62.158 364,60.5C 365.067,61.1905 366.234,61.6905 367.5,62C 366.5,62.3333 365.5,62.6667 364.5,63C 366.952,63.2895 369.285,63.9562 371.5,65C 372.261,69.3583 373.428,69.5249 375,65.5C 375.605,67.4812 376.605,67.8146 378,66.5C 380.506,68.0091 383.006,69.5091 385.5,71C 385.167,71.3333 384.833,71.6667 384.5,72C 386,74.1667 387.167,74 388,71.5C 389.487,72.2529 389.654,73.0862 388.5,74C 389.5,74.5 390.5,75 391.5,75.5C 394.595,74.3602 397.761,74.3602 401,75.5C 405.922,78.087 410.755,80.087 415.5,81.5C 417.167,81.5 418.833,81.5 420.5,81.5C 421.251,82.376 421.751,83.376 422,84.5C 422.333,83.8333 422.667,83.1667 423,82.5C 424.049,83.5171 425.216,83.6838 426.5,83C 425.262,82.31 425.262,81.81 426.5,81.5 Z"/></g>
13
+ <g><path style="opacity:1" fill="#b0b0b0" d="M 464.5,98.5 C 466.048,98.8212 466.715,99.8212 466.5,101.5C 463.167,103.5 459.833,105.5 456.5,107.5C 438.5,99.1667 420.5,90.8333 402.5,82.5C 404.39,82.7035 405.89,82.0368 407,80.5C 407.605,82.4812 408.605,82.8146 410,81.5C 410.71,82.9733 411.876,83.6399 413.5,83.5C 413.275,87.0562 414.108,87.3895 416,84.5C 419.001,85.9179 422.168,86.7512 425.5,87C 427.147,88.7331 428.647,90.5664 430,92.5C 430.333,91.8333 430.667,91.1667 431,90.5C 433.66,91.8343 436.494,92.6676 439.5,93C 441.333,93.5 442.5,94.6667 443,96.5C 446.076,95.3398 449.076,95.3398 452,96.5C 455.262,97.687 458.262,99.3536 461,101.5C 462.518,100.837 463.685,99.8366 464.5,98.5 Z"/></g>
14
+ <g><path style="opacity:1" fill="#e03636" d="M 183.5,94.5 C 207.5,94.5 231.5,94.5 255.5,94.5C 284.5,94.5 313.5,94.5 342.5,94.5C 345.85,94.335 349.183,94.5017 352.5,95C 353.056,95.3826 353.389,95.8826 353.5,96.5C 355.087,100.023 355.587,103.69 355,107.5C 354.167,109.667 352.667,111.167 350.5,112C 312.031,114.009 273.531,114.843 235,114.5C 208.833,114.333 182.667,114.167 156.5,114C 153.964,113.814 151.631,113.314 149.5,112.5C 154.29,106.539 159.29,100.706 164.5,95C 170.825,94.5005 177.158,94.3338 183.5,94.5 Z"/></g>
15
+ <g><path style="opacity:0.018" fill="#fdfdfd" d="M 51.5,96.5 C 50.8333,96.5 50.5,96.8333 50.5,97.5C 48.847,97.6596 47.5137,98.3263 46.5,99.5C 45.5386,101.265 45.2053,103.265 45.5,105.5C 44.5416,105.047 43.7083,104.381 43,103.5C 41.3576,95.7639 44.1909,93.4306 51.5,96.5 Z"/></g>
16
+ <g><path style="opacity:0.008" fill="#fdfdfd" d="M 463.5,97.5 C 465.167,97.5 466.833,97.5 468.5,97.5C 468.519,99.0603 468.852,100.56 469.5,102C 469.302,104.185 468.302,105.685 466.5,106.5C 466.5,104.833 466.5,103.167 466.5,101.5C 466.715,99.8212 466.048,98.8212 464.5,98.5C 463.833,98.5 463.5,98.1667 463.5,97.5 Z"/></g>
17
+ <g><path style="opacity:1" fill="#bcbcbc" d="M 105.5,83.5 C 89.2873,91.4399 72.954,99.1065 56.5,106.5C 53.1292,104.154 49.7959,101.821 46.5,99.5C 47.5137,98.3263 48.847,97.6596 50.5,97.5C 51.795,98.4884 53.1283,99.4884 54.5,100.5C 59.2223,101.046 63.5556,99.5464 67.5,96C 72.2542,95.039 76.4209,92.8723 80,89.5C 80.5613,90.0219 81.228,90.3552 82,90.5C 89.5409,87.354 97.3742,85.0206 105.5,83.5 Z"/></g>
18
+ <g><path style="opacity:1" fill="#d0d0d0" d="M 454.5,157.5 C 454.5,162.5 454.5,167.5 454.5,172.5C 452.495,171.746 451.828,170.579 452.5,169C 450.699,168.683 450.366,168.016 451.5,167C 450.792,164.232 449.292,163.399 447,164.5C 446.147,162.875 445.147,162.542 444,163.5C 443.333,162.167 443.333,160.833 444,159.5C 444.333,160.167 444.667,160.833 445,161.5C 445.309,160.234 445.809,159.067 446.5,158C 443.755,158.96 442.255,157.793 442,154.5C 439.444,155.219 438.277,156.886 438.5,159.5C 436.058,159.881 435.391,159.214 436.5,157.5C 436.192,156.692 435.692,156.025 435,155.5C 434.581,156.672 433.915,157.672 433,158.5C 430.602,157.144 428.102,155.977 425.5,155C 425.833,154.667 426.167,154.333 426.5,154C 424.776,153.552 424.109,152.718 424.5,151.5C 423.522,151.977 422.689,152.643 422,153.5C 419.978,152.214 417.811,151.214 415.5,150.5C 414.138,148.988 413.804,147.488 414.5,146C 413.584,145.626 412.75,145.126 412,144.5C 411.333,145.833 410.667,145.833 410,144.5C 409.667,145.5 409.333,146.5 409,147.5C 406.837,143.453 403.671,142.12 399.5,143.5C 398.167,142.833 396.833,142.167 395.5,141.5C 394.243,139.321 392.743,137.321 391,135.5C 388.904,136.715 389.071,137.549 391.5,138C 387.682,137.843 384.015,136.843 380.5,135C 380.833,134.667 381.167,134.333 381.5,134C 379.5,132.667 377.5,131.333 375.5,130C 377.853,127.441 377.687,125.274 375,123.5C 374.768,124.737 374.268,125.737 373.5,126.5C 373.5,124.167 373.5,121.833 373.5,119.5C 373.672,118.508 373.338,117.842 372.5,117.5C 369.122,114.124 366.122,110.457 363.5,106.5C 365.821,106.229 367.821,106.896 369.5,108.5C 370.5,107.833 371.5,107.167 372.5,106.5C 372.307,107.688 372.807,109.022 374,110.5C 374.471,108.754 375.138,107.087 376,105.5C 376.374,106.416 376.874,107.25 377.5,108C 375.038,109.85 375.538,111.017 379,111.5C 379.333,110.5 379.667,109.5 380,108.5C 380.053,111.245 381.22,113.245 383.5,114.5C 383.736,113.753 384.07,112.92 384.5,112C 386.676,111.837 388.509,111.004 390,109.5C 390.617,110.449 390.451,111.282 389.5,112C 390.833,112 392.167,112 393.5,112C 391.559,113.816 390.892,115.816 391.5,118C 392.76,119.113 393.927,119.28 395,118.5C 396.16,120.797 397.16,120.464 398,117.5C 398.374,118.416 398.874,119.25 399.5,120C 402.797,119.816 404.797,121.316 405.5,124.5C 406.318,122.892 406.985,121.225 407.5,119.5C 407.154,118.304 406.654,118.304 406,119.5C 405.333,117.833 405.333,116.167 406,114.5C 406.582,117.668 407.582,118.001 409,115.5C 409.448,117.224 410.282,117.891 411.5,117.5C 409.816,118.854 409.316,120.521 410,122.5C 410.837,120.993 412.004,120.493 413.5,121C 412.149,122.617 410.482,123.784 408.5,124.5C 408.833,124.833 409.167,125.167 409.5,125.5C 411.467,124.318 412.8,124.985 413.5,127.5C 414.5,126.167 415.5,126.167 416.5,127.5C 416.833,127.167 417.167,126.833 417.5,126.5C 416.833,125.833 416.167,125.167 415.5,124.5C 416.531,123.3 417.365,121.966 418,120.5C 418.5,121 419,121.5 419.5,122C 419.5,124 419.5,126 419.5,128C 418.5,128.333 417.5,128.667 416.5,129C 418,129.5 419.5,130 421,130.5C 421.945,130.095 422.612,129.428 423,128.5C 423.333,129.5 423.667,130.5 424,131.5C 424.669,128.972 425.502,128.972 426.5,131.5C 425.509,133.123 426.176,134.123 428.5,134.5C 428.923,132.396 428.923,130.063 428.5,127.5C 429.48,126.019 430.647,124.685 432,123.5C 435.462,126.533 435.129,127.867 431,127.5C 430.51,128.793 430.343,130.127 430.5,131.5C 431.5,131.5 432.5,131.5 433.5,131.5C 433.693,135.449 434.193,135.449 435,131.5C 435.402,132.872 435.902,134.205 436.5,135.5C 433.869,137.005 434.203,137.671 437.5,137.5C 437.826,135.339 438.826,133.506 440.5,132C 439.258,131.689 438.258,132.189 437.5,133.5C 436.494,133.062 436.494,132.396 437.5,131.5C 438.833,130.5 440.167,129.5 441.5,128.5C 442.425,129.641 443.259,129.641 444,128.5C 444.667,129.5 444.667,130.5 444,131.5C 443.107,130.289 442.274,130.289 441.5,131.5C 442.687,132.519 443.687,133.686 444.5,135C 443.101,136.062 442.101,137.395 441.5,139C 443.294,140.56 444.794,140.06 446,137.5C 447.983,138.982 449.816,140.649 451.5,142.5C 450.975,143.192 450.308,143.692 449.5,144C 451.991,144.626 451.991,145.459 449.5,146.5C 451.183,147.853 452.516,149.52 453.5,151.5C 453.291,152.086 452.957,152.586 452.5,153C 453.099,154.622 453.766,156.122 454.5,157.5 Z"/></g>
19
+ <g><path style="opacity:1" fill="#e94141" d="M 353.5,96.5 C 356.833,99.8333 360.167,103.167 363.5,106.5C 366.122,110.457 369.122,114.124 372.5,117.5C 370.565,118.709 368.565,118.542 366.5,117C 359.023,116.153 351.523,115.653 344,115.5C 331.445,116.248 318.945,117.248 306.5,118.5C 252.331,118.832 198.331,118.499 144.5,117.5C 145.833,115.5 147.5,113.833 149.5,112.5C 151.631,113.314 153.964,113.814 156.5,114C 182.667,114.167 208.833,114.333 235,114.5C 273.531,114.843 312.031,114.009 350.5,112C 352.667,111.167 354.167,109.667 355,107.5C 355.587,103.69 355.087,100.023 353.5,96.5 Z"/></g>
20
+ <g><path style="opacity:1" fill="#f27876" d="M 372.5,117.5 C 373.338,117.842 373.672,118.508 373.5,119.5C 351.165,120.821 328.832,120.821 306.5,119.5C 306.5,119.167 306.5,118.833 306.5,118.5C 318.945,117.248 331.445,116.248 344,115.5C 351.523,115.653 359.023,116.153 366.5,117C 368.565,118.542 370.565,118.709 372.5,117.5 Z"/></g>
21
+ <g><path style="opacity:1" fill="#fe6364" d="M 144.5,117.5 C 198.331,118.499 252.331,118.832 306.5,118.5C 306.5,118.833 306.5,119.167 306.5,119.5C 252.5,119.5 198.5,119.5 144.5,119.5C 144.167,119.5 143.833,119.5 143.5,119.5C 143.328,118.508 143.662,117.842 144.5,117.5 Z"/></g>
22
+ <g><path style="opacity:1" fill="#797979" d="M 46.5,99.5 C 49.7959,101.821 53.1292,104.154 56.5,106.5C 56.5,115.5 56.5,124.5 56.5,133.5C 53.9153,132.928 51.2487,132.761 48.5,133C 49.4506,132.282 49.6172,131.449 49,130.5C 47.8873,131.305 46.7206,131.972 45.5,132.5C 45.5,123.5 45.5,114.5 45.5,105.5C 45.2053,103.265 45.5386,101.265 46.5,99.5 Z"/></g>
23
+ <g><path style="opacity:1" fill="#d13737" d="M 144.5,119.5 C 198.5,119.5 252.5,119.5 306.5,119.5C 328.832,120.821 351.165,120.821 373.5,119.5C 373.5,121.833 373.5,124.167 373.5,126.5C 373.5,131.167 373.5,135.833 373.5,140.5C 372.833,133.988 372.167,127.321 371.5,120.5C 370.646,121.522 369.646,122.355 368.5,123C 350.5,123.667 332.5,123.667 314.5,123C 311.768,122.587 309.101,121.92 306.5,121C 252.332,120.833 198.332,120.333 144.5,119.5 Z"/></g>
24
+ <g><path style="opacity:1" fill="#dcdcdc" d="M 143.5,120.5 C 143.5,131.5 143.5,142.5 143.5,153.5C 143.5,156.5 143.5,159.5 143.5,162.5C 142.778,162.082 142.278,161.416 142,160.5C 141.915,162.085 141.749,163.418 141.5,164.5C 139.585,163.265 138.585,161.932 138.5,160.5C 137.646,161.522 136.646,162.355 135.5,163C 136.876,165.543 138.043,165.709 139,163.5C 139.551,165.353 138.885,166.687 137,167.5C 134.348,167.234 132.348,165.567 131,162.5C 130.292,165.268 128.792,166.101 126.5,165C 125.743,166.512 124.743,167.846 123.5,169C 126.904,170.863 127.071,172.697 124,174.5C 123.25,173.874 122.416,173.374 121.5,173C 122.198,172.029 122.198,170.863 121.5,169.5C 121.59,167.575 122.59,166.408 124.5,166C 123.167,165 123.167,164 124.5,163C 121.508,161.912 120.508,162.579 121.5,165C 120.556,166.477 119.223,167.477 117.5,168C 118.494,169.329 119.494,170.662 120.5,172C 118.596,175.288 117.429,175.121 117,171.5C 116.667,172.167 116.333,172.833 116,173.5C 115.333,172.167 114.333,171.167 113,170.5C 112.1,171.77 110.934,172.77 109.5,173.5C 111.167,173.5 112.833,173.5 114.5,173.5C 113.758,175.35 112.758,176.016 111.5,175.5C 112.364,177.611 112.364,179.444 111.5,181C 111.167,181.167 110.833,181.333 110.5,181.5C 109.416,180.335 108.583,179.002 108,177.5C 105.033,179.076 102.533,181.243 100.5,184C 98.5665,184.783 97.0665,184.283 96,182.5C 95.3076,183.025 94.8076,183.692 94.5,184.5C 95.0016,185.716 95.3349,186.883 95.5,188C 92.8322,187.731 90.3322,187.564 88,187.5C 86.8118,188.563 86.3118,189.897 86.5,191.5C 85.448,191.351 84.448,191.517 83.5,192C 88.3031,193.078 88.4697,194.244 84,195.5C 82.1769,194.349 80.3436,193.182 78.5,192C 80.286,191.215 81.786,190.049 83,188.5C 83.3333,188.833 83.6667,189.167 84,189.5C 84.3423,185.165 83.1756,184.665 80.5,188C 79.2161,188.684 78.0495,188.517 77,187.5C 76.8333,187.833 76.6667,188.167 76.5,188.5C 77.376,189.251 78.376,189.751 79.5,190C 78.1667,190.667 76.8333,191.333 75.5,192C 76.8333,192.667 76.8333,193.333 75.5,194C 77.1667,195 78.5,196.333 79.5,198C 78.1456,199.294 76.8123,199.46 75.5,198.5C 74.7132,199.242 74.0465,200.075 73.5,201C 70.1217,201.835 67.6217,203.002 66,204.5C 64.8926,204.415 63.8926,204.081 63,203.5C 63.379,201.925 63.2123,200.425 62.5,199C 61.7926,199.744 60.4592,200.244 58.5,200.5C 58.3505,201.552 58.5172,202.552 59,203.5C 63.1609,205.085 63.3276,206.751 59.5,208.5C 58.8281,209.949 58.1614,211.282 57.5,212.5C 58.1258,196.359 58.1258,181.526 57.5,168C 58.5,167.333 59.5,167.333 60.5,168C 59.2092,171.025 59.8758,171.359 62.5,169C 61.4829,167.951 61.3162,166.784 62,165.5C 62.8525,167.125 63.8525,167.458 65,166.5C 65.4641,160.825 66.1307,160.492 67,165.5C 67.3589,162.456 68.0255,162.122 69,164.5C 71.635,163.527 73.635,161.86 75,159.5C 77.7828,159.732 80.1162,159.732 82,159.5C 82.1881,157.939 81.3547,157.272 79.5,157.5C 79.5,156.5 79.5,155.5 79.5,154.5C 80.552,154.351 81.552,154.517 82.5,155C 82.1667,155.333 81.8333,155.667 81.5,156C 82.6667,156.5 83.5,157.333 84,158.5C 84.5,158 85,157.5 85.5,157C 83.8284,153.986 81.8284,151.986 79.5,151C 82.6996,149.433 84.8663,146.933 86,143.5C 86.8563,146.188 88.6896,147.854 91.5,148.5C 88.1445,150.185 87.8112,152.185 90.5,154.5C 92.6922,153.141 94.3589,151.308 95.5,149C 94.6919,148.692 94.0253,148.192 93.5,147.5C 97.1358,145.793 97.1358,144.626 93.5,144C 95.4789,143.316 97.1456,143.816 98.5,145.5C 98.8346,143.997 98.8346,142.664 98.5,141.5C 99.7989,142.09 100.632,143.09 101,144.5C 101.333,143.167 101.667,141.833 102,140.5C 102.654,141.696 103.154,141.696 103.5,140.5C 102.564,139.026 101.23,138.026 99.5,137.5C 98.6143,136.675 98.281,135.675 98.5,134.5C 97.1266,134.657 95.7932,134.49 94.5,134C 94.5,133 94.5,132 94.5,131C 97.2796,130.448 99.7796,129.948 102,129.5C 103,130.5 104,131.5 105,132.5C 105.667,130.5 107,129.167 109,128.5C 109.402,127.128 109.902,125.795 110.5,124.5C 109.738,124.089 108.738,123.923 107.5,124C 106.549,123.282 106.383,122.449 107,121.5C 108.333,122.833 109.667,122.833 111,121.5C 111.333,122.167 111.667,122.833 112,123.5C 113,122.5 114,121.5 115,120.5C 116.049,121.517 117.216,121.684 118.5,121C 116.216,119.637 116.049,118.137 118,116.5C 119.08,118.553 119.914,120.72 120.5,123C 117.296,121.854 115.129,123.021 114,126.5C 113.667,125.833 113.333,125.167 113,124.5C 112.025,127.447 110.692,130.447 109,133.5C 107.757,132.664 106.59,132.997 105.5,134.5C 106.388,138.965 108.555,139.298 112,135.5C 113.309,137.891 114.309,137.891 115,135.5C 115.615,137.116 116.615,138.449 118,139.5C 119.864,136.712 119.031,134.879 115.5,134C 116.253,132.513 117.086,132.346 118,133.5C 118.043,126.874 119.376,126.874 122,133.5C 123.923,131.881 124.423,130.048 123.5,128C 124.667,127.5 125.5,126.667 126,125.5C 126.333,126.167 126.667,126.833 127,127.5C 127.5,126.333 128.333,125.5 129.5,125C 127.5,124 125.5,123 123.5,122C 125.218,121.654 126.885,121.154 128.5,120.5C 129.192,121.025 129.692,121.692 130,122.5C 131.544,119.736 132.711,119.903 133.5,123C 130.807,126.285 131.474,127.618 135.5,127C 134.269,128.183 134.269,129.349 135.5,130.5C 136.308,128.577 136.808,126.577 137,124.5C 137.5,125 138,125.5 138.5,126C 137.483,127.049 137.316,128.216 138,129.5C 138.645,128.354 139.478,127.354 140.5,126.5C 140.167,125.833 139.833,125.167 139.5,124.5C 140.849,123.091 142.182,121.757 143.5,120.5 Z"/></g>
25
+ <g><path style="opacity:1" fill="#c9c9c9" d="M 454.5,172.5 C 454.5,175.167 454.5,177.833 454.5,180.5C 452.373,181.398 451.206,183.064 451,185.5C 450.259,184.359 449.425,184.359 448.5,185.5C 446.728,184.73 445.728,183.397 445.5,181.5C 446.498,179.388 447.831,178.388 449.5,178.5C 446.924,177.117 447.258,176.283 450.5,176C 447.572,173.874 445.739,174.707 445,178.5C 443.605,177.185 442.605,177.519 442,179.5C 440.415,178.624 439.415,177.291 439,175.5C 438.585,177.291 437.585,178.624 436,179.5C 436.465,177.213 436.632,175.047 436.5,173C 435.5,172.333 434.5,172.333 433.5,173C 434.196,174.488 433.862,175.988 432.5,177.5C 431.494,177.062 431.494,176.396 432.5,175.5C 431.758,174.713 430.925,174.047 430,173.5C 428.474,173.527 426.974,174.027 425.5,175C 423.512,173.634 422.512,172.134 422.5,170.5C 421.858,173.797 420.691,174.131 419,171.5C 417.636,172.258 416.469,171.758 415.5,170C 417.947,168.771 418.113,167.271 416,165.5C 415.16,168.464 414.16,168.797 413,166.5C 412.586,166.957 412.086,167.291 411.5,167.5C 409.929,165.108 409.095,162.774 409,160.5C 407.369,162.481 407.535,164.481 409.5,166.5C 408.369,167.604 407.535,167.271 407,165.5C 405.887,166.711 404.72,166.711 403.5,165.5C 402.289,164.726 402.289,163.893 403.5,163C 401.892,162.342 400.725,162.842 400,164.5C 398.168,162.712 396.002,161.378 393.5,160.5C 393.667,160.167 393.833,159.833 394,159.5C 396.313,161.037 398.813,161.537 401.5,161C 399.924,160.56 398.59,159.727 397.5,158.5C 396.914,158.709 396.414,159.043 396,159.5C 394.438,157.575 392.105,156.241 389,155.5C 387.238,155.944 387.405,156.444 389.5,157C 388.552,157.483 387.552,157.649 386.5,157.5C 386.307,153.551 385.807,153.551 385,157.5C 384.676,155.431 383.842,155.098 382.5,156.5C 381.5,156 380.5,155.5 379.5,155C 379.833,154.667 380.167,154.333 380.5,154C 378.478,151.637 376.145,151.137 373.5,152.5C 373.5,148.5 373.5,144.5 373.5,140.5C 373.5,135.833 373.5,131.167 373.5,126.5C 374.268,125.737 374.768,124.737 375,123.5C 377.687,125.274 377.853,127.441 375.5,130C 377.5,131.333 379.5,132.667 381.5,134C 381.167,134.333 380.833,134.667 380.5,135C 384.015,136.843 387.682,137.843 391.5,138C 389.071,137.549 388.904,136.715 391,135.5C 392.743,137.321 394.243,139.321 395.5,141.5C 396.833,142.167 398.167,142.833 399.5,143.5C 403.671,142.12 406.837,143.453 409,147.5C 409.333,146.5 409.667,145.5 410,144.5C 410.667,145.833 411.333,145.833 412,144.5C 412.75,145.126 413.584,145.626 414.5,146C 413.804,147.488 414.138,148.988 415.5,150.5C 417.811,151.214 419.978,152.214 422,153.5C 422.689,152.643 423.522,151.977 424.5,151.5C 424.109,152.718 424.776,153.552 426.5,154C 426.167,154.333 425.833,154.667 425.5,155C 428.102,155.977 430.602,157.144 433,158.5C 433.915,157.672 434.581,156.672 435,155.5C 435.692,156.025 436.192,156.692 436.5,157.5C 435.391,159.214 436.058,159.881 438.5,159.5C 438.277,156.886 439.444,155.219 442,154.5C 442.255,157.793 443.755,158.96 446.5,158C 445.809,159.067 445.309,160.234 445,161.5C 444.667,160.833 444.333,160.167 444,159.5C 443.333,160.833 443.333,162.167 444,163.5C 445.147,162.542 446.147,162.875 447,164.5C 449.292,163.399 450.792,164.232 451.5,167C 450.366,168.016 450.699,168.683 452.5,169C 451.828,170.579 452.495,171.746 454.5,172.5 Z"/></g>
26
+ <g><path style="opacity:1" fill="#c42626" d="M 143.5,119.5 C 143.833,119.5 144.167,119.5 144.5,119.5C 198.332,120.333 252.332,120.833 306.5,121C 309.101,121.92 311.768,122.587 314.5,123C 332.5,123.667 350.5,123.667 368.5,123C 369.646,122.355 370.646,121.522 371.5,120.5C 372.167,127.321 372.833,133.988 373.5,140.5C 373.5,144.5 373.5,148.5 373.5,152.5C 373.5,152.833 373.5,153.167 373.5,153.5C 372.263,158.96 371.596,164.627 371.5,170.5C 368.724,170.911 368.057,170.078 369.5,168C 367.168,164.843 365.835,161.343 365.5,157.5C 363.833,157.5 362.167,157.5 360.5,157.5C 360.5,156.167 360.5,154.833 360.5,153.5C 358.833,153.5 357.167,153.5 355.5,153.5C 355.5,152.167 355.5,150.833 355.5,149.5C 290.833,149.5 226.167,149.5 161.5,149.5C 161.5,150.833 161.5,152.167 161.5,153.5C 159.833,153.5 158.167,153.5 156.5,153.5C 156.5,154.833 156.5,156.167 156.5,157.5C 154.833,157.5 153.167,157.5 151.5,157.5C 151.421,158.93 151.754,160.264 152.5,161.5C 150.458,162.503 150.125,163.837 151.5,165.5C 149.355,166.682 149.355,168.182 151.5,170C 146.103,169.786 145.436,171.119 149.5,174C 148.833,174.333 148.167,174.667 147.5,175C 148.551,176.385 149.884,177.385 151.5,178C 150.5,178.333 149.5,178.667 148.5,179C 150.717,180.275 153.051,181.275 155.5,182C 152.183,182.498 148.85,182.665 145.5,182.5C 145.858,172.612 145.192,162.945 143.5,153.5C 143.5,142.5 143.5,131.5 143.5,120.5C 143.5,120.167 143.5,119.833 143.5,119.5 Z"/></g>
27
+ <g><path style="opacity:1" fill="#878787" d="M 56.5,133.5 C 56.5,153.167 56.5,172.833 56.5,192.5C 53.1742,192.033 52.8409,190.866 55.5,189C 54.7471,187.513 53.9138,187.346 53,188.5C 51.6319,187.007 51.4652,185.507 52.5,184C 51.8333,183.333 51.1667,182.667 50.5,182C 52.0441,181.71 53.3774,181.044 54.5,180C 53.451,179.508 52.451,179.674 51.5,180.5C 50.6667,177.5 49.8333,174.5 49,171.5C 47.8873,170.695 46.7206,170.028 45.5,169.5C 45.5,157.167 45.5,144.833 45.5,132.5C 46.7206,131.972 47.8873,131.305 49,130.5C 49.6172,131.449 49.4506,132.282 48.5,133C 51.2487,132.761 53.9153,132.928 56.5,133.5 Z"/></g>
28
+ <g><path style="opacity:1" fill="#9d9d9d" d="M 455.5,116.5 C 456.804,117.987 457.97,119.654 459,121.5C 459.627,124.716 460.461,127.883 461.5,131C 460.836,140.659 460.836,150.159 461.5,159.5C 460.127,159.343 458.793,159.51 457.5,160C 457.957,160.414 458.291,160.914 458.5,161.5C 457.365,164.582 456.365,167.582 455.5,170.5C 455.5,152.5 455.5,134.5 455.5,116.5 Z"/></g>
29
+ <g><path style="opacity:1" fill="#bf2424" d="M 373.5,153.5 C 373.5,162.833 373.5,172.167 373.5,181.5C 373.542,187.081 371.209,191.414 366.5,194.5C 363.775,195.713 361.441,197.546 359.5,200C 358.068,200.27 357.068,199.604 356.5,198C 357.5,197 358.5,196 359.5,195C 358.833,194.667 358.167,194.333 357.5,194C 358.5,193 359.5,192 360.5,191C 356.517,190.77 355.851,189.437 358.5,187C 357.833,186.667 357.167,186.333 356.5,186C 360.002,183.989 360.002,182.656 356.5,182C 357.357,181.311 358.023,180.478 358.5,179.5C 355.893,178.682 353.226,178.182 350.5,178C 351.167,177 351.833,176 352.5,175C 330.5,174.333 308.5,174.333 286.5,175C 287.337,176.011 287.67,177.178 287.5,178.5C 283.818,178.335 280.152,178.501 276.5,179C 277.337,180.011 277.67,181.178 277.5,182.5C 276.5,182.5 275.5,182.5 274.5,182.5C 274.5,183.5 274.5,184.5 274.5,185.5C 230.833,185.5 187.167,185.5 143.5,185.5C 143.5,177.833 143.5,170.167 143.5,162.5C 143.5,159.5 143.5,156.5 143.5,153.5C 145.192,162.945 145.858,172.612 145.5,182.5C 148.85,182.665 152.183,182.498 155.5,182C 153.051,181.275 150.717,180.275 148.5,179C 149.5,178.667 150.5,178.333 151.5,178C 149.884,177.385 148.551,176.385 147.5,175C 148.167,174.667 148.833,174.333 149.5,174C 145.436,171.119 146.103,169.786 151.5,170C 149.355,168.182 149.355,166.682 151.5,165.5C 150.125,163.837 150.458,162.503 152.5,161.5C 151.754,160.264 151.421,158.93 151.5,157.5C 153.167,157.5 154.833,157.5 156.5,157.5C 156.5,156.167 156.5,154.833 156.5,153.5C 158.167,153.5 159.833,153.5 161.5,153.5C 161.5,152.167 161.5,150.833 161.5,149.5C 226.167,149.5 290.833,149.5 355.5,149.5C 355.5,150.833 355.5,152.167 355.5,153.5C 357.167,153.5 358.833,153.5 360.5,153.5C 360.5,154.833 360.5,156.167 360.5,157.5C 362.167,157.5 363.833,157.5 365.5,157.5C 365.835,161.343 367.168,164.843 369.5,168C 368.057,170.078 368.724,170.911 371.5,170.5C 371.596,164.627 372.263,158.96 373.5,153.5 Z"/></g>
30
+ <g><path style="opacity:1" fill="#d7d7d7" d="M 143.5,162.5 C 143.5,170.167 143.5,177.833 143.5,185.5C 143.5,185.833 143.5,186.167 143.5,186.5C 143.842,187.338 144.508,187.672 145.5,187.5C 144.105,188.648 144.272,189.648 146,190.5C 147.373,190.596 148.873,190.43 150.5,190C 149.452,192.2 147.952,192.7 146,191.5C 145.092,193.439 143.592,194.439 141.5,194.5C 141.911,191.724 141.078,191.057 139,192.5C 136.851,191.373 135.684,190.04 135.5,188.5C 134.276,189.766 132.943,190.933 131.5,192C 132.833,193 134.167,194 135.5,195C 135.167,195.333 134.833,195.667 134.5,196C 138.223,196.434 138.39,197.268 135,198.5C 133.348,198.14 131.682,197.807 130,197.5C 129.5,198 129,198.5 128.5,199C 130.007,199.837 130.507,201.004 130,202.5C 128.836,202.835 127.503,202.835 126,202.5C 125.667,203.167 125.333,203.833 125,204.5C 124.361,201.772 123.194,201.272 121.5,203C 122.167,203.333 122.833,203.667 123.5,204C 122.299,204.903 121.465,206.069 121,207.5C 118.667,207.167 116.333,206.833 114,206.5C 114,207.833 114,209.167 114,210.5C 112.482,210.057 111.315,210.724 110.5,212.5C 109.914,212.291 109.414,211.957 109,211.5C 108.005,213.161 106.672,214.495 105,215.5C 103.743,215.15 103.409,214.483 104,213.5C 104.333,213.833 104.667,214.167 105,214.5C 105.5,213.333 106.333,212.5 107.5,212C 106.216,211.316 105.049,211.483 104,212.5C 104.613,208.905 103.446,208.571 100.5,211.5C 100.977,212.478 101.643,213.311 102.5,214C 101.069,214.465 99.9025,215.299 99,216.5C 98.3333,215.167 97.6667,215.167 97,216.5C 96.8333,216 96.6667,215.5 96.5,215C 97.5345,214.747 98.5345,213.914 99.5,212.5C 98.1667,212.167 96.8333,211.833 95.5,211.5C 94.6184,212.76 93.6184,213.926 92.5,215C 92.8333,215.333 93.1667,215.667 93.5,216C 92.1667,216.667 90.8333,217.333 89.5,218C 90.4378,219.063 91.4378,220.23 92.5,221.5C 91.132,222.594 89.9653,222.26 89,220.5C 88.6667,221.833 88.3333,223.167 88,224.5C 86.6132,222.699 85.1132,222.032 83.5,222.5C 84.8333,221.833 86.1667,221.167 87.5,220.5C 87.3333,220.167 87.1667,219.833 87,219.5C 84.5699,219.617 82.0699,220.284 79.5,221.5C 79.5,222.5 79.5,223.5 79.5,224.5C 75.8701,224.765 72.7034,226.098 70,228.5C 69.6667,227.833 69.3333,227.167 69,226.5C 67.8808,227.552 67.3808,228.719 67.5,230C 72.3902,231.095 72.3902,231.762 67.5,232C 66.3659,233.016 66.6992,233.683 68.5,234C 66.714,234.785 65.214,235.951 64,237.5C 63.6667,236.167 63.3333,234.833 63,233.5C 61.5701,233.306 60.0701,233.306 58.5,233.5C 57.5009,246.483 57.1675,259.483 57.5,272.5C 57.7917,293.168 58.125,313.834 58.5,334.5C 58.3883,344.509 58.055,354.509 57.5,364.5C 57.5,370.833 57.5,377.167 57.5,383.5C 57.5,384.167 57.1667,384.5 56.5,384.5C 56.5,377.833 56.5,371.167 56.5,364.5C 56.5,361.5 56.5,358.5 56.5,355.5C 56.5,338.833 56.5,322.167 56.5,305.5C 56.5,299.833 56.5,294.167 56.5,288.5C 56.5,265.167 56.5,241.833 56.5,218.5C 57.4614,216.735 57.7947,214.735 57.5,212.5C 58.1614,211.282 58.8281,209.949 59.5,208.5C 63.3276,206.751 63.1609,205.085 59,203.5C 58.5172,202.552 58.3505,201.552 58.5,200.5C 60.4592,200.244 61.7926,199.744 62.5,199C 63.2123,200.425 63.379,201.925 63,203.5C 63.8926,204.081 64.8926,204.415 66,204.5C 67.6217,203.002 70.1217,201.835 73.5,201C 74.0465,200.075 74.7132,199.242 75.5,198.5C 76.8123,199.46 78.1456,199.294 79.5,198C 78.5,196.333 77.1667,195 75.5,194C 76.8333,193.333 76.8333,192.667 75.5,192C 76.8333,191.333 78.1667,190.667 79.5,190C 78.376,189.751 77.376,189.251 76.5,188.5C 76.6667,188.167 76.8333,187.833 77,187.5C 78.0495,188.517 79.2161,188.684 80.5,188C 83.1756,184.665 84.3423,185.165 84,189.5C 83.6667,189.167 83.3333,188.833 83,188.5C 81.786,190.049 80.286,191.215 78.5,192C 80.3436,193.182 82.1769,194.349 84,195.5C 88.4697,194.244 88.3031,193.078 83.5,192C 84.448,191.517 85.448,191.351 86.5,191.5C 86.3118,189.897 86.8118,188.563 88,187.5C 90.3322,187.564 92.8322,187.731 95.5,188C 95.3349,186.883 95.0016,185.716 94.5,184.5C 94.8076,183.692 95.3076,183.025 96,182.5C 97.0665,184.283 98.5665,184.783 100.5,184C 102.533,181.243 105.033,179.076 108,177.5C 108.583,179.002 109.416,180.335 110.5,181.5C 110.833,181.333 111.167,181.167 111.5,181C 112.364,179.444 112.364,177.611 111.5,175.5C 112.758,176.016 113.758,175.35 114.5,173.5C 112.833,173.5 111.167,173.5 109.5,173.5C 110.934,172.77 112.1,171.77 113,170.5C 114.333,171.167 115.333,172.167 116,173.5C 116.333,172.833 116.667,172.167 117,171.5C 117.429,175.121 118.596,175.288 120.5,172C 119.494,170.662 118.494,169.329 117.5,168C 119.223,167.477 120.556,166.477 121.5,165C 120.508,162.579 121.508,161.912 124.5,163C 123.167,164 123.167,165 124.5,166C 122.59,166.408 121.59,167.575 121.5,169.5C 122.198,170.863 122.198,172.029 121.5,173C 122.416,173.374 123.25,173.874 124,174.5C 127.071,172.697 126.904,170.863 123.5,169C 124.743,167.846 125.743,166.512 126.5,165C 128.792,166.101 130.292,165.268 131,162.5C 132.348,165.567 134.348,167.234 137,167.5C 138.885,166.687 139.551,165.353 139,163.5C 138.043,165.709 136.876,165.543 135.5,163C 136.646,162.355 137.646,161.522 138.5,160.5C 138.585,161.932 139.585,163.265 141.5,164.5C 141.749,163.418 141.915,162.085 142,160.5C 142.278,161.416 142.778,162.082 143.5,162.5 Z"/></g>
31
+ <g><path style="opacity:1" fill="#8a8a8a" d="M 466.5,101.5 C 466.5,103.167 466.5,104.833 466.5,106.5C 466.5,135.5 466.5,164.5 466.5,193.5C 463.001,194.134 462.001,195.967 463.5,199C 461.109,199.691 461.109,200.691 463.5,202C 462.638,204.734 461.805,204.901 461,202.5C 460.342,204.108 460.842,205.275 462.5,206C 461.672,206.915 460.672,207.581 459.5,208C 461.396,209.808 461.896,211.975 461,214.5C 460.692,213.692 460.192,213.025 459.5,212.5C 459.264,213.247 458.93,214.08 458.5,215C 462.167,216 462.5,217.667 459.5,220C 459.959,221.943 458.959,223.276 456.5,224C 457.973,224.71 458.64,225.876 458.5,227.5C 457.5,227.5 456.5,227.5 455.5,227.5C 455.5,208.5 455.5,189.5 455.5,170.5C 456.365,167.582 457.365,164.582 458.5,161.5C 458.291,160.914 457.957,160.414 457.5,160C 458.793,159.51 460.127,159.343 461.5,159.5C 460.836,150.159 460.836,140.659 461.5,131C 460.461,127.883 459.627,124.716 459,121.5C 457.97,119.654 456.804,117.987 455.5,116.5C 455.19,113.287 455.523,110.287 456.5,107.5C 459.833,105.5 463.167,103.5 466.5,101.5 Z"/></g>
32
+ <g><path style="opacity:1" fill="#bfbfbf" d="M 454.5,180.5 C 454.5,190.167 454.5,199.833 454.5,209.5C 452.862,210.657 451.196,211.824 449.5,213C 450.5,213.333 451.5,213.667 452.5,214C 450.998,214.583 449.665,215.416 448.5,216.5C 449.624,217.914 450.624,219.414 451.5,221C 449.762,220.862 448.095,220.362 446.5,219.5C 447.21,216.14 445.876,214.307 442.5,214C 441.809,212.933 441.309,211.766 441,210.5C 440.56,212.076 439.727,213.41 438.5,214.5C 439.167,214.833 439.833,215.167 440.5,215.5C 440,215.833 439.5,216.167 439,216.5C 435.789,215.328 435.289,213.828 437.5,212C 436.638,209.266 435.805,209.099 435,211.5C 434.085,210.672 433.419,209.672 433,208.5C 429.865,207.863 426.865,208.529 424,210.5C 423.027,208.36 421.527,206.693 419.5,205.5C 419.511,206.441 419.011,207.108 418,207.5C 417.5,207.333 417,207.167 416.5,207C 417.711,206.107 417.711,205.274 416.5,204.5C 415.117,207.076 414.283,206.742 414,203.5C 412.68,205.583 411.346,205.249 410,202.5C 409.667,202.833 409.333,203.167 409,203.5C 408.626,202.584 408.126,201.75 407.5,201C 408.672,200.581 409.672,199.915 410.5,199C 408.792,197.938 408.126,196.771 408.5,195.5C 407.459,197.991 406.626,197.991 406,195.5C 405.667,196.833 405.333,198.167 405,199.5C 404.692,198.692 404.192,198.025 403.5,197.5C 400.346,200.293 397.68,199.793 395.5,196C 396.833,195 396.833,194 395.5,193C 396.833,193 398.167,193 399.5,193C 398.051,191.883 396.384,191.216 394.5,191C 393.134,189.4 392.134,187.567 391.5,185.5C 391.656,187.648 391.156,189.981 390,192.5C 389.586,192.043 389.086,191.709 388.5,191.5C 388.511,192.441 388.011,193.108 387,193.5C 386.5,193.333 386,193.167 385.5,193C 386.591,190.936 386.758,188.769 386,186.5C 384.513,187.253 384.346,188.086 385.5,189C 384.338,189.827 383.171,190.66 382,191.5C 379.976,191.2 379.476,190.367 380.5,189C 376.6,187.765 374.266,185.265 373.5,181.5C 373.5,172.167 373.5,162.833 373.5,153.5C 373.5,153.167 373.5,152.833 373.5,152.5C 376.145,151.137 378.478,151.637 380.5,154C 380.167,154.333 379.833,154.667 379.5,155C 380.5,155.5 381.5,156 382.5,156.5C 383.842,155.098 384.676,155.431 385,157.5C 385.807,153.551 386.307,153.551 386.5,157.5C 387.552,157.649 388.552,157.483 389.5,157C 387.405,156.444 387.238,155.944 389,155.5C 392.105,156.241 394.438,157.575 396,159.5C 396.414,159.043 396.914,158.709 397.5,158.5C 398.59,159.727 399.924,160.56 401.5,161C 398.813,161.537 396.313,161.037 394,159.5C 393.833,159.833 393.667,160.167 393.5,160.5C 396.002,161.378 398.168,162.712 400,164.5C 400.725,162.842 401.892,162.342 403.5,163C 402.289,163.893 402.289,164.726 403.5,165.5C 404.72,166.711 405.887,166.711 407,165.5C 407.535,167.271 408.369,167.604 409.5,166.5C 407.535,164.481 407.369,162.481 409,160.5C 409.095,162.774 409.929,165.108 411.5,167.5C 412.086,167.291 412.586,166.957 413,166.5C 414.16,168.797 415.16,168.464 416,165.5C 418.113,167.271 417.947,168.771 415.5,170C 416.469,171.758 417.636,172.258 419,171.5C 420.691,174.131 421.858,173.797 422.5,170.5C 422.512,172.134 423.512,173.634 425.5,175C 426.974,174.027 428.474,173.527 430,173.5C 430.925,174.047 431.758,174.713 432.5,175.5C 431.494,176.396 431.494,177.062 432.5,177.5C 433.862,175.988 434.196,174.488 433.5,173C 434.5,172.333 435.5,172.333 436.5,173C 436.632,175.047 436.465,177.213 436,179.5C 437.585,178.624 438.585,177.291 439,175.5C 439.415,177.291 440.415,178.624 442,179.5C 442.605,177.519 443.605,177.185 445,178.5C 445.739,174.707 447.572,173.874 450.5,176C 447.258,176.283 446.924,177.117 449.5,178.5C 447.831,178.388 446.498,179.388 445.5,181.5C 445.728,183.397 446.728,184.73 448.5,185.5C 449.425,184.359 450.259,184.359 451,185.5C 451.206,183.064 452.373,181.398 454.5,180.5 Z"/></g>
33
+ <g><path style="opacity:1" fill="#b82323" d="M 366.5,194.5 C 363.925,197.319 361.592,200.319 359.5,203.5C 354.939,207.64 350.605,211.973 346.5,216.5C 343.05,215.756 341.384,217.09 341.5,220.5C 336.067,221.187 335.401,220.021 339.5,217C 337.109,216.309 337.109,215.309 339.5,214C 338.167,213.667 336.833,213.333 335.5,213C 336.5,212 337.5,211 338.5,210C 337.833,209.667 337.167,209.333 336.5,209C 338.957,207.488 338.957,206.154 336.5,205C 337.167,204.333 337.833,203.667 338.5,203C 335.167,202.667 331.833,202.333 328.5,202C 329.5,201 330.5,200 331.5,199C 315.167,198.333 298.833,198.333 282.5,199C 281.5,200 280.5,201 279.5,202C 275.459,202.173 271.459,202.673 267.5,203.5C 265.854,205.09 263.854,206.09 261.5,206.5C 265.933,200.892 270.6,195.392 275.5,190C 275.272,189.601 274.938,189.435 274.5,189.5C 275.598,188.603 275.598,187.77 274.5,187C 230.835,186.5 187.168,186.333 143.5,186.5C 143.5,186.167 143.5,185.833 143.5,185.5C 187.167,185.5 230.833,185.5 274.5,185.5C 274.5,184.5 274.5,183.5 274.5,182.5C 275.5,182.5 276.5,182.5 277.5,182.5C 277.67,181.178 277.337,180.011 276.5,179C 280.152,178.501 283.818,178.335 287.5,178.5C 287.67,177.178 287.337,176.011 286.5,175C 308.5,174.333 330.5,174.333 352.5,175C 351.833,176 351.167,177 350.5,178C 353.226,178.182 355.893,178.682 358.5,179.5C 358.023,180.478 357.357,181.311 356.5,182C 360.002,182.656 360.002,183.989 356.5,186C 357.167,186.333 357.833,186.667 358.5,187C 355.851,189.437 356.517,190.77 360.5,191C 359.5,192 358.5,193 357.5,194C 358.167,194.333 358.833,194.667 359.5,195C 358.5,196 357.5,197 356.5,198C 357.068,199.604 358.068,200.27 359.5,200C 361.441,197.546 363.775,195.713 366.5,194.5 Z"/></g>
34
+ <g><path style="opacity:1" fill="#d0d0d0" d="M 145.5,187.5 C 163.5,187.5 181.5,187.5 199.5,187.5C 198.009,188.913 197.342,190.413 197.5,192C 200.324,192.228 202.657,193.395 204.5,195.5C 203.359,196.425 203.359,197.259 204.5,198C 202.003,199.983 200.836,199.15 201,195.5C 199.561,197.275 198.561,199.275 198,201.5C 196.644,200.62 195.144,200.286 193.5,200.5C 193.762,201.978 193.429,203.311 192.5,204.5C 190.618,203.907 188.785,203.24 187,202.5C 185.575,203.212 184.075,203.379 182.5,203C 183.623,204.044 184.956,204.71 186.5,205C 185.192,205.824 183.692,206.324 182,206.5C 181.026,204.122 180.359,204.456 180,207.5C 178.387,206.378 177.22,206.878 176.5,209C 177.949,210.117 179.616,210.784 181.5,211C 180.584,211.374 179.75,211.874 179,212.5C 177.667,211.167 176.333,211.167 175,212.5C 174.692,211.692 174.192,211.025 173.5,210.5C 172.796,212.101 171.629,213.435 170,214.5C 170.617,212.905 170.284,211.572 169,210.5C 168.13,211.108 167.63,211.941 167.5,213C 168.606,214.882 168.606,216.716 167.5,218.5C 166.522,218.023 165.689,217.357 165,216.5C 164.383,217.449 164.549,218.282 165.5,219C 164.975,219.692 164.308,220.192 163.5,220.5C 161.063,219.191 159.563,219.858 159,222.5C 158.076,219.91 156.742,217.91 155,216.5C 157,217.833 159,217.833 161,216.5C 162.516,219.051 163.349,218.718 163.5,215.5C 161.712,215.785 160.045,215.452 158.5,214.5C 159.911,212.983 159.744,211.649 158,210.5C 156.887,211.76 156.72,212.927 157.5,214C 156.451,214.492 155.451,214.326 154.5,213.5C 154.511,214.441 154.011,215.108 153,215.5C 152.228,215.355 151.561,215.022 151,214.5C 148.942,215.109 148.109,216.109 148.5,217.5C 147.749,216.624 147.249,215.624 147,214.5C 146.039,216.217 145.372,217.884 145,219.5C 146.388,218.446 147.888,218.28 149.5,219C 147.01,219.495 145.51,220.995 145,223.5C 144.667,223.167 144.333,222.833 144,222.5C 143.312,223.332 143.479,223.998 144.5,224.5C 145.773,224.746 146.94,224.746 148,224.5C 148.333,223.5 148.667,222.5 149,221.5C 150.962,221.031 152.795,221.697 154.5,223.5C 154.109,222.109 154.942,221.109 157,220.5C 157.492,221.549 157.326,222.549 156.5,223.5C 154.807,224.228 153.307,225.228 152,226.5C 151,226.167 150,225.833 149,225.5C 147.908,228.986 146.075,229.319 143.5,226.5C 142.749,225.624 142.249,224.624 142,223.5C 141.363,226.107 140.196,228.44 138.5,230.5C 138.709,231.086 139.043,231.586 139.5,232C 138.216,232.684 137.049,232.517 136,231.5C 133.122,237.071 128.789,240.071 123,240.5C 122.167,241.5 121.333,242.5 120.5,243.5C 119.914,243.291 119.414,242.957 119,242.5C 117.649,244.019 116.149,245.352 114.5,246.5C 113.117,243.924 112.283,244.258 112,247.5C 110.314,244.978 108.981,245.311 108,248.5C 107.577,247.044 106.744,246.544 105.5,247C 105.833,247.333 106.167,247.667 106.5,248C 103.785,248.878 101.451,250.378 99.5,252.5C 99.1667,252.333 98.8333,252.167 98.5,252C 99.4601,250.581 100.293,249.081 101,247.5C 104.692,247.414 105.025,246.081 102,243.5C 101.667,243.833 101.333,244.167 101,244.5C 100.851,241.721 100.017,241.221 98.5,243C 98.8333,243.333 99.1667,243.667 99.5,244C 97.481,244.45 95.6477,245.283 94,246.5C 92.8864,244.517 91.3864,242.85 89.5,241.5C 89.1667,241.833 88.8333,242.167 88.5,242.5C 90.1938,244.554 91.3605,246.888 92,249.5C 92.3333,249.167 92.6667,248.833 93,248.5C 94.7318,250.848 96.8985,252.681 99.5,254C 97.9194,254.707 96.4194,255.54 95,256.5C 94.3828,255.551 94.5494,254.718 95.5,254C 93.7922,252.938 93.1255,251.771 93.5,250.5C 92.269,251.651 92.269,252.817 93.5,254C 92.5838,254.374 91.7504,254.874 91,255.5C 89.6839,254.026 88.6839,252.359 88,250.5C 85.9785,252.651 86.4785,254.151 89.5,255C 86.1934,255.653 83.5267,257.319 81.5,260C 82.5,260.333 83.5,260.667 84.5,261C 81.7944,263.5 78.6277,265.333 75,266.5C 73.3925,266.231 72.2259,265.397 71.5,264C 72.1095,261.942 73.1095,261.109 74.5,261.5C 74.1924,260.692 73.6924,260.025 73,259.5C 70.2333,262.049 68.0666,264.383 66.5,266.5C 67.325,267.386 68.325,267.719 69.5,267.5C 69.2022,264.664 69.8689,264.164 71.5,266C 70.7734,267.399 70.2734,268.899 70,270.5C 69.0255,268.122 68.3589,268.456 68,271.5C 67.7937,267.869 66.627,267.535 64.5,270.5C 65.0253,271.192 65.6919,271.692 66.5,272C 64.2557,274.349 63.0891,273.849 63,270.5C 61.752,273.284 59.9187,273.95 57.5,272.5C 57.1675,259.483 57.5009,246.483 58.5,233.5C 60.0701,233.306 61.5701,233.306 63,233.5C 63.3333,234.833 63.6667,236.167 64,237.5C 65.214,235.951 66.714,234.785 68.5,234C 66.6992,233.683 66.3659,233.016 67.5,232C 72.3902,231.762 72.3902,231.095 67.5,230C 67.3808,228.719 67.8808,227.552 69,226.5C 69.3333,227.167 69.6667,227.833 70,228.5C 72.7034,226.098 75.8701,224.765 79.5,224.5C 79.5,223.5 79.5,222.5 79.5,221.5C 82.0699,220.284 84.5699,219.617 87,219.5C 87.1667,219.833 87.3333,220.167 87.5,220.5C 86.1667,221.167 84.8333,221.833 83.5,222.5C 85.1132,222.032 86.6132,222.699 88,224.5C 88.3333,223.167 88.6667,221.833 89,220.5C 89.9653,222.26 91.132,222.594 92.5,221.5C 91.4378,220.23 90.4378,219.063 89.5,218C 90.8333,217.333 92.1667,216.667 93.5,216C 93.1667,215.667 92.8333,215.333 92.5,215C 93.6184,213.926 94.6184,212.76 95.5,211.5C 96.8333,211.833 98.1667,212.167 99.5,212.5C 98.5345,213.914 97.5345,214.747 96.5,215C 96.6667,215.5 96.8333,216 97,216.5C 97.6667,215.167 98.3333,215.167 99,216.5C 99.9025,215.299 101.069,214.465 102.5,214C 101.643,213.311 100.977,212.478 100.5,211.5C 103.446,208.571 104.613,208.905 104,212.5C 105.049,211.483 106.216,211.316 107.5,212C 106.333,212.5 105.5,213.333 105,214.5C 104.667,214.167 104.333,213.833 104,213.5C 103.409,214.483 103.743,215.15 105,215.5C 106.672,214.495 108.005,213.161 109,211.5C 109.414,211.957 109.914,212.291 110.5,212.5C 111.315,210.724 112.482,210.057 114,210.5C 114,209.167 114,207.833 114,206.5C 116.333,206.833 118.667,207.167 121,207.5C 121.465,206.069 122.299,204.903 123.5,204C 122.833,203.667 122.167,203.333 121.5,203C 123.194,201.272 124.361,201.772 125,204.5C 125.333,203.833 125.667,203.167 126,202.5C 127.503,202.835 128.836,202.835 130,202.5C 130.507,201.004 130.007,199.837 128.5,199C 129,198.5 129.5,198 130,197.5C 131.682,197.807 133.348,198.14 135,198.5C 138.39,197.268 138.223,196.434 134.5,196C 134.833,195.667 135.167,195.333 135.5,195C 134.167,194 132.833,193 131.5,192C 132.943,190.933 134.276,189.766 135.5,188.5C 135.684,190.04 136.851,191.373 139,192.5C 141.078,191.057 141.911,191.724 141.5,194.5C 143.592,194.439 145.092,193.439 146,191.5C 147.952,192.7 149.452,192.2 150.5,190C 148.873,190.43 147.373,190.596 146,190.5C 144.272,189.648 144.105,188.648 145.5,187.5 Z"/></g>
35
+ <g><path style="opacity:1" fill="#cac9c9" d="M 199.5,187.5 C 220.177,187.167 240.844,187.5 261.5,188.5C 255.788,195.206 250.121,201.872 244.5,208.5C 239.806,212.527 235.473,216.86 231.5,221.5C 226.903,219.303 224.07,220.637 223,225.5C 222.224,221.011 220.057,220.344 216.5,223.5C 216,224.5 215.5,225.5 215,226.5C 213.506,225.253 212.006,225.253 210.5,226.5C 211.383,228.48 211.217,230.48 210,232.5C 209.727,230.899 209.227,229.399 208.5,228C 209.842,225.985 210.342,223.818 210,221.5C 208.415,222.376 207.415,223.709 207,225.5C 206.667,224.833 206.333,224.167 206,223.5C 204.575,224.212 203.075,224.379 201.5,224C 201.167,224.333 200.833,224.667 200.5,225C 201.956,225.423 202.456,226.256 202,227.5C 200.883,227.335 199.716,227.002 198.5,226.5C 194.954,227.751 191.454,228.751 188,229.5C 187.833,229 187.667,228.5 187.5,228C 191.733,223.963 191.4,223.13 186.5,225.5C 186.167,226.833 185.833,228.167 185.5,229.5C 184.549,228.674 183.549,228.508 182.5,229C 184.527,230.396 184.86,232.062 183.5,234C 184.328,234.915 185.328,235.581 186.5,236C 185.584,236.374 184.75,236.874 184,237.5C 182.697,236.888 181.53,236.554 180.5,236.5C 184.633,233.261 184.3,230.761 179.5,229C 180.654,228.086 180.487,227.253 179,226.5C 177.282,227.85 175.448,229.017 173.5,230C 174.749,231.824 175.915,231.657 177,229.5C 178.11,231.037 179.61,231.703 181.5,231.5C 181.646,233.942 180.813,234.609 179,233.5C 175.643,234.742 175.81,235.576 179.5,236C 178.069,236.465 176.903,237.299 176,238.5C 175.138,236.913 174.471,235.246 174,233.5C 172.641,238.413 170.807,238.413 168.5,233.5C 169.025,232.808 169.692,232.308 170.5,232C 169.584,231.626 168.75,231.126 168,230.5C 166.833,232.167 165.667,233.833 164.5,235.5C 165.5,235.5 166.5,235.5 167.5,235.5C 166.91,236.799 165.91,237.632 164.5,238C 164.833,238.333 165.167,238.667 165.5,239C 164.451,239.492 163.451,239.326 162.5,238.5C 161.015,242.137 161.515,242.804 164,240.5C 165,240.833 166,241.167 167,241.5C 166.873,244.951 165.206,245.951 162,244.5C 160.716,245.572 160.383,246.905 161,248.5C 160,247.5 159,246.5 158,245.5C 155.7,247.499 153.867,249.333 152.5,251C 153.167,251.667 153.833,252.333 154.5,253C 152.649,253.837 150.816,254.671 149,255.5C 147.667,255.5 146.333,255.5 145,255.5C 144.482,252.977 143.148,250.977 141,249.5C 141.027,251.417 141.861,253.084 143.5,254.5C 136.994,255.302 130.994,257.135 125.5,260C 124.949,261.398 124.616,262.732 124.5,264C 127.264,265.544 127.097,266.711 124,267.5C 123.075,266.953 122.242,266.287 121.5,265.5C 122.451,261.892 121.618,261.892 119,265.5C 120.253,261.329 119.253,260.662 116,263.5C 114.846,262.257 113.512,261.257 112,260.5C 111.383,261.449 111.549,262.282 112.5,263C 110.097,266.178 108.264,266.011 107,262.5C 106.028,264.305 104.861,265.972 103.5,267.5C 105.637,269.107 107.97,271.273 110.5,274C 108.96,275.851 107.46,277.018 106,277.5C 104.785,275.25 103.452,272.583 102,269.5C 101.346,270.696 100.846,270.696 100.5,269.5C 101.025,268.808 101.692,268.308 102.5,268C 101.207,267.51 99.8734,267.343 98.5,267.5C 98.2714,269.433 97.4381,271.1 96,272.5C 95.0475,270.408 93.7141,270.075 92,271.5C 91.3828,272.449 91.5494,273.282 92.5,274C 91.376,274.249 90.376,274.749 89.5,275.5C 90.6102,277.566 89.9436,278.399 87.5,278C 88.5171,276.951 88.6838,275.784 88,274.5C 86.482,276.348 84.6487,277.848 82.5,279C 83.676,280.914 84.676,280.748 85.5,278.5C 87.202,280.289 87.3687,281.955 86,283.5C 85.6667,283.167 85.3333,282.833 85,282.5C 82.6413,285.124 82.9746,285.791 86,284.5C 86.0937,290.687 84.427,291.02 81,285.5C 80,286.833 79,286.833 78,285.5C 77.134,287.896 77.634,288.563 79.5,287.5C 81.2199,289.131 83.2199,290.297 85.5,291C 84.6667,291.833 83.8333,292.667 83,293.5C 82.2588,292.359 81.4255,292.359 80.5,293.5C 79.332,290.531 77.9987,290.198 76.5,292.5C 75.1667,291.5 73.8333,290.5 72.5,289.5C 71.2888,288.726 71.2888,287.893 72.5,287C 70.6652,286.072 70.3318,284.906 71.5,283.5C 70.2815,283.891 69.4482,283.224 69,281.5C 68.6667,282.833 68.3333,284.167 68,285.5C 67.1107,284.112 66.6107,284.278 66.5,286C 67.2173,287.531 68.2173,288.864 69.5,290C 69.3333,290.5 69.1667,291 69,291.5C 67.6631,289.996 65.9964,288.996 64,288.5C 63.5,289 63,289.5 62.5,290C 64.4404,289.822 66.107,290.822 67.5,293C 66.6569,294.787 66.4902,296.62 67,298.5C 63.3333,299.26 62.8333,300.76 65.5,303C 64.09,303.368 63.09,304.201 62.5,305.5C 64.2744,306.187 65.9411,307.02 67.5,308C 66.7471,309.487 65.9138,309.654 65,308.5C 64.6667,309.5 64.3333,310.5 64,311.5C 63.5298,309.226 62.5298,307.226 61,305.5C 61.438,307.601 61.938,309.435 62.5,311C 59.1796,312.261 58.8463,313.928 61.5,316C 62.1081,318.184 61.4414,320.184 59.5,322C 60.428,322.388 61.0946,323.055 61.5,324C 60.5761,325.15 60.5761,326.15 61.5,327C 59.3035,328.369 58.9702,330.202 60.5,332.5C 60.2528,333.713 59.5862,334.38 58.5,334.5C 58.125,313.834 57.7917,293.168 57.5,272.5C 59.9187,273.95 61.752,273.284 63,270.5C 63.0891,273.849 64.2557,274.349 66.5,272C 65.6919,271.692 65.0253,271.192 64.5,270.5C 66.627,267.535 67.7937,267.869 68,271.5C 68.3589,268.456 69.0255,268.122 70,270.5C 70.2734,268.899 70.7734,267.399 71.5,266C 69.8689,264.164 69.2022,264.664 69.5,267.5C 68.325,267.719 67.325,267.386 66.5,266.5C 68.0666,264.383 70.2333,262.049 73,259.5C 73.6924,260.025 74.1924,260.692 74.5,261.5C 73.1095,261.109 72.1095,261.942 71.5,264C 72.2259,265.397 73.3925,266.231 75,266.5C 78.6277,265.333 81.7944,263.5 84.5,261C 83.5,260.667 82.5,260.333 81.5,260C 83.5267,257.319 86.1934,255.653 89.5,255C 86.4785,254.151 85.9785,252.651 88,250.5C 88.6839,252.359 89.6839,254.026 91,255.5C 91.7504,254.874 92.5838,254.374 93.5,254C 92.269,252.817 92.269,251.651 93.5,250.5C 93.1255,251.771 93.7922,252.938 95.5,254C 94.5494,254.718 94.3828,255.551 95,256.5C 96.4194,255.54 97.9194,254.707 99.5,254C 96.8985,252.681 94.7318,250.848 93,248.5C 92.6667,248.833 92.3333,249.167 92,249.5C 91.3605,246.888 90.1938,244.554 88.5,242.5C 88.8333,242.167 89.1667,241.833 89.5,241.5C 91.3864,242.85 92.8864,244.517 94,246.5C 95.6477,245.283 97.481,244.45 99.5,244C 99.1667,243.667 98.8333,243.333 98.5,243C 100.017,241.221 100.851,241.721 101,244.5C 101.333,244.167 101.667,243.833 102,243.5C 105.025,246.081 104.692,247.414 101,247.5C 100.293,249.081 99.4601,250.581 98.5,252C 98.8333,252.167 99.1667,252.333 99.5,252.5C 101.451,250.378 103.785,248.878 106.5,248C 106.167,247.667 105.833,247.333 105.5,247C 106.744,246.544 107.577,247.044 108,248.5C 108.981,245.311 110.314,244.978 112,247.5C 112.283,244.258 113.117,243.924 114.5,246.5C 116.149,245.352 117.649,244.019 119,242.5C 119.414,242.957 119.914,243.291 120.5,243.5C 121.333,242.5 122.167,241.5 123,240.5C 128.789,240.071 133.122,237.071 136,231.5C 137.049,232.517 138.216,232.684 139.5,232C 139.043,231.586 138.709,231.086 138.5,230.5C 140.196,228.44 141.363,226.107 142,223.5C 142.249,224.624 142.749,225.624 143.5,226.5C 146.075,229.319 147.908,228.986 149,225.5C 150,225.833 151,226.167 152,226.5C 153.307,225.228 154.807,224.228 156.5,223.5C 157.326,222.549 157.492,221.549 157,220.5C 154.942,221.109 154.109,222.109 154.5,223.5C 152.795,221.697 150.962,221.031 149,221.5C 148.667,222.5 148.333,223.5 148,224.5C 146.94,224.746 145.773,224.746 144.5,224.5C 143.479,223.998 143.312,223.332 144,222.5C 144.333,222.833 144.667,223.167 145,223.5C 145.51,220.995 147.01,219.495 149.5,219C 147.888,218.28 146.388,218.446 145,219.5C 145.372,217.884 146.039,216.217 147,214.5C 147.249,215.624 147.749,216.624 148.5,217.5C 148.109,216.109 148.942,215.109 151,214.5C 151.561,215.022 152.228,215.355 153,215.5C 154.011,215.108 154.511,214.441 154.5,213.5C 155.451,214.326 156.451,214.492 157.5,214C 156.72,212.927 156.887,211.76 158,210.5C 159.744,211.649 159.911,212.983 158.5,214.5C 160.045,215.452 161.712,215.785 163.5,215.5C 163.349,218.718 162.516,219.051 161,216.5C 159,217.833 157,217.833 155,216.5C 156.742,217.91 158.076,219.91 159,222.5C 159.563,219.858 161.063,219.191 163.5,220.5C 164.308,220.192 164.975,219.692 165.5,219C 164.549,218.282 164.383,217.449 165,216.5C 165.689,217.357 166.522,218.023 167.5,218.5C 168.606,216.716 168.606,214.882 167.5,213C 167.63,211.941 168.13,211.108 169,210.5C 170.284,211.572 170.617,212.905 170,214.5C 171.629,213.435 172.796,212.101 173.5,210.5C 174.192,211.025 174.692,211.692 175,212.5C 176.333,211.167 177.667,211.167 179,212.5C 179.75,211.874 180.584,211.374 181.5,211C 179.616,210.784 177.949,210.117 176.5,209C 177.22,206.878 178.387,206.378 180,207.5C 180.359,204.456 181.026,204.122 182,206.5C 183.692,206.324 185.192,205.824 186.5,205C 184.956,204.71 183.623,204.044 182.5,203C 184.075,203.379 185.575,203.212 187,202.5C 188.785,203.24 190.618,203.907 192.5,204.5C 193.429,203.311 193.762,201.978 193.5,200.5C 195.144,200.286 196.644,200.62 198,201.5C 198.561,199.275 199.561,197.275 201,195.5C 200.836,199.15 202.003,199.983 204.5,198C 203.359,197.259 203.359,196.425 204.5,195.5C 202.657,193.395 200.324,192.228 197.5,192C 197.342,190.413 198.009,188.913 199.5,187.5 Z"/></g>
36
+ <g><path style="opacity:1" fill="#808080" d="M 466.5,193.5 C 466.5,232.5 466.5,271.5 466.5,310.5C 465.883,310.611 465.383,310.944 465,311.5C 463.992,309.741 462.492,308.574 460.5,308C 462.929,307.549 463.096,306.715 461,305.5C 460.282,306.451 459.449,306.617 458.5,306C 460.937,304.721 461.437,303.221 460,301.5C 458.812,300.652 457.312,300.652 455.5,301.5C 455.5,276.833 455.5,252.167 455.5,227.5C 456.5,227.5 457.5,227.5 458.5,227.5C 458.64,225.876 457.973,224.71 456.5,224C 458.959,223.276 459.959,221.943 459.5,220C 462.5,217.667 462.167,216 458.5,215C 458.93,214.08 459.264,213.247 459.5,212.5C 460.192,213.025 460.692,213.692 461,214.5C 461.896,211.975 461.396,209.808 459.5,208C 460.672,207.581 461.672,206.915 462.5,206C 460.842,205.275 460.342,204.108 461,202.5C 461.805,204.901 462.638,204.734 463.5,202C 461.109,200.691 461.109,199.691 463.5,199C 462.001,195.967 463.001,194.134 466.5,193.5 Z"/></g>
37
+ <g><path style="opacity:1" fill="#b12121" d="M 346.5,216.5 C 346.5,216.833 346.5,217.167 346.5,217.5C 341.157,222.844 336.157,228.511 331.5,234.5C 330.167,235.167 329.167,236.167 328.5,237.5C 327.833,237.833 327.167,238.167 326.5,238.5C 323.805,238.933 321.638,240.266 320,242.5C 318.491,241.91 316.991,241.244 315.5,240.5C 314.911,238.627 315.578,236.96 317.5,235.5C 316.271,234.719 314.938,234.219 313.5,234C 315.891,232.691 315.891,231.691 313.5,231C 314.357,230.311 315.023,229.478 315.5,228.5C 312.553,227.679 309.553,227.179 306.5,227C 306.957,226.586 307.291,226.086 307.5,225.5C 291.177,224.334 274.844,224.167 258.5,225C 257.833,225.667 257.167,226.333 256.5,227C 252.833,227.333 249.167,227.667 245.5,228C 243.513,230.717 240.847,232.217 237.5,232.5C 245.16,223.507 253.16,214.84 261.5,206.5C 263.854,206.09 265.854,205.09 267.5,203.5C 271.459,202.673 275.459,202.173 279.5,202C 280.5,201 281.5,200 282.5,199C 298.833,198.333 315.167,198.333 331.5,199C 330.5,200 329.5,201 328.5,202C 331.833,202.333 335.167,202.667 338.5,203C 337.833,203.667 337.167,204.333 336.5,205C 338.957,206.154 338.957,207.488 336.5,209C 337.167,209.333 337.833,209.667 338.5,210C 337.5,211 336.5,212 335.5,213C 336.833,213.333 338.167,213.667 339.5,214C 337.109,215.309 337.109,216.309 339.5,217C 335.401,220.021 336.067,221.187 341.5,220.5C 341.384,217.09 343.05,215.756 346.5,216.5 Z"/></g>
38
+ <g><path style="opacity:1" fill="#b3b3b3" d="M 373.5,181.5 C 374.266,185.265 376.6,187.765 380.5,189C 379.476,190.367 379.976,191.2 382,191.5C 383.171,190.66 384.338,189.827 385.5,189C 384.346,188.086 384.513,187.253 386,186.5C 386.758,188.769 386.591,190.936 385.5,193C 386,193.167 386.5,193.333 387,193.5C 388.011,193.108 388.511,192.441 388.5,191.5C 389.086,191.709 389.586,192.043 390,192.5C 391.156,189.981 391.656,187.648 391.5,185.5C 392.134,187.567 393.134,189.4 394.5,191C 396.384,191.216 398.051,191.883 399.5,193C 398.167,193 396.833,193 395.5,193C 396.833,194 396.833,195 395.5,196C 397.68,199.793 400.346,200.293 403.5,197.5C 404.192,198.025 404.692,198.692 405,199.5C 405.333,198.167 405.667,196.833 406,195.5C 406.626,197.991 407.459,197.991 408.5,195.5C 408.126,196.771 408.792,197.938 410.5,199C 409.672,199.915 408.672,200.581 407.5,201C 408.126,201.75 408.626,202.584 409,203.5C 409.333,203.167 409.667,202.833 410,202.5C 411.346,205.249 412.68,205.583 414,203.5C 414.283,206.742 415.117,207.076 416.5,204.5C 417.711,205.274 417.711,206.107 416.5,207C 417,207.167 417.5,207.333 418,207.5C 419.011,207.108 419.511,206.441 419.5,205.5C 421.527,206.693 423.027,208.36 424,210.5C 426.865,208.529 429.865,207.863 433,208.5C 433.419,209.672 434.085,210.672 435,211.5C 435.805,209.099 436.638,209.266 437.5,212C 435.289,213.828 435.789,215.328 439,216.5C 439.5,216.167 440,215.833 440.5,215.5C 439.833,215.167 439.167,214.833 438.5,214.5C 439.727,213.41 440.56,212.076 441,210.5C 441.309,211.766 441.809,212.933 442.5,214C 445.876,214.307 447.21,216.14 446.5,219.5C 448.095,220.362 449.762,220.862 451.5,221C 450.624,219.414 449.624,217.914 448.5,216.5C 449.665,215.416 450.998,214.583 452.5,214C 451.5,213.667 450.5,213.333 449.5,213C 451.196,211.824 452.862,210.657 454.5,209.5C 454.5,224.167 454.5,238.833 454.5,253.5C 453.175,252.047 452.342,252.381 452,254.5C 451.376,252.536 451.876,250.869 453.5,249.5C 452.897,248.365 452.564,247.365 452.5,246.5C 451.859,250.371 450.359,251.038 448,248.5C 447.316,249.784 447.483,250.951 448.5,252C 444.538,255.691 443.871,255.357 446.5,251C 445.175,251.148 444.008,250.982 443,250.5C 442.544,249.256 443.044,248.423 444.5,248C 443.151,247.228 442.318,246.061 442,244.5C 439.989,248.002 438.656,248.002 438,244.5C 437.667,245.5 437.333,246.5 437,247.5C 434.73,245.003 432.396,242.67 430,240.5C 428.598,242.973 427.098,242.973 425.5,240.5C 424.158,241.902 423.324,241.569 423,239.5C 420.459,244.846 419.126,244.846 419,239.5C 418,240.167 417,240.833 416,241.5C 415.383,240.551 415.549,239.718 416.5,239C 414.905,239.617 413.572,239.284 412.5,238C 413.5,237.667 414.5,237.333 415.5,237C 411.175,236.334 407.342,236.834 404,238.5C 403.667,235.833 404.667,235.167 407,236.5C 407.5,236 408,235.5 408.5,235C 406.899,234.727 405.399,234.227 404,233.5C 401.087,236.296 399.087,235.629 398,231.5C 396.318,231.807 394.652,232.14 393,232.5C 391.51,231.318 390.177,230.318 389,229.5C 387.817,230.731 386.651,230.731 385.5,229.5C 386.914,228.376 388.414,227.376 390,226.5C 390.667,224.833 390.667,223.167 390,221.5C 389.667,222.833 389.333,224.167 389,225.5C 387.989,224.663 386.822,224.33 385.5,224.5C 384.916,229.212 383.416,229.545 381,225.5C 379.612,226.554 378.112,226.72 376.5,226C 378.007,225.163 378.507,223.996 378,222.5C 375.815,221.33 373.649,220.164 371.5,219C 374.714,220.301 376.548,219.134 377,215.5C 378.281,216.647 378.614,216.313 378,214.5C 377.311,213.643 376.478,212.977 375.5,212.5C 375.003,214.216 374.669,215.883 374.5,217.5C 373.5,217 372.5,216.5 371.5,216C 372.956,215.577 373.456,214.744 373,213.5C 370.692,213.207 368.526,214.041 366.5,216C 368.982,217.594 369.148,219.428 367,221.5C 364.513,219.719 361.679,218.553 358.5,218C 359.766,217.691 360.933,217.191 362,216.5C 363.243,217.336 364.41,217.003 365.5,215.5C 363.174,213.551 360.674,213.218 358,214.5C 356.5,214 355,213.5 353.5,213C 354.536,211.383 355.703,211.216 357,212.5C 357.846,210.153 359.346,208.32 361.5,207C 360.027,206.29 359.36,205.124 359.5,203.5C 361.592,200.319 363.925,197.319 366.5,194.5C 371.209,191.414 373.542,187.081 373.5,181.5 Z"/></g>
39
+ <g><path style="opacity:1" fill="#901a19" d="M 143.5,186.5 C 187.168,186.333 230.835,186.5 274.5,187C 275.598,187.77 275.598,188.603 274.5,189.5C 266.833,197.5 259.167,205.5 251.5,213.5C 248.991,212.079 246.657,210.412 244.5,208.5C 250.121,201.872 255.788,195.206 261.5,188.5C 240.844,187.5 220.177,187.167 199.5,187.5C 181.5,187.5 163.5,187.5 145.5,187.5C 144.508,187.672 143.842,187.338 143.5,186.5 Z"/></g>
40
+ <g><path style="opacity:1" fill="#abaaaa" d="M 359.5,203.5 C 359.36,205.124 360.027,206.29 361.5,207C 359.346,208.32 357.846,210.153 357,212.5C 355.703,211.216 354.536,211.383 353.5,213C 355,213.5 356.5,214 358,214.5C 360.674,213.218 363.174,213.551 365.5,215.5C 364.41,217.003 363.243,217.336 362,216.5C 360.933,217.191 359.766,217.691 358.5,218C 361.679,218.553 364.513,219.719 367,221.5C 369.148,219.428 368.982,217.594 366.5,216C 368.526,214.041 370.692,213.207 373,213.5C 373.456,214.744 372.956,215.577 371.5,216C 372.5,216.5 373.5,217 374.5,217.5C 374.669,215.883 375.003,214.216 375.5,212.5C 376.478,212.977 377.311,213.643 378,214.5C 378.614,216.313 378.281,216.647 377,215.5C 376.548,219.134 374.714,220.301 371.5,219C 373.649,220.164 375.815,221.33 378,222.5C 378.507,223.996 378.007,225.163 376.5,226C 378.112,226.72 379.612,226.554 381,225.5C 383.416,229.545 384.916,229.212 385.5,224.5C 386.822,224.33 387.989,224.663 389,225.5C 389.333,224.167 389.667,222.833 390,221.5C 390.667,223.167 390.667,224.833 390,226.5C 388.414,227.376 386.914,228.376 385.5,229.5C 386.651,230.731 387.817,230.731 389,229.5C 390.177,230.318 391.51,231.318 393,232.5C 394.652,232.14 396.318,231.807 398,231.5C 399.087,235.629 401.087,236.296 404,233.5C 405.399,234.227 406.899,234.727 408.5,235C 408,235.5 407.5,236 407,236.5C 404.667,235.167 403.667,235.833 404,238.5C 407.342,236.834 411.175,236.334 415.5,237C 414.5,237.333 413.5,237.667 412.5,238C 413.572,239.284 414.905,239.617 416.5,239C 415.549,239.718 415.383,240.551 416,241.5C 417,240.833 418,240.167 419,239.5C 419.126,244.846 420.459,244.846 423,239.5C 423.324,241.569 424.158,241.902 425.5,240.5C 427.098,242.973 428.598,242.973 430,240.5C 432.396,242.67 434.73,245.003 437,247.5C 437.333,246.5 437.667,245.5 438,244.5C 438.656,248.002 439.989,248.002 442,244.5C 442.318,246.061 443.151,247.228 444.5,248C 443.044,248.423 442.544,249.256 443,250.5C 444.008,250.982 445.175,251.148 446.5,251C 443.871,255.357 444.538,255.691 448.5,252C 447.483,250.951 447.316,249.784 448,248.5C 450.359,251.038 451.859,250.371 452.5,246.5C 452.564,247.365 452.897,248.365 453.5,249.5C 451.876,250.869 451.376,252.536 452,254.5C 452.342,252.381 453.175,252.047 454.5,253.5C 454.5,260.833 454.5,268.167 454.5,275.5C 453.279,276.028 452.113,276.695 451,277.5C 448.066,276.433 445.566,274.766 443.5,272.5C 442.5,273.833 441.5,273.833 440.5,272.5C 439.167,271.833 439.167,271.167 440.5,270.5C 442.378,270.623 444.211,270.623 446,270.5C 446.667,269.5 446.667,268.5 446,267.5C 444.284,267.411 442.451,267.744 440.5,268.5C 439.719,267.263 438.719,266.263 437.5,265.5C 436.549,266.326 435.549,266.492 434.5,266C 434.833,265.667 435.167,265.333 435.5,265C 432.647,264.336 429.981,264.836 427.5,266.5C 426.833,266.333 426.167,266.167 425.5,266C 426.34,264.334 425.84,264.167 424,265.5C 423.085,264.672 422.419,263.672 422,262.5C 421,262.833 420,263.167 419,263.5C 416.264,260.411 416.764,257.578 420.5,255C 419.207,254.51 417.873,254.343 416.5,254.5C 416.649,253.448 416.483,252.448 416,251.5C 414.542,252.747 413.042,252.747 411.5,251.5C 409.549,252.839 408.382,254.172 408,255.5C 405.685,254.473 403.352,253.473 401,252.5C 400.577,253.956 399.744,254.456 398.5,254C 397.167,252.16 397.334,251.66 399,252.5C 403.359,248.316 402.859,245.482 397.5,244C 400.302,238.134 398.969,236.801 393.5,240C 394.749,241.824 395.915,241.657 397,239.5C 397.779,241.906 396.946,243.573 394.5,244.5C 395.447,246.059 396.113,247.726 396.5,249.5C 396.547,251 395.881,252 394.5,252.5C 394.002,251.397 393.669,250.397 393.5,249.5C 392.707,249.931 391.873,250.265 391,250.5C 388.463,249.458 386.129,248.125 384,246.5C 383.667,246.833 383.333,247.167 383,247.5C 383.167,245 383.333,242.5 383.5,240C 382.975,239.308 382.308,238.808 381.5,238.5C 381.558,240.796 381.392,243.463 381,246.5C 380.1,244.602 378.934,242.936 377.5,241.5C 377.488,244.26 376.155,244.76 373.5,243C 374.458,241.853 374.125,240.853 372.5,240C 371.256,239.544 370.423,240.044 370,241.5C 367.07,240.095 366.903,238.262 369.5,236C 374.596,234.892 374.763,233.392 370,231.5C 369.775,233.819 368.442,235.819 366,237.5C 363.664,236.708 363.164,235.375 364.5,233.5C 357.835,231.381 358.169,230.048 365.5,229.5C 366.806,227.069 367.806,227.403 368.5,230.5C 369.506,230.062 369.506,229.396 368.5,228.5C 369.167,228.167 369.833,227.833 370.5,227.5C 369.758,226.713 368.925,226.047 368,225.5C 366.414,226.376 364.914,227.376 363.5,228.5C 362.522,228.023 361.689,227.357 361,226.5C 360.009,227.939 358.676,228.939 357,229.5C 357.077,230.738 356.911,231.738 356.5,232.5C 354.511,230.676 352.677,228.676 351,226.5C 350.667,227.833 350.333,229.167 350,230.5C 349.667,228.5 349.333,226.5 349,224.5C 348.281,227.17 347.781,229.503 347.5,231.5C 346.416,230.335 345.583,229.002 345,227.5C 343.092,230.332 342.259,229.999 342.5,226.5C 344.346,226.778 345.68,226.111 346.5,224.5C 347.766,222.563 347.766,220.23 346.5,217.5C 346.5,217.167 346.5,216.833 346.5,216.5C 350.605,211.973 354.939,207.64 359.5,203.5 Z"/></g>
41
+ <g><path style="opacity:1" fill="#991c1b" d="M 244.5,208.5 C 246.657,210.412 248.991,212.079 251.5,213.5C 216.544,253.457 180.877,292.79 144.5,331.5C 144.5,331.167 144.5,330.833 144.5,330.5C 146.363,326.245 148.03,321.912 149.5,317.5C 153.215,308.772 158.548,301.105 165.5,294.5C 178.508,280.825 191.175,266.825 203.5,252.5C 212.805,242.192 222.138,231.859 231.5,221.5C 235.473,216.86 239.806,212.527 244.5,208.5 Z"/></g>
42
+ <g><path style="opacity:1" fill="#757575" d="M 45.5,169.5 C 46.7206,170.028 47.8873,170.695 49,171.5C 49.8333,174.5 50.6667,177.5 51.5,180.5C 52.451,179.674 53.451,179.508 54.5,180C 53.3774,181.044 52.0441,181.71 50.5,182C 51.1667,182.667 51.8333,183.333 52.5,184C 51.4652,185.507 51.6319,187.007 53,188.5C 53.9138,187.346 54.7471,187.513 55.5,189C 52.8409,190.866 53.1742,192.033 56.5,192.5C 56.5,201.167 56.5,209.833 56.5,218.5C 56.5,241.833 56.5,265.167 56.5,288.5C 55.2928,289.189 53.9594,289.355 52.5,289C 53.6405,289.741 53.6405,290.575 52.5,291.5C 53.0253,292.192 53.6919,292.692 54.5,293C 54.1667,293.333 53.8333,293.667 53.5,294C 48.5558,292.999 48.2225,293.999 52.5,297C 49.8333,297.667 49.8333,298.333 52.5,299C 50.3215,299.442 49.6548,300.442 50.5,302C 48.8896,303.108 47.2229,303.608 45.5,303.5C 45.5,258.833 45.5,214.167 45.5,169.5 Z"/></g>
43
+ <g><path style="opacity:1" fill="#a5a4a4" d="M 346.5,217.5 C 347.766,220.23 347.766,222.563 346.5,224.5C 345.68,226.111 344.346,226.778 342.5,226.5C 342.259,229.999 343.092,230.332 345,227.5C 345.583,229.002 346.416,230.335 347.5,231.5C 347.781,229.503 348.281,227.17 349,224.5C 349.333,226.5 349.667,228.5 350,230.5C 350.333,229.167 350.667,227.833 351,226.5C 352.677,228.676 354.511,230.676 356.5,232.5C 356.911,231.738 357.077,230.738 357,229.5C 358.676,228.939 360.009,227.939 361,226.5C 361.689,227.357 362.522,228.023 363.5,228.5C 364.914,227.376 366.414,226.376 368,225.5C 368.925,226.047 369.758,226.713 370.5,227.5C 369.833,227.833 369.167,228.167 368.5,228.5C 369.506,229.396 369.506,230.062 368.5,230.5C 367.806,227.403 366.806,227.069 365.5,229.5C 358.169,230.048 357.835,231.381 364.5,233.5C 363.164,235.375 363.664,236.708 366,237.5C 368.442,235.819 369.775,233.819 370,231.5C 374.763,233.392 374.596,234.892 369.5,236C 366.903,238.262 367.07,240.095 370,241.5C 370.423,240.044 371.256,239.544 372.5,240C 374.125,240.853 374.458,241.853 373.5,243C 376.155,244.76 377.488,244.26 377.5,241.5C 378.934,242.936 380.1,244.602 381,246.5C 381.392,243.463 381.558,240.796 381.5,238.5C 382.308,238.808 382.975,239.308 383.5,240C 383.333,242.5 383.167,245 383,247.5C 383.333,247.167 383.667,246.833 384,246.5C 386.129,248.125 388.463,249.458 391,250.5C 391.873,250.265 392.707,249.931 393.5,249.5C 393.669,250.397 394.002,251.397 394.5,252.5C 395.881,252 396.547,251 396.5,249.5C 396.113,247.726 395.447,246.059 394.5,244.5C 396.946,243.573 397.779,241.906 397,239.5C 395.915,241.657 394.749,241.824 393.5,240C 398.969,236.801 400.302,238.134 397.5,244C 402.859,245.482 403.359,248.316 399,252.5C 397.334,251.66 397.167,252.16 398.5,254C 399.744,254.456 400.577,253.956 401,252.5C 403.352,253.473 405.685,254.473 408,255.5C 408.382,254.172 409.549,252.839 411.5,251.5C 413.042,252.747 414.542,252.747 416,251.5C 416.483,252.448 416.649,253.448 416.5,254.5C 417.873,254.343 419.207,254.51 420.5,255C 416.764,257.578 416.264,260.411 419,263.5C 420,263.167 421,262.833 422,262.5C 422.419,263.672 423.085,264.672 424,265.5C 425.84,264.167 426.34,264.334 425.5,266C 426.167,266.167 426.833,266.333 427.5,266.5C 429.981,264.836 432.647,264.336 435.5,265C 435.167,265.333 434.833,265.667 434.5,266C 435.549,266.492 436.549,266.326 437.5,265.5C 438.719,266.263 439.719,267.263 440.5,268.5C 442.451,267.744 444.284,267.411 446,267.5C 446.667,268.5 446.667,269.5 446,270.5C 444.211,270.623 442.378,270.623 440.5,270.5C 439.167,271.167 439.167,271.833 440.5,272.5C 441.5,273.833 442.5,273.833 443.5,272.5C 445.566,274.766 448.066,276.433 451,277.5C 452.113,276.695 453.279,276.028 454.5,275.5C 454.5,281.5 454.5,287.5 454.5,293.5C 451.763,292.969 449.096,292.136 446.5,291C 446.167,290 445.833,289 445.5,288C 446.167,287.667 446.833,287.333 447.5,287C 446.333,286.5 445.5,285.667 445,284.5C 443.764,286.307 443.43,288.307 444,290.5C 443.683,288.699 443.016,288.366 442,289.5C 441.683,287.699 441.016,287.366 440,288.5C 437.817,288.035 435.65,286.868 433.5,285C 433.167,284.667 432.833,284.333 432.5,284C 434.92,284.988 437.253,284.655 439.5,283C 439,282.5 438.5,282 438,281.5C 435.941,281.446 433.774,281.613 431.5,282C 430.935,280.326 430.768,278.493 431,276.5C 428.762,278.604 427.762,280.938 428,283.5C 427.097,282.299 425.931,281.465 424.5,281C 425.634,279.984 425.301,279.317 423.5,279C 424.654,278.086 424.487,277.253 423,276.5C 421.817,277.731 420.651,277.731 419.5,276.5C 420.688,276.693 422.022,276.193 423.5,275C 421.487,273.209 421.487,271.875 423.5,271C 422.552,270.517 421.552,270.351 420.5,270.5C 420.657,271.873 420.49,273.207 420,274.5C 417.931,273.736 415.764,273.236 413.5,273C 415.396,271.935 415.563,271.102 414,270.5C 410.053,273.004 407.22,271.837 405.5,267C 404.234,266.691 403.067,266.191 402,265.5C 402.077,264.262 401.911,263.262 401.5,262.5C 398.167,263.167 394.833,263.833 391.5,264.5C 391.167,264.167 390.833,263.833 390.5,263.5C 393.143,258.486 392.476,258.152 388.5,262.5C 388.723,263.967 389.056,265.467 389.5,267C 388.874,267.75 388.374,268.584 388,269.5C 387.686,267.131 386.852,264.964 385.5,263C 385.759,261.739 386.426,260.739 387.5,260C 384.066,257.811 383.066,258.644 384.5,262.5C 383.998,263.521 383.332,263.688 382.5,263C 381.167,262.333 381.167,261.667 382.5,261C 381.551,260.383 380.718,260.549 380,261.5C 378.148,259.77 378.314,258.604 380.5,258C 379.747,256.513 378.914,256.346 378,257.5C 375.771,254.354 373.438,252.021 371,250.5C 369.919,252.622 369.252,254.622 369,256.5C 368.727,254.899 368.227,253.399 367.5,252C 368.654,251.086 368.487,250.253 367,249.5C 366.632,250.91 365.799,251.91 364.5,252.5C 362.528,251.695 361.028,250.361 360,248.5C 359.418,251.668 358.418,252.001 357,249.5C 355.374,249.854 353.541,249.854 351.5,249.5C 351.651,246.282 352.484,245.949 354,248.5C 354.75,247.874 355.584,247.374 356.5,247C 356.705,245.324 355.872,243.824 354,242.5C 351.667,245.5 350,245.167 349,241.5C 348.667,242.167 348.333,242.833 348,243.5C 346.245,242.33 345.245,240.663 345,238.5C 342.217,236.11 340.551,236.443 340,239.5C 339.641,236.456 338.974,236.122 338,238.5C 337.333,237.167 336.667,237.167 336,238.5C 335.085,237.672 334.419,236.672 334,235.5C 333.911,238.849 332.744,239.349 330.5,237C 332.619,236.658 332.953,235.825 331.5,234.5C 336.157,228.511 341.157,222.844 346.5,217.5 Z"/></g>
44
+ <g><path style="opacity:1" fill="#aa1f1f" d="M 326.5,238.5 C 321.5,244.5 316.5,250.5 311.5,256.5C 310.167,257.5 308.833,258.5 307.5,259.5C 304.357,260.134 301.857,261.8 300,264.5C 298.491,263.91 296.991,263.244 295.5,262.5C 296.642,260.622 297.642,258.788 298.5,257C 293.103,257.214 292.436,255.881 296.5,253C 295.833,252.667 295.167,252.333 294.5,252C 295.357,251.311 296.023,250.478 296.5,249.5C 293.553,248.679 290.553,248.179 287.5,248C 287.957,247.586 288.291,247.086 288.5,246.5C 272.177,245.334 255.844,245.167 239.5,246C 238.833,246.667 238.167,247.333 237.5,248C 233.833,248.333 230.167,248.667 226.5,249C 223.42,251.628 220.087,253.794 216.5,255.5C 223.159,247.508 230.159,239.841 237.5,232.5C 240.847,232.217 243.513,230.717 245.5,228C 249.167,227.667 252.833,227.333 256.5,227C 257.167,226.333 257.833,225.667 258.5,225C 274.844,224.167 291.177,224.334 307.5,225.5C 307.291,226.086 306.957,226.586 306.5,227C 309.553,227.179 312.553,227.679 315.5,228.5C 315.023,229.478 314.357,230.311 313.5,231C 315.891,231.691 315.891,232.691 313.5,234C 314.938,234.219 316.271,234.719 317.5,235.5C 315.578,236.96 314.911,238.627 315.5,240.5C 316.991,241.244 318.491,241.91 320,242.5C 321.638,240.266 323.805,238.933 326.5,238.5 Z"/></g>
45
+ <g><path style="opacity:1" fill="#a51d1d" d="M 307.5,259.5 C 305.408,262.681 303.075,265.681 300.5,268.5C 296.788,271.211 293.788,274.544 291.5,278.5C 290.5,279.167 289.5,279.833 288.5,280.5C 285.628,281.526 283.128,283.192 281,285.5C 277.903,284.711 277.736,283.544 280.5,282C 279.167,281.667 277.833,281.333 276.5,281C 280.564,278.119 279.897,276.786 274.5,277C 275.5,276 276.5,275 277.5,274C 275.109,273.309 275.109,272.309 277.5,271C 274.167,270.667 270.833,270.333 267.5,270C 268.167,269 268.833,268 269.5,267C 253.167,266.333 236.833,266.333 220.5,267C 219.643,267.689 218.977,268.522 218.5,269.5C 214.541,270.327 210.541,270.827 206.5,271C 201.736,273.927 197.403,277.427 193.5,281.5C 200.43,272.234 208.096,263.567 216.5,255.5C 220.087,253.794 223.42,251.628 226.5,249C 230.167,248.667 233.833,248.333 237.5,248C 238.167,247.333 238.833,246.667 239.5,246C 255.844,245.167 272.177,245.334 288.5,246.5C 288.291,247.086 287.957,247.586 287.5,248C 290.553,248.179 293.553,248.679 296.5,249.5C 296.023,250.478 295.357,251.311 294.5,252C 295.167,252.333 295.833,252.667 296.5,253C 292.436,255.881 293.103,257.214 298.5,257C 297.642,258.788 296.642,260.622 295.5,262.5C 296.991,263.244 298.491,263.91 300,264.5C 301.857,261.8 304.357,260.134 307.5,259.5 Z"/></g>
46
+ <g><path style="opacity:1" fill="#9f9e9e" d="M 331.5,234.5 C 332.953,235.825 332.619,236.658 330.5,237C 332.744,239.349 333.911,238.849 334,235.5C 334.419,236.672 335.085,237.672 336,238.5C 336.667,237.167 337.333,237.167 338,238.5C 338.974,236.122 339.641,236.456 340,239.5C 340.551,236.443 342.217,236.11 345,238.5C 345.245,240.663 346.245,242.33 348,243.5C 348.333,242.833 348.667,242.167 349,241.5C 350,245.167 351.667,245.5 354,242.5C 355.872,243.824 356.705,245.324 356.5,247C 355.584,247.374 354.75,247.874 354,248.5C 352.484,245.949 351.651,246.282 351.5,249.5C 353.541,249.854 355.374,249.854 357,249.5C 358.418,252.001 359.418,251.668 360,248.5C 361.028,250.361 362.528,251.695 364.5,252.5C 365.799,251.91 366.632,250.91 367,249.5C 368.487,250.253 368.654,251.086 367.5,252C 368.227,253.399 368.727,254.899 369,256.5C 369.252,254.622 369.919,252.622 371,250.5C 373.438,252.021 375.771,254.354 378,257.5C 378.914,256.346 379.747,256.513 380.5,258C 378.314,258.604 378.148,259.77 380,261.5C 380.718,260.549 381.551,260.383 382.5,261C 381.167,261.667 381.167,262.333 382.5,263C 383.332,263.688 383.998,263.521 384.5,262.5C 383.066,258.644 384.066,257.811 387.5,260C 386.426,260.739 385.759,261.739 385.5,263C 386.852,264.964 387.686,267.131 388,269.5C 388.374,268.584 388.874,267.75 389.5,267C 389.056,265.467 388.723,263.967 388.5,262.5C 392.476,258.152 393.143,258.486 390.5,263.5C 390.833,263.833 391.167,264.167 391.5,264.5C 394.833,263.833 398.167,263.167 401.5,262.5C 401.911,263.262 402.077,264.262 402,265.5C 403.067,266.191 404.234,266.691 405.5,267C 407.22,271.837 410.053,273.004 414,270.5C 415.563,271.102 415.396,271.935 413.5,273C 415.764,273.236 417.931,273.736 420,274.5C 420.49,273.207 420.657,271.873 420.5,270.5C 421.552,270.351 422.552,270.517 423.5,271C 421.487,271.875 421.487,273.209 423.5,275C 422.022,276.193 420.688,276.693 419.5,276.5C 420.651,277.731 421.817,277.731 423,276.5C 424.487,277.253 424.654,278.086 423.5,279C 425.301,279.317 425.634,279.984 424.5,281C 425.931,281.465 427.097,282.299 428,283.5C 427.762,280.938 428.762,278.604 431,276.5C 430.768,278.493 430.935,280.326 431.5,282C 433.774,281.613 435.941,281.446 438,281.5C 438.5,282 439,282.5 439.5,283C 437.253,284.655 434.92,284.988 432.5,284C 432.833,284.333 433.167,284.667 433.5,285C 435.65,286.868 437.817,288.035 440,288.5C 441.016,287.366 441.683,287.699 442,289.5C 443.016,288.366 443.683,288.699 444,290.5C 443.43,288.307 443.764,286.307 445,284.5C 445.5,285.667 446.333,286.5 447.5,287C 446.833,287.333 446.167,287.667 445.5,288C 445.833,289 446.167,290 446.5,291C 449.096,292.136 451.763,292.969 454.5,293.5C 454.5,297.5 454.5,301.5 454.5,305.5C 452.799,305.966 451.299,305.966 450,305.5C 450.592,309.107 449.759,309.274 447.5,306C 448.34,304.334 447.84,304.167 446,305.5C 443.927,303.835 441.76,302.335 439.5,301C 439.694,299.57 439.694,298.07 439.5,296.5C 438.384,300.724 436.051,301.557 432.5,299C 431.386,297.43 430.053,296.097 428.5,295C 428.998,293.842 429.831,293.009 431,292.5C 432.101,293.291 432.934,293.291 433.5,292.5C 430.203,291.858 429.869,290.691 432.5,289C 431.318,287.322 430.152,287.488 429,289.5C 425.713,289.13 422.713,288.13 420,286.5C 419.383,287.449 419.549,288.282 420.5,289C 417.991,290.465 415.658,289.965 413.5,287.5C 414,286.5 414.5,285.5 415,284.5C 415.654,285.696 416.154,285.696 416.5,284.5C 415.758,283.713 414.925,283.047 414,282.5C 412.59,283.787 411.09,284.954 409.5,286C 410.696,286.654 410.696,287.154 409.5,287.5C 408.702,285.922 408.202,284.256 408,282.5C 404.983,284.945 402.149,284.612 399.5,281.5C 398.289,280.726 398.289,279.893 399.5,279C 396.833,278.333 396.833,277.667 399.5,277C 398.584,276.626 397.75,276.126 397,275.5C 396,276.833 395,276.833 394,275.5C 393.383,276.449 393.549,277.282 394.5,278C 393.552,278.483 392.552,278.649 391.5,278.5C 390.999,275.599 389.333,274.099 386.5,274C 387.696,274.654 387.696,275.154 386.5,275.5C 384.998,274.917 383.665,274.084 382.5,273C 382.833,272.667 383.167,272.333 383.5,272C 381.893,270.951 381.227,269.451 381.5,267.5C 380.448,267.649 379.448,267.483 378.5,267C 379.451,266.282 379.617,265.449 379,264.5C 375.903,267.682 374.237,267.015 374,262.5C 372.305,264.793 371.638,267.127 372,269.5C 370.984,267.502 369.15,265.669 366.5,264C 364.772,264.353 363.106,264.519 361.5,264.5C 359.517,263.018 357.684,261.351 356,259.5C 354.512,260.196 353.012,259.862 351.5,258.5C 352.167,257.833 352.833,257.167 353.5,256.5C 352.132,255.406 350.965,255.74 350,257.5C 349.667,256.833 349.333,256.167 349,255.5C 347.899,257.394 346.566,258.061 345,257.5C 342.734,254.666 340.9,251.666 339.5,248.5C 339.36,249.569 339.36,250.736 339.5,252C 338.551,252.617 337.718,252.451 337,251.5C 335.887,253.329 334.387,254.163 332.5,254C 333.167,253.333 333.833,252.667 334.5,252C 331.292,249.553 331.292,247.887 334.5,247C 333.672,246.085 332.672,245.419 331.5,245C 331.833,244.667 332.167,244.333 332.5,244C 331.281,241.722 329.948,239.555 328.5,237.5C 329.167,236.167 330.167,235.167 331.5,234.5 Z"/></g>
47
+ <g><path style="opacity:1" fill="#9f1c1c" d="M 288.5,280.5 C 286.408,283.681 284.075,286.681 281.5,289.5C 277.605,292.973 273.939,296.64 270.5,300.5C 269.448,300.351 268.448,300.517 267.5,301C 264.973,303.527 262.473,306.027 260,308.5C 257.122,307.209 257.288,305.709 260.5,304C 259.167,303.667 257.833,303.333 256.5,303C 257.5,302 258.5,301 259.5,300C 258.833,299.667 258.167,299.333 257.5,299C 261.564,296.119 260.897,294.786 255.5,295C 256.167,294.333 256.833,293.667 257.5,293C 254.167,292.667 250.833,292.333 247.5,292C 248.357,291.311 249.023,290.478 249.5,289.5C 233.177,288.334 216.844,288.167 200.5,289C 199.833,290 199.167,291 198.5,292C 194.5,292.333 190.5,292.667 186.5,293C 182.408,295.255 178.742,298.089 175.5,301.5C 181.136,294.529 187.136,287.863 193.5,281.5C 197.403,277.427 201.736,273.927 206.5,271C 210.541,270.827 214.541,270.327 218.5,269.5C 218.977,268.522 219.643,267.689 220.5,267C 236.833,266.333 253.167,266.333 269.5,267C 268.833,268 268.167,269 267.5,270C 270.833,270.333 274.167,270.667 277.5,271C 275.109,272.309 275.109,273.309 277.5,274C 276.5,275 275.5,276 274.5,277C 279.897,276.786 280.564,278.119 276.5,281C 277.833,281.333 279.167,281.667 280.5,282C 277.736,283.544 277.903,284.711 281,285.5C 283.128,283.192 285.628,281.526 288.5,280.5 Z"/></g>
48
+ <g><path style="opacity:1" fill="#c5c3c3" d="M 231.5,221.5 C 222.138,231.859 212.805,242.192 203.5,252.5C 201.288,251.6 199.621,252.434 198.5,255C 197.552,255.483 196.552,255.649 195.5,255.5C 195.849,258.045 195.016,260.045 193,261.5C 192.667,260.5 192.333,259.5 192,258.5C 190.759,259.938 190.259,261.438 190.5,263C 188.567,263.251 186.734,263.751 185,264.5C 184.667,263.833 184.333,263.167 184,262.5C 182.638,263.925 181.138,264.758 179.5,265C 179.982,266.008 180.148,267.175 180,268.5C 181.342,267.098 182.176,267.431 182.5,269.5C 180.607,271.132 179.44,273.799 179,277.5C 177.309,275.291 177.476,273.458 179.5,272C 178.071,269.562 176.237,268.396 174,268.5C 174.618,272.526 173.285,273.193 170,270.5C 169.667,271.833 169.333,273.167 169,274.5C 168.5,274 168,273.5 167.5,273C 168.554,271.612 168.72,270.112 168,268.5C 166.01,273.225 162.677,275.225 158,274.5C 157.667,275.167 157.333,275.833 157,276.5C 156.316,275.216 156.483,274.049 157.5,273C 154.768,272.095 154.101,272.762 155.5,275C 155.179,277.544 153.845,278.544 151.5,278C 153.211,276.867 153.711,275.367 153,273.5C 151.302,275.266 149.969,277.266 149,279.5C 148.363,277.697 147.197,276.364 145.5,275.5C 145.74,278.203 145.24,280.87 144,283.5C 143.092,280.257 141.092,277.923 138,276.5C 138.594,278.482 139.76,280.316 141.5,282C 140.5,282.333 139.5,282.667 138.5,283C 138.833,283.333 139.167,283.667 139.5,284C 137.77,285.852 136.604,285.686 136,283.5C 135.085,284.328 134.419,285.328 134,286.5C 132.887,285.24 132.72,284.073 133.5,283C 132.584,282.626 131.75,282.126 131,281.5C 130.866,284.863 130.033,287.863 128.5,290.5C 127.682,287.893 127.182,285.226 127,282.5C 126.5,283 126,283.5 125.5,284C 126.517,285.049 126.684,286.216 126,287.5C 125.346,286.304 124.846,286.304 124.5,287.5C 126.184,288.854 126.684,290.521 126,292.5C 124.951,291.483 123.784,291.316 122.5,292C 123.167,292.333 123.833,292.667 124.5,293C 123.377,294.044 122.044,294.71 120.5,295C 120.833,295.333 121.167,295.667 121.5,296C 120.552,296.483 119.552,296.649 118.5,296.5C 118.716,298.681 117.883,300.347 116,301.5C 115.316,300.216 115.483,299.049 116.5,298C 116,297.5 115.5,297 115,296.5C 113.881,297.552 113.381,298.719 113.5,300C 111.028,301.46 108.361,302.46 105.5,303C 104.289,303.893 104.289,304.726 105.5,305.5C 106.324,303.252 107.324,303.086 108.5,305C 105.982,306.502 103.482,308.002 101,309.5C 100.586,309.043 100.086,308.709 99.5,308.5C 97.5696,310.455 95.4029,312.121 93,313.5C 91.3333,312.833 89.6667,312.167 88,311.5C 86.2467,312.627 84.4134,313.627 82.5,314.5C 81.479,315.002 81.3123,315.668 82,316.5C 82.3333,316.167 82.6667,315.833 83,315.5C 84.3333,316.833 85.6667,318.167 87,319.5C 87.6172,318.551 87.4506,317.718 86.5,317C 88.1247,316.147 88.4581,315.147 87.5,314C 88.8333,313.333 90.1667,313.333 91.5,314C 90.8333,314.333 90.1667,314.667 89.5,315C 91.2861,315.196 92.6195,316.029 93.5,317.5C 92.011,317.533 90.6776,318.033 89.5,319C 89.8333,320 90.1667,321 90.5,322C 89.9747,322.692 89.3081,323.192 88.5,323.5C 86.6503,322.758 85.9836,321.758 86.5,320.5C 81.7476,322.21 78.9142,325.21 78,329.5C 76.0545,327.819 74.0545,327.152 72,327.5C 71.7261,330.715 70.3927,333.381 68,335.5C 67.6667,335.167 67.3333,334.833 67,334.5C 65.3523,335.717 63.519,336.55 61.5,337C 62.5,337.333 63.5,337.667 64.5,338C 64.153,340.19 62.8197,342.023 60.5,343.5C 61.8588,345.783 61.5254,348.116 59.5,350.5C 59.8333,351.167 60.1667,351.833 60.5,352.5C 59.0696,356.504 58.0696,360.504 57.5,364.5C 58.055,354.509 58.3883,344.509 58.5,334.5C 59.5862,334.38 60.2528,333.713 60.5,332.5C 58.9702,330.202 59.3035,328.369 61.5,327C 60.5761,326.15 60.5761,325.15 61.5,324C 61.0946,323.055 60.428,322.388 59.5,322C 61.4414,320.184 62.1081,318.184 61.5,316C 58.8463,313.928 59.1796,312.261 62.5,311C 61.938,309.435 61.438,307.601 61,305.5C 62.5298,307.226 63.5298,309.226 64,311.5C 64.3333,310.5 64.6667,309.5 65,308.5C 65.9138,309.654 66.7471,309.487 67.5,308C 65.9411,307.02 64.2744,306.187 62.5,305.5C 63.09,304.201 64.09,303.368 65.5,303C 62.8333,300.76 63.3333,299.26 67,298.5C 66.4902,296.62 66.6569,294.787 67.5,293C 66.107,290.822 64.4404,289.822 62.5,290C 63,289.5 63.5,289 64,288.5C 65.9964,288.996 67.6631,289.996 69,291.5C 69.1667,291 69.3333,290.5 69.5,290C 68.2173,288.864 67.2173,287.531 66.5,286C 66.6107,284.278 67.1107,284.112 68,285.5C 68.3333,284.167 68.6667,282.833 69,281.5C 69.4482,283.224 70.2815,283.891 71.5,283.5C 70.3318,284.906 70.6652,286.072 72.5,287C 71.2888,287.893 71.2888,288.726 72.5,289.5C 73.8333,290.5 75.1667,291.5 76.5,292.5C 77.9987,290.198 79.332,290.531 80.5,293.5C 81.4255,292.359 82.2588,292.359 83,293.5C 83.8333,292.667 84.6667,291.833 85.5,291C 83.2199,290.297 81.2199,289.131 79.5,287.5C 77.634,288.563 77.134,287.896 78,285.5C 79,286.833 80,286.833 81,285.5C 84.427,291.02 86.0937,290.687 86,284.5C 82.9746,285.791 82.6413,285.124 85,282.5C 85.3333,282.833 85.6667,283.167 86,283.5C 87.3687,281.955 87.202,280.289 85.5,278.5C 84.676,280.748 83.676,280.914 82.5,279C 84.6487,277.848 86.482,276.348 88,274.5C 88.6838,275.784 88.5171,276.951 87.5,278C 89.9436,278.399 90.6102,277.566 89.5,275.5C 90.376,274.749 91.376,274.249 92.5,274C 91.5494,273.282 91.3828,272.449 92,271.5C 93.7141,270.075 95.0475,270.408 96,272.5C 97.4381,271.1 98.2714,269.433 98.5,267.5C 99.8734,267.343 101.207,267.51 102.5,268C 101.692,268.308 101.025,268.808 100.5,269.5C 100.846,270.696 101.346,270.696 102,269.5C 103.452,272.583 104.785,275.25 106,277.5C 107.46,277.018 108.96,275.851 110.5,274C 107.97,271.273 105.637,269.107 103.5,267.5C 104.861,265.972 106.028,264.305 107,262.5C 108.264,266.011 110.097,266.178 112.5,263C 111.549,262.282 111.383,261.449 112,260.5C 113.512,261.257 114.846,262.257 116,263.5C 119.253,260.662 120.253,261.329 119,265.5C 121.618,261.892 122.451,261.892 121.5,265.5C 122.242,266.287 123.075,266.953 124,267.5C 127.097,266.711 127.264,265.544 124.5,264C 124.616,262.732 124.949,261.398 125.5,260C 130.994,257.135 136.994,255.302 143.5,254.5C 141.861,253.084 141.027,251.417 141,249.5C 143.148,250.977 144.482,252.977 145,255.5C 146.333,255.5 147.667,255.5 149,255.5C 150.816,254.671 152.649,253.837 154.5,253C 153.833,252.333 153.167,251.667 152.5,251C 153.867,249.333 155.7,247.499 158,245.5C 159,246.5 160,247.5 161,248.5C 160.383,246.905 160.716,245.572 162,244.5C 165.206,245.951 166.873,244.951 167,241.5C 166,241.167 165,240.833 164,240.5C 161.515,242.804 161.015,242.137 162.5,238.5C 163.451,239.326 164.451,239.492 165.5,239C 165.167,238.667 164.833,238.333 164.5,238C 165.91,237.632 166.91,236.799 167.5,235.5C 166.5,235.5 165.5,235.5 164.5,235.5C 165.667,233.833 166.833,232.167 168,230.5C 168.75,231.126 169.584,231.626 170.5,232C 169.692,232.308 169.025,232.808 168.5,233.5C 170.807,238.413 172.641,238.413 174,233.5C 174.471,235.246 175.138,236.913 176,238.5C 176.903,237.299 178.069,236.465 179.5,236C 175.81,235.576 175.643,234.742 179,233.5C 180.813,234.609 181.646,233.942 181.5,231.5C 179.61,231.703 178.11,231.037 177,229.5C 175.915,231.657 174.749,231.824 173.5,230C 175.448,229.017 177.282,227.85 179,226.5C 180.487,227.253 180.654,228.086 179.5,229C 184.3,230.761 184.633,233.261 180.5,236.5C 181.53,236.554 182.697,236.888 184,237.5C 184.75,236.874 185.584,236.374 186.5,236C 185.328,235.581 184.328,234.915 183.5,234C 184.86,232.062 184.527,230.396 182.5,229C 183.549,228.508 184.549,228.674 185.5,229.5C 185.833,228.167 186.167,226.833 186.5,225.5C 191.4,223.13 191.733,223.963 187.5,228C 187.667,228.5 187.833,229 188,229.5C 191.454,228.751 194.954,227.751 198.5,226.5C 199.716,227.002 200.883,227.335 202,227.5C 202.456,226.256 201.956,225.423 200.5,225C 200.833,224.667 201.167,224.333 201.5,224C 203.075,224.379 204.575,224.212 206,223.5C 206.333,224.167 206.667,224.833 207,225.5C 207.415,223.709 208.415,222.376 210,221.5C 210.342,223.818 209.842,225.985 208.5,228C 209.227,229.399 209.727,230.899 210,232.5C 211.217,230.48 211.383,228.48 210.5,226.5C 212.006,225.253 213.506,225.253 215,226.5C 215.5,225.5 216,224.5 216.5,223.5C 220.057,220.344 222.224,221.011 223,225.5C 224.07,220.637 226.903,219.303 231.5,221.5 Z"/></g>
49
+ <g><path style="opacity:1" fill="#c03838" d="M 274.5,189.5 C 274.938,189.435 275.272,189.601 275.5,190C 270.6,195.392 265.933,200.892 261.5,206.5C 253.16,214.84 245.16,223.507 237.5,232.5C 230.159,239.841 223.159,247.508 216.5,255.5C 208.096,263.567 200.43,272.234 193.5,281.5C 187.136,287.863 181.136,294.529 175.5,301.5C 168.376,308.414 161.709,315.747 155.5,323.5C 151.773,327.233 147.773,330.566 143.5,333.5C 143.833,332.833 144.167,332.167 144.5,331.5C 180.877,292.79 216.544,253.457 251.5,213.5C 259.167,205.5 266.833,197.5 274.5,189.5 Z"/></g>
50
+ <g><path style="opacity:1" fill="#c0bbbb" d="M 203.5,252.5 C 191.175,266.825 178.508,280.825 165.5,294.5C 163.632,293.243 161.965,293.576 160.5,295.5C 158.983,294.089 157.649,294.256 156.5,296C 159,296.833 159.167,298 157,299.5C 155.984,298.366 155.317,298.699 155,300.5C 154.667,299.833 154.333,299.167 154,298.5C 153.153,302.069 151.153,303.402 148,302.5C 145.512,306.352 143.179,306.352 141,302.5C 140.626,303.416 140.126,304.25 139.5,305C 141.992,306.249 141.825,307.416 139,308.5C 137.984,307.366 137.317,307.699 137,309.5C 135.415,308.624 134.415,307.291 134,305.5C 133.5,306 133,306.5 132.5,307C 133.337,308.011 133.67,309.178 133.5,310.5C 131.692,310.491 130.025,310.991 128.5,312C 128.493,313.583 128.826,315.249 129.5,317C 127.01,317.495 125.51,318.995 125,321.5C 124.085,320.672 123.419,319.672 123,318.5C 122.25,319.126 121.416,319.626 120.5,320C 120.833,320.333 121.167,320.667 121.5,321C 120.809,322.067 120.309,323.234 120,324.5C 118.482,324.057 117.315,324.724 116.5,326.5C 115.961,329.211 114.628,331.377 112.5,333C 113.654,333.914 113.487,334.747 112,335.5C 111.667,334.833 111.333,334.167 111,333.5C 110.333,335.5 109,336.833 107,337.5C 106.333,339.167 106.333,340.833 107,342.5C 108.085,340.343 109.251,340.176 110.5,342C 108.702,343.505 106.868,343.672 105,342.5C 104.517,343.448 104.351,344.448 104.5,345.5C 102.876,345.36 101.71,346.027 101,347.5C 100.026,345.122 99.3589,345.456 99,348.5C 98.3333,347.167 97.6667,347.167 97,348.5C 96.5172,349.448 96.3505,350.448 96.5,351.5C 97.8734,351.343 99.2068,351.51 100.5,352C 96.6325,353.008 93.2991,355.008 90.5,358C 87.8333,358.667 85.1667,359.333 82.5,360C 83.6341,361.016 83.3008,361.683 81.5,362C 79.8333,362.667 78.1667,362.667 76.5,362C 75.9323,360.396 74.9323,359.73 73.5,360C 74.7111,361.113 74.7111,362.28 73.5,363.5C 74.0253,364.192 74.6919,364.692 75.5,365C 72.8333,367.333 70.1667,369.667 67.5,372C 69.6145,372.424 70.4479,373.591 70,375.5C 69.1072,374.289 68.2739,374.289 67.5,375.5C 65.7299,376.82 65.3966,378.32 66.5,380C 63.6729,381.664 60.6729,382.83 57.5,383.5C 57.5,377.167 57.5,370.833 57.5,364.5C 58.0696,360.504 59.0696,356.504 60.5,352.5C 60.1667,351.833 59.8333,351.167 59.5,350.5C 61.5254,348.116 61.8588,345.783 60.5,343.5C 62.8197,342.023 64.153,340.19 64.5,338C 63.5,337.667 62.5,337.333 61.5,337C 63.519,336.55 65.3523,335.717 67,334.5C 67.3333,334.833 67.6667,335.167 68,335.5C 70.3927,333.381 71.7261,330.715 72,327.5C 74.0545,327.152 76.0545,327.819 78,329.5C 78.9142,325.21 81.7476,322.21 86.5,320.5C 85.9836,321.758 86.6503,322.758 88.5,323.5C 89.3081,323.192 89.9747,322.692 90.5,322C 90.1667,321 89.8333,320 89.5,319C 90.6776,318.033 92.011,317.533 93.5,317.5C 92.6195,316.029 91.2861,315.196 89.5,315C 90.1667,314.667 90.8333,314.333 91.5,314C 90.1667,313.333 88.8333,313.333 87.5,314C 88.4581,315.147 88.1247,316.147 86.5,317C 87.4506,317.718 87.6172,318.551 87,319.5C 85.6667,318.167 84.3333,316.833 83,315.5C 82.6667,315.833 82.3333,316.167 82,316.5C 81.3123,315.668 81.479,315.002 82.5,314.5C 84.4134,313.627 86.2467,312.627 88,311.5C 89.6667,312.167 91.3333,312.833 93,313.5C 95.4029,312.121 97.5696,310.455 99.5,308.5C 100.086,308.709 100.586,309.043 101,309.5C 103.482,308.002 105.982,306.502 108.5,305C 107.324,303.086 106.324,303.252 105.5,305.5C 104.289,304.726 104.289,303.893 105.5,303C 108.361,302.46 111.028,301.46 113.5,300C 113.381,298.719 113.881,297.552 115,296.5C 115.5,297 116,297.5 116.5,298C 115.483,299.049 115.316,300.216 116,301.5C 117.883,300.347 118.716,298.681 118.5,296.5C 119.552,296.649 120.552,296.483 121.5,296C 121.167,295.667 120.833,295.333 120.5,295C 122.044,294.71 123.377,294.044 124.5,293C 123.833,292.667 123.167,292.333 122.5,292C 123.784,291.316 124.951,291.483 126,292.5C 126.684,290.521 126.184,288.854 124.5,287.5C 124.846,286.304 125.346,286.304 126,287.5C 126.684,286.216 126.517,285.049 125.5,284C 126,283.5 126.5,283 127,282.5C 127.182,285.226 127.682,287.893 128.5,290.5C 130.033,287.863 130.866,284.863 131,281.5C 131.75,282.126 132.584,282.626 133.5,283C 132.72,284.073 132.887,285.24 134,286.5C 134.419,285.328 135.085,284.328 136,283.5C 136.604,285.686 137.77,285.852 139.5,284C 139.167,283.667 138.833,283.333 138.5,283C 139.5,282.667 140.5,282.333 141.5,282C 139.76,280.316 138.594,278.482 138,276.5C 141.092,277.923 143.092,280.257 144,283.5C 145.24,280.87 145.74,278.203 145.5,275.5C 147.197,276.364 148.363,277.697 149,279.5C 149.969,277.266 151.302,275.266 153,273.5C 153.711,275.367 153.211,276.867 151.5,278C 153.845,278.544 155.179,277.544 155.5,275C 154.101,272.762 154.768,272.095 157.5,273C 156.483,274.049 156.316,275.216 157,276.5C 157.333,275.833 157.667,275.167 158,274.5C 162.677,275.225 166.01,273.225 168,268.5C 168.72,270.112 168.554,271.612 167.5,273C 168,273.5 168.5,274 169,274.5C 169.333,273.167 169.667,271.833 170,270.5C 173.285,273.193 174.618,272.526 174,268.5C 176.237,268.396 178.071,269.562 179.5,272C 177.476,273.458 177.309,275.291 179,277.5C 179.44,273.799 180.607,271.132 182.5,269.5C 182.176,267.431 181.342,267.098 180,268.5C 180.148,267.175 179.982,266.008 179.5,265C 181.138,264.758 182.638,263.925 184,262.5C 184.333,263.167 184.667,263.833 185,264.5C 186.734,263.751 188.567,263.251 190.5,263C 190.259,261.438 190.759,259.938 192,258.5C 192.333,259.5 192.667,260.5 193,261.5C 195.016,260.045 195.849,258.045 195.5,255.5C 196.552,255.649 197.552,255.483 198.5,255C 199.621,252.434 201.288,251.6 203.5,252.5 Z"/></g>
51
+ <g><path style="opacity:1" fill="#981a1a" d="M 270.5,300.5 C 268.055,303.21 265.722,306.044 263.5,309C 265.81,309.497 268.143,309.663 270.5,309.5C 273.345,314.703 272.345,319.203 267.5,323C 268.308,323.308 268.975,323.808 269.5,324.5C 267.983,326.185 266.316,327.685 264.5,329C 265.5,329.333 266.5,329.667 267.5,330C 265.937,330.759 264.937,331.926 264.5,333.5C 260.833,333.5 257.167,333.5 253.5,333.5C 253.351,332.448 253.517,331.448 254,330.5C 256.667,329.167 258.667,327.167 260,324.5C 261.451,320.594 262.618,316.594 263.5,312.5C 263.005,310.289 261.838,309.955 260,311.5C 258.225,312.77 257.058,314.436 256.5,316.5C 253.306,317.942 250.639,320.108 248.5,323C 245.518,323.498 242.518,323.665 239.5,323.5C 239.5,322.167 239.5,320.833 239.5,319.5C 236.167,319.5 232.833,319.5 229.5,319.5C 229.5,318.167 229.5,316.833 229.5,315.5C 211.83,315.333 194.164,315.5 176.5,316C 175.5,317 174.5,318 173.5,319C 169.833,319.333 166.167,319.667 162.5,320C 160.933,322.741 158.599,323.908 155.5,323.5C 161.709,315.747 168.376,308.414 175.5,301.5C 178.742,298.089 182.408,295.255 186.5,293C 190.5,292.667 194.5,292.333 198.5,292C 199.167,291 199.833,290 200.5,289C 216.844,288.167 233.177,288.334 249.5,289.5C 249.023,290.478 248.357,291.311 247.5,292C 250.833,292.333 254.167,292.667 257.5,293C 256.833,293.667 256.167,294.333 255.5,295C 260.897,294.786 261.564,296.119 257.5,299C 258.167,299.333 258.833,299.667 259.5,300C 258.5,301 257.5,302 256.5,303C 257.833,303.333 259.167,303.667 260.5,304C 257.288,305.709 257.122,307.209 260,308.5C 262.473,306.027 264.973,303.527 267.5,301C 268.448,300.517 269.448,300.351 270.5,300.5 Z"/></g>
52
+ <g><path style="opacity:1" fill="#9a9898" d="M 328.5,237.5 C 329.948,239.555 331.281,241.722 332.5,244C 332.167,244.333 331.833,244.667 331.5,245C 332.672,245.419 333.672,246.085 334.5,247C 331.292,247.887 331.292,249.553 334.5,252C 333.833,252.667 333.167,253.333 332.5,254C 334.387,254.163 335.887,253.329 337,251.5C 337.718,252.451 338.551,252.617 339.5,252C 339.36,250.736 339.36,249.569 339.5,248.5C 340.9,251.666 342.734,254.666 345,257.5C 346.566,258.061 347.899,257.394 349,255.5C 349.333,256.167 349.667,256.833 350,257.5C 350.965,255.74 352.132,255.406 353.5,256.5C 352.833,257.167 352.167,257.833 351.5,258.5C 353.012,259.862 354.512,260.196 356,259.5C 357.684,261.351 359.517,263.018 361.5,264.5C 363.106,264.519 364.772,264.353 366.5,264C 369.15,265.669 370.984,267.502 372,269.5C 371.638,267.127 372.305,264.793 374,262.5C 374.237,267.015 375.903,267.682 379,264.5C 379.617,265.449 379.451,266.282 378.5,267C 379.448,267.483 380.448,267.649 381.5,267.5C 381.227,269.451 381.893,270.951 383.5,272C 383.167,272.333 382.833,272.667 382.5,273C 383.665,274.084 384.998,274.917 386.5,275.5C 387.696,275.154 387.696,274.654 386.5,274C 389.333,274.099 390.999,275.599 391.5,278.5C 392.552,278.649 393.552,278.483 394.5,278C 393.549,277.282 393.383,276.449 394,275.5C 395,276.833 396,276.833 397,275.5C 397.75,276.126 398.584,276.626 399.5,277C 396.833,277.667 396.833,278.333 399.5,279C 398.289,279.893 398.289,280.726 399.5,281.5C 402.149,284.612 404.983,284.945 408,282.5C 408.202,284.256 408.702,285.922 409.5,287.5C 410.696,287.154 410.696,286.654 409.5,286C 411.09,284.954 412.59,283.787 414,282.5C 414.925,283.047 415.758,283.713 416.5,284.5C 416.154,285.696 415.654,285.696 415,284.5C 414.5,285.5 414,286.5 413.5,287.5C 415.658,289.965 417.991,290.465 420.5,289C 419.549,288.282 419.383,287.449 420,286.5C 422.713,288.13 425.713,289.13 429,289.5C 430.152,287.488 431.318,287.322 432.5,289C 429.869,290.691 430.203,291.858 433.5,292.5C 432.934,293.291 432.101,293.291 431,292.5C 429.831,293.009 428.998,293.842 428.5,295C 430.053,296.097 431.386,297.43 432.5,299C 436.051,301.557 438.384,300.724 439.5,296.5C 439.694,298.07 439.694,299.57 439.5,301C 441.76,302.335 443.927,303.835 446,305.5C 447.84,304.167 448.34,304.334 447.5,306C 449.759,309.274 450.592,309.107 450,305.5C 451.299,305.966 452.799,305.966 454.5,305.5C 454.5,312.167 454.5,318.833 454.5,325.5C 453.455,324.205 452.455,322.872 451.5,321.5C 450.515,323.772 449.681,326.105 449,328.5C 448.033,327.322 447.533,325.989 447.5,324.5C 446.201,325.09 445.368,326.09 445,327.5C 443.513,326.747 443.346,325.914 444.5,325C 443.049,325.263 441.716,325.096 440.5,324.5C 441.376,323.749 442.376,323.249 443.5,323C 441.311,322.791 439.311,323.125 437.5,324C 438.825,321.517 438.158,319.017 435.5,316.5C 435.264,317.247 434.93,318.08 434.5,319C 436.929,319.451 437.096,320.285 435,321.5C 434.333,320.167 433.667,320.167 433,321.5C 433.263,320.049 433.096,318.716 432.5,317.5C 431.188,318.46 429.854,318.294 428.5,317C 429.167,316.667 429.833,316.333 430.5,316C 429.167,315.333 427.833,315.333 426.5,316C 427.654,316.914 427.487,317.747 426,318.5C 425.333,317.167 425.333,315.833 426,314.5C 427.667,314.5 429.333,314.5 431,314.5C 431.882,310.973 431.382,310.307 429.5,312.5C 426.236,310.759 424.403,311.759 424,315.5C 423.25,314.874 422.416,314.374 421.5,314C 422.711,313.107 422.711,312.274 421.5,311.5C 419.471,312.629 419.137,312.129 420.5,310C 419.428,308.716 418.095,308.383 416.5,309C 420.8,305.496 419.8,302.663 413.5,300.5C 412.858,303.797 411.691,304.131 410,301.5C 410.164,305.15 408.997,305.983 406.5,304C 407.167,303.333 407.833,302.667 408.5,302C 406.899,301.727 405.399,301.227 404,300.5C 403.692,301.308 403.192,301.975 402.5,302.5C 402.167,301.833 401.833,301.167 401.5,300.5C 399.419,301.035 397.253,301.369 395,301.5C 394.228,300.151 393.061,299.318 391.5,299C 392.833,298.333 392.833,297.667 391.5,297C 390.167,296.667 388.833,296.333 387.5,296C 388.167,295.667 388.833,295.333 389.5,295C 388.167,294.333 388.167,293.667 389.5,293C 388.175,293.148 387.008,292.982 386,292.5C 385.333,293.167 384.667,293.833 384,294.5C 382.581,293.54 381.081,292.707 379.5,292C 379.833,291.667 380.167,291.333 380.5,291C 378.459,289.758 377.293,287.925 377,285.5C 375.513,286.253 375.346,287.086 376.5,288C 373.597,289.601 372.264,288.434 372.5,284.5C 370.61,284.297 369.11,284.963 368,286.5C 367.075,285.953 366.242,285.287 365.5,284.5C 366.529,284.704 367.529,284.204 368.5,283C 366.276,280.851 364.776,281.351 364,284.5C 362.082,283.458 360.249,282.292 358.5,281C 360.23,279.148 361.396,279.314 362,281.5C 363.281,281.619 364.448,281.119 365.5,280C 364.747,278.513 363.914,278.346 363,279.5C 361.354,277.945 361.021,276.279 362,274.5C 360.691,276.891 359.691,276.891 359,274.5C 358.342,276.108 358.842,277.275 360.5,278C 359.437,279.188 358.103,279.688 356.5,279.5C 356.649,278.448 356.483,277.448 356,276.5C 355.781,277.938 355.281,279.271 354.5,280.5C 351.686,278.895 348.686,277.895 345.5,277.5C 345.301,275.04 344.635,272.707 343.5,270.5C 342.41,271.391 342.41,272.391 343.5,273.5C 343.167,274.5 342.5,275.167 341.5,275.5C 339.227,274.721 337.394,273.388 336,271.5C 334.044,271.661 332.044,271.994 330,272.5C 328.967,269.967 327.133,268.301 324.5,267.5C 323.833,266.167 323.167,264.833 322.5,263.5C 321.391,264.59 320.391,264.59 319.5,263.5C 320.811,262.742 321.311,261.742 321,260.5C 317.664,263.645 314.164,264.145 310.5,262C 310.982,260.992 311.148,259.825 311,258.5C 311.654,259.696 312.154,259.696 312.5,258.5C 312.137,257.817 311.804,257.15 311.5,256.5C 316.5,250.5 321.5,244.5 326.5,238.5C 327.167,238.167 327.833,237.833 328.5,237.5 Z"/></g>
53
+ <g><path style="opacity:1" fill="#bdafaf" d="M 165.5,294.5 C 158.548,301.105 153.215,308.772 149.5,317.5C 148.069,318.082 146.736,318.915 145.5,320C 146.336,321.243 146.003,322.41 144.5,323.5C 142.885,324.154 141.218,324.654 139.5,325C 139.833,325.333 140.167,325.667 140.5,326C 138.873,325.57 137.373,325.404 136,325.5C 135.5,326 135,326.5 134.5,327C 135.747,328.458 135.747,329.958 134.5,331.5C 132.807,332.228 131.307,333.228 130,334.5C 128.602,333.949 127.268,333.616 126,333.5C 125.535,334.931 124.701,336.097 123.5,337C 125.513,337.875 125.513,339.209 123.5,341C 123.833,341.333 124.167,341.667 124.5,342C 123.167,342 121.833,342 120.5,342C 120.957,342.414 121.291,342.914 121.5,343.5C 120.478,344.354 119.645,345.354 119,346.5C 118.667,345.833 118.333,345.167 118,344.5C 117.505,346.473 117.338,348.473 117.5,350.5C 115.473,350.338 113.473,350.505 111.5,351C 114.193,354.285 113.526,355.618 109.5,355C 110.174,356.751 110.507,358.417 110.5,360C 108.593,361.122 106.593,361.955 104.5,362.5C 104.547,359.432 105.047,356.432 106,353.5C 106.914,354.654 107.747,354.487 108.5,353C 107.051,351.883 105.384,351.216 103.5,351C 108.108,351.365 109.108,350.031 106.5,347C 107.234,344.907 106.567,344.407 104.5,345.5C 104.351,344.448 104.517,343.448 105,342.5C 106.868,343.672 108.702,343.505 110.5,342C 109.251,340.176 108.085,340.343 107,342.5C 106.333,340.833 106.333,339.167 107,337.5C 109,336.833 110.333,335.5 111,333.5C 111.333,334.167 111.667,334.833 112,335.5C 113.487,334.747 113.654,333.914 112.5,333C 114.628,331.377 115.961,329.211 116.5,326.5C 117.315,324.724 118.482,324.057 120,324.5C 120.309,323.234 120.809,322.067 121.5,321C 121.167,320.667 120.833,320.333 120.5,320C 121.416,319.626 122.25,319.126 123,318.5C 123.419,319.672 124.085,320.672 125,321.5C 125.51,318.995 127.01,317.495 129.5,317C 128.826,315.249 128.493,313.583 128.5,312C 130.025,310.991 131.692,310.491 133.5,310.5C 133.67,309.178 133.337,308.011 132.5,307C 133,306.5 133.5,306 134,305.5C 134.415,307.291 135.415,308.624 137,309.5C 137.317,307.699 137.984,307.366 139,308.5C 141.825,307.416 141.992,306.249 139.5,305C 140.126,304.25 140.626,303.416 141,302.5C 143.179,306.352 145.512,306.352 148,302.5C 151.153,303.402 153.153,302.069 154,298.5C 154.333,299.167 154.667,299.833 155,300.5C 155.317,298.699 155.984,298.366 157,299.5C 159.167,298 159,296.833 156.5,296C 157.649,294.256 158.983,294.089 160.5,295.5C 161.965,293.576 163.632,293.243 165.5,294.5 Z"/></g>
54
+ <g><path style="opacity:1" fill="#917e7e" d="M 281.5,289.5 C 281.633,292.896 282.633,293.229 284.5,290.5C 285.425,291.641 286.259,291.641 287,290.5C 287.915,291.328 288.581,292.328 289,293.5C 289.333,292.833 289.667,292.167 290,291.5C 290.689,292.357 291.522,293.023 292.5,293.5C 293.5,292.167 294.5,292.167 295.5,293.5C 296.192,292.975 296.692,292.308 297,291.5C 300.758,295.125 305.258,296.625 310.5,296C 311.5,292.667 312.5,292.667 313.5,296C 313.167,296.333 312.833,296.667 312.5,297C 315,297.375 317.333,298.208 319.5,299.5C 320.799,298.91 321.632,297.91 322,296.5C 322.333,297.167 322.667,297.833 323,298.5C 323.718,297.549 324.551,297.383 325.5,298C 324.643,298.689 323.977,299.522 323.5,300.5C 325.911,301.482 328.411,302.149 331,302.5C 332.711,302.561 334.044,301.894 335,300.5C 335.149,303.279 335.983,303.779 337.5,302C 336.549,301.282 336.383,300.449 337,299.5C 337.903,300.701 339.069,301.535 340.5,302C 340.5,303 340.5,304 340.5,305C 342.409,305.448 343.576,304.615 344,302.5C 345.294,303.854 345.46,305.188 344.5,306.5C 346.145,307.696 347.811,308.696 349.5,309.5C 348.167,309.5 346.833,309.5 345.5,309.5C 320.5,309.5 295.5,309.5 270.5,309.5C 268.143,309.663 265.81,309.497 263.5,309C 265.722,306.044 268.055,303.21 270.5,300.5C 273.939,296.64 277.605,292.973 281.5,289.5 Z"/></g>
55
+ <g><path style="opacity:1" fill="#918484" d="M 399.5,328.5 C 398.972,329.847 398.805,331.181 399,332.5C 399.333,332.167 399.667,331.833 400,331.5C 401.684,333.351 403.517,335.018 405.5,336.5C 404.975,337.192 404.308,337.692 403.5,338C 406.179,341.063 405.846,342.896 402.5,343.5C 403.912,344.806 405.579,345.64 407.5,346C 405.913,346.862 404.246,347.529 402.5,348C 404.891,348.691 404.891,349.691 402.5,351C 405.477,354.026 406.144,357.526 404.5,361.5C 399.758,360.259 395.425,358.259 391.5,355.5C 392.598,354.603 392.598,353.77 391.5,353C 392.167,352.667 392.833,352.333 393.5,352C 392.09,351.632 391.09,350.799 390.5,349.5C 390.846,348.304 391.346,348.304 392,349.5C 392.617,348.551 392.451,347.718 391.5,347C 394.365,344.597 394.199,343.764 391,344.5C 390.833,344 390.667,343.5 390.5,343C 391.289,342.454 392.289,341.787 393.5,341C 392.5,340.667 391.5,340.333 390.5,340C 391.258,338.636 390.758,337.469 389,336.5C 386.916,338.972 387.083,341.305 389.5,343.5C 389.465,345.974 388.798,346.14 387.5,344C 387.833,343.667 388.167,343.333 388.5,343C 386.524,340.646 384.191,337.979 381.5,335C 380.939,333.434 381.606,332.101 383.5,331C 382.216,330.316 381.049,330.483 380,331.5C 377.833,330 378,328.833 380.5,328C 379.833,327.667 379.167,327.333 378.5,327C 379.782,324.21 378.948,322.043 376,320.5C 375.383,321.449 375.549,322.282 376.5,323C 375.5,323.667 374.5,323.667 373.5,323C 372.167,322.333 372.167,321.667 373.5,321C 370.228,319.392 367.228,317.392 364.5,315C 365.451,314.282 365.617,313.449 365,312.5C 363.806,313.43 362.473,314.097 361,314.5C 359.433,313.144 357.6,312.477 355.5,312.5C 353.947,310.615 351.947,309.615 349.5,309.5C 347.811,308.696 346.145,307.696 344.5,306.5C 345.46,305.188 345.294,303.854 344,302.5C 343.576,304.615 342.409,305.448 340.5,305C 340.5,304 340.5,303 340.5,302C 339.069,301.535 337.903,300.701 337,299.5C 336.383,300.449 336.549,301.282 337.5,302C 335.983,303.779 335.149,303.279 335,300.5C 334.044,301.894 332.711,302.561 331,302.5C 328.411,302.149 325.911,301.482 323.5,300.5C 323.977,299.522 324.643,298.689 325.5,298C 324.551,297.383 323.718,297.549 323,298.5C 322.667,297.833 322.333,297.167 322,296.5C 321.632,297.91 320.799,298.91 319.5,299.5C 317.333,298.208 315,297.375 312.5,297C 312.833,296.667 313.167,296.333 313.5,296C 312.5,292.667 311.5,292.667 310.5,296C 305.258,296.625 300.758,295.125 297,291.5C 296.692,292.308 296.192,292.975 295.5,293.5C 294.5,292.167 293.5,292.167 292.5,293.5C 291.522,293.023 290.689,292.357 290,291.5C 289.667,292.167 289.333,292.833 289,293.5C 288.581,292.328 287.915,291.328 287,290.5C 286.259,291.641 285.425,291.641 284.5,290.5C 282.633,293.229 281.633,292.896 281.5,289.5C 284.075,286.681 286.408,283.681 288.5,280.5C 289.5,279.833 290.5,279.167 291.5,278.5C 290.962,280.117 290.629,281.784 290.5,283.5C 295.048,283.801 298.215,281.801 300,277.5C 301.628,278.819 301.461,280.152 299.5,281.5C 301.628,282.538 302.628,283.871 302.5,285.5C 303.833,284.167 305.167,282.833 306.5,281.5C 308.793,283.538 311.127,285.705 313.5,288C 315.717,288.437 318.051,288.437 320.5,288C 321.849,288.772 322.682,289.939 323,291.5C 323.333,291.167 323.667,290.833 324,290.5C 326.112,291.223 328.112,292.223 330,293.5C 331.762,293.056 331.595,292.556 329.5,292C 330.126,291.25 330.626,290.416 331,289.5C 331.333,289.833 331.667,290.167 332,290.5C 332.308,289.692 332.808,289.025 333.5,288.5C 334.452,289.533 334.452,290.7 333.5,292C 335.552,296.119 337.719,296.285 340,292.5C 342.521,295.315 344.187,294.982 345,291.5C 347.734,292.362 347.901,293.195 345.5,294C 346,294.5 346.5,295 347,295.5C 349.154,294.774 351.654,294.607 354.5,295C 350.488,295.57 349.988,296.737 353,298.5C 354.544,295.736 355.711,295.903 356.5,299C 357.449,299.617 358.282,299.451 359,298.5C 359.684,299.784 359.517,300.951 358.5,302C 360.985,303.487 363.152,305.321 365,307.5C 365.333,306.833 365.667,306.167 366,305.5C 367.008,305.982 368.175,306.148 369.5,306C 369.957,306.414 370.291,306.914 370.5,307.5C 369.559,307.489 368.892,307.989 368.5,309C 369.535,310.274 370.702,311.44 372,312.5C 373.716,311.448 374.716,312.114 375,314.5C 376.268,314.384 377.602,314.051 379,313.5C 379.089,311.887 378.255,310.72 376.5,310C 377.025,309.308 377.692,308.808 378.5,308.5C 379.957,310.275 381.124,312.275 382,314.5C 382.915,313.672 383.581,312.672 384,311.5C 386.435,313.437 386.602,315.27 384.5,317C 385.167,317.333 385.833,317.667 386.5,318C 385.167,318.667 385.167,319.333 386.5,320C 388.047,320.333 389.38,319.833 390.5,318.5C 391.842,319.902 392.676,319.569 393,317.5C 394.555,319.443 395.722,321.61 396.5,324C 396.355,324.772 396.022,325.439 395.5,326C 396.984,326.662 398.317,327.496 399.5,328.5 Z"/></g>
56
+ <g><path style="opacity:1" fill="#928b8b" d="M 300.5,268.5 C 302.931,269.741 302.931,270.908 300.5,272C 302.744,274.349 303.911,273.849 304,270.5C 306.056,271.583 307.389,273.25 308,275.5C 309.395,274.185 310.395,274.519 311,276.5C 311.862,274.913 312.529,273.246 313,271.5C 313.442,273.679 314.442,274.345 316,273.5C 316.11,276.646 317.443,277.646 320,276.5C 320.605,278.481 321.605,278.815 323,277.5C 323.333,278.167 323.667,278.833 324,279.5C 325.559,277.783 326.392,275.783 326.5,273.5C 329.272,273.595 331.272,274.929 332.5,277.5C 332.167,277.833 331.833,278.167 331.5,278.5C 329.449,275.785 327.783,275.952 326.5,279C 327.025,279.692 327.692,280.192 328.5,280.5C 330.423,280.37 332.256,280.036 334,279.5C 334,280.833 334,282.167 334,283.5C 335.908,281.093 337.908,281.093 340,283.5C 341.3,282.548 342.467,282.548 343.5,283.5C 342.975,284.192 342.308,284.692 341.5,285C 344.783,290.146 347.95,290.312 351,285.5C 354.057,286.529 354.057,287.862 351,289.5C 347.975,288.209 347.641,288.876 350,291.5C 350.667,290.167 351.333,290.167 352,291.5C 353.333,290.833 354.333,289.833 355,288.5C 356.016,289.634 356.683,289.301 357,287.5C 357.085,289.085 357.251,290.418 357.5,291.5C 358.541,289.009 359.374,289.009 360,291.5C 361.333,288.833 362.667,288.833 364,291.5C 364.333,291.167 364.667,290.833 365,290.5C 365.333,291.5 365.667,292.5 366,293.5C 366.654,292.304 367.154,292.304 367.5,293.5C 366.271,294.281 364.938,294.781 363.5,295C 364.362,297.734 365.195,297.901 366,295.5C 367.652,296.068 369.318,297.401 371,299.5C 372.309,297.109 373.309,297.109 374,299.5C 374.914,298.346 375.747,298.513 376.5,300C 376.167,300.333 375.833,300.667 375.5,301C 377.5,301.333 379.5,301.667 381.5,302C 382.858,304.026 383.691,306.193 384,308.5C 384.75,307.874 385.584,307.374 386.5,307C 386.167,306.667 385.833,306.333 385.5,306C 387.447,305.009 389.447,304.675 391.5,305C 389.717,306.067 389.217,307.567 390,309.5C 394.038,307.97 394.538,308.804 391.5,312C 394.333,313.781 397.333,315.281 400.5,316.5C 401.598,320.361 402.431,320.361 403,316.5C 403.667,315.167 404.333,315.167 405,316.5C 404.513,318.044 404.013,319.71 403.5,321.5C 404.93,321.579 406.264,321.246 407.5,320.5C 407.296,321.529 407.796,322.529 409,323.5C 409.089,320.151 410.256,319.651 412.5,322C 411.72,323.073 411.887,324.24 413,325.5C 413.333,324.833 413.667,324.167 414,323.5C 415.585,324.376 416.585,325.709 417,327.5C 417.333,327.167 417.667,326.833 418,326.5C 419.848,328.018 421.348,329.851 422.5,332C 421.66,333.666 422.16,333.833 424,332.5C 424.711,334.367 424.211,335.867 422.5,337C 423.126,337.75 423.626,338.584 424,339.5C 425.279,337.286 427.445,335.286 430.5,333.5C 431.281,334.729 431.781,336.062 432,337.5C 434.861,337.092 435.028,337.925 432.5,340C 434.615,340.557 436.615,341.391 438.5,342.5C 438.205,341.174 438.705,339.841 440,338.5C 440.066,341.276 441.232,343.442 443.5,345C 443.676,346.66 443.009,348.326 441.5,350C 444.357,349.064 447.357,348.731 450.5,349C 452.69,350.088 454.023,351.254 454.5,352.5C 454.5,357.5 454.5,362.5 454.5,367.5C 453.85,367.804 453.183,368.137 452.5,368.5C 451.304,368.154 451.304,367.654 452.5,367C 451.5,366.5 450.5,366 449.5,365.5C 447.685,365.646 445.685,365.812 443.5,366C 445.062,364.113 446.729,363.28 448.5,363.5C 447.167,362.833 445.833,362.167 444.5,361.5C 445.506,360.604 445.506,359.938 444.5,359.5C 443.5,360.833 442.5,362.167 441.5,363.5C 440.667,362.5 439.833,361.5 439,360.5C 438.086,361.654 437.253,361.487 436.5,360C 437.5,359.667 438.5,359.333 439.5,359C 437.213,358.526 434.88,357.359 432.5,355.5C 434.341,354.77 436.175,354.103 438,353.5C 438.333,353.833 438.667,354.167 439,354.5C 437.794,352.86 436.794,350.86 436,348.5C 435.751,349.624 435.251,350.624 434.5,351.5C 432.997,350.948 431.331,350.948 429.5,351.5C 429.649,352.552 429.483,353.552 429,354.5C 427.989,353.663 426.822,353.33 425.5,353.5C 426.735,351.227 426.402,349.394 424.5,348C 426.417,348.027 428.084,348.861 429.5,350.5C 430.604,349.369 430.271,348.535 428.5,348C 429.28,346.927 429.113,345.76 428,344.5C 427.667,345.167 427.333,345.833 427,346.5C 426.333,345.167 425.667,345.167 425,346.5C 424.667,345.833 424.333,345.167 424,344.5C 423.167,345.5 422.333,346.5 421.5,347.5C 421.15,345.732 420.317,343.732 419,341.5C 418.28,343.112 418.446,344.612 419.5,346C 418.258,346.311 417.258,345.811 416.5,344.5C 415.914,344.709 415.414,345.043 415,345.5C 414.143,341.309 411.643,338.809 407.5,338C 410.961,335.721 410.961,334.721 407.5,335C 408.696,335.654 408.696,336.154 407.5,336.5C 407.167,336 406.833,335.5 406.5,335C 407.424,333.85 407.424,332.85 406.5,332C 408.689,331.323 409.022,330.156 407.5,328.5C 409.891,327.191 409.891,326.191 407.5,325.5C 404.584,326.134 401.918,327.134 399.5,328.5C 398.317,327.496 396.984,326.662 395.5,326C 396.022,325.439 396.355,324.772 396.5,324C 395.722,321.61 394.555,319.443 393,317.5C 392.676,319.569 391.842,319.902 390.5,318.5C 389.38,319.833 388.047,320.333 386.5,320C 385.167,319.333 385.167,318.667 386.5,318C 385.833,317.667 385.167,317.333 384.5,317C 386.602,315.27 386.435,313.437 384,311.5C 383.581,312.672 382.915,313.672 382,314.5C 381.124,312.275 379.957,310.275 378.5,308.5C 377.692,308.808 377.025,309.308 376.5,310C 378.255,310.72 379.089,311.887 379,313.5C 377.602,314.051 376.268,314.384 375,314.5C 374.716,312.114 373.716,311.448 372,312.5C 370.702,311.44 369.535,310.274 368.5,309C 368.892,307.989 369.559,307.489 370.5,307.5C 370.291,306.914 369.957,306.414 369.5,306C 368.175,306.148 367.008,305.982 366,305.5C 365.667,306.167 365.333,306.833 365,307.5C 363.152,305.321 360.985,303.487 358.5,302C 359.517,300.951 359.684,299.784 359,298.5C 358.282,299.451 357.449,299.617 356.5,299C 355.711,295.903 354.544,295.736 353,298.5C 349.988,296.737 350.488,295.57 354.5,295C 351.654,294.607 349.154,294.774 347,295.5C 346.5,295 346,294.5 345.5,294C 347.901,293.195 347.734,292.362 345,291.5C 344.187,294.982 342.521,295.315 340,292.5C 337.719,296.285 335.552,296.119 333.5,292C 334.452,290.7 334.452,289.533 333.5,288.5C 332.808,289.025 332.308,289.692 332,290.5C 331.667,290.167 331.333,289.833 331,289.5C 330.626,290.416 330.126,291.25 329.5,292C 331.595,292.556 331.762,293.056 330,293.5C 328.112,292.223 326.112,291.223 324,290.5C 323.667,290.833 323.333,291.167 323,291.5C 322.682,289.939 321.849,288.772 320.5,288C 318.051,288.437 315.717,288.437 313.5,288C 311.127,285.705 308.793,283.538 306.5,281.5C 305.167,282.833 303.833,284.167 302.5,285.5C 302.628,283.871 301.628,282.538 299.5,281.5C 301.461,280.152 301.628,278.819 300,277.5C 298.215,281.801 295.048,283.801 290.5,283.5C 290.629,281.784 290.962,280.117 291.5,278.5C 293.788,274.544 296.788,271.211 300.5,268.5 Z"/></g>
57
+ <g><path style="opacity:1" fill="#ad1a1b" d="M 270.5,309.5 C 295.5,309.5 320.5,309.5 345.5,309.5C 352.041,318.587 349.708,323.754 338.5,325C 339.5,325.333 340.5,325.667 341.5,326C 316.605,324.717 292.271,327.217 268.5,333.5C 267.167,333.5 265.833,333.5 264.5,333.5C 264.937,331.926 265.937,330.759 267.5,330C 266.5,329.667 265.5,329.333 264.5,329C 266.316,327.685 267.983,326.185 269.5,324.5C 268.975,323.808 268.308,323.308 267.5,323C 272.345,319.203 273.345,314.703 270.5,309.5 Z"/></g>
58
+ <g><path style="opacity:1" fill="#770f10" d="M 253.5,333.5 C 249.5,333.5 245.5,333.5 241.5,333.5C 246.265,327.646 251.265,321.979 256.5,316.5C 257.058,314.436 258.225,312.77 260,311.5C 261.838,309.955 263.005,310.289 263.5,312.5C 262.618,316.594 261.451,320.594 260,324.5C 258.667,327.167 256.667,329.167 254,330.5C 253.517,331.448 253.351,332.448 253.5,333.5 Z"/></g>
59
+ <g><path style="opacity:1" fill="#bb292a" d="M 345.5,309.5 C 346.833,309.5 348.167,309.5 349.5,309.5C 351.947,309.615 353.947,310.615 355.5,312.5C 361.167,319.167 366.833,325.833 372.5,332.5C 338.004,333.498 303.337,333.832 268.5,333.5C 292.271,327.217 316.605,324.717 341.5,326C 340.5,325.667 339.5,325.333 338.5,325C 349.708,323.754 352.041,318.587 345.5,309.5 Z"/></g>
60
+ <g><path style="opacity:1" fill="#9c9c9c" d="M 466.5,310.5 C 466.5,326.5 466.5,342.5 466.5,358.5C 464.407,360.53 462.574,362.864 461,365.5C 458.833,366.488 457,367.821 455.5,369.5C 455.5,346.833 455.5,324.167 455.5,301.5C 457.312,300.652 458.812,300.652 460,301.5C 461.437,303.221 460.937,304.721 458.5,306C 459.449,306.617 460.282,306.451 461,305.5C 463.096,306.715 462.929,307.549 460.5,308C 462.492,308.574 463.992,309.741 465,311.5C 465.383,310.944 465.883,310.611 466.5,310.5 Z"/></g>
61
+ <g><path style="opacity:1" fill="#838383" d="M 56.5,288.5 C 56.5,294.167 56.5,299.833 56.5,305.5C 55.7456,308.342 54.4123,311.009 52.5,313.5C 52.8333,314.167 53.1667,314.833 53.5,315.5C 52.6949,318.967 51.6949,322.467 50.5,326C 50.6107,327.722 51.1107,327.888 52,326.5C 52.6667,328.5 52.6667,330.5 52,332.5C 51.6667,331.5 51.3333,330.5 51,329.5C 50.8333,331.333 50.6667,333.167 50.5,335C 50.6004,337.302 51.267,339.302 52.5,341C 51.6919,341.308 51.0253,341.808 50.5,342.5C 50.6938,344.07 50.6938,345.57 50.5,347C 52.235,350.09 54.235,352.923 56.5,355.5C 56.5,358.5 56.5,361.5 56.5,364.5C 55.2618,365.412 53.9285,365.579 52.5,365C 53.0509,363.602 53.3842,362.268 53.5,361C 51.1144,360.716 50.4477,359.716 51.5,358C 50.2559,357.544 49.4226,358.044 49,359.5C 48.6667,358.5 48.3333,357.5 48,356.5C 47.3292,357.252 46.4959,357.586 45.5,357.5C 45.5,339.5 45.5,321.5 45.5,303.5C 47.2229,303.608 48.8896,303.108 50.5,302C 49.6548,300.442 50.3215,299.442 52.5,299C 49.8333,298.333 49.8333,297.667 52.5,297C 48.2225,293.999 48.5558,292.999 53.5,294C 53.8333,293.667 54.1667,293.333 54.5,293C 53.6919,292.692 53.0253,292.192 52.5,291.5C 53.6405,290.575 53.6405,289.741 52.5,289C 53.9594,289.355 55.2928,289.189 56.5,288.5 Z"/></g>
62
+ <g><path style="opacity:1" fill="#921818" d="M 256.5,316.5 C 251.265,321.979 246.265,327.646 241.5,333.5C 285.33,335.388 329.33,335.721 373.5,334.5C 373.5,337.833 373.5,341.167 373.5,344.5C 372.523,347.287 372.19,350.287 372.5,353.5C 370.833,353.5 369.167,353.5 367.5,353.5C 367.5,351.833 367.5,350.167 367.5,348.5C 364.05,349.244 362.384,347.91 362.5,344.5C 325.176,343.739 287.842,343.239 250.5,343C 246.281,342.827 242.281,341.827 238.5,340C 212.835,339.5 187.169,339.333 161.5,339.5C 161.5,341.167 161.5,342.833 161.5,344.5C 158.833,344.5 156.167,344.5 153.5,344.5C 153.5,345.833 153.5,347.167 153.5,348.5C 152.167,348.5 150.833,348.5 149.5,348.5C 149.5,350.167 149.5,351.833 149.5,353.5C 147.833,353.5 146.167,353.5 144.5,353.5C 144.81,350.287 144.477,347.287 143.5,344.5C 143.5,340.833 143.5,337.167 143.5,333.5C 147.773,330.566 151.773,327.233 155.5,323.5C 158.599,323.908 160.933,322.741 162.5,320C 166.167,319.667 169.833,319.333 173.5,319C 174.5,318 175.5,317 176.5,316C 194.164,315.5 211.83,315.333 229.5,315.5C 229.5,316.833 229.5,318.167 229.5,319.5C 232.833,319.5 236.167,319.5 239.5,319.5C 239.5,320.833 239.5,322.167 239.5,323.5C 242.518,323.665 245.518,323.498 248.5,323C 250.639,320.108 253.306,317.942 256.5,316.5 Z"/></g>
63
+ <g><path style="opacity:1" fill="#949191" d="M 311.5,256.5 C 311.804,257.15 312.137,257.817 312.5,258.5C 312.154,259.696 311.654,259.696 311,258.5C 311.148,259.825 310.982,260.992 310.5,262C 314.164,264.145 317.664,263.645 321,260.5C 321.311,261.742 320.811,262.742 319.5,263.5C 320.391,264.59 321.391,264.59 322.5,263.5C 323.167,264.833 323.833,266.167 324.5,267.5C 327.133,268.301 328.967,269.967 330,272.5C 332.044,271.994 334.044,271.661 336,271.5C 337.394,273.388 339.227,274.721 341.5,275.5C 342.5,275.167 343.167,274.5 343.5,273.5C 342.41,272.391 342.41,271.391 343.5,270.5C 344.635,272.707 345.301,275.04 345.5,277.5C 348.686,277.895 351.686,278.895 354.5,280.5C 355.281,279.271 355.781,277.938 356,276.5C 356.483,277.448 356.649,278.448 356.5,279.5C 358.103,279.688 359.437,279.188 360.5,278C 358.842,277.275 358.342,276.108 359,274.5C 359.691,276.891 360.691,276.891 362,274.5C 361.021,276.279 361.354,277.945 363,279.5C 363.914,278.346 364.747,278.513 365.5,280C 364.448,281.119 363.281,281.619 362,281.5C 361.396,279.314 360.23,279.148 358.5,281C 360.249,282.292 362.082,283.458 364,284.5C 364.776,281.351 366.276,280.851 368.5,283C 367.529,284.204 366.529,284.704 365.5,284.5C 366.242,285.287 367.075,285.953 368,286.5C 369.11,284.963 370.61,284.297 372.5,284.5C 372.264,288.434 373.597,289.601 376.5,288C 375.346,287.086 375.513,286.253 377,285.5C 377.293,287.925 378.459,289.758 380.5,291C 380.167,291.333 379.833,291.667 379.5,292C 381.081,292.707 382.581,293.54 384,294.5C 384.667,293.833 385.333,293.167 386,292.5C 387.008,292.982 388.175,293.148 389.5,293C 388.167,293.667 388.167,294.333 389.5,295C 388.833,295.333 388.167,295.667 387.5,296C 388.833,296.333 390.167,296.667 391.5,297C 392.833,297.667 392.833,298.333 391.5,299C 393.061,299.318 394.228,300.151 395,301.5C 397.253,301.369 399.419,301.035 401.5,300.5C 401.833,301.167 402.167,301.833 402.5,302.5C 403.192,301.975 403.692,301.308 404,300.5C 405.399,301.227 406.899,301.727 408.5,302C 407.833,302.667 407.167,303.333 406.5,304C 408.997,305.983 410.164,305.15 410,301.5C 411.691,304.131 412.858,303.797 413.5,300.5C 419.8,302.663 420.8,305.496 416.5,309C 418.095,308.383 419.428,308.716 420.5,310C 419.137,312.129 419.471,312.629 421.5,311.5C 422.711,312.274 422.711,313.107 421.5,314C 422.416,314.374 423.25,314.874 424,315.5C 424.403,311.759 426.236,310.759 429.5,312.5C 431.382,310.307 431.882,310.973 431,314.5C 429.333,314.5 427.667,314.5 426,314.5C 425.333,315.833 425.333,317.167 426,318.5C 427.487,317.747 427.654,316.914 426.5,316C 427.833,315.333 429.167,315.333 430.5,316C 429.833,316.333 429.167,316.667 428.5,317C 429.854,318.294 431.188,318.46 432.5,317.5C 433.096,318.716 433.263,320.049 433,321.5C 433.667,320.167 434.333,320.167 435,321.5C 437.096,320.285 436.929,319.451 434.5,319C 434.93,318.08 435.264,317.247 435.5,316.5C 438.158,319.017 438.825,321.517 437.5,324C 439.311,323.125 441.311,322.791 443.5,323C 442.376,323.249 441.376,323.749 440.5,324.5C 441.716,325.096 443.049,325.263 444.5,325C 443.346,325.914 443.513,326.747 445,327.5C 445.368,326.09 446.201,325.09 447.5,324.5C 447.533,325.989 448.033,327.322 449,328.5C 449.681,326.105 450.515,323.772 451.5,321.5C 452.455,322.872 453.455,324.205 454.5,325.5C 454.5,334.5 454.5,343.5 454.5,352.5C 454.023,351.254 452.69,350.088 450.5,349C 447.357,348.731 444.357,349.064 441.5,350C 443.009,348.326 443.676,346.66 443.5,345C 441.232,343.442 440.066,341.276 440,338.5C 438.705,339.841 438.205,341.174 438.5,342.5C 436.615,341.391 434.615,340.557 432.5,340C 435.028,337.925 434.861,337.092 432,337.5C 431.781,336.062 431.281,334.729 430.5,333.5C 427.445,335.286 425.279,337.286 424,339.5C 423.626,338.584 423.126,337.75 422.5,337C 424.211,335.867 424.711,334.367 424,332.5C 422.16,333.833 421.66,333.666 422.5,332C 421.348,329.851 419.848,328.018 418,326.5C 417.667,326.833 417.333,327.167 417,327.5C 416.585,325.709 415.585,324.376 414,323.5C 413.667,324.167 413.333,324.833 413,325.5C 411.887,324.24 411.72,323.073 412.5,322C 410.256,319.651 409.089,320.151 409,323.5C 407.796,322.529 407.296,321.529 407.5,320.5C 406.264,321.246 404.93,321.579 403.5,321.5C 404.013,319.71 404.513,318.044 405,316.5C 404.333,315.167 403.667,315.167 403,316.5C 402.431,320.361 401.598,320.361 400.5,316.5C 397.333,315.281 394.333,313.781 391.5,312C 394.538,308.804 394.038,307.97 390,309.5C 389.217,307.567 389.717,306.067 391.5,305C 389.447,304.675 387.447,305.009 385.5,306C 385.833,306.333 386.167,306.667 386.5,307C 385.584,307.374 384.75,307.874 384,308.5C 383.691,306.193 382.858,304.026 381.5,302C 379.5,301.667 377.5,301.333 375.5,301C 375.833,300.667 376.167,300.333 376.5,300C 375.747,298.513 374.914,298.346 374,299.5C 373.309,297.109 372.309,297.109 371,299.5C 369.318,297.401 367.652,296.068 366,295.5C 365.195,297.901 364.362,297.734 363.5,295C 364.938,294.781 366.271,294.281 367.5,293.5C 367.154,292.304 366.654,292.304 366,293.5C 365.667,292.5 365.333,291.5 365,290.5C 364.667,290.833 364.333,291.167 364,291.5C 362.667,288.833 361.333,288.833 360,291.5C 359.374,289.009 358.541,289.009 357.5,291.5C 357.251,290.418 357.085,289.085 357,287.5C 356.683,289.301 356.016,289.634 355,288.5C 354.333,289.833 353.333,290.833 352,291.5C 351.333,290.167 350.667,290.167 350,291.5C 347.641,288.876 347.975,288.209 351,289.5C 354.057,287.862 354.057,286.529 351,285.5C 347.95,290.312 344.783,290.146 341.5,285C 342.308,284.692 342.975,284.192 343.5,283.5C 342.467,282.548 341.3,282.548 340,283.5C 337.908,281.093 335.908,281.093 334,283.5C 334,282.167 334,280.833 334,279.5C 332.256,280.036 330.423,280.37 328.5,280.5C 327.692,280.192 327.025,279.692 326.5,279C 327.783,275.952 329.449,275.785 331.5,278.5C 331.833,278.167 332.167,277.833 332.5,277.5C 331.272,274.929 329.272,273.595 326.5,273.5C 326.392,275.783 325.559,277.783 324,279.5C 323.667,278.833 323.333,278.167 323,277.5C 321.605,278.815 320.605,278.481 320,276.5C 317.443,277.646 316.11,276.646 316,273.5C 314.442,274.345 313.442,273.679 313,271.5C 312.529,273.246 311.862,274.913 311,276.5C 310.395,274.519 309.395,274.185 308,275.5C 307.389,273.25 306.056,271.583 304,270.5C 303.911,273.849 302.744,274.349 300.5,272C 302.931,270.908 302.931,269.741 300.5,268.5C 303.075,265.681 305.408,262.681 307.5,259.5C 308.833,258.5 310.167,257.5 311.5,256.5 Z"/></g>
64
+ <g><path style="opacity:1" fill="#939393" d="M 56.5,305.5 C 56.5,322.167 56.5,338.833 56.5,355.5C 54.235,352.923 52.235,350.09 50.5,347C 50.6938,345.57 50.6938,344.07 50.5,342.5C 51.0253,341.808 51.6919,341.308 52.5,341C 51.267,339.302 50.6004,337.302 50.5,335C 50.6667,333.167 50.8333,331.333 51,329.5C 51.3333,330.5 51.6667,331.5 52,332.5C 52.6667,330.5 52.6667,328.5 52,326.5C 51.1107,327.888 50.6107,327.722 50.5,326C 51.6949,322.467 52.6949,318.967 53.5,315.5C 53.1667,314.833 52.8333,314.167 52.5,313.5C 54.4123,311.009 55.7456,308.342 56.5,305.5 Z"/></g>
65
+ <g><path style="opacity:1" fill="#bf4b4a" d="M 372.5,332.5 C 373.338,332.842 373.672,333.508 373.5,334.5C 329.33,335.721 285.33,335.388 241.5,333.5C 245.5,333.5 249.5,333.5 253.5,333.5C 257.167,333.5 260.833,333.5 264.5,333.5C 265.833,333.5 267.167,333.5 268.5,333.5C 303.337,333.832 338.004,333.498 372.5,332.5 Z"/></g>
66
+ <g><path style="opacity:1" fill="#b59999" d="M 144.5,330.5 C 144.5,330.833 144.5,331.167 144.5,331.5C 144.167,332.167 143.833,332.833 143.5,333.5C 143.5,337.167 143.5,340.833 143.5,344.5C 143.5,344.833 143.5,345.167 143.5,345.5C 137.066,348.037 130.732,350.87 124.5,354C 125.766,354.309 126.933,354.809 128,355.5C 128.163,357.676 128.996,359.509 130.5,361C 129.36,362.973 128.027,364.807 126.5,366.5C 127.98,367.113 129.313,367.446 130.5,367.5C 129.833,368.167 129.167,368.833 128.5,369.5C 128.955,372.485 128.955,375.318 128.5,378C 129.574,378.739 130.241,379.739 130.5,381C 129.767,382.766 129.433,384.599 129.5,386.5C 127.956,386.297 126.622,385.63 125.5,384.5C 124.707,385.355 125.04,386.189 126.5,387C 126,387.5 125.5,388 125,388.5C 123.786,386.951 122.286,385.785 120.5,385C 121.051,383.602 121.384,382.268 121.5,381C 120.552,380.517 119.552,380.351 118.5,380.5C 117.903,376.168 117.737,371.835 118,367.5C 118.333,368.5 118.667,369.5 119,370.5C 119.92,370.07 120.753,369.736 121.5,369.5C 119.667,367.167 117.833,364.833 116,362.5C 114.984,363.634 114.317,363.301 114,361.5C 112.207,362.381 111.54,361.714 112,359.5C 115.29,358.355 118.29,356.688 121,354.5C 122.801,349.565 125.134,344.898 128,340.5C 128.333,340.833 128.667,341.167 129,341.5C 133.96,338.208 138.293,334.208 142,329.5C 142.671,330.252 143.504,330.586 144.5,330.5 Z"/></g>
67
+ <g><path style="opacity:1" fill="#8a1616" d="M 373.5,344.5 C 373.5,345.833 373.5,347.167 373.5,348.5C 373.524,366.806 373.524,384.806 373.5,402.5C 373.167,402.5 372.833,402.5 372.5,402.5C 297.167,402.5 221.833,402.5 146.5,402.5C 145.833,402.5 145.167,402.5 144.5,402.5C 144.167,402.5 143.833,402.5 143.5,402.5C 143.5,384.833 143.5,367.167 143.5,349.5C 143.5,348.167 143.5,346.833 143.5,345.5C 143.5,345.167 143.5,344.833 143.5,344.5C 144.477,347.287 144.81,350.287 144.5,353.5C 146.167,353.5 147.833,353.5 149.5,353.5C 149.5,351.833 149.5,350.167 149.5,348.5C 150.833,348.5 152.167,348.5 153.5,348.5C 153.5,347.167 153.5,345.833 153.5,344.5C 156.167,344.5 158.833,344.5 161.5,344.5C 161.5,342.833 161.5,341.167 161.5,339.5C 187.169,339.333 212.835,339.5 238.5,340C 242.281,341.827 246.281,342.827 250.5,343C 287.842,343.239 325.176,343.739 362.5,344.5C 362.384,347.91 364.05,349.244 367.5,348.5C 367.5,350.167 367.5,351.833 367.5,353.5C 369.167,353.5 370.833,353.5 372.5,353.5C 372.19,350.287 372.523,347.287 373.5,344.5 Z"/></g>
68
+ <g><path style="opacity:1" fill="#907b7b" d="M 355.5,312.5 C 357.6,312.477 359.433,313.144 361,314.5C 362.473,314.097 363.806,313.43 365,312.5C 365.617,313.449 365.451,314.282 364.5,315C 367.228,317.392 370.228,319.392 373.5,321C 372.167,321.667 372.167,322.333 373.5,323C 374.5,323.667 375.5,323.667 376.5,323C 375.549,322.282 375.383,321.449 376,320.5C 378.948,322.043 379.782,324.21 378.5,327C 379.167,327.333 379.833,327.667 380.5,328C 378,328.833 377.833,330 380,331.5C 381.049,330.483 382.216,330.316 383.5,331C 381.606,332.101 380.939,333.434 381.5,335C 384.191,337.979 386.524,340.646 388.5,343C 388.167,343.333 387.833,343.667 387.5,344C 388.798,346.14 389.465,345.974 389.5,343.5C 387.083,341.305 386.916,338.972 389,336.5C 390.758,337.469 391.258,338.636 390.5,340C 391.5,340.333 392.5,340.667 393.5,341C 392.289,341.787 391.289,342.454 390.5,343C 390.667,343.5 390.833,344 391,344.5C 394.199,343.764 394.365,344.597 391.5,347C 392.451,347.718 392.617,348.551 392,349.5C 391.346,348.304 390.846,348.304 390.5,349.5C 391.09,350.799 392.09,351.632 393.5,352C 392.833,352.333 392.167,352.667 391.5,353C 392.598,353.77 392.598,354.603 391.5,355.5C 390.833,355.5 390.167,355.5 389.5,355.5C 384.459,352.649 379.125,350.316 373.5,348.5C 373.5,347.167 373.5,345.833 373.5,344.5C 373.5,341.167 373.5,337.833 373.5,334.5C 373.672,333.508 373.338,332.842 372.5,332.5C 366.833,325.833 361.167,319.167 355.5,312.5 Z"/></g>
69
+ <g><path style="opacity:0.112" fill="#000000" d="M 45.5,359.5 C 45.3335,370.838 45.5001,382.172 46,393.5C 63.7805,401.641 81.6138,409.641 99.5,417.5C 108.378,421.772 117.378,425.772 126.5,429.5C 146.205,439.017 166.205,448.017 186.5,456.5C 209.397,467.528 232.563,478.195 256,488.5C 256.765,488.43 257.265,488.097 257.5,487.5C 258.609,487.443 259.609,487.11 260.5,486.5C 285.47,475.679 310.137,464.346 334.5,452.5C 354.074,444.38 373.408,435.713 392.5,426.5C 401.622,422.772 410.622,418.772 419.5,414.5C 428.906,410.151 438.239,405.818 447.5,401.5C 453.559,399.033 459.559,396.366 465.5,393.5C 466.499,382.186 466.832,370.853 466.5,359.5C 478.651,364.912 485.317,374.412 486.5,388C 485.345,396.64 482.012,404.307 476.5,411C 468.991,415.255 461.324,419.255 453.5,423C 392.618,450.608 331.618,477.941 270.5,505C 256.685,508.908 243.352,507.574 230.5,501C 173.167,475 115.833,449 58.5,423C 50.6759,419.255 43.0092,415.255 35.5,411C 23.3368,397.179 22.5035,382.679 33,367.5C 36.6014,363.949 40.768,361.283 45.5,359.5 Z"/></g>
70
+ <g><path style="opacity:1" fill="#898585" d="M 454.5,367.5 C 454.5,373.167 454.5,378.833 454.5,384.5C 446.019,380.449 437.352,376.782 428.5,373.5C 420.844,369.005 412.844,365.005 404.5,361.5C 406.144,357.526 405.477,354.026 402.5,351C 404.891,349.691 404.891,348.691 402.5,348C 404.246,347.529 405.913,346.862 407.5,346C 405.579,345.64 403.912,344.806 402.5,343.5C 405.846,342.896 406.179,341.063 403.5,338C 404.308,337.692 404.975,337.192 405.5,336.5C 403.517,335.018 401.684,333.351 400,331.5C 399.667,331.833 399.333,332.167 399,332.5C 398.805,331.181 398.972,329.847 399.5,328.5C 401.918,327.134 404.584,326.134 407.5,325.5C 409.891,326.191 409.891,327.191 407.5,328.5C 409.022,330.156 408.689,331.323 406.5,332C 407.424,332.85 407.424,333.85 406.5,335C 406.833,335.5 407.167,336 407.5,336.5C 408.696,336.154 408.696,335.654 407.5,335C 410.961,334.721 410.961,335.721 407.5,338C 411.643,338.809 414.143,341.309 415,345.5C 415.414,345.043 415.914,344.709 416.5,344.5C 417.258,345.811 418.258,346.311 419.5,346C 418.446,344.612 418.28,343.112 419,341.5C 420.317,343.732 421.15,345.732 421.5,347.5C 422.333,346.5 423.167,345.5 424,344.5C 424.333,345.167 424.667,345.833 425,346.5C 425.667,345.167 426.333,345.167 427,346.5C 427.333,345.833 427.667,345.167 428,344.5C 429.113,345.76 429.28,346.927 428.5,348C 430.271,348.535 430.604,349.369 429.5,350.5C 428.084,348.861 426.417,348.027 424.5,348C 426.402,349.394 426.735,351.227 425.5,353.5C 426.822,353.33 427.989,353.663 429,354.5C 429.483,353.552 429.649,352.552 429.5,351.5C 431.331,350.948 432.997,350.948 434.5,351.5C 435.251,350.624 435.751,349.624 436,348.5C 436.794,350.86 437.794,352.86 439,354.5C 438.667,354.167 438.333,353.833 438,353.5C 436.175,354.103 434.341,354.77 432.5,355.5C 434.88,357.359 437.213,358.526 439.5,359C 438.5,359.333 437.5,359.667 436.5,360C 437.253,361.487 438.086,361.654 439,360.5C 439.833,361.5 440.667,362.5 441.5,363.5C 442.5,362.167 443.5,360.833 444.5,359.5C 445.506,359.938 445.506,360.604 444.5,361.5C 445.833,362.167 447.167,362.833 448.5,363.5C 446.729,363.28 445.062,364.113 443.5,366C 445.685,365.812 447.685,365.646 449.5,365.5C 450.5,366 451.5,366.5 452.5,367C 451.304,367.654 451.304,368.154 452.5,368.5C 453.183,368.137 453.85,367.804 454.5,367.5 Z"/></g>
71
+ <g><path style="opacity:1" fill="#b1a6a6" d="M 389.5,355.5 C 390.167,355.5 390.833,355.5 391.5,355.5C 395.425,358.259 399.758,360.259 404.5,361.5C 412.844,365.005 420.844,369.005 428.5,373.5C 426.669,374.052 425.003,374.052 423.5,373.5C 422.086,374.624 420.586,375.624 419,376.5C 418.552,374.591 419.385,373.424 421.5,373C 419.553,372.009 417.553,371.675 415.5,372C 416.167,372.333 416.833,372.667 417.5,373C 413.658,374.614 410.158,376.781 407,379.5C 404.562,378.134 404.062,378.634 405.5,381C 404.47,383.56 403.303,386.06 402,388.5C 401.667,387.833 401.333,387.167 401,386.5C 398.777,388.723 397.444,391.389 397,394.5C 396.283,393.956 395.783,393.289 395.5,392.5C 396.038,389.811 396.705,387.144 397.5,384.5C 395.797,383.11 395.13,381.61 395.5,380C 396.672,379.581 397.672,378.915 398.5,378C 396.34,374.557 393.34,371.224 389.5,368C 391.125,367.147 391.458,366.147 390.5,365C 392.107,363.951 392.773,362.451 392.5,360.5C 391.041,360.433 389.708,360.766 388.5,361.5C 389.281,359.348 389.614,357.348 389.5,355.5 Z"/></g>
72
+ <g><path style="opacity:1" fill="#b48c8c" d="M 373.5,348.5 C 379.125,350.316 384.459,352.649 389.5,355.5C 389.614,357.348 389.281,359.348 388.5,361.5C 387.883,361.389 387.383,361.056 387,360.5C 386.464,362.869 385.297,364.869 383.5,366.5C 384.641,367.425 384.641,368.259 383.5,369C 384.328,369.915 385.328,370.581 386.5,371C 385.107,372.171 384.273,373.671 384,375.5C 383.667,375.167 383.333,374.833 383,374.5C 382.088,376.659 381.255,378.825 380.5,381C 381.167,381.667 381.833,382.333 382.5,383C 378.979,385.875 378.646,389.208 381.5,393C 379.38,394.523 379.047,396.356 380.5,398.5C 378.501,402.475 376.168,406.141 373.5,409.5C 373.5,407.167 373.5,404.833 373.5,402.5C 373.524,384.806 373.524,366.806 373.5,348.5 Z"/></g>
73
+ <g><path style="opacity:1" fill="#b88181" d="M 143.5,349.5 C 143.5,367.167 143.5,384.833 143.5,402.5C 143.5,403.5 143.5,404.5 143.5,405.5C 142.467,402.952 140.8,400.785 138.5,399C 139.105,393.456 139.105,388.122 138.5,383C 137.932,381.348 136.599,379.682 134.5,378C 135.167,377.667 135.833,377.333 136.5,377C 135.707,375.915 135.04,374.748 134.5,373.5C 136.253,369.845 137.587,366.345 138.5,363C 136.146,361.622 136.146,360.122 138.5,358.5C 138.392,357.558 138.059,356.725 137.5,356C 139.417,353.591 141.417,351.424 143.5,349.5 Z"/></g>
74
+ <g><path style="opacity:1" fill="#b7a5a5" d="M 149.5,317.5 C 148.03,321.912 146.363,326.245 144.5,330.5C 143.504,330.586 142.671,330.252 142,329.5C 138.293,334.208 133.96,338.208 129,341.5C 128.667,341.167 128.333,340.833 128,340.5C 125.134,344.898 122.801,349.565 121,354.5C 118.29,356.688 115.29,358.355 112,359.5C 111.54,361.714 112.207,362.381 114,361.5C 114.317,363.301 114.984,363.634 116,362.5C 117.833,364.833 119.667,367.167 121.5,369.5C 120.753,369.736 119.92,370.07 119,370.5C 118.667,369.5 118.333,368.5 118,367.5C 117.737,371.835 117.903,376.168 118.5,380.5C 119.552,380.351 120.552,380.517 121.5,381C 121.384,382.268 121.051,383.602 120.5,385C 122.286,385.785 123.786,386.951 125,388.5C 125.5,388 126,387.5 126.5,387C 125.04,386.189 124.707,385.355 125.5,384.5C 126.622,385.63 127.956,386.297 129.5,386.5C 130.536,388.391 130.536,390.224 129.5,392C 132.262,393.345 133.262,395.345 132.5,398C 134.038,399.932 135.205,402.099 136,404.5C 137.491,406.004 139.324,406.837 141.5,407C 142.099,408.622 142.766,410.122 143.5,411.5C 143.5,411.833 143.5,412.167 143.5,412.5C 143.5,414.167 143.5,415.833 143.5,417.5C 143.5,418.5 143.5,419.5 143.5,420.5C 142.662,420.158 142.328,419.492 142.5,418.5C 142.769,416.571 142.269,414.905 141,413.5C 139.853,414.458 138.853,414.125 138,412.5C 137.282,413.451 136.449,413.617 135.5,413C 133.392,410.693 132.059,408.36 131.5,406C 130.167,405.667 128.833,405.333 127.5,405C 128.654,404.086 128.487,403.253 127,402.5C 126.667,402.833 126.333,403.167 126,403.5C 125.667,402.5 125.333,401.5 125,400.5C 124.581,401.672 123.915,402.672 123,403.5C 123.43,401.873 123.596,400.373 123.5,399C 122.007,397.632 120.507,397.465 119,398.5C 118.544,397.256 119.044,396.423 120.5,396C 116.927,392.984 115.427,388.818 116,383.5C 115.667,383.833 115.333,384.167 115,384.5C 114.506,382.866 114.34,381.199 114.5,379.5C 113.448,379.649 112.448,379.483 111.5,379C 112.696,378.346 112.696,377.846 111.5,377.5C 110.186,378.313 109.019,379.313 108,380.5C 106.243,377.706 103.743,376.039 100.5,375.5C 97.5866,374.404 95.7533,372.738 95,370.5C 90.307,371.606 85.4737,372.773 80.5,374C 88.7128,370.392 96.7128,366.558 104.5,362.5C 106.593,361.955 108.593,361.122 110.5,360C 110.507,358.417 110.174,356.751 109.5,355C 113.526,355.618 114.193,354.285 111.5,351C 113.473,350.505 115.473,350.338 117.5,350.5C 117.338,348.473 117.505,346.473 118,344.5C 118.333,345.167 118.667,345.833 119,346.5C 119.645,345.354 120.478,344.354 121.5,343.5C 121.291,342.914 120.957,342.414 120.5,342C 121.833,342 123.167,342 124.5,342C 124.167,341.667 123.833,341.333 123.5,341C 125.513,339.209 125.513,337.875 123.5,337C 124.701,336.097 125.535,334.931 126,333.5C 127.268,333.616 128.602,333.949 130,334.5C 131.307,333.228 132.807,332.228 134.5,331.5C 135.747,329.958 135.747,328.458 134.5,327C 135,326.5 135.5,326 136,325.5C 137.373,325.404 138.873,325.57 140.5,326C 140.167,325.667 139.833,325.333 139.5,325C 141.218,324.654 142.885,324.154 144.5,323.5C 146.003,322.41 146.336,321.243 145.5,320C 146.736,318.915 148.069,318.082 149.5,317.5 Z"/></g>
75
+ <g><path style="opacity:1" fill="#b7b2b2" d="M 104.5,362.5 C 96.7128,366.558 88.7128,370.392 80.5,374C 85.4737,372.773 90.307,371.606 95,370.5C 95.7533,372.738 97.5866,374.404 100.5,375.5C 100.52,377.143 99.8532,378.476 98.5,379.5C 99.7185,379.109 100.552,379.776 101,381.5C 103.33,378.818 103.83,379.151 102.5,382.5C 100.009,383.541 100.009,384.374 102.5,385C 101.216,385.684 100.049,385.517 99,384.5C 98.5,385.667 97.6667,386.5 96.5,387C 97.8989,387.595 99.2322,387.428 100.5,386.5C 101.281,387.729 101.781,389.062 102,390.5C 102.718,389.549 103.551,389.383 104.5,390C 103.449,391.385 102.116,392.385 100.5,393C 102.298,394.505 104.132,394.672 106,393.5C 106.637,395.303 107.803,396.636 109.5,397.5C 110.747,399.042 110.747,400.542 109.5,402C 110.329,403.816 111.163,405.649 112,407.5C 120.915,413.457 130.582,417.79 141,420.5C 141.278,419.584 141.778,418.918 142.5,418.5C 142.328,419.492 142.662,420.158 143.5,420.5C 143.263,421.791 143.596,422.791 144.5,423.5C 144.5,423.833 144.5,424.167 144.5,424.5C 136.086,421.129 127.753,417.462 119.5,413.5C 111.719,409.608 103.719,406.275 95.5,403.5C 82.4134,397.359 69.4134,391.026 56.5,384.5C 57.1667,384.5 57.5,384.167 57.5,383.5C 60.6729,382.83 63.6729,381.664 66.5,380C 65.3966,378.32 65.7299,376.82 67.5,375.5C 68.2739,374.289 69.1072,374.289 70,375.5C 70.4479,373.591 69.6145,372.424 67.5,372C 70.1667,369.667 72.8333,367.333 75.5,365C 74.6919,364.692 74.0253,364.192 73.5,363.5C 74.7111,362.28 74.7111,361.113 73.5,360C 74.9323,359.73 75.9323,360.396 76.5,362C 78.1667,362.667 79.8333,362.667 81.5,362C 83.3008,361.683 83.6341,361.016 82.5,360C 85.1667,359.333 87.8333,358.667 90.5,358C 93.2991,355.008 96.6325,353.008 100.5,352C 99.2068,351.51 97.8734,351.343 96.5,351.5C 96.3505,350.448 96.5172,349.448 97,348.5C 97.6667,347.167 98.3333,347.167 99,348.5C 99.3589,345.456 100.026,345.122 101,347.5C 101.71,346.027 102.876,345.36 104.5,345.5C 106.567,344.407 107.234,344.907 106.5,347C 109.108,350.031 108.108,351.365 103.5,351C 105.384,351.216 107.051,351.883 108.5,353C 107.747,354.487 106.914,354.654 106,353.5C 105.047,356.432 104.547,359.432 104.5,362.5 Z"/></g>
76
+ <g><path style="opacity:1" fill="#bba2a2" d="M 388.5,361.5 C 389.708,360.766 391.041,360.433 392.5,360.5C 392.773,362.451 392.107,363.951 390.5,365C 391.458,366.147 391.125,367.147 389.5,368C 393.34,371.224 396.34,374.557 398.5,378C 397.672,378.915 396.672,379.581 395.5,380C 395.13,381.61 395.797,383.11 397.5,384.5C 396.705,387.144 396.038,389.811 395.5,392.5C 394.603,393.598 393.77,393.598 393,392.5C 393.96,395.245 392.793,396.745 389.5,397C 390.271,398.998 389.605,400.665 387.5,402C 388.833,403.84 388.666,404.34 387,403.5C 385.956,405.715 385.29,408.048 385,410.5C 384.086,406.815 383.419,407.148 383,411.5C 382.667,410.833 382.333,410.167 382,409.5C 381.5,410.667 380.667,411.5 379.5,412C 379.833,412.333 380.167,412.667 380.5,413C 375.813,413.514 373.48,416.014 373.5,420.5C 373.5,419.5 373.5,418.5 373.5,417.5C 373.5,416.167 373.5,414.833 373.5,413.5C 373.5,412.167 373.5,410.833 373.5,409.5C 376.168,406.141 378.501,402.475 380.5,398.5C 379.047,396.356 379.38,394.523 381.5,393C 378.646,389.208 378.979,385.875 382.5,383C 381.833,382.333 381.167,381.667 380.5,381C 381.255,378.825 382.088,376.659 383,374.5C 383.333,374.833 383.667,375.167 384,375.5C 384.273,373.671 385.107,372.171 386.5,371C 385.328,370.581 384.328,369.915 383.5,369C 384.641,368.259 384.641,367.425 383.5,366.5C 385.297,364.869 386.464,362.869 387,360.5C 387.383,361.056 387.883,361.389 388.5,361.5 Z"/></g>
77
+ <g><path style="opacity:1" fill="#757575" d="M 466.5,358.5 C 466.5,358.833 466.5,359.167 466.5,359.5C 466.832,370.853 466.499,382.186 465.5,393.5C 459.559,396.366 453.559,399.033 447.5,401.5C 446.325,401.719 445.325,401.386 444.5,400.5C 444.93,397.286 444.93,393.952 444.5,390.5C 448.295,388.769 451.962,386.769 455.5,384.5C 455.5,379.5 455.5,374.5 455.5,369.5C 457,367.821 458.833,366.488 461,365.5C 462.574,362.864 464.407,360.53 466.5,358.5 Z"/></g>
78
+ <g><path style="opacity:1" fill="#bbb5b5" d="M 428.5,373.5 C 437.352,376.782 446.019,380.449 454.5,384.5C 454.833,384.5 455.167,384.5 455.5,384.5C 451.962,386.769 448.295,388.769 444.5,390.5C 437.38,393.227 430.38,396.227 423.5,399.5C 413.29,404.438 402.956,409.105 392.5,413.5C 386.006,416.887 379.339,419.887 372.5,422.5C 372.833,421.833 373.167,421.167 373.5,420.5C 373.48,416.014 375.813,413.514 380.5,413C 380.167,412.667 379.833,412.333 379.5,412C 380.667,411.5 381.5,410.667 382,409.5C 382.333,410.167 382.667,410.833 383,411.5C 383.419,407.148 384.086,406.815 385,410.5C 385.29,408.048 385.956,405.715 387,403.5C 388.666,404.34 388.833,403.84 387.5,402C 389.605,400.665 390.271,398.998 389.5,397C 392.793,396.745 393.96,395.245 393,392.5C 393.77,393.598 394.603,393.598 395.5,392.5C 395.783,393.289 396.283,393.956 397,394.5C 397.444,391.389 398.777,388.723 401,386.5C 401.333,387.167 401.667,387.833 402,388.5C 403.303,386.06 404.47,383.56 405.5,381C 404.062,378.634 404.562,378.134 407,379.5C 410.158,376.781 413.658,374.614 417.5,373C 416.833,372.667 416.167,372.333 415.5,372C 417.553,371.675 419.553,372.009 421.5,373C 419.385,373.424 418.552,374.591 419,376.5C 420.586,375.624 422.086,374.624 423.5,373.5C 425.003,374.052 426.669,374.052 428.5,373.5 Z"/></g>
79
+ <g><path style="opacity:1" fill="#626262" d="M 56.5,364.5 C 56.5,371.167 56.5,377.833 56.5,384.5C 69.4134,391.026 82.4134,397.359 95.5,403.5C 94.3398,404.265 93.3398,405.265 92.5,406.5C 92.7552,408.343 92.9219,410.343 93,412.5C 95.4753,408.708 97.642,409.042 99.5,413.5C 98.1931,414.865 98.1931,416.198 99.5,417.5C 81.6138,409.641 63.7805,401.641 46,393.5C 45.5001,382.172 45.3335,370.838 45.5,359.5C 45.5,358.833 45.5,358.167 45.5,357.5C 46.4959,357.586 47.3292,357.252 48,356.5C 48.3333,357.5 48.6667,358.5 49,359.5C 49.4226,358.044 50.2559,357.544 51.5,358C 50.4477,359.716 51.1144,360.716 53.5,361C 53.3842,362.268 53.0509,363.602 52.5,365C 53.9285,365.579 55.2618,365.412 56.5,364.5 Z"/></g>
80
+ <g><path style="opacity:1" fill="#b89090" d="M 143.5,345.5 C 143.5,346.833 143.5,348.167 143.5,349.5C 141.417,351.424 139.417,353.591 137.5,356C 138.059,356.725 138.392,357.558 138.5,358.5C 136.146,360.122 136.146,361.622 138.5,363C 137.587,366.345 136.253,369.845 134.5,373.5C 135.04,374.748 135.707,375.915 136.5,377C 135.833,377.333 135.167,377.667 134.5,378C 136.599,379.682 137.932,381.348 138.5,383C 139.105,388.122 139.105,393.456 138.5,399C 140.8,400.785 142.467,402.952 143.5,405.5C 143.5,406.833 143.5,408.167 143.5,409.5C 143.5,410.167 143.5,410.833 143.5,411.5C 142.766,410.122 142.099,408.622 141.5,407C 139.324,406.837 137.491,406.004 136,404.5C 135.205,402.099 134.038,399.932 132.5,398C 133.262,395.345 132.262,393.345 129.5,392C 130.536,390.224 130.536,388.391 129.5,386.5C 129.433,384.599 129.767,382.766 130.5,381C 130.241,379.739 129.574,378.739 128.5,378C 128.955,375.318 128.955,372.485 128.5,369.5C 129.167,368.833 129.833,368.167 130.5,367.5C 129.313,367.446 127.98,367.113 126.5,366.5C 128.027,364.807 129.36,362.973 130.5,361C 128.996,359.509 128.163,357.676 128,355.5C 126.933,354.809 125.766,354.309 124.5,354C 130.732,350.87 137.066,348.037 143.5,345.5 Z"/></g>
81
+ <g><path style="opacity:1" fill="#5d5d5d" d="M 444.5,390.5 C 444.93,393.952 444.93,397.286 444.5,400.5C 445.325,401.386 446.325,401.719 447.5,401.5C 438.239,405.818 428.906,410.151 419.5,414.5C 418.294,413.12 418.627,411.953 420.5,411C 419.151,409.365 419.318,407.865 421,406.5C 421.333,407.167 421.667,407.833 422,408.5C 422.309,407.234 422.809,406.067 423.5,405C 422.862,403.293 422.862,401.46 423.5,399.5C 430.38,396.227 437.38,393.227 444.5,390.5 Z"/></g>
82
+ <g><path style="opacity:1" fill="#c1b2b2" d="M 100.5,375.5 C 103.743,376.039 106.243,377.706 108,380.5C 109.019,379.313 110.186,378.313 111.5,377.5C 112.696,377.846 112.696,378.346 111.5,379C 112.448,379.483 113.448,379.649 114.5,379.5C 114.34,381.199 114.506,382.866 115,384.5C 115.333,384.167 115.667,383.833 116,383.5C 115.427,388.818 116.927,392.984 120.5,396C 119.044,396.423 118.544,397.256 119,398.5C 120.507,397.465 122.007,397.632 123.5,399C 123.596,400.373 123.43,401.873 123,403.5C 123.915,402.672 124.581,401.672 125,400.5C 125.333,401.5 125.667,402.5 126,403.5C 126.333,403.167 126.667,402.833 127,402.5C 128.487,403.253 128.654,404.086 127.5,405C 128.833,405.333 130.167,405.667 131.5,406C 132.059,408.36 133.392,410.693 135.5,413C 136.449,413.617 137.282,413.451 138,412.5C 138.853,414.125 139.853,414.458 141,413.5C 142.269,414.905 142.769,416.571 142.5,418.5C 141.778,418.918 141.278,419.584 141,420.5C 130.582,417.79 120.915,413.457 112,407.5C 111.163,405.649 110.329,403.816 109.5,402C 110.747,400.542 110.747,399.042 109.5,397.5C 107.803,396.636 106.637,395.303 106,393.5C 104.132,394.672 102.298,394.505 100.5,393C 102.116,392.385 103.449,391.385 104.5,390C 103.551,389.383 102.718,389.549 102,390.5C 101.781,389.062 101.281,387.729 100.5,386.5C 99.2322,387.428 97.8989,387.595 96.5,387C 97.6667,386.5 98.5,385.667 99,384.5C 100.049,385.517 101.216,385.684 102.5,385C 100.009,384.374 100.009,383.541 102.5,382.5C 103.83,379.151 103.33,378.818 101,381.5C 100.552,379.776 99.7185,379.109 98.5,379.5C 99.8532,378.476 100.52,377.143 100.5,375.5 Z"/></g>
83
+ <g><path style="opacity:1" fill="#8b2b2b" d="M 146.5,402.5 C 221.833,402.5 297.167,402.5 372.5,402.5C 372.5,403.167 372.5,403.833 372.5,404.5C 367.469,405.059 362.469,405.893 357.5,407C 294.498,407.419 231.498,407.086 168.5,406C 160.82,405.486 153.153,404.819 145.5,404C 146.056,403.617 146.389,403.117 146.5,402.5 Z"/></g>
84
+ <g><path style="opacity:1" fill="#984040" d="M 144.5,402.5 C 145.167,402.5 145.833,402.5 146.5,402.5C 146.389,403.117 146.056,403.617 145.5,404C 153.153,404.819 160.82,405.486 168.5,406C 231.498,407.086 294.498,407.419 357.5,407C 362.469,405.893 367.469,405.059 372.5,404.5C 370.636,406.218 368.303,407.385 365.5,408C 362.5,408.333 359.5,408.667 356.5,409C 292.825,409.881 229.158,409.547 165.5,408C 158.394,407.827 151.394,406.994 144.5,405.5C 144.5,404.5 144.5,403.5 144.5,402.5 Z"/></g>
85
+ <g><path style="opacity:1" fill="#757575" d="M 95.5,403.5 C 103.719,406.275 111.719,409.608 119.5,413.5C 121.476,416.71 122.142,420.043 121.5,423.5C 125.314,423.651 126.981,425.651 126.5,429.5C 117.378,425.772 108.378,421.772 99.5,417.5C 98.1931,416.198 98.1931,414.865 99.5,413.5C 97.642,409.042 95.4753,408.708 93,412.5C 92.9219,410.343 92.7552,408.343 92.5,406.5C 93.3398,405.265 94.3398,404.265 95.5,403.5 Z"/></g>
86
+ <g><path style="opacity:1" fill="#747474" d="M 423.5,399.5 C 422.862,401.46 422.862,403.293 423.5,405C 422.809,406.067 422.309,407.234 422,408.5C 421.667,407.833 421.333,407.167 421,406.5C 419.318,407.865 419.151,409.365 420.5,411C 418.627,411.953 418.294,413.12 419.5,414.5C 410.622,418.772 401.622,422.772 392.5,426.5C 392.943,422.389 392.943,418.055 392.5,413.5C 402.956,409.105 413.29,404.438 423.5,399.5 Z"/></g>
87
+ <g><path style="opacity:1" fill="#a96464" d="M 143.5,402.5 C 143.833,402.5 144.167,402.5 144.5,402.5C 144.5,403.5 144.5,404.5 144.5,405.5C 144.33,406.822 144.663,407.989 145.5,409C 173.85,412.592 202.017,413.759 230,412.5C 241.739,412.291 253.406,412.958 265,414.5C 270.712,413.877 276.379,413.21 282,412.5C 312.176,414.262 342.343,413.596 372.5,410.5C 371.848,411.725 370.681,412.392 369,412.5C 360.885,413.83 352.719,414.663 344.5,415C 309.304,415.823 274.137,415.657 239,414.5C 237.715,414.95 236.548,415.617 235.5,416.5C 233.224,415.787 230.891,415.287 228.5,415C 215.258,414.824 202.092,414.324 189,413.5C 181.026,414.441 173.026,414.107 165,412.5C 163.893,412.585 162.893,412.919 162,413.5C 155.591,412.983 149.424,411.65 143.5,409.5C 143.5,408.167 143.5,406.833 143.5,405.5C 143.5,404.5 143.5,403.5 143.5,402.5 Z"/></g>
88
+ <g><path style="opacity:1" fill="#a25454" d="M 372.5,402.5 C 372.833,402.5 373.167,402.5 373.5,402.5C 373.5,404.833 373.5,407.167 373.5,409.5C 372.833,409.5 372.5,409.833 372.5,410.5C 342.343,413.596 312.176,414.262 282,412.5C 276.379,413.21 270.712,413.877 265,414.5C 253.406,412.958 241.739,412.291 230,412.5C 202.017,413.759 173.85,412.592 145.5,409C 144.663,407.989 144.33,406.822 144.5,405.5C 151.394,406.994 158.394,407.827 165.5,408C 229.158,409.547 292.825,409.881 356.5,409C 359.5,408.667 362.5,408.333 365.5,408C 368.303,407.385 370.636,406.218 372.5,404.5C 372.5,403.833 372.5,403.167 372.5,402.5 Z"/></g>
89
+ <g><path style="opacity:1" fill="#af7373" d="M 143.5,409.5 C 149.424,411.65 155.591,412.983 162,413.5C 162.893,412.919 163.893,412.585 165,412.5C 173.026,414.107 181.026,414.441 189,413.5C 202.092,414.324 215.258,414.824 228.5,415C 230.891,415.287 233.224,415.787 235.5,416.5C 236.548,415.617 237.715,414.95 239,414.5C 274.137,415.657 309.304,415.823 344.5,415C 352.719,414.663 360.885,413.83 369,412.5C 370.681,412.392 371.848,411.725 372.5,410.5C 372.5,409.833 372.833,409.5 373.5,409.5C 373.5,410.833 373.5,412.167 373.5,413.5C 372.751,414.531 372.085,415.698 371.5,417C 339.929,418.661 309.429,419.495 280,419.5C 263.518,418.718 247.018,417.718 230.5,416.5C 226.888,415.938 223.388,416.604 220,418.5C 207.814,418.093 195.481,417.426 183,416.5C 180.437,416.341 177.77,416.675 175,417.5C 171.667,416.833 168.333,416.167 165,415.5C 158.776,416.383 152.11,416.383 145,415.5C 144.768,414.263 144.268,413.263 143.5,412.5C 143.5,412.167 143.5,411.833 143.5,411.5C 143.5,410.833 143.5,410.167 143.5,409.5 Z"/></g>
90
+ <g><path style="opacity:1" fill="#ba8989" d="M 143.5,412.5 C 144.268,413.263 144.768,414.263 145,415.5C 152.11,416.383 158.776,416.383 165,415.5C 168.333,416.167 171.667,416.833 175,417.5C 177.77,416.675 180.437,416.341 183,416.5C 195.481,417.426 207.814,418.093 220,418.5C 223.388,416.604 226.888,415.938 230.5,416.5C 247.018,417.718 263.518,418.718 280,419.5C 309.429,419.495 339.929,418.661 371.5,417C 372.085,415.698 372.751,414.531 373.5,413.5C 373.5,414.833 373.5,416.167 373.5,417.5C 372.596,418.209 372.263,419.209 372.5,420.5C 365.129,421.599 357.962,421.599 351,420.5C 346.064,421.116 341.064,422.116 336,423.5C 324.75,422.741 313.417,422.741 302,423.5C 298.292,423.519 294.792,422.852 291.5,421.5C 287.046,422.31 282.713,422.31 278.5,421.5C 276.941,422.074 275.441,422.74 274,423.5C 268.38,422.421 263.214,422.421 258.5,423.5C 254.966,422.869 251.466,422.202 248,421.5C 246.806,422.43 245.473,423.097 244,423.5C 229.855,423.204 215.188,422.537 200,421.5C 192.648,421.528 185.148,421.861 177.5,422.5C 172.105,421.957 166.605,421.957 161,422.5C 156.216,421.857 151.383,421.191 146.5,420.5C 145.452,419.452 144.452,418.452 143.5,417.5C 143.5,415.833 143.5,414.167 143.5,412.5 Z"/></g>
91
+ <g><path style="opacity:1" fill="#929292" d="M 392.5,413.5 C 392.943,418.055 392.943,422.389 392.5,426.5C 373.408,435.713 354.074,444.38 334.5,452.5C 333.503,452.53 332.836,452.03 332.5,451C 333.615,449.765 333.615,448.598 332.5,447.5C 333.837,447.26 335.503,446.76 337.5,446C 334.076,445.114 331.076,444.281 328.5,443.5C 334.675,439.912 341.009,436.578 347.5,433.5C 350.912,432.925 353.912,431.592 356.5,429.5C 362.136,427.678 367.469,425.345 372.5,422.5C 379.339,419.887 386.006,416.887 392.5,413.5 Z"/></g>
92
+ <g><path style="opacity:1" fill="#bf9797" d="M 373.5,417.5 C 373.5,418.5 373.5,419.5 373.5,420.5C 373.167,421.167 372.833,421.833 372.5,422.5C 367.291,423.511 362.124,424.845 357,426.5C 355.596,426.491 354.43,425.991 353.5,425C 346.333,424.833 339.167,424.667 332,424.5C 287.494,425.339 242.494,425.339 197,424.5C 190.501,423.815 184.001,423.148 177.5,422.5C 185.148,421.861 192.648,421.528 200,421.5C 215.188,422.537 229.855,423.204 244,423.5C 245.473,423.097 246.806,422.43 248,421.5C 251.466,422.202 254.966,422.869 258.5,423.5C 263.214,422.421 268.38,422.421 274,423.5C 275.441,422.74 276.941,422.074 278.5,421.5C 282.713,422.31 287.046,422.31 291.5,421.5C 294.792,422.852 298.292,423.519 302,423.5C 313.417,422.741 324.75,422.741 336,423.5C 341.064,422.116 346.064,421.116 351,420.5C 357.962,421.599 365.129,421.599 372.5,420.5C 372.263,419.209 372.596,418.209 373.5,417.5 Z"/></g>
93
+ <g><path style="opacity:1" fill="#c5a5a5" d="M 143.5,417.5 C 144.452,418.452 145.452,419.452 146.5,420.5C 151.383,421.191 156.216,421.857 161,422.5C 166.605,421.957 172.105,421.957 177.5,422.5C 184.001,423.148 190.501,423.815 197,424.5C 242.494,425.339 287.494,425.339 332,424.5C 339.167,424.667 346.333,424.833 353.5,425C 354.43,425.991 355.596,426.491 357,426.5C 362.124,424.845 367.291,423.511 372.5,422.5C 367.469,425.345 362.136,427.678 356.5,429.5C 353.287,429.19 350.287,429.523 347.5,430.5C 345.785,429.343 343.785,428.676 341.5,428.5C 325.975,428.829 310.308,428.829 294.5,428.5C 291.13,428.374 287.963,429.04 285,430.5C 284.667,429.833 284.333,429.167 284,428.5C 278.536,428.446 272.702,428.779 266.5,429.5C 264.405,427.411 262.572,427.411 261,429.5C 257.472,427.245 253.805,427.245 250,429.5C 247.56,429.393 245.06,429.393 242.5,429.5C 238.128,428.606 233.794,427.606 229.5,426.5C 226.341,428.045 223.341,427.711 220.5,425.5C 213.401,426.318 206.234,426.985 199,427.5C 195.088,426.926 191.255,425.926 187.5,424.5C 176.744,425.035 165.411,425.368 153.5,425.5C 150.418,425.121 147.418,424.454 144.5,423.5C 143.596,422.791 143.263,421.791 143.5,420.5C 143.5,419.5 143.5,418.5 143.5,417.5 Z"/></g>
94
+ <g><path style="opacity:1" fill="#cab0b0" d="M 144.5,423.5 C 147.418,424.454 150.418,425.121 153.5,425.5C 165.411,425.368 176.744,425.035 187.5,424.5C 191.255,425.926 195.088,426.926 199,427.5C 206.234,426.985 213.401,426.318 220.5,425.5C 223.341,427.711 226.341,428.045 229.5,426.5C 233.794,427.606 238.128,428.606 242.5,429.5C 245.06,429.393 247.56,429.393 250,429.5C 253.805,427.245 257.472,427.245 261,429.5C 262.572,427.411 264.405,427.411 266.5,429.5C 272.702,428.779 278.536,428.446 284,428.5C 284.333,429.167 284.667,429.833 285,430.5C 287.963,429.04 291.13,428.374 294.5,428.5C 310.308,428.829 325.975,428.829 341.5,428.5C 343.785,428.676 345.785,429.343 347.5,430.5C 347.938,430.435 348.272,430.601 348.5,431C 346.215,432.954 344.048,432.787 342,430.5C 340.598,432.973 339.098,432.973 337.5,430.5C 336.808,431.025 336.308,431.692 336,432.5C 333.511,432.437 331.011,432.104 328.5,431.5C 327.006,431.709 325.839,432.376 325,433.5C 322.648,432.527 320.315,431.527 318,430.5C 316,431.167 314,431.833 312,432.5C 305.764,431.267 299.764,430.601 294,430.5C 292.441,431.029 290.941,431.696 289.5,432.5C 288.038,431.529 286.705,431.862 285.5,433.5C 282.812,432.869 280.312,432.869 278,433.5C 276.561,431.986 275.061,431.653 273.5,432.5C 271.833,431.833 270.167,431.167 268.5,430.5C 259.422,431.242 250.589,431.576 242,431.5C 237.619,430.892 233.285,430.225 229,429.5C 226.58,430.488 224.247,430.155 222,428.5C 218.066,429.593 214.066,429.593 210,428.5C 207.849,428.643 206.182,429.643 205,431.5C 203.667,430.833 202.333,430.167 201,429.5C 198.149,430.244 195.483,430.244 193,429.5C 192.612,430.428 191.945,431.095 191,431.5C 184.636,429.678 178.302,429.011 172,429.5C 171.751,430.624 171.251,431.624 170.5,432.5C 170.167,431.833 169.833,431.167 169.5,430.5C 167.335,430.553 165.169,430.886 163,431.5C 158.933,430.032 154.933,428.365 151,426.5C 150.235,426.57 149.735,426.903 149.5,427.5C 147.632,426.737 145.965,425.737 144.5,424.5C 144.5,424.167 144.5,423.833 144.5,423.5 Z"/></g>
95
+ <g><path style="opacity:1" fill="#818181" d="M 119.5,413.5 C 127.753,417.462 136.086,421.129 144.5,424.5C 145.965,425.737 147.632,426.737 149.5,427.5C 153.953,429.226 158.286,431.226 162.5,433.5C 175.022,438.93 187.355,444.597 199.5,450.5C 197.712,450.215 196.045,450.548 194.5,451.5C 195.629,453.529 195.129,453.863 193,452.5C 191.513,453.253 191.346,454.086 192.5,455C 191.234,455.309 190.067,455.809 189,456.5C 188.295,454.014 187.462,454.014 186.5,456.5C 166.205,448.017 146.205,439.017 126.5,429.5C 126.981,425.651 125.314,423.651 121.5,423.5C 122.142,420.043 121.476,416.71 119.5,413.5 Z"/></g>
96
+ <g><path style="opacity:1" fill="#d4c1c1" d="M 149.5,427.5 C 149.735,426.903 150.235,426.57 151,426.5C 154.933,428.365 158.933,430.032 163,431.5C 165.169,430.886 167.335,430.553 169.5,430.5C 169.833,431.167 170.167,431.833 170.5,432.5C 171.251,431.624 171.751,430.624 172,429.5C 178.302,429.011 184.636,429.678 191,431.5C 191.945,431.095 192.612,430.428 193,429.5C 195.483,430.244 198.149,430.244 201,429.5C 202.333,430.167 203.667,430.833 205,431.5C 206.182,429.643 207.849,428.643 210,428.5C 214.066,429.593 218.066,429.593 222,428.5C 224.247,430.155 226.58,430.488 229,429.5C 233.285,430.225 237.619,430.892 242,431.5C 250.589,431.576 259.422,431.242 268.5,430.5C 270.167,431.167 271.833,431.833 273.5,432.5C 275.061,431.653 276.561,431.986 278,433.5C 280.312,432.869 282.812,432.869 285.5,433.5C 286.705,431.862 288.038,431.529 289.5,432.5C 290.941,431.696 292.441,431.029 294,430.5C 299.764,430.601 305.764,431.267 312,432.5C 314,431.833 316,431.167 318,430.5C 320.315,431.527 322.648,432.527 325,433.5C 325.839,432.376 327.006,431.709 328.5,431.5C 331.011,432.104 333.511,432.437 336,432.5C 336.308,431.692 336.808,431.025 337.5,430.5C 339.098,432.973 340.598,432.973 342,430.5C 344.048,432.787 346.215,432.954 348.5,431C 348.272,430.601 347.938,430.435 347.5,430.5C 350.287,429.523 353.287,429.19 356.5,429.5C 353.912,431.592 350.912,432.925 347.5,433.5C 341.201,435.396 335.034,437.73 329,440.5C 327.853,439.542 326.853,439.875 326,441.5C 323.443,439.686 320.776,439.352 318,440.5C 316.933,439.809 315.766,439.309 314.5,439C 316.595,438.444 316.762,437.944 315,437.5C 312.104,440.084 309.437,439.751 307,436.5C 306,437.167 305,437.833 304,438.5C 300.358,435.459 298.191,435.792 297.5,439.5C 295.758,437.027 293.925,437.027 292,439.5C 290.247,438.373 288.413,437.373 286.5,436.5C 285.459,438.991 284.626,438.991 284,436.5C 282.542,437.747 281.042,437.747 279.5,436.5C 278.749,437.376 278.249,438.376 278,439.5C 275.724,439.316 273.39,439.316 271,439.5C 267.191,437.277 263.691,437.277 260.5,439.5C 259.575,438.359 258.741,438.359 258,439.5C 257.667,438.833 257.333,438.167 257,437.5C 255.667,437.5 254.333,437.5 253,437.5C 252.667,438.167 252.333,438.833 252,439.5C 251.196,438.196 250.029,437.529 248.5,437.5C 246.484,438.162 244.317,438.162 242,437.5C 239.966,437.354 238.299,438.02 237,439.5C 236.667,438.833 236.333,438.167 236,437.5C 235,437.833 234,438.167 233,438.5C 231.667,435.833 230.333,435.833 229,438.5C 226.577,436.006 224.244,436.006 222,438.5C 221.692,437.692 221.192,437.025 220.5,436.5C 219.575,437.641 218.741,437.641 218,436.5C 215.957,438.521 213.957,438.854 212,437.5C 210.667,440.167 209.333,440.167 208,437.5C 206.384,438.545 204.717,439.545 203,440.5C 200.266,439.638 200.099,438.805 202.5,438C 200.892,437.342 199.725,437.842 199,439.5C 198.333,438.833 197.667,438.167 197,437.5C 195.899,439.394 194.566,440.061 193,439.5C 192.51,440.793 192.343,442.127 192.5,443.5C 190.073,443.477 187.74,442.977 185.5,442C 179.075,438.605 172.409,435.605 165.5,433C 164.251,432.26 163.251,432.427 162.5,433.5C 158.286,431.226 153.953,429.226 149.5,427.5 Z"/></g>
97
+ <g><path style="opacity:1" fill="#dacece" d="M 162.5,433.5 C 163.251,432.427 164.251,432.26 165.5,433C 172.409,435.605 179.075,438.605 185.5,442C 187.74,442.977 190.073,443.477 192.5,443.5C 192.343,442.127 192.51,440.793 193,439.5C 194.566,440.061 195.899,439.394 197,437.5C 197.667,438.167 198.333,438.833 199,439.5C 199.725,437.842 200.892,437.342 202.5,438C 200.099,438.805 200.266,439.638 203,440.5C 204.717,439.545 206.384,438.545 208,437.5C 209.333,440.167 210.667,440.167 212,437.5C 213.957,438.854 215.957,438.521 218,436.5C 218.741,437.641 219.575,437.641 220.5,436.5C 221.192,437.025 221.692,437.692 222,438.5C 224.244,436.006 226.577,436.006 229,438.5C 230.333,435.833 231.667,435.833 233,438.5C 234,438.167 235,437.833 236,437.5C 236.333,438.167 236.667,438.833 237,439.5C 238.299,438.02 239.966,437.354 242,437.5C 244.317,438.162 246.484,438.162 248.5,437.5C 250.029,437.529 251.196,438.196 252,439.5C 252.333,438.833 252.667,438.167 253,437.5C 254.333,437.5 255.667,437.5 257,437.5C 257.333,438.167 257.667,438.833 258,439.5C 258.741,438.359 259.575,438.359 260.5,439.5C 263.691,437.277 267.191,437.277 271,439.5C 273.39,439.316 275.724,439.316 278,439.5C 278.249,438.376 278.749,437.376 279.5,436.5C 281.042,437.747 282.542,437.747 284,436.5C 284.626,438.991 285.459,438.991 286.5,436.5C 288.413,437.373 290.247,438.373 292,439.5C 293.925,437.027 295.758,437.027 297.5,439.5C 298.191,435.792 300.358,435.459 304,438.5C 305,437.833 306,437.167 307,436.5C 309.437,439.751 312.104,440.084 315,437.5C 316.762,437.944 316.595,438.444 314.5,439C 315.766,439.309 316.933,439.809 318,440.5C 320.776,439.352 323.443,439.686 326,441.5C 326.853,439.875 327.853,439.542 329,440.5C 335.034,437.73 341.201,435.396 347.5,433.5C 341.009,436.578 334.675,439.912 328.5,443.5C 327.833,443.5 327.167,443.5 326.5,443.5C 326.265,442.903 325.765,442.57 325,442.5C 322.256,443.303 319.589,444.303 317,445.5C 315.765,444.385 314.598,444.385 313.5,445.5C 312.522,445.023 311.689,444.357 311,443.5C 310.333,444.833 309.667,444.833 309,443.5C 308.333,446.167 307.667,446.167 307,443.5C 305.798,445.058 304.632,446.725 303.5,448.5C 301.278,448.178 299.444,448.845 298,450.5C 297.692,449.692 297.192,449.025 296.5,448.5C 295.5,449.5 294.5,450.5 293.5,451.5C 294.506,452.396 294.506,453.062 293.5,453.5C 291.545,451.332 290.879,448.998 291.5,446.5C 290.037,446.632 288.537,446.965 287,447.5C 284.851,446.373 283.684,445.04 283.5,443.5C 281.821,444.782 279.987,445.782 278,446.5C 277.692,445.692 277.192,445.025 276.5,444.5C 275.904,445.716 275.737,447.049 276,448.5C 274.933,447.809 273.766,447.309 272.5,447C 273.956,446.577 274.456,445.744 274,444.5C 270.874,445.412 268.708,446.746 267.5,448.5C 265.878,446.146 264.378,446.146 263,448.5C 262.385,446.884 261.385,445.551 260,444.5C 258.667,445.833 257.333,447.167 256,448.5C 253.457,447.124 253.291,445.957 255.5,445C 254.391,444.362 253.225,443.862 252,443.5C 251.333,444.167 250.667,444.833 250,445.5C 247.829,444.405 246.162,445.072 245,447.5C 242.991,444.742 240.991,444.408 239,446.5C 237.82,445.316 236.32,444.649 234.5,444.5C 232.326,445.044 230.326,445.044 228.5,444.5C 227.858,447.797 226.691,448.131 225,445.5C 222.607,446.749 219.94,447.415 217,447.5C 215.386,445.05 213.886,445.217 212.5,448C 213.319,449.319 214.319,450.485 215.5,451.5C 216.086,451.291 216.586,450.957 217,450.5C 218.301,452.365 218.635,454.365 218,456.5C 216.841,455.434 216.008,455.767 215.5,457.5C 210.337,454.779 205.004,452.446 199.5,450.5C 187.355,444.597 175.022,438.93 162.5,433.5 Z"/></g>
98
+ <g><path style="opacity:1" fill="#e1dada" d="M 326.5,443.5 C 313.526,448.988 300.86,454.988 288.5,461.5C 277.984,465.508 267.651,470.008 257.5,475C 256.891,476.948 256.224,478.782 255.5,480.5C 255.739,478.533 255.406,476.699 254.5,475C 241.518,469.064 228.518,463.231 215.5,457.5C 216.008,455.767 216.841,455.434 218,456.5C 218.635,454.365 218.301,452.365 217,450.5C 216.586,450.957 216.086,451.291 215.5,451.5C 214.319,450.485 213.319,449.319 212.5,448C 213.886,445.217 215.386,445.05 217,447.5C 219.94,447.415 222.607,446.749 225,445.5C 226.691,448.131 227.858,447.797 228.5,444.5C 230.326,445.044 232.326,445.044 234.5,444.5C 236.32,444.649 237.82,445.316 239,446.5C 240.991,444.408 242.991,444.742 245,447.5C 246.162,445.072 247.829,444.405 250,445.5C 250.667,444.833 251.333,444.167 252,443.5C 253.225,443.862 254.391,444.362 255.5,445C 253.291,445.957 253.457,447.124 256,448.5C 257.333,447.167 258.667,445.833 260,444.5C 261.385,445.551 262.385,446.884 263,448.5C 264.378,446.146 265.878,446.146 267.5,448.5C 268.708,446.746 270.874,445.412 274,444.5C 274.456,445.744 273.956,446.577 272.5,447C 273.766,447.309 274.933,447.809 276,448.5C 275.737,447.049 275.904,445.716 276.5,444.5C 277.192,445.025 277.692,445.692 278,446.5C 279.987,445.782 281.821,444.782 283.5,443.5C 283.684,445.04 284.851,446.373 287,447.5C 288.537,446.965 290.037,446.632 291.5,446.5C 290.879,448.998 291.545,451.332 293.5,453.5C 294.506,453.062 294.506,452.396 293.5,451.5C 294.5,450.5 295.5,449.5 296.5,448.5C 297.192,449.025 297.692,449.692 298,450.5C 299.444,448.845 301.278,448.178 303.5,448.5C 304.632,446.725 305.798,445.058 307,443.5C 307.667,446.167 308.333,446.167 309,443.5C 309.667,444.833 310.333,444.833 311,443.5C 311.689,444.357 312.522,445.023 313.5,445.5C 314.598,444.385 315.765,444.385 317,445.5C 319.589,444.303 322.256,443.303 325,442.5C 325.765,442.57 326.265,442.903 326.5,443.5 Z"/></g>
99
+ <g><path style="opacity:1" fill="#717171" d="M 199.5,450.5 C 205.004,452.446 210.337,454.779 215.5,457.5C 228.518,463.231 241.518,469.064 254.5,475C 255.406,476.699 255.739,478.533 255.5,480.5C 254.99,483.388 255.656,485.721 257.5,487.5C 257.265,488.097 256.765,488.43 256,488.5C 232.563,478.195 209.397,467.528 186.5,456.5C 187.462,454.014 188.295,454.014 189,456.5C 190.067,455.809 191.234,455.309 192.5,455C 191.346,454.086 191.513,453.253 193,452.5C 195.129,453.863 195.629,453.529 194.5,451.5C 196.045,450.548 197.712,450.215 199.5,450.5 Z"/></g>
100
+ <g><path style="opacity:1" fill="#7f7f7f" d="M 326.5,443.5 C 327.167,443.5 327.833,443.5 328.5,443.5C 331.076,444.281 334.076,445.114 337.5,446C 335.503,446.76 333.837,447.26 332.5,447.5C 333.615,448.598 333.615,449.765 332.5,451C 332.836,452.03 333.503,452.53 334.5,452.5C 310.137,464.346 285.47,475.679 260.5,486.5C 261.72,484.337 261.72,482.17 260.5,480C 261.065,477.702 262.232,476.869 264,477.5C 267.228,476.113 270.061,474.113 272.5,471.5C 278.568,469.144 283.901,465.81 288.5,461.5C 300.86,454.988 313.526,448.988 326.5,443.5 Z"/></g>
101
+ <g><path style="opacity:1" fill="#9f9f9f" d="M 288.5,461.5 C 283.901,465.81 278.568,469.144 272.5,471.5C 270.061,474.113 267.228,476.113 264,477.5C 262.232,476.869 261.065,477.702 260.5,480C 261.72,482.17 261.72,484.337 260.5,486.5C 259.609,487.11 258.609,487.443 257.5,487.5C 255.656,485.721 254.99,483.388 255.5,480.5C 256.224,478.782 256.891,476.948 257.5,475C 267.651,470.008 277.984,465.508 288.5,461.5 Z"/></g>
102
+ </svg>