pixel-react 1.8.2 → 1.8.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (804) hide show
  1. package/.prettierrc.js +13 -13
  2. package/.storybook/main.ts +26 -26
  3. package/.storybook/preview-head.html +2 -2
  4. package/.storybook/preview.ts +26 -26
  5. package/.yarn/install-state.gz +0 -0
  6. package/.yarnrc.yml +1 -1
  7. package/README.md +75 -75
  8. package/index.scss +4 -4
  9. package/lib/1fb4472b34e4fe07.css +1 -0
  10. package/lib/components/AddVariables/AddVariables.d.ts +5 -0
  11. package/lib/components/AddVariables/index.d.ts +1 -0
  12. package/lib/components/AddVariables/types.d.ts +99 -0
  13. package/lib/components/Charts/LineChart/types.d.ts +1 -0
  14. package/lib/components/ConditionalDropdown/types.d.ts +4 -0
  15. package/lib/components/Input/types.d.ts +4 -0
  16. package/lib/components/LabelEditTextField/types.d.ts +2 -0
  17. package/lib/components/Select/components/types.d.ts +2 -2
  18. package/lib/components/Select/types.d.ts +2 -2
  19. package/lib/components/SequentialConnectingBranch/components/Branches/Branches.d.ts +1 -1
  20. package/lib/components/SequentialConnectingBranch/components/Branches/types.d.ts +1 -0
  21. package/lib/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.d.ts +1 -1
  22. package/lib/components/SequentialConnectingBranch/components/ConnectingBranches/types.d.ts +1 -0
  23. package/lib/components/SequentialConnectingBranch/types.d.ts +1 -0
  24. package/lib/components/TableTree/types.d.ts +4 -4
  25. package/lib/index.css +1 -0
  26. package/lib/index.d.ts +13 -1
  27. package/lib/index.esm.css +1 -0
  28. package/lib/index.esm.js +361 -364
  29. package/lib/index.esm.js.map +1 -1
  30. package/lib/index.js +361 -364
  31. package/lib/index.js.map +1 -1
  32. package/lib/tsconfig.tsbuildinfo +1 -1
  33. package/lib/utils/formData/ConvertFormDataToObject.d.ts +1 -0
  34. package/lib/validations/regex.d.ts +10 -1
  35. package/package.json +81 -81
  36. package/rollup.config.mjs +67 -67
  37. package/src/StyleGuide/ColorPalette/ColorPalette.scss +62 -62
  38. package/src/StyleGuide/ColorPalette/ColorPalette.stories.tsx +16 -16
  39. package/src/StyleGuide/ColorPalette/ColorPalette.tsx +67 -67
  40. package/src/StyleGuide/ColorPalette/colorPaletteList.ts +304 -304
  41. package/src/StyleGuide/ColorPalette/index.ts +1 -1
  42. package/src/StyleGuide/ColorPalette/types.ts +19 -19
  43. package/src/StyleGuide/Typography/Typography.scss +99 -99
  44. package/src/StyleGuide/Typography/Typography.stories.tsx +16 -16
  45. package/src/StyleGuide/Typography/Typography.tsx +60 -60
  46. package/src/StyleGuide/Typography/TypographyList.ts +3 -3
  47. package/src/StyleGuide/Typography/types.ts +9 -9
  48. package/src/assets/Themes/BaseTheme.scss +306 -304
  49. package/src/assets/Themes/BlueTheme.scss +279 -279
  50. package/src/assets/Themes/DarkTheme.scss +319 -310
  51. package/src/assets/Themes/Theme.scss +21 -21
  52. package/src/assets/icons/Arrow.svg +4 -4
  53. package/src/assets/icons/Header_preset.svg +18 -18
  54. package/src/assets/icons/accordion_header_icon.svg +10 -10
  55. package/src/assets/icons/active_license_icon.svg +3 -3
  56. package/src/assets/icons/add_archive.svg +9 -9
  57. package/src/assets/icons/add_file.svg +4 -4
  58. package/src/assets/icons/add_label_icon.svg +3 -3
  59. package/src/assets/icons/add_locator.svg +4 -4
  60. package/src/assets/icons/add_testcase.svg +3 -3
  61. package/src/assets/icons/add_user.svg +9 -9
  62. package/src/assets/icons/add_variable.svg +11 -11
  63. package/src/assets/icons/add_variable_icon.svg +4 -4
  64. package/src/assets/icons/ai_search.svg +9 -9
  65. package/src/assets/icons/alert.svg +17 -17
  66. package/src/assets/icons/all_borders.svg +3 -3
  67. package/src/assets/icons/all_projects.svg +3 -3
  68. package/src/assets/icons/android.svg +9 -9
  69. package/src/assets/icons/android_icon.svg +6 -6
  70. package/src/assets/icons/apk_file_type.svg +4 -4
  71. package/src/assets/icons/app_switch.svg +11 -11
  72. package/src/assets/icons/approval_pending.svg +8 -8
  73. package/src/assets/icons/arrow_down.svg +3 -3
  74. package/src/assets/icons/arrow_right.svg +4 -4
  75. package/src/assets/icons/arrow_up.svg +3 -3
  76. package/src/assets/icons/arrows_down_icon.svg +3 -3
  77. package/src/assets/icons/arrows_right_icon.svg +10 -10
  78. package/src/assets/icons/arrows_top_icon.svg +3 -3
  79. package/src/assets/icons/attachment_icon.svg +3 -3
  80. package/src/assets/icons/authorization.svg +4 -4
  81. package/src/assets/icons/authorization_icon.svg +4 -4
  82. package/src/assets/icons/auto_save_icon.svg +4 -4
  83. package/src/assets/icons/automation_testcase.svg +4 -4
  84. package/src/assets/icons/back_icon.svg +3 -3
  85. package/src/assets/icons/backward.svg +10 -10
  86. package/src/assets/icons/backward_icon.svg +3 -3
  87. package/src/assets/icons/beautify_icon.svg +3 -3
  88. package/src/assets/icons/bold.svg +3 -3
  89. package/src/assets/icons/border_bottom.svg +3 -3
  90. package/src/assets/icons/border_left.svg +3 -3
  91. package/src/assets/icons/border_right.svg +3 -3
  92. package/src/assets/icons/border_top.svg +3 -3
  93. package/src/assets/icons/browser_stack.svg +9 -9
  94. package/src/assets/icons/browserstack_icon.svg +24 -24
  95. package/src/assets/icons/calendar_icon.svg +9 -9
  96. package/src/assets/icons/capture_icon.svg +2 -2
  97. package/src/assets/icons/check_mark.svg +3 -3
  98. package/src/assets/icons/chrome.svg +12 -12
  99. package/src/assets/icons/client_profile.svg +4 -4
  100. package/src/assets/icons/clock_icon.svg +11 -11
  101. package/src/assets/icons/clone_icon.svg +3 -3
  102. package/src/assets/icons/close_pill.svg +3 -3
  103. package/src/assets/icons/cloud_server_host_icon.svg +3 -3
  104. package/src/assets/icons/collapse-icon.svg +6 -6
  105. package/src/assets/icons/compressed_file_type.svg +4 -4
  106. package/src/assets/icons/configuration.svg +3 -3
  107. package/src/assets/icons/continue_without_sign.svg +3 -3
  108. package/src/assets/icons/copy-icon.svg +3 -3
  109. package/src/assets/icons/csv_file_type.svg +4 -4
  110. package/src/assets/icons/dashboard_icon.svg +31 -31
  111. package/src/assets/icons/dashboard_mobile_icon.svg +47 -47
  112. package/src/assets/icons/dashboard_web_icon.svg +9 -9
  113. package/src/assets/icons/data_provider.svg +8 -8
  114. package/src/assets/icons/dataset_list.svg +3 -3
  115. package/src/assets/icons/defects.svg +8 -8
  116. package/src/assets/icons/delete.svg +3 -3
  117. package/src/assets/icons/delete_info.svg +17 -17
  118. package/src/assets/icons/depends_on_script.svg +7 -7
  119. package/src/assets/icons/details.svg +3 -3
  120. package/src/assets/icons/double_underline.svg +5 -5
  121. package/src/assets/icons/download-icon.svg +3 -3
  122. package/src/assets/icons/download_file_icon.svg +3 -3
  123. package/src/assets/icons/download_icon.svg +4 -4
  124. package/src/assets/icons/drag_icon.svg +4 -4
  125. package/src/assets/icons/drawer_maximize.svg +6 -6
  126. package/src/assets/icons/dropzone_icon.svg +18 -18
  127. package/src/assets/icons/edge.svg +30 -30
  128. package/src/assets/icons/edit_icon.svg +5 -5
  129. package/src/assets/icons/element.svg +4 -4
  130. package/src/assets/icons/email_group.svg +3 -3
  131. package/src/assets/icons/error.svg +17 -17
  132. package/src/assets/icons/excel_corner_menu.svg +3 -3
  133. package/src/assets/icons/executions_icon.svg +3 -3
  134. package/src/assets/icons/expand-icon.svg +6 -6
  135. package/src/assets/icons/export.svg +4 -4
  136. package/src/assets/icons/export_collection_icon.svg +13 -13
  137. package/src/assets/icons/external_user.svg +13 -0
  138. package/src/assets/icons/eye_closed.svg +3 -3
  139. package/src/assets/icons/eye_open_icon.svg +3 -3
  140. package/src/assets/icons/failed_status_icon.svg +12 -12
  141. package/src/assets/icons/file.svg +11 -11
  142. package/src/assets/icons/fill_color.svg +7 -7
  143. package/src/assets/icons/filter.svg +4 -4
  144. package/src/assets/icons/fire_fox.svg +106 -106
  145. package/src/assets/icons/fireflink_finder_logo.svg +7 -7
  146. package/src/assets/icons/fireflink_icon.svg +4 -4
  147. package/src/assets/icons/fireflink_logo.svg +13 -13
  148. package/src/assets/icons/fireflink_platform.svg +4 -4
  149. package/src/assets/icons/firefox.svg +84 -84
  150. package/src/assets/icons/flaky_status_icon.svg +12 -12
  151. package/src/assets/icons/formate_painter.svg +5 -5
  152. package/src/assets/icons/formula_icon.svg +3 -3
  153. package/src/assets/icons/forward.svg +3 -3
  154. package/src/assets/icons/forward_icon.svg +3 -3
  155. package/src/assets/icons/full_access_icon.svg +4 -4
  156. package/src/assets/icons/gif_file_type.svg +4 -4
  157. package/src/assets/icons/global_variable_icon.svg +4 -4
  158. package/src/assets/icons/group_user.svg +12 -0
  159. package/src/assets/icons/hamburger_menu.svg +3 -3
  160. package/src/assets/icons/help_icon.svg +10 -10
  161. package/src/assets/icons/hide_access_icon.svg +3 -3
  162. package/src/assets/icons/hide_icon.svg +9 -9
  163. package/src/assets/icons/history_icon.svg +19 -19
  164. package/src/assets/icons/html_file_type.svg +4 -4
  165. package/src/assets/icons/impact_list.svg +6 -6
  166. package/src/assets/icons/import.svg +4 -4
  167. package/src/assets/icons/import_icon.svg +4 -4
  168. package/src/assets/icons/info.svg +17 -17
  169. package/src/assets/icons/info_icon.svg +5 -5
  170. package/src/assets/icons/info_user.svg +5 -5
  171. package/src/assets/icons/internet_explorer.svg +3 -3
  172. package/src/assets/icons/ios_icon.svg +11 -11
  173. package/src/assets/icons/ipk_file_type.svg +4 -4
  174. package/src/assets/icons/italic.svg +3 -3
  175. package/src/assets/icons/jira.svg +3 -3
  176. package/src/assets/icons/jpg_file_type.svg +4 -4
  177. package/src/assets/icons/json_file_type.svg +4 -4
  178. package/src/assets/icons/label_icon.svg +8 -8
  179. package/src/assets/icons/label_plus.svg +3 -3
  180. package/src/assets/icons/labels.svg +8 -8
  181. package/src/assets/icons/lambda_icon.svg +3 -3
  182. package/src/assets/icons/left_arrow_icon.svg +3 -3
  183. package/src/assets/icons/license_expired.svg +20 -20
  184. package/src/assets/icons/license_info.svg +28 -28
  185. package/src/assets/icons/license_warning.svg +10 -10
  186. package/src/assets/icons/link_expired.svg +186 -186
  187. package/src/assets/icons/linked_defects.svg +11 -11
  188. package/src/assets/icons/linux.svg +42 -42
  189. package/src/assets/icons/local.svg +3 -3
  190. package/src/assets/icons/local_variable_icon.svg +4 -4
  191. package/src/assets/icons/logo.svg +17 -17
  192. package/src/assets/icons/mac.svg +9 -9
  193. package/src/assets/icons/machine_disable_icon.svg +18 -18
  194. package/src/assets/icons/machine_enable_icon.svg +10 -10
  195. package/src/assets/icons/manage_apps.svg +3 -3
  196. package/src/assets/icons/manual_locator.svg +7 -7
  197. package/src/assets/icons/manual_testcase.svg +3 -3
  198. package/src/assets/icons/maximize_icon.svg +5 -5
  199. package/src/assets/icons/maximize_script.svg +12 -12
  200. package/src/assets/icons/maximize_tree.svg +3 -3
  201. package/src/assets/icons/minimize_script.svg +5 -5
  202. package/src/assets/icons/mobile_icon.svg +3 -3
  203. package/src/assets/icons/moon_stars.svg +10 -10
  204. package/src/assets/icons/more.svg +10 -10
  205. package/src/assets/icons/move_icon.svg +5 -5
  206. package/src/assets/icons/ms_dynamic.svg +4 -4
  207. package/src/assets/icons/ms_dynamic_icon.svg +15 -15
  208. package/src/assets/icons/nlp_help_icon.svg +3 -3
  209. package/src/assets/icons/no_access_icon.svg +4 -4
  210. package/src/assets/icons/no_border.svg +3 -3
  211. package/src/assets/icons/no_data.svg +13 -13
  212. package/src/assets/icons/no_license_found.svg +22 -22
  213. package/src/assets/icons/notification_icon.svg +3 -3
  214. package/src/assets/icons/opera.svg +9 -9
  215. package/src/assets/icons/parameters.svg +3 -3
  216. package/src/assets/icons/passed_status_icon.svg +12 -12
  217. package/src/assets/icons/pdf_file_type.svg +4 -4
  218. package/src/assets/icons/plus_icon.svg +11 -11
  219. package/src/assets/icons/plus_round_icon.svg +38 -38
  220. package/src/assets/icons/plus_user_icon.svg +3 -3
  221. package/src/assets/icons/png_file_type.svg +4 -4
  222. package/src/assets/icons/pre_post_condition.svg +8 -8
  223. package/src/assets/icons/program_element.svg +8 -8
  224. package/src/assets/icons/project_element.svg +4 -4
  225. package/src/assets/icons/project_env_variable_icon.svg +4 -4
  226. package/src/assets/icons/project_status_icon.svg +10 -10
  227. package/src/assets/icons/quick_run_setting_icon.svg +5 -5
  228. package/src/assets/icons/refresh-icon.svg +4 -4
  229. package/src/assets/icons/refresh_icon.svg +4 -4
  230. package/src/assets/icons/reload.svg +3 -3
  231. package/src/assets/icons/remove.svg +11 -11
  232. package/src/assets/icons/remove_user.svg +3 -3
  233. package/src/assets/icons/replace.svg +11 -11
  234. package/src/assets/icons/replace_file.svg +13 -13
  235. package/src/assets/icons/replace_icon.svg +6 -6
  236. package/src/assets/icons/reset-link.svg +52 -52
  237. package/src/assets/icons/right_arrow_icon.svg +4 -4
  238. package/src/assets/icons/rotate_icon.svg +10 -10
  239. package/src/assets/icons/run_automation_scripts_icon.svg +33 -33
  240. package/src/assets/icons/run_icon.svg +26 -26
  241. package/src/assets/icons/run_manual_testcase_icon.svg +4 -4
  242. package/src/assets/icons/safari.svg +93 -93
  243. package/src/assets/icons/safari_icon.svg +12 -12
  244. package/src/assets/icons/sales_force.svg +7 -7
  245. package/src/assets/icons/salesforce_icon.svg +14 -14
  246. package/src/assets/icons/sample_template_first.svg +29 -29
  247. package/src/assets/icons/sample_template_second.svg +47 -47
  248. package/src/assets/icons/sause_lab.svg +3 -3
  249. package/src/assets/icons/save_as_step.svg +3 -3
  250. package/src/assets/icons/search.svg +3 -3
  251. package/src/assets/icons/send_step.svg +4 -4
  252. package/src/assets/icons/settings.svg +3 -3
  253. package/src/assets/icons/single_user.svg +12 -0
  254. package/src/assets/icons/skipped_status_icon.svg +12 -12
  255. package/src/assets/icons/standard_template.svg +30 -30
  256. package/src/assets/icons/step_group.svg +10 -10
  257. package/src/assets/icons/strike_through.svg +3 -3
  258. package/src/assets/icons/success.svg +17 -17
  259. package/src/assets/icons/suites_icon.svg +3 -3
  260. package/src/assets/icons/sun_icon.svg +10 -10
  261. package/src/assets/icons/swipe_icon.svg +9 -9
  262. package/src/assets/icons/switch_license_icon.svg +123 -123
  263. package/src/assets/icons/system_warning.svg +61 -61
  264. package/src/assets/icons/tap_icon.svg +3 -3
  265. package/src/assets/icons/test_data.svg +5 -5
  266. package/src/assets/icons/test_data_set.svg +7 -7
  267. package/src/assets/icons/test_freshers_logo.svg +8 -0
  268. package/src/assets/icons/text_align_center.svg +3 -3
  269. package/src/assets/icons/text_align_left.svg +3 -3
  270. package/src/assets/icons/text_align_right.svg +3 -3
  271. package/src/assets/icons/text_color.svg +3 -3
  272. package/src/assets/icons/tick_icon.svg +4 -4
  273. package/src/assets/icons/toast_close.svg +3 -3
  274. package/src/assets/icons/txt_file_type.svg +4 -4
  275. package/src/assets/icons/underline.svg +4 -4
  276. package/src/assets/icons/unfollow_icon.svg +3 -0
  277. package/src/assets/icons/update_icon.svg +3 -3
  278. package/src/assets/icons/user_password_lock.svg +220 -220
  279. package/src/assets/icons/user_profile.svg +3 -3
  280. package/src/assets/icons/user_warning.svg +235 -235
  281. package/src/assets/icons/user_with_system.svg +637 -637
  282. package/src/assets/icons/variable.svg +3 -3
  283. package/src/assets/icons/variable_icon.svg +4 -4
  284. package/src/assets/icons/variable_set.svg +5 -5
  285. package/src/assets/icons/vertical_separator.svg +3 -3
  286. package/src/assets/icons/view_access_icon.svg +4 -4
  287. package/src/assets/icons/view_icon.svg +3 -3
  288. package/src/assets/icons/warning.svg +17 -17
  289. package/src/assets/icons/warning_status_icon.svg +12 -12
  290. package/src/assets/icons/web&mobile_icon.svg +3 -3
  291. package/src/assets/icons/web_icon.svg +3 -3
  292. package/src/assets/icons/web_mobile_icon.svg +29 -29
  293. package/src/assets/icons/web_service_icon.svg +3 -3
  294. package/src/assets/icons/web_services_icon.svg +30 -30
  295. package/src/assets/icons/window_maximize.svg +3 -3
  296. package/src/assets/icons/window_minimize.svg +3 -3
  297. package/src/assets/icons/window_restore.svg +4 -4
  298. package/src/assets/icons/windows.svg +10 -10
  299. package/src/assets/icons/wrong_mark.svg +3 -3
  300. package/src/assets/icons/wswb_delete_icon.svg +3 -3
  301. package/src/assets/icons/wswb_plus_icon.svg +4 -4
  302. package/src/assets/icons/xls_file_type.svg +4 -4
  303. package/src/assets/icons/xlsx_file_type.svg +4 -4
  304. package/src/assets/icons/xml_file_type.svg +4 -4
  305. package/src/assets/styles/_colors.scss +150 -150
  306. package/src/assets/styles/_fonts.scss +45 -45
  307. package/src/assets/styles/_mixins.scss +21 -21
  308. package/src/assets/utils/functionUtils.ts +96 -96
  309. package/src/components/Accordion/Accordion.scss +46 -46
  310. package/src/components/Accordion/Accordion.stories.tsx +48 -48
  311. package/src/components/Accordion/Accordion.tsx +69 -69
  312. package/src/components/Accordion/index.ts +1 -1
  313. package/src/components/Accordion/types.ts +44 -44
  314. package/src/components/AddResourceButton/AddButton.scss +36 -36
  315. package/src/components/AddResourceButton/AddButton.stories.tsx +126 -126
  316. package/src/components/AddResourceButton/AddButton.tsx +121 -121
  317. package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.scss +161 -161
  318. package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.tsx +38 -38
  319. package/src/components/AddResourceButton/index.ts +1 -1
  320. package/src/components/AddResourceButton/type.ts +92 -92
  321. package/src/components/AllProjectsDropdown/AllProjectsDropdown.scss +189 -189
  322. package/src/components/AllProjectsDropdown/AllProjectsDropdown.stories.tsx +117 -117
  323. package/src/components/AllProjectsDropdown/AllProjectsDropdown.tsx +152 -152
  324. package/src/components/AllProjectsDropdown/types.ts +14 -14
  325. package/src/components/AppHeader/AppHeader.scss +218 -218
  326. package/src/components/AppHeader/AppHeader.stories.tsx +553 -553
  327. package/src/components/AppHeader/AppHeader.tsx +199 -199
  328. package/src/components/AppHeader/index.ts +1 -1
  329. package/src/components/AppHeader/types.ts +54 -54
  330. package/src/components/AttachImage/AttachImage.scss +76 -76
  331. package/src/components/AttachImage/AttachImage.stories.tsx +24 -24
  332. package/src/components/AttachImage/AttachImage.tsx +60 -60
  333. package/src/components/AttachImage/index.ts +2 -2
  334. package/src/components/AttachImage/types.ts +26 -26
  335. package/src/components/AttachmentButton/AttachmentButton.scss +9 -9
  336. package/src/components/AttachmentButton/AttachmentButton.stories.tsx +81 -81
  337. package/src/components/AttachmentButton/AttachmentButton.tsx +129 -129
  338. package/src/components/AttachmentButton/types.ts +13 -13
  339. package/src/components/Avatar/Avatar.scss +27 -27
  340. package/src/components/Avatar/Avatar.stories.tsx +76 -76
  341. package/src/components/Avatar/Avatar.tsx +41 -41
  342. package/src/components/Avatar/types.ts +35 -35
  343. package/src/components/Button/Button.scss +166 -166
  344. package/src/components/Button/Button.stories.tsx +81 -81
  345. package/src/components/Button/Button.tsx +91 -91
  346. package/src/components/Button/index.ts +1 -1
  347. package/src/components/Button/types.ts +90 -90
  348. package/src/components/Charts/BarChart/BarChart.scss +69 -69
  349. package/src/components/Charts/BarChart/BarChart.stories.tsx +70 -70
  350. package/src/components/Charts/BarChart/BarChart.tsx +349 -349
  351. package/src/components/Charts/BarChart/types.ts +12 -12
  352. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.scss +221 -221
  353. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.tsx +58 -58
  354. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.tsx +554 -554
  355. package/src/components/Charts/DashboardDonutChart/types.ts +60 -60
  356. package/src/components/Charts/DonutChart/DonutChart.scss +76 -76
  357. package/src/components/Charts/DonutChart/DonutChart.stories.tsx +30 -30
  358. package/src/components/Charts/DonutChart/DonutChart.tsx +246 -246
  359. package/src/components/Charts/DonutChart/index.ts +1 -1
  360. package/src/components/Charts/DonutChart/type.ts +23 -23
  361. package/src/components/Charts/IconRadialChart/IconRadialChart.scss +25 -25
  362. package/src/components/Charts/IconRadialChart/IconRadialChart.stories.tsx +51 -51
  363. package/src/components/Charts/IconRadialChart/IconRadialChart.tsx +173 -173
  364. package/src/components/Charts/IconRadialChart/types.ts +28 -28
  365. package/src/components/Charts/LineChart/LineChart.scss +92 -92
  366. package/src/components/Charts/LineChart/LineChart.stories.tsx +198 -259
  367. package/src/components/Charts/LineChart/LineChart.tsx +391 -295
  368. package/src/components/Charts/LineChart/index.ts +1 -1
  369. package/src/components/Charts/LineChart/types.ts +31 -30
  370. package/src/components/Charts/MultiRadialChart/MultiRadialChart.scss +85 -85
  371. package/src/components/Charts/MultiRadialChart/MultiRadialChart.stories.tsx +117 -117
  372. package/src/components/Charts/MultiRadialChart/MultiRadialChart.tsx +306 -306
  373. package/src/components/Charts/MultiRadialChart/index.ts +1 -1
  374. package/src/components/Charts/MultiRadialChart/types.ts +28 -28
  375. package/src/components/Charts/PieChart/PieChart.scss +41 -41
  376. package/src/components/Charts/PieChart/PieChart.stories.tsx +46 -46
  377. package/src/components/Charts/PieChart/PieChart.tsx +192 -192
  378. package/src/components/Charts/PieChart/index.ts +1 -1
  379. package/src/components/Charts/PieChart/types.ts +28 -28
  380. package/src/components/Charts/RadialChart/RadialChart.scss +16 -16
  381. package/src/components/Charts/RadialChart/RadialChart.stories.tsx +36 -36
  382. package/src/components/Charts/RadialChart/RadialChart.tsx +180 -180
  383. package/src/components/Charts/RadialChart/index.ts +1 -1
  384. package/src/components/Charts/RadialChart/types.ts +32 -32
  385. package/src/components/Checkbox/Checkbox.scss +148 -148
  386. package/src/components/Checkbox/Checkbox.stories.tsx +78 -78
  387. package/src/components/Checkbox/Checkbox.tsx +57 -57
  388. package/src/components/Checkbox/types.ts +34 -34
  389. package/src/components/Chip/Chip.scss +95 -95
  390. package/src/components/Chip/Chip.stories.tsx +125 -125
  391. package/src/components/Chip/Chip.tsx +39 -39
  392. package/src/components/Chip/index.ts +1 -1
  393. package/src/components/Chip/types.ts +19 -19
  394. package/src/components/ChooseFile/ChooseFile.stories.tsx +190 -190
  395. package/src/components/ChooseFile/ChooseFile.tsx +46 -46
  396. package/src/components/ChooseFile/types.ts +78 -78
  397. package/src/components/Comment/Comments.scss +166 -166
  398. package/src/components/Comment/Comments.stories.tsx +212 -212
  399. package/src/components/Comment/Comments.tsx +51 -51
  400. package/src/components/Comment/comment/Comment.tsx +206 -206
  401. package/src/components/Comment/comment/useNode.ts +51 -51
  402. package/src/components/Comment/index.ts +1 -1
  403. package/src/components/Comment/type.ts +36 -36
  404. package/src/components/ConditionalDropdown/ConditionalDropdown.scss +17 -17
  405. package/src/components/ConditionalDropdown/ConditionalDropdown.stories.tsx +151 -150
  406. package/src/components/ConditionalDropdown/ConditionalDropdown.tsx +157 -156
  407. package/src/components/ConditionalDropdown/OptionsDropdown.tsx +43 -43
  408. package/src/components/ConditionalDropdown/index.ts +1 -1
  409. package/src/components/ConditionalDropdown/types.ts +163 -159
  410. package/src/components/ConnectingBranch/BranchComponents/MachineInstances.tsx +143 -143
  411. package/src/components/ConnectingBranch/ConnectingBranch.scss +221 -221
  412. package/src/components/ConnectingBranch/ConnectingBranch.stories.tsx +53 -53
  413. package/src/components/ConnectingBranch/ConnectingBranch.tsx +196 -196
  414. package/src/components/ConnectingBranch/data.tsx +226 -226
  415. package/src/components/ConnectingBranch/index.ts +1 -1
  416. package/src/components/ConnectingBranch/types.ts +42 -42
  417. package/src/components/CreateVariable/CreateVariableSlider.scss +18 -18
  418. package/src/components/CreateVariable/CreateVariableSlider.stories.tsx +66 -66
  419. package/src/components/CreateVariable/CreateVariableSlider.tsx +95 -95
  420. package/src/components/CreateVariable/index.ts +1 -1
  421. package/src/components/CreateVariable/types.ts +58 -58
  422. package/src/components/DatePicker/DatePicker.scss +723 -723
  423. package/src/components/DatePicker/DatePicker.stories.tsx +193 -193
  424. package/src/components/DatePicker/DatePicker.tsx +502 -502
  425. package/src/components/DatePicker/Timepicker.tsx +372 -372
  426. package/src/components/DatePicker/types.ts +105 -105
  427. package/src/components/DownloadClient/DownloadClient.scss +67 -67
  428. package/src/components/DownloadClient/DownloadClient.stories.tsx +26 -26
  429. package/src/components/DownloadClient/DownloadClient.tsx +90 -90
  430. package/src/components/DownloadClient/type.ts +33 -33
  431. package/src/components/DragAndDrop/DragAndDrop.d.ts +5 -5
  432. package/src/components/DragAndDrop/DragAndDrop.stories.tsx +25 -25
  433. package/src/components/DragAndDrop/DragAndDrop.ts +7 -7
  434. package/src/components/DragAndDrop/DragAndDropList.scss +69 -69
  435. package/src/components/DragAndDrop/DragAndDropList.tsx +151 -151
  436. package/src/components/Drawer/Drawer.scss +139 -139
  437. package/src/components/Drawer/Drawer.stories.tsx +156 -156
  438. package/src/components/Drawer/Drawer.tsx +233 -233
  439. package/src/components/Drawer/Types.ts +161 -161
  440. package/src/components/EditTextField/EditTextField.scss +97 -97
  441. package/src/components/EditTextField/EditTextField.stories.tsx +127 -127
  442. package/src/components/EditTextField/EditTextField.tsx +175 -175
  443. package/src/components/EditTextField/index.ts +1 -1
  444. package/src/components/EditTextField/types.ts +55 -55
  445. package/src/components/Editor/Editor.scss +61 -56
  446. package/src/components/Editor/Editor.stories.tsx +54 -54
  447. package/src/components/Editor/Editor.tsx +250 -250
  448. package/src/components/Editor/VariableDropdown.scss +28 -28
  449. package/src/components/Editor/VariableDropdown.tsx +57 -57
  450. package/src/components/Editor/constants.ts +180 -180
  451. package/src/components/Editor/types.ts +89 -89
  452. package/src/components/Excel/ColorBarSelector/ColorBarSelector.scss +15 -15
  453. package/src/components/Excel/ColorBarSelector/ColorBarSelector.tsx +43 -43
  454. package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.scss +27 -27
  455. package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.tsx +42 -42
  456. package/src/components/Excel/ExcelFile/ExcelFile.scss +56 -56
  457. package/src/components/Excel/ExcelFile/ExcelFile.tsx +512 -512
  458. package/src/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.tsx +155 -148
  459. package/src/components/Excel/ExcelFile/ExcelFileComponents/Cell.tsx +206 -206
  460. package/src/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.tsx +176 -176
  461. package/src/components/Excel/ExcelFile/ExcelFileComponents/Copied.tsx +25 -25
  462. package/src/components/Excel/ExcelFile/ExcelFileComponents/CornerIndicator.tsx +56 -56
  463. package/src/components/Excel/ExcelFile/ExcelFileComponents/DataEditor.tsx +40 -37
  464. package/src/components/Excel/ExcelFile/ExcelFileComponents/DataViewer.tsx +85 -85
  465. package/src/components/Excel/ExcelFile/ExcelFileComponents/FloatingRect.tsx +61 -61
  466. package/src/components/Excel/ExcelFile/ExcelFileComponents/HeaderRow.tsx +7 -7
  467. package/src/components/Excel/ExcelFile/ExcelFileComponents/Row.tsx +5 -5
  468. package/src/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.tsx +157 -157
  469. package/src/components/Excel/ExcelFile/ExcelFileComponents/Selected.tsx +32 -32
  470. package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.scss +201 -201
  471. package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.tsx +531 -531
  472. package/src/components/Excel/ExcelFile/ExcelFileComponents/Table.tsx +19 -19
  473. package/src/components/Excel/ExcelFile/ExcelFileComponents/actions.ts +575 -575
  474. package/src/components/Excel/ExcelFile/ExcelFileComponents/areModelsEqual.ts +18 -18
  475. package/src/components/Excel/ExcelFile/ExcelFileComponents/context.ts +12 -12
  476. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/engine.ts +153 -153
  477. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/formula.ts +31 -31
  478. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/index.ts +2 -2
  479. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-graph.ts +152 -152
  480. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-hash.ts +10 -10
  481. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-set.ts +69 -69
  482. package/src/components/Excel/ExcelFile/ExcelFileComponents/index.ts +49 -49
  483. package/src/components/Excel/ExcelFile/ExcelFileComponents/matrix.ts +382 -382
  484. package/src/components/Excel/ExcelFile/ExcelFileComponents/point-range.ts +82 -82
  485. package/src/components/Excel/ExcelFile/ExcelFileComponents/point.ts +15 -15
  486. package/src/components/Excel/ExcelFile/ExcelFileComponents/reducer.ts +716 -716
  487. package/src/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.ts +886 -886
  488. package/src/components/Excel/ExcelFile/ExcelFileComponents/selection.ts +257 -257
  489. package/src/components/Excel/ExcelFile/ExcelFileComponents/types.ts +266 -266
  490. package/src/components/Excel/ExcelFile/ExcelFileComponents/typings/fast-formula-parser.d.ts +58 -58
  491. package/src/components/Excel/ExcelFile/ExcelFileComponents/use-dispatch.ts +8 -8
  492. package/src/components/Excel/ExcelFile/ExcelFileComponents/use-selector.ts +9 -9
  493. package/src/components/Excel/ExcelFile/ExcelFileComponents/util.ts +172 -172
  494. package/src/components/Excel/ExcelFile.stories.tsx +168 -168
  495. package/src/components/Excel/ExcelToolBar/ExcelToolBar.scss +96 -96
  496. package/src/components/Excel/ExcelToolBar/ExcelToolBar.tsx +434 -434
  497. package/src/components/Excel/Types.ts +196 -196
  498. package/src/components/Excel/dataConversion.ts +196 -196
  499. package/src/components/Excel/index.ts +1 -1
  500. package/src/components/ExpandableMenu/ExpandableMenu.scss +110 -110
  501. package/src/components/ExpandableMenu/ExpandableMenu.stories.tsx +67 -67
  502. package/src/components/ExpandableMenu/ExpandableMenu.tsx +101 -101
  503. package/src/components/ExpandableMenu/index.ts +1 -1
  504. package/src/components/ExpandableMenu/types.ts +34 -34
  505. package/src/components/FF_Captcha/Recaptcha.scss +10 -10
  506. package/src/components/FF_Captcha/Recaptcha.tsx +40 -40
  507. package/src/components/FF_Captcha/captcha.stories.tsx +40 -40
  508. package/src/components/FF_Captcha/types.ts +22 -22
  509. package/src/components/FieldSet/FieldSet.scss +10 -10
  510. package/src/components/FieldSet/FieldSet.stories.tsx +104 -104
  511. package/src/components/FieldSet/FieldSet.tsx +29 -29
  512. package/src/components/FieldSet/index.ts +1 -1
  513. package/src/components/FieldSet/types.ts +8 -8
  514. package/src/components/FileDropzone/Dropzone.tsx +108 -108
  515. package/src/components/FileDropzone/FileDropzone.scss +180 -180
  516. package/src/components/FileDropzone/FileDropzone.stories.tsx +273 -273
  517. package/src/components/FileDropzone/FileDropzone.tsx +166 -166
  518. package/src/components/FileDropzone/FilePreview.tsx +77 -77
  519. package/src/components/FileDropzone/RadioFilePreview.tsx +80 -80
  520. package/src/components/FileDropzone/index.ts +1 -1
  521. package/src/components/FileDropzone/types.ts +207 -207
  522. package/src/components/Form/Form.d.ts +2 -2
  523. package/src/components/Form/Form.scss +158 -158
  524. package/src/components/Form/Form.stories.tsx +508 -508
  525. package/src/components/Form/Form.ts +2 -2
  526. package/src/components/Form/Forms.tsx +39 -39
  527. package/src/components/Form/validation.json +29 -29
  528. package/src/components/GridLayout/GridLayout.scss +69 -69
  529. package/src/components/GridLayout/GridLayout.stories.tsx +90 -90
  530. package/src/components/GridLayout/GridLayout.tsx +39 -39
  531. package/src/components/GridLayout/GridLayoutStory.scss +25 -25
  532. package/src/components/GridLayout/types.ts +84 -84
  533. package/src/components/HighlightText/HighlightText.scss +3 -3
  534. package/src/components/HighlightText/HighlightText.stories.tsx +22 -22
  535. package/src/components/HighlightText/HighlightText.tsx +33 -33
  536. package/src/components/HighlightText/index.ts +1 -1
  537. package/src/components/HighlightText/types.ts +4 -4
  538. package/src/components/Icon/Icon.stories.tsx +113 -65
  539. package/src/components/Icon/Icon.tsx +88 -88
  540. package/src/components/Icon/Icons.scss +50 -50
  541. package/src/components/Icon/iconList.ts +515 -505
  542. package/src/components/Icon/index.ts +1 -1
  543. package/src/components/Icon/types.ts +14 -14
  544. package/src/components/IconButton/IconButton.scss +54 -54
  545. package/src/components/IconButton/IconButton.stories.tsx +34 -34
  546. package/src/components/IconButton/IconButton.tsx +32 -32
  547. package/src/components/IconButton/index.ts +1 -1
  548. package/src/components/IconButton/types.ts +5 -5
  549. package/src/components/IconRadioGroup/IconRadioGroup.scss +64 -64
  550. package/src/components/IconRadioGroup/IconRadioGroup.stories.tsx +108 -108
  551. package/src/components/IconRadioGroup/IconRadioGroup.tsx +73 -73
  552. package/src/components/IconRadioGroup/index.ts +1 -1
  553. package/src/components/IconRadioGroup/type.ts +49 -49
  554. package/src/components/Input/Input.scss +170 -170
  555. package/src/components/Input/Input.stories.tsx +153 -141
  556. package/src/components/Input/Input.tsx +122 -120
  557. package/src/components/Input/types.ts +89 -85
  558. package/src/components/InputWithDropdown/InputWithDropdown.scss +220 -220
  559. package/src/components/InputWithDropdown/InputWithDropdown.stories.tsx +169 -169
  560. package/src/components/InputWithDropdown/InputWithDropdown.tsx +129 -129
  561. package/src/components/InputWithDropdown/index.ts +1 -1
  562. package/src/components/InputWithDropdown/types.ts +113 -113
  563. package/src/components/LabelEditTextField/LabelEditTextField.scss +94 -90
  564. package/src/components/LabelEditTextField/LabelEditTextField.stories.tsx +198 -197
  565. package/src/components/LabelEditTextField/LabelEditTextField.tsx +267 -263
  566. package/src/components/LabelEditTextField/index.ts +1 -1
  567. package/src/components/LabelEditTextField/types.ts +51 -49
  568. package/src/components/LazyLoad/LazyLoad.d.ts +3 -3
  569. package/src/components/LazyLoad/LazyLoad.stories.tsx +33 -33
  570. package/src/components/LazyLoad/LazyLoad.ts +2 -2
  571. package/src/components/LazyLoad/LazyLoading.tsx +19 -19
  572. package/src/components/LazyLoad/index.ts +1 -1
  573. package/src/components/MachineInputField/MachineInputField.scss +59 -55
  574. package/src/components/MachineInputField/MachineInputField.stories.tsx +33 -33
  575. package/src/components/MachineInputField/MachineInputField.tsx +85 -84
  576. package/src/components/MachineInputField/index.ts +1 -1
  577. package/src/components/MachineInputField/types.ts +15 -15
  578. package/src/components/MenuOption/MenuOption.scss +97 -97
  579. package/src/components/MenuOption/MenuOption.stories.tsx +212 -212
  580. package/src/components/MenuOption/MenuOption.tsx +222 -222
  581. package/src/components/MenuOption/types.ts +231 -231
  582. package/src/components/MiniModal/MiniModal.scss +169 -169
  583. package/src/components/MiniModal/MiniModal.stories.tsx +740 -740
  584. package/src/components/MiniModal/MiniModal.tsx +346 -346
  585. package/src/components/MiniModal/index.ts +1 -1
  586. package/src/components/MiniModal/types.ts +124 -124
  587. package/src/components/Modal/Modal.stories.tsx +70 -70
  588. package/src/components/Modal/Modal.tsx +100 -100
  589. package/src/components/Modal/index.tsx +1 -1
  590. package/src/components/Modal/modal.scss +51 -51
  591. package/src/components/Modal/types.ts +43 -43
  592. package/src/components/ModulesChip/ModuleChip.scss +33 -33
  593. package/src/components/ModulesChip/ModuleChip.stories.tsx +41 -41
  594. package/src/components/ModulesChip/ModuleChip.tsx +28 -28
  595. package/src/components/ModulesChip/types.ts +14 -14
  596. package/src/components/MultiSelect/Dropdown.scss +77 -77
  597. package/src/components/MultiSelect/Dropdown.tsx +169 -169
  598. package/src/components/MultiSelect/MultiSelect.scss +247 -247
  599. package/src/components/MultiSelect/MultiSelect.stories.tsx +290 -290
  600. package/src/components/MultiSelect/MultiSelect.tsx +486 -486
  601. package/src/components/MultiSelect/MultiSelectTypes.ts +49 -49
  602. package/src/components/MultiSelect/dropdownTypes.ts +21 -21
  603. package/src/components/MultiSelect/index.ts +1 -1
  604. package/src/components/NLPInput/NLPInput.scss +302 -302
  605. package/src/components/NLPInput/NlpInput.stories.tsx +70 -70
  606. package/src/components/NLPInput/NlpInput.tsx +410 -410
  607. package/src/components/NLPInput/components/NlpDropDown/NlpDropDownType.ts +62 -62
  608. package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.scss +134 -134
  609. package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.tsx +320 -320
  610. package/src/components/NLPInput/index.ts +1 -1
  611. package/src/components/NLPInput/sampleData.ts +161 -161
  612. package/src/components/NLPInput/types.tsx +136 -136
  613. package/src/components/Paper/Paper.scss +13 -13
  614. package/src/components/Paper/Paper.stories.tsx +77 -77
  615. package/src/components/Paper/Paper.tsx +14 -14
  616. package/src/components/Paper/types.ts +19 -19
  617. package/src/components/PhoneInput/PhoneInput.d.ts +3 -3
  618. package/src/components/PhoneInput/PhoneInput.stories.tsx +70 -70
  619. package/src/components/PhoneInput/PhoneInput.tsx +98 -98
  620. package/src/components/PhoneInput/index.ts +1 -1
  621. package/src/components/PhoneInput/phoneInput.scss +901 -901
  622. package/src/components/PhoneInput/types.ts +16 -16
  623. package/src/components/PopUpModal/PopUpModal.scss +36 -36
  624. package/src/components/PopUpModal/PopUpModal.stories.tsx +67 -67
  625. package/src/components/PopUpModal/PopUpModal.tsx +87 -87
  626. package/src/components/PopUpModal/types.ts +17 -17
  627. package/src/components/ProgressBar/ProgressBar.scss +46 -46
  628. package/src/components/ProgressBar/ProgressBar.stories.tsx +22 -22
  629. package/src/components/ProgressBar/ProgressBar.tsx +61 -61
  630. package/src/components/ProgressBar/types.ts +12 -12
  631. package/src/components/RadioButton/RadioButton.scss +106 -106
  632. package/src/components/RadioButton/RadioButton.stories.tsx +43 -43
  633. package/src/components/RadioButton/RadioButton.tsx +41 -41
  634. package/src/components/RadioButton/index.ts +1 -1
  635. package/src/components/RadioButton/radioButtonTypes.tsx +62 -62
  636. package/src/components/RadioGroup/RadioGroup.scss +11 -11
  637. package/src/components/RadioGroup/RadioGroup.stories.tsx +150 -150
  638. package/src/components/RadioGroup/RadioGroup.tsx +49 -49
  639. package/src/components/RadioGroup/index.ts +1 -1
  640. package/src/components/RadioGroup/radioGroupTypes.tsx +96 -96
  641. package/src/components/ScriptSwitchButton/ScriptSwitchButton.scss +33 -33
  642. package/src/components/ScriptSwitchButton/ScriptSwitchButton.stories.tsx +48 -48
  643. package/src/components/ScriptSwitchButton/ScriptSwitchButton.tsx +65 -65
  644. package/src/components/ScriptSwitchButton/index.ts +1 -1
  645. package/src/components/Search/Search.scss +103 -103
  646. package/src/components/Search/Search.stories.tsx +44 -44
  647. package/src/components/Search/Search.tsx +138 -138
  648. package/src/components/Search/index.ts +1 -1
  649. package/src/components/Search/types.ts +19 -19
  650. package/src/components/Select/Select.scss +213 -213
  651. package/src/components/Select/Select.stories.tsx +355 -355
  652. package/src/components/Select/Select.tsx +278 -278
  653. package/src/components/Select/components/Dropdown.scss +61 -61
  654. package/src/components/Select/components/Dropdown.tsx +140 -140
  655. package/src/components/Select/components/types.ts +24 -24
  656. package/src/components/Select/index.ts +1 -1
  657. package/src/components/Select/types.ts +134 -134
  658. package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.scss +128 -128
  659. package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.tsx +67 -67
  660. package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.tsx +186 -184
  661. package/src/components/SequentialConnectingBranch/components/Branches/Branches.scss +191 -191
  662. package/src/components/SequentialConnectingBranch/components/Branches/Branches.tsx +326 -318
  663. package/src/components/SequentialConnectingBranch/components/Branches/types.ts +33 -32
  664. package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.scss +3 -3
  665. package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.tsx +78 -76
  666. package/src/components/SequentialConnectingBranch/components/ConnectingBranches/types.ts +25 -24
  667. package/src/components/SequentialConnectingBranch/index.ts +1 -1
  668. package/src/components/SequentialConnectingBranch/types.ts +66 -62
  669. package/src/components/StateDropdown/StateDropdown.stories.tsx +104 -104
  670. package/src/components/StateDropdown/StateDropdown.tsx +245 -245
  671. package/src/components/StateDropdown/StateDropdownTypes.tsx +27 -27
  672. package/src/components/StatusButton/StatusButton.scss +90 -90
  673. package/src/components/StatusButton/StatusButton.stories.tsx +91 -91
  674. package/src/components/StatusButton/StatusButton.tsx +46 -46
  675. package/src/components/StatusButton/index.ts +1 -1
  676. package/src/components/StatusButton/types.ts +45 -45
  677. package/src/components/StatusCard/StatusCard.scss +138 -138
  678. package/src/components/StatusCard/StatusCard.stories.tsx +117 -117
  679. package/src/components/StatusCard/StatusCard.tsx +80 -80
  680. package/src/components/StatusCard/index.ts +1 -1
  681. package/src/components/StatusCard/types.ts +18 -18
  682. package/src/components/Table/Table.scss +118 -118
  683. package/src/components/Table/Table.stories.tsx +373 -373
  684. package/src/components/Table/Table.tsx +178 -178
  685. package/src/components/Table/Types.ts +124 -124
  686. package/src/components/Table/index.ts +1 -1
  687. package/src/components/TableTree/Components/TableBody.tsx +41 -41
  688. package/src/components/TableTree/Components/TableCell.tsx +75 -75
  689. package/src/components/TableTree/Components/TableHead.tsx +39 -39
  690. package/src/components/TableTree/Components/TableRow.tsx +41 -41
  691. package/src/components/TableTree/TableTree.scss +210 -217
  692. package/src/components/TableTree/TableTree.stories.tsx +176 -176
  693. package/src/components/TableTree/TableTree.tsx +72 -91
  694. package/src/components/TableTree/TableTreeStories.scss +22 -22
  695. package/src/components/TableTree/Utils/getAllChildIds.ts +14 -14
  696. package/src/components/TableTree/data.ts +368 -368
  697. package/src/components/TableTree/index.ts +1 -1
  698. package/src/components/TableTree/types.ts +72 -72
  699. package/src/components/TableWithAccordion/TableWithAccordion.scss +54 -54
  700. package/src/components/TableWithAccordion/TableWithAccordion.stories.tsx +94 -94
  701. package/src/components/TableWithAccordion/TableWithAccordion.tsx +174 -174
  702. package/src/components/TableWithAccordion/data.ts +36 -36
  703. package/src/components/TableWithAccordion/types.ts +69 -69
  704. package/src/components/Tabs/Tabs.scss +132 -132
  705. package/src/components/Tabs/Tabs.stories.tsx +153 -153
  706. package/src/components/Tabs/Tabs.tsx +71 -71
  707. package/src/components/Tabs/index.ts +1 -1
  708. package/src/components/Tabs/types.ts +48 -48
  709. package/src/components/TextArea/Textarea.scss +144 -144
  710. package/src/components/TextArea/Textarea.stories.tsx +92 -92
  711. package/src/components/TextArea/Textarea.tsx +86 -86
  712. package/src/components/TextArea/Types.ts +85 -85
  713. package/src/components/TextArea/index.tsx +1 -1
  714. package/src/components/ThemeProvider/ThemeProvider.tsx +27 -27
  715. package/src/components/ThemeProvider/index.ts +1 -1
  716. package/src/components/ThemeProvider/types.ts +14 -14
  717. package/src/components/Toast/Toast.scss +121 -121
  718. package/src/components/Toast/Toast.stories.tsx +144 -144
  719. package/src/components/Toast/Toast.tsx +117 -117
  720. package/src/components/Toast/index.ts +1 -1
  721. package/src/components/Toast/types.ts +27 -27
  722. package/src/components/Toastify/Toastify.stories.tsx +71 -71
  723. package/src/components/Toastify/Toastify.tsx +95 -95
  724. package/src/components/Toastify/index.ts +1 -1
  725. package/src/components/Toastify/types.ts +9 -9
  726. package/src/components/Toggle/Toggle.scss +133 -133
  727. package/src/components/Toggle/Toggle.stories.tsx +132 -132
  728. package/src/components/Toggle/Toggle.tsx +96 -96
  729. package/src/components/Toggle/index.ts +1 -1
  730. package/src/components/Toggle/types.ts +43 -43
  731. package/src/components/ToggleSwitch/ToggleSwitch.scss +58 -58
  732. package/src/components/ToggleSwitch/ToggleSwitch.stories.tsx +52 -52
  733. package/src/components/ToggleSwitch/ToggleSwitch.tsx +30 -30
  734. package/src/components/ToggleSwitch/index.ts +1 -1
  735. package/src/components/Tooltip/Tooltip.scss +27 -27
  736. package/src/components/Tooltip/Tooltip.stories.tsx +98 -98
  737. package/src/components/Tooltip/Tooltip.tsx +194 -194
  738. package/src/components/Tooltip/index.ts +1 -1
  739. package/src/components/Tooltip/types.ts +66 -66
  740. package/src/components/Typography/Typography.scss +25 -25
  741. package/src/components/Typography/Typography.stories.tsx +59 -59
  742. package/src/components/Typography/Typography.tsx +41 -41
  743. package/src/components/Typography/index.ts +1 -1
  744. package/src/components/Typography/types.ts +57 -57
  745. package/src/components/VariableInput/VariableInput.scss +127 -127
  746. package/src/components/VariableInput/VariableInput.stories.tsx +32 -32
  747. package/src/components/VariableInput/VariableInput.tsx +352 -352
  748. package/src/components/VariableInput/types.ts +56 -56
  749. package/src/hooks/keyboardevents/useEscKeyEvent.tsx +30 -30
  750. package/src/hooks/useClickOutside.tsx +30 -30
  751. package/src/hooks/useFileDropzone.tsx +275 -275
  752. package/src/hooks/useIntersectionObserver.tsx +56 -56
  753. package/src/hooks/usePortalPosition.tsx +53 -53
  754. package/src/hooks/useTheme.tsx +13 -13
  755. package/src/index.ts +302 -302
  756. package/src/utils/FormatString/FormatString.stories.tsx +58 -58
  757. package/src/utils/FormatString/FormatString.tsx +41 -41
  758. package/src/utils/TableCell/TableCell.ts +16 -16
  759. package/src/utils/capitalize/capitalize.stories.tsx +44 -44
  760. package/src/utils/capitalize/capitalize.tsx +4 -4
  761. package/src/utils/checkDuplicates/CheckDuplicates.stories.tsx +40 -40
  762. package/src/utils/checkDuplicates/checkDuplicates.ts +13 -13
  763. package/src/utils/checkEmpty/checkEmpty.stories.tsx +34 -34
  764. package/src/utils/checkEmpty/checkEmpty.ts +24 -24
  765. package/src/utils/compareArrays/compareArrays.stories.tsx +62 -62
  766. package/src/utils/compareArrays/compareArrays.ts +31 -31
  767. package/src/utils/compareObjects/compareObjects.stories.tsx +51 -51
  768. package/src/utils/compareObjects/compareObjects.ts +53 -53
  769. package/src/utils/debounce/debounce.stories.tsx +81 -81
  770. package/src/utils/debounce/debounce.ts +28 -28
  771. package/src/utils/downloadFile/saveFileFromBlob.stories.tsx +62 -62
  772. package/src/utils/downloadFile/saveFileFromBlob.ts +40 -40
  773. package/src/utils/ffID/ffID.stories.tsx +35 -35
  774. package/src/utils/ffID/ffid.ts +7 -7
  775. package/src/utils/findAndInsert/findAndInsert.stories.tsx +119 -119
  776. package/src/utils/findAndInsert/findAndInsert.ts +49 -49
  777. package/src/utils/formData/ConvertFormDataToObject.stories.tsx +27 -0
  778. package/src/utils/formData/ConvertFormDataToObject.ts +14 -0
  779. package/src/utils/functionCheck/functionCheck.ts +8 -8
  780. package/src/utils/getEncryptedData/getEncryptedData.stories.tsx +55 -55
  781. package/src/utils/getEncryptedData/getEncryptedData.ts +8 -8
  782. package/src/utils/getExtension/getExtension.stories.tsx +24 -23
  783. package/src/utils/getExtension/getExtension.ts +28 -28
  784. package/src/utils/getSelectOptionValue/getSelectOptionValue.ts +31 -31
  785. package/src/utils/getSequentialPayload/getSequentialPayload.stories.tsx +72 -72
  786. package/src/utils/getSequentialPayload/getSequentialPayload.ts +16 -16
  787. package/src/utils/getSequentialPayload/types.ts +33 -33
  788. package/src/utils/throttle/throttle.stories.tsx +100 -100
  789. package/src/utils/throttle/throttle.ts +33 -33
  790. package/src/utils/truncateText/truncateText.stories.tsx +37 -37
  791. package/src/utils/truncateText/truncateText.ts +4 -4
  792. package/src/utils/validateFile/validateFile.stories.tsx +49 -49
  793. package/src/utils/validateFile/validateFile.ts +39 -39
  794. package/src/validations/regex.stories.tsx +418 -362
  795. package/src/validations/regex.ts +224 -194
  796. package/tsconfig.json +55 -55
  797. package/vite.config.js +14 -14
  798. package/lib/assets/fonts/Poppins-Bold.ttf +0 -0
  799. package/lib/assets/fonts/Poppins-Medium.ttf +0 -0
  800. package/lib/assets/fonts/Poppins-Regular.ttf +0 -0
  801. package/lib/assets/fonts/Poppins-SemiBold.ttf +0 -0
  802. package/lib/components/Excel/ContextMenu/ContextMenu.d.ts +0 -4
  803. package/lib/components/TableTree/TableTree copy.d.ts +0 -25
  804. package/src/assets/images/photo.png +0 -0
@@ -1,5 +1,5 @@
1
- <svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M6.99998 12.1081C9.867 12.1081 12.1892 9.78589 12.1892 6.91887V-6.10352e-05H10.027V6.91887C10.027 8.59238 8.67349 9.9459 6.99998 9.9459C5.32646 9.9459 3.97294 8.59238 3.97294 6.91887V-6.10352e-05H1.81079V6.91887C1.81079 9.78589 4.13295 12.1081 6.99998 12.1081Z" fill="currentColor"/>
3
- <path d="M13.0542 15.027H0.946045V15.9999H13.0542V15.027Z" fill="currentColor"/>
4
- <path d="M13.0542 13.081H0.946045V14.054H13.0542V13.081Z" fill="currentColor"/>
5
- </svg>
1
+ <svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.99998 12.1081C9.867 12.1081 12.1892 9.78589 12.1892 6.91887V-6.10352e-05H10.027V6.91887C10.027 8.59238 8.67349 9.9459 6.99998 9.9459C5.32646 9.9459 3.97294 8.59238 3.97294 6.91887V-6.10352e-05H1.81079V6.91887C1.81079 9.78589 4.13295 12.1081 6.99998 12.1081Z" fill="currentColor"/>
3
+ <path d="M13.0542 15.027H0.946045V15.9999H13.0542V15.027Z" fill="currentColor"/>
4
+ <path d="M13.0542 13.081H0.946045V14.054H13.0542V13.081Z" fill="currentColor"/>
5
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M12.4444 16H3.55555C2.60588 16 1.71302 15.6302 1.04142 14.9586C0.369847 14.287 0 13.3941 0 12.4444V11.5555C0 11.0646 0.397948 10.6666 0.888894 10.6666C1.37984 10.6666 1.77779 11.0646 1.77779 11.5555V12.4444C1.77779 12.9193 1.96273 13.3657 2.29845 13.7015C2.63426 14.0372 3.08068 14.2222 3.55555 14.2222H12.4444C12.9193 14.2222 13.3657 14.0372 13.7015 13.7015C14.0372 13.3656 14.2222 12.9192 14.2222 12.4444V11.5555C14.2222 11.0646 14.6202 10.6666 15.1111 10.6666C15.602 10.6666 16 11.0646 16 11.5555V12.4444C16 13.3941 15.6302 14.2869 14.9586 14.9586C14.287 15.6302 13.3941 16 12.4444 16ZM7.99998 12.4444C7.87702 12.4444 7.75996 12.4194 7.65346 12.3743C7.55409 12.3323 7.46072 12.2713 7.37903 12.1916C7.379 12.1915 7.379 12.1915 7.37897 12.1915C7.37838 12.191 7.37779 12.1904 7.3772 12.1898C7.37704 12.1897 7.37685 12.1894 7.3767 12.1893C7.3762 12.1888 7.37577 12.1884 7.3753 12.1879C7.37499 12.1876 7.37471 12.1874 7.3744 12.187C7.37409 12.1867 7.37369 12.1863 7.37341 12.186C7.37279 12.1854 7.3721 12.1847 7.37148 12.1841L3.81591 8.62852C3.46879 8.2814 3.46879 7.71857 3.81591 7.37142C4.16302 7.0243 4.72588 7.02427 5.073 7.37142L7.11112 9.40954V0.888894C7.11109 0.397948 7.50904 0 7.99998 0C8.49093 0 8.88891 0.397948 8.88891 0.888894V9.40951L10.927 7.37142C11.2741 7.0243 11.837 7.0243 12.1841 7.37142C12.5312 7.71854 12.5312 8.2814 12.1841 8.62852L8.62852 12.1841C8.6279 12.1847 8.62721 12.1854 8.62659 12.186C8.62625 12.1863 8.62588 12.1867 8.6256 12.1869C8.62529 12.1873 8.62501 12.1875 8.6247 12.1878C8.62426 12.1883 8.62377 12.1888 8.62333 12.1892C8.62318 12.1894 8.62296 12.1896 8.6228 12.1897C8.62224 12.1903 8.62165 12.1909 8.62106 12.1915C8.62103 12.1915 8.62103 12.1915 8.621 12.1915C8.61122 12.201 8.60132 12.2103 8.59119 12.2193C8.51676 12.2857 8.43386 12.3375 8.3462 12.3744C8.34589 12.3745 8.34564 12.3747 8.34533 12.3748C8.34499 12.3749 8.34471 12.3751 8.34437 12.3752C8.23842 12.4198 8.12211 12.4444 7.99998 12.4444Z" fill="currentColor"/>
3
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.4444 16H3.55555C2.60588 16 1.71302 15.6302 1.04142 14.9586C0.369847 14.287 0 13.3941 0 12.4444V11.5555C0 11.0646 0.397948 10.6666 0.888894 10.6666C1.37984 10.6666 1.77779 11.0646 1.77779 11.5555V12.4444C1.77779 12.9193 1.96273 13.3657 2.29845 13.7015C2.63426 14.0372 3.08068 14.2222 3.55555 14.2222H12.4444C12.9193 14.2222 13.3657 14.0372 13.7015 13.7015C14.0372 13.3656 14.2222 12.9192 14.2222 12.4444V11.5555C14.2222 11.0646 14.6202 10.6666 15.1111 10.6666C15.602 10.6666 16 11.0646 16 11.5555V12.4444C16 13.3941 15.6302 14.2869 14.9586 14.9586C14.287 15.6302 13.3941 16 12.4444 16ZM7.99998 12.4444C7.87702 12.4444 7.75996 12.4194 7.65346 12.3743C7.55409 12.3323 7.46072 12.2713 7.37903 12.1916C7.379 12.1915 7.379 12.1915 7.37897 12.1915C7.37838 12.191 7.37779 12.1904 7.3772 12.1898C7.37704 12.1897 7.37685 12.1894 7.3767 12.1893C7.3762 12.1888 7.37577 12.1884 7.3753 12.1879C7.37499 12.1876 7.37471 12.1874 7.3744 12.187C7.37409 12.1867 7.37369 12.1863 7.37341 12.186C7.37279 12.1854 7.3721 12.1847 7.37148 12.1841L3.81591 8.62852C3.46879 8.2814 3.46879 7.71857 3.81591 7.37142C4.16302 7.0243 4.72588 7.02427 5.073 7.37142L7.11112 9.40954V0.888894C7.11109 0.397948 7.50904 0 7.99998 0C8.49093 0 8.88891 0.397948 8.88891 0.888894V9.40951L10.927 7.37142C11.2741 7.0243 11.837 7.0243 12.1841 7.37142C12.5312 7.71854 12.5312 8.2814 12.1841 8.62852L8.62852 12.1841C8.6279 12.1847 8.62721 12.1854 8.62659 12.186C8.62625 12.1863 8.62588 12.1867 8.6256 12.1869C8.62529 12.1873 8.62501 12.1875 8.6247 12.1878C8.62426 12.1883 8.62377 12.1888 8.62333 12.1892C8.62318 12.1894 8.62296 12.1896 8.6228 12.1897C8.62224 12.1903 8.62165 12.1909 8.62106 12.1915C8.62103 12.1915 8.62103 12.1915 8.621 12.1915C8.61122 12.201 8.60132 12.2103 8.59119 12.2193C8.51676 12.2857 8.43386 12.3375 8.3462 12.3744C8.34589 12.3745 8.34564 12.3747 8.34533 12.3748C8.34499 12.3749 8.34471 12.3751 8.34437 12.3752C8.23842 12.4198 8.12211 12.4444 7.99998 12.4444Z" fill="currentColor"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M12.0873 3.69067L9.85758 1.36667C9.01086 0.485333 7.88574 0 6.68958 0H3.79998C2.0355 0 0.599976 1.49533 0.599976 3.33333V12.6667C0.599976 14.5047 2.0355 16 3.79998 16H10.2C11.9645 16 13.4 14.5047 13.4 12.6667V6.99C13.4 5.74267 12.9334 4.572 12.0873 3.69067ZM11.1824 4.634C11.3859 4.84533 11.5581 5.08067 11.6976 5.334H8.91934C8.56606 5.334 8.27934 5.03467 8.27934 4.66733V1.77267C8.52254 1.918 8.74846 2.09733 8.95198 2.30933L11.1817 4.63333L11.1824 4.634ZM12.12 12.6673C12.12 13.77 11.2585 14.6673 10.2 14.6673H3.79998C2.74142 14.6673 1.87998 13.77 1.87998 12.6673V3.33333C1.87998 2.23067 2.74142 1.33333 3.79998 1.33333H6.68958C6.7939 1.33333 6.89758 1.33867 6.99998 1.34867V4.66667C6.99998 5.76933 7.86142 6.66667 8.91998 6.66667H12.1053C12.1149 6.77333 12.12 6.88133 12.12 6.99V12.6673ZM9.37246 10.7373C9.62269 10.9973 9.62269 11.4193 9.37246 11.68L8.34014 12.756C7.97086 13.1407 7.4851 13.3333 6.99998 13.3333C6.51486 13.3333 6.0291 13.1407 5.65982 12.756L4.6275 11.68C4.37726 11.4193 4.37726 10.9973 4.6275 10.7373C4.87774 10.4767 5.28222 10.4767 5.53246 10.7373L6.35998 11.5993V8.66733C6.35998 8.29933 6.64606 8.00067 6.99998 8.00067C7.3539 8.00067 7.63998 8.29933 7.63998 8.66733V11.5993L8.4675 10.7373C8.71774 10.4767 9.12222 10.4767 9.37246 10.7373Z" fill="#71347B"/>
3
- </svg>
1
+ <svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.0873 3.69067L9.85758 1.36667C9.01086 0.485333 7.88574 0 6.68958 0H3.79998C2.0355 0 0.599976 1.49533 0.599976 3.33333V12.6667C0.599976 14.5047 2.0355 16 3.79998 16H10.2C11.9645 16 13.4 14.5047 13.4 12.6667V6.99C13.4 5.74267 12.9334 4.572 12.0873 3.69067ZM11.1824 4.634C11.3859 4.84533 11.5581 5.08067 11.6976 5.334H8.91934C8.56606 5.334 8.27934 5.03467 8.27934 4.66733V1.77267C8.52254 1.918 8.74846 2.09733 8.95198 2.30933L11.1817 4.63333L11.1824 4.634ZM12.12 12.6673C12.12 13.77 11.2585 14.6673 10.2 14.6673H3.79998C2.74142 14.6673 1.87998 13.77 1.87998 12.6673V3.33333C1.87998 2.23067 2.74142 1.33333 3.79998 1.33333H6.68958C6.7939 1.33333 6.89758 1.33867 6.99998 1.34867V4.66667C6.99998 5.76933 7.86142 6.66667 8.91998 6.66667H12.1053C12.1149 6.77333 12.12 6.88133 12.12 6.99V12.6673ZM9.37246 10.7373C9.62269 10.9973 9.62269 11.4193 9.37246 11.68L8.34014 12.756C7.97086 13.1407 7.4851 13.3333 6.99998 13.3333C6.51486 13.3333 6.0291 13.1407 5.65982 12.756L4.6275 11.68C4.37726 11.4193 4.37726 10.9973 4.6275 10.7373C4.87774 10.4767 5.28222 10.4767 5.53246 10.7373L6.35998 11.5993V8.66733C6.35998 8.29933 6.64606 8.00067 6.99998 8.00067C7.3539 8.00067 7.63998 8.29933 7.63998 8.66733V11.5993L8.4675 10.7373C8.71774 10.4767 9.12222 10.4767 9.37246 10.7373Z" fill="#71347B"/>
3
+ </svg>
@@ -1,4 +1,4 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M12.4444 16H3.55555C2.60588 16 1.71302 15.6302 1.04142 14.9586C0.369847 14.287 0 13.3941 0 12.4444V11.5555C0 11.0646 0.397948 10.6666 0.888894 10.6666C1.37984 10.6666 1.77779 11.0646 1.77779 11.5555V12.4444C1.77779 12.9193 1.96273 13.3657 2.29845 13.7015C2.63426 14.0372 3.08068 14.2222 3.55555 14.2222H12.4444C12.9193 14.2222 13.3657 14.0372 13.7015 13.7015C14.0372 13.3656 14.2222 12.9192 14.2222 12.4444V11.5555C14.2222 11.0646 14.6202 10.6666 15.1111 10.6666C15.602 10.6666 16 11.0646 16 11.5555V12.4444C16 13.3941 15.6302 14.2869 14.9586 14.9586C14.287 15.6302 13.3941 16 12.4444 16ZM7.99998 12.4444C7.87702 12.4444 7.75996 12.4194 7.65346 12.3743C7.55409 12.3323 7.46072 12.2713 7.37903 12.1916C7.379 12.1915 7.379 12.1915 7.37897 12.1915C7.37838 12.191 7.37779 12.1904 7.3772 12.1898C7.37704 12.1897 7.37685 12.1894 7.3767 12.1893C7.3762 12.1888 7.37577 12.1884 7.3753 12.1879C7.37499 12.1876 7.37471 12.1874 7.3744 12.187C7.37409 12.1867 7.37369 12.1863 7.37341 12.186C7.37279 12.1854 7.3721 12.1847 7.37148 12.1841L3.81591 8.62852C3.46879 8.2814 3.46879 7.71857 3.81591 7.37142C4.16302 7.0243 4.72588 7.02427 5.073 7.37142L7.11112 9.40954V0.888894C7.11109 0.397948 7.50904 0 7.99998 0C8.49093 0 8.88891 0.397948 8.88891 0.888894V9.40951L10.927 7.37142C11.2741 7.0243 11.837 7.0243 12.1841 7.37142C12.5312 7.71854 12.5312 8.2814 12.1841 8.62852L8.62852 12.1841C8.6279 12.1847 8.62721 12.1854 8.62659 12.186C8.62625 12.1863 8.62588 12.1867 8.6256 12.1869C8.62529 12.1873 8.62501 12.1875 8.6247 12.1878C8.62426 12.1883 8.62377 12.1888 8.62333 12.1892C8.62318 12.1894 8.62296 12.1896 8.6228 12.1897C8.62224 12.1903 8.62165 12.1909 8.62106 12.1915C8.62103 12.1915 8.62103 12.1915 8.621 12.1915C8.61122 12.201 8.60132 12.2103 8.59119 12.2193C8.51676 12.2857 8.43386 12.3375 8.3462 12.3744C8.34589 12.3745 8.34564 12.3747 8.34533 12.3748C8.34499 12.3749 8.34471 12.3751 8.34437 12.3752C8.23842 12.4198 8.12211 12.4444 7.99998 12.4444Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M12.6538 0.680511C12.7083 0.652702 12.7638 0.62438 12.8319 0.583147L12.7921 0.562091C12.6938 0.502444 12.5874 0.445891 12.4791 0.388243C12.4274 0.360745 12.3752 0.332996 12.3232 0.304544C12.145 0.18273 11.9496 0.0888035 11.7437 0.0259412C11.5949 -0.0175826 11.4357 -0.00606335 11.2946 0.0584227C11.1536 0.122909 11.0399 0.236125 10.9742 0.377692C10.896 0.547176 10.8611 0.733682 10.8725 0.920274C10.8725 2.09321 10.8869 3.28044 10.9014 4.45338C10.8942 4.6937 10.9087 4.93419 10.9449 5.17184C10.96 5.25988 10.9921 5.34404 11.0395 5.41952C11.0868 5.495 11.1484 5.5603 11.2208 5.61169C11.3193 5.6748 11.4314 5.71306 11.5476 5.72324C11.6638 5.73343 11.7808 5.71524 11.8886 5.6702C11.9465 5.65557 11.961 5.61136 11.961 5.55285V1.1111C11.9588 1.09371 11.9617 1.07607 11.9695 1.06038C11.9772 1.04469 11.9894 1.03168 12.0045 1.023C12.1133 0.964318 12.2186 0.909378 12.3239 0.854439C12.4291 0.799499 12.5344 0.744559 12.6432 0.685879C12.6468 0.68409 12.6503 0.682301 12.6538 0.680511ZM12.8319 3.82234V5.09801C12.9481 5.02519 13.064 4.95139 13.1947 4.86069C13.4053 4.73602 13.6121 4.61509 13.819 4.49415C14.0258 4.37322 14.2327 4.25229 14.4433 4.12761C14.6147 4.03049 14.7822 3.92908 14.9499 3.82761C15.1088 3.73141 15.2679 3.63516 15.4304 3.54244C15.5844 3.46114 15.7223 3.35181 15.837 3.21995C15.9243 3.12454 15.9797 3.00385 15.9954 2.87492C16.011 2.746 15.9862 2.61537 15.9243 2.5015C15.8262 2.3264 15.6799 2.18377 15.5032 2.0909C15.2566 1.95924 15.0241 1.82725 14.792 1.69526C14.6096 1.5919 14.4228 1.4837 14.2364 1.37572C14.0816 1.28605 13.927 1.19653 13.7755 1.1101C13.7621 1.10284 13.7471 1.09905 13.7319 1.09905C13.7167 1.09905 13.7017 1.10284 13.6883 1.1101C13.5421 1.2207 13.3903 1.32552 13.2364 1.43183C13.1455 1.49457 13.0539 1.55782 12.9623 1.6231C12.9481 1.63602 12.9368 1.6519 12.9293 1.66964C12.9218 1.68737 12.9182 1.70655 12.9188 1.72583V2.66404C12.926 2.66404 12.9297 2.66038 12.9333 2.65673C12.9369 2.65307 12.9405 2.64941 12.9478 2.64941C13.0857 2.56147 13.22 2.4772 13.3542 2.39292C13.4885 2.30864 13.6228 2.22436 13.7607 2.13642C13.7714 2.12901 13.7841 2.12504 13.7971 2.12504C13.8101 2.12504 13.8228 2.12901 13.8335 2.13642C13.9411 2.20152 14.0488 2.26313 14.1565 2.32473C14.2666 2.38772 14.3767 2.4507 14.4867 2.51743C14.5769 2.56064 14.6642 2.60961 14.7482 2.66404C14.6033 2.75214 14.4726 2.82562 14.3418 2.89876C13.8624 3.17704 13.3689 3.45564 12.8753 3.73425C12.8615 3.74419 12.8502 3.75743 12.8427 3.7728C12.8351 3.78817 12.8314 3.80518 12.8319 3.82234Z" fill="currentColor"/>
4
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.4444 16H3.55555C2.60588 16 1.71302 15.6302 1.04142 14.9586C0.369847 14.287 0 13.3941 0 12.4444V11.5555C0 11.0646 0.397948 10.6666 0.888894 10.6666C1.37984 10.6666 1.77779 11.0646 1.77779 11.5555V12.4444C1.77779 12.9193 1.96273 13.3657 2.29845 13.7015C2.63426 14.0372 3.08068 14.2222 3.55555 14.2222H12.4444C12.9193 14.2222 13.3657 14.0372 13.7015 13.7015C14.0372 13.3656 14.2222 12.9192 14.2222 12.4444V11.5555C14.2222 11.0646 14.6202 10.6666 15.1111 10.6666C15.602 10.6666 16 11.0646 16 11.5555V12.4444C16 13.3941 15.6302 14.2869 14.9586 14.9586C14.287 15.6302 13.3941 16 12.4444 16ZM7.99998 12.4444C7.87702 12.4444 7.75996 12.4194 7.65346 12.3743C7.55409 12.3323 7.46072 12.2713 7.37903 12.1916C7.379 12.1915 7.379 12.1915 7.37897 12.1915C7.37838 12.191 7.37779 12.1904 7.3772 12.1898C7.37704 12.1897 7.37685 12.1894 7.3767 12.1893C7.3762 12.1888 7.37577 12.1884 7.3753 12.1879C7.37499 12.1876 7.37471 12.1874 7.3744 12.187C7.37409 12.1867 7.37369 12.1863 7.37341 12.186C7.37279 12.1854 7.3721 12.1847 7.37148 12.1841L3.81591 8.62852C3.46879 8.2814 3.46879 7.71857 3.81591 7.37142C4.16302 7.0243 4.72588 7.02427 5.073 7.37142L7.11112 9.40954V0.888894C7.11109 0.397948 7.50904 0 7.99998 0C8.49093 0 8.88891 0.397948 8.88891 0.888894V9.40951L10.927 7.37142C11.2741 7.0243 11.837 7.0243 12.1841 7.37142C12.5312 7.71854 12.5312 8.2814 12.1841 8.62852L8.62852 12.1841C8.6279 12.1847 8.62721 12.1854 8.62659 12.186C8.62625 12.1863 8.62588 12.1867 8.6256 12.1869C8.62529 12.1873 8.62501 12.1875 8.6247 12.1878C8.62426 12.1883 8.62377 12.1888 8.62333 12.1892C8.62318 12.1894 8.62296 12.1896 8.6228 12.1897C8.62224 12.1903 8.62165 12.1909 8.62106 12.1915C8.62103 12.1915 8.62103 12.1915 8.621 12.1915C8.61122 12.201 8.60132 12.2103 8.59119 12.2193C8.51676 12.2857 8.43386 12.3375 8.3462 12.3744C8.34589 12.3745 8.34564 12.3747 8.34533 12.3748C8.34499 12.3749 8.34471 12.3751 8.34437 12.3752C8.23842 12.4198 8.12211 12.4444 7.99998 12.4444Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.6538 0.680511C12.7083 0.652702 12.7638 0.62438 12.8319 0.583147L12.7921 0.562091C12.6938 0.502444 12.5874 0.445891 12.4791 0.388243C12.4274 0.360745 12.3752 0.332996 12.3232 0.304544C12.145 0.18273 11.9496 0.0888035 11.7437 0.0259412C11.5949 -0.0175826 11.4357 -0.00606335 11.2946 0.0584227C11.1536 0.122909 11.0399 0.236125 10.9742 0.377692C10.896 0.547176 10.8611 0.733682 10.8725 0.920274C10.8725 2.09321 10.8869 3.28044 10.9014 4.45338C10.8942 4.6937 10.9087 4.93419 10.9449 5.17184C10.96 5.25988 10.9921 5.34404 11.0395 5.41952C11.0868 5.495 11.1484 5.5603 11.2208 5.61169C11.3193 5.6748 11.4314 5.71306 11.5476 5.72324C11.6638 5.73343 11.7808 5.71524 11.8886 5.6702C11.9465 5.65557 11.961 5.61136 11.961 5.55285V1.1111C11.9588 1.09371 11.9617 1.07607 11.9695 1.06038C11.9772 1.04469 11.9894 1.03168 12.0045 1.023C12.1133 0.964318 12.2186 0.909378 12.3239 0.854439C12.4291 0.799499 12.5344 0.744559 12.6432 0.685879C12.6468 0.68409 12.6503 0.682301 12.6538 0.680511ZM12.8319 3.82234V5.09801C12.9481 5.02519 13.064 4.95139 13.1947 4.86069C13.4053 4.73602 13.6121 4.61509 13.819 4.49415C14.0258 4.37322 14.2327 4.25229 14.4433 4.12761C14.6147 4.03049 14.7822 3.92908 14.9499 3.82761C15.1088 3.73141 15.2679 3.63516 15.4304 3.54244C15.5844 3.46114 15.7223 3.35181 15.837 3.21995C15.9243 3.12454 15.9797 3.00385 15.9954 2.87492C16.011 2.746 15.9862 2.61537 15.9243 2.5015C15.8262 2.3264 15.6799 2.18377 15.5032 2.0909C15.2566 1.95924 15.0241 1.82725 14.792 1.69526C14.6096 1.5919 14.4228 1.4837 14.2364 1.37572C14.0816 1.28605 13.927 1.19653 13.7755 1.1101C13.7621 1.10284 13.7471 1.09905 13.7319 1.09905C13.7167 1.09905 13.7017 1.10284 13.6883 1.1101C13.5421 1.2207 13.3903 1.32552 13.2364 1.43183C13.1455 1.49457 13.0539 1.55782 12.9623 1.6231C12.9481 1.63602 12.9368 1.6519 12.9293 1.66964C12.9218 1.68737 12.9182 1.70655 12.9188 1.72583V2.66404C12.926 2.66404 12.9297 2.66038 12.9333 2.65673C12.9369 2.65307 12.9405 2.64941 12.9478 2.64941C13.0857 2.56147 13.22 2.4772 13.3542 2.39292C13.4885 2.30864 13.6228 2.22436 13.7607 2.13642C13.7714 2.12901 13.7841 2.12504 13.7971 2.12504C13.8101 2.12504 13.8228 2.12901 13.8335 2.13642C13.9411 2.20152 14.0488 2.26313 14.1565 2.32473C14.2666 2.38772 14.3767 2.4507 14.4867 2.51743C14.5769 2.56064 14.6642 2.60961 14.7482 2.66404C14.6033 2.75214 14.4726 2.82562 14.3418 2.89876C13.8624 3.17704 13.3689 3.45564 12.8753 3.73425C12.8615 3.74419 12.8502 3.75743 12.8427 3.7728C12.8351 3.78817 12.8314 3.80518 12.8319 3.82234Z" fill="currentColor"/>
4
+ </svg>
@@ -1,5 +1,5 @@
1
- <svg width="8" height="12" viewBox="0 0 8 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd"
3
- d="M1.86699 2.93345C2.52973 2.93345 3.06699 2.39619 3.06699 1.73345C3.06699 1.07071 2.52973 0.533447 1.86699 0.533447C1.20425 0.533447 0.666992 1.07071 0.666992 1.73345C0.666992 2.39619 1.20425 2.93345 1.86699 2.93345ZM6.13366 2.93345C6.7964 2.93345 7.33366 2.39619 7.33366 1.73345C7.33366 1.07071 6.7964 0.533447 6.13366 0.533447C5.47092 0.533447 4.93366 1.07071 4.93366 1.73345C4.93366 2.39619 5.47092 2.93345 6.13366 2.93345ZM7.33366 6.00011C7.33366 6.66286 6.7964 7.20011 6.13366 7.20011C5.47092 7.20011 4.93366 6.66286 4.93366 6.00011C4.93366 5.33737 5.47092 4.80011 6.13366 4.80011C6.7964 4.80011 7.33366 5.33737 7.33366 6.00011ZM1.86699 7.20011C2.52973 7.20011 3.06699 6.66286 3.06699 6.00011C3.06699 5.33737 2.52973 4.80011 1.86699 4.80011C1.20425 4.80011 0.666992 5.33737 0.666992 6.00011C0.666992 6.66286 1.20425 7.20011 1.86699 7.20011ZM7.33366 10.2668C7.33366 10.9295 6.7964 11.4668 6.13366 11.4668C5.47092 11.4668 4.93366 10.9295 4.93366 10.2668C4.93366 9.60404 5.47092 9.06678 6.13366 9.06678C6.7964 9.06678 7.33366 9.60404 7.33366 10.2668ZM1.86699 11.4668C2.52973 11.4668 3.06699 10.9295 3.06699 10.2668C3.06699 9.60404 2.52973 9.06678 1.86699 9.06678C1.20425 9.06678 0.666992 9.60404 0.666992 10.2668C0.666992 10.9295 1.20425 11.4668 1.86699 11.4668Z"
4
- fill="currentColor" />
1
+ <svg width="8" height="12" viewBox="0 0 8 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M1.86699 2.93345C2.52973 2.93345 3.06699 2.39619 3.06699 1.73345C3.06699 1.07071 2.52973 0.533447 1.86699 0.533447C1.20425 0.533447 0.666992 1.07071 0.666992 1.73345C0.666992 2.39619 1.20425 2.93345 1.86699 2.93345ZM6.13366 2.93345C6.7964 2.93345 7.33366 2.39619 7.33366 1.73345C7.33366 1.07071 6.7964 0.533447 6.13366 0.533447C5.47092 0.533447 4.93366 1.07071 4.93366 1.73345C4.93366 2.39619 5.47092 2.93345 6.13366 2.93345ZM7.33366 6.00011C7.33366 6.66286 6.7964 7.20011 6.13366 7.20011C5.47092 7.20011 4.93366 6.66286 4.93366 6.00011C4.93366 5.33737 5.47092 4.80011 6.13366 4.80011C6.7964 4.80011 7.33366 5.33737 7.33366 6.00011ZM1.86699 7.20011C2.52973 7.20011 3.06699 6.66286 3.06699 6.00011C3.06699 5.33737 2.52973 4.80011 1.86699 4.80011C1.20425 4.80011 0.666992 5.33737 0.666992 6.00011C0.666992 6.66286 1.20425 7.20011 1.86699 7.20011ZM7.33366 10.2668C7.33366 10.9295 6.7964 11.4668 6.13366 11.4668C5.47092 11.4668 4.93366 10.9295 4.93366 10.2668C4.93366 9.60404 5.47092 9.06678 6.13366 9.06678C6.7964 9.06678 7.33366 9.60404 7.33366 10.2668ZM1.86699 11.4668C2.52973 11.4668 3.06699 10.9295 3.06699 10.2668C3.06699 9.60404 2.52973 9.06678 1.86699 9.06678C1.20425 9.06678 0.666992 9.60404 0.666992 10.2668C0.666992 10.9295 1.20425 11.4668 1.86699 11.4668Z"
4
+ fill="currentColor" />
5
5
  </svg>
@@ -1,6 +1,6 @@
1
- <svg width="12" height="11" viewBox="0 0 12 11" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M4.58435 10.8705H5.08047C5.28388 10.8705 5.45256 10.7018 5.45256 10.4984C5.45256 10.295 5.28388 10.1263 5.08047 10.1263H4.58435C2.29721 10.1263 1.48357 9.31263 1.48357 7.0255V4.04876C1.48357 1.76163 2.29721 0.947982 4.58435 0.947982H7.56109C9.84822 0.947982 10.6619 1.76163 10.6619 4.04876V4.53496C10.6619 4.73837 10.8305 4.90705 11.034 4.90705C11.2374 4.90705 11.4061 4.73837 11.4061 4.53496V4.04876C11.4061 1.3548 10.255 0.203796 7.56109 0.203796H4.58435C1.89039 0.203796 0.739385 1.3548 0.739385 4.04876V7.0255C0.739385 9.71946 1.89039 10.8705 4.58435 10.8705Z" fill="currentColor"/>
3
- <path d="M5.57663 5.41297C5.67089 5.41297 5.76515 5.37824 5.83957 5.30382C5.98345 5.15995 5.98345 4.92181 5.83957 4.77793L3.98407 2.91746H5.0805C5.28391 2.91746 5.4526 2.74878 5.4526 2.54537C5.4526 2.34196 5.28887 2.17328 5.0805 2.17328H3.09105C2.94221 2.17328 2.80329 2.26258 2.74872 2.4015C2.68918 2.54041 2.72391 2.69917 2.8281 2.80832L5.31368 5.30382C5.3881 5.37824 5.48236 5.41297 5.57663 5.41297Z" fill="currentColor"/>
4
- <path d="M3.09113 4.91188C3.29454 4.91188 3.46323 4.7432 3.46323 4.53979V2.54537C3.46323 2.34196 3.29454 2.17328 3.09113 2.17328C2.88772 2.17328 2.71904 2.34196 2.71904 2.54537V4.53483C2.71904 4.7432 2.88772 4.91188 3.09113 4.91188Z" fill="currentColor"/>
5
- <path d="M8.13163 10.8704H9.47117C10.7909 10.8704 11.4061 10.2552 11.4061 8.93555V7.59602C11.4061 6.27633 10.7909 5.66113 9.47117 5.66113H8.13163C6.81194 5.66113 6.19675 6.27633 6.19675 7.59602V8.93555C6.19675 10.2552 6.81194 10.8704 8.13163 10.8704Z" fill="currentColor"/>
6
- </svg>
1
+ <svg width="12" height="11" viewBox="0 0 12 11" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.58435 10.8705H5.08047C5.28388 10.8705 5.45256 10.7018 5.45256 10.4984C5.45256 10.295 5.28388 10.1263 5.08047 10.1263H4.58435C2.29721 10.1263 1.48357 9.31263 1.48357 7.0255V4.04876C1.48357 1.76163 2.29721 0.947982 4.58435 0.947982H7.56109C9.84822 0.947982 10.6619 1.76163 10.6619 4.04876V4.53496C10.6619 4.73837 10.8305 4.90705 11.034 4.90705C11.2374 4.90705 11.4061 4.73837 11.4061 4.53496V4.04876C11.4061 1.3548 10.255 0.203796 7.56109 0.203796H4.58435C1.89039 0.203796 0.739385 1.3548 0.739385 4.04876V7.0255C0.739385 9.71946 1.89039 10.8705 4.58435 10.8705Z" fill="currentColor"/>
3
+ <path d="M5.57663 5.41297C5.67089 5.41297 5.76515 5.37824 5.83957 5.30382C5.98345 5.15995 5.98345 4.92181 5.83957 4.77793L3.98407 2.91746H5.0805C5.28391 2.91746 5.4526 2.74878 5.4526 2.54537C5.4526 2.34196 5.28887 2.17328 5.0805 2.17328H3.09105C2.94221 2.17328 2.80329 2.26258 2.74872 2.4015C2.68918 2.54041 2.72391 2.69917 2.8281 2.80832L5.31368 5.30382C5.3881 5.37824 5.48236 5.41297 5.57663 5.41297Z" fill="currentColor"/>
4
+ <path d="M3.09113 4.91188C3.29454 4.91188 3.46323 4.7432 3.46323 4.53979V2.54537C3.46323 2.34196 3.29454 2.17328 3.09113 2.17328C2.88772 2.17328 2.71904 2.34196 2.71904 2.54537V4.53483C2.71904 4.7432 2.88772 4.91188 3.09113 4.91188Z" fill="currentColor"/>
5
+ <path d="M8.13163 10.8704H9.47117C10.7909 10.8704 11.4061 10.2552 11.4061 8.93555V7.59602C11.4061 6.27633 10.7909 5.66113 9.47117 5.66113H8.13163C6.81194 5.66113 6.19675 6.27633 6.19675 7.59602V8.93555C6.19675 10.2552 6.81194 10.8704 8.13163 10.8704Z" fill="currentColor"/>
6
+ </svg>
@@ -1,18 +1,18 @@
1
- <svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path
3
- d="M17.4158 12.1524C15.8645 12.1395 14.6332 13.5171 14.6332 15.0915V54.4384C14.6332 56.0637 15.9452 57.479 17.5669 57.3718C20.0348 57.2086 24.9708 56.8823 24.9708 56.8823L25.1038 56.7117V25.5621C25.1038 23.9368 26.4157 22.5212 28.0375 22.6284C35.5377 23.1244 43.0379 23.6205 50.5381 24.1165L50.5384 24.1162V17.0779C50.5384 15.4526 49.2267 14.2514 47.605 14.1442C37.5924 13.4821 27.5795 12.82 17.5669 12.1578C17.5162 12.1545 17.4659 12.1528 17.4158 12.1524Z"
4
- fill="#D8C6DB" />
5
- <path
6
- d="M28.1493 20.9452C25.4926 20.7696 23.4183 23.029 23.4183 25.562V64.9087C23.4183 67.4417 25.4926 69.7011 28.1493 69.5254C38.1619 68.8633 48.1752 68.202 58.1879 67.5399C60.5774 67.3819 62.6963 65.4561 62.6963 62.9232V57.4368C62.6994 57.2132 62.6581 56.9913 62.5748 56.7839C62.4914 56.5765 62.3677 56.3877 62.2107 56.2285C62.0538 56.0693 61.8668 55.9429 61.6605 55.8566C61.4543 55.7704 61.233 55.7259 61.0095 55.7259C60.7859 55.7259 60.5646 55.7704 60.3584 55.8566C60.1522 55.9429 59.9652 56.0693 59.8082 56.2285C59.6513 56.3877 59.5275 56.5765 59.4442 56.7839C59.3608 56.9913 59.3195 57.2132 59.3227 57.4368V62.9232C59.3227 63.6405 58.8193 64.1172 57.9654 64.1736C47.9527 64.8358 37.9393 65.497 27.9267 66.1591C27.3401 66.1981 26.7919 65.6262 26.7919 64.9087V25.562C26.7919 24.8444 27.3399 24.2727 27.9267 24.3115C37.9393 24.9735 57.9654 26.2984 57.9654 26.2984C58.8194 26.3547 59.3227 26.8314 59.3227 27.5489V33.0413C59.3195 33.2648 59.3608 33.4867 59.4442 33.6941C59.5275 33.9015 59.6513 34.0903 59.8082 34.2495C59.9652 34.4087 60.1522 34.5351 60.3584 34.6214C60.5646 34.7076 60.7859 34.7521 61.0095 34.7521C61.233 34.7521 61.4543 34.7076 61.6605 34.6214C61.8668 34.5351 62.0538 34.4087 62.2107 34.2495C62.3677 34.0903 62.4914 33.9015 62.5748 33.6941C62.6581 33.4867 62.6994 33.2648 62.6963 33.0413V27.5489C62.6963 25.0159 60.5773 23.0902 58.1879 22.9322C58.1879 22.9322 38.1619 21.6073 28.1493 20.9452Z"
7
- fill="#71347B" />
8
- <path
9
- d="M17.6786 10.4745C15.0219 10.2989 12.9476 12.5583 12.9476 15.0913V54.438C12.9476 56.971 15.0219 59.2303 17.6786 59.0547C20.1465 58.8915 25.0832 58.5656 25.0832 58.5656L24.8606 55.1994C24.8606 55.1994 19.924 55.5252 17.456 55.6884C16.8692 55.7274 16.3212 55.1555 16.3212 54.438V15.0913C16.3212 14.3739 16.8692 13.802 17.456 13.8408C27.4686 14.5029 37.482 15.1656 47.4947 15.8278C48.3486 15.884 48.852 16.3607 48.852 17.0782V22.5706H52.2256V17.0782C52.2256 14.5452 50.1066 12.6195 47.7172 12.4615C37.7045 11.7994 27.6912 11.1367 17.6786 10.4745Z"
10
- fill="#71347B" />
11
- <path
12
- d="M60.9846 38.5965C60.5463 38.6031 60.1277 38.7801 59.8176 39.0899L55.485 43.4226C55.3231 43.578 55.1939 43.7642 55.1049 43.9702C55.0159 44.1762 54.9689 44.3979 54.9666 44.6223C54.9643 44.8467 55.0069 45.0692 55.0917 45.277C55.1765 45.4847 55.3019 45.6735 55.4606 45.8322C55.6193 45.9908 55.808 46.1163 56.0158 46.2011C56.2235 46.2859 56.4461 46.3285 56.6705 46.3262C56.8949 46.3239 57.1166 46.2769 57.3226 46.1879C57.5286 46.0989 57.7147 45.9697 57.8702 45.8079L61.0095 42.6686L64.1488 45.8079C64.3042 45.9697 64.4904 46.0989 64.6964 46.1879C64.9024 46.2769 65.1241 46.3239 65.3485 46.3262C65.5728 46.3285 65.7954 46.2859 66.0032 46.2011C66.2109 46.1163 66.3997 45.9908 66.5583 45.8322C66.717 45.6735 66.8424 45.4847 66.9273 45.277C67.0121 45.0692 67.0546 44.8467 67.0523 44.6223C67.0501 44.3979 67.0031 44.1762 66.914 43.9702C66.825 43.7642 66.6958 43.578 66.534 43.4226L62.2028 39.0899C62.0431 38.9304 61.853 38.8045 61.6437 38.7197C61.4345 38.6349 61.2103 38.593 60.9846 38.5965Z"
13
- fill="#71347B" />
14
- <path
15
- d="M60.9846 40.0066C60.5375 40.0132 60.1113 40.197 59.7997 40.5177C59.488 40.8384 59.3165 41.2697 59.3227 41.7168V50.1946C59.3195 50.4182 59.3608 50.6401 59.4442 50.8475C59.5275 51.0549 59.6513 51.2437 59.8082 51.4029C59.9652 51.5621 60.1522 51.6885 60.3584 51.7748C60.5646 51.861 60.7859 51.9055 61.0095 51.9055C61.233 51.9055 61.4543 51.861 61.6606 51.7748C61.8668 51.6885 62.0538 51.5621 62.2107 51.4029C62.3677 51.2437 62.4914 51.0549 62.5748 50.8475C62.6581 50.6401 62.6994 50.4182 62.6963 50.1946V41.7168C62.6994 41.4912 62.6572 41.2673 62.5723 41.0583C62.4874 40.8493 62.3614 40.6594 62.2018 40.5C62.0422 40.3405 61.8523 40.2147 61.6432 40.13C61.4341 40.0452 61.2102 40.0033 60.9846 40.0066Z"
16
- fill="#71347B" />
17
- <path d="M40.1047 22.3128L23.9118 38.5057L26.297 40.891L42.4899 24.6981L40.1047 22.3128Z" fill="#71347B" />
18
- </svg>
1
+ <svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M17.4158 12.1524C15.8645 12.1395 14.6332 13.5171 14.6332 15.0915V54.4384C14.6332 56.0637 15.9452 57.479 17.5669 57.3718C20.0348 57.2086 24.9708 56.8823 24.9708 56.8823L25.1038 56.7117V25.5621C25.1038 23.9368 26.4157 22.5212 28.0375 22.6284C35.5377 23.1244 43.0379 23.6205 50.5381 24.1165L50.5384 24.1162V17.0779C50.5384 15.4526 49.2267 14.2514 47.605 14.1442C37.5924 13.4821 27.5795 12.82 17.5669 12.1578C17.5162 12.1545 17.4659 12.1528 17.4158 12.1524Z"
4
+ fill="#D8C6DB" />
5
+ <path
6
+ d="M28.1493 20.9452C25.4926 20.7696 23.4183 23.029 23.4183 25.562V64.9087C23.4183 67.4417 25.4926 69.7011 28.1493 69.5254C38.1619 68.8633 48.1752 68.202 58.1879 67.5399C60.5774 67.3819 62.6963 65.4561 62.6963 62.9232V57.4368C62.6994 57.2132 62.6581 56.9913 62.5748 56.7839C62.4914 56.5765 62.3677 56.3877 62.2107 56.2285C62.0538 56.0693 61.8668 55.9429 61.6605 55.8566C61.4543 55.7704 61.233 55.7259 61.0095 55.7259C60.7859 55.7259 60.5646 55.7704 60.3584 55.8566C60.1522 55.9429 59.9652 56.0693 59.8082 56.2285C59.6513 56.3877 59.5275 56.5765 59.4442 56.7839C59.3608 56.9913 59.3195 57.2132 59.3227 57.4368V62.9232C59.3227 63.6405 58.8193 64.1172 57.9654 64.1736C47.9527 64.8358 37.9393 65.497 27.9267 66.1591C27.3401 66.1981 26.7919 65.6262 26.7919 64.9087V25.562C26.7919 24.8444 27.3399 24.2727 27.9267 24.3115C37.9393 24.9735 57.9654 26.2984 57.9654 26.2984C58.8194 26.3547 59.3227 26.8314 59.3227 27.5489V33.0413C59.3195 33.2648 59.3608 33.4867 59.4442 33.6941C59.5275 33.9015 59.6513 34.0903 59.8082 34.2495C59.9652 34.4087 60.1522 34.5351 60.3584 34.6214C60.5646 34.7076 60.7859 34.7521 61.0095 34.7521C61.233 34.7521 61.4543 34.7076 61.6605 34.6214C61.8668 34.5351 62.0538 34.4087 62.2107 34.2495C62.3677 34.0903 62.4914 33.9015 62.5748 33.6941C62.6581 33.4867 62.6994 33.2648 62.6963 33.0413V27.5489C62.6963 25.0159 60.5773 23.0902 58.1879 22.9322C58.1879 22.9322 38.1619 21.6073 28.1493 20.9452Z"
7
+ fill="#71347B" />
8
+ <path
9
+ d="M17.6786 10.4745C15.0219 10.2989 12.9476 12.5583 12.9476 15.0913V54.438C12.9476 56.971 15.0219 59.2303 17.6786 59.0547C20.1465 58.8915 25.0832 58.5656 25.0832 58.5656L24.8606 55.1994C24.8606 55.1994 19.924 55.5252 17.456 55.6884C16.8692 55.7274 16.3212 55.1555 16.3212 54.438V15.0913C16.3212 14.3739 16.8692 13.802 17.456 13.8408C27.4686 14.5029 37.482 15.1656 47.4947 15.8278C48.3486 15.884 48.852 16.3607 48.852 17.0782V22.5706H52.2256V17.0782C52.2256 14.5452 50.1066 12.6195 47.7172 12.4615C37.7045 11.7994 27.6912 11.1367 17.6786 10.4745Z"
10
+ fill="#71347B" />
11
+ <path
12
+ d="M60.9846 38.5965C60.5463 38.6031 60.1277 38.7801 59.8176 39.0899L55.485 43.4226C55.3231 43.578 55.1939 43.7642 55.1049 43.9702C55.0159 44.1762 54.9689 44.3979 54.9666 44.6223C54.9643 44.8467 55.0069 45.0692 55.0917 45.277C55.1765 45.4847 55.3019 45.6735 55.4606 45.8322C55.6193 45.9908 55.808 46.1163 56.0158 46.2011C56.2235 46.2859 56.4461 46.3285 56.6705 46.3262C56.8949 46.3239 57.1166 46.2769 57.3226 46.1879C57.5286 46.0989 57.7147 45.9697 57.8702 45.8079L61.0095 42.6686L64.1488 45.8079C64.3042 45.9697 64.4904 46.0989 64.6964 46.1879C64.9024 46.2769 65.1241 46.3239 65.3485 46.3262C65.5728 46.3285 65.7954 46.2859 66.0032 46.2011C66.2109 46.1163 66.3997 45.9908 66.5583 45.8322C66.717 45.6735 66.8424 45.4847 66.9273 45.277C67.0121 45.0692 67.0546 44.8467 67.0523 44.6223C67.0501 44.3979 67.0031 44.1762 66.914 43.9702C66.825 43.7642 66.6958 43.578 66.534 43.4226L62.2028 39.0899C62.0431 38.9304 61.853 38.8045 61.6437 38.7197C61.4345 38.6349 61.2103 38.593 60.9846 38.5965Z"
13
+ fill="#71347B" />
14
+ <path
15
+ d="M60.9846 40.0066C60.5375 40.0132 60.1113 40.197 59.7997 40.5177C59.488 40.8384 59.3165 41.2697 59.3227 41.7168V50.1946C59.3195 50.4182 59.3608 50.6401 59.4442 50.8475C59.5275 51.0549 59.6513 51.2437 59.8082 51.4029C59.9652 51.5621 60.1522 51.6885 60.3584 51.7748C60.5646 51.861 60.7859 51.9055 61.0095 51.9055C61.233 51.9055 61.4543 51.861 61.6606 51.7748C61.8668 51.6885 62.0538 51.5621 62.2107 51.4029C62.3677 51.2437 62.4914 51.0549 62.5748 50.8475C62.6581 50.6401 62.6994 50.4182 62.6963 50.1946V41.7168C62.6994 41.4912 62.6572 41.2673 62.5723 41.0583C62.4874 40.8493 62.3614 40.6594 62.2018 40.5C62.0422 40.3405 61.8523 40.2147 61.6432 40.13C61.4341 40.0452 61.2102 40.0033 60.9846 40.0066Z"
16
+ fill="#71347B" />
17
+ <path d="M40.1047 22.3128L23.9118 38.5057L26.297 40.891L42.4899 24.6981L40.1047 22.3128Z" fill="#71347B" />
18
+ </svg>
@@ -1,30 +1,30 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M0 7.79242C0 4.66921 2.6228 0 8.0056 0C13.3808 0 16 3.96921 16 6.76201C16 9.00362 14.2284 10.6548 12.0032 10.6548C10.3052 10.6548 9.2996 10.0916 9.2996 9.64282C9.2996 9.35242 10.0016 8.90802 10.0016 8.05002C10.0016 7.02401 9.2072 5.99521 7.9836 5.99521C6.81 5.99521 5.994 6.97201 5.994 7.95722C5.994 10.338 8.246 12.6148 11.5664 12.6148C13.55 12.6148 14.27 11.8836 14.5276 11.8836C14.606 11.8836 14.7864 11.9156 14.7864 12.1248C14.7864 12.3248 12.592 15.9992 8.0104 15.9992C3.4528 16 0 12.4092 0 7.79242Z" fill="#1DE9B6"/>
3
- <path d="M0 7.79144C0 4.66824 3.046 2.97543 5.092 2.97543C10.4676 2.97543 12.0028 3.96864 12.0028 6.76144C12.0028 9.00305 10.0016 8.90785 10.0016 8.04984C10.0016 7.02384 9.2072 5.99504 7.9836 5.99504C6.81 5.99504 5.994 6.97184 5.994 7.95704C5.994 10.3378 8.246 12.6147 11.5664 12.6147C13.55 12.6147 14.27 11.8835 14.5276 11.8835C14.606 11.8835 14.7864 11.9155 14.7864 12.1247C14.7864 12.3247 12.592 15.9991 8.0104 15.9991C3.4528 15.9991 0 12.4083 0 7.79144Z" fill="url(#paint0_radial_4989_1632)"/>
4
- <path d="M5.9946 7.95735C5.9946 7.03814 6.7046 6.12734 7.7526 6.00894C6.111 6.14854 4.2334 7.75895 4.2334 10.7414C4.2334 13.9266 6.979 16.1274 9.8106 15.7926C13.165 15.0218 14.787 12.2966 14.787 12.1254C14.787 11.9162 14.6066 11.8842 14.5282 11.8842C14.271 11.8842 13.5506 12.6154 11.567 12.6154C8.2466 12.6154 5.9946 10.3386 5.9946 7.95735Z" fill="url(#paint1_radial_4989_1632)"/>
5
- <path d="M0 7.79242C0 4.66921 2.6228 0 8.0056 0C13.3808 0 16 3.96921 16 6.76201C16 9.00362 14.2284 10.6548 12.0032 10.6548C10.3052 10.6548 9.2996 10.0916 9.2996 9.64282C9.2996 9.35242 10.0016 8.90802 10.0016 8.05002C10.0016 7.02401 9.1712 3.77881 4.9504 3.77881C3.7768 3.77921 0.5024 4.29801 0 7.79242Z" fill="url(#paint2_radial_4989_1632)"/>
6
- <defs>
7
- <radialGradient id="paint0_radial_4989_1632" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(5.5972 11.5396) scale(8.53932 9.46415)">
8
- <stop offset="0.6519" stop-color="#0083DE"/>
9
- <stop offset="0.8215" stop-color="#006AAC"/>
10
- <stop offset="0.9438" stop-color="#005A8C"/>
11
- </radialGradient>
12
- <radialGradient id="paint1_radial_4989_1632" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(9.6334 10.1238) scale(6.59116 6.60963)">
13
- <stop offset="0.69" stop-color="#05509B"/>
14
- <stop offset="0.7174" stop-color="#054E98"/>
15
- <stop offset="1" stop-color="#033E78"/>
16
- </radialGradient>
17
- <radialGradient id="paint2_radial_4989_1632" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.4591 4.82274) rotate(180) scale(24.6127 37.1258)">
18
- <stop stop-color="#5EEB69"/>
19
- <stop offset="0.2136" stop-color="#4BC958"/>
20
- <stop offset="0.2245" stop-color="#4AC862"/>
21
- <stop offset="0.2722" stop-color="#47C68B"/>
22
- <stop offset="0.3229" stop-color="#44C4AE"/>
23
- <stop offset="0.3761" stop-color="#41C2CB"/>
24
- <stop offset="0.4328" stop-color="#3FC1E1"/>
25
- <stop offset="0.4946" stop-color="#3EC0F1"/>
26
- <stop offset="0.5652" stop-color="#3DBFFA"/>
27
- <stop offset="0.6644" stop-color="#3DBFFD"/>
28
- </radialGradient>
29
- </defs>
30
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 7.79242C0 4.66921 2.6228 0 8.0056 0C13.3808 0 16 3.96921 16 6.76201C16 9.00362 14.2284 10.6548 12.0032 10.6548C10.3052 10.6548 9.2996 10.0916 9.2996 9.64282C9.2996 9.35242 10.0016 8.90802 10.0016 8.05002C10.0016 7.02401 9.2072 5.99521 7.9836 5.99521C6.81 5.99521 5.994 6.97201 5.994 7.95722C5.994 10.338 8.246 12.6148 11.5664 12.6148C13.55 12.6148 14.27 11.8836 14.5276 11.8836C14.606 11.8836 14.7864 11.9156 14.7864 12.1248C14.7864 12.3248 12.592 15.9992 8.0104 15.9992C3.4528 16 0 12.4092 0 7.79242Z" fill="#1DE9B6"/>
3
+ <path d="M0 7.79144C0 4.66824 3.046 2.97543 5.092 2.97543C10.4676 2.97543 12.0028 3.96864 12.0028 6.76144C12.0028 9.00305 10.0016 8.90785 10.0016 8.04984C10.0016 7.02384 9.2072 5.99504 7.9836 5.99504C6.81 5.99504 5.994 6.97184 5.994 7.95704C5.994 10.3378 8.246 12.6147 11.5664 12.6147C13.55 12.6147 14.27 11.8835 14.5276 11.8835C14.606 11.8835 14.7864 11.9155 14.7864 12.1247C14.7864 12.3247 12.592 15.9991 8.0104 15.9991C3.4528 15.9991 0 12.4083 0 7.79144Z" fill="url(#paint0_radial_4989_1632)"/>
4
+ <path d="M5.9946 7.95735C5.9946 7.03814 6.7046 6.12734 7.7526 6.00894C6.111 6.14854 4.2334 7.75895 4.2334 10.7414C4.2334 13.9266 6.979 16.1274 9.8106 15.7926C13.165 15.0218 14.787 12.2966 14.787 12.1254C14.787 11.9162 14.6066 11.8842 14.5282 11.8842C14.271 11.8842 13.5506 12.6154 11.567 12.6154C8.2466 12.6154 5.9946 10.3386 5.9946 7.95735Z" fill="url(#paint1_radial_4989_1632)"/>
5
+ <path d="M0 7.79242C0 4.66921 2.6228 0 8.0056 0C13.3808 0 16 3.96921 16 6.76201C16 9.00362 14.2284 10.6548 12.0032 10.6548C10.3052 10.6548 9.2996 10.0916 9.2996 9.64282C9.2996 9.35242 10.0016 8.90802 10.0016 8.05002C10.0016 7.02401 9.1712 3.77881 4.9504 3.77881C3.7768 3.77921 0.5024 4.29801 0 7.79242Z" fill="url(#paint2_radial_4989_1632)"/>
6
+ <defs>
7
+ <radialGradient id="paint0_radial_4989_1632" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(5.5972 11.5396) scale(8.53932 9.46415)">
8
+ <stop offset="0.6519" stop-color="#0083DE"/>
9
+ <stop offset="0.8215" stop-color="#006AAC"/>
10
+ <stop offset="0.9438" stop-color="#005A8C"/>
11
+ </radialGradient>
12
+ <radialGradient id="paint1_radial_4989_1632" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(9.6334 10.1238) scale(6.59116 6.60963)">
13
+ <stop offset="0.69" stop-color="#05509B"/>
14
+ <stop offset="0.7174" stop-color="#054E98"/>
15
+ <stop offset="1" stop-color="#033E78"/>
16
+ </radialGradient>
17
+ <radialGradient id="paint2_radial_4989_1632" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.4591 4.82274) rotate(180) scale(24.6127 37.1258)">
18
+ <stop stop-color="#5EEB69"/>
19
+ <stop offset="0.2136" stop-color="#4BC958"/>
20
+ <stop offset="0.2245" stop-color="#4AC862"/>
21
+ <stop offset="0.2722" stop-color="#47C68B"/>
22
+ <stop offset="0.3229" stop-color="#44C4AE"/>
23
+ <stop offset="0.3761" stop-color="#41C2CB"/>
24
+ <stop offset="0.4328" stop-color="#3FC1E1"/>
25
+ <stop offset="0.4946" stop-color="#3EC0F1"/>
26
+ <stop offset="0.5652" stop-color="#3DBFFA"/>
27
+ <stop offset="0.6644" stop-color="#3DBFFD"/>
28
+ </radialGradient>
29
+ </defs>
30
+ </svg>
@@ -1,5 +1,5 @@
1
- <svg width="16" height="18" viewBox="0 0 16 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M9.01618 2.1606L2.39492 9.16898C2.14491 9.43512 1.90296 9.95934 1.85457 10.3223L1.55617 12.9353C1.45133 13.8789 2.12878 14.5241 3.0643 14.3628L5.6612 13.9192C6.02412 13.8547 6.5322 13.5885 6.78221 13.3143L13.4035 6.30595C14.5487 5.09622 15.0648 3.71712 13.2825 2.03157C11.5082 0.362136 10.1614 0.950872 9.01618 2.1606Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
- <path d="M7.91132 3.33008C8.25811 5.55598 10.0646 7.25767 12.3067 7.48349" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
- <path d="M0.741638 17H15.2584" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
5
- </svg>
1
+ <svg width="16" height="18" viewBox="0 0 16 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9.01618 2.1606L2.39492 9.16898C2.14491 9.43512 1.90296 9.95934 1.85457 10.3223L1.55617 12.9353C1.45133 13.8789 2.12878 14.5241 3.0643 14.3628L5.6612 13.9192C6.02412 13.8547 6.5322 13.5885 6.78221 13.3143L13.4035 6.30595C14.5487 5.09622 15.0648 3.71712 13.2825 2.03157C11.5082 0.362136 10.1614 0.950872 9.01618 2.1606Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M7.91132 3.33008C8.25811 5.55598 10.0646 7.25767 12.3067 7.48349" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M0.741638 17H15.2584" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -1,4 +1,4 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M10.74 0C11.0345 0 11.2733 0.238781 11.2733 0.533333V1.86667H11.86C12.3274 1.86667 12.7651 1.88136 13.1663 1.93801C14.2148 2.05486 15.0254 2.37818 15.5282 3.14174C16.0008 3.85935 16.1266 4.8662 16.1266 6.13333V9.86667C16.1266 11.1338 16.0008 12.1407 15.5282 12.8583C15.0254 13.6218 14.2148 13.9451 13.1664 14.062C12.7651 14.1186 12.3274 14.1333 11.86 14.1333H11.2733V15.4667C11.2733 15.7612 11.0345 16 10.74 16C10.4454 16 10.2066 15.7612 10.2066 15.4667V0.533333C10.2066 0.238781 10.4454 0 10.74 0ZM11.2733 13.0667H11.86C12.3151 13.0667 12.6959 13.0517 13.024 13.0048L13.041 13.0027C13.9522 12.9022 14.3855 12.654 14.6374 12.2716C14.9208 11.8412 15.06 11.1233 15.06 9.86667V6.13333C15.06 4.87673 14.9208 4.15879 14.6374 3.72839C14.3855 3.346 13.9522 3.09779 13.041 2.99732L13.024 2.99517C12.6959 2.94829 12.3151 2.93333 11.86 2.93333H11.2733V13.0667ZM5.13996 2.93333C4.68488 2.93333 4.30408 2.94829 3.97594 2.99517L3.95897 2.99732C3.04776 3.09779 2.61442 3.346 2.36259 3.7284C2.07916 4.15879 1.93996 4.87674 1.93996 6.13333V9.86667C1.93996 11.1233 2.07916 11.8412 2.36259 12.2716C2.61442 12.654 3.04776 12.9022 3.95897 13.0027L3.97594 13.0048C4.30408 13.0517 4.68488 13.0667 5.13996 13.0667H7.76825C8.0628 13.0667 8.30158 13.3054 8.30158 13.6C8.30158 13.8946 8.0628 14.1333 7.76825 14.1333H5.13996C4.67248 14.1333 4.23486 14.1186 3.83359 14.062C2.78517 13.9451 1.97458 13.6218 1.47175 12.8583C0.999169 12.1407 0.873291 11.1338 0.873291 9.86667V6.13333C0.873291 4.86619 0.999169 3.85934 1.47175 3.14173C1.97458 2.37818 2.78519 2.05486 3.83362 1.93801C4.23489 1.88136 4.67249 1.86667 5.13996 1.86667H7.72345C8.018 1.86667 8.25678 2.10545 8.25678 2.4C8.25678 2.69455 8.018 2.93333 7.72345 2.93333H5.13996Z" fill="currentColor"/>
3
- <path d="M5.34822 6.2376V7.3736H7.18022V8.4296H5.34822V9.6616H7.42022V10.7576H3.98022V5.1416H7.42022V6.2376H5.34822Z" fill="currentColor"/>
4
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.74 0C11.0345 0 11.2733 0.238781 11.2733 0.533333V1.86667H11.86C12.3274 1.86667 12.7651 1.88136 13.1663 1.93801C14.2148 2.05486 15.0254 2.37818 15.5282 3.14174C16.0008 3.85935 16.1266 4.8662 16.1266 6.13333V9.86667C16.1266 11.1338 16.0008 12.1407 15.5282 12.8583C15.0254 13.6218 14.2148 13.9451 13.1664 14.062C12.7651 14.1186 12.3274 14.1333 11.86 14.1333H11.2733V15.4667C11.2733 15.7612 11.0345 16 10.74 16C10.4454 16 10.2066 15.7612 10.2066 15.4667V0.533333C10.2066 0.238781 10.4454 0 10.74 0ZM11.2733 13.0667H11.86C12.3151 13.0667 12.6959 13.0517 13.024 13.0048L13.041 13.0027C13.9522 12.9022 14.3855 12.654 14.6374 12.2716C14.9208 11.8412 15.06 11.1233 15.06 9.86667V6.13333C15.06 4.87673 14.9208 4.15879 14.6374 3.72839C14.3855 3.346 13.9522 3.09779 13.041 2.99732L13.024 2.99517C12.6959 2.94829 12.3151 2.93333 11.86 2.93333H11.2733V13.0667ZM5.13996 2.93333C4.68488 2.93333 4.30408 2.94829 3.97594 2.99517L3.95897 2.99732C3.04776 3.09779 2.61442 3.346 2.36259 3.7284C2.07916 4.15879 1.93996 4.87674 1.93996 6.13333V9.86667C1.93996 11.1233 2.07916 11.8412 2.36259 12.2716C2.61442 12.654 3.04776 12.9022 3.95897 13.0027L3.97594 13.0048C4.30408 13.0517 4.68488 13.0667 5.13996 13.0667H7.76825C8.0628 13.0667 8.30158 13.3054 8.30158 13.6C8.30158 13.8946 8.0628 14.1333 7.76825 14.1333H5.13996C4.67248 14.1333 4.23486 14.1186 3.83359 14.062C2.78517 13.9451 1.97458 13.6218 1.47175 12.8583C0.999169 12.1407 0.873291 11.1338 0.873291 9.86667V6.13333C0.873291 4.86619 0.999169 3.85934 1.47175 3.14173C1.97458 2.37818 2.78519 2.05486 3.83362 1.93801C4.23489 1.88136 4.67249 1.86667 5.13996 1.86667H7.72345C8.018 1.86667 8.25678 2.10545 8.25678 2.4C8.25678 2.69455 8.018 2.93333 7.72345 2.93333H5.13996Z" fill="currentColor"/>
3
+ <path d="M5.34822 6.2376V7.3736H7.18022V8.4296H5.34822V9.6616H7.42022V10.7576H3.98022V5.1416H7.42022V6.2376H5.34822Z" fill="currentColor"/>
4
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="16" height="12" viewBox="0 0 16 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M1.09714 11.9428H12.3886C12.6796 11.9428 12.9586 11.8273 13.1644 11.6215C13.3701 11.4157 13.4857 11.1367 13.4857 10.8457V10.1143H14.9029C15.1938 10.1143 15.4729 9.99868 15.6787 9.79293C15.8844 9.58717 16 9.30811 16 9.01713V1.15427C16 0.863291 15.8844 0.584229 15.6787 0.378474C15.4729 0.17272 15.1938 0.0571289 14.9029 0.0571289H3.61143C3.32045 0.0571289 3.04139 0.17272 2.83563 0.378474C2.62988 0.584229 2.51429 0.863291 2.51429 1.15427V1.8857H1.09714C0.440229 1.8857 0 2.45667 0 2.91427V10.8457C0 11.1367 0.115591 11.4157 0.321346 11.6215C0.5271 11.8273 0.806162 11.9428 1.09714 11.9428ZM0.914286 4.56913L4.5792 6.7177L0.914286 10.3822V4.56913ZM12.5714 10.3822L8.90606 6.71724L12.5714 4.56867V10.3822ZM8.09143 7.19404L11.925 11.0286H1.56069L5.39429 7.19404C5.80577 7.42638 6.27031 7.54847 6.74286 7.54847C7.21541 7.54847 7.67994 7.42638 8.09143 7.19404ZM3.42857 1.15427C3.42857 1.10577 3.44784 1.05926 3.48213 1.02497C3.51642 0.99068 3.56293 0.971415 3.61143 0.971415H14.9029C14.9514 0.971415 14.9979 0.99068 15.0322 1.02497C15.0664 1.05926 15.0857 1.10577 15.0857 1.15427V9.01713C15.0857 9.06563 15.0664 9.11214 15.0322 9.14643C14.9979 9.18072 14.9514 9.19999 14.9029 9.19999H13.4857V2.98284C13.4857 2.69186 13.3701 2.4128 13.1644 2.20705C12.9586 2.00129 12.6796 1.8857 12.3886 1.8857H3.42857V1.15427ZM1.09714 2.79999H12.3886C12.4371 2.79999 12.4836 2.81925 12.5179 2.85354C12.5522 2.88784 12.5714 2.93435 12.5714 2.98284C12.5714 3.09439 12.6098 3.4857 12.2322 3.70833L7.6672 6.38353C7.38679 6.54787 7.06765 6.63449 6.74263 6.63449C6.41761 6.63449 6.09847 6.54787 5.81806 6.38353L1.25303 3.70833C0.887314 3.49484 0.913828 3.12959 0.913828 2.98284C0.913828 2.95879 0.918573 2.93498 0.927791 2.91276C0.937009 2.89055 0.950519 2.87037 0.967548 2.85338C0.984576 2.8364 1.00479 2.82294 1.02703 2.81377C1.04926 2.80461 1.07309 2.79993 1.09714 2.79999Z" fill="currentColor"/>
3
- </svg>
1
+ <svg width="16" height="12" viewBox="0 0 16 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1.09714 11.9428H12.3886C12.6796 11.9428 12.9586 11.8273 13.1644 11.6215C13.3701 11.4157 13.4857 11.1367 13.4857 10.8457V10.1143H14.9029C15.1938 10.1143 15.4729 9.99868 15.6787 9.79293C15.8844 9.58717 16 9.30811 16 9.01713V1.15427C16 0.863291 15.8844 0.584229 15.6787 0.378474C15.4729 0.17272 15.1938 0.0571289 14.9029 0.0571289H3.61143C3.32045 0.0571289 3.04139 0.17272 2.83563 0.378474C2.62988 0.584229 2.51429 0.863291 2.51429 1.15427V1.8857H1.09714C0.440229 1.8857 0 2.45667 0 2.91427V10.8457C0 11.1367 0.115591 11.4157 0.321346 11.6215C0.5271 11.8273 0.806162 11.9428 1.09714 11.9428ZM0.914286 4.56913L4.5792 6.7177L0.914286 10.3822V4.56913ZM12.5714 10.3822L8.90606 6.71724L12.5714 4.56867V10.3822ZM8.09143 7.19404L11.925 11.0286H1.56069L5.39429 7.19404C5.80577 7.42638 6.27031 7.54847 6.74286 7.54847C7.21541 7.54847 7.67994 7.42638 8.09143 7.19404ZM3.42857 1.15427C3.42857 1.10577 3.44784 1.05926 3.48213 1.02497C3.51642 0.99068 3.56293 0.971415 3.61143 0.971415H14.9029C14.9514 0.971415 14.9979 0.99068 15.0322 1.02497C15.0664 1.05926 15.0857 1.10577 15.0857 1.15427V9.01713C15.0857 9.06563 15.0664 9.11214 15.0322 9.14643C14.9979 9.18072 14.9514 9.19999 14.9029 9.19999H13.4857V2.98284C13.4857 2.69186 13.3701 2.4128 13.1644 2.20705C12.9586 2.00129 12.6796 1.8857 12.3886 1.8857H3.42857V1.15427ZM1.09714 2.79999H12.3886C12.4371 2.79999 12.4836 2.81925 12.5179 2.85354C12.5522 2.88784 12.5714 2.93435 12.5714 2.98284C12.5714 3.09439 12.6098 3.4857 12.2322 3.70833L7.6672 6.38353C7.38679 6.54787 7.06765 6.63449 6.74263 6.63449C6.41761 6.63449 6.09847 6.54787 5.81806 6.38353L1.25303 3.70833C0.887314 3.49484 0.913828 3.12959 0.913828 2.98284C0.913828 2.95879 0.918573 2.93498 0.927791 2.91276C0.937009 2.89055 0.950519 2.87037 0.967548 2.85338C0.984576 2.8364 1.00479 2.82294 1.02703 2.81377C1.04926 2.80461 1.07309 2.79993 1.09714 2.79999Z" fill="currentColor"/>
3
+ </svg>
@@ -1,17 +1,17 @@
1
- <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <mask id="path-1-inside-1_12_1155" fill="white">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M21.5326 0.217769C20.5315 -0.0725897 19.4684 -0.0725897 18.4674 0.217769C17.821 0.4053 17.2694 0.730828 16.7257 1.1273C16.2076 1.50513 15.618 2.00757 14.9165 2.6054L14.9165 2.60544L14.556 2.9126C13.9283 3.44749 13.757 3.58556 13.5806 3.68605C13.399 3.78954 13.2051 3.86986 13.0035 3.92509C12.8077 3.97875 12.5889 4.00232 11.7668 4.06791L11.2947 4.10558C10.3759 4.17888 9.6038 4.2405 8.97024 4.33971C8.30544 4.44384 7.68528 4.60362 7.09554 4.92817C6.18235 5.43072 5.4307 6.18235 4.92817 7.09554C4.6036 7.68528 4.44382 8.30544 4.33971 8.97024C4.2405 9.60367 4.17891 10.3757 4.10563 11.2942L4.10558 11.2947L4.06791 11.7668C4.00232 12.5889 3.97875 12.8077 3.9251 13.0035C3.86986 13.2051 3.78954 13.399 3.68605 13.5806C3.58554 13.757 3.44749 13.9284 2.91258 14.556L2.60542 14.9165C2.00757 15.618 1.50514 16.2076 1.1273 16.7258C0.730829 17.2693 0.4053 17.8209 0.217769 18.4674C-0.0725897 19.4685 -0.0725897 20.5314 0.217769 21.5325C0.4053 22.179 0.730829 22.7306 1.1273 23.2743C1.50512 23.7925 2.00757 24.382 2.6054 25.0834L2.91258 25.4439C3.44749 26.0715 3.58554 26.243 3.68605 26.4194C3.78954 26.601 3.86986 26.7949 3.9251 26.9966C3.97875 27.1922 4.00232 27.4111 4.06791 28.2331L4.10558 28.7052C4.17888 29.6241 4.24048 30.3961 4.33971 31.0296C4.44382 31.6944 4.6036 32.3146 4.92817 32.9044C5.4307 33.8176 6.18235 34.5692 7.09554 35.0717C7.68528 35.3964 8.30544 35.5561 8.97024 35.6603C9.60384 35.7595 10.376 35.8211 11.2949 35.8944L11.7668 35.932C12.5889 35.9976 12.8077 36.0212 13.0035 36.0748C13.2051 36.13 13.399 36.2105 13.5806 36.3139C13.757 36.4143 13.9283 36.5525 14.556 37.0873L14.9165 37.3946L14.9215 37.3988C15.6208 37.9947 16.2088 38.4958 16.7257 38.8726C17.2694 39.2691 17.821 39.5946 18.4674 39.7822C19.4684 40.0725 20.5315 40.0725 21.5326 39.7822C22.179 39.5946 22.7305 39.2691 23.2743 38.8726C23.7917 38.4954 24.3805 37.9936 25.0807 37.3968L25.0834 37.3946L25.4439 37.0873C26.0716 36.5525 26.2431 36.4143 26.4193 36.3139C26.601 36.2105 26.7948 36.13 26.9965 36.0748C27.1923 36.0212 27.411 35.9976 28.2332 35.932L28.7051 35.8944C29.624 35.8211 30.3962 35.7595 31.0298 35.6603C31.6945 35.5561 32.3147 35.3964 32.9045 35.0717C33.8175 34.5692 34.5693 33.8176 35.0719 32.9044C35.3964 32.3146 35.5562 31.6944 35.6602 31.0296C35.7595 30.3961 35.8211 29.6239 35.8943 28.705L35.9321 28.2331C35.9977 27.4111 36.0211 27.1922 36.0749 26.9966C36.1301 26.7949 36.2104 26.601 36.3138 26.4194C36.4144 26.243 36.5525 26.0715 37.0874 25.4439L37.3947 25.0834L37.4 25.0772C37.9954 24.3783 38.4959 23.7909 38.8727 23.2743C39.2692 22.7306 39.5947 22.179 39.7821 21.5325C40.0726 20.5314 40.0726 19.4685 39.7821 18.4674C39.5947 17.8209 39.2692 17.2693 38.8727 16.7258C38.4948 16.2076 37.9925 15.618 37.3945 14.9165L37.0874 14.556C36.5525 13.9284 36.4144 13.757 36.3138 13.5806C36.2104 13.399 36.1301 13.2051 36.0749 13.0035C36.0211 12.8077 35.9977 12.5889 35.9321 11.7668L35.8943 11.2949C35.8211 10.376 35.7595 9.60384 35.6602 8.97024C35.5562 8.30544 35.3964 7.68528 35.0719 7.09554C34.5693 6.18235 33.8175 5.4307 32.9045 4.92817C32.3147 4.60362 31.6945 4.44384 31.0298 4.33971C30.3962 4.2405 29.624 4.17888 28.7051 4.10558L28.2332 4.06791C27.411 4.00232 27.1923 3.97875 26.9965 3.92509C26.7948 3.86986 26.601 3.78954 26.4193 3.68605C26.2431 3.58556 26.0716 3.44749 25.4439 2.9126L25.0836 2.60544L25.0811 2.60331C24.3806 2.0064 23.7918 1.50469 23.2743 1.1273C22.7305 0.730828 22.179 0.4053 21.5326 0.217769ZM14 28C13.4 28 13 27.8 12.6 27.4C11.8 26.6 11.8 25.4 12.6 24.6L17.2 20L12.6 15.4C11.8 14.6 11.8 13.4 12.6 12.6C13.4 11.8 14.6 11.8 15.4 12.6L20 17.2L24.6 12.6C25.4 11.8 26.6 11.8 27.4 12.6C28.2 13.4 28.2 14.6 27.4 15.4L22.8 20L27.4 24.6C28.2 25.4 28.2 26.6 27.4 27.4C27 27.8 26.6 28 26 28C25.4 28 25 27.8 24.6 27.4L20 22.8L15.4 27.4C15 27.8 14.6 28 14 28Z"/>
4
- </mask>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M21.5326 0.217769C20.5315 -0.0725897 19.4684 -0.0725897 18.4674 0.217769C17.821 0.4053 17.2694 0.730828 16.7257 1.1273C16.2076 1.50513 15.618 2.00757 14.9165 2.6054L14.9165 2.60544L14.556 2.9126C13.9283 3.44749 13.757 3.58556 13.5806 3.68605C13.399 3.78954 13.2051 3.86986 13.0035 3.92509C12.8077 3.97875 12.5889 4.00232 11.7668 4.06791L11.2947 4.10558C10.3759 4.17888 9.6038 4.2405 8.97024 4.33971C8.30544 4.44384 7.68528 4.60362 7.09554 4.92817C6.18235 5.43072 5.4307 6.18235 4.92817 7.09554C4.6036 7.68528 4.44382 8.30544 4.33971 8.97024C4.2405 9.60367 4.17891 10.3757 4.10563 11.2942L4.10558 11.2947L4.06791 11.7668C4.00232 12.5889 3.97875 12.8077 3.9251 13.0035C3.86986 13.2051 3.78954 13.399 3.68605 13.5806C3.58554 13.757 3.44749 13.9284 2.91258 14.556L2.60542 14.9165C2.00757 15.618 1.50514 16.2076 1.1273 16.7258C0.730829 17.2693 0.4053 17.8209 0.217769 18.4674C-0.0725897 19.4685 -0.0725897 20.5314 0.217769 21.5325C0.4053 22.179 0.730829 22.7306 1.1273 23.2743C1.50512 23.7925 2.00757 24.382 2.6054 25.0834L2.91258 25.4439C3.44749 26.0715 3.58554 26.243 3.68605 26.4194C3.78954 26.601 3.86986 26.7949 3.9251 26.9966C3.97875 27.1922 4.00232 27.4111 4.06791 28.2331L4.10558 28.7052C4.17888 29.6241 4.24048 30.3961 4.33971 31.0296C4.44382 31.6944 4.6036 32.3146 4.92817 32.9044C5.4307 33.8176 6.18235 34.5692 7.09554 35.0717C7.68528 35.3964 8.30544 35.5561 8.97024 35.6603C9.60384 35.7595 10.376 35.8211 11.2949 35.8944L11.7668 35.932C12.5889 35.9976 12.8077 36.0212 13.0035 36.0748C13.2051 36.13 13.399 36.2105 13.5806 36.3139C13.757 36.4143 13.9283 36.5525 14.556 37.0873L14.9165 37.3946L14.9215 37.3988C15.6208 37.9947 16.2088 38.4958 16.7257 38.8726C17.2694 39.2691 17.821 39.5946 18.4674 39.7822C19.4684 40.0725 20.5315 40.0725 21.5326 39.7822C22.179 39.5946 22.7305 39.2691 23.2743 38.8726C23.7917 38.4954 24.3805 37.9936 25.0807 37.3968L25.0834 37.3946L25.4439 37.0873C26.0716 36.5525 26.2431 36.4143 26.4193 36.3139C26.601 36.2105 26.7948 36.13 26.9965 36.0748C27.1923 36.0212 27.411 35.9976 28.2332 35.932L28.7051 35.8944C29.624 35.8211 30.3962 35.7595 31.0298 35.6603C31.6945 35.5561 32.3147 35.3964 32.9045 35.0717C33.8175 34.5692 34.5693 33.8176 35.0719 32.9044C35.3964 32.3146 35.5562 31.6944 35.6602 31.0296C35.7595 30.3961 35.8211 29.6239 35.8943 28.705L35.9321 28.2331C35.9977 27.4111 36.0211 27.1922 36.0749 26.9966C36.1301 26.7949 36.2104 26.601 36.3138 26.4194C36.4144 26.243 36.5525 26.0715 37.0874 25.4439L37.3947 25.0834L37.4 25.0772C37.9954 24.3783 38.4959 23.7909 38.8727 23.2743C39.2692 22.7306 39.5947 22.179 39.7821 21.5325C40.0726 20.5314 40.0726 19.4685 39.7821 18.4674C39.5947 17.8209 39.2692 17.2693 38.8727 16.7258C38.4948 16.2076 37.9925 15.618 37.3945 14.9165L37.0874 14.556C36.5525 13.9284 36.4144 13.757 36.3138 13.5806C36.2104 13.399 36.1301 13.2051 36.0749 13.0035C36.0211 12.8077 35.9977 12.5889 35.9321 11.7668L35.8943 11.2949C35.8211 10.376 35.7595 9.60384 35.6602 8.97024C35.5562 8.30544 35.3964 7.68528 35.0719 7.09554C34.5693 6.18235 33.8175 5.4307 32.9045 4.92817C32.3147 4.60362 31.6945 4.44384 31.0298 4.33971C30.3962 4.2405 29.624 4.17888 28.7051 4.10558L28.2332 4.06791C27.411 4.00232 27.1923 3.97875 26.9965 3.92509C26.7948 3.86986 26.601 3.78954 26.4193 3.68605C26.2431 3.58556 26.0716 3.44749 25.4439 2.9126L25.0836 2.60544L25.0811 2.60331C24.3806 2.0064 23.7918 1.50469 23.2743 1.1273C22.7305 0.730828 22.179 0.4053 21.5326 0.217769ZM14 28C13.4 28 13 27.8 12.6 27.4C11.8 26.6 11.8 25.4 12.6 24.6L17.2 20L12.6 15.4C11.8 14.6 11.8 13.4 12.6 12.6C13.4 11.8 14.6 11.8 15.4 12.6L20 17.2L24.6 12.6C25.4 11.8 26.6 11.8 27.4 12.6C28.2 13.4 28.2 14.6 27.4 15.4L22.8 20L27.4 24.6C28.2 25.4 28.2 26.6 27.4 27.4C27 27.8 26.6 28 26 28C25.4 28 25 27.8 24.6 27.4L20 22.8L15.4 27.4C15 27.8 14.6 28 14 28Z" fill="url(#paint0_linear_12_1155)"/>
6
- <path d="M18.4674 0.217769L18.1888 -0.742648L18.1887 -0.742627L18.4674 0.217769ZM21.5326 0.217769L21.8112 -0.742627L21.8112 -0.742648L21.5326 0.217769ZM16.7257 1.1273L16.1365 0.319278L16.1365 0.319311L16.7257 1.1273ZM14.9165 2.6054L15.5567 3.37367L15.5651 3.3665L14.9165 2.6054ZM14.9165 2.60544L14.2762 1.83717L14.2678 1.84432L14.9165 2.60544ZM14.556 2.9126L15.2046 3.67372L15.2046 3.67371L14.556 2.9126ZM13.5806 3.68605L13.0855 2.81718L13.0855 2.81719L13.5806 3.68605ZM13.0035 3.92509L12.7393 2.96063L12.7392 2.96066L13.0035 3.92509ZM11.7668 4.06791L11.8464 5.06475L11.8464 5.06474L11.7668 4.06791ZM11.2947 4.10558L11.3742 5.10242L11.3743 5.10242L11.2947 4.10558ZM8.97024 4.33971L8.81554 3.35175L8.8155 3.35175L8.97024 4.33971ZM7.09554 4.92817L6.6134 4.05207L6.61339 4.05207L7.09554 4.92817ZM4.92817 7.09554L5.80425 7.57769L5.80427 7.57766L4.92817 7.09554ZM4.33971 8.97024L5.32766 9.12498L5.32767 9.12496L4.33971 8.97024ZM4.10563 11.2942L5.10245 11.3738L5.10246 11.3737L4.10563 11.2942ZM4.10558 11.2947L3.10876 11.2151L3.10875 11.2152L4.10558 11.2947ZM4.06791 11.7668L5.06475 11.8464V11.8464L4.06791 11.7668ZM3.9251 13.0035L2.96066 12.7392L2.96063 12.7393L3.9251 13.0035ZM3.68605 13.5806L4.55487 14.0757L4.55491 14.0757L3.68605 13.5806ZM2.91258 14.556L2.15148 13.9074L2.15145 13.9074L2.91258 14.556ZM2.60542 14.9165L3.36652 15.5651L3.36655 15.5651L2.60542 14.9165ZM1.1273 16.7258L1.93521 17.3151L1.93528 17.315L1.1273 16.7258ZM0.217769 18.4674L1.17819 18.746L1.17819 18.746L0.217769 18.4674ZM0.217769 21.5325L1.17819 21.2539L1.17819 21.2539L0.217769 21.5325ZM1.1273 23.2743L0.319278 23.8635L0.319297 23.8635L1.1273 23.2743ZM2.6054 25.0834L3.36654 24.4349L3.36646 24.4348L2.6054 25.0834ZM2.91258 25.4439L2.15144 26.0925L2.15152 26.0926L2.91258 25.4439ZM3.68605 26.4194L2.81713 26.9143L2.81716 26.9144L3.68605 26.4194ZM3.9251 26.9966L2.96062 27.2607L2.9607 27.261L3.9251 26.9966ZM4.06791 28.2331L5.06475 28.1536L5.06474 28.1535L4.06791 28.2331ZM4.10558 28.7052L5.10242 28.6257L5.10242 28.6257L4.10558 28.7052ZM4.33971 31.0296L5.32767 30.8749L5.32766 30.8749L4.33971 31.0296ZM4.92817 32.9044L5.80428 32.4223L5.80426 32.4222L4.92817 32.9044ZM7.09554 35.0717L7.57783 34.1957L7.57766 34.1956L7.09554 35.0717ZM8.97024 35.6603L8.81535 36.6482L8.81552 36.6483L8.97024 35.6603ZM11.2949 35.8944L11.3743 34.8975L11.3743 34.8975L11.2949 35.8944ZM11.7668 35.932L11.8464 34.9352L11.8463 34.9351L11.7668 35.932ZM13.0035 36.0748L12.7393 37.0393H12.7393L13.0035 36.0748ZM13.5806 36.3139L13.0858 37.1829L13.0858 37.1829L13.5806 36.3139ZM14.556 37.0873L15.2047 36.3263L15.2045 36.3261L14.556 37.0873ZM14.9165 37.3946L14.2678 38.1556L14.2678 38.1556L14.9165 37.3946ZM14.9215 37.3988L14.2727 38.1598L14.2729 38.1599L14.9215 37.3988ZM16.7257 38.8726L17.3149 38.0646L17.3147 38.0645L16.7257 38.8726ZM18.4674 39.7822L18.1886 40.7426L18.1889 40.7427L18.4674 39.7822ZM21.5326 39.7822L21.8111 40.7427L21.8114 40.7426L21.5326 39.7822ZM23.2743 38.8726L22.6852 38.0645L22.6851 38.0646L23.2743 38.8726ZM25.0807 37.3968L24.4323 36.6355L24.4321 36.6358L25.0807 37.3968ZM25.0834 37.3946L25.7317 38.1559L25.7321 38.1556L25.0834 37.3946ZM25.4439 37.0873L24.7954 36.326L24.7951 36.3263L25.4439 37.0873ZM26.4193 36.3139L25.9245 35.4449L25.9243 35.445L26.4193 36.3139ZM26.9965 36.0748L26.7324 35.1103L26.7324 35.1103L26.9965 36.0748ZM28.2332 35.932L28.1538 34.9351L28.1537 34.9352L28.2332 35.932ZM28.7051 35.8944L28.6257 34.8975L28.6257 34.8975L28.7051 35.8944ZM31.0298 35.6603L31.1845 36.6483L31.1847 36.6482L31.0298 35.6603ZM32.9045 35.0717L32.4223 34.1957L32.4222 34.1957L32.9045 35.0717ZM35.0719 32.9044L35.948 33.3865L35.948 33.3864L35.0719 32.9044ZM35.6602 31.0296L34.6723 30.8749L34.6722 30.875L35.6602 31.0296ZM35.8943 28.705L34.8975 28.6252L34.8974 28.6256L35.8943 28.705ZM35.9321 28.2331L36.9289 28.313L36.9289 28.3127L35.9321 28.2331ZM36.0749 26.9966L37.0391 27.2618L37.0394 27.2606L36.0749 26.9966ZM36.3138 26.4194L35.4451 25.924L35.4448 25.9246L36.3138 26.4194ZM37.0874 25.4439L37.8484 26.0926L37.8485 26.0926L37.0874 25.4439ZM37.3947 25.0834L38.1557 25.7321L38.1559 25.732L37.3947 25.0834ZM37.4 25.0772L36.6388 24.4286L36.6388 24.4287L37.4 25.0772ZM38.8727 23.2743L39.6806 23.8636L39.6807 23.8635L38.8727 23.2743ZM39.7821 21.5325L38.8218 21.2538L38.8217 21.254L39.7821 21.5325ZM39.7821 18.4674L38.8217 18.7459L38.8218 18.7461L39.7821 18.4674ZM38.8727 16.7258L38.0648 17.315L38.0648 17.3151L38.8727 16.7258ZM37.3945 14.9165L36.6333 15.565L36.6335 15.5652L37.3945 14.9165ZM37.0874 14.556L37.8486 13.9075L37.8485 13.9074L37.0874 14.556ZM36.3138 13.5806L35.4448 14.0754L35.4452 14.0762L36.3138 13.5806ZM36.0749 13.0035L37.0394 12.7393L37.0392 12.7384L36.0749 13.0035ZM35.9321 11.7668L36.9289 11.6873L36.9289 11.687L35.9321 11.7668ZM35.8943 11.2949L34.8974 11.3743L34.8975 11.3747L35.8943 11.2949ZM35.6602 8.97024L34.6722 9.12484L34.6723 9.12497L35.6602 8.97024ZM35.0719 7.09554L35.948 6.61347L35.948 6.61341L35.0719 7.09554ZM32.9045 4.92817L33.3867 4.0521L33.3866 4.05206L32.9045 4.92817ZM31.0298 4.33971L31.1845 3.35175L31.1845 3.35175L31.0298 4.33971ZM28.7051 4.10558L28.6256 5.10241L28.6256 5.10242L28.7051 4.10558ZM28.2332 4.06791L28.3128 3.07108L28.3127 3.07108L28.2332 4.06791ZM26.9965 3.92509L27.2607 2.96063L27.2607 2.96062L26.9965 3.92509ZM26.4193 3.68605L25.924 4.55477L25.9243 4.55494L26.4193 3.68605ZM25.4439 2.9126L24.7951 3.67359L24.7953 3.67377L25.4439 2.9126ZM25.0836 2.60544L25.7323 1.84445L25.7322 1.84433L25.0836 2.60544ZM25.0811 2.60331L25.7297 1.8422L25.7296 1.84217L25.0811 2.60331ZM23.2743 1.1273L23.8635 0.319312L23.8634 0.319278L23.2743 1.1273ZM12.6 27.4L13.3071 26.6929L12.6 27.4ZM12.6 24.6L11.8929 23.8929L11.8929 23.8929L12.6 24.6ZM17.2 20L17.9071 20.7071L18.6142 20L17.9071 19.2929L17.2 20ZM12.6 15.4L13.3071 14.6929V14.6929L12.6 15.4ZM12.6 12.6L13.3071 13.3071L13.3071 13.3071L12.6 12.6ZM15.4 12.6L14.6929 13.3071L15.4 12.6ZM20 17.2L19.2929 17.9071L20 18.6142L20.7071 17.9071L20 17.2ZM24.6 12.6L25.3071 13.3071L24.6 12.6ZM27.4 12.6L28.1071 11.8929L28.1071 11.8929L27.4 12.6ZM22.8 20L22.0929 19.2929L21.3858 20L22.0929 20.7071L22.8 20ZM27.4 24.6L28.1071 23.8929V23.8929L27.4 24.6ZM20 22.8L20.7071 22.0929L20 21.3858L19.2929 22.0929L20 22.8ZM18.7459 1.17819C19.565 0.940605 20.4349 0.940605 21.254 1.17819L21.8112 -0.742648C20.6281 -1.08578 19.3718 -1.08578 18.1888 -0.742648L18.7459 1.17819ZM17.3148 1.93531C17.8106 1.57388 18.2551 1.3206 18.746 1.17817L18.1887 -0.742627C17.3869 -0.509998 16.7283 -0.112221 16.1365 0.319278L17.3148 1.93531ZM15.5651 3.3665C16.2767 2.76012 16.8341 2.28589 17.3149 1.93528L16.1365 0.319311C15.581 0.724374 14.9593 1.25503 14.2679 1.8443L15.5651 3.3665ZM15.5566 3.37366L15.5567 3.37362L14.2763 1.83718L14.2763 1.83722L15.5566 3.37366ZM15.2046 3.67371L15.5651 3.36655L14.2678 1.84432L13.9074 2.15149L15.2046 3.67371ZM14.0756 4.55492C14.3539 4.39637 14.6095 4.18091 15.2046 3.67372L13.9074 2.15148C13.2472 2.71406 13.16 2.77475 13.0855 2.81718L14.0756 4.55492ZM13.2677 4.88956C13.55 4.81221 13.8214 4.69975 14.0757 4.55491L13.0855 2.81719C12.9765 2.87933 12.8601 2.92751 12.7393 2.96063L13.2677 4.88956ZM11.8464 5.06474C12.6259 5.00254 12.9589 4.97418 13.2678 4.88953L12.7392 2.96066C12.6565 2.98332 12.5519 3.00209 11.6873 3.07108L11.8464 5.06474ZM11.3743 5.10242L11.8464 5.06475L11.6873 3.07108L11.2152 3.10875L11.3743 5.10242ZM9.12495 5.32767C9.71284 5.23561 10.4423 5.17676 11.3742 5.10242L11.2152 3.10875C10.3095 3.181 9.49475 3.24539 8.81554 3.35175L9.12495 5.32767ZM7.57767 5.80426C8.02556 5.55778 8.51892 5.42259 9.12499 5.32766L8.8155 3.35175C8.09197 3.46508 7.34499 3.64946 6.6134 4.05207L7.57767 5.80426ZM5.80427 7.57766C6.21545 6.83048 6.83046 6.21548 7.57768 5.80426L6.61339 4.05207C5.53423 4.64597 4.64596 5.53421 4.05207 6.61341L5.80427 7.57766ZM5.32767 9.12496C5.42257 8.51891 5.55776 8.02557 5.80425 7.57769L4.05208 6.61338C3.64944 7.34498 3.46506 8.09198 3.35175 8.81553L5.32767 9.12496ZM5.10246 11.3737C5.17679 10.442 5.23561 9.71273 5.32766 9.12498L3.35175 8.81551C3.24539 9.49461 3.18103 10.3093 3.1088 11.2147L5.10246 11.3737ZM5.10241 11.3744L5.10245 11.3738L3.1088 11.2145L3.10876 11.2151L5.10241 11.3744ZM5.06475 11.8464L5.10242 11.3743L3.10875 11.2152L3.07108 11.6873L5.06475 11.8464ZM4.88953 13.2678C4.97418 12.9589 5.00254 12.6259 5.06475 11.8464L3.07108 11.6873C3.00209 12.5519 2.98332 12.6565 2.96066 12.7392L4.88953 13.2678ZM4.55491 14.0757C4.69975 13.8215 4.81221 13.55 4.88956 13.2677L2.96063 12.7393C2.92751 12.8601 2.87933 12.9765 2.81719 13.0855L4.55491 14.0757ZM3.67368 15.2047C4.18097 14.6094 4.39633 14.3539 4.55487 14.0757L2.81723 13.0855C2.77476 13.16 2.714 13.2473 2.15148 13.9074L3.67368 15.2047ZM3.36655 15.5651L3.67371 15.2046L2.15145 13.9074L1.84428 14.2679L3.36655 15.5651ZM1.93528 17.315C2.28591 16.8342 2.76017 16.2766 3.36652 15.5651L1.84431 14.2678C1.25498 14.9594 0.724372 15.5811 0.319312 16.1366L1.93528 17.315ZM1.17819 18.746C1.32062 18.2549 1.57388 17.8104 1.93521 17.3151L0.319382 16.1365C-0.112223 16.7282 -0.510022 17.3868 -0.742651 18.1889L1.17819 18.746ZM1.17819 21.2539C0.940605 20.4348 0.940605 19.5651 1.17819 18.746L-0.742648 18.1889C-1.08578 19.3719 -1.08578 20.628 -0.742648 21.811L1.17819 21.2539ZM1.93531 22.6852C1.57389 22.1895 1.32062 21.745 1.17819 21.2539L-0.742651 21.811C-0.510024 22.6131 -0.112232 23.2717 0.319278 23.8635L1.93531 22.6852ZM3.36646 24.4348C2.7601 23.7234 2.28587 23.1659 1.9353 22.6852L0.319297 23.8635C0.724372 24.419 1.25505 25.0407 1.84434 25.7321L3.36646 24.4348ZM3.67373 24.7954L3.36654 24.4349L1.84425 25.732L2.15144 26.0925L3.67373 24.7954ZM4.55497 25.9245C4.39638 25.646 4.18096 25.3905 3.67364 24.7953L2.15152 26.0926C2.71401 26.7526 2.77471 26.8399 2.81713 26.9143L4.55497 25.9245ZM4.88957 26.7324C4.81221 26.4499 4.69974 26.1786 4.55494 25.9244L2.81716 26.9144C2.87933 27.0235 2.92751 27.1399 2.96062 27.2607L4.88957 26.7324ZM5.06474 28.1535C5.00255 27.3741 4.97419 27.0409 4.88949 26.7321L2.9607 27.261C2.98331 27.3435 3.00209 27.448 3.07108 28.3126L5.06474 28.1535ZM5.10242 28.6257L5.06475 28.1536L3.07108 28.3126L3.10875 28.7848L5.10242 28.6257ZM5.32766 30.8749C5.23559 30.287 5.17676 29.5577 5.10242 28.6257L3.10875 28.7847C3.181 29.6905 3.24537 30.5051 3.35175 31.1844L5.32766 30.8749ZM5.80426 32.4222C5.55776 31.9743 5.42257 31.481 5.32767 30.8749L3.35175 31.1844C3.46506 31.9079 3.64944 32.6549 4.05208 33.3865L5.80426 32.4222ZM7.57766 34.1956C6.83046 33.7845 6.21546 33.1695 5.80428 32.4223L4.05205 33.3865C4.64595 34.4657 5.53424 35.354 6.61341 35.9478L7.57766 34.1956ZM9.12513 34.6724C8.51878 34.5773 8.02556 34.4422 7.57783 34.1957L6.61324 35.9478C7.34499 36.3506 8.09211 36.5348 8.81535 36.6482L9.12513 34.6724ZM11.3743 34.8975C10.4424 34.8233 9.71286 34.7644 9.12497 34.6723L8.81552 36.6483C9.49481 36.7546 10.3097 36.819 11.2154 36.8912L11.3743 34.8975ZM11.8463 34.9351L11.3743 34.8975L11.2154 36.8912L11.6874 36.9288L11.8463 34.9351ZM13.2676 35.1103C12.9589 35.0258 12.6261 34.9974 11.8464 34.9352L11.6873 36.9288C12.5517 36.9978 12.6565 37.0166 12.7393 37.0393L13.2676 35.1103ZM14.0754 35.4449C13.8216 35.3004 13.5503 35.1877 13.2676 35.1103L12.7393 37.0393C12.8599 37.0723 12.9763 37.1205 13.0858 37.1829L14.0754 35.4449ZM15.2045 36.3261C14.6098 35.8194 14.3539 35.6034 14.0754 35.4449L13.0858 37.1829C13.1601 37.2252 13.2469 37.2857 13.9075 37.8485L15.2045 36.3261ZM15.5652 36.6336L15.2047 36.3263L13.9073 37.8483L14.2678 38.1556L15.5652 36.6336ZM15.5702 36.6378L15.5652 36.6335L14.2678 38.1556L14.2727 38.1598L15.5702 36.6378ZM17.3147 38.0645C16.8352 37.7149 16.2794 37.2421 15.5701 36.6377L14.2729 38.1599C14.9621 38.7473 15.5823 39.2766 16.1366 39.6807L17.3147 38.0645ZM18.7462 38.8219C18.2551 38.6793 17.8105 38.426 17.3149 38.0646L16.1365 39.6806C16.7284 40.1122 17.3869 40.5098 18.1886 40.7426L18.7462 38.8219ZM21.2541 38.8218C20.4349 39.0593 19.565 39.0593 18.7459 38.8218L18.1889 40.7427C19.3719 41.0857 20.6281 41.0857 21.8111 40.7427L21.2541 38.8218ZM22.6851 38.0646C22.1894 38.426 21.7449 38.6793 21.2538 38.8219L21.8114 40.7426C22.6131 40.5098 23.2716 40.1122 23.8635 39.6806L22.6851 38.0646ZM24.4321 36.6358C23.7218 37.2411 23.1653 37.7146 22.6852 38.0645L23.8633 39.6807C24.4182 39.2761 25.0392 38.7461 25.7293 38.1579L24.4321 36.6358ZM24.435 36.6332L24.4323 36.6355L25.7291 38.1582L25.7317 38.1559L24.435 36.6332ZM24.7951 36.3263L24.4347 36.6335L25.7321 38.1556L26.0926 37.8483L24.7951 36.3263ZM25.9243 35.445C25.6462 35.6035 25.3904 35.8192 24.7954 36.326L26.0923 37.8485C26.7529 37.2859 26.84 37.2251 26.9144 37.1827L25.9243 35.445ZM26.7324 35.1103C26.4496 35.1877 26.1783 35.3004 25.9245 35.4449L26.9141 37.1829C27.0236 37.1205 27.14 37.0723 27.2606 37.0393L26.7324 35.1103ZM28.1537 34.9352C27.3737 34.9974 27.0412 35.0258 26.7324 35.1103L27.2605 37.0393C27.3435 37.0166 27.4483 36.9978 28.3128 36.9288L28.1537 34.9352ZM28.6257 34.8975L28.1538 34.9351L28.3127 36.9288L28.7846 36.8912L28.6257 34.8975ZM30.875 34.6723C30.2872 34.7644 29.5576 34.8233 28.6257 34.8975L28.7846 36.8912C29.6904 36.819 30.5052 36.7546 31.1845 36.6483L30.875 34.6723ZM32.4222 34.1957C31.9744 34.4422 31.4812 34.5773 30.8749 34.6724L31.1847 36.6482C31.9079 36.5348 32.655 36.3506 33.3868 35.9478L32.4222 34.1957ZM34.1958 32.4223C33.7846 33.1694 33.1695 33.7844 32.4223 34.1957L33.3867 35.9478C34.4656 35.354 35.354 34.4658 35.948 33.3865L34.1958 32.4223ZM34.6722 30.875C34.5774 31.4809 34.4422 31.9743 34.1957 32.4223L35.948 33.3864C36.3505 32.6549 36.535 31.9079 36.6482 31.1843L34.6722 30.875ZM34.8974 28.6256C34.8232 29.5575 34.7643 30.2871 34.6723 30.8749L36.6482 31.1844C36.7546 30.5051 36.819 29.6902 36.8911 28.7845L34.8974 28.6256ZM34.9353 28.1532L34.8975 28.6252L36.8911 28.7849L36.9289 28.313L34.9353 28.1532ZM35.1107 26.7314C35.0256 27.0407 34.9974 27.3748 34.9353 28.1535L36.9289 28.3127C36.998 27.4473 37.0166 27.3437 37.0391 27.2618L35.1107 26.7314ZM35.4448 25.9246C35.3 26.1789 35.1877 26.4503 35.1104 26.7325L37.0394 27.2606C37.0726 27.1395 37.1207 27.0232 37.1828 26.9142L35.4448 25.9246ZM36.3264 24.7952C35.8189 25.3906 35.6037 25.6459 35.4451 25.924L37.1825 26.9148C37.2251 26.84 37.2861 26.7524 37.8484 26.0926L36.3264 24.7952ZM36.6337 24.4347L36.3264 24.7952L37.8485 26.0926L38.1557 25.7321L36.6337 24.4347ZM36.6388 24.4287L36.6335 24.4349L38.1559 25.732L38.1612 25.7257L36.6388 24.4287ZM38.0648 22.6851C37.7151 23.1644 37.2428 23.7198 36.6388 24.4286L38.1612 25.7257C38.7481 25.0369 39.2767 24.4174 39.6806 23.8636L38.0648 22.6851ZM38.8217 21.254C38.6793 21.7451 38.4261 22.1895 38.0647 22.6851L39.6807 23.8635C40.1123 23.2717 40.5101 22.613 40.7426 21.8109L38.8217 21.254ZM38.8218 18.7461C39.0594 19.5652 39.0594 20.4348 38.8218 21.2538L40.7425 21.8111C41.0858 20.628 41.0858 19.3719 40.7425 18.1888L38.8218 18.7461ZM38.0648 17.3151C38.4261 17.8104 38.6793 18.2549 38.8217 18.7459L40.7426 18.189C40.51 17.3869 40.1123 16.7282 39.6806 16.1364L38.0648 17.3151ZM36.6335 15.5652C37.2398 16.2765 37.7141 16.8342 38.0648 17.315L39.6806 16.1365C39.2755 15.5811 38.7451 14.9595 38.1555 14.2678L36.6335 15.5652ZM36.3262 15.2045L36.6333 15.565L38.1557 14.268L37.8486 13.9075L36.3262 15.2045ZM35.4452 14.0762C35.6038 14.3541 35.8189 14.6093 36.3263 15.2047L37.8485 13.9074C37.2861 13.2475 37.2251 13.1599 37.1824 13.085L35.4452 14.0762ZM35.1105 13.2676C35.1877 13.5497 35.3 13.8211 35.4448 14.0754L37.1828 13.0858C37.1208 12.9768 37.0726 12.8605 37.0394 12.7393L35.1105 13.2676ZM34.9353 11.8464C34.9974 12.6252 35.0257 12.9591 35.1107 13.2685L37.0392 12.7384C37.0166 12.6563 36.998 12.5525 36.9289 11.6873L34.9353 11.8464ZM34.8975 11.3747L34.9353 11.8467L36.9289 11.687L36.8911 11.215L34.8975 11.3747ZM34.6723 9.12497C34.7643 9.71286 34.8232 10.4424 34.8974 11.3743L36.8911 11.2154C36.8189 10.3097 36.7546 9.49481 36.6482 8.81552L34.6723 9.12497ZM34.1957 7.57761C34.4422 8.02556 34.5774 8.51896 34.6722 9.12484L36.6482 8.81565C36.535 8.09193 36.3505 7.34499 35.948 6.61347L34.1957 7.57761ZM32.4223 5.80424C33.1694 6.21547 33.7846 6.83053 34.1958 7.57766L35.948 6.61341C35.354 5.53417 34.4656 4.64594 33.3867 4.0521L32.4223 5.80424ZM30.875 5.32766C31.4811 5.42259 31.9744 5.55778 32.4224 5.80427L33.3866 4.05206C32.655 3.64946 31.908 3.46508 31.1845 3.35175L30.875 5.32766ZM28.6256 5.10242C29.5576 5.17676 30.2872 5.23561 30.8751 5.32767L31.1845 3.35175C30.5052 3.24539 29.6904 3.181 28.7847 3.10875L28.6256 5.10242ZM28.1536 5.06474L28.6256 5.10241L28.7847 3.10875L28.3128 3.07108L28.1536 5.06474ZM26.7323 4.88956C27.0411 4.97418 27.3739 5.00253 28.1537 5.06475L28.3127 3.07108C27.4481 3.0021 27.3435 2.98332 27.2607 2.96063L26.7323 4.88956ZM25.9243 4.55494C26.1785 4.69974 26.4499 4.81221 26.7323 4.88957L27.2607 2.96062C27.1398 2.92751 27.0235 2.87933 26.9143 2.81716L25.9243 4.55494ZM24.7953 3.67377C25.3907 4.18107 25.6461 4.39632 25.924 4.55477L26.9146 2.81733C26.84 2.77481 26.7526 2.7139 26.0924 2.15143L24.7953 3.67377ZM24.4348 3.36643L24.7951 3.67359L26.0926 2.15161L25.7323 1.84445L24.4348 3.36643ZM24.4324 3.36441L24.4349 3.36654L25.7322 1.84433L25.7297 1.8422L24.4324 3.36441ZM22.6851 1.93528C23.1653 2.28547 23.722 2.759 24.4325 3.36445L25.7296 1.84217C25.0392 1.2538 24.4183 0.723912 23.8635 0.319312L22.6851 1.93528ZM21.254 1.17817C21.7449 1.3206 22.1894 1.57388 22.6851 1.93531L23.8634 0.319278C23.2716 -0.112221 22.6131 -0.509998 21.8112 -0.742627L21.254 1.17817ZM11.8929 28.1071C12.152 28.3661 12.4507 28.6002 12.8189 28.7638C13.1914 28.9294 13.5833 29 14 29V27C13.8167 27 13.7087 26.9706 13.6312 26.9362C13.5493 26.8998 13.4481 26.8339 13.3071 26.6929L11.8929 28.1071ZM11.8929 23.8929C10.7024 25.0834 10.7024 26.9166 11.8929 28.1071L13.3071 26.6929C12.8977 26.2834 12.8977 25.7166 13.3071 25.3071L11.8929 23.8929ZM16.4929 19.2929L11.8929 23.8929L13.3071 25.3071L17.9071 20.7071L16.4929 19.2929ZM11.8929 16.1071L16.4929 20.7071L17.9071 19.2929L13.3071 14.6929L11.8929 16.1071ZM11.8929 11.8929C10.7024 13.0834 10.7024 14.9166 11.8929 16.1071L13.3071 14.6929C12.8977 14.2834 12.8977 13.7166 13.3071 13.3071L11.8929 11.8929ZM16.1071 11.8929C14.9166 10.7024 13.0834 10.7024 11.8929 11.8929L13.3071 13.3071C13.7166 12.8976 14.2834 12.8976 14.6929 13.3071L16.1071 11.8929ZM20.7071 16.4929L16.1071 11.8929L14.6929 13.3071L19.2929 17.9071L20.7071 16.4929ZM23.8929 11.8929L19.2929 16.4929L20.7071 17.9071L25.3071 13.3071L23.8929 11.8929ZM28.1071 11.8929C26.9166 10.7024 25.0834 10.7024 23.8929 11.8929L25.3071 13.3071C25.7166 12.8976 26.2834 12.8976 26.6929 13.3071L28.1071 11.8929ZM28.1071 16.1071C29.2977 14.9166 29.2977 13.0834 28.1071 11.8929L26.6929 13.3071C27.1024 13.7166 27.1024 14.2834 26.6929 14.6929L28.1071 16.1071ZM23.5071 20.7071L28.1071 16.1071L26.6929 14.6929L22.0929 19.2929L23.5071 20.7071ZM28.1071 23.8929L23.5071 19.2929L22.0929 20.7071L26.6929 25.3071L28.1071 23.8929ZM28.1071 28.1071C29.2977 26.9166 29.2977 25.0834 28.1071 23.8929L26.6929 25.3071C27.1024 25.7166 27.1024 26.2834 26.6929 26.6929L28.1071 28.1071ZM26 29C26.4167 29 26.8087 28.9294 27.1812 28.7638C27.5493 28.6002 27.8481 28.3661 28.1071 28.1071L26.6929 26.6929C26.552 26.8339 26.4507 26.8998 26.3689 26.9362C26.2914 26.9706 26.1833 27 26 27V29ZM23.8929 28.1071C24.152 28.3661 24.4507 28.6002 24.8189 28.7638C25.1914 28.9294 25.5833 29 26 29V27C25.8167 27 25.7087 26.9706 25.6312 26.9362C25.5493 26.8998 25.4481 26.8339 25.3071 26.6929L23.8929 28.1071ZM19.2929 23.5071L23.8929 28.1071L25.3071 26.6929L20.7071 22.0929L19.2929 23.5071ZM16.1071 28.1071L20.7071 23.5071L19.2929 22.0929L14.6929 26.6929L16.1071 28.1071ZM14 29C14.4167 29 14.8087 28.9294 15.1812 28.7638C15.5493 28.6002 15.8481 28.3661 16.1071 28.1071L14.6929 26.6929C14.552 26.8339 14.4507 26.8998 14.3689 26.9362C14.2914 26.9706 14.1833 27 14 27V29Z" fill="url(#paint1_linear_12_1155)" mask="url(#path-1-inside-1_12_1155)"/>
7
- <defs>
8
- <linearGradient id="paint0_linear_12_1155" x1="20" y1="1.0899" x2="20.6375" y2="39.9999" gradientUnits="userSpaceOnUse">
9
- <stop stop-color="#E42525"/>
10
- <stop offset="1" stop-color="#C90000"/>
11
- </linearGradient>
12
- <linearGradient id="paint1_linear_12_1155" x1="20" y1="1.21631" x2="20" y2="39.9999" gradientUnits="userSpaceOnUse">
13
- <stop stop-color="#A90707"/>
14
- <stop offset="1" stop-color="#E42525"/>
15
- </linearGradient>
16
- </defs>
17
- </svg>
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <mask id="path-1-inside-1_12_1155" fill="white">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M21.5326 0.217769C20.5315 -0.0725897 19.4684 -0.0725897 18.4674 0.217769C17.821 0.4053 17.2694 0.730828 16.7257 1.1273C16.2076 1.50513 15.618 2.00757 14.9165 2.6054L14.9165 2.60544L14.556 2.9126C13.9283 3.44749 13.757 3.58556 13.5806 3.68605C13.399 3.78954 13.2051 3.86986 13.0035 3.92509C12.8077 3.97875 12.5889 4.00232 11.7668 4.06791L11.2947 4.10558C10.3759 4.17888 9.6038 4.2405 8.97024 4.33971C8.30544 4.44384 7.68528 4.60362 7.09554 4.92817C6.18235 5.43072 5.4307 6.18235 4.92817 7.09554C4.6036 7.68528 4.44382 8.30544 4.33971 8.97024C4.2405 9.60367 4.17891 10.3757 4.10563 11.2942L4.10558 11.2947L4.06791 11.7668C4.00232 12.5889 3.97875 12.8077 3.9251 13.0035C3.86986 13.2051 3.78954 13.399 3.68605 13.5806C3.58554 13.757 3.44749 13.9284 2.91258 14.556L2.60542 14.9165C2.00757 15.618 1.50514 16.2076 1.1273 16.7258C0.730829 17.2693 0.4053 17.8209 0.217769 18.4674C-0.0725897 19.4685 -0.0725897 20.5314 0.217769 21.5325C0.4053 22.179 0.730829 22.7306 1.1273 23.2743C1.50512 23.7925 2.00757 24.382 2.6054 25.0834L2.91258 25.4439C3.44749 26.0715 3.58554 26.243 3.68605 26.4194C3.78954 26.601 3.86986 26.7949 3.9251 26.9966C3.97875 27.1922 4.00232 27.4111 4.06791 28.2331L4.10558 28.7052C4.17888 29.6241 4.24048 30.3961 4.33971 31.0296C4.44382 31.6944 4.6036 32.3146 4.92817 32.9044C5.4307 33.8176 6.18235 34.5692 7.09554 35.0717C7.68528 35.3964 8.30544 35.5561 8.97024 35.6603C9.60384 35.7595 10.376 35.8211 11.2949 35.8944L11.7668 35.932C12.5889 35.9976 12.8077 36.0212 13.0035 36.0748C13.2051 36.13 13.399 36.2105 13.5806 36.3139C13.757 36.4143 13.9283 36.5525 14.556 37.0873L14.9165 37.3946L14.9215 37.3988C15.6208 37.9947 16.2088 38.4958 16.7257 38.8726C17.2694 39.2691 17.821 39.5946 18.4674 39.7822C19.4684 40.0725 20.5315 40.0725 21.5326 39.7822C22.179 39.5946 22.7305 39.2691 23.2743 38.8726C23.7917 38.4954 24.3805 37.9936 25.0807 37.3968L25.0834 37.3946L25.4439 37.0873C26.0716 36.5525 26.2431 36.4143 26.4193 36.3139C26.601 36.2105 26.7948 36.13 26.9965 36.0748C27.1923 36.0212 27.411 35.9976 28.2332 35.932L28.7051 35.8944C29.624 35.8211 30.3962 35.7595 31.0298 35.6603C31.6945 35.5561 32.3147 35.3964 32.9045 35.0717C33.8175 34.5692 34.5693 33.8176 35.0719 32.9044C35.3964 32.3146 35.5562 31.6944 35.6602 31.0296C35.7595 30.3961 35.8211 29.6239 35.8943 28.705L35.9321 28.2331C35.9977 27.4111 36.0211 27.1922 36.0749 26.9966C36.1301 26.7949 36.2104 26.601 36.3138 26.4194C36.4144 26.243 36.5525 26.0715 37.0874 25.4439L37.3947 25.0834L37.4 25.0772C37.9954 24.3783 38.4959 23.7909 38.8727 23.2743C39.2692 22.7306 39.5947 22.179 39.7821 21.5325C40.0726 20.5314 40.0726 19.4685 39.7821 18.4674C39.5947 17.8209 39.2692 17.2693 38.8727 16.7258C38.4948 16.2076 37.9925 15.618 37.3945 14.9165L37.0874 14.556C36.5525 13.9284 36.4144 13.757 36.3138 13.5806C36.2104 13.399 36.1301 13.2051 36.0749 13.0035C36.0211 12.8077 35.9977 12.5889 35.9321 11.7668L35.8943 11.2949C35.8211 10.376 35.7595 9.60384 35.6602 8.97024C35.5562 8.30544 35.3964 7.68528 35.0719 7.09554C34.5693 6.18235 33.8175 5.4307 32.9045 4.92817C32.3147 4.60362 31.6945 4.44384 31.0298 4.33971C30.3962 4.2405 29.624 4.17888 28.7051 4.10558L28.2332 4.06791C27.411 4.00232 27.1923 3.97875 26.9965 3.92509C26.7948 3.86986 26.601 3.78954 26.4193 3.68605C26.2431 3.58556 26.0716 3.44749 25.4439 2.9126L25.0836 2.60544L25.0811 2.60331C24.3806 2.0064 23.7918 1.50469 23.2743 1.1273C22.7305 0.730828 22.179 0.4053 21.5326 0.217769ZM14 28C13.4 28 13 27.8 12.6 27.4C11.8 26.6 11.8 25.4 12.6 24.6L17.2 20L12.6 15.4C11.8 14.6 11.8 13.4 12.6 12.6C13.4 11.8 14.6 11.8 15.4 12.6L20 17.2L24.6 12.6C25.4 11.8 26.6 11.8 27.4 12.6C28.2 13.4 28.2 14.6 27.4 15.4L22.8 20L27.4 24.6C28.2 25.4 28.2 26.6 27.4 27.4C27 27.8 26.6 28 26 28C25.4 28 25 27.8 24.6 27.4L20 22.8L15.4 27.4C15 27.8 14.6 28 14 28Z"/>
4
+ </mask>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M21.5326 0.217769C20.5315 -0.0725897 19.4684 -0.0725897 18.4674 0.217769C17.821 0.4053 17.2694 0.730828 16.7257 1.1273C16.2076 1.50513 15.618 2.00757 14.9165 2.6054L14.9165 2.60544L14.556 2.9126C13.9283 3.44749 13.757 3.58556 13.5806 3.68605C13.399 3.78954 13.2051 3.86986 13.0035 3.92509C12.8077 3.97875 12.5889 4.00232 11.7668 4.06791L11.2947 4.10558C10.3759 4.17888 9.6038 4.2405 8.97024 4.33971C8.30544 4.44384 7.68528 4.60362 7.09554 4.92817C6.18235 5.43072 5.4307 6.18235 4.92817 7.09554C4.6036 7.68528 4.44382 8.30544 4.33971 8.97024C4.2405 9.60367 4.17891 10.3757 4.10563 11.2942L4.10558 11.2947L4.06791 11.7668C4.00232 12.5889 3.97875 12.8077 3.9251 13.0035C3.86986 13.2051 3.78954 13.399 3.68605 13.5806C3.58554 13.757 3.44749 13.9284 2.91258 14.556L2.60542 14.9165C2.00757 15.618 1.50514 16.2076 1.1273 16.7258C0.730829 17.2693 0.4053 17.8209 0.217769 18.4674C-0.0725897 19.4685 -0.0725897 20.5314 0.217769 21.5325C0.4053 22.179 0.730829 22.7306 1.1273 23.2743C1.50512 23.7925 2.00757 24.382 2.6054 25.0834L2.91258 25.4439C3.44749 26.0715 3.58554 26.243 3.68605 26.4194C3.78954 26.601 3.86986 26.7949 3.9251 26.9966C3.97875 27.1922 4.00232 27.4111 4.06791 28.2331L4.10558 28.7052C4.17888 29.6241 4.24048 30.3961 4.33971 31.0296C4.44382 31.6944 4.6036 32.3146 4.92817 32.9044C5.4307 33.8176 6.18235 34.5692 7.09554 35.0717C7.68528 35.3964 8.30544 35.5561 8.97024 35.6603C9.60384 35.7595 10.376 35.8211 11.2949 35.8944L11.7668 35.932C12.5889 35.9976 12.8077 36.0212 13.0035 36.0748C13.2051 36.13 13.399 36.2105 13.5806 36.3139C13.757 36.4143 13.9283 36.5525 14.556 37.0873L14.9165 37.3946L14.9215 37.3988C15.6208 37.9947 16.2088 38.4958 16.7257 38.8726C17.2694 39.2691 17.821 39.5946 18.4674 39.7822C19.4684 40.0725 20.5315 40.0725 21.5326 39.7822C22.179 39.5946 22.7305 39.2691 23.2743 38.8726C23.7917 38.4954 24.3805 37.9936 25.0807 37.3968L25.0834 37.3946L25.4439 37.0873C26.0716 36.5525 26.2431 36.4143 26.4193 36.3139C26.601 36.2105 26.7948 36.13 26.9965 36.0748C27.1923 36.0212 27.411 35.9976 28.2332 35.932L28.7051 35.8944C29.624 35.8211 30.3962 35.7595 31.0298 35.6603C31.6945 35.5561 32.3147 35.3964 32.9045 35.0717C33.8175 34.5692 34.5693 33.8176 35.0719 32.9044C35.3964 32.3146 35.5562 31.6944 35.6602 31.0296C35.7595 30.3961 35.8211 29.6239 35.8943 28.705L35.9321 28.2331C35.9977 27.4111 36.0211 27.1922 36.0749 26.9966C36.1301 26.7949 36.2104 26.601 36.3138 26.4194C36.4144 26.243 36.5525 26.0715 37.0874 25.4439L37.3947 25.0834L37.4 25.0772C37.9954 24.3783 38.4959 23.7909 38.8727 23.2743C39.2692 22.7306 39.5947 22.179 39.7821 21.5325C40.0726 20.5314 40.0726 19.4685 39.7821 18.4674C39.5947 17.8209 39.2692 17.2693 38.8727 16.7258C38.4948 16.2076 37.9925 15.618 37.3945 14.9165L37.0874 14.556C36.5525 13.9284 36.4144 13.757 36.3138 13.5806C36.2104 13.399 36.1301 13.2051 36.0749 13.0035C36.0211 12.8077 35.9977 12.5889 35.9321 11.7668L35.8943 11.2949C35.8211 10.376 35.7595 9.60384 35.6602 8.97024C35.5562 8.30544 35.3964 7.68528 35.0719 7.09554C34.5693 6.18235 33.8175 5.4307 32.9045 4.92817C32.3147 4.60362 31.6945 4.44384 31.0298 4.33971C30.3962 4.2405 29.624 4.17888 28.7051 4.10558L28.2332 4.06791C27.411 4.00232 27.1923 3.97875 26.9965 3.92509C26.7948 3.86986 26.601 3.78954 26.4193 3.68605C26.2431 3.58556 26.0716 3.44749 25.4439 2.9126L25.0836 2.60544L25.0811 2.60331C24.3806 2.0064 23.7918 1.50469 23.2743 1.1273C22.7305 0.730828 22.179 0.4053 21.5326 0.217769ZM14 28C13.4 28 13 27.8 12.6 27.4C11.8 26.6 11.8 25.4 12.6 24.6L17.2 20L12.6 15.4C11.8 14.6 11.8 13.4 12.6 12.6C13.4 11.8 14.6 11.8 15.4 12.6L20 17.2L24.6 12.6C25.4 11.8 26.6 11.8 27.4 12.6C28.2 13.4 28.2 14.6 27.4 15.4L22.8 20L27.4 24.6C28.2 25.4 28.2 26.6 27.4 27.4C27 27.8 26.6 28 26 28C25.4 28 25 27.8 24.6 27.4L20 22.8L15.4 27.4C15 27.8 14.6 28 14 28Z" fill="url(#paint0_linear_12_1155)"/>
6
+ <path d="M18.4674 0.217769L18.1888 -0.742648L18.1887 -0.742627L18.4674 0.217769ZM21.5326 0.217769L21.8112 -0.742627L21.8112 -0.742648L21.5326 0.217769ZM16.7257 1.1273L16.1365 0.319278L16.1365 0.319311L16.7257 1.1273ZM14.9165 2.6054L15.5567 3.37367L15.5651 3.3665L14.9165 2.6054ZM14.9165 2.60544L14.2762 1.83717L14.2678 1.84432L14.9165 2.60544ZM14.556 2.9126L15.2046 3.67372L15.2046 3.67371L14.556 2.9126ZM13.5806 3.68605L13.0855 2.81718L13.0855 2.81719L13.5806 3.68605ZM13.0035 3.92509L12.7393 2.96063L12.7392 2.96066L13.0035 3.92509ZM11.7668 4.06791L11.8464 5.06475L11.8464 5.06474L11.7668 4.06791ZM11.2947 4.10558L11.3742 5.10242L11.3743 5.10242L11.2947 4.10558ZM8.97024 4.33971L8.81554 3.35175L8.8155 3.35175L8.97024 4.33971ZM7.09554 4.92817L6.6134 4.05207L6.61339 4.05207L7.09554 4.92817ZM4.92817 7.09554L5.80425 7.57769L5.80427 7.57766L4.92817 7.09554ZM4.33971 8.97024L5.32766 9.12498L5.32767 9.12496L4.33971 8.97024ZM4.10563 11.2942L5.10245 11.3738L5.10246 11.3737L4.10563 11.2942ZM4.10558 11.2947L3.10876 11.2151L3.10875 11.2152L4.10558 11.2947ZM4.06791 11.7668L5.06475 11.8464V11.8464L4.06791 11.7668ZM3.9251 13.0035L2.96066 12.7392L2.96063 12.7393L3.9251 13.0035ZM3.68605 13.5806L4.55487 14.0757L4.55491 14.0757L3.68605 13.5806ZM2.91258 14.556L2.15148 13.9074L2.15145 13.9074L2.91258 14.556ZM2.60542 14.9165L3.36652 15.5651L3.36655 15.5651L2.60542 14.9165ZM1.1273 16.7258L1.93521 17.3151L1.93528 17.315L1.1273 16.7258ZM0.217769 18.4674L1.17819 18.746L1.17819 18.746L0.217769 18.4674ZM0.217769 21.5325L1.17819 21.2539L1.17819 21.2539L0.217769 21.5325ZM1.1273 23.2743L0.319278 23.8635L0.319297 23.8635L1.1273 23.2743ZM2.6054 25.0834L3.36654 24.4349L3.36646 24.4348L2.6054 25.0834ZM2.91258 25.4439L2.15144 26.0925L2.15152 26.0926L2.91258 25.4439ZM3.68605 26.4194L2.81713 26.9143L2.81716 26.9144L3.68605 26.4194ZM3.9251 26.9966L2.96062 27.2607L2.9607 27.261L3.9251 26.9966ZM4.06791 28.2331L5.06475 28.1536L5.06474 28.1535L4.06791 28.2331ZM4.10558 28.7052L5.10242 28.6257L5.10242 28.6257L4.10558 28.7052ZM4.33971 31.0296L5.32767 30.8749L5.32766 30.8749L4.33971 31.0296ZM4.92817 32.9044L5.80428 32.4223L5.80426 32.4222L4.92817 32.9044ZM7.09554 35.0717L7.57783 34.1957L7.57766 34.1956L7.09554 35.0717ZM8.97024 35.6603L8.81535 36.6482L8.81552 36.6483L8.97024 35.6603ZM11.2949 35.8944L11.3743 34.8975L11.3743 34.8975L11.2949 35.8944ZM11.7668 35.932L11.8464 34.9352L11.8463 34.9351L11.7668 35.932ZM13.0035 36.0748L12.7393 37.0393H12.7393L13.0035 36.0748ZM13.5806 36.3139L13.0858 37.1829L13.0858 37.1829L13.5806 36.3139ZM14.556 37.0873L15.2047 36.3263L15.2045 36.3261L14.556 37.0873ZM14.9165 37.3946L14.2678 38.1556L14.2678 38.1556L14.9165 37.3946ZM14.9215 37.3988L14.2727 38.1598L14.2729 38.1599L14.9215 37.3988ZM16.7257 38.8726L17.3149 38.0646L17.3147 38.0645L16.7257 38.8726ZM18.4674 39.7822L18.1886 40.7426L18.1889 40.7427L18.4674 39.7822ZM21.5326 39.7822L21.8111 40.7427L21.8114 40.7426L21.5326 39.7822ZM23.2743 38.8726L22.6852 38.0645L22.6851 38.0646L23.2743 38.8726ZM25.0807 37.3968L24.4323 36.6355L24.4321 36.6358L25.0807 37.3968ZM25.0834 37.3946L25.7317 38.1559L25.7321 38.1556L25.0834 37.3946ZM25.4439 37.0873L24.7954 36.326L24.7951 36.3263L25.4439 37.0873ZM26.4193 36.3139L25.9245 35.4449L25.9243 35.445L26.4193 36.3139ZM26.9965 36.0748L26.7324 35.1103L26.7324 35.1103L26.9965 36.0748ZM28.2332 35.932L28.1538 34.9351L28.1537 34.9352L28.2332 35.932ZM28.7051 35.8944L28.6257 34.8975L28.6257 34.8975L28.7051 35.8944ZM31.0298 35.6603L31.1845 36.6483L31.1847 36.6482L31.0298 35.6603ZM32.9045 35.0717L32.4223 34.1957L32.4222 34.1957L32.9045 35.0717ZM35.0719 32.9044L35.948 33.3865L35.948 33.3864L35.0719 32.9044ZM35.6602 31.0296L34.6723 30.8749L34.6722 30.875L35.6602 31.0296ZM35.8943 28.705L34.8975 28.6252L34.8974 28.6256L35.8943 28.705ZM35.9321 28.2331L36.9289 28.313L36.9289 28.3127L35.9321 28.2331ZM36.0749 26.9966L37.0391 27.2618L37.0394 27.2606L36.0749 26.9966ZM36.3138 26.4194L35.4451 25.924L35.4448 25.9246L36.3138 26.4194ZM37.0874 25.4439L37.8484 26.0926L37.8485 26.0926L37.0874 25.4439ZM37.3947 25.0834L38.1557 25.7321L38.1559 25.732L37.3947 25.0834ZM37.4 25.0772L36.6388 24.4286L36.6388 24.4287L37.4 25.0772ZM38.8727 23.2743L39.6806 23.8636L39.6807 23.8635L38.8727 23.2743ZM39.7821 21.5325L38.8218 21.2538L38.8217 21.254L39.7821 21.5325ZM39.7821 18.4674L38.8217 18.7459L38.8218 18.7461L39.7821 18.4674ZM38.8727 16.7258L38.0648 17.315L38.0648 17.3151L38.8727 16.7258ZM37.3945 14.9165L36.6333 15.565L36.6335 15.5652L37.3945 14.9165ZM37.0874 14.556L37.8486 13.9075L37.8485 13.9074L37.0874 14.556ZM36.3138 13.5806L35.4448 14.0754L35.4452 14.0762L36.3138 13.5806ZM36.0749 13.0035L37.0394 12.7393L37.0392 12.7384L36.0749 13.0035ZM35.9321 11.7668L36.9289 11.6873L36.9289 11.687L35.9321 11.7668ZM35.8943 11.2949L34.8974 11.3743L34.8975 11.3747L35.8943 11.2949ZM35.6602 8.97024L34.6722 9.12484L34.6723 9.12497L35.6602 8.97024ZM35.0719 7.09554L35.948 6.61347L35.948 6.61341L35.0719 7.09554ZM32.9045 4.92817L33.3867 4.0521L33.3866 4.05206L32.9045 4.92817ZM31.0298 4.33971L31.1845 3.35175L31.1845 3.35175L31.0298 4.33971ZM28.7051 4.10558L28.6256 5.10241L28.6256 5.10242L28.7051 4.10558ZM28.2332 4.06791L28.3128 3.07108L28.3127 3.07108L28.2332 4.06791ZM26.9965 3.92509L27.2607 2.96063L27.2607 2.96062L26.9965 3.92509ZM26.4193 3.68605L25.924 4.55477L25.9243 4.55494L26.4193 3.68605ZM25.4439 2.9126L24.7951 3.67359L24.7953 3.67377L25.4439 2.9126ZM25.0836 2.60544L25.7323 1.84445L25.7322 1.84433L25.0836 2.60544ZM25.0811 2.60331L25.7297 1.8422L25.7296 1.84217L25.0811 2.60331ZM23.2743 1.1273L23.8635 0.319312L23.8634 0.319278L23.2743 1.1273ZM12.6 27.4L13.3071 26.6929L12.6 27.4ZM12.6 24.6L11.8929 23.8929L11.8929 23.8929L12.6 24.6ZM17.2 20L17.9071 20.7071L18.6142 20L17.9071 19.2929L17.2 20ZM12.6 15.4L13.3071 14.6929V14.6929L12.6 15.4ZM12.6 12.6L13.3071 13.3071L13.3071 13.3071L12.6 12.6ZM15.4 12.6L14.6929 13.3071L15.4 12.6ZM20 17.2L19.2929 17.9071L20 18.6142L20.7071 17.9071L20 17.2ZM24.6 12.6L25.3071 13.3071L24.6 12.6ZM27.4 12.6L28.1071 11.8929L28.1071 11.8929L27.4 12.6ZM22.8 20L22.0929 19.2929L21.3858 20L22.0929 20.7071L22.8 20ZM27.4 24.6L28.1071 23.8929V23.8929L27.4 24.6ZM20 22.8L20.7071 22.0929L20 21.3858L19.2929 22.0929L20 22.8ZM18.7459 1.17819C19.565 0.940605 20.4349 0.940605 21.254 1.17819L21.8112 -0.742648C20.6281 -1.08578 19.3718 -1.08578 18.1888 -0.742648L18.7459 1.17819ZM17.3148 1.93531C17.8106 1.57388 18.2551 1.3206 18.746 1.17817L18.1887 -0.742627C17.3869 -0.509998 16.7283 -0.112221 16.1365 0.319278L17.3148 1.93531ZM15.5651 3.3665C16.2767 2.76012 16.8341 2.28589 17.3149 1.93528L16.1365 0.319311C15.581 0.724374 14.9593 1.25503 14.2679 1.8443L15.5651 3.3665ZM15.5566 3.37366L15.5567 3.37362L14.2763 1.83718L14.2763 1.83722L15.5566 3.37366ZM15.2046 3.67371L15.5651 3.36655L14.2678 1.84432L13.9074 2.15149L15.2046 3.67371ZM14.0756 4.55492C14.3539 4.39637 14.6095 4.18091 15.2046 3.67372L13.9074 2.15148C13.2472 2.71406 13.16 2.77475 13.0855 2.81718L14.0756 4.55492ZM13.2677 4.88956C13.55 4.81221 13.8214 4.69975 14.0757 4.55491L13.0855 2.81719C12.9765 2.87933 12.8601 2.92751 12.7393 2.96063L13.2677 4.88956ZM11.8464 5.06474C12.6259 5.00254 12.9589 4.97418 13.2678 4.88953L12.7392 2.96066C12.6565 2.98332 12.5519 3.00209 11.6873 3.07108L11.8464 5.06474ZM11.3743 5.10242L11.8464 5.06475L11.6873 3.07108L11.2152 3.10875L11.3743 5.10242ZM9.12495 5.32767C9.71284 5.23561 10.4423 5.17676 11.3742 5.10242L11.2152 3.10875C10.3095 3.181 9.49475 3.24539 8.81554 3.35175L9.12495 5.32767ZM7.57767 5.80426C8.02556 5.55778 8.51892 5.42259 9.12499 5.32766L8.8155 3.35175C8.09197 3.46508 7.34499 3.64946 6.6134 4.05207L7.57767 5.80426ZM5.80427 7.57766C6.21545 6.83048 6.83046 6.21548 7.57768 5.80426L6.61339 4.05207C5.53423 4.64597 4.64596 5.53421 4.05207 6.61341L5.80427 7.57766ZM5.32767 9.12496C5.42257 8.51891 5.55776 8.02557 5.80425 7.57769L4.05208 6.61338C3.64944 7.34498 3.46506 8.09198 3.35175 8.81553L5.32767 9.12496ZM5.10246 11.3737C5.17679 10.442 5.23561 9.71273 5.32766 9.12498L3.35175 8.81551C3.24539 9.49461 3.18103 10.3093 3.1088 11.2147L5.10246 11.3737ZM5.10241 11.3744L5.10245 11.3738L3.1088 11.2145L3.10876 11.2151L5.10241 11.3744ZM5.06475 11.8464L5.10242 11.3743L3.10875 11.2152L3.07108 11.6873L5.06475 11.8464ZM4.88953 13.2678C4.97418 12.9589 5.00254 12.6259 5.06475 11.8464L3.07108 11.6873C3.00209 12.5519 2.98332 12.6565 2.96066 12.7392L4.88953 13.2678ZM4.55491 14.0757C4.69975 13.8215 4.81221 13.55 4.88956 13.2677L2.96063 12.7393C2.92751 12.8601 2.87933 12.9765 2.81719 13.0855L4.55491 14.0757ZM3.67368 15.2047C4.18097 14.6094 4.39633 14.3539 4.55487 14.0757L2.81723 13.0855C2.77476 13.16 2.714 13.2473 2.15148 13.9074L3.67368 15.2047ZM3.36655 15.5651L3.67371 15.2046L2.15145 13.9074L1.84428 14.2679L3.36655 15.5651ZM1.93528 17.315C2.28591 16.8342 2.76017 16.2766 3.36652 15.5651L1.84431 14.2678C1.25498 14.9594 0.724372 15.5811 0.319312 16.1366L1.93528 17.315ZM1.17819 18.746C1.32062 18.2549 1.57388 17.8104 1.93521 17.3151L0.319382 16.1365C-0.112223 16.7282 -0.510022 17.3868 -0.742651 18.1889L1.17819 18.746ZM1.17819 21.2539C0.940605 20.4348 0.940605 19.5651 1.17819 18.746L-0.742648 18.1889C-1.08578 19.3719 -1.08578 20.628 -0.742648 21.811L1.17819 21.2539ZM1.93531 22.6852C1.57389 22.1895 1.32062 21.745 1.17819 21.2539L-0.742651 21.811C-0.510024 22.6131 -0.112232 23.2717 0.319278 23.8635L1.93531 22.6852ZM3.36646 24.4348C2.7601 23.7234 2.28587 23.1659 1.9353 22.6852L0.319297 23.8635C0.724372 24.419 1.25505 25.0407 1.84434 25.7321L3.36646 24.4348ZM3.67373 24.7954L3.36654 24.4349L1.84425 25.732L2.15144 26.0925L3.67373 24.7954ZM4.55497 25.9245C4.39638 25.646 4.18096 25.3905 3.67364 24.7953L2.15152 26.0926C2.71401 26.7526 2.77471 26.8399 2.81713 26.9143L4.55497 25.9245ZM4.88957 26.7324C4.81221 26.4499 4.69974 26.1786 4.55494 25.9244L2.81716 26.9144C2.87933 27.0235 2.92751 27.1399 2.96062 27.2607L4.88957 26.7324ZM5.06474 28.1535C5.00255 27.3741 4.97419 27.0409 4.88949 26.7321L2.9607 27.261C2.98331 27.3435 3.00209 27.448 3.07108 28.3126L5.06474 28.1535ZM5.10242 28.6257L5.06475 28.1536L3.07108 28.3126L3.10875 28.7848L5.10242 28.6257ZM5.32766 30.8749C5.23559 30.287 5.17676 29.5577 5.10242 28.6257L3.10875 28.7847C3.181 29.6905 3.24537 30.5051 3.35175 31.1844L5.32766 30.8749ZM5.80426 32.4222C5.55776 31.9743 5.42257 31.481 5.32767 30.8749L3.35175 31.1844C3.46506 31.9079 3.64944 32.6549 4.05208 33.3865L5.80426 32.4222ZM7.57766 34.1956C6.83046 33.7845 6.21546 33.1695 5.80428 32.4223L4.05205 33.3865C4.64595 34.4657 5.53424 35.354 6.61341 35.9478L7.57766 34.1956ZM9.12513 34.6724C8.51878 34.5773 8.02556 34.4422 7.57783 34.1957L6.61324 35.9478C7.34499 36.3506 8.09211 36.5348 8.81535 36.6482L9.12513 34.6724ZM11.3743 34.8975C10.4424 34.8233 9.71286 34.7644 9.12497 34.6723L8.81552 36.6483C9.49481 36.7546 10.3097 36.819 11.2154 36.8912L11.3743 34.8975ZM11.8463 34.9351L11.3743 34.8975L11.2154 36.8912L11.6874 36.9288L11.8463 34.9351ZM13.2676 35.1103C12.9589 35.0258 12.6261 34.9974 11.8464 34.9352L11.6873 36.9288C12.5517 36.9978 12.6565 37.0166 12.7393 37.0393L13.2676 35.1103ZM14.0754 35.4449C13.8216 35.3004 13.5503 35.1877 13.2676 35.1103L12.7393 37.0393C12.8599 37.0723 12.9763 37.1205 13.0858 37.1829L14.0754 35.4449ZM15.2045 36.3261C14.6098 35.8194 14.3539 35.6034 14.0754 35.4449L13.0858 37.1829C13.1601 37.2252 13.2469 37.2857 13.9075 37.8485L15.2045 36.3261ZM15.5652 36.6336L15.2047 36.3263L13.9073 37.8483L14.2678 38.1556L15.5652 36.6336ZM15.5702 36.6378L15.5652 36.6335L14.2678 38.1556L14.2727 38.1598L15.5702 36.6378ZM17.3147 38.0645C16.8352 37.7149 16.2794 37.2421 15.5701 36.6377L14.2729 38.1599C14.9621 38.7473 15.5823 39.2766 16.1366 39.6807L17.3147 38.0645ZM18.7462 38.8219C18.2551 38.6793 17.8105 38.426 17.3149 38.0646L16.1365 39.6806C16.7284 40.1122 17.3869 40.5098 18.1886 40.7426L18.7462 38.8219ZM21.2541 38.8218C20.4349 39.0593 19.565 39.0593 18.7459 38.8218L18.1889 40.7427C19.3719 41.0857 20.6281 41.0857 21.8111 40.7427L21.2541 38.8218ZM22.6851 38.0646C22.1894 38.426 21.7449 38.6793 21.2538 38.8219L21.8114 40.7426C22.6131 40.5098 23.2716 40.1122 23.8635 39.6806L22.6851 38.0646ZM24.4321 36.6358C23.7218 37.2411 23.1653 37.7146 22.6852 38.0645L23.8633 39.6807C24.4182 39.2761 25.0392 38.7461 25.7293 38.1579L24.4321 36.6358ZM24.435 36.6332L24.4323 36.6355L25.7291 38.1582L25.7317 38.1559L24.435 36.6332ZM24.7951 36.3263L24.4347 36.6335L25.7321 38.1556L26.0926 37.8483L24.7951 36.3263ZM25.9243 35.445C25.6462 35.6035 25.3904 35.8192 24.7954 36.326L26.0923 37.8485C26.7529 37.2859 26.84 37.2251 26.9144 37.1827L25.9243 35.445ZM26.7324 35.1103C26.4496 35.1877 26.1783 35.3004 25.9245 35.4449L26.9141 37.1829C27.0236 37.1205 27.14 37.0723 27.2606 37.0393L26.7324 35.1103ZM28.1537 34.9352C27.3737 34.9974 27.0412 35.0258 26.7324 35.1103L27.2605 37.0393C27.3435 37.0166 27.4483 36.9978 28.3128 36.9288L28.1537 34.9352ZM28.6257 34.8975L28.1538 34.9351L28.3127 36.9288L28.7846 36.8912L28.6257 34.8975ZM30.875 34.6723C30.2872 34.7644 29.5576 34.8233 28.6257 34.8975L28.7846 36.8912C29.6904 36.819 30.5052 36.7546 31.1845 36.6483L30.875 34.6723ZM32.4222 34.1957C31.9744 34.4422 31.4812 34.5773 30.8749 34.6724L31.1847 36.6482C31.9079 36.5348 32.655 36.3506 33.3868 35.9478L32.4222 34.1957ZM34.1958 32.4223C33.7846 33.1694 33.1695 33.7844 32.4223 34.1957L33.3867 35.9478C34.4656 35.354 35.354 34.4658 35.948 33.3865L34.1958 32.4223ZM34.6722 30.875C34.5774 31.4809 34.4422 31.9743 34.1957 32.4223L35.948 33.3864C36.3505 32.6549 36.535 31.9079 36.6482 31.1843L34.6722 30.875ZM34.8974 28.6256C34.8232 29.5575 34.7643 30.2871 34.6723 30.8749L36.6482 31.1844C36.7546 30.5051 36.819 29.6902 36.8911 28.7845L34.8974 28.6256ZM34.9353 28.1532L34.8975 28.6252L36.8911 28.7849L36.9289 28.313L34.9353 28.1532ZM35.1107 26.7314C35.0256 27.0407 34.9974 27.3748 34.9353 28.1535L36.9289 28.3127C36.998 27.4473 37.0166 27.3437 37.0391 27.2618L35.1107 26.7314ZM35.4448 25.9246C35.3 26.1789 35.1877 26.4503 35.1104 26.7325L37.0394 27.2606C37.0726 27.1395 37.1207 27.0232 37.1828 26.9142L35.4448 25.9246ZM36.3264 24.7952C35.8189 25.3906 35.6037 25.6459 35.4451 25.924L37.1825 26.9148C37.2251 26.84 37.2861 26.7524 37.8484 26.0926L36.3264 24.7952ZM36.6337 24.4347L36.3264 24.7952L37.8485 26.0926L38.1557 25.7321L36.6337 24.4347ZM36.6388 24.4287L36.6335 24.4349L38.1559 25.732L38.1612 25.7257L36.6388 24.4287ZM38.0648 22.6851C37.7151 23.1644 37.2428 23.7198 36.6388 24.4286L38.1612 25.7257C38.7481 25.0369 39.2767 24.4174 39.6806 23.8636L38.0648 22.6851ZM38.8217 21.254C38.6793 21.7451 38.4261 22.1895 38.0647 22.6851L39.6807 23.8635C40.1123 23.2717 40.5101 22.613 40.7426 21.8109L38.8217 21.254ZM38.8218 18.7461C39.0594 19.5652 39.0594 20.4348 38.8218 21.2538L40.7425 21.8111C41.0858 20.628 41.0858 19.3719 40.7425 18.1888L38.8218 18.7461ZM38.0648 17.3151C38.4261 17.8104 38.6793 18.2549 38.8217 18.7459L40.7426 18.189C40.51 17.3869 40.1123 16.7282 39.6806 16.1364L38.0648 17.3151ZM36.6335 15.5652C37.2398 16.2765 37.7141 16.8342 38.0648 17.315L39.6806 16.1365C39.2755 15.5811 38.7451 14.9595 38.1555 14.2678L36.6335 15.5652ZM36.3262 15.2045L36.6333 15.565L38.1557 14.268L37.8486 13.9075L36.3262 15.2045ZM35.4452 14.0762C35.6038 14.3541 35.8189 14.6093 36.3263 15.2047L37.8485 13.9074C37.2861 13.2475 37.2251 13.1599 37.1824 13.085L35.4452 14.0762ZM35.1105 13.2676C35.1877 13.5497 35.3 13.8211 35.4448 14.0754L37.1828 13.0858C37.1208 12.9768 37.0726 12.8605 37.0394 12.7393L35.1105 13.2676ZM34.9353 11.8464C34.9974 12.6252 35.0257 12.9591 35.1107 13.2685L37.0392 12.7384C37.0166 12.6563 36.998 12.5525 36.9289 11.6873L34.9353 11.8464ZM34.8975 11.3747L34.9353 11.8467L36.9289 11.687L36.8911 11.215L34.8975 11.3747ZM34.6723 9.12497C34.7643 9.71286 34.8232 10.4424 34.8974 11.3743L36.8911 11.2154C36.8189 10.3097 36.7546 9.49481 36.6482 8.81552L34.6723 9.12497ZM34.1957 7.57761C34.4422 8.02556 34.5774 8.51896 34.6722 9.12484L36.6482 8.81565C36.535 8.09193 36.3505 7.34499 35.948 6.61347L34.1957 7.57761ZM32.4223 5.80424C33.1694 6.21547 33.7846 6.83053 34.1958 7.57766L35.948 6.61341C35.354 5.53417 34.4656 4.64594 33.3867 4.0521L32.4223 5.80424ZM30.875 5.32766C31.4811 5.42259 31.9744 5.55778 32.4224 5.80427L33.3866 4.05206C32.655 3.64946 31.908 3.46508 31.1845 3.35175L30.875 5.32766ZM28.6256 5.10242C29.5576 5.17676 30.2872 5.23561 30.8751 5.32767L31.1845 3.35175C30.5052 3.24539 29.6904 3.181 28.7847 3.10875L28.6256 5.10242ZM28.1536 5.06474L28.6256 5.10241L28.7847 3.10875L28.3128 3.07108L28.1536 5.06474ZM26.7323 4.88956C27.0411 4.97418 27.3739 5.00253 28.1537 5.06475L28.3127 3.07108C27.4481 3.0021 27.3435 2.98332 27.2607 2.96063L26.7323 4.88956ZM25.9243 4.55494C26.1785 4.69974 26.4499 4.81221 26.7323 4.88957L27.2607 2.96062C27.1398 2.92751 27.0235 2.87933 26.9143 2.81716L25.9243 4.55494ZM24.7953 3.67377C25.3907 4.18107 25.6461 4.39632 25.924 4.55477L26.9146 2.81733C26.84 2.77481 26.7526 2.7139 26.0924 2.15143L24.7953 3.67377ZM24.4348 3.36643L24.7951 3.67359L26.0926 2.15161L25.7323 1.84445L24.4348 3.36643ZM24.4324 3.36441L24.4349 3.36654L25.7322 1.84433L25.7297 1.8422L24.4324 3.36441ZM22.6851 1.93528C23.1653 2.28547 23.722 2.759 24.4325 3.36445L25.7296 1.84217C25.0392 1.2538 24.4183 0.723912 23.8635 0.319312L22.6851 1.93528ZM21.254 1.17817C21.7449 1.3206 22.1894 1.57388 22.6851 1.93531L23.8634 0.319278C23.2716 -0.112221 22.6131 -0.509998 21.8112 -0.742627L21.254 1.17817ZM11.8929 28.1071C12.152 28.3661 12.4507 28.6002 12.8189 28.7638C13.1914 28.9294 13.5833 29 14 29V27C13.8167 27 13.7087 26.9706 13.6312 26.9362C13.5493 26.8998 13.4481 26.8339 13.3071 26.6929L11.8929 28.1071ZM11.8929 23.8929C10.7024 25.0834 10.7024 26.9166 11.8929 28.1071L13.3071 26.6929C12.8977 26.2834 12.8977 25.7166 13.3071 25.3071L11.8929 23.8929ZM16.4929 19.2929L11.8929 23.8929L13.3071 25.3071L17.9071 20.7071L16.4929 19.2929ZM11.8929 16.1071L16.4929 20.7071L17.9071 19.2929L13.3071 14.6929L11.8929 16.1071ZM11.8929 11.8929C10.7024 13.0834 10.7024 14.9166 11.8929 16.1071L13.3071 14.6929C12.8977 14.2834 12.8977 13.7166 13.3071 13.3071L11.8929 11.8929ZM16.1071 11.8929C14.9166 10.7024 13.0834 10.7024 11.8929 11.8929L13.3071 13.3071C13.7166 12.8976 14.2834 12.8976 14.6929 13.3071L16.1071 11.8929ZM20.7071 16.4929L16.1071 11.8929L14.6929 13.3071L19.2929 17.9071L20.7071 16.4929ZM23.8929 11.8929L19.2929 16.4929L20.7071 17.9071L25.3071 13.3071L23.8929 11.8929ZM28.1071 11.8929C26.9166 10.7024 25.0834 10.7024 23.8929 11.8929L25.3071 13.3071C25.7166 12.8976 26.2834 12.8976 26.6929 13.3071L28.1071 11.8929ZM28.1071 16.1071C29.2977 14.9166 29.2977 13.0834 28.1071 11.8929L26.6929 13.3071C27.1024 13.7166 27.1024 14.2834 26.6929 14.6929L28.1071 16.1071ZM23.5071 20.7071L28.1071 16.1071L26.6929 14.6929L22.0929 19.2929L23.5071 20.7071ZM28.1071 23.8929L23.5071 19.2929L22.0929 20.7071L26.6929 25.3071L28.1071 23.8929ZM28.1071 28.1071C29.2977 26.9166 29.2977 25.0834 28.1071 23.8929L26.6929 25.3071C27.1024 25.7166 27.1024 26.2834 26.6929 26.6929L28.1071 28.1071ZM26 29C26.4167 29 26.8087 28.9294 27.1812 28.7638C27.5493 28.6002 27.8481 28.3661 28.1071 28.1071L26.6929 26.6929C26.552 26.8339 26.4507 26.8998 26.3689 26.9362C26.2914 26.9706 26.1833 27 26 27V29ZM23.8929 28.1071C24.152 28.3661 24.4507 28.6002 24.8189 28.7638C25.1914 28.9294 25.5833 29 26 29V27C25.8167 27 25.7087 26.9706 25.6312 26.9362C25.5493 26.8998 25.4481 26.8339 25.3071 26.6929L23.8929 28.1071ZM19.2929 23.5071L23.8929 28.1071L25.3071 26.6929L20.7071 22.0929L19.2929 23.5071ZM16.1071 28.1071L20.7071 23.5071L19.2929 22.0929L14.6929 26.6929L16.1071 28.1071ZM14 29C14.4167 29 14.8087 28.9294 15.1812 28.7638C15.5493 28.6002 15.8481 28.3661 16.1071 28.1071L14.6929 26.6929C14.552 26.8339 14.4507 26.8998 14.3689 26.9362C14.2914 26.9706 14.1833 27 14 27V29Z" fill="url(#paint1_linear_12_1155)" mask="url(#path-1-inside-1_12_1155)"/>
7
+ <defs>
8
+ <linearGradient id="paint0_linear_12_1155" x1="20" y1="1.0899" x2="20.6375" y2="39.9999" gradientUnits="userSpaceOnUse">
9
+ <stop stop-color="#E42525"/>
10
+ <stop offset="1" stop-color="#C90000"/>
11
+ </linearGradient>
12
+ <linearGradient id="paint1_linear_12_1155" x1="20" y1="1.21631" x2="20" y2="39.9999" gradientUnits="userSpaceOnUse">
13
+ <stop stop-color="#A90707"/>
14
+ <stop offset="1" stop-color="#E42525"/>
15
+ </linearGradient>
16
+ </defs>
17
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M0 14H11.5556V11.6667H0V14ZM0 8.16667H8.88889V5.83333H0V8.16667ZM0 0V2.33333H11.5556V0H0ZM16 11.1883L12.8178 7L16 2.81167L14.7467 1.16667L10.3022 7L14.7467 12.8333L16 11.1883Z" fill="currentColor"/>
3
- </svg>
1
+ <svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 14H11.5556V11.6667H0V14ZM0 8.16667H8.88889V5.83333H0V8.16667ZM0 0V2.33333H11.5556V0H0ZM16 11.1883L12.8178 7L16 2.81167L14.7467 1.16667L10.3022 7L14.7467 12.8333L16 11.1883Z" fill="currentColor"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="16" height="18" viewBox="0 0 16 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M7.42014 8.97643C7.46283 8.90515 7.43976 8.81322 7.36892 8.77079L7.36865 8.77063C7.29803 8.72803 7.20609 8.75093 7.16353 8.8218L7.16352 8.82182L6.57195 9.8062L6.48624 9.94883L6.40053 9.8062L5.80905 8.82196L7.42014 8.97643ZM7.42014 8.97643L6.69178 10.1882L6.66082 10.2397L6.69178 10.2912L7.4202 11.5034C7.4202 11.5034 7.42021 11.5034 7.42021 11.5034C7.46274 11.5742 7.43983 11.6661 7.36892 11.7086L7.36827 11.709C7.34457 11.7234 7.31833 11.7303 7.29187 11.7303C7.2409 11.7303 7.19165 11.7044 7.16355 11.6576L7.16352 11.6576L6.57195 10.6732L6.48624 10.5305L6.40053 10.6732L5.80896 11.6576L5.80893 11.6576C5.7809 11.7043 5.7314 11.7303 5.6803 11.7303C5.65428 11.7303 5.62788 11.7235 5.60361 11.7088L5.60325 11.7086C5.53234 11.6661 5.50943 11.5742 5.55195 11.5034C5.55196 11.5034 5.55196 11.5034 5.55197 11.5034L6.28039 10.2912L6.31135 10.2397L6.28039 10.1882L5.55203 8.97643C5.55202 8.97642 5.55202 8.97642 5.55202 8.97641C5.50934 8.90513 5.53242 8.81321 5.60325 8.77079L5.60351 8.77063C5.67402 8.7281 5.76603 8.75082 5.80896 8.82182L7.42014 8.97643ZM10.8504 1.00273L10.8504 1.00273C10.785 0.937312 10.6962 0.9 10.6031 0.9H5.35437C4.07756 0.9 3.03905 1.93885 3.03905 3.21563V7.50031H1.19468C0.763824 7.50031 0.413428 7.85071 0.413428 8.28156V12.1978C0.413428 12.6287 0.763824 12.9791 1.19468 12.9791H3.03905V14.7844C3.03905 16.0611 4.07756 17.1 5.35437 17.1H13.2712C14.548 17.1 15.5866 16.0611 15.5866 14.7844V5.88469C15.5866 5.79207 15.5499 5.70284 15.4841 5.63711L10.8504 1.00273ZM3.45343 10.2422H3.35343V10.3422V11.3306V11.4306H3.45343H4.81405C4.89703 11.4306 4.96405 11.4978 4.96405 11.5803C4.96405 11.6632 4.89695 11.7303 4.81405 11.7303H3.20374C3.12084 11.7303 3.05374 11.6632 3.05374 11.5803V8.89906C3.05374 8.81617 3.12084 8.74906 3.20374 8.74906H4.81405C4.89695 8.74906 4.96405 8.81617 4.96405 8.89906C4.96405 8.98156 4.89703 9.04875 4.81405 9.04875H3.45343H3.35343V9.14875V9.8425V9.9425H3.45343H4.70343C4.78601 9.9425 4.85312 10.0096 4.85312 10.0922C4.85312 10.1752 4.78593 10.2422 4.70343 10.2422H3.45343ZM5.46624 9.02781C5.3953 8.90938 5.43343 8.75594 5.55187 8.685C5.66999 8.61375 5.82343 8.65219 5.89468 8.77031L5.46624 9.02781ZM8.49999 10.2422H8.39999V10.3422V11.3306V11.4306H8.49999H9.86062C9.94359 11.4306 10.0106 11.4978 10.0106 11.5803C10.0106 11.6632 9.94351 11.7303 9.86062 11.7303H8.2503C8.16741 11.7303 8.1003 11.6632 8.1003 11.5803V8.89906C8.1003 8.81617 8.16741 8.74906 8.2503 8.74906H9.86062C9.94351 8.74906 10.0106 8.81617 10.0106 8.89906C10.0106 8.98156 9.94359 9.04875 9.86062 9.04875H8.49999H8.39999V9.14875V9.8425V9.9425H8.49999H9.74999C9.83257 9.9425 9.89968 10.0096 9.89968 10.0922C9.89968 10.1752 9.83249 10.2422 9.74999 10.2422H8.49999ZM14.8869 14.7844C14.8869 15.6754 14.1619 16.4003 13.2712 16.4003H5.35437C4.46367 16.4003 3.73874 15.6754 3.73874 14.7844V12.9791H11.8697C12.3005 12.9791 12.6509 12.6287 12.6509 12.1978V8.28156C12.6509 7.85071 12.3005 7.50031 11.8697 7.50031H3.73874V3.21563C3.73874 2.32459 4.46367 1.59969 5.35437 1.59969H10.2531V5.38406C10.2531 5.85293 10.634 6.23438 11.1025 6.23438H14.8869V14.7844Z" fill="currentColor" stroke="currentColor" stroke-width="0.2"/>
3
- </svg>
1
+ <svg width="16" height="18" viewBox="0 0 16 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7.42014 8.97643C7.46283 8.90515 7.43976 8.81322 7.36892 8.77079L7.36865 8.77063C7.29803 8.72803 7.20609 8.75093 7.16353 8.8218L7.16352 8.82182L6.57195 9.8062L6.48624 9.94883L6.40053 9.8062L5.80905 8.82196L7.42014 8.97643ZM7.42014 8.97643L6.69178 10.1882L6.66082 10.2397L6.69178 10.2912L7.4202 11.5034C7.4202 11.5034 7.42021 11.5034 7.42021 11.5034C7.46274 11.5742 7.43983 11.6661 7.36892 11.7086L7.36827 11.709C7.34457 11.7234 7.31833 11.7303 7.29187 11.7303C7.2409 11.7303 7.19165 11.7044 7.16355 11.6576L7.16352 11.6576L6.57195 10.6732L6.48624 10.5305L6.40053 10.6732L5.80896 11.6576L5.80893 11.6576C5.7809 11.7043 5.7314 11.7303 5.6803 11.7303C5.65428 11.7303 5.62788 11.7235 5.60361 11.7088L5.60325 11.7086C5.53234 11.6661 5.50943 11.5742 5.55195 11.5034C5.55196 11.5034 5.55196 11.5034 5.55197 11.5034L6.28039 10.2912L6.31135 10.2397L6.28039 10.1882L5.55203 8.97643C5.55202 8.97642 5.55202 8.97642 5.55202 8.97641C5.50934 8.90513 5.53242 8.81321 5.60325 8.77079L5.60351 8.77063C5.67402 8.7281 5.76603 8.75082 5.80896 8.82182L7.42014 8.97643ZM10.8504 1.00273L10.8504 1.00273C10.785 0.937312 10.6962 0.9 10.6031 0.9H5.35437C4.07756 0.9 3.03905 1.93885 3.03905 3.21563V7.50031H1.19468C0.763824 7.50031 0.413428 7.85071 0.413428 8.28156V12.1978C0.413428 12.6287 0.763824 12.9791 1.19468 12.9791H3.03905V14.7844C3.03905 16.0611 4.07756 17.1 5.35437 17.1H13.2712C14.548 17.1 15.5866 16.0611 15.5866 14.7844V5.88469C15.5866 5.79207 15.5499 5.70284 15.4841 5.63711L10.8504 1.00273ZM3.45343 10.2422H3.35343V10.3422V11.3306V11.4306H3.45343H4.81405C4.89703 11.4306 4.96405 11.4978 4.96405 11.5803C4.96405 11.6632 4.89695 11.7303 4.81405 11.7303H3.20374C3.12084 11.7303 3.05374 11.6632 3.05374 11.5803V8.89906C3.05374 8.81617 3.12084 8.74906 3.20374 8.74906H4.81405C4.89695 8.74906 4.96405 8.81617 4.96405 8.89906C4.96405 8.98156 4.89703 9.04875 4.81405 9.04875H3.45343H3.35343V9.14875V9.8425V9.9425H3.45343H4.70343C4.78601 9.9425 4.85312 10.0096 4.85312 10.0922C4.85312 10.1752 4.78593 10.2422 4.70343 10.2422H3.45343ZM5.46624 9.02781C5.3953 8.90938 5.43343 8.75594 5.55187 8.685C5.66999 8.61375 5.82343 8.65219 5.89468 8.77031L5.46624 9.02781ZM8.49999 10.2422H8.39999V10.3422V11.3306V11.4306H8.49999H9.86062C9.94359 11.4306 10.0106 11.4978 10.0106 11.5803C10.0106 11.6632 9.94351 11.7303 9.86062 11.7303H8.2503C8.16741 11.7303 8.1003 11.6632 8.1003 11.5803V8.89906C8.1003 8.81617 8.16741 8.74906 8.2503 8.74906H9.86062C9.94351 8.74906 10.0106 8.81617 10.0106 8.89906C10.0106 8.98156 9.94359 9.04875 9.86062 9.04875H8.49999H8.39999V9.14875V9.8425V9.9425H8.49999H9.74999C9.83257 9.9425 9.89968 10.0096 9.89968 10.0922C9.89968 10.1752 9.83249 10.2422 9.74999 10.2422H8.49999ZM14.8869 14.7844C14.8869 15.6754 14.1619 16.4003 13.2712 16.4003H5.35437C4.46367 16.4003 3.73874 15.6754 3.73874 14.7844V12.9791H11.8697C12.3005 12.9791 12.6509 12.6287 12.6509 12.1978V8.28156C12.6509 7.85071 12.3005 7.50031 11.8697 7.50031H3.73874V3.21563C3.73874 2.32459 4.46367 1.59969 5.35437 1.59969H10.2531V5.38406C10.2531 5.85293 10.634 6.23438 11.1025 6.23438H14.8869V14.7844Z" fill="currentColor" stroke="currentColor" stroke-width="0.2"/>
3
+ </svg>
@@ -1,6 +1,6 @@
1
- <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M13.9894 0.409309C13.9864 0.394291 13.9808 0.380291 13.9764 0.365782C13.9714 0.348473 13.9673 0.331164 13.9604 0.314364C13.9533 0.297309 13.9436 0.281782 13.9347 0.265491C13.9276 0.252764 13.922 0.239273 13.9136 0.2268C13.8764 0.171055 13.8286 0.122945 13.7726 0.0857818C13.7598 0.0771273 13.7458 0.0712727 13.7326 0.0638909C13.7168 0.0552364 13.7018 0.0458182 13.685 0.0389454C13.6679 0.0318182 13.6504 0.0277455 13.6328 0.0226545C13.6186 0.0185818 13.6048 0.0129818 13.59 0.00992727C13.5572 0.00356364 13.5236 0 13.4903 0H10.4357C10.1547 0 9.92662 0.228073 9.92662 0.509091C9.92662 0.790109 10.1547 1.01818 10.4357 1.01818H12.2613L8.54851 4.73098C8.34971 4.92978 8.34971 5.25204 8.54851 5.45084C8.64779 5.55036 8.77811 5.6 8.90844 5.6C9.03877 5.6 9.1691 5.55036 9.26837 5.45084L12.9812 1.73804V3.56364C12.9812 3.84465 13.2092 4.07273 13.4903 4.07273C13.7715 4.07273 13.9994 3.84465 13.9994 3.56364V0.509091C13.9994 0.475745 13.9958 0.4424 13.9894 0.409309Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M4.73098 8.549L1.01818 12.2618V10.4362C1.01818 10.1552 0.790364 9.92711 0.509091 9.92711C0.227818 9.92711 0 10.1552 0 10.4362V13.4907C0 13.5241 0.00356364 13.5574 0.0101818 13.5905C0.0129818 13.6055 0.0185818 13.6195 0.0229091 13.6341C0.028 13.6514 0.0320727 13.6687 0.0389455 13.6855C0.0460727 13.7025 0.0557455 13.7181 0.0646545 13.7341C0.0717818 13.7471 0.0773818 13.7606 0.0857818 13.773C0.122945 13.8288 0.1708 13.8769 0.2268 13.9141C0.239273 13.9225 0.253018 13.9283 0.266255 13.9354C0.282036 13.9441 0.297564 13.9538 0.314364 13.9609C0.331164 13.9678 0.348727 13.9718 0.366036 13.9769C0.380545 13.9813 0.394291 13.9869 0.409309 13.9897C0.4424 13.9963 0.475745 13.9998 0.509091 13.9998H3.56364C3.84465 13.9998 4.07273 13.7718 4.07273 13.4907C4.07273 13.2097 3.84465 12.9817 3.56364 12.9817H1.73804L5.45084 9.26886C5.64964 9.07006 5.64964 8.7478 5.45084 8.549C5.25229 8.3502 4.92953 8.3502 4.73098 8.549Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M0.509091 4.07273C0.790364 4.07273 1.01818 3.84465 1.01818 3.56364V1.73804L4.73073 5.45058C4.83 5.54985 4.96033 5.59949 5.09065 5.59949C5.22073 5.59949 5.35105 5.54985 5.45058 5.45058C5.64938 5.25178 5.64938 4.92927 5.45058 4.73047L1.73804 1.01818H3.56364C3.84465 1.01818 4.07273 0.790109 4.07273 0.509091C4.07273 0.228073 3.84465 0 3.56364 0H0.509091C0.475745 0 0.4424 0.00356364 0.409309 0.00992727C0.394545 0.0129818 0.3808 0.0185818 0.366545 0.0226545C0.348982 0.0277455 0.331418 0.0318182 0.314364 0.0389455C0.297564 0.0458182 0.282545 0.0554909 0.266764 0.0638909C0.253273 0.0712727 0.239527 0.0771273 0.2268 0.0857818C0.1708 0.122945 0.122945 0.171055 0.0857818 0.2268C0.0773818 0.239273 0.0717818 0.252764 0.0646545 0.265491C0.0557455 0.281782 0.0460727 0.297309 0.0389455 0.314364C0.0320727 0.331164 0.028 0.348473 0.0229091 0.365782C0.0185818 0.380291 0.0129818 0.394291 0.0101818 0.409309C0.00356364 0.4424 0 0.475745 0 0.509091V3.56364C0 3.84465 0.227818 4.07273 0.509091 4.07273Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M13.4905 9.92737C13.2095 9.92737 12.9814 10.1554 12.9814 10.4365V12.2621L9.26862 8.549C9.06982 8.3502 8.74731 8.3502 8.54851 8.549C8.34971 8.7478 8.34971 9.07031 8.54851 9.26911L12.2616 12.9819H10.436C10.155 12.9819 9.92688 13.21 9.92688 13.491C9.92688 13.772 10.155 14.0001 10.436 14.0001H13.4905C13.5239 14.0001 13.5572 13.9965 13.5903 13.9899C13.6053 13.9871 13.6191 13.9815 13.6336 13.9772C13.6509 13.9721 13.6684 13.968 13.6852 13.9611C13.702 13.954 13.7176 13.9443 13.7334 13.9357C13.7466 13.9286 13.7603 13.9227 13.7728 13.9143C13.8288 13.8771 13.8767 13.829 13.9138 13.7733C13.9222 13.7608 13.9278 13.7473 13.935 13.7343C13.9439 13.7183 13.9535 13.7028 13.9607 13.6857C13.9675 13.6689 13.9716 13.6516 13.9767 13.6343C13.981 13.6198 13.9866 13.6058 13.9897 13.5908C13.996 13.5577 13.9996 13.5243 13.9996 13.491V10.4365C13.9996 10.1554 13.7718 9.92737 13.4905 9.92737Z" fill="currentColor"/>
6
- </svg>
1
+ <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13.9894 0.409309C13.9864 0.394291 13.9808 0.380291 13.9764 0.365782C13.9714 0.348473 13.9673 0.331164 13.9604 0.314364C13.9533 0.297309 13.9436 0.281782 13.9347 0.265491C13.9276 0.252764 13.922 0.239273 13.9136 0.2268C13.8764 0.171055 13.8286 0.122945 13.7726 0.0857818C13.7598 0.0771273 13.7458 0.0712727 13.7326 0.0638909C13.7168 0.0552364 13.7018 0.0458182 13.685 0.0389454C13.6679 0.0318182 13.6504 0.0277455 13.6328 0.0226545C13.6186 0.0185818 13.6048 0.0129818 13.59 0.00992727C13.5572 0.00356364 13.5236 0 13.4903 0H10.4357C10.1547 0 9.92662 0.228073 9.92662 0.509091C9.92662 0.790109 10.1547 1.01818 10.4357 1.01818H12.2613L8.54851 4.73098C8.34971 4.92978 8.34971 5.25204 8.54851 5.45084C8.64779 5.55036 8.77811 5.6 8.90844 5.6C9.03877 5.6 9.1691 5.55036 9.26837 5.45084L12.9812 1.73804V3.56364C12.9812 3.84465 13.2092 4.07273 13.4903 4.07273C13.7715 4.07273 13.9994 3.84465 13.9994 3.56364V0.509091C13.9994 0.475745 13.9958 0.4424 13.9894 0.409309Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.73098 8.549L1.01818 12.2618V10.4362C1.01818 10.1552 0.790364 9.92711 0.509091 9.92711C0.227818 9.92711 0 10.1552 0 10.4362V13.4907C0 13.5241 0.00356364 13.5574 0.0101818 13.5905C0.0129818 13.6055 0.0185818 13.6195 0.0229091 13.6341C0.028 13.6514 0.0320727 13.6687 0.0389455 13.6855C0.0460727 13.7025 0.0557455 13.7181 0.0646545 13.7341C0.0717818 13.7471 0.0773818 13.7606 0.0857818 13.773C0.122945 13.8288 0.1708 13.8769 0.2268 13.9141C0.239273 13.9225 0.253018 13.9283 0.266255 13.9354C0.282036 13.9441 0.297564 13.9538 0.314364 13.9609C0.331164 13.9678 0.348727 13.9718 0.366036 13.9769C0.380545 13.9813 0.394291 13.9869 0.409309 13.9897C0.4424 13.9963 0.475745 13.9998 0.509091 13.9998H3.56364C3.84465 13.9998 4.07273 13.7718 4.07273 13.4907C4.07273 13.2097 3.84465 12.9817 3.56364 12.9817H1.73804L5.45084 9.26886C5.64964 9.07006 5.64964 8.7478 5.45084 8.549C5.25229 8.3502 4.92953 8.3502 4.73098 8.549Z" fill="currentColor"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M0.509091 4.07273C0.790364 4.07273 1.01818 3.84465 1.01818 3.56364V1.73804L4.73073 5.45058C4.83 5.54985 4.96033 5.59949 5.09065 5.59949C5.22073 5.59949 5.35105 5.54985 5.45058 5.45058C5.64938 5.25178 5.64938 4.92927 5.45058 4.73047L1.73804 1.01818H3.56364C3.84465 1.01818 4.07273 0.790109 4.07273 0.509091C4.07273 0.228073 3.84465 0 3.56364 0H0.509091C0.475745 0 0.4424 0.00356364 0.409309 0.00992727C0.394545 0.0129818 0.3808 0.0185818 0.366545 0.0226545C0.348982 0.0277455 0.331418 0.0318182 0.314364 0.0389455C0.297564 0.0458182 0.282545 0.0554909 0.266764 0.0638909C0.253273 0.0712727 0.239527 0.0771273 0.2268 0.0857818C0.1708 0.122945 0.122945 0.171055 0.0857818 0.2268C0.0773818 0.239273 0.0717818 0.252764 0.0646545 0.265491C0.0557455 0.281782 0.0460727 0.297309 0.0389455 0.314364C0.0320727 0.331164 0.028 0.348473 0.0229091 0.365782C0.0185818 0.380291 0.0129818 0.394291 0.0101818 0.409309C0.00356364 0.4424 0 0.475745 0 0.509091V3.56364C0 3.84465 0.227818 4.07273 0.509091 4.07273Z" fill="currentColor"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13.4905 9.92737C13.2095 9.92737 12.9814 10.1554 12.9814 10.4365V12.2621L9.26862 8.549C9.06982 8.3502 8.74731 8.3502 8.54851 8.549C8.34971 8.7478 8.34971 9.07031 8.54851 9.26911L12.2616 12.9819H10.436C10.155 12.9819 9.92688 13.21 9.92688 13.491C9.92688 13.772 10.155 14.0001 10.436 14.0001H13.4905C13.5239 14.0001 13.5572 13.9965 13.5903 13.9899C13.6053 13.9871 13.6191 13.9815 13.6336 13.9772C13.6509 13.9721 13.6684 13.968 13.6852 13.9611C13.702 13.954 13.7176 13.9443 13.7334 13.9357C13.7466 13.9286 13.7603 13.9227 13.7728 13.9143C13.8288 13.8771 13.8767 13.829 13.9138 13.7733C13.9222 13.7608 13.9278 13.7473 13.935 13.7343C13.9439 13.7183 13.9535 13.7028 13.9607 13.6857C13.9675 13.6689 13.9716 13.6516 13.9767 13.6343C13.981 13.6198 13.9866 13.6058 13.9897 13.5908C13.996 13.5577 13.9996 13.5243 13.9996 13.491V10.4365C13.9996 10.1554 13.7718 9.92737 13.4905 9.92737Z" fill="currentColor"/>
6
+ </svg>
@@ -1,5 +1,5 @@
1
- <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path
3
- d="M5.82756 5.49969V6.82056H10.7896C10.9821 6.82056 11.1388 6.9774 11.1388 7.17056V11.1807C11.1388 11.3739 10.9821 11.5305 10.7896 11.5305H5.82756V12.8516C5.82756 12.9885 5.74723 13.1131 5.62328 13.1699L5.62215 13.1704C5.57615 13.1908 5.52701 13.2016 5.47844 13.2016C5.39382 13.2016 5.31336 13.1716 5.2483 13.1159L5.24778 13.1154L5.14063 13.0224V16.4H16.4003V1.60003H7.07906V3.18756C7.07906 3.38119 6.92198 3.53741 6.72847 3.53741H5.14063V5.32886L5.24755 5.23597C5.24755 5.23597 5.24756 5.23597 5.24756 5.23597C5.35098 5.14562 5.49751 5.12439 5.62286 5.18111L5.62329 5.18131C5.7472 5.2381 5.82756 5.36275 5.82756 5.49969ZM1.02002 9.43994L1.01985 9.43979C0.943331 9.37296 0.900126 9.27639 0.900126 9.17562C0.900126 9.07455 0.943356 8.97819 1.01999 8.91152L1.02001 8.9115L4.44091 5.93734V3.18756C4.44091 3.09444 4.47819 3.00557 4.54412 2.94006C4.54413 2.94005 4.54414 2.94003 4.54415 2.94002L6.48087 1.00243L6.48087 1.00243L6.4811 1.0022C6.54689 0.936805 6.63556 0.9 6.72847 0.9H16.7494C16.943 0.9 17.1 1.05645 17.1 1.25V16.75C17.1 16.9435 16.943 17.1 16.7494 17.1H4.7915C4.59791 17.1 4.44091 16.9435 4.44091 16.75V12.4139L1.02002 9.43994ZM6.882 14.3903V14.3902C6.88205 14.1977 7.03851 14.0402 7.23113 14.0402H14.3098C14.5035 14.0402 14.6603 14.1973 14.6603 14.3903C14.6603 14.5839 14.5034 14.7404 14.3098 14.7404H7.23113C7.03858 14.7404 6.882 14.5835 6.882 14.3903ZM5.12784 7.17059V6.26795L1.78344 9.17563L5.12781 12.0834V11.1807C5.12781 10.9876 5.28443 10.8307 5.47694 10.8307H10.439V7.52059H5.47697C5.2845 7.52059 5.12784 7.36396 5.12784 7.17059ZM6.37788 2.09504L5.63574 2.83756H6.37788V2.09504ZM14.3098 4.31059H9.22853C9.03494 4.31059 8.87794 4.15414 8.87794 3.96059C8.87794 3.76752 9.0349 3.61075 9.22853 3.61075H14.3098C14.5034 3.61075 14.6603 3.76755 14.6603 3.96059C14.6603 4.15414 14.5033 4.31059 14.3098 4.31059ZM6.882 12.3044C6.882 12.1116 7.03854 11.9544 7.23113 11.9544H14.3098C14.5034 11.9544 14.6603 12.1113 14.6603 12.3044C14.6603 12.4979 14.5034 12.6544 14.3098 12.6544H7.23113C7.03862 12.6544 6.882 12.4976 6.882 12.3044ZM14.3098 8.48256H11.8465C11.654 8.48256 11.4974 8.32569 11.4974 8.13241C11.4974 7.93973 11.654 7.78253 11.8465 7.78253H14.3098C14.5034 7.78253 14.6603 7.93934 14.6603 8.13241C14.6603 8.32607 14.5034 8.48256 14.3098 8.48256ZM14.3098 10.5684H11.8465C11.654 10.5684 11.4974 10.4116 11.4974 10.2184C11.4974 10.0258 11.6539 9.86844 11.8465 9.86844H14.3098C14.5035 9.86844 14.6603 10.0255 14.6603 10.2184C14.6603 10.4119 14.5034 10.5684 14.3098 10.5684ZM14.3098 5.69659C14.5034 5.69659 14.6603 5.8534 14.6603 6.04659C14.6603 6.2401 14.5034 6.39659 14.3098 6.39659H7.23113C7.03862 6.39659 6.882 6.23976 6.882 6.04659C6.882 5.85382 7.03854 5.69659 7.23113 5.69659H14.3098Z"
4
- fill="currentColor" stroke="currentColor" stroke-width="0.2" />
1
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M5.82756 5.49969V6.82056H10.7896C10.9821 6.82056 11.1388 6.9774 11.1388 7.17056V11.1807C11.1388 11.3739 10.9821 11.5305 10.7896 11.5305H5.82756V12.8516C5.82756 12.9885 5.74723 13.1131 5.62328 13.1699L5.62215 13.1704C5.57615 13.1908 5.52701 13.2016 5.47844 13.2016C5.39382 13.2016 5.31336 13.1716 5.2483 13.1159L5.24778 13.1154L5.14063 13.0224V16.4H16.4003V1.60003H7.07906V3.18756C7.07906 3.38119 6.92198 3.53741 6.72847 3.53741H5.14063V5.32886L5.24755 5.23597C5.24755 5.23597 5.24756 5.23597 5.24756 5.23597C5.35098 5.14562 5.49751 5.12439 5.62286 5.18111L5.62329 5.18131C5.7472 5.2381 5.82756 5.36275 5.82756 5.49969ZM1.02002 9.43994L1.01985 9.43979C0.943331 9.37296 0.900126 9.27639 0.900126 9.17562C0.900126 9.07455 0.943356 8.97819 1.01999 8.91152L1.02001 8.9115L4.44091 5.93734V3.18756C4.44091 3.09444 4.47819 3.00557 4.54412 2.94006C4.54413 2.94005 4.54414 2.94003 4.54415 2.94002L6.48087 1.00243L6.48087 1.00243L6.4811 1.0022C6.54689 0.936805 6.63556 0.9 6.72847 0.9H16.7494C16.943 0.9 17.1 1.05645 17.1 1.25V16.75C17.1 16.9435 16.943 17.1 16.7494 17.1H4.7915C4.59791 17.1 4.44091 16.9435 4.44091 16.75V12.4139L1.02002 9.43994ZM6.882 14.3903V14.3902C6.88205 14.1977 7.03851 14.0402 7.23113 14.0402H14.3098C14.5035 14.0402 14.6603 14.1973 14.6603 14.3903C14.6603 14.5839 14.5034 14.7404 14.3098 14.7404H7.23113C7.03858 14.7404 6.882 14.5835 6.882 14.3903ZM5.12784 7.17059V6.26795L1.78344 9.17563L5.12781 12.0834V11.1807C5.12781 10.9876 5.28443 10.8307 5.47694 10.8307H10.439V7.52059H5.47697C5.2845 7.52059 5.12784 7.36396 5.12784 7.17059ZM6.37788 2.09504L5.63574 2.83756H6.37788V2.09504ZM14.3098 4.31059H9.22853C9.03494 4.31059 8.87794 4.15414 8.87794 3.96059C8.87794 3.76752 9.0349 3.61075 9.22853 3.61075H14.3098C14.5034 3.61075 14.6603 3.76755 14.6603 3.96059C14.6603 4.15414 14.5033 4.31059 14.3098 4.31059ZM6.882 12.3044C6.882 12.1116 7.03854 11.9544 7.23113 11.9544H14.3098C14.5034 11.9544 14.6603 12.1113 14.6603 12.3044C14.6603 12.4979 14.5034 12.6544 14.3098 12.6544H7.23113C7.03862 12.6544 6.882 12.4976 6.882 12.3044ZM14.3098 8.48256H11.8465C11.654 8.48256 11.4974 8.32569 11.4974 8.13241C11.4974 7.93973 11.654 7.78253 11.8465 7.78253H14.3098C14.5034 7.78253 14.6603 7.93934 14.6603 8.13241C14.6603 8.32607 14.5034 8.48256 14.3098 8.48256ZM14.3098 10.5684H11.8465C11.654 10.5684 11.4974 10.4116 11.4974 10.2184C11.4974 10.0258 11.6539 9.86844 11.8465 9.86844H14.3098C14.5035 9.86844 14.6603 10.0255 14.6603 10.2184C14.6603 10.4119 14.5034 10.5684 14.3098 10.5684ZM14.3098 5.69659C14.5034 5.69659 14.6603 5.8534 14.6603 6.04659C14.6603 6.2401 14.5034 6.39659 14.3098 6.39659H7.23113C7.03862 6.39659 6.882 6.23976 6.882 6.04659C6.882 5.85382 7.03854 5.69659 7.23113 5.69659H14.3098Z"
4
+ fill="currentColor" stroke="currentColor" stroke-width="0.2" />
5
5
  </svg>