pixel-react-excel-sheet 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (832) hide show
  1. package/.prettierrc.js +13 -0
  2. package/.storybook/main.ts +26 -0
  3. package/.storybook/preview.ts +26 -0
  4. package/.yarn/install-state.gz +0 -0
  5. package/.yarnrc.yml +1 -0
  6. package/README.md +75 -0
  7. package/dist/tsconfig.tsbuildinfo +1 -0
  8. package/index.scss +0 -0
  9. package/lib/StyleGuide/ColorPalette/ColorPalette.d.ts +3 -0
  10. package/lib/StyleGuide/ColorPalette/ColorPalette.stories.d.ts +6 -0
  11. package/lib/StyleGuide/ColorPalette/colorPaletteList.d.ts +3 -0
  12. package/lib/StyleGuide/ColorPalette/index.d.ts +1 -0
  13. package/lib/StyleGuide/ColorPalette/types.d.ts +17 -0
  14. package/lib/StyleGuide/Typography/Typography.d.ts +3 -0
  15. package/lib/StyleGuide/Typography/Typography.stories.d.ts +6 -0
  16. package/lib/StyleGuide/Typography/TypographyList.d.ts +5 -0
  17. package/lib/StyleGuide/Typography/types.d.ts +8 -0
  18. package/lib/assets/utils/functionUtils.d.ts +4 -0
  19. package/lib/components/Accordion/Accordion.d.ts +8 -0
  20. package/lib/components/Accordion/Accordion.stories.d.ts +6 -0
  21. package/lib/components/Accordion/index.d.ts +1 -0
  22. package/lib/components/Accordion/types.d.ts +27 -0
  23. package/lib/components/AddResourceButton/AddButton.d.ts +4 -0
  24. package/lib/components/AddResourceButton/AddButton.stories.d.ts +8 -0
  25. package/lib/components/AddResourceButton/ArrowsButton/ArrowsButton.d.ts +6 -0
  26. package/lib/components/AddResourceButton/index.d.ts +1 -0
  27. package/lib/components/AddResourceButton/type.d.ts +68 -0
  28. package/lib/components/AllProjectsDropdown/AllProjectsDropdown.d.ts +4 -0
  29. package/lib/components/AllProjectsDropdown/AllProjectsDropdown.stories.d.ts +7 -0
  30. package/lib/components/AllProjectsDropdown/index.d.ts +1 -0
  31. package/lib/components/AllProjectsDropdown/types.d.ts +10 -0
  32. package/lib/components/AppHeader/AppHeader.d.ts +4 -0
  33. package/lib/components/AppHeader/AppHeader.stories.d.ts +7 -0
  34. package/lib/components/AppHeader/index.d.ts +1 -0
  35. package/lib/components/AppHeader/types.d.ts +30 -0
  36. package/lib/components/AttachmentButton/AttachmentButton.d.ts +5 -0
  37. package/lib/components/AttachmentButton/AttachmentButton.stories.d.ts +9 -0
  38. package/lib/components/AttachmentButton/index.d.ts +1 -0
  39. package/lib/components/AttachmentButton/types.d.ts +8 -0
  40. package/lib/components/Button/Button.d.ts +5 -0
  41. package/lib/components/Button/Button.stories.d.ts +13 -0
  42. package/lib/components/Button/index.d.ts +1 -0
  43. package/lib/components/Button/types.d.ts +61 -0
  44. package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.d.ts +5 -0
  45. package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.d.ts +7 -0
  46. package/lib/components/Charts/DashboardDonutChart/index.d.ts +1 -0
  47. package/lib/components/Charts/DashboardDonutChart/types.d.ts +21 -0
  48. package/lib/components/Charts/DonutChart/DonutChart.d.ts +5 -0
  49. package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +6 -0
  50. package/lib/components/Charts/DonutChart/index.d.ts +1 -0
  51. package/lib/components/Charts/DonutChart/type.d.ts +13 -0
  52. package/lib/components/Charts/PieChart/PieChart.d.ts +5 -0
  53. package/lib/components/Charts/PieChart/PieChart.stories.d.ts +7 -0
  54. package/lib/components/Charts/PieChart/index.d.ts +1 -0
  55. package/lib/components/Charts/PieChart/types.d.ts +27 -0
  56. package/lib/components/Charts/RadialChart/RadialChart.d.ts +5 -0
  57. package/lib/components/Charts/RadialChart/RadialChart.stories.d.ts +6 -0
  58. package/lib/components/Charts/RadialChart/index.d.ts +1 -0
  59. package/lib/components/Charts/RadialChart/types.d.ts +25 -0
  60. package/lib/components/Checkbox/Checkbox.d.ts +6 -0
  61. package/lib/components/Checkbox/Checkbox.stories.d.ts +8 -0
  62. package/lib/components/Checkbox/index.d.ts +1 -0
  63. package/lib/components/Checkbox/types.d.ts +30 -0
  64. package/lib/components/Chip/Chip.d.ts +4 -0
  65. package/lib/components/Chip/Chip.stories.d.ts +14 -0
  66. package/lib/components/Chip/index.d.ts +1 -0
  67. package/lib/components/Chip/types.d.ts +18 -0
  68. package/lib/components/DatePicker/DatePicker.d.ts +5 -0
  69. package/lib/components/DatePicker/DatePicker.stories.d.ts +9 -0
  70. package/lib/components/DatePicker/Timepicker.d.ts +4 -0
  71. package/lib/components/DatePicker/index.d.ts +1 -0
  72. package/lib/components/DatePicker/types.d.ts +81 -0
  73. package/lib/components/DragAndDrop/DragAndDrop.d.ts +9 -0
  74. package/lib/components/DragAndDrop/DragAndDrop.stories.d.ts +6 -0
  75. package/lib/components/DragAndDrop/DragAndDropList.d.ts +20 -0
  76. package/lib/components/DragAndDrop/index.d.ts +1 -0
  77. package/lib/components/Drawer/Drawer.d.ts +5 -0
  78. package/lib/components/Drawer/Drawer.stories.d.ts +10 -0
  79. package/lib/components/Drawer/Types.d.ts +109 -0
  80. package/lib/components/Drawer/index.d.ts +1 -0
  81. package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +14 -0
  82. package/lib/components/ExcelFile/ColorBarSelector/ColorBarSelector.d.ts +8 -0
  83. package/lib/components/ExcelFile/ContextMenu/ContextMenu.d.ts +4 -0
  84. package/lib/components/ExcelFile/ExcelFile/Excel/ActiveCell.d.ts +7 -0
  85. package/lib/components/ExcelFile/ExcelFile/Excel/Cell.d.ts +4 -0
  86. package/lib/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.d.ts +5 -0
  87. package/lib/components/ExcelFile/ExcelFile/Excel/Copied.d.ts +3 -0
  88. package/lib/components/ExcelFile/ExcelFile/Excel/CornerIndicator.d.ts +5 -0
  89. package/lib/components/ExcelFile/ExcelFile/Excel/DataEditor.d.ts +5 -0
  90. package/lib/components/ExcelFile/ExcelFile/Excel/DataViewer.d.ts +8 -0
  91. package/lib/components/ExcelFile/ExcelFile/Excel/FloatingRect.d.ts +10 -0
  92. package/lib/components/ExcelFile/ExcelFile/Excel/HeaderRow.d.ts +3 -0
  93. package/lib/components/ExcelFile/ExcelFile/Excel/Row.d.ts +3 -0
  94. package/lib/components/ExcelFile/ExcelFile/Excel/RowIndicator.d.ts +5 -0
  95. package/lib/components/ExcelFile/ExcelFile/Excel/Selected.d.ts +3 -0
  96. package/lib/components/ExcelFile/ExcelFile/Excel/Spreadsheet.d.ts +80 -0
  97. package/lib/components/ExcelFile/ExcelFile/Excel/Table.d.ts +3 -0
  98. package/lib/components/ExcelFile/ExcelFile/Excel/actions.d.ts +130 -0
  99. package/lib/components/ExcelFile/ExcelFile/Excel/areModelsEqual.d.ts +1 -0
  100. package/lib/components/ExcelFile/ExcelFile/Excel/context.d.ts +8 -0
  101. package/lib/components/ExcelFile/ExcelFile/Excel/engine/engine.d.ts +22 -0
  102. package/lib/components/ExcelFile/ExcelFile/Excel/engine/formula.d.ts +17 -0
  103. package/lib/components/ExcelFile/ExcelFile/Excel/engine/index.d.ts +2 -0
  104. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-graph.d.ts +21 -0
  105. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-hash.d.ts +3 -0
  106. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-set.d.ts +24 -0
  107. package/lib/components/ExcelFile/ExcelFile/Excel/index.d.ts +13 -0
  108. package/lib/components/ExcelFile/ExcelFile/Excel/matrix.d.ts +67 -0
  109. package/lib/components/ExcelFile/ExcelFile/Excel/point-range.d.ts +22 -0
  110. package/lib/components/ExcelFile/ExcelFile/Excel/point.d.ts +11 -0
  111. package/lib/components/ExcelFile/ExcelFile/Excel/reducer.d.ts +27 -0
  112. package/lib/components/ExcelFile/ExcelFile/Excel/selection.d.ts +95 -0
  113. package/lib/components/ExcelFile/ExcelFile/Excel/types.d.ts +178 -0
  114. package/lib/components/ExcelFile/ExcelFile/Excel/use-dispatch.d.ts +3 -0
  115. package/lib/components/ExcelFile/ExcelFile/Excel/use-selector.d.ts +3 -0
  116. package/lib/components/ExcelFile/ExcelFile/Excel/util.d.ts +45 -0
  117. package/lib/components/ExcelFile/ExcelFile/ExcelFile.d.ts +3 -0
  118. package/lib/components/ExcelFile/ExcelFile.stories.d.ts +6 -0
  119. package/lib/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.d.ts +15 -0
  120. package/lib/components/ExcelFile/ExcelToolBar/ExcelToolBar.d.ts +3 -0
  121. package/lib/components/ExcelFile/ImportExcelStyles.d.ts +24 -0
  122. package/lib/components/ExcelFile/Types.d.ts +137 -0
  123. package/lib/components/ExcelFile/index.d.ts +1 -0
  124. package/lib/components/ExpandableMenu/ExpandableMenu.d.ts +5 -0
  125. package/lib/components/ExpandableMenu/ExpandableMenu.stories.d.ts +7 -0
  126. package/lib/components/ExpandableMenu/index.d.ts +1 -0
  127. package/lib/components/ExpandableMenu/types.d.ts +34 -0
  128. package/lib/components/FF_Captcha/Recaptcha.d.ts +5 -0
  129. package/lib/components/FF_Captcha/captcha.stories.d.ts +8 -0
  130. package/lib/components/FF_Captcha/types.d.ts +20 -0
  131. package/lib/components/FileDropzone/Dropzone.d.ts +5 -0
  132. package/lib/components/FileDropzone/FileDropzone.d.ts +4 -0
  133. package/lib/components/FileDropzone/FileDropzone.stories.d.ts +8 -0
  134. package/lib/components/FileDropzone/FilePreview.d.ts +4 -0
  135. package/lib/components/FileDropzone/index.d.ts +1 -0
  136. package/lib/components/FileDropzone/types.d.ts +103 -0
  137. package/lib/components/Form/Form.d.ts +16 -0
  138. package/lib/components/Form/Form.stories.d.ts +6 -0
  139. package/lib/components/Form/index.d.ts +1 -0
  140. package/lib/components/Form/types.d.ts +1 -0
  141. package/lib/components/GridLayout/GridLayout.d.ts +6 -0
  142. package/lib/components/GridLayout/GridLayout.stories.d.ts +8 -0
  143. package/lib/components/GridLayout/index.d.ts +2 -0
  144. package/lib/components/GridLayout/types.d.ts +74 -0
  145. package/lib/components/HighlightText/HighlightText.d.ts +4 -0
  146. package/lib/components/HighlightText/HighlightText.stories.d.ts +6 -0
  147. package/lib/components/HighlightText/index.d.ts +1 -0
  148. package/lib/components/HighlightText/types.d.ts +4 -0
  149. package/lib/components/Icon/Icon.d.ts +4 -0
  150. package/lib/components/Icon/Icon.stories.d.ts +7 -0
  151. package/lib/components/Icon/iconList.d.ts +2 -0
  152. package/lib/components/Icon/index.d.ts +1 -0
  153. package/lib/components/Icon/types.d.ts +10 -0
  154. package/lib/components/IconButton/IconButton.d.ts +5 -0
  155. package/lib/components/IconButton/IconButton.stories.d.ts +7 -0
  156. package/lib/components/IconButton/index.d.ts +1 -0
  157. package/lib/components/IconButton/types.d.ts +5 -0
  158. package/lib/components/IconRadioGroup/IconRadioGroup.d.ts +5 -0
  159. package/lib/components/IconRadioGroup/IconRadioGroup.stories.d.ts +7 -0
  160. package/lib/components/IconRadioGroup/index.d.ts +1 -0
  161. package/lib/components/IconRadioGroup/type.d.ts +41 -0
  162. package/lib/components/Input/Input.d.ts +4 -0
  163. package/lib/components/Input/Input.stories.d.ts +9 -0
  164. package/lib/components/Input/index.d.ts +1 -0
  165. package/lib/components/Input/types.d.ts +78 -0
  166. package/lib/components/InputWithDropdown/InputWithDropdown.d.ts +4 -0
  167. package/lib/components/InputWithDropdown/InputWithDropdown.stories.d.ts +9 -0
  168. package/lib/components/InputWithDropdown/index.d.ts +1 -0
  169. package/lib/components/InputWithDropdown/types.d.ts +88 -0
  170. package/lib/components/LazyLoad/LazyLoad.d.ts +2 -0
  171. package/lib/components/LazyLoad/LazyLoad.stories.d.ts +6 -0
  172. package/lib/components/LazyLoad/LazyLoading.d.ts +2 -0
  173. package/lib/components/LazyLoad/index.d.ts +1 -0
  174. package/lib/components/MachineInputField/MachineInputField.d.ts +4 -0
  175. package/lib/components/MachineInputField/MachineInputField.stories.d.ts +6 -0
  176. package/lib/components/MachineInputField/index.d.ts +1 -0
  177. package/lib/components/MachineInputField/types.d.ts +11 -0
  178. package/lib/components/MenuOption/MenuOption.d.ts +4 -0
  179. package/lib/components/MenuOption/MenuOption.stories.d.ts +16 -0
  180. package/lib/components/MenuOption/index.d.ts +1 -0
  181. package/lib/components/MenuOption/types.d.ts +141 -0
  182. package/lib/components/MiniModal/MiniModal.d.ts +4 -0
  183. package/lib/components/MiniModal/MiniModal.stories.d.ts +9 -0
  184. package/lib/components/MiniModal/index.d.ts +1 -0
  185. package/lib/components/MiniModal/types.d.ts +101 -0
  186. package/lib/components/Modal/Modal.d.ts +5 -0
  187. package/lib/components/Modal/Modal.stories.d.ts +7 -0
  188. package/lib/components/Modal/index.d.ts +1 -0
  189. package/lib/components/Modal/types.d.ts +29 -0
  190. package/lib/components/MultiSelect/Dropdown.d.ts +4 -0
  191. package/lib/components/MultiSelect/MultiSelect.d.ts +4 -0
  192. package/lib/components/MultiSelect/MultiSelect.stories.d.ts +10 -0
  193. package/lib/components/MultiSelect/MultiSelectTypes.d.ts +23 -0
  194. package/lib/components/MultiSelect/dropdownTypes.d.ts +17 -0
  195. package/lib/components/MultiSelect/index.d.ts +1 -0
  196. package/lib/components/NLPInput/NlpInput.d.ts +4 -0
  197. package/lib/components/NLPInput/NlpInput.stories.d.ts +7 -0
  198. package/lib/components/NLPInput/components/NlpDropDown/NlpDropDownType.d.ts +19 -0
  199. package/lib/components/NLPInput/components/NlpDropDown/NlpDropdown.d.ts +4 -0
  200. package/lib/components/NLPInput/index.d.ts +1 -0
  201. package/lib/components/NLPInput/type.d.ts +70 -0
  202. package/lib/components/Paper/Paper.d.ts +4 -0
  203. package/lib/components/Paper/Paper.stories.d.ts +11 -0
  204. package/lib/components/Paper/index.d.ts +1 -0
  205. package/lib/components/Paper/types.d.ts +15 -0
  206. package/lib/components/RadioButton/RadioButton.d.ts +4 -0
  207. package/lib/components/RadioButton/RadioButton.stories.d.ts +10 -0
  208. package/lib/components/RadioButton/index.d.ts +1 -0
  209. package/lib/components/RadioButton/radioButtonTypes.d.ts +50 -0
  210. package/lib/components/RadioGroup/RadioGroup.d.ts +4 -0
  211. package/lib/components/RadioGroup/RadioGroup.stories.d.ts +9 -0
  212. package/lib/components/RadioGroup/index.d.ts +1 -0
  213. package/lib/components/RadioGroup/radioGroupTypes.d.ts +62 -0
  214. package/lib/components/Search/Search.d.ts +4 -0
  215. package/lib/components/Search/Search.stories.d.ts +6 -0
  216. package/lib/components/Search/index.d.ts +1 -0
  217. package/lib/components/Search/types.d.ts +15 -0
  218. package/lib/components/Select/Select.d.ts +4 -0
  219. package/lib/components/Select/Select.stories.d.ts +13 -0
  220. package/lib/components/Select/components/Dropdown/Dropdown.d.ts +4 -0
  221. package/lib/components/Select/components/Dropdown/dropdownTypes.d.ts +15 -0
  222. package/lib/components/Select/index.d.ts +1 -0
  223. package/lib/components/Select/types.d.ts +76 -0
  224. package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.d.ts +4 -0
  225. package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.d.ts +6 -0
  226. package/lib/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.d.ts +4 -0
  227. package/lib/components/SequentialConnectingBranch/components/AddBrowserModal/types.d.ts +3 -0
  228. package/lib/components/SequentialConnectingBranch/components/Branches/Branches.d.ts +4 -0
  229. package/lib/components/SequentialConnectingBranch/components/Branches/types.d.ts +16 -0
  230. package/lib/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.d.ts +4 -0
  231. package/lib/components/SequentialConnectingBranch/components/ConnectingBranches/types.d.ts +9 -0
  232. package/lib/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.d.ts +4 -0
  233. package/lib/components/SequentialConnectingBranch/components/DatasetListModal/types.d.ts +3 -0
  234. package/lib/components/SequentialConnectingBranch/index.d.ts +1 -0
  235. package/lib/components/SequentialConnectingBranch/types.d.ts +32 -0
  236. package/lib/components/StateDropdown/StateDropdown.d.ts +3 -0
  237. package/lib/components/StateDropdown/StateDropdown.stories.d.ts +10 -0
  238. package/lib/components/StateDropdown/StateDropdownTypes.d.ts +11 -0
  239. package/lib/components/StateDropdown/index.d.ts +1 -0
  240. package/lib/components/StatusButton/StatusButton.d.ts +4 -0
  241. package/lib/components/StatusButton/StatusButton.stories.d.ts +14 -0
  242. package/lib/components/StatusButton/index.d.ts +1 -0
  243. package/lib/components/StatusButton/types.d.ts +35 -0
  244. package/lib/components/Table/Table.d.ts +4 -0
  245. package/lib/components/Table/Table.stories.d.ts +11 -0
  246. package/lib/components/Table/Types.d.ts +106 -0
  247. package/lib/components/Table/index.d.ts +1 -0
  248. package/lib/components/TableTree/TableTree.d.ts +24 -0
  249. package/lib/components/TableTree/TableTree.stories.d.ts +7 -0
  250. package/lib/components/TableTree/data.d.ts +313 -0
  251. package/lib/components/TableTree/index.d.ts +1 -0
  252. package/lib/components/Tabs/Tabs.d.ts +5 -0
  253. package/lib/components/Tabs/Tabs.stories.d.ts +9 -0
  254. package/lib/components/Tabs/index.d.ts +1 -0
  255. package/lib/components/Tabs/types.d.ts +45 -0
  256. package/lib/components/TextArea/Textarea.d.ts +4 -0
  257. package/lib/components/TextArea/Textarea.stories.d.ts +9 -0
  258. package/lib/components/TextArea/Types.d.ts +78 -0
  259. package/lib/components/TextArea/index.d.ts +1 -0
  260. package/lib/components/ThemeProvider/ThemeProvider.d.ts +7 -0
  261. package/lib/components/ThemeProvider/index.d.ts +1 -0
  262. package/lib/components/ThemeProvider/types.d.ts +11 -0
  263. package/lib/components/Toast/Toast.d.ts +5 -0
  264. package/lib/components/Toast/Toast.stories.d.ts +6 -0
  265. package/lib/components/Toast/index.d.ts +1 -0
  266. package/lib/components/Toast/types.d.ts +20 -0
  267. package/lib/components/Toggle/Toggle.d.ts +5 -0
  268. package/lib/components/Toggle/Toggle.stories.d.ts +12 -0
  269. package/lib/components/Toggle/index.d.ts +1 -0
  270. package/lib/components/Toggle/types.d.ts +50 -0
  271. package/lib/components/Tooltip/Tooltip.d.ts +5 -0
  272. package/lib/components/Tooltip/Tooltip.stories.d.ts +15 -0
  273. package/lib/components/Tooltip/index.d.ts +1 -0
  274. package/lib/components/Tooltip/types.d.ts +37 -0
  275. package/lib/components/Typography/Typography.d.ts +5 -0
  276. package/lib/components/Typography/Typography.stories.d.ts +10 -0
  277. package/lib/components/Typography/index.d.ts +1 -0
  278. package/lib/components/Typography/types.d.ts +47 -0
  279. package/lib/components/VariableInput/VariableInput.d.ts +4 -0
  280. package/lib/components/VariableInput/VariableInput.stories.d.ts +6 -0
  281. package/lib/components/VariableInput/index.d.ts +1 -0
  282. package/lib/components/VariableInput/types.d.ts +53 -0
  283. package/lib/hooks/keyboardevents/useEscKeyEvent.d.ts +2 -0
  284. package/lib/hooks/useClickOutside.d.ts +2 -0
  285. package/lib/hooks/useFileDropzone.d.ts +3 -0
  286. package/lib/hooks/usePortalPosition.d.ts +9 -0
  287. package/lib/hooks/useTheme.d.ts +3 -0
  288. package/lib/index.d.ts +1864 -0
  289. package/lib/index.esm.js +55755 -0
  290. package/lib/index.esm.js.map +1 -0
  291. package/lib/index.js +55840 -0
  292. package/lib/index.js.map +1 -0
  293. package/lib/tsconfig.tsbuildinfo +1 -0
  294. package/lib/utils/TableCell/TableCell.d.ts +1 -0
  295. package/lib/utils/checkEmpty/checkEmpty.d.ts +3 -0
  296. package/lib/utils/checkEmpty/checkEmpty.stories.d.ts +6 -0
  297. package/lib/utils/compareArrays/compareArrays.d.ts +11 -0
  298. package/lib/utils/compareArrays/compareArrays.stories.d.ts +6 -0
  299. package/lib/utils/compareObjects/compareObjects.d.ts +2 -0
  300. package/lib/utils/compareObjects/compareObjects.stories.d.ts +6 -0
  301. package/lib/utils/debounce/debounce.d.ts +6 -0
  302. package/lib/utils/debounce/debounce.stories.d.ts +6 -0
  303. package/lib/utils/ffID/ffID.stories.d.ts +6 -0
  304. package/lib/utils/ffID/ffid.d.ts +1 -0
  305. package/lib/utils/findAndInsert/findAndInsert.d.ts +7 -0
  306. package/lib/utils/findAndInsert/findAndInsert.stories.d.ts +7 -0
  307. package/lib/utils/getEncryptedData/getEncryptedData.d.ts +1 -0
  308. package/lib/utils/getEncryptedData/getEncryptedData.stories.d.ts +6 -0
  309. package/lib/utils/getExtension/getExtension.d.ts +4 -0
  310. package/lib/utils/getExtension/getExtension.stories.d.ts +6 -0
  311. package/lib/utils/throttle/throttle.d.ts +6 -0
  312. package/lib/utils/throttle/throttle.stories.d.ts +6 -0
  313. package/lib/utils/truncateText/truncateText.d.ts +1 -0
  314. package/lib/utils/truncateText/truncateText.stories.d.ts +6 -0
  315. package/package.json +75 -0
  316. package/rollup.config.mjs +63 -0
  317. package/src/StyleGuide/ColorPalette/ColorPalette.scss +62 -0
  318. package/src/StyleGuide/ColorPalette/ColorPalette.stories.tsx +16 -0
  319. package/src/StyleGuide/ColorPalette/ColorPalette.tsx +68 -0
  320. package/src/StyleGuide/ColorPalette/colorPaletteList.ts +172 -0
  321. package/src/StyleGuide/ColorPalette/index.ts +1 -0
  322. package/src/StyleGuide/ColorPalette/types.ts +19 -0
  323. package/src/StyleGuide/Typography/Typography.scss +99 -0
  324. package/src/StyleGuide/Typography/Typography.stories.tsx +16 -0
  325. package/src/StyleGuide/Typography/Typography.tsx +60 -0
  326. package/src/StyleGuide/Typography/TypographyList.ts +3 -0
  327. package/src/StyleGuide/Typography/types.ts +9 -0
  328. package/src/assets/Themes/BaseTheme.scss +207 -0
  329. package/src/assets/Themes/DarkTheme.scss +207 -0
  330. package/src/assets/Themes/Theme.scss +16 -0
  331. package/src/assets/icons/Arrow.svg +5 -0
  332. package/src/assets/icons/accordion_header_icon.svg +10 -0
  333. package/src/assets/icons/active_license_icon.svg +3 -0
  334. package/src/assets/icons/add_file.svg +14 -0
  335. package/src/assets/icons/add_locator.svg +5 -0
  336. package/src/assets/icons/add_variable_icon.svg +5 -0
  337. package/src/assets/icons/all_borders.svg +3 -0
  338. package/src/assets/icons/all_projects.svg +3 -0
  339. package/src/assets/icons/android.svg +9 -0
  340. package/src/assets/icons/android_icon.svg +6 -0
  341. package/src/assets/icons/app_switch.svg +11 -0
  342. package/src/assets/icons/arrow_down.svg +3 -0
  343. package/src/assets/icons/arrow_right.svg +5 -0
  344. package/src/assets/icons/arrow_up.svg +3 -0
  345. package/src/assets/icons/arrows_down_icon.svg +3 -0
  346. package/src/assets/icons/arrows_right_icon.svg +10 -0
  347. package/src/assets/icons/arrows_top_icon.svg +3 -0
  348. package/src/assets/icons/backward_icon.svg +3 -0
  349. package/src/assets/icons/bold.svg +3 -0
  350. package/src/assets/icons/border_bottom.svg +3 -0
  351. package/src/assets/icons/border_left.svg +3 -0
  352. package/src/assets/icons/border_right.svg +3 -0
  353. package/src/assets/icons/border_top.svg +3 -0
  354. package/src/assets/icons/browser_stack.svg +9 -0
  355. package/src/assets/icons/calendar_icon.svg +9 -0
  356. package/src/assets/icons/check_mark.svg +3 -0
  357. package/src/assets/icons/chrome.svg +12 -0
  358. package/src/assets/icons/clock_icon.svg +11 -0
  359. package/src/assets/icons/clone_icon.svg +3 -0
  360. package/src/assets/icons/close_pill.svg +3 -0
  361. package/src/assets/icons/cloud_server_host_icon.svg +3 -0
  362. package/src/assets/icons/collapse-icon.svg +6 -0
  363. package/src/assets/icons/continue_without_sign.svg +3 -0
  364. package/src/assets/icons/copy-icon.svg +3 -0
  365. package/src/assets/icons/dataset_list.svg +3 -0
  366. package/src/assets/icons/delete.svg +3 -0
  367. package/src/assets/icons/delete_info.svg +17 -0
  368. package/src/assets/icons/details.svg +3 -0
  369. package/src/assets/icons/double_underline.svg +5 -0
  370. package/src/assets/icons/download-icon.svg +3 -0
  371. package/src/assets/icons/download_icon.svg +4 -0
  372. package/src/assets/icons/drag_icon.svg +5 -0
  373. package/src/assets/icons/dropzone_icon.svg +18 -0
  374. package/src/assets/icons/edit_icon.svg +5 -0
  375. package/src/assets/icons/error.svg +17 -0
  376. package/src/assets/icons/expand-icon.svg +6 -0
  377. package/src/assets/icons/export_collection_icon.svg +13 -0
  378. package/src/assets/icons/file.svg +12 -0
  379. package/src/assets/icons/fill_color.svg +7 -0
  380. package/src/assets/icons/filter.svg +5 -0
  381. package/src/assets/icons/fireflink_icon.svg +4 -0
  382. package/src/assets/icons/fireflink_logo.svg +13 -0
  383. package/src/assets/icons/formate_painter.svg +5 -0
  384. package/src/assets/icons/forward_icon.svg +3 -0
  385. package/src/assets/icons/full_access_icon.svg +4 -0
  386. package/src/assets/icons/hamburger_menu.svg +3 -0
  387. package/src/assets/icons/hide_icon.svg +9 -0
  388. package/src/assets/icons/history_icon.svg +19 -0
  389. package/src/assets/icons/impactList.svg +6 -0
  390. package/src/assets/icons/info.svg +17 -0
  391. package/src/assets/icons/info_icon.svg +4 -0
  392. package/src/assets/icons/italic.svg +3 -0
  393. package/src/assets/icons/jira.svg +3 -0
  394. package/src/assets/icons/label_plus.svg +3 -0
  395. package/src/assets/icons/left_arrow_icon.svg +3 -0
  396. package/src/assets/icons/license_info.svg +28 -0
  397. package/src/assets/icons/license_warning.svg +10 -0
  398. package/src/assets/icons/linked_defects.svg +11 -0
  399. package/src/assets/icons/logo.svg +18 -0
  400. package/src/assets/icons/mac.svg +9 -0
  401. package/src/assets/icons/manage_apps.svg +3 -0
  402. package/src/assets/icons/manual_locator.svg +8 -0
  403. package/src/assets/icons/mobile_icon.svg +3 -0
  404. package/src/assets/icons/moon_stars.svg +10 -0
  405. package/src/assets/icons/more.svg +11 -0
  406. package/src/assets/icons/move_icon.svg +5 -0
  407. package/src/assets/icons/ms_dynamic.svg +4 -0
  408. package/src/assets/icons/nlp_help_icon.svg +3 -0
  409. package/src/assets/icons/no_access_icon.svg +4 -0
  410. package/src/assets/icons/no_border.svg +3 -0
  411. package/src/assets/icons/notification_icon.svg +3 -0
  412. package/src/assets/icons/plus_icon.svg +11 -0
  413. package/src/assets/icons/plus_user_icon.svg +3 -0
  414. package/src/assets/icons/refresh-icon.svg +4 -0
  415. package/src/assets/icons/reload.svg +3 -0
  416. package/src/assets/icons/remove.svg +12 -0
  417. package/src/assets/icons/replace.svg +12 -0
  418. package/src/assets/icons/right_arrow_icon.svg +4 -0
  419. package/src/assets/icons/run_icon.svg +26 -0
  420. package/src/assets/icons/sales_force.svg +7 -0
  421. package/src/assets/icons/search.svg +3 -0
  422. package/src/assets/icons/strike_through.svg +3 -0
  423. package/src/assets/icons/success.svg +13 -0
  424. package/src/assets/icons/sun_icon.svg +10 -0
  425. package/src/assets/icons/switch_license_icon.svg +123 -0
  426. package/src/assets/icons/text_align_center.svg +3 -0
  427. package/src/assets/icons/text_align_left.svg +3 -0
  428. package/src/assets/icons/text_align_right.svg +3 -0
  429. package/src/assets/icons/text_color.svg +3 -0
  430. package/src/assets/icons/tick_icon.svg +5 -0
  431. package/src/assets/icons/toast_close.svg +3 -0
  432. package/src/assets/icons/underline.svg +4 -0
  433. package/src/assets/icons/update_icon.svg +3 -0
  434. package/src/assets/icons/user_profile.svg +3 -0
  435. package/src/assets/icons/vertical_separator.svg +3 -0
  436. package/src/assets/icons/view_access_icon.svg +4 -0
  437. package/src/assets/icons/view_icon.svg +3 -0
  438. package/src/assets/icons/warning.svg +17 -0
  439. package/src/assets/icons/web&mobile_icon.svg +3 -0
  440. package/src/assets/icons/web_icon.svg +3 -0
  441. package/src/assets/icons/window_maximize.svg +4 -0
  442. package/src/assets/icons/window_minimize.svg +3 -0
  443. package/src/assets/icons/windows.svg +6 -0
  444. package/src/assets/icons/wrong_mark.svg +3 -0
  445. package/src/assets/icons/wswb_delete_icon.svg +4 -0
  446. package/src/assets/icons/wswb_plus_icon.svg +5 -0
  447. package/src/assets/styles/_colors.scss +148 -0
  448. package/src/assets/styles/_fonts.scss +68 -0
  449. package/src/assets/styles/_mixins.scss +21 -0
  450. package/src/assets/utils/functionUtils.ts +42 -0
  451. package/src/components/Accordion/Accordion.scss +44 -0
  452. package/src/components/Accordion/Accordion.stories.tsx +31 -0
  453. package/src/components/Accordion/Accordion.tsx +62 -0
  454. package/src/components/Accordion/index.ts +1 -0
  455. package/src/components/Accordion/types.ts +28 -0
  456. package/src/components/AddResourceButton/AddButton.scss +36 -0
  457. package/src/components/AddResourceButton/AddButton.stories.tsx +126 -0
  458. package/src/components/AddResourceButton/AddButton.tsx +121 -0
  459. package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.scss +160 -0
  460. package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.tsx +38 -0
  461. package/src/components/AddResourceButton/index.ts +1 -0
  462. package/src/components/AddResourceButton/type.ts +92 -0
  463. package/src/components/AllProjectsDropdown/AllProjectsDropdown.scss +70 -0
  464. package/src/components/AllProjectsDropdown/AllProjectsDropdown.stories.tsx +119 -0
  465. package/src/components/AllProjectsDropdown/AllProjectsDropdown.tsx +122 -0
  466. package/src/components/AllProjectsDropdown/index.ts +1 -0
  467. package/src/components/AllProjectsDropdown/types.ts +10 -0
  468. package/src/components/AppHeader/AppHeader.scss +129 -0
  469. package/src/components/AppHeader/AppHeader.stories.tsx +167 -0
  470. package/src/components/AppHeader/AppHeader.tsx +133 -0
  471. package/src/components/AppHeader/index.ts +1 -0
  472. package/src/components/AppHeader/types.ts +31 -0
  473. package/src/components/AttachmentButton/AttachmentButton.scss +9 -0
  474. package/src/components/AttachmentButton/AttachmentButton.stories.tsx +76 -0
  475. package/src/components/AttachmentButton/AttachmentButton.tsx +113 -0
  476. package/src/components/AttachmentButton/index.ts +1 -0
  477. package/src/components/AttachmentButton/types.ts +8 -0
  478. package/src/components/Button/Button.scss +152 -0
  479. package/src/components/Button/Button.stories.tsx +81 -0
  480. package/src/components/Button/Button.tsx +66 -0
  481. package/src/components/Button/index.ts +1 -0
  482. package/src/components/Button/types.ts +65 -0
  483. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.scss +145 -0
  484. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.tsx +52 -0
  485. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.tsx +335 -0
  486. package/src/components/Charts/DashboardDonutChart/index.ts +1 -0
  487. package/src/components/Charts/DashboardDonutChart/types.ts +33 -0
  488. package/src/components/Charts/DonutChart/DonutChart.scss +76 -0
  489. package/src/components/Charts/DonutChart/DonutChart.stories.tsx +30 -0
  490. package/src/components/Charts/DonutChart/DonutChart.tsx +241 -0
  491. package/src/components/Charts/DonutChart/index.ts +1 -0
  492. package/src/components/Charts/DonutChart/type.ts +23 -0
  493. package/src/components/Charts/PieChart/PieChart.scss +39 -0
  494. package/src/components/Charts/PieChart/PieChart.stories.tsx +46 -0
  495. package/src/components/Charts/PieChart/PieChart.tsx +193 -0
  496. package/src/components/Charts/PieChart/index.ts +1 -0
  497. package/src/components/Charts/PieChart/types.ts +28 -0
  498. package/src/components/Charts/RadialChart/RadialChart.scss +12 -0
  499. package/src/components/Charts/RadialChart/RadialChart.stories.tsx +36 -0
  500. package/src/components/Charts/RadialChart/RadialChart.tsx +174 -0
  501. package/src/components/Charts/RadialChart/index.ts +1 -0
  502. package/src/components/Charts/RadialChart/types.ts +32 -0
  503. package/src/components/Checkbox/Checkbox.scss +89 -0
  504. package/src/components/Checkbox/Checkbox.stories.tsx +47 -0
  505. package/src/components/Checkbox/Checkbox.tsx +61 -0
  506. package/src/components/Checkbox/index.ts +1 -0
  507. package/src/components/Checkbox/types.ts +30 -0
  508. package/src/components/Chip/Chip.scss +71 -0
  509. package/src/components/Chip/Chip.stories.tsx +88 -0
  510. package/src/components/Chip/Chip.tsx +35 -0
  511. package/src/components/Chip/index.ts +1 -0
  512. package/src/components/Chip/types.ts +19 -0
  513. package/src/components/DatePicker/DatePicker.scss +387 -0
  514. package/src/components/DatePicker/DatePicker.stories.tsx +161 -0
  515. package/src/components/DatePicker/DatePicker.tsx +438 -0
  516. package/src/components/DatePicker/Timepicker.tsx +372 -0
  517. package/src/components/DatePicker/index.ts +1 -0
  518. package/src/components/DatePicker/types.ts +100 -0
  519. package/src/components/DragAndDrop/DragAndDrop.d.ts +5 -0
  520. package/src/components/DragAndDrop/DragAndDrop.stories.tsx +25 -0
  521. package/src/components/DragAndDrop/DragAndDrop.ts +7 -0
  522. package/src/components/DragAndDrop/DragAndDropList.scss +69 -0
  523. package/src/components/DragAndDrop/DragAndDropList.tsx +150 -0
  524. package/src/components/DragAndDrop/index.ts +1 -0
  525. package/src/components/Drawer/Drawer.scss +129 -0
  526. package/src/components/Drawer/Drawer.stories.tsx +129 -0
  527. package/src/components/Drawer/Drawer.tsx +198 -0
  528. package/src/components/Drawer/Types.ts +112 -0
  529. package/src/components/Drawer/index.ts +1 -0
  530. package/src/components/ExcelFile/ChangeExcelStyles.tsx +66 -0
  531. package/src/components/ExcelFile/ColorBarSelector/ColorBarSelector.scss +13 -0
  532. package/src/components/ExcelFile/ColorBarSelector/ColorBarSelector.tsx +43 -0
  533. package/src/components/ExcelFile/ContextMenu/ContextMenu.scss +102 -0
  534. package/src/components/ExcelFile/ContextMenu/ContextMenu.tsx +104 -0
  535. package/src/components/ExcelFile/ExcelFile/Excel/ActiveCell.tsx +131 -0
  536. package/src/components/ExcelFile/ExcelFile/Excel/Cell.tsx +201 -0
  537. package/src/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.tsx +123 -0
  538. package/src/components/ExcelFile/ExcelFile/Excel/Copied.tsx +25 -0
  539. package/src/components/ExcelFile/ExcelFile/Excel/CornerIndicator.tsx +49 -0
  540. package/src/components/ExcelFile/ExcelFile/Excel/DataEditor.tsx +37 -0
  541. package/src/components/ExcelFile/ExcelFile/Excel/DataViewer.tsx +46 -0
  542. package/src/components/ExcelFile/ExcelFile/Excel/FloatingRect.tsx +31 -0
  543. package/src/components/ExcelFile/ExcelFile/Excel/HeaderRow.tsx +5 -0
  544. package/src/components/ExcelFile/ExcelFile/Excel/Row.tsx +5 -0
  545. package/src/components/ExcelFile/ExcelFile/Excel/RowIndicator.tsx +102 -0
  546. package/src/components/ExcelFile/ExcelFile/Excel/Selected.tsx +32 -0
  547. package/src/components/ExcelFile/ExcelFile/Excel/Spreadsheet.css +144 -0
  548. package/src/components/ExcelFile/ExcelFile/Excel/Spreadsheet.tsx +494 -0
  549. package/src/components/ExcelFile/ExcelFile/Excel/Table.tsx +19 -0
  550. package/src/components/ExcelFile/ExcelFile/Excel/actions.ts +302 -0
  551. package/src/components/ExcelFile/ExcelFile/Excel/areModelsEqual.ts +18 -0
  552. package/src/components/ExcelFile/ExcelFile/Excel/context.ts +12 -0
  553. package/src/components/ExcelFile/ExcelFile/Excel/engine/engine.ts +200 -0
  554. package/src/components/ExcelFile/ExcelFile/Excel/engine/formula.ts +137 -0
  555. package/src/components/ExcelFile/ExcelFile/Excel/engine/index.ts +2 -0
  556. package/src/components/ExcelFile/ExcelFile/Excel/engine/point-graph.ts +154 -0
  557. package/src/components/ExcelFile/ExcelFile/Excel/engine/point-hash.ts +10 -0
  558. package/src/components/ExcelFile/ExcelFile/Excel/engine/point-set.ts +69 -0
  559. package/src/components/ExcelFile/ExcelFile/Excel/index.ts +48 -0
  560. package/src/components/ExcelFile/ExcelFile/Excel/matrix.ts +388 -0
  561. package/src/components/ExcelFile/ExcelFile/Excel/point-range.ts +82 -0
  562. package/src/components/ExcelFile/ExcelFile/Excel/point.ts +15 -0
  563. package/src/components/ExcelFile/ExcelFile/Excel/reducer.ts +682 -0
  564. package/src/components/ExcelFile/ExcelFile/Excel/selection.ts +257 -0
  565. package/src/components/ExcelFile/ExcelFile/Excel/types.ts +217 -0
  566. package/src/components/ExcelFile/ExcelFile/Excel/typings/fast-formula-parser.d.ts +58 -0
  567. package/src/components/ExcelFile/ExcelFile/Excel/use-dispatch.ts +8 -0
  568. package/src/components/ExcelFile/ExcelFile/Excel/use-selector.ts +9 -0
  569. package/src/components/ExcelFile/ExcelFile/Excel/util.ts +173 -0
  570. package/src/components/ExcelFile/ExcelFile/ExcelFile.scss +27 -0
  571. package/src/components/ExcelFile/ExcelFile/ExcelFile.tsx +501 -0
  572. package/src/components/ExcelFile/ExcelFile.stories.tsx +112 -0
  573. package/src/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.scss +16 -0
  574. package/src/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.tsx +79 -0
  575. package/src/components/ExcelFile/ExcelToolBar/ExcelToolBar.scss +22 -0
  576. package/src/components/ExcelFile/ExcelToolBar/ExcelToolBar.tsx +271 -0
  577. package/src/components/ExcelFile/Types.ts +185 -0
  578. package/src/components/ExcelFile/index.ts +1 -0
  579. package/src/components/ExpandableMenu/ExpandableMenu.scss +110 -0
  580. package/src/components/ExpandableMenu/ExpandableMenu.stories.tsx +67 -0
  581. package/src/components/ExpandableMenu/ExpandableMenu.tsx +101 -0
  582. package/src/components/ExpandableMenu/index.ts +1 -0
  583. package/src/components/ExpandableMenu/types.ts +34 -0
  584. package/src/components/FF_Captcha/Recaptcha.scss +11 -0
  585. package/src/components/FF_Captcha/Recaptcha.tsx +41 -0
  586. package/src/components/FF_Captcha/captcha.stories.tsx +40 -0
  587. package/src/components/FF_Captcha/index.ts +0 -0
  588. package/src/components/FF_Captcha/types.ts +22 -0
  589. package/src/components/FileDropzone/Dropzone.tsx +55 -0
  590. package/src/components/FileDropzone/FileDropzone.scss +134 -0
  591. package/src/components/FileDropzone/FileDropzone.stories.tsx +83 -0
  592. package/src/components/FileDropzone/FileDropzone.tsx +98 -0
  593. package/src/components/FileDropzone/FilePreview.tsx +75 -0
  594. package/src/components/FileDropzone/index.ts +1 -0
  595. package/src/components/FileDropzone/types.ts +113 -0
  596. package/src/components/Form/Form.scss +98 -0
  597. package/src/components/Form/Form.stories.tsx +177 -0
  598. package/src/components/Form/Form.tsx +57 -0
  599. package/src/components/Form/index.ts +1 -0
  600. package/src/components/Form/types.ts +1 -0
  601. package/src/components/Form/validation.json +29 -0
  602. package/src/components/GridLayout/GridLayout.scss +69 -0
  603. package/src/components/GridLayout/GridLayout.stories.tsx +90 -0
  604. package/src/components/GridLayout/GridLayout.tsx +39 -0
  605. package/src/components/GridLayout/GridLayoutStory.scss +25 -0
  606. package/src/components/GridLayout/index.ts +1 -0
  607. package/src/components/GridLayout/types.ts +84 -0
  608. package/src/components/HighlightText/HighlightText.scss +3 -0
  609. package/src/components/HighlightText/HighlightText.stories.tsx +22 -0
  610. package/src/components/HighlightText/HighlightText.tsx +33 -0
  611. package/src/components/HighlightText/index.ts +1 -0
  612. package/src/components/HighlightText/types.ts +4 -0
  613. package/src/components/Icon/Icon.stories.tsx +37 -0
  614. package/src/components/Icon/Icon.tsx +49 -0
  615. package/src/components/Icon/Icons.scss +32 -0
  616. package/src/components/Icon/iconList.ts +240 -0
  617. package/src/components/Icon/index.ts +1 -0
  618. package/src/components/Icon/types.ts +10 -0
  619. package/src/components/IconButton/IconButton.scss +54 -0
  620. package/src/components/IconButton/IconButton.stories.tsx +33 -0
  621. package/src/components/IconButton/IconButton.tsx +30 -0
  622. package/src/components/IconButton/index.ts +1 -0
  623. package/src/components/IconButton/types.ts +5 -0
  624. package/src/components/IconRadioGroup/IconRadioGroup.scss +60 -0
  625. package/src/components/IconRadioGroup/IconRadioGroup.stories.tsx +108 -0
  626. package/src/components/IconRadioGroup/IconRadioGroup.tsx +72 -0
  627. package/src/components/IconRadioGroup/index.ts +1 -0
  628. package/src/components/IconRadioGroup/type.ts +50 -0
  629. package/src/components/Input/Input.scss +155 -0
  630. package/src/components/Input/Input.stories.tsx +96 -0
  631. package/src/components/Input/Input.tsx +97 -0
  632. package/src/components/Input/index.ts +1 -0
  633. package/src/components/Input/types.ts +81 -0
  634. package/src/components/InputWithDropdown/InputWithDropdown.scss +185 -0
  635. package/src/components/InputWithDropdown/InputWithDropdown.stories.tsx +168 -0
  636. package/src/components/InputWithDropdown/InputWithDropdown.tsx +90 -0
  637. package/src/components/InputWithDropdown/index.ts +1 -0
  638. package/src/components/InputWithDropdown/types.ts +109 -0
  639. package/src/components/LazyLoad/LazyLoad.d.ts +3 -0
  640. package/src/components/LazyLoad/LazyLoad.stories.tsx +33 -0
  641. package/src/components/LazyLoad/LazyLoad.ts +2 -0
  642. package/src/components/LazyLoad/LazyLoading.tsx +19 -0
  643. package/src/components/LazyLoad/index.ts +1 -0
  644. package/src/components/MachineInputField/MachineInputField.scss +44 -0
  645. package/src/components/MachineInputField/MachineInputField.stories.tsx +32 -0
  646. package/src/components/MachineInputField/MachineInputField.tsx +71 -0
  647. package/src/components/MachineInputField/index.ts +1 -0
  648. package/src/components/MachineInputField/types.ts +12 -0
  649. package/src/components/MenuOption/MenuOption.scss +83 -0
  650. package/src/components/MenuOption/MenuOption.stories.tsx +280 -0
  651. package/src/components/MenuOption/MenuOption.tsx +128 -0
  652. package/src/components/MenuOption/index.ts +1 -0
  653. package/src/components/MenuOption/types.ts +170 -0
  654. package/src/components/MiniModal/MiniModal.scss +170 -0
  655. package/src/components/MiniModal/MiniModal.stories.tsx +599 -0
  656. package/src/components/MiniModal/MiniModal.tsx +262 -0
  657. package/src/components/MiniModal/index.ts +1 -0
  658. package/src/components/MiniModal/types.ts +101 -0
  659. package/src/components/Modal/Modal.stories.tsx +67 -0
  660. package/src/components/Modal/Modal.tsx +77 -0
  661. package/src/components/Modal/index.tsx +1 -0
  662. package/src/components/Modal/modal.scss +39 -0
  663. package/src/components/Modal/types.ts +40 -0
  664. package/src/components/MultiSelect/Dropdown.scss +77 -0
  665. package/src/components/MultiSelect/Dropdown.tsx +100 -0
  666. package/src/components/MultiSelect/MultiSelect.scss +197 -0
  667. package/src/components/MultiSelect/MultiSelect.stories.tsx +114 -0
  668. package/src/components/MultiSelect/MultiSelect.tsx +332 -0
  669. package/src/components/MultiSelect/MultiSelectTypes.ts +24 -0
  670. package/src/components/MultiSelect/dropdownTypes.ts +17 -0
  671. package/src/components/MultiSelect/index.ts +1 -0
  672. package/src/components/NLPInput/NLPInput.scss +246 -0
  673. package/src/components/NLPInput/NlpInput.stories.tsx +136 -0
  674. package/src/components/NLPInput/NlpInput.tsx +374 -0
  675. package/src/components/NLPInput/components/NlpDropDown/NlpDropDownType.ts +60 -0
  676. package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.scss +83 -0
  677. package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.tsx +180 -0
  678. package/src/components/NLPInput/index.ts +1 -0
  679. package/src/components/NLPInput/type.tsx +124 -0
  680. package/src/components/Paper/Paper.scss +13 -0
  681. package/src/components/Paper/Paper.stories.tsx +77 -0
  682. package/src/components/Paper/Paper.tsx +14 -0
  683. package/src/components/Paper/index.ts +1 -0
  684. package/src/components/Paper/types.ts +19 -0
  685. package/src/components/RadioButton/RadioButton.scss +104 -0
  686. package/src/components/RadioButton/RadioButton.stories.tsx +43 -0
  687. package/src/components/RadioButton/RadioButton.tsx +39 -0
  688. package/src/components/RadioButton/index.ts +1 -0
  689. package/src/components/RadioButton/radioButtonTypes.tsx +58 -0
  690. package/src/components/RadioGroup/RadioGroup.scss +5 -0
  691. package/src/components/RadioGroup/RadioGroup.stories.tsx +122 -0
  692. package/src/components/RadioGroup/RadioGroup.tsx +33 -0
  693. package/src/components/RadioGroup/index.ts +1 -0
  694. package/src/components/RadioGroup/radioGroupTypes.tsx +72 -0
  695. package/src/components/Search/Search.scss +85 -0
  696. package/src/components/Search/Search.stories.tsx +26 -0
  697. package/src/components/Search/Search.tsx +103 -0
  698. package/src/components/Search/index.ts +1 -0
  699. package/src/components/Search/types.ts +15 -0
  700. package/src/components/Select/Select.scss +246 -0
  701. package/src/components/Select/Select.stories.tsx +156 -0
  702. package/src/components/Select/Select.tsx +373 -0
  703. package/src/components/Select/components/Dropdown/Dropdown.scss +70 -0
  704. package/src/components/Select/components/Dropdown/Dropdown.tsx +93 -0
  705. package/src/components/Select/components/Dropdown/dropdownTypes.ts +19 -0
  706. package/src/components/Select/index.ts +1 -0
  707. package/src/components/Select/types.ts +131 -0
  708. package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.scss +117 -0
  709. package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.tsx +62 -0
  710. package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.tsx +210 -0
  711. package/src/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.scss +51 -0
  712. package/src/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.tsx +107 -0
  713. package/src/components/SequentialConnectingBranch/components/AddBrowserModal/types.ts +5 -0
  714. package/src/components/SequentialConnectingBranch/components/Branches/Branches.scss +184 -0
  715. package/src/components/SequentialConnectingBranch/components/Branches/Branches.tsx +203 -0
  716. package/src/components/SequentialConnectingBranch/components/Branches/types.ts +18 -0
  717. package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.scss +3 -0
  718. package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.tsx +66 -0
  719. package/src/components/SequentialConnectingBranch/components/ConnectingBranches/types.ts +10 -0
  720. package/src/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.scss +31 -0
  721. package/src/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.tsx +85 -0
  722. package/src/components/SequentialConnectingBranch/components/DatasetListModal/types.ts +4 -0
  723. package/src/components/SequentialConnectingBranch/index.ts +1 -0
  724. package/src/components/SequentialConnectingBranch/types.ts +42 -0
  725. package/src/components/StateDropdown/StateDropdown.stories.tsx +99 -0
  726. package/src/components/StateDropdown/StateDropdown.tsx +218 -0
  727. package/src/components/StateDropdown/StateDropdownTypes.tsx +21 -0
  728. package/src/components/StateDropdown/index.ts +1 -0
  729. package/src/components/StatusButton/StatusButton.scss +90 -0
  730. package/src/components/StatusButton/StatusButton.stories.tsx +91 -0
  731. package/src/components/StatusButton/StatusButton.tsx +40 -0
  732. package/src/components/StatusButton/index.ts +1 -0
  733. package/src/components/StatusButton/types.ts +45 -0
  734. package/src/components/Table/Table.scss +107 -0
  735. package/src/components/Table/Table.stories.tsx +357 -0
  736. package/src/components/Table/Table.tsx +154 -0
  737. package/src/components/Table/Types.ts +108 -0
  738. package/src/components/Table/index.ts +1 -0
  739. package/src/components/TableTree/TableTree.scss +158 -0
  740. package/src/components/TableTree/TableTree.stories.tsx +86 -0
  741. package/src/components/TableTree/TableTree.tsx +255 -0
  742. package/src/components/TableTree/TableTreeStories.scss +22 -0
  743. package/src/components/TableTree/data.ts +573 -0
  744. package/src/components/TableTree/index.ts +1 -0
  745. package/src/components/Tabs/Tabs.scss +79 -0
  746. package/src/components/Tabs/Tabs.stories.tsx +134 -0
  747. package/src/components/Tabs/Tabs.tsx +62 -0
  748. package/src/components/Tabs/index.ts +1 -0
  749. package/src/components/Tabs/types.ts +48 -0
  750. package/src/components/TextArea/Textarea.scss +144 -0
  751. package/src/components/TextArea/Textarea.stories.tsx +92 -0
  752. package/src/components/TextArea/Textarea.tsx +84 -0
  753. package/src/components/TextArea/Types.ts +82 -0
  754. package/src/components/TextArea/index.tsx +1 -0
  755. package/src/components/ThemeProvider/ThemeProvider.tsx +27 -0
  756. package/src/components/ThemeProvider/index.ts +1 -0
  757. package/src/components/ThemeProvider/types.ts +14 -0
  758. package/src/components/Toast/Toast.scss +121 -0
  759. package/src/components/Toast/Toast.stories.tsx +180 -0
  760. package/src/components/Toast/Toast.tsx +116 -0
  761. package/src/components/Toast/index.ts +1 -0
  762. package/src/components/Toast/types.ts +27 -0
  763. package/src/components/Toggle/Toggle.scss +133 -0
  764. package/src/components/Toggle/Toggle.stories.tsx +132 -0
  765. package/src/components/Toggle/Toggle.tsx +96 -0
  766. package/src/components/Toggle/index.ts +1 -0
  767. package/src/components/Toggle/types.ts +43 -0
  768. package/src/components/Tooltip/Tooltip.scss +26 -0
  769. package/src/components/Tooltip/Tooltip.stories.tsx +97 -0
  770. package/src/components/Tooltip/Tooltip.tsx +194 -0
  771. package/src/components/Tooltip/index.ts +1 -0
  772. package/src/components/Tooltip/types.ts +60 -0
  773. package/src/components/Typography/Typography.scss +49 -0
  774. package/src/components/Typography/Typography.stories.tsx +57 -0
  775. package/src/components/Typography/Typography.tsx +39 -0
  776. package/src/components/Typography/index.ts +1 -0
  777. package/src/components/Typography/types.ts +56 -0
  778. package/src/components/VariableInput/VariableInput.scss +128 -0
  779. package/src/components/VariableInput/VariableInput.stories.tsx +32 -0
  780. package/src/components/VariableInput/VariableInput.tsx +352 -0
  781. package/src/components/VariableInput/index.ts +1 -0
  782. package/src/components/VariableInput/types.ts +56 -0
  783. package/src/fonts/Montserrat/Montserrat-Medium.ttf +0 -0
  784. package/src/fonts/Montserrat/Montserrat-Regular.ttf +0 -0
  785. package/src/fonts/Montserrat/Montserrat-SemiBold.ttf +0 -0
  786. package/src/fonts/Poppins/Poppins-Black.ttf +0 -0
  787. package/src/fonts/Poppins/Poppins-BlackItalic.ttf +0 -0
  788. package/src/fonts/Poppins/Poppins-Bold.ttf +0 -0
  789. package/src/fonts/Poppins/Poppins-BoldItalic.ttf +0 -0
  790. package/src/fonts/Poppins/Poppins-ExtraBold.ttf +0 -0
  791. package/src/fonts/Poppins/Poppins-ExtraBoldItalic.ttf +0 -0
  792. package/src/fonts/Poppins/Poppins-ExtraLight.ttf +0 -0
  793. package/src/fonts/Poppins/Poppins-ExtraLightItalic.ttf +0 -0
  794. package/src/fonts/Poppins/Poppins-Italic.ttf +0 -0
  795. package/src/fonts/Poppins/Poppins-Light.ttf +0 -0
  796. package/src/fonts/Poppins/Poppins-LightItalic.ttf +0 -0
  797. package/src/fonts/Poppins/Poppins-Medium.ttf +0 -0
  798. package/src/fonts/Poppins/Poppins-MediumItalic.ttf +0 -0
  799. package/src/fonts/Poppins/Poppins-Regular.ttf +0 -0
  800. package/src/fonts/Poppins/Poppins-SemiBold.ttf +0 -0
  801. package/src/fonts/Poppins/Poppins-SemiBoldItalic.ttf +0 -0
  802. package/src/fonts/Poppins/Poppins-Thin.ttf +0 -0
  803. package/src/fonts/Poppins/Poppins-ThinItalic.ttf +0 -0
  804. package/src/hooks/keyboardevents/useEscKeyEvent.tsx +31 -0
  805. package/src/hooks/useClickOutside.tsx +30 -0
  806. package/src/hooks/useFileDropzone.tsx +273 -0
  807. package/src/hooks/usePortalPosition.tsx +53 -0
  808. package/src/hooks/useTheme.tsx +13 -0
  809. package/src/index.ts +139 -0
  810. package/src/utils/TableCell/TableCell.ts +16 -0
  811. package/src/utils/checkEmpty/checkEmpty.stories.tsx +34 -0
  812. package/src/utils/checkEmpty/checkEmpty.ts +24 -0
  813. package/src/utils/compareArrays/compareArrays.stories.tsx +62 -0
  814. package/src/utils/compareArrays/compareArrays.ts +31 -0
  815. package/src/utils/compareObjects/compareObjects.stories.tsx +51 -0
  816. package/src/utils/compareObjects/compareObjects.ts +53 -0
  817. package/src/utils/debounce/debounce.stories.tsx +81 -0
  818. package/src/utils/debounce/debounce.ts +28 -0
  819. package/src/utils/ffID/ffID.stories.tsx +35 -0
  820. package/src/utils/ffID/ffid.ts +7 -0
  821. package/src/utils/findAndInsert/findAndInsert.stories.tsx +119 -0
  822. package/src/utils/findAndInsert/findAndInsert.ts +49 -0
  823. package/src/utils/getEncryptedData/getEncryptedData.stories.tsx +55 -0
  824. package/src/utils/getEncryptedData/getEncryptedData.ts +8 -0
  825. package/src/utils/getExtension/getExtension.stories.tsx +23 -0
  826. package/src/utils/getExtension/getExtension.ts +28 -0
  827. package/src/utils/throttle/throttle.stories.tsx +100 -0
  828. package/src/utils/throttle/throttle.ts +33 -0
  829. package/src/utils/truncateText/truncateText.stories.tsx +37 -0
  830. package/src/utils/truncateText/truncateText.ts +4 -0
  831. package/tsconfig.json +55 -0
  832. package/vite.config.js +14 -0
@@ -0,0 +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>
@@ -0,0 +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>
@@ -0,0 +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>
@@ -0,0 +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>
@@ -0,0 +1,13 @@
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_4775_71389" fill="white">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18.4674 0.217769C19.4684 -0.0725897 20.5315 -0.0725897 21.5326 0.217769C22.179 0.4053 22.7305 0.730828 23.2743 1.1273C23.7918 1.50469 24.3806 2.0064 25.0811 2.60331L25.0836 2.60544L25.4439 2.9126C26.0716 3.44749 26.2431 3.58556 26.4193 3.68605C26.601 3.78954 26.7948 3.86986 26.9965 3.92509C27.1923 3.97875 27.411 4.00232 28.2332 4.06791L28.7051 4.10558C29.624 4.17888 30.3962 4.2405 31.0298 4.33971C31.6945 4.44384 32.3147 4.60362 32.9045 4.92817C33.8175 5.4307 34.5693 6.18235 35.0719 7.09554C35.3964 7.68528 35.5562 8.30544 35.6602 8.97024C35.7595 9.60384 35.8211 10.376 35.8943 11.2949L35.9321 11.7668C35.9977 12.5889 36.0211 12.8077 36.0749 13.0035C36.1301 13.2051 36.2104 13.399 36.3138 13.5806C36.4144 13.757 36.5525 13.9284 37.0874 14.556L37.3945 14.9165C37.9925 15.618 38.4948 16.2076 38.8727 16.7258C39.2692 17.2693 39.5947 17.8209 39.7821 18.4674C40.0726 19.4685 40.0726 20.5314 39.7821 21.5325C39.5947 22.179 39.2692 22.7306 38.8727 23.2743C38.4959 23.7909 37.9955 24.3783 37.4 25.0772L37.4 25.0772L37.3947 25.0834L37.0874 25.4439C36.5525 26.0715 36.4144 26.243 36.3138 26.4194C36.2104 26.601 36.1301 26.7949 36.0749 26.9966C36.0211 27.1922 35.9977 27.4111 35.9321 28.2331L35.8943 28.705C35.8211 29.6239 35.7595 30.3961 35.6602 31.0296C35.5562 31.6944 35.3964 32.3146 35.0719 32.9044C34.5693 33.8176 33.8175 34.5692 32.9045 35.0717C32.3147 35.3964 31.6945 35.5561 31.0298 35.6603C30.3962 35.7595 29.624 35.8211 28.7051 35.8944L28.2332 35.932C27.411 35.9976 27.1923 36.0212 26.9965 36.0748C26.7948 36.13 26.601 36.2105 26.4193 36.3139C26.2431 36.4143 26.0716 36.5525 25.4439 37.0873L25.0834 37.3946L25.0807 37.3968C24.3805 37.9936 23.7917 38.4954 23.2743 38.8726C22.7305 39.2691 22.179 39.5946 21.5326 39.7822C20.5315 40.0725 19.4684 40.0725 18.4674 39.7822C17.821 39.5946 17.2694 39.2691 16.7257 38.8726C16.2088 38.4958 15.6208 37.9947 14.9215 37.3988L14.9165 37.3946L14.556 37.0873C13.9283 36.5525 13.757 36.4143 13.5806 36.3139C13.399 36.2105 13.2051 36.13 13.0035 36.0748C12.8077 36.0212 12.5889 35.9976 11.7668 35.932L11.2949 35.8944C10.376 35.8211 9.60384 35.7595 8.97024 35.6603C8.30544 35.5561 7.68528 35.3964 7.09554 35.0717C6.18235 34.5692 5.4307 33.8176 4.92817 32.9044C4.6036 32.3146 4.44382 31.6944 4.33971 31.0296C4.24048 30.3961 4.17888 29.6241 4.10558 28.7052L4.06791 28.2331C4.00232 27.4111 3.97875 27.1922 3.9251 26.9966C3.86986 26.7949 3.78954 26.601 3.68605 26.4194C3.58554 26.243 3.44749 26.0715 2.91258 25.4439L2.6054 25.0834C2.00757 24.382 1.50512 23.7925 1.1273 23.2743C0.730829 22.7306 0.4053 22.179 0.217769 21.5325C-0.0725897 20.5314 -0.0725897 19.4685 0.217769 18.4674C0.4053 17.8209 0.730829 17.2693 1.1273 16.7258C1.50514 16.2076 2.00757 15.618 2.60542 14.9165L2.91258 14.556C3.44749 13.9284 3.58554 13.757 3.68605 13.5806C3.78954 13.399 3.86986 13.2051 3.9251 13.0035C3.97875 12.8077 4.00232 12.5889 4.06791 11.7668L4.10558 11.2947L4.10563 11.2942C4.17891 10.3757 4.2405 9.60367 4.33971 8.97024C4.44382 8.30544 4.6036 7.68528 4.92817 7.09554C5.4307 6.18235 6.18235 5.43072 7.09554 4.92817C7.68528 4.60362 8.30544 4.44384 8.97024 4.33971C9.6038 4.2405 10.3759 4.17888 11.2947 4.10558L11.7668 4.06791C12.5889 4.00232 12.8077 3.97875 13.0035 3.92509C13.2051 3.86986 13.399 3.78954 13.5806 3.68605C13.757 3.58556 13.9283 3.44749 14.556 2.9126L14.9165 2.60544L14.9165 2.6054C15.618 2.00757 16.2076 1.50513 16.7257 1.1273C17.2694 0.730828 17.821 0.4053 18.4674 0.217769ZM13 25.2197H27.1996V27.2971H13V25.2197ZM25.1954 13V22.5118L22.3469 19.6532L20.3327 21.6573L16.65 17.9746L18.6541 15.9705L15.6835 13H25.1954ZM19.3204 21.5118C19.6429 21.8343 19.6867 22.3125 19.4181 22.581C19.1495 22.8496 18.6704 22.8058 18.3489 22.4844L15.7893 19.9248C15.4679 19.6034 15.4241 19.1242 15.6927 18.8556C15.9613 18.5881 16.4394 18.6318 16.7619 18.9533L19.3204 21.5118ZM17.7355 23.0205C18.0579 23.342 18.1017 23.8211 17.8331 24.0887C17.5646 24.3583 17.0864 24.3145 16.7639 23.992L14.2054 21.4335C13.8829 21.111 13.8402 20.6329 14.1077 20.3643C14.3763 20.0957 14.8544 20.1395 15.1769 20.4609L17.7355 23.0205Z"/>
4
+ </mask>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18.4674 0.217769C19.4684 -0.0725897 20.5315 -0.0725897 21.5326 0.217769C22.179 0.4053 22.7305 0.730828 23.2743 1.1273C23.7918 1.50469 24.3806 2.0064 25.0811 2.60331L25.0836 2.60544L25.4439 2.9126C26.0716 3.44749 26.2431 3.58556 26.4193 3.68605C26.601 3.78954 26.7948 3.86986 26.9965 3.92509C27.1923 3.97875 27.411 4.00232 28.2332 4.06791L28.7051 4.10558C29.624 4.17888 30.3962 4.2405 31.0298 4.33971C31.6945 4.44384 32.3147 4.60362 32.9045 4.92817C33.8175 5.4307 34.5693 6.18235 35.0719 7.09554C35.3964 7.68528 35.5562 8.30544 35.6602 8.97024C35.7595 9.60384 35.8211 10.376 35.8943 11.2949L35.9321 11.7668C35.9977 12.5889 36.0211 12.8077 36.0749 13.0035C36.1301 13.2051 36.2104 13.399 36.3138 13.5806C36.4144 13.757 36.5525 13.9284 37.0874 14.556L37.3945 14.9165C37.9925 15.618 38.4948 16.2076 38.8727 16.7258C39.2692 17.2693 39.5947 17.8209 39.7821 18.4674C40.0726 19.4685 40.0726 20.5314 39.7821 21.5325C39.5947 22.179 39.2692 22.7306 38.8727 23.2743C38.4959 23.7909 37.9955 24.3783 37.4 25.0772L37.4 25.0772L37.3947 25.0834L37.0874 25.4439C36.5525 26.0715 36.4144 26.243 36.3138 26.4194C36.2104 26.601 36.1301 26.7949 36.0749 26.9966C36.0211 27.1922 35.9977 27.4111 35.9321 28.2331L35.8943 28.705C35.8211 29.6239 35.7595 30.3961 35.6602 31.0296C35.5562 31.6944 35.3964 32.3146 35.0719 32.9044C34.5693 33.8176 33.8175 34.5692 32.9045 35.0717C32.3147 35.3964 31.6945 35.5561 31.0298 35.6603C30.3962 35.7595 29.624 35.8211 28.7051 35.8944L28.2332 35.932C27.411 35.9976 27.1923 36.0212 26.9965 36.0748C26.7948 36.13 26.601 36.2105 26.4193 36.3139C26.2431 36.4143 26.0716 36.5525 25.4439 37.0873L25.0834 37.3946L25.0807 37.3968C24.3805 37.9936 23.7917 38.4954 23.2743 38.8726C22.7305 39.2691 22.179 39.5946 21.5326 39.7822C20.5315 40.0725 19.4684 40.0725 18.4674 39.7822C17.821 39.5946 17.2694 39.2691 16.7257 38.8726C16.2088 38.4958 15.6208 37.9947 14.9215 37.3988L14.9165 37.3946L14.556 37.0873C13.9283 36.5525 13.757 36.4143 13.5806 36.3139C13.399 36.2105 13.2051 36.13 13.0035 36.0748C12.8077 36.0212 12.5889 35.9976 11.7668 35.932L11.2949 35.8944C10.376 35.8211 9.60384 35.7595 8.97024 35.6603C8.30544 35.5561 7.68528 35.3964 7.09554 35.0717C6.18235 34.5692 5.4307 33.8176 4.92817 32.9044C4.6036 32.3146 4.44382 31.6944 4.33971 31.0296C4.24048 30.3961 4.17888 29.6241 4.10558 28.7052L4.06791 28.2331C4.00232 27.4111 3.97875 27.1922 3.9251 26.9966C3.86986 26.7949 3.78954 26.601 3.68605 26.4194C3.58554 26.243 3.44749 26.0715 2.91258 25.4439L2.6054 25.0834C2.00757 24.382 1.50512 23.7925 1.1273 23.2743C0.730829 22.7306 0.4053 22.179 0.217769 21.5325C-0.0725897 20.5314 -0.0725897 19.4685 0.217769 18.4674C0.4053 17.8209 0.730829 17.2693 1.1273 16.7258C1.50514 16.2076 2.00757 15.618 2.60542 14.9165L2.91258 14.556C3.44749 13.9284 3.58554 13.757 3.68605 13.5806C3.78954 13.399 3.86986 13.2051 3.9251 13.0035C3.97875 12.8077 4.00232 12.5889 4.06791 11.7668L4.10558 11.2947L4.10563 11.2942C4.17891 10.3757 4.2405 9.60367 4.33971 8.97024C4.44382 8.30544 4.6036 7.68528 4.92817 7.09554C5.4307 6.18235 6.18235 5.43072 7.09554 4.92817C7.68528 4.60362 8.30544 4.44384 8.97024 4.33971C9.6038 4.2405 10.3759 4.17888 11.2947 4.10558L11.7668 4.06791C12.5889 4.00232 12.8077 3.97875 13.0035 3.92509C13.2051 3.86986 13.399 3.78954 13.5806 3.68605C13.757 3.58556 13.9283 3.44749 14.556 2.9126L14.9165 2.60544L14.9165 2.6054C15.618 2.00757 16.2076 1.50513 16.7257 1.1273C17.2694 0.730828 17.821 0.4053 18.4674 0.217769ZM13 25.2197H27.1996V27.2971H13V25.2197ZM25.1954 13V22.5118L22.3469 19.6532L20.3327 21.6573L16.65 17.9746L18.6541 15.9705L15.6835 13H25.1954ZM19.3204 21.5118C19.6429 21.8343 19.6867 22.3125 19.4181 22.581C19.1495 22.8496 18.6704 22.8058 18.3489 22.4844L15.7893 19.9248C15.4679 19.6034 15.4241 19.1242 15.6927 18.8556C15.9613 18.5881 16.4394 18.6318 16.7619 18.9533L19.3204 21.5118ZM17.7355 23.0205C18.0579 23.342 18.1017 23.8211 17.8331 24.0887C17.5646 24.3583 17.0864 24.3145 16.7639 23.992L14.2054 21.4335C13.8829 21.111 13.8402 20.6329 14.1077 20.3643C14.3763 20.0957 14.8544 20.1395 15.1769 20.4609L17.7355 23.0205Z" fill="#592F7C"/>
6
+ <path d="M21.5326 0.217769L21.8112 -0.742627L21.8112 -0.742648L21.5326 0.217769ZM18.4674 0.217769L18.1888 -0.742648L18.1887 -0.742627L18.4674 0.217769ZM23.2743 1.1273L23.8635 0.319312L23.8634 0.319278L23.2743 1.1273ZM25.0811 2.60331L25.7297 1.8422L25.7296 1.84217L25.0811 2.60331ZM25.0836 2.60544L25.7323 1.84445L25.7322 1.84433L25.0836 2.60544ZM25.4439 2.9126L24.7951 3.67359L24.7953 3.67377L25.4439 2.9126ZM26.4193 3.68605L25.924 4.55477L25.9243 4.55494L26.4193 3.68605ZM26.9965 3.92509L27.2607 2.96063L27.2607 2.96062L26.9965 3.92509ZM28.2332 4.06791L28.3128 3.07108L28.3127 3.07108L28.2332 4.06791ZM28.7051 4.10558L28.6256 5.10241L28.6256 5.10242L28.7051 4.10558ZM31.0298 4.33971L31.1845 3.35175L31.1845 3.35175L31.0298 4.33971ZM32.9045 4.92817L33.3867 4.0521L33.3866 4.05206L32.9045 4.92817ZM35.0719 7.09554L35.948 6.61347L35.948 6.61341L35.0719 7.09554ZM35.6602 8.97024L34.6722 9.12484L34.6723 9.12497L35.6602 8.97024ZM35.8943 11.2949L34.8974 11.3743L34.8975 11.3747L35.8943 11.2949ZM35.9321 11.7668L36.9289 11.6873L36.9289 11.687L35.9321 11.7668ZM36.0749 13.0035L37.0394 12.7393L37.0392 12.7384L36.0749 13.0035ZM36.3138 13.5806L35.4448 14.0754L35.4452 14.0762L36.3138 13.5806ZM37.0874 14.556L37.8486 13.9075L37.8485 13.9074L37.0874 14.556ZM37.3945 14.9165L36.6333 15.565L36.6335 15.5652L37.3945 14.9165ZM38.8727 16.7258L38.0648 17.315L38.0648 17.3151L38.8727 16.7258ZM39.7821 18.4674L38.8217 18.7459L38.8218 18.7461L39.7821 18.4674ZM39.7821 21.5325L38.8218 21.2538L38.8217 21.254L39.7821 21.5325ZM38.8727 23.2743L39.6806 23.8636L39.6807 23.8635L38.8727 23.2743ZM37.4 25.0772L36.6389 24.4286L36.6288 24.4404L36.6192 24.4525L37.4 25.0772ZM37.4 25.0772L38.1612 25.7257L38.1712 25.714L38.1809 25.7019L37.4 25.0772ZM37.3947 25.0834L38.1557 25.7321L38.1559 25.732L37.3947 25.0834ZM37.0874 25.4439L37.8484 26.0926L37.8485 26.0926L37.0874 25.4439ZM36.3138 26.4194L35.4451 25.924L35.4448 25.9246L36.3138 26.4194ZM36.0749 26.9966L37.0391 27.2618L37.0394 27.2606L36.0749 26.9966ZM35.9321 28.2331L36.9289 28.313L36.9289 28.3127L35.9321 28.2331ZM35.8943 28.705L34.8975 28.6252L34.8974 28.6256L35.8943 28.705ZM35.6602 31.0296L34.6723 30.8749L34.6722 30.875L35.6602 31.0296ZM35.0719 32.9044L35.948 33.3865L35.948 33.3864L35.0719 32.9044ZM32.9045 35.0717L32.4223 34.1957L32.4222 34.1957L32.9045 35.0717ZM31.0298 35.6603L31.1845 36.6483L31.1847 36.6482L31.0298 35.6603ZM28.7051 35.8944L28.6257 34.8975L28.6257 34.8975L28.7051 35.8944ZM28.2332 35.932L28.1538 34.9351L28.1537 34.9352L28.2332 35.932ZM26.9965 36.0748L26.7324 35.1103L26.7324 35.1103L26.9965 36.0748ZM26.4193 36.3139L25.9245 35.4449L25.9243 35.445L26.4193 36.3139ZM25.4439 37.0873L24.7954 36.326L24.7951 36.3263L25.4439 37.0873ZM25.0834 37.3946L25.7317 38.1559L25.7321 38.1556L25.0834 37.3946ZM25.0807 37.3968L24.4323 36.6355L24.4321 36.6358L25.0807 37.3968ZM23.2743 38.8726L22.6852 38.0645L22.6851 38.0646L23.2743 38.8726ZM21.5326 39.7822L21.8111 40.7427L21.8114 40.7426L21.5326 39.7822ZM18.4674 39.7822L18.1886 40.7426L18.1889 40.7427L18.4674 39.7822ZM16.7257 38.8726L17.3149 38.0646L17.3147 38.0645L16.7257 38.8726ZM14.9215 37.3988L14.2727 38.1598L14.2729 38.1599L14.9215 37.3988ZM14.9165 37.3946L14.2678 38.1556L14.2678 38.1556L14.9165 37.3946ZM14.556 37.0873L15.2047 36.3263L15.2045 36.3261L14.556 37.0873ZM13.5806 36.3139L13.0858 37.1829L13.0858 37.1829L13.5806 36.3139ZM13.0035 36.0748L12.7393 37.0393H12.7393L13.0035 36.0748ZM11.7668 35.932L11.8464 34.9352L11.8463 34.9351L11.7668 35.932ZM11.2949 35.8944L11.3743 34.8975L11.3743 34.8975L11.2949 35.8944ZM8.97024 35.6603L8.81535 36.6482L8.81552 36.6483L8.97024 35.6603ZM7.09554 35.0717L7.57783 34.1957L7.57766 34.1956L7.09554 35.0717ZM4.92817 32.9044L5.80428 32.4223L5.80426 32.4222L4.92817 32.9044ZM4.33971 31.0296L5.32767 30.8749L5.32766 30.8749L4.33971 31.0296ZM4.10558 28.7052L5.10242 28.6257L5.10242 28.6257L4.10558 28.7052ZM4.06791 28.2331L5.06475 28.1536L5.06474 28.1535L4.06791 28.2331ZM3.9251 26.9966L2.96062 27.2607L2.9607 27.261L3.9251 26.9966ZM3.68605 26.4194L2.81713 26.9143L2.81716 26.9144L3.68605 26.4194ZM2.91258 25.4439L2.15144 26.0925L2.15152 26.0926L2.91258 25.4439ZM2.6054 25.0834L3.36654 24.4349L3.36646 24.4348L2.6054 25.0834ZM1.1273 23.2743L0.319278 23.8635L0.319297 23.8635L1.1273 23.2743ZM0.217769 21.5325L1.17819 21.2539L1.17819 21.2539L0.217769 21.5325ZM0.217769 18.4674L1.17819 18.746L1.17819 18.746L0.217769 18.4674ZM1.1273 16.7258L1.93521 17.3151L1.93528 17.315L1.1273 16.7258ZM2.60542 14.9165L3.36652 15.5651L3.36655 15.5651L2.60542 14.9165ZM2.91258 14.556L2.15148 13.9074L2.15145 13.9074L2.91258 14.556ZM3.68605 13.5806L4.55487 14.0757L4.55491 14.0757L3.68605 13.5806ZM3.9251 13.0035L2.96066 12.7392L2.96063 12.7393L3.9251 13.0035ZM4.06791 11.7668L5.06475 11.8464V11.8464L4.06791 11.7668ZM4.10558 11.2947L3.10876 11.2151L3.10875 11.2152L4.10558 11.2947ZM4.10563 11.2942L5.10245 11.3738L5.10246 11.3737L4.10563 11.2942ZM4.33971 8.97024L5.32766 9.12498L5.32767 9.12496L4.33971 8.97024ZM4.92817 7.09554L5.80425 7.57769L5.80427 7.57766L4.92817 7.09554ZM7.09554 4.92817L6.6134 4.05207L6.61339 4.05207L7.09554 4.92817ZM8.97024 4.33971L8.81554 3.35175L8.8155 3.35175L8.97024 4.33971ZM11.2947 4.10558L11.3742 5.10242L11.3743 5.10242L11.2947 4.10558ZM11.7668 4.06791L11.8464 5.06475L11.8464 5.06474L11.7668 4.06791ZM13.0035 3.92509L12.7393 2.96063L12.7392 2.96066L13.0035 3.92509ZM13.5806 3.68605L13.0855 2.81718L13.0855 2.81719L13.5806 3.68605ZM14.556 2.9126L15.2046 3.67372L15.2046 3.67371L14.556 2.9126ZM14.9165 2.60544L14.2762 1.83717L14.2678 1.84432L14.9165 2.60544ZM14.9165 2.6054L15.5567 3.37367L15.5651 3.3665L14.9165 2.6054ZM16.7257 1.1273L16.1365 0.319278L16.1365 0.319311L16.7257 1.1273ZM27.1996 25.2197H28.1996V24.2197H27.1996V25.2197ZM13 25.2197V24.2197H12V25.2197H13ZM27.1996 27.2971V28.2971H28.1996V27.2971H27.1996ZM13 27.2971H12V28.2971H13V27.2971ZM25.1954 22.5118L24.487 23.2177L26.1954 24.9322V22.5118H25.1954ZM25.1954 13H26.1954V12H25.1954V13ZM22.3469 19.6532L23.0553 18.9474L22.35 18.2395L21.6416 18.9443L22.3469 19.6532ZM20.3327 21.6573L19.6255 22.3644L20.3309 23.0697L21.038 22.3662L20.3327 21.6573ZM16.65 17.9746L15.9429 17.2675L15.2358 17.9746L15.9429 18.6817L16.65 17.9746ZM18.6541 15.9705L19.3612 16.6776L20.0683 15.9705L19.3612 15.2634L18.6541 15.9705ZM15.6835 13V12H13.2693L14.9764 13.7071L15.6835 13ZM18.3489 22.4844L19.056 21.7773H19.056L18.3489 22.4844ZM15.7893 19.9248L15.0822 20.6319L15.7893 19.9248ZM15.6927 18.8556L14.9869 18.1472L14.9856 18.1485L15.6927 18.8556ZM16.7619 18.9533L17.469 18.2462L17.4679 18.2451L16.7619 18.9533ZM17.8331 24.0887L17.1273 23.3802L17.1247 23.3829L17.8331 24.0887ZM17.7355 23.0205L17.0282 23.7275L17.0295 23.7287L17.7355 23.0205ZM16.7639 23.992L16.0568 24.6991L16.0568 24.6991L16.7639 23.992ZM14.2054 21.4335L13.4983 22.1406L13.4983 22.1406L14.2054 21.4335ZM14.1077 20.3643L13.4006 19.6572L13.3993 19.6585L14.1077 20.3643ZM15.1769 20.4609L15.8842 19.754L15.8829 19.7527L15.1769 20.4609ZM21.8112 -0.742648C20.6281 -1.08578 19.3718 -1.08578 18.1888 -0.742648L18.7459 1.17819C19.565 0.940605 20.4349 0.940605 21.254 1.17819L21.8112 -0.742648ZM23.8634 0.319278C23.2716 -0.112221 22.6131 -0.509998 21.8112 -0.742627L21.254 1.17817C21.7449 1.3206 22.1894 1.57388 22.6851 1.93531L23.8634 0.319278ZM25.7296 1.84217C25.0392 1.2538 24.4183 0.723912 23.8635 0.319312L22.6851 1.93528C23.1653 2.28547 23.722 2.759 24.4325 3.36445L25.7296 1.84217ZM25.7322 1.84433L25.7297 1.8422L24.4324 3.36441L24.4349 3.36654L25.7322 1.84433ZM26.0926 2.15161L25.7323 1.84445L24.4348 3.36643L24.7951 3.67359L26.0926 2.15161ZM26.9146 2.81733C26.84 2.77481 26.7526 2.7139 26.0924 2.15143L24.7953 3.67377C25.3907 4.18107 25.6461 4.39632 25.924 4.55477L26.9146 2.81733ZM27.2607 2.96062C27.1398 2.92751 27.0235 2.87933 26.9143 2.81716L25.9243 4.55494C26.1785 4.69974 26.4499 4.81221 26.7323 4.88957L27.2607 2.96062ZM28.3127 3.07108C27.4481 3.0021 27.3435 2.98332 27.2607 2.96063L26.7323 4.88956C27.0411 4.97418 27.3739 5.00253 28.1537 5.06475L28.3127 3.07108ZM28.7847 3.10875L28.3128 3.07108L28.1536 5.06474L28.6256 5.10241L28.7847 3.10875ZM31.1845 3.35175C30.5052 3.24539 29.6904 3.181 28.7847 3.10875L28.6256 5.10242C29.5576 5.17676 30.2872 5.23561 30.8751 5.32767L31.1845 3.35175ZM33.3866 4.05206C32.655 3.64946 31.908 3.46508 31.1845 3.35175L30.875 5.32766C31.4811 5.42259 31.9744 5.55778 32.4224 5.80427L33.3866 4.05206ZM35.948 6.61341C35.354 5.53417 34.4656 4.64594 33.3867 4.0521L32.4223 5.80424C33.1694 6.21547 33.7846 6.83053 34.1958 7.57766L35.948 6.61341ZM36.6482 8.81565C36.535 8.09193 36.3505 7.34499 35.948 6.61347L34.1957 7.57761C34.4422 8.02556 34.5774 8.51896 34.6722 9.12484L36.6482 8.81565ZM36.8911 11.2154C36.8189 10.3097 36.7546 9.49481 36.6482 8.81552L34.6723 9.12497C34.7643 9.71286 34.8232 10.4424 34.8974 11.3743L36.8911 11.2154ZM36.9289 11.687L36.8911 11.215L34.8975 11.3747L34.9353 11.8467L36.9289 11.687ZM37.0392 12.7384C37.0166 12.6563 36.998 12.5525 36.9289 11.6873L34.9353 11.8464C34.9974 12.6252 35.0257 12.9591 35.1107 13.2685L37.0392 12.7384ZM37.1828 13.0858C37.1208 12.9768 37.0726 12.8605 37.0394 12.7393L35.1105 13.2676C35.1877 13.5497 35.3 13.8211 35.4448 14.0754L37.1828 13.0858ZM37.8485 13.9074C37.2861 13.2475 37.2251 13.1599 37.1824 13.085L35.4452 14.0762C35.6038 14.3541 35.8189 14.6093 36.3263 15.2047L37.8485 13.9074ZM38.1557 14.268L37.8486 13.9075L36.3262 15.2045L36.6333 15.565L38.1557 14.268ZM39.6806 16.1365C39.2755 15.5811 38.7451 14.9595 38.1555 14.2678L36.6335 15.5652C37.2398 16.2765 37.7141 16.8342 38.0648 17.315L39.6806 16.1365ZM40.7426 18.189C40.51 17.3869 40.1123 16.7282 39.6806 16.1364L38.0648 17.3151C38.4261 17.8104 38.6793 18.2549 38.8217 18.7459L40.7426 18.189ZM40.7425 21.8111C41.0858 20.628 41.0858 19.3719 40.7425 18.1888L38.8218 18.7461C39.0594 19.5652 39.0594 20.4348 38.8218 21.2538L40.7425 21.8111ZM39.6807 23.8635C40.1123 23.2717 40.5101 22.613 40.7426 21.8109L38.8217 21.254C38.6793 21.7451 38.4261 22.1895 38.0647 22.6851L39.6807 23.8635ZM38.1612 25.7257C38.7481 25.0369 39.2767 24.4174 39.6806 23.8636L38.0648 22.6851C37.7151 23.1644 37.2428 23.7198 36.6389 24.4286L38.1612 25.7257ZM38.1809 25.7019L38.1809 25.7019L36.6192 24.4525L36.6192 24.4525L38.1809 25.7019ZM38.1559 25.732L38.1612 25.7257L36.6388 24.4287L36.6335 24.4349L38.1559 25.732ZM37.8485 26.0926L38.1557 25.7321L36.6337 24.4347L36.3264 24.7952L37.8485 26.0926ZM37.1825 26.9148C37.2251 26.84 37.2861 26.7524 37.8484 26.0926L36.3264 24.7952C35.8189 25.3906 35.6037 25.6459 35.4451 25.924L37.1825 26.9148ZM37.0394 27.2606C37.0726 27.1395 37.1207 27.0232 37.1828 26.9142L35.4448 25.9246C35.3 26.1789 35.1877 26.4503 35.1104 26.7325L37.0394 27.2606ZM36.9289 28.3127C36.998 27.4473 37.0166 27.3437 37.0391 27.2618L35.1107 26.7314C35.0256 27.0407 34.9974 27.3748 34.9353 28.1535L36.9289 28.3127ZM36.8911 28.7849L36.9289 28.313L34.9353 28.1532L34.8975 28.6252L36.8911 28.7849ZM36.6482 31.1844C36.7546 30.5051 36.819 29.6902 36.8911 28.7845L34.8974 28.6256C34.8232 29.5575 34.7643 30.2871 34.6723 30.8749L36.6482 31.1844ZM35.948 33.3864C36.3505 32.6549 36.535 31.9079 36.6482 31.1843L34.6722 30.875C34.5774 31.4809 34.4422 31.9743 34.1957 32.4223L35.948 33.3864ZM33.3867 35.9478C34.4656 35.354 35.354 34.4658 35.948 33.3865L34.1958 32.4223C33.7846 33.1694 33.1695 33.7844 32.4223 34.1957L33.3867 35.9478ZM31.1847 36.6482C31.9079 36.5348 32.655 36.3506 33.3868 35.9478L32.4222 34.1957C31.9744 34.4422 31.4812 34.5773 30.8749 34.6724L31.1847 36.6482ZM28.7846 36.8912C29.6904 36.819 30.5052 36.7546 31.1845 36.6483L30.875 34.6723C30.2872 34.7644 29.5576 34.8233 28.6257 34.8975L28.7846 36.8912ZM28.3127 36.9288L28.7846 36.8912L28.6257 34.8975L28.1538 34.9351L28.3127 36.9288ZM27.2605 37.0393C27.3435 37.0166 27.4483 36.9978 28.3128 36.9288L28.1537 34.9352C27.3737 34.9974 27.0412 35.0258 26.7324 35.1103L27.2605 37.0393ZM26.9141 37.1829C27.0236 37.1205 27.14 37.0723 27.2606 37.0393L26.7324 35.1103C26.4496 35.1877 26.1783 35.3004 25.9245 35.4449L26.9141 37.1829ZM26.0923 37.8485C26.7529 37.2859 26.84 37.2251 26.9144 37.1827L25.9243 35.445C25.6462 35.6035 25.3904 35.8192 24.7954 36.326L26.0923 37.8485ZM25.7321 38.1556L26.0926 37.8483L24.7951 36.3263L24.4347 36.6335L25.7321 38.1556ZM25.7291 38.1582L25.7317 38.1559L24.435 36.6332L24.4323 36.6355L25.7291 38.1582ZM23.8633 39.6807C24.4182 39.2761 25.0392 38.7461 25.7293 38.1579L24.4321 36.6358C23.7218 37.2411 23.1653 37.7146 22.6852 38.0645L23.8633 39.6807ZM21.8114 40.7426C22.6131 40.5098 23.2716 40.1122 23.8635 39.6806L22.6851 38.0646C22.1894 38.426 21.7449 38.6793 21.2538 38.8219L21.8114 40.7426ZM18.1889 40.7427C19.3719 41.0857 20.6281 41.0857 21.8111 40.7427L21.2541 38.8218C20.4349 39.0593 19.565 39.0593 18.7459 38.8218L18.1889 40.7427ZM16.1365 39.6806C16.7284 40.1122 17.3869 40.5098 18.1886 40.7426L18.7462 38.8219C18.2551 38.6793 17.8105 38.426 17.3149 38.0646L16.1365 39.6806ZM14.2729 38.1599C14.9621 38.7473 15.5823 39.2766 16.1366 39.6807L17.3147 38.0645C16.8352 37.7149 16.2794 37.2421 15.5701 36.6377L14.2729 38.1599ZM14.2678 38.1556L14.2727 38.1598L15.5702 36.6378L15.5652 36.6335L14.2678 38.1556ZM13.9073 37.8483L14.2678 38.1556L15.5652 36.6336L15.2047 36.3263L13.9073 37.8483ZM13.0858 37.1829C13.1601 37.2252 13.2469 37.2857 13.9075 37.8485L15.2045 36.3261C14.6098 35.8194 14.3539 35.6034 14.0754 35.4449L13.0858 37.1829ZM12.7393 37.0393C12.8599 37.0723 12.9763 37.1205 13.0858 37.1829L14.0754 35.4449C13.8216 35.3004 13.5503 35.1877 13.2676 35.1103L12.7393 37.0393ZM11.6873 36.9288C12.5517 36.9978 12.6565 37.0166 12.7393 37.0393L13.2676 35.1103C12.9589 35.0258 12.6261 34.9974 11.8464 34.9352L11.6873 36.9288ZM11.2154 36.8912L11.6874 36.9288L11.8463 34.9351L11.3743 34.8975L11.2154 36.8912ZM8.81552 36.6483C9.49481 36.7546 10.3097 36.819 11.2154 36.8912L11.3743 34.8975C10.4424 34.8233 9.71286 34.7644 9.12497 34.6723L8.81552 36.6483ZM6.61324 35.9478C7.34499 36.3506 8.09211 36.5348 8.81535 36.6482L9.12513 34.6724C8.51878 34.5773 8.02556 34.4422 7.57783 34.1957L6.61324 35.9478ZM4.05205 33.3865C4.64595 34.4657 5.53424 35.354 6.61341 35.9478L7.57766 34.1956C6.83046 33.7845 6.21546 33.1695 5.80428 32.4223L4.05205 33.3865ZM3.35175 31.1844C3.46506 31.9079 3.64944 32.6549 4.05208 33.3865L5.80426 32.4222C5.55776 31.9743 5.42257 31.481 5.32767 30.8749L3.35175 31.1844ZM3.10875 28.7847C3.181 29.6905 3.24537 30.5051 3.35175 31.1844L5.32766 30.8749C5.23559 30.287 5.17676 29.5577 5.10242 28.6257L3.10875 28.7847ZM3.07108 28.3126L3.10875 28.7848L5.10242 28.6257L5.06475 28.1536L3.07108 28.3126ZM2.9607 27.261C2.98331 27.3435 3.00209 27.448 3.07108 28.3126L5.06474 28.1535C5.00255 27.3741 4.97419 27.0409 4.88949 26.7321L2.9607 27.261ZM2.81716 26.9144C2.87933 27.0235 2.92751 27.1399 2.96062 27.2607L4.88957 26.7324C4.81221 26.4499 4.69974 26.1786 4.55494 25.9244L2.81716 26.9144ZM2.15152 26.0926C2.71401 26.7526 2.77471 26.8399 2.81713 26.9143L4.55497 25.9245C4.39638 25.646 4.18096 25.3905 3.67364 24.7953L2.15152 26.0926ZM1.84425 25.732L2.15144 26.0925L3.67373 24.7954L3.36654 24.4349L1.84425 25.732ZM0.319297 23.8635C0.724372 24.419 1.25505 25.0407 1.84434 25.7321L3.36646 24.4348C2.7601 23.7234 2.28587 23.1659 1.9353 22.6852L0.319297 23.8635ZM-0.742651 21.811C-0.510024 22.6131 -0.112232 23.2717 0.319278 23.8635L1.93531 22.6852C1.57389 22.1895 1.32062 21.745 1.17819 21.2539L-0.742651 21.811ZM-0.742648 18.1889C-1.08578 19.3719 -1.08578 20.628 -0.742648 21.811L1.17819 21.2539C0.940605 20.4348 0.940605 19.5651 1.17819 18.746L-0.742648 18.1889ZM0.319382 16.1365C-0.112223 16.7282 -0.510022 17.3868 -0.742651 18.1889L1.17819 18.746C1.32062 18.2549 1.57388 17.8104 1.93521 17.3151L0.319382 16.1365ZM1.84431 14.2678C1.25498 14.9594 0.724372 15.5811 0.319312 16.1366L1.93528 17.315C2.28591 16.8342 2.76017 16.2766 3.36652 15.5651L1.84431 14.2678ZM2.15145 13.9074L1.84428 14.2679L3.36655 15.5651L3.67371 15.2046L2.15145 13.9074ZM2.81723 13.0855C2.77476 13.16 2.714 13.2473 2.15148 13.9074L3.67368 15.2047C4.18097 14.6094 4.39633 14.3539 4.55487 14.0757L2.81723 13.0855ZM2.96063 12.7393C2.92751 12.8601 2.87933 12.9765 2.81719 13.0855L4.55491 14.0757C4.69975 13.8215 4.81221 13.55 4.88956 13.2677L2.96063 12.7393ZM3.07108 11.6873C3.00209 12.5519 2.98332 12.6565 2.96066 12.7392L4.88953 13.2678C4.97418 12.9589 5.00254 12.6259 5.06475 11.8464L3.07108 11.6873ZM3.10875 11.2152L3.07108 11.6873L5.06475 11.8464L5.10242 11.3743L3.10875 11.2152ZM3.1088 11.2145L3.10876 11.2151L5.10241 11.3744L5.10245 11.3738L3.1088 11.2145ZM3.35175 8.81551C3.24539 9.49461 3.18103 10.3093 3.1088 11.2147L5.10246 11.3737C5.17679 10.442 5.23561 9.71273 5.32766 9.12498L3.35175 8.81551ZM4.05208 6.61338C3.64944 7.34498 3.46506 8.09198 3.35175 8.81553L5.32767 9.12496C5.42257 8.51891 5.55776 8.02557 5.80425 7.57769L4.05208 6.61338ZM6.61339 4.05207C5.53423 4.64597 4.64596 5.53421 4.05207 6.61341L5.80427 7.57766C6.21545 6.83048 6.83046 6.21548 7.57768 5.80426L6.61339 4.05207ZM8.8155 3.35175C8.09197 3.46508 7.34499 3.64946 6.6134 4.05207L7.57767 5.80426C8.02556 5.55778 8.51892 5.42259 9.12499 5.32766L8.8155 3.35175ZM11.2152 3.10875C10.3095 3.181 9.49475 3.24539 8.81554 3.35175L9.12495 5.32767C9.71284 5.23561 10.4423 5.17676 11.3742 5.10242L11.2152 3.10875ZM11.6873 3.07108L11.2152 3.10875L11.3743 5.10242L11.8464 5.06475L11.6873 3.07108ZM12.7392 2.96066C12.6565 2.98332 12.5519 3.00209 11.6873 3.07108L11.8464 5.06474C12.6259 5.00254 12.9589 4.97418 13.2678 4.88953L12.7392 2.96066ZM13.0855 2.81719C12.9765 2.87933 12.8601 2.92751 12.7393 2.96063L13.2677 4.88956C13.55 4.81221 13.8214 4.69975 14.0757 4.55491L13.0855 2.81719ZM13.9074 2.15148C13.2472 2.71406 13.16 2.77475 13.0855 2.81718L14.0756 4.55492C14.3539 4.39637 14.6095 4.18091 15.2046 3.67372L13.9074 2.15148ZM14.2678 1.84432L13.9074 2.15149L15.2046 3.67371L15.5651 3.36655L14.2678 1.84432ZM14.2763 1.83718L14.2763 1.83722L15.5566 3.37366L15.5567 3.37362L14.2763 1.83718ZM16.1365 0.319311C15.581 0.724374 14.9593 1.25503 14.2679 1.8443L15.5651 3.3665C16.2767 2.76012 16.8341 2.28589 17.3149 1.93528L16.1365 0.319311ZM18.1887 -0.742627C17.3869 -0.509998 16.7283 -0.112221 16.1365 0.319278L17.3148 1.93531C17.8106 1.57388 18.2551 1.3206 18.746 1.17817L18.1887 -0.742627ZM27.1996 24.2197H13V26.2197H27.1996V24.2197ZM28.1996 27.2971V25.2197H26.1996V27.2971H28.1996ZM13 28.2971H27.1996V26.2971H13V28.2971ZM12 25.2197V27.2971H14V25.2197H12ZM26.1954 22.5118V13H24.1954V22.5118H26.1954ZM21.6386 20.359L24.487 23.2177L25.9038 21.806L23.0553 18.9474L21.6386 20.359ZM21.038 22.3662L23.0522 20.3621L21.6416 18.9443L19.6273 20.9484L21.038 22.3662ZM15.9429 18.6817L19.6255 22.3644L21.0398 20.9502L17.3571 17.2675L15.9429 18.6817ZM17.947 15.2634L15.9429 17.2675L17.3571 18.6817L19.3612 16.6776L17.947 15.2634ZM14.9764 13.7071L17.947 16.6776L19.3612 15.2634L16.3907 12.2929L14.9764 13.7071ZM25.1954 12H15.6835V14H25.1954V12ZM20.1252 23.2881C20.9001 22.5132 20.6137 21.3909 20.0275 20.8047L18.6133 22.2189C18.6183 22.2239 18.5998 22.2094 18.5951 22.1577C18.5901 22.1029 18.6037 21.9812 18.711 21.8739L20.1252 23.2881ZM17.6418 23.1915C18.2279 23.7776 19.3512 24.0622 20.1252 23.2881L18.711 21.8739C18.8185 21.7664 18.94 21.7532 18.9936 21.758C19.0446 21.7627 19.0596 21.7808 19.056 21.7773L17.6418 23.1915ZM15.0822 20.6319L17.6418 23.1915L19.056 21.7773L16.4965 19.2177L15.0822 20.6319ZM14.9856 18.1485C14.2115 18.9226 14.4961 20.0458 15.0822 20.6319L16.4965 19.2177C16.4929 19.2141 16.5111 19.2291 16.5157 19.2801C16.5205 19.3338 16.5073 19.4552 16.3998 19.5627L14.9856 18.1485ZM17.4679 18.2451C16.8819 17.6609 15.7614 17.3756 14.9869 18.1472L16.3985 19.5641C16.2909 19.6713 16.1696 19.6843 16.1161 19.6794C16.0653 19.6748 16.0511 19.6568 16.0559 19.6615L17.4679 18.2451ZM20.0275 20.8047L17.469 18.2462L16.0548 19.6604L18.6133 22.2189L20.0275 20.8047ZM18.5389 24.7971C19.3161 24.0228 19.0285 22.8975 18.4414 22.3123L17.0295 23.7287C17.0332 23.7325 17.0148 23.7174 17.0101 23.6658C17.0051 23.6116 17.0184 23.4887 17.1274 23.3802L18.5389 24.7971ZM16.0568 24.6991C16.6429 25.2853 17.7666 25.5723 18.5416 24.7944L17.1247 23.3829C17.2316 23.2756 17.3536 23.2614 17.4091 23.2665C17.4614 23.2712 17.476 23.2899 17.471 23.2849L16.0568 24.6991ZM13.4983 22.1406L16.0568 24.6991L17.471 23.2849L14.9125 20.7264L13.4983 22.1406ZM13.3993 19.6585C12.6289 20.4318 12.9103 21.5526 13.4983 22.1406L14.9125 20.7264C14.9081 20.722 14.9265 20.7368 14.9312 20.7883C14.9361 20.8424 14.9227 20.9631 14.8162 21.0701L13.3993 19.6585ZM15.8829 19.7527C15.2969 19.1686 14.1752 18.8827 13.4006 19.6572L14.8148 21.0714C14.7076 21.1787 14.586 21.1922 14.5317 21.1873C14.4804 21.1826 14.4661 21.1644 14.4709 21.1692L15.8829 19.7527ZM18.4427 22.3135L15.8842 19.754L14.4697 21.1679L17.0282 23.7275L18.4427 22.3135Z" fill="url(#paint0_linear_4775_71389)" mask="url(#path-1-inside-1_4775_71389)"/>
7
+ <defs>
8
+ <linearGradient id="paint0_linear_4775_71389" x1="20" y1="1.21631" x2="20" y2="39.9999" gradientUnits="userSpaceOnUse">
9
+ <stop stop-color="#301349"/>
10
+ <stop offset="1" stop-color="#6D3277"/>
11
+ </linearGradient>
12
+ </defs>
13
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1017_474)">
3
+ <path
4
+ d="M11.3333 9.33335C11.3333 9.51016 11.2631 9.67973 11.1381 9.80475C11.0131 9.92978 10.8435 10 10.6667 10H5.33334C5.15653 10 4.98696 9.92978 4.86194 9.80475C4.73691 9.67973 4.66668 9.51016 4.66668 9.33335C4.66668 9.15654 4.73691 8.98697 4.86194 8.86194C4.98696 8.73692 5.15653 8.66668 5.33334 8.66668H10.6667C10.8435 8.66668 11.0131 8.73692 11.1381 8.86194C11.2631 8.98697 11.3333 9.15654 11.3333 9.33335ZM8.66668 11.3333H5.33334C5.15653 11.3333 4.98696 11.4036 4.86194 11.5286C4.73691 11.6536 4.66668 11.8232 4.66668 12C4.66668 12.1768 4.73691 12.3464 4.86194 12.4714C4.98696 12.5964 5.15653 12.6667 5.33334 12.6667H8.66668C8.84349 12.6667 9.01306 12.5964 9.13808 12.4714C9.26311 12.3464 9.33334 12.1768 9.33334 12C9.33334 11.8232 9.26311 11.6536 9.13808 11.5286C9.01306 11.4036 8.84349 11.3333 8.66668 11.3333ZM14.6667 6.99002V12.6667C14.6656 13.5504 14.3141 14.3976 13.6892 15.0225C13.0643 15.6474 12.2171 15.999 11.3333 16H4.66668C3.78295 15.999 2.93572 15.6474 2.31082 15.0225C1.68593 14.3976 1.3344 13.5504 1.33334 12.6667V3.33335C1.3344 2.44962 1.68593 1.60239 2.31082 0.977495C2.93572 0.352603 3.78295 0.00107394 4.66668 1.53658e-05H7.67668C8.28976 -0.00156258 8.89707 0.118407 9.46349 0.352988C10.0299 0.587569 10.5442 0.932107 10.9767 1.36668L13.2993 3.69068C13.7342 4.12284 14.0789 4.63699 14.3136 5.20333C14.5483 5.76968 14.6683 6.37696 14.6667 6.99002ZM10.034 2.30935C9.8242 2.10612 9.58863 1.9313 9.33334 1.78935V4.66668C9.33334 4.84349 9.40358 5.01306 9.52861 5.13809C9.65363 5.26311 9.8232 5.33335 10 5.33335H12.8773C12.7353 5.07814 12.5602 4.84278 12.3567 4.63335L10.034 2.30935ZM13.3333 6.99002C13.3333 6.88002 13.312 6.77468 13.302 6.66668H10C9.46958 6.66668 8.96087 6.45597 8.5858 6.0809C8.21072 5.70582 8.00001 5.19711 8.00001 4.66668V1.36468C7.89201 1.35468 7.78601 1.33335 7.67668 1.33335H4.66668C4.13624 1.33335 3.62754 1.54406 3.25246 1.91914C2.87739 2.29421 2.66668 2.80292 2.66668 3.33335V12.6667C2.66668 13.1971 2.87739 13.7058 3.25246 14.0809C3.62754 14.456 4.13624 14.6667 4.66668 14.6667H11.3333C11.8638 14.6667 12.3725 14.456 12.7476 14.0809C13.1226 13.7058 13.3333 13.1971 13.3333 12.6667V6.99002Z"
5
+ fill="currentColor" />
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_1017_474">
9
+ <rect width="16" height="16" fill="currentColor" />
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="12" height="11" viewBox="0 0 12 11" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3.13141 7.17795C2.95989 7.04242 2.74491 6.96777 2.5261 6.96777C2.22872 6.96777 1.95179 7.0999 1.76631 7.33035C1.60413 7.53207 1.5307 7.78445 1.55964 8.04092C1.58862 8.29795 1.71684 8.52817 1.92063 8.68925C2.09216 8.82481 2.30706 8.89946 2.52584 8.89946C2.82344 8.89946 3.1004 8.76707 3.28573 8.5364C3.44777 8.33501 3.52112 8.08293 3.49229 7.82657C3.46338 7.56955 3.33524 7.33917 3.13141 7.17795ZM2.94043 8.25881C2.83957 8.38441 2.68843 8.45648 2.52584 8.45648C2.40463 8.45648 2.29033 8.41679 2.19538 8.34173C2.08496 8.25446 2.01555 8.13001 1.99986 7.99127C1.98428 7.85308 2.02393 7.71692 2.11146 7.60809C2.21236 7.48271 2.36351 7.4108 2.5261 7.4108C2.64741 7.4108 2.76175 7.45048 2.85666 7.5255C2.96705 7.61278 3.03642 7.7373 3.05204 7.87612C3.06758 8.01419 3.028 8.15005 2.94043 8.25881Z" fill="currentColor"/>
3
+ <path d="M7.02684 4.9091C7.17296 4.9091 7.31425 4.87709 7.44712 4.81378C7.682 4.7014 7.85843 4.50481 7.94382 4.26018C8.02877 4.01711 8.01349 3.75554 7.90089 3.52388C7.73981 3.19183 7.3958 2.97726 7.02451 2.97726C6.8781 2.97726 6.73651 3.00938 6.60368 3.07277C6.36888 3.18478 6.19237 3.38123 6.10683 3.62592C6.02173 3.86918 6.03698 4.13078 6.14977 4.36256C6.31136 4.69457 6.65562 4.9091 7.02684 4.9091ZM6.52497 3.77216C6.57127 3.6398 6.66696 3.53341 6.7944 3.4726C6.8672 3.4379 6.94459 3.42029 7.02448 3.42029C7.2272 3.42029 7.41474 3.53684 7.50231 3.71741C7.56305 3.84234 7.57128 3.98318 7.52557 4.1141C7.47931 4.24652 7.38351 4.35307 7.25622 4.41399C7.18367 4.44858 7.10647 4.46608 7.0268 4.46608C6.8239 4.46608 6.63598 4.34934 6.54804 4.1687C6.48739 4.04395 6.47919 3.90314 6.52497 3.77216Z" fill="currentColor"/>
4
+ <path d="M4.61602 3.34364C4.68727 3.35974 4.76018 3.3679 4.83273 3.3679C5.28874 3.3679 5.67835 3.05948 5.78024 2.61746C5.8375 2.36682 5.79346 2.10879 5.65634 1.89082C5.51808 1.67116 5.302 1.51846 5.04807 1.46095C4.97653 1.4447 4.90332 1.43643 4.83044 1.43643C4.37472 1.43643 3.98552 1.74518 3.88396 2.18713C3.82622 2.43759 3.86997 2.69565 4.00712 2.91376C4.14549 3.13372 4.36179 3.28642 4.61602 3.34364ZM4.31572 2.28652C4.37077 2.04688 4.58246 1.87949 4.83044 1.87949C4.87027 1.87949 4.91048 1.88403 4.95002 1.893C5.08854 1.92438 5.2062 2.00741 5.28136 2.12681C5.35542 2.24447 5.3792 2.38365 5.34841 2.51833C5.2941 2.75391 5.0772 2.92488 4.83269 2.92488C4.79297 2.92488 4.75291 2.92037 4.71348 2.91147C4.57493 2.88028 4.45727 2.79732 4.38214 2.67793C4.30823 2.56034 4.28463 2.42138 4.31572 2.28652Z" fill="currentColor"/>
5
+ <path d="M2.85595 3.89638C3.05952 3.73508 3.18752 3.50467 3.21646 3.24761C3.2453 2.99132 3.17209 2.73924 3.00998 2.53748C2.8242 2.30714 2.54706 2.17505 2.24968 2.17505C2.03108 2.17505 1.81633 2.24948 1.64477 2.38478C1.44116 2.5456 1.31309 2.77564 1.28404 3.03252C1.25502 3.28914 1.32841 3.54166 1.49082 3.74375C1.67644 3.97435 1.95363 4.10663 2.25134 4.10663C2.47012 4.10659 2.68487 4.03194 2.85595 3.89638ZM1.83608 3.46602C1.74836 3.35688 1.70867 3.22058 1.72433 3.08221C1.73998 2.94366 1.80931 2.81939 1.91933 2.73244C2.01425 2.65757 2.12851 2.618 2.24972 2.618C2.41245 2.618 2.56393 2.68999 2.6649 2.81518C2.75221 2.92394 2.79179 3.05991 2.77625 3.19802C2.76063 3.33699 2.69122 3.4617 2.58087 3.54912C2.4864 3.62395 2.37243 3.66353 2.25138 3.66353C2.08845 3.66357 1.93709 3.5915 1.83608 3.46602Z" fill="currentColor"/>
6
+ <path d="M11.9153 1.72867C11.877 1.69006 11.8087 1.64402 11.7009 1.64402C11.5745 1.64402 11.2388 1.64402 9.20006 3.37889C9.15908 3.41374 9.11773 3.44908 9.07623 3.48467C8.71196 2.53442 8.07194 1.68725 7.24722 1.07448C6.30159 0.37188 5.17557 0.000295348 3.991 0C3.99063 0 3.99038 0 3.99008 0C3.19065 0 2.21888 0.279326 1.45389 0.729104C0.516158 1.28037 -0.000184543 2.01763 4.94768e-08 2.805C0.000295398 3.75557 0.536426 4.15319 0.967228 4.47264C1.31851 4.73318 1.59595 4.93892 1.5961 5.38985C1.59621 5.84073 1.31891 6.04629 0.967819 6.30657C0.537165 6.62584 0.00114452 7.02323 0.00143987 7.97392C0.00166138 8.76117 0.518336 9.49862 1.45625 10.0504C2.22179 10.5007 3.19408 10.7806 3.99366 10.7808C3.99421 10.7808 3.99469 10.7808 3.99521 10.7808C5.44629 10.7808 6.8104 10.2207 7.83636 9.20368C8.84926 8.1996 9.4126 6.86873 9.4274 5.4505C9.77134 5.05913 10.1045 4.67012 10.4087 4.30356C10.9291 3.67646 11.3293 3.15901 11.5981 2.76564C11.9542 2.24461 12.1101 1.92504 11.9153 1.72867ZM7.52451 8.88906C6.58202 9.82339 5.32878 10.3378 3.99525 10.3378C3.99484 10.3378 3.99425 10.3378 3.99385 10.3378C2.56484 10.3374 0.444868 9.34459 0.444462 7.97377C0.444241 7.24622 0.826716 6.96265 1.23168 6.66243C1.6102 6.38177 2.03923 6.06368 2.03908 5.3897C2.03886 4.71582 1.60972 4.39755 1.23109 4.11678C0.825941 3.8163 0.443244 3.53251 0.443022 2.80488C0.442838 1.96311 1.21695 1.3823 1.67843 1.11099C2.36873 0.705144 3.276 0.442985 3.99008 0.442985C3.99034 0.442985 3.99063 0.442985 3.99086 0.442985C5.07962 0.443281 6.1143 0.784629 6.98303 1.43004C7.78423 2.02535 8.39583 2.86104 8.71798 3.79463C7.75717 4.63357 6.71673 5.60084 5.94189 6.37819C4.65495 6.54477 4.47962 7.40246 4.35144 8.03255C4.24231 8.56905 4.17146 8.82844 3.75735 8.86166C3.6553 8.86986 3.5722 8.94687 3.55629 9.04799C3.54034 9.14907 3.59575 9.24794 3.69034 9.28711C3.71696 9.29811 4.35033 9.55691 5.09033 9.55695C5.09044 9.55695 5.09051 9.55695 5.09058 9.55695C5.60626 9.55695 6.04862 9.43194 6.40533 9.18544C6.84488 8.88167 7.14292 8.40007 7.2927 7.75422C7.79896 7.24201 8.37744 6.62436 8.94946 5.98815C8.8178 7.08352 8.3235 8.09701 7.52451 8.88906ZM6.84765 7.71228C6.61292 8.64248 6.0223 9.114 5.09055 9.11397C5.09055 9.11397 5.0904 9.11397 5.09033 9.11397C4.84463 9.11397 4.60935 9.08044 4.41154 9.03865C4.64782 8.79768 4.72162 8.43507 4.78553 8.12093C4.90725 7.52255 5.02236 6.95626 5.96408 6.82173L6.84765 7.71228ZM9.90657 4.21388C9.02846 5.26004 7.96558 6.43486 7.09061 7.3281L6.95515 7.19158L6.35748 6.58918C7.15079 5.79949 8.16848 4.85789 9.11799 4.03383C9.22867 3.93777 9.33865 3.84292 9.44704 3.75048C10.549 2.81072 11.1264 2.40173 11.421 2.22375C11.2451 2.5201 10.8399 3.10197 9.90657 4.21388Z" fill="currentColor"/>
7
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="15" viewBox="0 0 16 15" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M12.7145 0.400147H2.8385C2.43037 0.399936 2.03133 0.520731 1.69184 0.747262C1.35234 0.973792 1.08763 1.29589 0.931152 1.67284C0.774679 2.04979 0.733473 2.46466 0.812743 2.86503C0.892012 3.26539 1.0882 3.63326 1.3765 3.92215L5.6195 8.16515V13.1001C5.62058 13.3566 5.69752 13.6071 5.84062 13.82C5.98373 14.0328 6.18661 14.1986 6.42373 14.2964C6.66085 14.3943 6.9216 14.4197 7.17317 14.3697C7.42475 14.3196 7.65589 14.1963 7.8375 14.0151L9.4565 12.4001C9.60732 12.2508 9.7269 12.0728 9.80828 11.8768C9.88965 11.6807 9.9312 11.4704 9.9305 11.2581V8.15815L14.1765 3.91615C14.3675 3.72539 14.5189 3.4987 14.6219 3.24914C14.7249 2.99959 14.7774 2.73211 14.7765 2.46215C14.7754 1.91559 14.5579 1.39173 14.1714 1.00526C13.7849 0.618789 13.2611 0.401204 12.7145 0.400147ZM13.4095 3.15715L9.1715 7.40015C9.07035 7.50015 8.99014 7.61931 8.93554 7.75065C8.88094 7.882 8.85305 8.02291 8.8535 8.16515V11.2651C8.85142 11.4076 8.79572 11.544 8.6975 11.6471L7.0815 13.2641C7.04817 13.2903 7.00843 13.307 6.96643 13.3126C6.92444 13.3182 6.88171 13.3124 6.8427 13.2959C6.8037 13.2793 6.76984 13.2526 6.74466 13.2186C6.71947 13.1845 6.70388 13.1443 6.6995 13.1021V8.16515C6.69983 8.02382 6.67186 7.88385 6.61724 7.75349C6.56263 7.62314 6.48247 7.50504 6.3815 7.40615L2.1445 3.15715C2.00588 3.01997 1.91124 2.84462 1.87265 2.65346C1.83406 2.46229 1.85326 2.26396 1.92782 2.08375C2.00237 1.90354 2.12889 1.7496 2.29126 1.64157C2.45362 1.53354 2.64448 1.4763 2.8395 1.47715H12.7145C12.9095 1.4763 13.1004 1.53354 13.2627 1.64157C13.4251 1.7496 13.5516 1.90354 13.6262 2.08375C13.7007 2.26396 13.7199 2.46229 13.6814 2.65346C13.6428 2.84462 13.5481 3.01997 13.4095 3.15715Z"
4
+ fill="currentColor" stroke="currentColor" stroke-width="0.5" />
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="22" height="24" viewBox="0 0 22 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.30815 2.44586C8.00129 2.63411 7.75562 2.75272 7.509 2.87602C6.58748 3.36737 5.7272 3.79754 4.80568 4.28795C4.74167 4.32431 4.68966 4.37863 4.6562 4.44421C4.62274 4.5098 4.60923 4.58376 4.61736 4.65693V23.2755C4.61736 23.5212 4.55624 23.7057 4.31057 23.7669C3.85464 23.9552 3.36009 24.0312 2.86866 23.9884C2.37722 23.9457 1.90328 23.7854 1.48672 23.5212C1.18046 23.3059 0.919692 23.0323 0.7194 22.716C0.519108 22.3997 0.383245 22.047 0.319539 21.6782C0.16509 20.682 0.102006 19.6737 0.131213 18.666C0.0700298 13.7497 0.00884184 8.77315 0.00884184 3.85683C-0.0391441 3.07511 0.108741 2.29379 0.439038 1.58366C0.717224 0.990161 1.19816 0.515478 1.79523 0.245067C2.39231 -0.0253429 3.06627 -0.0737303 3.69584 0.108649C4.56928 0.371444 5.39798 0.764987 6.15361 1.27586C6.82945 1.64484 7.50528 2.01287 8.11994 2.38186C8.18583 2.32255 8.24697 2.38373 8.30815 2.44586Z" fill="white"/>
3
+ <path d="M8.42587 21.3723V16.0258C8.42442 15.9536 8.44083 15.8821 8.47367 15.8177C8.50651 15.7533 8.55473 15.6981 8.61408 15.6569C10.7037 14.4887 12.7934 13.3215 14.8209 12.1543C15.3734 11.8465 15.9269 11.5397 16.5406 11.1707C16.1854 10.9425 15.8159 10.7372 15.4346 10.556C14.5131 10.0026 13.5917 9.51123 12.6701 8.95587C12.6247 8.92503 12.5711 8.90853 12.5162 8.90853C12.4613 8.90853 12.4077 8.92503 12.3623 8.95587C11.1951 9.6929 10.0891 10.3678 8.92098 11.1067C8.8598 11.1067 8.85982 11.1679 8.79769 11.1679V7.2352C8.79594 7.15413 8.81183 7.07365 8.84434 6.99937C8.87686 6.92508 8.92516 6.85876 8.9859 6.80504C10.0307 6.06801 11.0746 5.39311 12.0583 4.6542C12.1149 4.62396 12.1781 4.60815 12.2422 4.60815C12.3064 4.60815 12.3697 4.62396 12.4263 4.6542C13.8382 5.45335 15.3141 6.31368 16.7279 7.11188C17.7106 7.66442 18.6943 8.21789 19.7401 8.77042C20.488 9.15981 21.1072 9.75743 21.5228 10.4911C21.7846 10.9685 21.8898 11.5161 21.8236 12.0566C21.7574 12.5971 21.5232 13.1031 21.1539 13.5032C20.6682 14.0556 20.0849 14.5138 19.4332 14.8549C18.0213 15.654 16.6677 16.5144 15.2549 17.3126C13.473 18.3574 11.7524 19.3401 9.97051 20.3849C9.4095 20.7577 8.91722 21.0607 8.42587 21.3723Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg width="238" height="48" viewBox="0 0 238 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M61.4537 17.8485V22.8928H71.6263V27.9317H61.4537V35.7966H54.8828V12.8096H72.9844V17.8485H61.4537Z" fill="currentColor"/>
3
+ <path d="M76.4541 12.8095H83.025V35.6658H76.4541V12.8095Z" fill="currentColor"/>
4
+ <path d="M97.9099 29.6458H94.3082V35.6685H87.7373V12.8095H98.2755C104.599 12.8095 108.566 16.0035 108.566 21.2876C108.631 22.7986 108.242 24.2947 107.447 25.5858C106.653 26.877 105.489 27.905 104.104 28.5394L109.053 35.6658H102.119L97.9099 29.6458ZM98.0336 17.8484H94.4319V24.4843H98.0281C100.755 24.4843 102.119 23.2552 102.119 21.165C101.995 19.2001 100.755 17.8484 98.0281 17.8484H98.0336Z" fill="currentColor"/>
5
+ <path d="M131.006 30.6296V35.6685H112.533V12.8095H130.635V17.8484H118.98V21.6637H129.271V26.4573H118.98V30.6351L131.006 30.6296Z" fill="currentColor"/>
6
+ <path d="M141.421 17.8484V22.8928H151.593V27.9317H141.421V35.7966H134.85V12.8095H152.951V17.8484H141.421Z" fill="currentColor"/>
7
+ <path d="M156.298 12.8095H162.869V30.507H173.894V35.6685H156.413V12.8095H156.298Z" fill="currentColor"/>
8
+ <path d="M176.752 12.8095H183.323V35.6658H176.752V12.8095Z" fill="currentColor"/>
9
+ <path d="M210.104 12.8095V35.6658H204.773L194.601 23.5005V35.6658H188.159V12.8095H193.49L203.663 24.9748V12.8095H210.104Z" fill="currentColor"/>
10
+ <path d="M223.866 27.4329L221.391 30.0137V35.7884H214.938V12.8095H221.386V22.2714L230.313 12.8095H237.502L228.08 22.8928L238 35.6739H230.436L223.866 27.4329Z" fill="currentColor"/>
11
+ <path d="M16.7502 4.88842C16.1316 5.25632 15.6341 5.50162 15.1392 5.74961C13.2807 6.7334 11.5431 7.59181 9.68453 8.5756C9.5558 8.64839 9.45159 8.75748 9.3855 8.88897C9.31942 9.02047 9.29442 9.16842 9.31335 9.31412V46.5486C9.31335 47.0391 9.18969 47.4097 8.69481 47.5323C7.77434 47.9098 6.7758 48.0623 5.78338 47.9769C4.79096 47.8916 3.83353 47.5709 2.99243 47.0418C2.37431 46.6111 1.84823 46.0636 1.44391 45.4309C1.0396 44.7982 0.765171 44.0926 0.636432 43.3546C0.327663 41.3625 0.203398 39.3465 0.265245 37.3319C0.141525 27.4994 0.0178993 17.547 0.0178993 7.7145C-0.0791099 6.15032 0.219297 4.58688 0.886463 3.16613C1.44789 1.9794 2.41841 1.03032 3.62304 0.489747C4.82768 -0.050828 6.18734 -0.147392 7.45741 0.217461C9.21628 0.744425 10.8848 1.5318 12.4063 2.55294C13.781 3.29147 15.1337 4.0273 16.3736 4.76583C16.5028 4.64047 16.6265 4.76306 16.7502 4.88842Z" fill="currentColor"/>
12
+ <path d="M16.9984 42.736V32.0423C16.9942 31.8984 17.026 31.7558 17.0907 31.6269C17.1555 31.4981 17.2512 31.3871 17.3696 31.3038C21.5843 28.9683 25.7989 26.6328 29.8926 24.3001C31.0089 23.6869 32.1253 23.071 33.3625 22.3324C32.6455 21.8761 31.8998 21.4656 31.13 21.1034C29.2715 19.997 27.41 19.0132 25.5515 17.9095C25.46 17.8474 25.3516 17.8141 25.2407 17.8141C25.1298 17.8141 25.0218 17.8474 24.9303 17.9095C22.5741 19.3838 20.3443 20.7354 17.9881 22.2098C17.8644 22.2098 17.8645 22.3324 17.7408 22.3324V14.4676C17.7361 14.3059 17.7667 14.1452 17.8307 13.9965C17.8948 13.8478 17.9909 13.7147 18.112 13.6064C20.2207 12.132 22.3267 10.7803 24.3117 9.306C24.4263 9.24517 24.5543 9.21335 24.6843 9.21335C24.8142 9.21335 24.9422 9.24517 25.0568 9.306C27.9079 10.903 30.8853 12.6253 33.7364 14.2113C35.7187 15.3177 37.7036 16.4242 39.8096 17.5279C41.3189 18.3064 42.568 19.502 43.4057 20.9698C43.934 21.9245 44.1462 23.0195 44.0125 24.1002C43.8788 25.1809 43.406 26.1927 42.6607 26.9925C41.681 28.0979 40.5036 29.0144 39.1881 29.6959C36.337 31.2929 33.6099 33.0152 30.7588 34.6013C27.1627 36.6915 23.6929 38.6563 20.0968 40.7466C18.9806 41.5069 17.9909 42.1255 16.9984 42.736Z" fill="currentColor"/>
13
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 1.6C0 0.716352 0.691648 0 1.54483 0H11.8952C12.7484 0 13.44 0.716352 13.44 1.6V4C13.44 4.88365 12.7484 5.6 11.8952 5.6H1.54483C0.691648 5.6 0 4.88365 0 4V1.6Z" fill="currentColor"/>
3
+ <path d="M5.43994 10.0104C5.43994 9.60702 5.71215 9.28 6.04794 9.28H7.87194C8.20773 9.28 8.47994 9.60702 8.47994 10.0104V15.2696C8.47994 15.673 8.20773 16 7.87194 16H6.04794C5.71215 16 5.43994 15.673 5.43994 15.2696V10.0104Z" fill="currentColor"/>
4
+ <path d="M14.0801 3.44H14.5601C14.6484 3.44 14.7201 3.51164 14.7201 3.6V6.56C14.7201 6.64837 14.6484 6.72 14.5601 6.72H7.80011C7.00481 6.72 6.36011 7.36471 6.36011 8.16V8.64H7.64011V8.16C7.64011 8.07164 7.71174 8 7.80011 8H14.5601C15.3555 8 16.0001 7.3553 16.0001 6.56V3.6C16.0001 2.80471 15.3555 2.16 14.5601 2.16H14.0801V3.44Z" fill="currentColor"/>
5
+ </svg>
@@ -0,0 +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="M4.81324e-07 8.49429L11.5311 8.49429L7.67581 12.3559L9.33213 14L16 7.33333L9.33213 0.666667L7.68783 2.31076L11.5311 6.16757L6.84733e-07 6.16757L4.81324e-07 8.49429Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +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="M14.3023 1.71582C14.0651 1.7172 13.838 1.81245 13.6708 1.98077C13.6708 1.98077 9.91509 5.72922 7.63431 8.00848L6.02693 6.40109C5.67669 6.05175 5.1098 6.05175 4.75956 6.40109C4.41022 6.75132 4.41022 7.31822 4.75956 7.66845L7.00284 9.91173C7.35309 10.261 7.91995 10.261 8.2702 9.91173C10.3923 7.79041 14.9382 3.24814 14.9382 3.24814C15.2875 2.8979 15.2875 2.33101 14.9382 1.98077C14.7699 1.81138 14.5411 1.71603 14.3023 1.71582Z" fill="currentColor"/>
3
+ <path d="M8.00172 1C4.14578 1.00003 1 4.14236 1 7.99832C1 11.8542 4.14578 15 8.00172 15C11.166 15 13.944 12.8676 14.763 9.8111C14.9214 9.22021 15 8.61007 15 7.99832C15 7.51546 14.6089 7.12387 14.1261 7.12323C13.6432 7.12387 13.2521 7.51546 13.2521 7.99832C13.2521 8.45716 13.1897 8.91556 13.071 9.35875C12.4548 11.6582 10.3823 13.2521 8.00172 13.2522C5.09163 13.2521 2.74786 10.9084 2.74786 7.99832C2.74786 5.08823 5.09162 2.74788 8.00172 2.74788C8.46061 2.74791 8.91551 2.81042 9.35875 2.92902C9.82555 3.05418 10.3054 2.77725 10.4306 2.31044C10.4307 2.31004 10.4308 2.3096 10.4309 2.30919C10.5561 1.84238 10.2791 1.36252 9.81234 1.23736C9.81192 1.23726 9.81152 1.23712 9.8111 1.23702C9.22011 1.07869 8.61357 1.00003 8.00172 1Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M0 1.66683C0 0.930456 0.596955 0.333496 1.33333 0.333496H14.6667C15.403 0.333496 16 0.930456 16 1.66683C16 2.4032 15.403 3.00016 14.6667 3.00016H1.33333C0.596953 3.00016 0 2.4032 0 1.66683ZM0 7.00016C0 6.26379 0.596955 5.66683 1.33333 5.66683H9.33333C10.0697 5.66683 10.6667 6.26379 10.6667 7.00016C10.6667 7.73654 10.0697 8.3335 9.33333 8.3335H1.33333C0.596953 8.3335 0 7.73654 0 7.00016ZM1.33333 11.0002C0.596955 11.0002 0 11.5971 0 12.3335C0 13.0699 0.596953 13.6668 1.33333 13.6668H14.6667C15.403 13.6668 16 13.0699 16 12.3335C16 11.5971 15.403 11.0002 14.6667 11.0002H1.33333Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.024 6.97605L6.97599 11.0241C6.45599 10.5041 6.13599 9.79205 6.13599 9.00005C6.13599 7.41605 7.41599 6.13605 8.99999 6.13605C9.79199 6.13605 10.504 6.45605 11.024 6.97605Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M3.87988 13.608C3.07988 12.92 2.35188 12.072 1.71188 11.072C0.991875 9.94404 0.991875 8.04804 1.71188 6.92003C2.65588 5.44003 3.80788 4.28003 5.09588 3.50403" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M13.656 4.01597C12.256 2.95997 10.656 2.38397 9 2.38397" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M6.13599 15.0241C7.04799 15.4081 8.01599 15.6161 8.99999 15.6161C11.824 15.6161 14.456 13.9521 16.288 11.0721C17.008 9.94409 17.008 8.04808 16.288 6.92008C16.024 6.50408 15.736 6.11208 15.44 5.74408" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M11.8079 9.56C11.5999 10.688 10.6799 11.608 9.55188 11.816" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M6.97601 11.024L1 17.0001" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M17.0001 1L11.024 6.97601" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
9
+ </svg>
@@ -0,0 +1,19 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <mask id="path-1-inside-1_2947_13205" fill="currentColor">
3
+ <path d="M7.63624 1.5C9.29576 1.5 9.69963 1.54828 10.3071 1.6209L10.3555 1.6267C10.5059 1.64474 10.6742 1.66492 10.8747 1.68562L10.8997 1.68812C11.0622 1.70542 11.2223 1.74042 11.3772 1.7925L11.4084 1.80312L11.4322 1.81187H11.4359L11.44 1.81344C11.7875 1.94044 12.098 2.15188 12.3435 2.42873C12.589 2.70558 12.7617 3.03914 12.8462 3.39937L12.8756 3.68062C12.9509 4.40688 13.0109 5.50219 13.0419 6.77594C13.0464 6.9684 13.1261 7.15143 13.264 7.28579C13.4018 7.42016 13.5868 7.49515 13.7794 7.49469C13.8825 7.49428 13.9846 7.47349 14.0796 7.43352C14.1747 7.39355 14.261 7.33518 14.3334 7.26176C14.4059 7.18835 14.4631 7.10134 14.5018 7.00574C14.5406 6.91014 14.56 6.80783 14.559 6.70469C14.5444 4.76719 14.3859 3.52625 14.3859 3.52625C14.314 2.83126 14.0484 2.17042 13.6194 1.61891C13.1904 1.06739 12.6153 0.64735 11.9594 0.406563C11.9247 0.39375 11.89 0.38125 11.855 0.369063C11.5957 0.28191 11.3276 0.223538 11.0556 0.195L11.0297 0.192187C10.8197 0.170636 10.6453 0.14994 10.4827 0.130637C9.84117 0.0544934 9.38206 0 7.63624 0C5.79355 0 5.25185 0.0607585 4.50652 0.144357C4.36705 0.16 4.22045 0.176443 4.05686 0.193437L4.03092 0.19625C3.74536 0.226245 3.46422 0.289163 3.19311 0.38375V0.369375C2.51701 0.599223 1.92102 1.01815 1.4758 1.57647C1.03058 2.13479 0.754828 2.80908 0.681235 3.51938C0.551235 4.76937 0.484985 5.97469 0.484985 7.90812C0.484985 9.84156 0.551235 11.0472 0.681235 12.2972C0.77005 13.1502 1.14949 13.9467 1.75592 14.5531C2.36234 15.1596 3.15886 15.539 4.01186 15.6278L4.0378 15.6303C4.24679 15.652 4.42044 15.6728 4.5824 15.6922C5.12105 15.7567 5.53034 15.8058 6.67999 15.8197C6.7785 15.8209 6.87629 15.8027 6.96777 15.7661C7.05924 15.7294 7.1426 15.6752 7.21309 15.6063C7.28359 15.5375 7.33982 15.4554 7.37859 15.3649C7.41736 15.2743 7.43791 15.177 7.43905 15.0784C7.44123 14.8808 7.36531 14.6903 7.22779 14.5483C7.09028 14.4064 6.90228 14.3244 6.70467 14.3203C5.73124 14.3003 5.14217 14.2481 4.75655 14.2019L4.753 14.2014C4.59232 14.1822 4.41118 14.1605 4.19217 14.1378L4.16717 14.135C3.65643 14.0819 3.17949 13.8548 2.81639 13.4917C2.4533 13.1286 2.22617 12.6517 2.17311 12.1409C2.0603 11.0569 1.98561 9.92219 1.98561 7.90719C1.98561 5.89219 2.06092 4.75781 2.17311 3.67375C2.21249 3.29234 2.34953 2.92753 2.571 2.61453C2.79248 2.30153 3.09091 2.05091 3.43749 1.88687L3.68499 1.80062C3.8468 1.74414 4.01457 1.70639 4.18499 1.68812L4.21186 1.68562C4.3708 1.66885 4.51117 1.65318 4.64628 1.6381L4.67124 1.63531C5.39592 1.55375 5.87499 1.5 7.63624 1.5Z"/>
4
+ <path d="M11.3506 12.6722H12.744C12.9243 12.6722 13.0972 12.6006 13.2247 12.4731C13.3521 12.3456 13.4237 12.1728 13.4237 11.9925C13.4237 11.8122 13.3521 11.6394 13.2247 11.5119C13.0972 11.3844 12.9243 11.3128 12.744 11.3128H12.0303V10.3206C12.0303 10.1404 11.9587 9.96748 11.8312 9.84001C11.7038 9.71255 11.5309 9.64094 11.3506 9.64094C11.1703 9.64094 10.9975 9.71255 10.87 9.84001C10.7425 9.96748 10.6709 10.1404 10.6709 10.3206V11.9925C10.6711 12.1727 10.7428 12.3455 10.8702 12.4729C10.9976 12.6004 11.1704 12.672 11.3506 12.6722Z"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.4172 16C9.15748 16 7.31936 14.1619 7.31936 11.9025C7.32052 10.816 7.75262 9.77443 8.52086 9.00619C9.2891 8.23795 10.3307 7.80585 11.4172 7.80469C13.6765 7.80469 15.515 9.64281 15.515 11.9025C15.515 14.1622 13.6765 16 11.4172 16ZM11.4172 9.30469C10.9034 9.30469 10.4011 9.45705 9.9739 9.7425C9.5467 10.0279 9.21373 10.4337 9.01711 10.9084C8.82048 11.383 8.76904 11.9054 8.86928 12.4093C8.96951 12.9132 9.21693 13.3761 9.58024 13.7394C9.94355 14.1027 10.4064 14.3502 10.9104 14.4504C11.4143 14.5506 11.9366 14.4992 12.4113 14.3026C12.886 14.1059 13.2917 13.773 13.5772 13.3458C13.8626 12.9186 14.015 12.4163 14.015 11.9025C14.0142 11.2137 13.7403 10.5534 13.2533 10.0664C12.7663 9.57937 12.1059 9.30543 11.4172 9.30469Z"/>
6
+ <path d="M10.934 4.16094H4.11342C3.9186 4.16493 3.7331 4.24512 3.59674 4.38432C3.46037 4.52351 3.38399 4.71061 3.38399 4.90547C3.38399 5.10033 3.46037 5.28743 3.59674 5.42662C3.7331 5.56581 3.9186 5.64601 4.11342 5.65H10.934C11.1289 5.64601 11.3144 5.56581 11.4507 5.42662C11.5871 5.28743 11.6635 5.10033 11.6635 4.90547C11.6635 4.71061 11.5871 4.52351 11.4507 4.38432C11.3144 4.24512 11.1289 4.16493 10.934 4.16094Z"/>
7
+ <path d="M4.11342 8.835C3.916 8.835 3.72667 8.75658 3.58707 8.61698C3.44747 8.47738 3.36905 8.28805 3.36905 8.09063C3.36905 7.89321 3.44747 7.70387 3.58707 7.56427C3.72667 7.42468 3.916 7.34625 4.11342 7.34625H8.0028C8.20022 7.34625 8.38955 7.42468 8.52915 7.56427C8.66875 7.70387 8.74717 7.89321 8.74717 8.09063C8.74717 8.28805 8.66875 8.47738 8.52915 8.61698C8.38955 8.75658 8.20022 8.835 8.0028 8.835H4.11342Z"/>
8
+ </mask>
9
+ <path d="M7.63624 1.5C9.29576 1.5 9.69963 1.54828 10.3071 1.6209L10.3555 1.6267C10.5059 1.64474 10.6742 1.66492 10.8747 1.68562L10.8997 1.68812C11.0622 1.70542 11.2223 1.74042 11.3772 1.7925L11.4084 1.80312L11.4322 1.81187H11.4359L11.44 1.81344C11.7875 1.94044 12.098 2.15188 12.3435 2.42873C12.589 2.70558 12.7617 3.03914 12.8462 3.39937L12.8756 3.68062C12.9509 4.40688 13.0109 5.50219 13.0419 6.77594C13.0464 6.9684 13.1261 7.15143 13.264 7.28579C13.4018 7.42016 13.5868 7.49515 13.7794 7.49469C13.8825 7.49428 13.9846 7.47349 14.0796 7.43352C14.1747 7.39355 14.261 7.33518 14.3334 7.26176C14.4059 7.18835 14.4631 7.10134 14.5018 7.00574C14.5406 6.91014 14.56 6.80783 14.559 6.70469C14.5444 4.76719 14.3859 3.52625 14.3859 3.52625C14.314 2.83126 14.0484 2.17042 13.6194 1.61891C13.1904 1.06739 12.6153 0.64735 11.9594 0.406563C11.9247 0.39375 11.89 0.38125 11.855 0.369063C11.5957 0.28191 11.3276 0.223538 11.0556 0.195L11.0297 0.192187C10.8197 0.170636 10.6453 0.14994 10.4827 0.130637C9.84117 0.0544934 9.38206 0 7.63624 0C5.79355 0 5.25185 0.0607585 4.50652 0.144357C4.36705 0.16 4.22045 0.176443 4.05686 0.193437L4.03092 0.19625C3.74536 0.226245 3.46422 0.289163 3.19311 0.38375V0.369375C2.51701 0.599223 1.92102 1.01815 1.4758 1.57647C1.03058 2.13479 0.754828 2.80908 0.681235 3.51938C0.551235 4.76937 0.484985 5.97469 0.484985 7.90812C0.484985 9.84156 0.551235 11.0472 0.681235 12.2972C0.77005 13.1502 1.14949 13.9467 1.75592 14.5531C2.36234 15.1596 3.15886 15.539 4.01186 15.6278L4.0378 15.6303C4.24679 15.652 4.42044 15.6728 4.5824 15.6922C5.12105 15.7567 5.53034 15.8058 6.67999 15.8197C6.7785 15.8209 6.87629 15.8027 6.96777 15.7661C7.05924 15.7294 7.1426 15.6752 7.21309 15.6063C7.28359 15.5375 7.33982 15.4554 7.37859 15.3649C7.41736 15.2743 7.43791 15.177 7.43905 15.0784C7.44123 14.8808 7.36531 14.6903 7.22779 14.5483C7.09028 14.4064 6.90228 14.3244 6.70467 14.3203C5.73124 14.3003 5.14217 14.2481 4.75655 14.2019L4.753 14.2014C4.59232 14.1822 4.41118 14.1605 4.19217 14.1378L4.16717 14.135C3.65643 14.0819 3.17949 13.8548 2.81639 13.4917C2.4533 13.1286 2.22617 12.6517 2.17311 12.1409C2.0603 11.0569 1.98561 9.92219 1.98561 7.90719C1.98561 5.89219 2.06092 4.75781 2.17311 3.67375C2.21249 3.29234 2.34953 2.92753 2.571 2.61453C2.79248 2.30153 3.09091 2.05091 3.43749 1.88687L3.68499 1.80062C3.8468 1.74414 4.01457 1.70639 4.18499 1.68812L4.21186 1.68562C4.3708 1.66885 4.51117 1.65318 4.64628 1.6381L4.67124 1.63531C5.39592 1.55375 5.87499 1.5 7.63624 1.5Z" fill="currentColor"/>
10
+ <path d="M11.3506 12.6722H12.744C12.9243 12.6722 13.0972 12.6006 13.2247 12.4731C13.3521 12.3456 13.4237 12.1728 13.4237 11.9925C13.4237 11.8122 13.3521 11.6394 13.2247 11.5119C13.0972 11.3844 12.9243 11.3128 12.744 11.3128H12.0303V10.3206C12.0303 10.1404 11.9587 9.96748 11.8312 9.84001C11.7038 9.71255 11.5309 9.64094 11.3506 9.64094C11.1703 9.64094 10.9975 9.71255 10.87 9.84001C10.7425 9.96748 10.6709 10.1404 10.6709 10.3206V11.9925C10.6711 12.1727 10.7428 12.3455 10.8702 12.4729C10.9976 12.6004 11.1704 12.672 11.3506 12.6722Z" fill="currentColor"/>
11
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.4172 16C9.15748 16 7.31936 14.1619 7.31936 11.9025C7.32052 10.816 7.75262 9.77443 8.52086 9.00619C9.2891 8.23795 10.3307 7.80585 11.4172 7.80469C13.6765 7.80469 15.515 9.64281 15.515 11.9025C15.515 14.1622 13.6765 16 11.4172 16ZM11.4172 9.30469C10.9034 9.30469 10.4011 9.45705 9.9739 9.7425C9.5467 10.0279 9.21373 10.4337 9.01711 10.9084C8.82048 11.383 8.76904 11.9054 8.86928 12.4093C8.96951 12.9132 9.21693 13.3761 9.58024 13.7394C9.94355 14.1027 10.4064 14.3502 10.9104 14.4504C11.4143 14.5506 11.9366 14.4992 12.4113 14.3026C12.886 14.1059 13.2917 13.773 13.5772 13.3458C13.8626 12.9186 14.015 12.4163 14.015 11.9025C14.0142 11.2137 13.7403 10.5534 13.2533 10.0664C12.7663 9.57937 12.1059 9.30543 11.4172 9.30469Z" fill="currentColor"/>
12
+ <path d="M10.934 4.16094H4.11342C3.9186 4.16493 3.7331 4.24512 3.59674 4.38432C3.46037 4.52351 3.38399 4.71061 3.38399 4.90547C3.38399 5.10033 3.46037 5.28743 3.59674 5.42662C3.7331 5.56581 3.9186 5.64601 4.11342 5.65H10.934C11.1289 5.64601 11.3144 5.56581 11.4507 5.42662C11.5871 5.28743 11.6635 5.10033 11.6635 4.90547C11.6635 4.71061 11.5871 4.52351 11.4507 4.38432C11.3144 4.24512 11.1289 4.16493 10.934 4.16094Z" fill="currentColor"/>
13
+ <path d="M4.11342 8.835C3.916 8.835 3.72667 8.75658 3.58707 8.61698C3.44747 8.47738 3.36905 8.28805 3.36905 8.09063C3.36905 7.89321 3.44747 7.70387 3.58707 7.56427C3.72667 7.42468 3.916 7.34625 4.11342 7.34625H8.0028C8.20022 7.34625 8.38955 7.42468 8.52915 7.56427C8.66875 7.70387 8.74717 7.89321 8.74717 8.09063C8.74717 8.28805 8.66875 8.47738 8.52915 8.61698C8.38955 8.75658 8.20022 8.835 8.0028 8.835H4.11342Z" fill="currentColor"/>
14
+ <path d="M7.63624 1.5C9.29576 1.5 9.69963 1.54828 10.3071 1.6209L10.3555 1.6267C10.5059 1.64474 10.6742 1.66492 10.8747 1.68562L10.8997 1.68812C11.0622 1.70542 11.2223 1.74042 11.3772 1.7925L11.4084 1.80312L11.4322 1.81187H11.4359L11.44 1.81344C11.7875 1.94044 12.098 2.15188 12.3435 2.42873C12.589 2.70558 12.7617 3.03914 12.8462 3.39937L12.8756 3.68062C12.9509 4.40688 13.0109 5.50219 13.0419 6.77594C13.0464 6.9684 13.1261 7.15143 13.264 7.28579C13.4018 7.42016 13.5868 7.49515 13.7794 7.49469C13.8825 7.49428 13.9846 7.47349 14.0796 7.43352C14.1747 7.39355 14.261 7.33518 14.3334 7.26176C14.4059 7.18835 14.4631 7.10134 14.5018 7.00574C14.5406 6.91014 14.56 6.80783 14.559 6.70469C14.5444 4.76719 14.3859 3.52625 14.3859 3.52625C14.314 2.83126 14.0484 2.17042 13.6194 1.61891C13.1904 1.06739 12.6153 0.64735 11.9594 0.406563C11.9247 0.39375 11.89 0.38125 11.855 0.369063C11.5957 0.28191 11.3276 0.223538 11.0556 0.195L11.0297 0.192187C10.8197 0.170636 10.6453 0.14994 10.4827 0.130637C9.84117 0.0544934 9.38206 0 7.63624 0C5.79355 0 5.25185 0.0607585 4.50652 0.144357C4.36705 0.16 4.22045 0.176443 4.05686 0.193437L4.03092 0.19625C3.74536 0.226245 3.46422 0.289163 3.19311 0.38375V0.369375C2.51701 0.599223 1.92102 1.01815 1.4758 1.57647C1.03058 2.13479 0.754828 2.80908 0.681235 3.51938C0.551235 4.76937 0.484985 5.97469 0.484985 7.90812C0.484985 9.84156 0.551235 11.0472 0.681235 12.2972C0.77005 13.1502 1.14949 13.9467 1.75592 14.5531C2.36234 15.1596 3.15886 15.539 4.01186 15.6278L4.0378 15.6303C4.24679 15.652 4.42044 15.6728 4.5824 15.6922C5.12105 15.7567 5.53034 15.8058 6.67999 15.8197C6.7785 15.8209 6.87629 15.8027 6.96777 15.7661C7.05924 15.7294 7.1426 15.6752 7.21309 15.6063C7.28359 15.5375 7.33982 15.4554 7.37859 15.3649C7.41736 15.2743 7.43791 15.177 7.43905 15.0784C7.44123 14.8808 7.36531 14.6903 7.22779 14.5483C7.09028 14.4064 6.90228 14.3244 6.70467 14.3203C5.73124 14.3003 5.14217 14.2481 4.75655 14.2019L4.753 14.2014C4.59232 14.1822 4.41118 14.1605 4.19217 14.1378L4.16717 14.135C3.65643 14.0819 3.17949 13.8548 2.81639 13.4917C2.4533 13.1286 2.22617 12.6517 2.17311 12.1409C2.0603 11.0569 1.98561 9.92219 1.98561 7.90719C1.98561 5.89219 2.06092 4.75781 2.17311 3.67375C2.21249 3.29234 2.34953 2.92753 2.571 2.61453C2.79248 2.30153 3.09091 2.05091 3.43749 1.88687L3.68499 1.80062C3.8468 1.74414 4.01457 1.70639 4.18499 1.68812L4.21186 1.68562C4.3708 1.66885 4.51117 1.65318 4.64628 1.6381L4.67124 1.63531C5.39592 1.55375 5.87499 1.5 7.63624 1.5Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
15
+ <path d="M11.3506 12.6722H12.744C12.9243 12.6722 13.0972 12.6006 13.2247 12.4731C13.3521 12.3456 13.4237 12.1728 13.4237 11.9925C13.4237 11.8122 13.3521 11.6394 13.2247 11.5119C13.0972 11.3844 12.9243 11.3128 12.744 11.3128H12.0303V10.3206C12.0303 10.1404 11.9587 9.96748 11.8312 9.84001C11.7038 9.71255 11.5309 9.64094 11.3506 9.64094C11.1703 9.64094 10.9975 9.71255 10.87 9.84001C10.7425 9.96748 10.6709 10.1404 10.6709 10.3206V11.9925C10.6711 12.1727 10.7428 12.3455 10.8702 12.4729C10.9976 12.6004 11.1704 12.672 11.3506 12.6722Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
16
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.4172 16C9.15748 16 7.31936 14.1619 7.31936 11.9025C7.32052 10.816 7.75262 9.77443 8.52086 9.00619C9.2891 8.23795 10.3307 7.80585 11.4172 7.80469C13.6765 7.80469 15.515 9.64281 15.515 11.9025C15.515 14.1622 13.6765 16 11.4172 16ZM11.4172 9.30469C10.9034 9.30469 10.4011 9.45705 9.9739 9.7425C9.5467 10.0279 9.21373 10.4337 9.01711 10.9084C8.82048 11.383 8.76904 11.9054 8.86928 12.4093C8.96951 12.9132 9.21693 13.3761 9.58024 13.7394C9.94355 14.1027 10.4064 14.3502 10.9104 14.4504C11.4143 14.5506 11.9366 14.4992 12.4113 14.3026C12.886 14.1059 13.2917 13.773 13.5772 13.3458C13.8626 12.9186 14.015 12.4163 14.015 11.9025C14.0142 11.2137 13.7403 10.5534 13.2533 10.0664C12.7663 9.57937 12.1059 9.30543 11.4172 9.30469Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
17
+ <path d="M10.934 4.16094H4.11342C3.9186 4.16493 3.7331 4.24512 3.59674 4.38432C3.46037 4.52351 3.38399 4.71061 3.38399 4.90547C3.38399 5.10033 3.46037 5.28743 3.59674 5.42662C3.7331 5.56581 3.9186 5.64601 4.11342 5.65H10.934C11.1289 5.64601 11.3144 5.56581 11.4507 5.42662C11.5871 5.28743 11.6635 5.10033 11.6635 4.90547C11.6635 4.71061 11.5871 4.52351 11.4507 4.38432C11.3144 4.24512 11.1289 4.16493 10.934 4.16094Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
18
+ <path d="M4.11342 8.835C3.916 8.835 3.72667 8.75658 3.58707 8.61698C3.44747 8.47738 3.36905 8.28805 3.36905 8.09063C3.36905 7.89321 3.44747 7.70387 3.58707 7.56427C3.72667 7.42468 3.916 7.34625 4.11342 7.34625H8.0028C8.20022 7.34625 8.38955 7.42468 8.52915 7.56427C8.66875 7.70387 8.74717 7.89321 8.74717 8.09063C8.74717 8.28805 8.66875 8.47738 8.52915 8.61698C8.38955 8.75658 8.20022 8.835 8.0028 8.835H4.11342Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
19
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="17" height="13" viewBox="0 0 17 13" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.59083 0.184937H1.22727C0.825606 0.184937 0.500015 0.510527 0.500015 0.912192V5.27575C0.500015 5.67742 0.825606 6.00301 1.22727 6.00301H5.59083C5.9925 6.00301 6.31809 5.67742 6.31809 5.27575V0.912192C6.31809 0.510527 5.9925 0.184937 5.59083 0.184937ZM4.86358 4.5485H1.95453V1.63945H4.86358V4.5485Z" fill="currentColor"/>
3
+ <path d="M15.7725 2.3667H8.49988C8.09822 2.3667 7.77263 2.69229 7.77263 3.09395C7.77263 3.49562 8.09822 3.82121 8.49988 3.82121H15.7725C16.1742 3.82121 16.4998 3.49562 16.4998 3.09395C16.4998 2.69232 16.1741 2.3667 15.7725 2.3667Z" fill="currentColor"/>
4
+ <path d="M15.7725 9.63934H8.49988C8.09822 9.63934 7.77263 9.96496 7.77263 10.3666C7.77263 10.7682 8.09822 11.0939 8.49988 11.0939H15.7725C16.1742 11.0939 16.4998 10.7682 16.4998 10.3666C16.4998 9.96496 16.1741 9.63934 15.7725 9.63934Z" fill="currentColor"/>
5
+ <path d="M5.08175 8.39496L2.66071 10.7869L1.75018 9.8415C1.47083 9.55271 1.01026 9.54505 0.721464 9.8244C0.432666 10.1037 0.425011 10.5643 0.704359 10.8531L2.12542 12.3302C2.26093 12.4684 2.446 12.547 2.6396 12.5484H2.64833C2.839 12.5478 3.02183 12.4723 3.15741 12.3382L6.09992 9.42913C6.40434 9.16714 6.43874 8.70792 6.17675 8.4035C5.91475 8.09908 5.45554 8.06468 5.15112 8.32667C5.12651 8.34787 5.10333 8.37068 5.08175 8.39496Z" fill="currentColor"/>
6
+ </svg>
@@ -0,0 +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_15_1182" 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.217769ZM20 14.1428C21.4202 14.1428 22.5715 12.9916 22.5715 11.5714C22.5715 10.1513 21.4202 8.99999 20 8.99999C18.5799 8.99999 17.4286 10.1513 17.4286 11.5714C17.4286 12.9916 18.5799 14.1428 20 14.1428ZM20 17.5714H18.2857C17.8311 17.5714 17.3951 17.752 17.0736 18.0735C16.7521 18.395 16.5715 18.831 16.5715 19.2857C16.5715 19.7404 16.7521 20.1764 17.0736 20.4979C17.3951 20.8194 17.8311 21 18.2857 21H20V29.2857C20 29.7404 20.1806 30.1764 20.5021 30.4979C20.8236 30.8194 21.2597 31 21.7143 31C22.169 31 22.605 30.8194 22.9265 30.4979C23.248 30.1764 23.4286 29.7404 23.4286 29.2857V21C23.4286 20.0907 23.0674 19.2186 22.4244 18.5756C21.7814 17.9326 20.9093 17.5714 20 17.5714Z"/>
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.217769ZM20 14.1428C21.4202 14.1428 22.5715 12.9916 22.5715 11.5714C22.5715 10.1513 21.4202 8.99999 20 8.99999C18.5799 8.99999 17.4286 10.1513 17.4286 11.5714C17.4286 12.9916 18.5799 14.1428 20 14.1428ZM20 17.5714H18.2857C17.8311 17.5714 17.3951 17.752 17.0736 18.0735C16.7521 18.395 16.5715 18.831 16.5715 19.2857C16.5715 19.7404 16.7521 20.1764 17.0736 20.4979C17.3951 20.8194 17.8311 21 18.2857 21H20V29.2857C20 29.7404 20.1806 30.1764 20.5021 30.4979C20.8236 30.8194 21.2597 31 21.7143 31C22.169 31 22.605 30.8194 22.9265 30.4979C23.248 30.1764 23.4286 29.7404 23.4286 29.2857V21C23.4286 20.0907 23.0674 19.2186 22.4244 18.5756C21.7814 17.9326 20.9093 17.5714 20 17.5714Z" fill="url(#paint0_linear_15_1182)"/>
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.1273ZM17.0736 18.0735L17.7807 18.7806L17.7807 18.7806L17.0736 18.0735ZM17.0736 20.4979L17.7807 19.7908L17.7807 19.7908L17.0736 20.4979ZM20 21H21V20H20V21ZM20.5021 30.4979L21.2092 29.7908L21.2092 29.7908L20.5021 30.4979ZM22.9265 30.4979L22.2194 29.7908L22.2194 29.7908L22.9265 30.4979ZM22.4244 18.5756L21.7173 19.2827H21.7173L22.4244 18.5756ZM18.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.17817ZM21.5715 11.5714C21.5715 12.4393 20.8679 13.1428 20 13.1428V15.1428C21.9725 15.1428 23.5715 13.5439 23.5715 11.5714H21.5715ZM20 9.99999C20.8679 9.99999 21.5715 10.7035 21.5715 11.5714H23.5715C23.5715 9.59898 21.9725 7.99999 20 7.99999V9.99999ZM18.4286 11.5714C18.4286 10.7035 19.1321 9.99999 20 9.99999V7.99999C18.0276 7.99999 16.4286 9.59898 16.4286 11.5714H18.4286ZM20 13.1428C19.1321 13.1428 18.4286 12.4393 18.4286 11.5714H16.4286C16.4286 13.5439 18.0276 15.1428 20 15.1428V13.1428ZM18.2857 18.5714H20V16.5714H18.2857V18.5714ZM17.7807 18.7806C17.9146 18.6467 18.0963 18.5714 18.2857 18.5714V16.5714C17.5659 16.5714 16.8755 16.8574 16.3665 17.3664L17.7807 18.7806ZM17.5715 19.2857C17.5715 19.0963 17.6467 18.9146 17.7807 18.7806L16.3665 17.3664C15.8574 17.8754 15.5715 18.5658 15.5715 19.2857H17.5715ZM17.7807 19.7908C17.6467 19.6568 17.5715 19.4751 17.5715 19.2857H15.5715C15.5715 20.0056 15.8574 20.696 16.3665 21.205L17.7807 19.7908ZM18.2857 20C18.0963 20 17.9146 19.9247 17.7807 19.7908L16.3665 21.205C16.8755 21.714 17.5659 22 18.2857 22V20ZM20 20H18.2857V22H20V20ZM21 29.2857V21H19V29.2857H21ZM21.2092 29.7908C21.0753 29.6568 21 29.4751 21 29.2857H19C19 30.0056 19.286 30.696 19.795 31.205L21.2092 29.7908ZM21.7143 30C21.5249 30 21.3432 29.9247 21.2092 29.7908L19.795 31.205C20.3041 31.714 20.9944 32 21.7143 32V30ZM22.2194 29.7908C22.0854 29.9247 21.9038 30 21.7143 30V32C22.4342 32 23.1246 31.714 23.6336 31.205L22.2194 29.7908ZM22.4286 29.2857C22.4286 29.4752 22.3533 29.6568 22.2194 29.7908L23.6336 31.205C24.1426 30.696 24.4286 30.0056 24.4286 29.2857H22.4286ZM22.4286 21V29.2857H24.4286V21H22.4286ZM21.7173 19.2827C22.1727 19.7382 22.4286 20.3559 22.4286 21H24.4286C24.4286 19.8255 23.962 18.699 23.1315 17.8685L21.7173 19.2827ZM20 18.5714C20.6441 18.5714 21.2618 18.8273 21.7173 19.2827L23.1315 17.8685C22.301 17.038 21.1746 16.5714 20 16.5714V18.5714Z" fill="url(#paint1_linear_15_1182)" mask="url(#path-1-inside-1_15_1182)"/>
7
+ <defs>
8
+ <linearGradient id="paint0_linear_15_1182" x1="20" y1="1.0899" x2="20.6375" y2="39.9999" gradientUnits="userSpaceOnUse">
9
+ <stop stop-color="#2591E4"/>
10
+ <stop offset="1" stop-color="#1769B0"/>
11
+ </linearGradient>
12
+ <linearGradient id="paint1_linear_15_1182" x1="20.9771" y1="39.4328" x2="20" y2="1.42296" gradientUnits="userSpaceOnUse">
13
+ <stop stop-color="#2591E4"/>
14
+ <stop offset="1" stop-color="#1769B0"/>
15
+ </linearGradient>
16
+ </defs>
17
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13.5 7C13.5 10.5898 10.5898 13.5 7 13.5C3.41016 13.5 0.5 10.5898 0.5 7C0.5 3.41015 3.41015 0.5 7 0.5C10.5898 0.5 13.5 3.41016 13.5 7Z" stroke="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.00141 4.44022C7.47304 4.44022 7.85537 4.05789 7.85537 3.58626C7.85537 3.11463 7.47304 2.7323 7.00141 2.7323C6.52978 2.7323 6.14745 3.11463 6.14745 3.58626C6.14745 4.05789 6.52978 4.44022 7.00141 4.44022ZM5.8623 5.36406H5.3623V6.36406H5.8623H6.50092V9.91851H5.8623H5.3623V10.9185H5.8623H7.00092H8.13953H8.63953V9.91851H8.13953H7.50092V5.86406C7.50092 5.58792 7.27706 5.36406 7.00092 5.36406H5.8623Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="10" height="16" viewBox="0 0 10 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.46841 0H3.90172C3.17467 0 2.58507 0.589598 2.58507 1.31666C2.58507 2.04371 3.17467 2.63331 3.90172 2.63331H4.74886L2.52345 13.3443C2.52187 13.3519 2.52266 13.3591 2.52134 13.3667H1.53174C0.804686 13.3667 0.215088 13.956 0.215088 14.6833C0.215088 15.4107 0.804686 16 1.53174 16H6.09843C6.82575 16 7.41509 15.4107 7.41509 14.6833C7.41509 13.956 6.82575 13.3667 6.09843 13.3667H5.20337L7.43299 2.63331H8.46841C9.19573 2.63331 9.78507 2.04371 9.78507 1.31666C9.78507 0.589598 9.19573 0 8.46841 0Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
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="M15.3371 0H7.63428C7.63428 1.92 9.18856 3.47428 11.1085 3.47428H12.5257V4.84572C12.5257 6.76572 14.0799 8.31997 15.9999 8.31997V0.662875C15.9999 0.297156 15.7028 0 15.3371 0ZM11.5201 3.83997H3.8172C3.8172 5.75997 5.37148 7.31422 7.29148 7.31422H8.70861V8.68568C8.70861 10.6057 10.2629 12.1599 12.1829 12.1599V4.50284C12.1829 4.13709 11.8857 3.83997 11.5201 3.83997ZM0.00012207 7.68005H7.703C8.06872 7.68005 8.36587 7.97718 8.36587 8.34293V16.0001C6.44587 16.0001 4.89153 14.4458 4.89153 12.5258V11.1543H3.4744C1.5544 11.1543 0.00012207 9.60005 0.00012207 7.68005Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
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="M14.1729 1.72611C14.1721 1.05414 13.6272 0.509644 12.9551 0.509644H7.85584C7.53286 0.509644 7.22312 0.637909 6.99472 0.866274L5.9944 1.86639C6.15911 1.98691 6.31427 2.11973 6.45851 2.2635L7.42526 1.29693C7.54028 1.18195 7.69317 1.11862 7.85584 1.11862H12.9552C13.2909 1.11862 13.5641 1.39182 13.5641 1.72759V6.8268H13.5641C13.5641 6.98947 13.5007 7.14244 13.3857 7.25746L6.74778 13.8941C6.63276 14.0091 6.47983 14.0725 6.31716 14.0725C6.15449 14.0725 6.00159 14.0091 5.88654 13.8941L0.787328 8.79474C0.672308 8.67972 0.608974 8.52675 0.608974 8.36412C0.608974 8.20145 0.672346 8.04852 0.787366 7.9335L0.801093 7.91977C0.657354 7.7755 0.52456 7.62032 0.404062 7.45557L0.356821 7.5028C-0.118902 7.97841 -0.11894 8.7496 0.356707 9.22532L5.45599 14.3246C5.6938 14.5625 6.00552 14.6814 6.31723 14.6814C6.51344 14.6814 6.70751 14.6287 6.88529 14.5345C6.95066 14.4806 6.99975 14.4416 7.04251 14.4076C7.06738 14.3878 7.09011 14.3698 7.11266 14.3515C7.35214 14.1572 7.57128 13.9378 10.1177 11.3887L10.1177 11.3886L10.1178 11.3885C11.0221 10.4833 12.2199 9.28423 13.8163 7.68816C14.0447 7.45972 14.1731 7.1499 14.1731 6.82684L14.173 2.09659L14.1729 1.72611ZM15.391 1.72759V7.43574C15.391 7.59841 15.3276 7.75138 15.2126 7.8664L8.01801 15.0597L8.44859 15.4903L15.6432 8.29706C15.8716 8.06861 16 7.7588 16 7.43574V1.72759H15.391ZM9.60576 3.859C9.60576 3.18727 10.1523 2.64105 10.8237 2.64105C11.4951 2.64105 12.0417 3.18727 12.0417 3.859C12.0417 4.53074 11.4951 5.07695 10.8237 5.07695C10.1523 5.07695 9.60576 4.53074 9.60576 3.859ZM10.2147 3.859C10.2147 4.1947 10.4877 4.46798 10.8237 4.46798C11.1597 4.46798 11.4327 4.1947 11.4327 3.859C11.4327 3.52331 11.1597 3.25003 10.8237 3.25003C10.4877 3.25003 10.2147 3.52331 10.2147 3.859ZM0.384796 5.09656C0.384796 3.30456 1.8428 1.84656 3.6348 1.84656C5.4268 1.84656 6.8848 3.30456 6.8848 5.09656C6.8848 6.88856 5.4268 8.34656 3.6348 8.34656C1.8428 8.34656 0.384796 6.88856 0.384796 5.09656ZM4.1348 5.59656H4.8848C5.1608 5.59656 5.3848 5.37256 5.3848 5.09656C5.3848 4.82056 5.1608 4.59656 4.8848 4.59656H4.1348V3.84656C4.1348 3.57056 3.9108 3.34656 3.6348 3.34656C3.3588 3.34656 3.1348 3.57056 3.1348 3.84656V4.59656H2.3848C2.1088 4.59656 1.8848 4.82056 1.8848 5.09656C1.8848 5.37256 2.1088 5.59656 2.3848 5.59656H3.1348V6.34656C3.1348 6.62256 3.3588 6.84656 3.6348 6.84656C3.9108 6.84656 4.1348 6.62256 4.1348 6.34656V5.59656Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="15" height="11" viewBox="0 0 15 11" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1.5 5.49982H13.5M1.5 5.49982C1.50001 6.48801 5.99985 9.99999 5.99985 9.99999M1.5 5.49982C1.49999 4.51162 5.99987 1 5.99987 1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>