@steroidsjs/bootstrap 3.0.0-beta.9 → 3.0.0-beta.91

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 (362) hide show
  1. package/README.md +1 -2
  2. package/content/Accordion/AccordionItemView.d.ts +2 -0
  3. package/content/{Collapse/CollapseItemView.js → Accordion/AccordionItemView.js} +47 -22
  4. package/content/Accordion/AccordionItemView.scss +262 -0
  5. package/content/Accordion/AccordionView.d.ts +2 -0
  6. package/content/{Collapse/CollapseView.js → Accordion/AccordionView.js} +3 -3
  7. package/content/Accordion/AccordionView.scss +28 -0
  8. package/content/Alert/AlertView.js +3 -2
  9. package/content/Alert/AlertView.scss +72 -24
  10. package/content/Avatar/AvatarView.js +2 -3
  11. package/content/Avatar/AvatarView.scss +43 -48
  12. package/content/Badge/BadgeView.d.ts +0 -1
  13. package/content/Badge/BadgeView.js +8 -7
  14. package/content/Badge/BadgeView.scss +141 -0
  15. package/content/Calendar/CalendarView.js +1 -1
  16. package/content/Calendar/CalendarView.scss +248 -175
  17. package/content/Calendar/CaptionElement.js +23 -15
  18. package/content/Calendar/CaptionElement.scss +167 -106
  19. package/content/Card/CardView.js +37 -14
  20. package/content/Card/CardView.scss +139 -108
  21. package/content/CopyToClipboard/CopyToClipboardView.d.ts +3 -0
  22. package/content/CopyToClipboard/CopyToClipboardView.js +19 -0
  23. package/content/CopyToClipboard/CopyToClipboardView.scss +41 -0
  24. package/content/Detail/DetailView.scss +79 -57
  25. package/content/DropDown/DropDownView.d.ts +0 -1
  26. package/content/DropDown/DropDownView.js +7 -4
  27. package/content/DropDown/DropDownView.scss +208 -27
  28. package/content/Icon/IconView.d.ts +1 -2
  29. package/content/Icon/IconView.js +2 -2
  30. package/content/Icon/IconView.scss +1 -23
  31. package/content/Menu/MenuItemView.d.ts +2 -0
  32. package/content/Menu/MenuItemView.js +15 -0
  33. package/content/Menu/MenuItemView.scss +67 -0
  34. package/content/Menu/MenuView.d.ts +2 -0
  35. package/content/Menu/MenuView.js +33 -0
  36. package/content/Menu/MenuView.scss +46 -0
  37. package/content/Slider/SliderView.d.ts +2 -0
  38. package/content/Slider/SliderView.js +18 -0
  39. package/content/Slider/SliderView.scss +5 -0
  40. package/form/AutoCompleteField/AutoCompleteFieldView.d.ts +1 -3
  41. package/form/AutoCompleteField/AutoCompleteFieldView.js +62 -9
  42. package/form/AutoCompleteField/AutoCompleteFieldView.scss +199 -142
  43. package/form/Button/ButtonView.d.ts +1 -2
  44. package/form/Button/ButtonView.js +13 -9
  45. package/form/Button/ButtonView.scss +176 -68
  46. package/form/CheckboxField/CheckboxFieldView.d.ts +1 -2
  47. package/form/CheckboxField/CheckboxFieldView.js +6 -4
  48. package/form/CheckboxField/CheckboxFieldView.scss +198 -37
  49. package/form/CheckboxListField/CheckboxListFieldView.d.ts +1 -2
  50. package/form/CheckboxListField/CheckboxListFieldView.js +18 -15
  51. package/form/CheckboxListField/CheckboxListFieldView.scss +7 -41
  52. package/form/DateField/DateFieldView.js +7 -6
  53. package/form/DateField/DateFieldView.scss +15 -70
  54. package/form/DateRangeField/DateRangeFieldView.js +10 -13
  55. package/form/DateRangeField/DateRangeFieldView.scss +42 -73
  56. package/form/DateTimeField/DateTimeFieldView.d.ts +1 -2
  57. package/form/DateTimeField/DateTimeFieldView.js +6 -6
  58. package/form/DateTimeField/DateTimeFieldView.scss +13 -107
  59. package/form/DateTimeRangeField/DateTimeRangeFieldView.js +10 -8
  60. package/form/DateTimeRangeField/DateTimeRangeFieldView.scss +32 -87
  61. package/form/DropDownField/DropDownFieldView.js +35 -47
  62. package/form/DropDownField/DropDownFieldView.scss +382 -181
  63. package/form/DropDownField/utils.d.ts +2 -0
  64. package/form/DropDownField/utils.js +15 -0
  65. package/form/DropDownFieldItem/DropDownFieldItemView.d.ts +2 -0
  66. package/form/DropDownFieldItem/DropDownFieldItemView.js +81 -0
  67. package/form/DropDownFieldItem/DropDownFieldItemView.scss +220 -0
  68. package/form/FieldLayout/FieldLayoutView.d.ts +1 -2
  69. package/form/FieldLayout/FieldLayoutView.js +13 -9
  70. package/form/FieldLayout/FieldLayoutView.scss +116 -19
  71. package/form/FieldList/FieldListItemView.js +6 -4
  72. package/form/FieldList/FieldListItemView.scss +18 -38
  73. package/form/FieldList/FieldListView.js +9 -8
  74. package/form/FieldList/FieldListView.scss +75 -24
  75. package/form/FieldSet/FieldSetView.js +4 -2
  76. package/form/FieldSet/FieldSetView.scss +42 -0
  77. package/form/FileField/FileFieldItemView.d.ts +1 -2
  78. package/form/FileField/FileFieldItemView.js +31 -6
  79. package/form/FileField/FileFieldItemView.scss +259 -14
  80. package/form/FileField/FileFieldView.d.ts +1 -2
  81. package/form/FileField/FileFieldView.js +6 -8
  82. package/form/FileField/FileFieldView.scss +45 -13
  83. package/form/Form/FormView.js +1 -4
  84. package/form/Form/FormView.scss +1 -14
  85. package/form/HtmlField/HtmlFieldView.d.ts +1 -2
  86. package/form/HtmlField/HtmlFieldView.scss +6 -3
  87. package/form/ImageField/ImageFieldView.js +15 -3
  88. package/form/ImageField/ImageFieldView.scss +7 -24
  89. package/form/InputField/InputFieldView.d.ts +1 -2
  90. package/form/InputField/InputFieldView.js +33 -14
  91. package/form/InputField/InputFieldView.scss +267 -99
  92. package/form/NumberField/NumberFieldView.d.ts +1 -2
  93. package/form/NumberField/NumberFieldView.js +19 -13
  94. package/form/NumberField/NumberFieldView.scss +197 -89
  95. package/form/PasswordField/PasswordFieldView.d.ts +1 -2
  96. package/form/PasswordField/PasswordFieldView.js +11 -9
  97. package/form/PasswordField/PasswordFieldView.scss +238 -63
  98. package/form/RadioField/RadioFieldView.d.ts +2 -0
  99. package/form/RadioField/RadioFieldView.js +57 -0
  100. package/form/RadioField/RadioFieldView.scss +228 -0
  101. package/form/RadioListField/RadioListFieldView.d.ts +1 -2
  102. package/form/RadioListField/RadioListFieldView.js +20 -16
  103. package/form/RadioListField/RadioListFieldView.scss +11 -1
  104. package/form/RateField/RateFieldView.js +17 -10
  105. package/form/RateField/RateFieldView.scss +118 -40
  106. package/form/ReCaptchaField/ReCaptchaFieldView.d.ts +1 -2
  107. package/form/ReCaptchaField/ReCaptchaFieldView.js +18 -9
  108. package/form/ReCaptchaField/ReCaptchaFieldView.scss +1 -5
  109. package/form/SliderField/SliderFieldView.d.ts +1 -2
  110. package/form/SliderField/SliderFieldView.js +1 -1
  111. package/form/SliderField/SliderFieldView.scss +338 -299
  112. package/form/SwitcherField/SwitcherFieldView.d.ts +1 -2
  113. package/form/SwitcherField/SwitcherFieldView.js +12 -7
  114. package/form/SwitcherField/SwitcherFieldView.scss +192 -1
  115. package/form/TextField/TextFieldView.d.ts +1 -2
  116. package/form/TextField/TextFieldView.js +10 -2
  117. package/form/TextField/TextFieldView.scss +147 -2
  118. package/form/TimeField/TimeFieldView.d.ts +1 -2
  119. package/form/TimeField/TimeFieldView.js +16 -14
  120. package/form/TimeField/TimeFieldView.scss +22 -68
  121. package/form/TimeField/TimePanelView.scss +65 -68
  122. package/form/TimeRangeField/TimeRangeFieldView.d.ts +2 -0
  123. package/form/TimeRangeField/TimeRangeFieldView.js +67 -0
  124. package/form/TimeRangeField/TimeRangeFieldView.scss +81 -0
  125. package/icons/index.d.ts +2 -0
  126. package/icons/index.js +110 -0
  127. package/icons/svgs/add.svg +4 -0
  128. package/icons/svgs/add_square.svg +5 -0
  129. package/icons/svgs/arrow_down_18x18.svg +4 -0
  130. package/icons/svgs/arrow_down_24x24.svg +4 -0
  131. package/icons/svgs/arrow_drop_down_10x10.svg +3 -0
  132. package/icons/svgs/arrow_left_18x18.svg +4 -0
  133. package/icons/svgs/arrow_left_24x24.svg +4 -0
  134. package/icons/svgs/arrow_right_18x18.svg +4 -0
  135. package/icons/svgs/arrow_right_24x24.svg +5 -0
  136. package/icons/svgs/arrow_up_18x18.svg +4 -0
  137. package/icons/svgs/arrow_up_24x24.svg +4 -0
  138. package/icons/svgs/blank.svg +4 -0
  139. package/icons/svgs/burger.svg +5 -0
  140. package/icons/svgs/calendar_check.svg +5 -0
  141. package/icons/svgs/calendar_range.svg +8 -0
  142. package/icons/svgs/cancel_ellips.svg +4 -0
  143. package/icons/svgs/chart.svg +6 -0
  144. package/icons/svgs/checkmark_12x12.svg +4 -0
  145. package/icons/svgs/checkmark_8x8.svg +4 -0
  146. package/icons/svgs/circle_cross_12x12.svg +4 -0
  147. package/icons/svgs/circle_cross_16x16.svg +4 -0
  148. package/icons/svgs/circle_cross_18x18.svg +4 -0
  149. package/icons/svgs/clip.svg +3 -0
  150. package/icons/svgs/copy.svg +5 -0
  151. package/icons/svgs/cross_12x12.svg +4 -0
  152. package/icons/svgs/cross_4x4.svg +3 -0
  153. package/icons/svgs/cross_8x8.svg +4 -0
  154. package/icons/svgs/cut.svg +3 -0
  155. package/icons/svgs/date_range.svg +8 -0
  156. package/icons/svgs/default_16x16.svg +4 -0
  157. package/icons/svgs/default_24x24.svg +11 -0
  158. package/icons/svgs/double_arrow_down.svg +5 -0
  159. package/icons/svgs/double_arrow_left.svg +5 -0
  160. package/icons/svgs/double_arrow_right.svg +5 -0
  161. package/icons/svgs/double_arrow_up.svg +5 -0
  162. package/icons/svgs/doughnut_chart.svg +5 -0
  163. package/icons/svgs/edit.svg +4 -0
  164. package/icons/svgs/error_16x16.svg +5 -0
  165. package/icons/svgs/error_24x24.svg +12 -0
  166. package/icons/svgs/expand_down.svg +3 -0
  167. package/icons/svgs/expand_left.svg +3 -0
  168. package/icons/svgs/expand_left_double.svg +4 -0
  169. package/icons/svgs/expand_right.svg +3 -0
  170. package/icons/svgs/expand_right_double.svg +4 -0
  171. package/icons/svgs/expand_up.svg +3 -0
  172. package/icons/svgs/facebook.svg +3 -0
  173. package/icons/svgs/file_dock.svg +6 -0
  174. package/icons/svgs/filter.svg +3 -0
  175. package/icons/svgs/fluid.svg +4 -0
  176. package/icons/svgs/folder.svg +3 -0
  177. package/icons/svgs/group.svg +8 -0
  178. package/icons/svgs/home.svg +4 -0
  179. package/icons/svgs/img_box.svg +5 -0
  180. package/icons/svgs/import.svg +4 -0
  181. package/icons/svgs/info_16x16.svg +5 -0
  182. package/icons/svgs/info_24x24.svg +12 -0
  183. package/icons/svgs/instagram.svg +5 -0
  184. package/icons/svgs/left_12x12.svg +3 -0
  185. package/icons/svgs/loading_default.svg +3 -0
  186. package/icons/svgs/loading_icon_thick.svg +3 -0
  187. package/icons/svgs/loading_purple.svg +9 -0
  188. package/icons/svgs/map.svg +7 -0
  189. package/icons/svgs/menu_dots.svg +5 -0
  190. package/icons/svgs/menu_left.svg +5 -0
  191. package/icons/svgs/minis_sq.svg +4 -0
  192. package/icons/svgs/paste.svg +8 -0
  193. package/icons/svgs/pie_chart.svg +5 -0
  194. package/icons/svgs/pin.svg +4 -0
  195. package/icons/svgs/sad.svg +6 -0
  196. package/icons/svgs/search.svg +4 -0
  197. package/icons/svgs/setting_line.svg +3 -0
  198. package/icons/svgs/share.svg +7 -0
  199. package/icons/svgs/sort.svg +7 -0
  200. package/icons/svgs/star.svg +3 -0
  201. package/icons/svgs/success_16x16.svg +4 -0
  202. package/icons/svgs/success_24x24.svg +11 -0
  203. package/icons/svgs/support.svg +3 -0
  204. package/icons/svgs/telegram.svg +3 -0
  205. package/icons/svgs/trash.svg +6 -0
  206. package/icons/svgs/upload.svg +4 -0
  207. package/icons/svgs/user.svg +4 -0
  208. package/icons/svgs/view.svg +4 -0
  209. package/icons/svgs/view_hide.svg +5 -0
  210. package/icons/svgs/vk.svg +3 -0
  211. package/icons/svgs/warning_16x16.svg +5 -0
  212. package/icons/svgs/warning_24x24.svg +12 -0
  213. package/icons/svgs/whatsapp.svg +7 -0
  214. package/index.d.ts +41 -2
  215. package/index.js +43 -4
  216. package/index.scss +91 -68
  217. package/layout/Header/HeaderView.js +43 -6
  218. package/layout/Header/HeaderView.scss +138 -23
  219. package/layout/Loader/LoaderView.d.ts +2 -2
  220. package/layout/Loader/LoaderView.js +6 -2
  221. package/layout/Loader/LoaderView.scss +70 -22
  222. package/layout/Notifications/NotificationsItemView.d.ts +1 -2
  223. package/layout/Notifications/NotificationsItemView.js +9 -8
  224. package/layout/Notifications/NotificationsItemView.scss +1 -39
  225. package/layout/Notifications/NotificationsView.d.ts +1 -2
  226. package/layout/Notifications/NotificationsView.scss +3 -0
  227. package/layout/ProgressBar/CircleProgressBarView.d.ts +1 -2
  228. package/layout/ProgressBar/CircleProgressBarView.scss +9 -7
  229. package/layout/ProgressBar/LineProgressBarView.d.ts +1 -2
  230. package/layout/ProgressBar/LineProgressBarView.scss +10 -8
  231. package/layout/Sidebar/FooterIcons/FooterIcons.d.ts +10 -0
  232. package/layout/Sidebar/FooterIcons/FooterIcons.js +54 -0
  233. package/layout/Sidebar/FooterIcons/FooterIcons.scss +36 -0
  234. package/layout/Sidebar/FooterIcons/index.d.ts +2 -0
  235. package/layout/Sidebar/FooterIcons/index.js +7 -0
  236. package/layout/Sidebar/SidebarLogo/SidebarLogo.d.ts +10 -0
  237. package/layout/Sidebar/SidebarLogo/SidebarLogo.js +44 -0
  238. package/layout/Sidebar/SidebarLogo/SidebarLogo.scss +52 -0
  239. package/layout/Sidebar/SidebarLogo/index.d.ts +2 -0
  240. package/layout/Sidebar/SidebarLogo/index.js +7 -0
  241. package/layout/Sidebar/SidebarUser/SidebarUser.d.ts +11 -0
  242. package/layout/Sidebar/SidebarUser/SidebarUser.js +53 -0
  243. package/layout/Sidebar/SidebarUser/SidebarUser.scss +45 -0
  244. package/layout/Sidebar/SidebarUser/index.d.ts +2 -0
  245. package/layout/Sidebar/SidebarUser/index.js +7 -0
  246. package/layout/Sidebar/SidebarView.d.ts +2 -0
  247. package/layout/Sidebar/SidebarView.js +26 -0
  248. package/layout/Sidebar/SidebarView.scss +304 -0
  249. package/layout/Sidebar/index.d.ts +2 -0
  250. package/layout/Sidebar/index.js +7 -0
  251. package/layout/Skeleton/SkeletonView.scss +7 -5
  252. package/layout/Tooltip/TooltipView.d.ts +1 -2
  253. package/layout/Tooltip/TooltipView.js +6 -6
  254. package/layout/Tooltip/TooltipView.scss +46 -37
  255. package/list/CheckboxColumn/CheckboxColumnView.d.ts +1 -2
  256. package/list/CheckboxColumn/CheckboxColumnView.js +2 -1
  257. package/list/ControlsColumnView/ControlsColumnView.d.ts +1 -2
  258. package/list/ControlsColumnView/ControlsColumnView.scss +7 -1
  259. package/list/Empty/EmptyView.js +1 -1
  260. package/list/Empty/EmptyView.scss +5 -1
  261. package/list/FlexGrid/FlexGridView.d.ts +2 -0
  262. package/list/FlexGrid/FlexGridView.js +71 -0
  263. package/list/FlexGrid/FlexGridView.scss +60 -0
  264. package/list/Grid/GridView.js +10 -4
  265. package/list/Grid/GridView.scss +153 -37
  266. package/list/Grid/views/ContentColumnView/ContentColumnView.d.ts +2 -0
  267. package/list/Grid/views/ContentColumnView/ContentColumnView.js +50 -0
  268. package/list/Grid/views/ContentColumnView/ContentColumnView.scss +88 -0
  269. package/list/Grid/views/ContentColumnView/index.d.ts +2 -0
  270. package/list/Grid/views/ContentColumnView/index.js +7 -0
  271. package/list/Grid/views/DiagramColumnView/DiagramColumnView.d.ts +3 -0
  272. package/list/Grid/views/DiagramColumnView/DiagramColumnView.js +60 -0
  273. package/list/Grid/views/DiagramColumnView/DiagramColumnView.scss +170 -0
  274. package/list/Grid/views/DiagramColumnView/index.d.ts +2 -0
  275. package/list/Grid/views/DiagramColumnView/index.js +7 -0
  276. package/list/List/ListItemView.d.ts +1 -2
  277. package/list/List/ListView.js +5 -7
  278. package/list/List/ListView.scss +28 -1
  279. package/list/Pagination/PaginationButtonView.js +34 -5
  280. package/list/Pagination/PaginationButtonView.scss +265 -1
  281. package/list/Pagination/PaginationMoreView.js +1 -1
  282. package/list/Pagination/PaginationMoreView.scss +4 -1
  283. package/list/PaginationSize/PaginationSizeView.js +5 -5
  284. package/list/PaginationSize/PaginationSizeView.scss +0 -8
  285. package/list/Steps/StepItemView.scss +13 -12
  286. package/list/Steps/StepsView.scss +3 -1
  287. package/modal/Modal/ModalView.d.ts +1 -2
  288. package/modal/Modal/ModalView.js +5 -8
  289. package/modal/Modal/ModalView.scss +140 -93
  290. package/modal/TwoFactorModal/TwoFactorModalView.d.ts +1 -3
  291. package/modal/TwoFactorModal/TwoFactorModalView.js +0 -1
  292. package/modal/TwoFactorModal/TwoFactorModalView.scss +0 -2
  293. package/nav/Breadcrubms/BreadcrumbsView.js +9 -1
  294. package/nav/Breadcrubms/BreadcrumbsView.scss +49 -0
  295. package/nav/ButtonGroup/ButtonGroupView.d.ts +2 -0
  296. package/nav/ButtonGroup/ButtonGroupView.js +33 -0
  297. package/nav/ButtonGroup/ButtonGroupView.scss +84 -0
  298. package/nav/Controls/ControlsView.d.ts +1 -2
  299. package/nav/Controls/ControlsView.scss +17 -3
  300. package/nav/Nav/NavBarView.d.ts +1 -2
  301. package/nav/Nav/NavBarView.js +9 -4
  302. package/nav/Nav/NavBarView.scss +35 -1
  303. package/nav/Nav/NavButtonView.d.ts +1 -2
  304. package/nav/Nav/NavButtonView.js +8 -2
  305. package/nav/Nav/NavButtonView.scss +6 -5
  306. package/nav/Nav/NavIconView.d.ts +1 -2
  307. package/nav/Nav/NavIconView.js +21 -2
  308. package/nav/Nav/NavIconView.scss +33 -6
  309. package/nav/Nav/NavLinkView.d.ts +1 -2
  310. package/nav/Nav/NavLinkView.js +9 -2
  311. package/nav/Nav/NavLinkView.scss +14 -5
  312. package/nav/Nav/NavListView.d.ts +1 -2
  313. package/nav/Nav/NavListView.js +11 -7
  314. package/nav/Nav/NavListView.scss +11 -10
  315. package/nav/Nav/NavTabsView.d.ts +1 -2
  316. package/nav/Nav/NavTabsView.js +9 -4
  317. package/nav/Nav/NavTabsView.scss +50 -1
  318. package/nav/Tree/TreeView.d.ts +1 -2
  319. package/nav/Tree/TreeView.scss +63 -54
  320. package/package.json +8 -6
  321. package/scss/animations/index.scss +1 -0
  322. package/scss/animations/loading.scss +13 -0
  323. package/scss/fonts.scss +6 -0
  324. package/scss/mixins/button.scss +83 -24
  325. package/scss/mixins/customMixins.scss +6 -0
  326. package/scss/mixins/date.scss +436 -0
  327. package/scss/mixins/index.scss +6 -2
  328. package/scss/mixins/navs.scss +39 -0
  329. package/scss/mixins/scroll.scss +31 -0
  330. package/scss/mixins/typography.scss +29 -0
  331. package/scss/normalize.scss +25 -0
  332. package/scss/variables/common/colors.scss +199 -83
  333. package/scss/variables/common/media.scss +3 -0
  334. package/scss/variables/common/typography.scss +99 -28
  335. package/scss/variables/common/variables.scss +1 -0
  336. package/scss/variables/components/calendar.scss +8 -6
  337. package/scss/variables/components/input.scss +10 -7
  338. package/scss/variables/components/ratefield.scss +3 -1
  339. package/scss/variables/index.scss +10 -11
  340. package/typography/Text/TextView.d.ts +3 -0
  341. package/typography/Text/TextView.js +46 -0
  342. package/typography/Text/TextView.scss +19 -0
  343. package/typography/Title/TitleView.d.ts +3 -0
  344. package/typography/Title/TitleView.js +50 -0
  345. package/typography/Title/TitleView.scss +19 -0
  346. package/utils/renderIcon.d.ts +9 -0
  347. package/utils/renderIcon.js +27 -0
  348. package/content/Collapse/CollapseItemView.d.ts +0 -2
  349. package/content/Collapse/CollapseItemView.scss +0 -88
  350. package/content/Collapse/CollapseView.d.ts +0 -2
  351. package/content/Collapse/CollapseView.scss +0 -15
  352. package/icons/close.svg +0 -3
  353. package/icons/default.svg +0 -11
  354. package/icons/error.svg +0 -12
  355. package/icons/fontawesome.d.ts +0 -2
  356. package/icons/fontawesome.js +0 -259
  357. package/icons/info.svg +0 -12
  358. package/icons/success.svg +0 -4
  359. package/icons/warning.svg +0 -12
  360. package/list/List/ListItemView.scss +0 -3
  361. package/scss/mixins/card.scss +0 -26
  362. package/scss/variables/components/card.scss +0 -20
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect y="0.867676" width="24" height="24" rx="8" fill="white"/>
3
+ <path d="M16 12.8677L12 16.8677L8 12.8677" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M16 8.86768L12 12.8677L8 8.86768" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect y="0.867676" width="24" height="24" rx="8" fill="white"/>
3
+ <path d="M12 16.8677L8 12.8677L12 8.86768" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M16 16.8677L12 12.8677L16 8.86768" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect y="0.867676" width="24" height="24" rx="8" fill="white"/>
3
+ <path d="M12 8.86768L16 12.8677L12 16.8677" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M8 8.86768L12 12.8677L8 16.8677" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect y="0.867676" width="24" height="24" rx="8" fill="white"/>
3
+ <path d="M8 12.8677L12 8.86768L16 12.8677" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M8 16.8677L12 12.8677L16 16.8677" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="12" cy="12" r="9" stroke="#323232"/>
3
+ <circle cx="12" cy="12" r="4" stroke="#323232"/>
4
+ <path d="M12 3V7.5M18 18L15 15M18 6L15 9M3 12H7.5" stroke="#323232" stroke-linecap="round"/>
5
+ </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="M3.1492 13.1867L3.50275 12.8332L3.1492 13.1867C3.35861 13.3961 3.61967 13.3997 3.7744 13.3845C3.91494 13.3708 4.08228 13.3289 4.23896 13.2896C4.2479 13.2874 4.2568 13.2852 4.26566 13.283L5.68901 12.9271C5.70413 12.9233 5.71914 12.9196 5.73403 12.9159C5.95676 12.8605 6.15394 12.8114 6.33297 12.71C6.512 12.6087 6.65552 12.4648 6.81765 12.3024C6.82849 12.2915 6.83941 12.2806 6.85044 12.2695L11.6433 7.47662L11.6434 7.47661L11.651 7.46894L11.651 7.46893L11.6616 7.45835C11.8069 7.31306 11.9323 7.18769 12.0295 7.07715C12.1319 6.96083 12.226 6.83593 12.293 6.68494C12.4646 6.29777 12.4646 5.85607 12.293 5.46891C12.226 5.31791 12.1319 5.19302 12.0295 5.0767C11.9323 4.96616 11.8069 4.84079 11.6616 4.69552L11.651 4.68492L11.651 4.68491L11.6404 4.67432C11.4952 4.52903 11.3698 4.40365 11.2592 4.3064C11.1429 4.20407 11.018 4.10992 10.867 4.04297C10.4799 3.8713 10.0382 3.8713 9.651 4.04297C9.5 4.10992 9.37511 4.20407 9.25879 4.3064C9.14824 4.40365 9.02288 4.52902 8.87759 4.67432L8.867 4.68491L4.06641 9.4855C4.05538 9.49652 4.04444 9.50745 4.03357 9.51829C3.8711 9.68042 3.72727 9.82394 3.62591 10.003C3.52454 10.182 3.47547 10.3792 3.42004 10.6019C3.41633 10.6168 3.4126 10.6318 3.40882 10.6469L3.05298 12.0703C3.05076 12.0791 3.04854 12.088 3.0463 12.097C3.00706 12.2537 2.96514 12.421 2.9514 12.5615C2.93626 12.7163 2.93979 12.9773 3.1492 13.1867Z" stroke="#323232"/>
3
+ <path d="M8.33203 5L10.9987 7.66667" stroke="#323232"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.0008 20.8677C11.5023 20.8677 10.9964 20.7412 10.5499 20.4808L6.13051 17.9288C5.2377 17.408 4.67969 16.4482 4.67969 15.4141V10.325C4.67969 9.29083 5.2377 8.33106 6.13051 7.81025L10.5499 5.25828C11.4428 4.73747 12.5513 4.73747 13.4516 5.25828L17.871 7.81025C18.7639 8.33106 19.3219 9.29083 19.3219 10.325V15.4141C19.3219 16.4482 18.7639 17.408 17.871 17.9288L13.4516 20.4808C13.0052 20.7412 12.4993 20.8677 12.0008 20.8677Z" fill="#FB4E4E"/>
3
+ <circle cx="12" cy="15.7363" r="0.5" fill="white"/>
4
+ <line x1="12" y1="9.99902" x2="12" y2="13.999" stroke="white" stroke-linecap="round"/>
5
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1601_29260)">
3
+ <path d="M11.9973 24.8677C11.2495 24.8677 10.4906 24.678 9.82102 24.2873L3.19186 20.4594C1.85264 19.6782 1.01562 18.2385 1.01562 16.6873V9.05368C1.01562 7.50241 1.85264 6.06275 3.19186 5.28153L9.82102 1.45359C11.1602 0.672372 12.8231 0.672372 14.1735 1.45359L20.8027 5.28153C22.1419 6.06275 22.9789 7.50241 22.9789 9.05368V16.6873C22.9789 18.2385 22.1419 19.6782 20.8027 20.4594L14.1735 24.2873C13.5039 24.678 12.745 24.8677 11.9973 24.8677Z" fill="#FB4E4E"/>
4
+ <circle cx="12" cy="17.6177" r="0.75" fill="white"/>
5
+ <line x1="12" y1="8.11768" x2="12" y2="14.6177" stroke="white" stroke-width="1.5" stroke-linecap="round"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_1601_29260">
9
+ <rect width="24" height="24" fill="white" transform="translate(0 0.867676)"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M18 9L12 15L6 9" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M14 8L10 12L14 16" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.5 16L7.5 12L11.5 8" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M16.5 16L12.5 12L16.5 8" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10 8L14 12L10 16" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.5 16L16.5 12L12.5 8" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M7.5 16L11.5 12L7.5 8" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="36" height="28" viewBox="0 0 36 28" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M22.2417 16.3981L17.9991 12.1554L13.7574 16.3971" stroke="#414141" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.6792 14.1469L17.2492 10.529H13.7384V8.1774C13.7384 7.18814 14.2286 6.22149 15.7959 6.22149H17.4144V3.14066C16.4719 2.99048 15.5194 2.90924 14.5648 2.89758C11.6753 2.89758 9.78889 4.63303 9.78889 7.77039V10.529H6.58594V14.1469H9.78889V22.8976H13.7384V14.1469H16.6792Z" fill="#ADACAC"/>
3
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.5 12.5L15.5 12.5" stroke="#323232" stroke-linecap="round"/>
3
+ <path d="M8.5 15.5L12.5 15.5" stroke="#323232" stroke-linecap="round"/>
4
+ <path d="M5.5 5.9C5.5 5.05992 5.5 4.63988 5.66349 4.31901C5.8073 4.03677 6.03677 3.8073 6.31901 3.66349C6.63988 3.5 7.05992 3.5 7.9 3.5H12.5059C12.8728 3.5 13.0562 3.5 13.2288 3.54145C13.3819 3.57819 13.5282 3.6388 13.6624 3.72104C13.8138 3.8138 13.9435 3.94352 14.2029 4.20294L17.7971 7.79706C18.0565 8.05648 18.1862 8.1862 18.279 8.33757C18.3612 8.47178 18.4218 8.6181 18.4586 8.77115C18.5 8.94378 18.5 9.12723 18.5 9.49411V18.1C18.5 18.9401 18.5 19.3601 18.3365 19.681C18.1927 19.9632 17.9632 20.1927 17.681 20.3365C17.3601 20.5 16.9401 20.5 16.1 20.5H7.9C7.05992 20.5 6.63988 20.5 6.31901 20.3365C6.03677 20.1927 5.8073 19.9632 5.66349 19.681C5.5 19.3601 5.5 18.9401 5.5 18.1V5.9Z" stroke="#323232"/>
5
+ <path d="M12.5 3.5V7.1C12.5 7.94008 12.5 8.36012 12.6635 8.68099C12.8073 8.96323 13.0368 9.1927 13.319 9.33651C13.6399 9.5 14.0599 9.5 14.9 9.5H18.5" stroke="#323232"/>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9.65811 19.7806L9.81622 20.255H9.81622L9.65811 19.7806ZM14.6581 18.114L14.8162 18.5883H14.8162L14.6581 18.114ZM19.7071 7.29289L20.0607 7.64645L19.7071 7.29289ZM15.2929 11.7071L14.9393 11.3536L15.2929 11.7071ZM5 4.5H19V3.5H5V4.5ZM4.5 6.58579V5H3.5V6.58579H4.5ZM9.06065 11.3535L4.64645 6.93934L3.93934 7.64645L8.35355 12.0607L9.06065 11.3535ZM8.49999 12.4142V19.3063H9.49999V12.4142H8.49999ZM8.49999 19.3063C8.49999 19.9888 9.16869 20.4708 9.81622 20.255L9.49999 19.3063V19.3063H8.49999ZM9.81622 20.255L14.8162 18.5883L14.5 17.6396L9.49999 19.3063L9.81622 20.255ZM14.8162 18.5883C15.2246 18.4522 15.5 18.0701 15.5 17.6396H14.5L14.8162 18.5883ZM15.5 17.6396V12.4142H14.5V17.6396H15.5ZM19.3536 6.93934L14.9393 11.3536L15.6464 12.0607L20.0607 7.64645L19.3536 6.93934ZM19.5 5V6.58579H20.5V5H19.5ZM20.0607 7.64645C20.342 7.36514 20.5 6.98361 20.5 6.58579H19.5C19.5 6.71839 19.4473 6.84557 19.3536 6.93934L20.0607 7.64645ZM15.5 12.4142C15.5 12.2816 15.5527 12.1544 15.6464 12.0607L14.9393 11.3536C14.658 11.6349 14.5 12.0164 14.5 12.4142H15.5ZM8.35355 12.0607C8.44731 12.1544 8.49999 12.2816 8.49999 12.4142H9.49999C9.49999 12.0164 9.34196 11.6349 9.06065 11.3535L8.35355 12.0607ZM3.5 6.58579C3.5 6.98361 3.65804 7.36514 3.93934 7.64645L4.64645 6.93934C4.55268 6.84557 4.5 6.71839 4.5 6.58579H3.5ZM19 4.5C19.2761 4.5 19.5 4.72386 19.5 5H20.5C20.5 4.17157 19.8284 3.5 19 3.5V4.5ZM5 3.5C4.17157 3.5 3.5 4.17157 3.5 5H4.5C4.5 4.72386 4.72386 4.5 5 4.5V3.5Z" fill="#323232"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.7682 3.92186L15.6332 7.35982C16.176 8.01114 15.7128 9 14.865 9L9.13504 9C8.2872 9 7.82405 8.01114 8.36682 7.35982L11.2318 3.92187C11.6316 3.44211 12.3684 3.44211 12.7682 3.92186Z" fill="#323232"/>
3
+ <path d="M11.2318 20.0781L8.36682 16.6402C7.82405 15.9889 8.2872 15 9.13504 15L14.865 15C15.7128 15 16.176 15.9889 15.6332 16.6402L12.7682 20.0781C12.3684 20.5579 11.6316 20.5579 11.2318 20.0781Z" fill="#323232"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.5 6.89951C4.5 6.05943 4.5 5.63939 4.66349 5.31853C4.8073 5.03628 5.03677 4.80681 5.31901 4.663C5.63988 4.49951 6.05992 4.49951 6.9 4.49951H9.47237C9.84808 4.49951 10.0359 4.49951 10.2065 4.5513C10.3574 4.59715 10.4978 4.67231 10.6197 4.77249C10.7574 4.88565 10.8616 5.04196 11.07 5.35459L11.93 6.64484C12.1384 6.95746 12.2426 7.11377 12.3803 7.22693C12.5022 7.32711 12.6426 7.40228 12.7935 7.44813C12.9641 7.49991 13.1519 7.49991 13.5276 7.49991H17.1C17.9401 7.49991 18.3601 7.49991 18.681 7.6634C18.9632 7.80721 19.1927 8.03668 19.3365 8.31893C19.5 8.63979 19.5 9.05983 19.5 9.89991V16.0999C19.5 16.94 19.5 17.36 19.3365 17.6809C19.1927 17.9631 18.9632 18.1926 18.681 18.3364C18.3601 18.4999 17.9401 18.4999 17.1 18.4999H6.9C6.05992 18.4999 5.63988 18.4999 5.31901 18.3364C5.03677 18.1926 4.8073 17.9631 4.66349 17.6809C4.5 17.36 4.5 16.94 4.5 16.0999V6.89951Z" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="12" cy="8" r="2.5" stroke="#323232" stroke-linecap="round"/>
3
+ <circle cx="6.5" cy="8.5" r="2" stroke="#323232" stroke-linecap="round"/>
4
+ <circle cx="17.5" cy="8.5" r="2" stroke="#323232" stroke-linecap="round"/>
5
+ <path d="M12 12.5C16.0802 12.5 17.1335 15.8022 17.4054 17.507C17.4924 18.0524 17.0523 18.5 16.5 18.5H7.5C6.94771 18.5 6.50763 18.0524 6.59461 17.507C6.86649 15.8022 7.91976 12.5 12 12.5Z" stroke="#323232" stroke-linecap="round"/>
6
+ <path d="M21.2962 15.4162L20.8112 15.5377L21.2962 15.4162ZM14.6719 13.1176L14.2567 12.839L13.9504 13.2955L14.4337 13.5572L14.6719 13.1176ZM17.181 16.5L16.7007 16.639L16.8051 17H17.181V16.5ZM17.4997 12C18.5274 12 19.2492 12.5027 19.778 13.2069C20.3174 13.9253 20.6341 14.8306 20.8112 15.5377L21.7812 15.2948C21.5901 14.5315 21.2325 13.4787 20.5777 12.6065C19.9122 11.7203 18.9199 11 17.4997 11V12ZM15.0871 13.3962C15.6268 12.5917 16.3862 12 17.4997 12V11C15.9528 11 14.9185 11.8526 14.2567 12.839L15.0871 13.3962ZM14.4337 13.5572C15.7283 14.2585 16.3775 15.5218 16.7007 16.639L17.6613 16.361C17.3023 15.1203 16.5392 13.5604 14.91 12.6779L14.4337 13.5572ZM20.3947 16H17.181V17H20.3947V16ZM20.8112 15.5377C20.865 15.7526 20.7072 16 20.3947 16V17C21.2654 17 22.0149 16.2277 21.7812 15.2948L20.8112 15.5377Z" fill="#323232"/>
7
+ <path d="M2.69599 15.4162L3.18101 15.5377L2.69599 15.4162ZM9.32031 13.1176L9.73552 12.839L10.0418 13.2955L9.55845 13.5572L9.32031 13.1176ZM6.81122 16.5L7.29152 16.639L7.18707 17H6.81122V16.5ZM6.49252 12C5.4648 12 4.74301 12.5027 4.21421 13.2069C3.67483 13.9253 3.35809 14.8306 3.18101 15.5377L2.21096 15.2948C2.4021 14.5315 2.75968 13.4787 3.41453 12.6065C4.07996 11.7203 5.07234 11 6.49252 11V12ZM8.90511 13.3962C8.36534 12.5917 7.60602 12 6.49252 12V11C8.03934 11 9.07372 11.8526 9.73552 12.839L8.90511 13.3962ZM9.55845 13.5572C8.26388 14.2585 7.61472 15.5218 7.29152 16.639L6.33091 16.361C6.68988 15.1203 7.45298 13.5604 9.08217 12.6779L9.55845 13.5572ZM3.59753 16H6.81122V17H3.59753V16ZM3.18101 15.5377C3.1272 15.7526 3.28503 16 3.59753 16V17C2.7268 17 1.97734 16.2277 2.21096 15.2948L3.18101 15.5377Z" fill="#323232"/>
8
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5 11.784C5 10.4262 5 9.74733 5.27446 9.15059C5.54892 8.55385 6.06437 8.11204 7.09525 7.22842L8.09525 6.37128C9.95857 4.77415 10.8902 3.97559 12 3.97559C13.1098 3.97559 14.0414 4.77415 15.9047 6.37128L16.9047 7.22842C17.9356 8.11204 18.4511 8.55385 18.7255 9.15059C19 9.74733 19 10.4262 19 11.784V16.0244C19 17.91 19 18.8528 18.4142 19.4386C17.8284 20.0244 16.8856 20.0244 15 20.0244H9C7.11438 20.0244 6.17157 20.0244 5.58579 19.4386C5 18.8528 5 17.91 5 16.0244V11.784Z" stroke="#323232"/>
3
+ <path d="M14.5 20.0244V15.0244C14.5 14.4721 14.0523 14.0244 13.5 14.0244H10.5C9.94772 14.0244 9.5 14.4721 9.5 15.0244V20.0244" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3 11C3 7.22876 3 5.34315 4.17157 4.17157C5.34315 3 7.22876 3 11 3H13C16.7712 3 18.6569 3 19.8284 4.17157C21 5.34315 21 7.22876 21 11V13C21 16.7712 21 18.6569 19.8284 19.8284C18.6569 21 16.7712 21 13 21H11C7.22876 21 5.34315 21 4.17157 19.8284C3 18.6569 3 16.7712 3 13V11Z" stroke="#323232"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.08338 12.2493C8.75032 11.3475 10.1585 11.5819 10.4974 12.6511L10.7173 13.3449C11.2112 14.9033 13.2637 15.2449 14.2358 13.9305C14.6365 13.3887 15.4469 13.3887 15.8476 13.9305L17.598 16.2973C17.7622 16.5193 18.0753 16.5662 18.2973 16.402C18.5194 16.2378 18.5662 15.9247 18.402 15.7027L16.6516 13.3359C15.8511 12.2536 14.2322 12.2536 13.4318 13.3359C12.9452 13.9938 11.9178 13.8228 11.6705 13.0427L11.4506 12.3489C10.865 10.5014 8.43183 10.0964 7.27938 11.6547L5.39491 14.2027C5.2307 14.4247 5.27757 14.7378 5.49959 14.902C5.72161 15.0662 6.03471 15.0193 6.19891 14.7973L8.08338 12.2493Z" fill="#323232"/>
4
+ <circle cx="16.5" cy="7.5" r="1.5" fill="#323232"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7 9L12 14M12 14L17 9M12 14L12 5" stroke="#323232" stroke-linecap="round"/>
3
+ <path d="M5 16L5 17C5 18.1046 5.89543 19 7 19L17 19C18.1046 19 19 18.1046 19 17V16" stroke="#323232" stroke-linecap="round"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="12" cy="12.8677" r="8" fill="#A7EFFF"/>
3
+ <circle cx="12" cy="9.99902" r="0.5" transform="rotate(-180 12 9.99902)" fill="white"/>
4
+ <line x1="12" y1="15.7363" x2="12" y2="11.7363" stroke="white" stroke-linecap="round"/>
5
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_413_9493)">
3
+ <circle cx="12" cy="12.8677" r="12" fill="#A7EFFF"/>
4
+ <circle cx="12" cy="8.11768" r="0.75" transform="rotate(-180 12 8.11768)" fill="white"/>
5
+ <line x1="12" y1="17.6177" x2="12" y2="11.1177" stroke="white" stroke-width="1.5" stroke-linecap="round"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_413_9493">
9
+ <rect width="24" height="24" fill="white" transform="translate(0 0.867676)"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.0001 7.76245C9.164 7.76245 6.86493 10.0615 6.86493 12.8976C6.86493 15.7337 9.164 18.0327 12.0001 18.0327C14.8361 18.0327 17.1352 15.7337 17.1352 12.8976C17.1352 10.0615 14.8361 7.76245 12.0001 7.76245ZM12.0001 16.2309C10.1591 16.2309 8.66673 14.7385 8.66673 12.8976C8.66673 11.0566 10.1591 9.56425 12.0001 9.56425C13.841 9.56425 15.3334 11.0566 15.3334 12.8976C15.3334 14.7385 13.841 16.2309 12.0001 16.2309Z" fill="#ADACAC"/>
3
+ <path d="M17.338 8.75956C18.0008 8.75956 18.538 8.22233 18.538 7.55955C18.538 6.89682 18.0008 6.35959 17.338 6.35959C16.6753 6.35959 16.138 6.89682 16.138 7.55955C16.138 8.22233 16.6753 8.75956 17.338 8.75956Z" fill="#ADACAC"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12 2.89758C9.28417 2.89758 8.94362 2.90911 7.87702 2.95778C6.81264 3.00633 6.08568 3.17536 5.44958 3.42259C4.792 3.67813 4.23431 4.02009 3.6784 4.57603C3.12247 5.13193 2.78051 5.68963 2.52496 6.34721C2.27774 6.98326 2.10871 7.71022 2.06016 8.7746C2.01148 9.8412 2 10.1818 2 12.8976C2 15.6134 2.01148 15.954 2.06016 17.0206C2.10871 18.0849 2.27774 18.8119 2.52496 19.448C2.78051 20.1055 3.12247 20.6632 3.6784 21.2192C4.23431 21.7751 4.792 22.1171 5.44958 22.3726C6.08568 22.6198 6.81264 22.7889 7.87702 22.8374C8.94362 22.8861 9.28417 22.8976 12 22.8976C14.7158 22.8976 15.0564 22.8861 16.123 22.8374C17.1874 22.7889 17.9143 22.6198 18.5504 22.3726C19.208 22.1171 19.7657 21.7751 20.3216 21.2192C20.8775 20.6632 21.2195 20.1055 21.475 19.448C21.7222 18.8119 21.8913 18.0849 21.9398 17.0206C21.9885 15.954 22 15.6134 22 12.8976C22 10.1818 21.9885 9.8412 21.9398 8.7746C21.8913 7.71022 21.7222 6.98326 21.475 6.34721C21.2195 5.68963 20.8775 5.13193 20.3216 4.57603C19.7657 4.02009 19.208 3.67813 18.5504 3.42259C17.9143 3.17536 17.1874 3.00633 16.123 2.95778C15.0564 2.90911 14.7158 2.89758 12 2.89758ZM12 4.69943C14.6701 4.69943 14.9864 4.70958 16.0409 4.75771C17.0158 4.8022 17.5453 4.96509 17.8977 5.10201C18.3645 5.28341 18.6976 5.50013 19.0475 5.85006C19.3975 6.19998 19.6142 6.53314 19.7956 6.99986C19.9325 7.35225 20.0954 7.88174 20.1399 8.85671C20.188 9.9112 20.1982 10.2275 20.1982 12.8976C20.1982 15.5677 20.188 15.884 20.1399 16.9385C20.0954 17.9134 19.9325 18.4429 19.7956 18.7953C19.6142 19.2621 19.3975 19.5952 19.0475 19.9451C18.6976 20.2951 18.3645 20.5118 17.8977 20.6932C17.5453 20.8301 17.0158 20.993 16.0409 21.0375C14.9866 21.0856 14.6703 21.0958 12 21.0958C9.32968 21.0958 9.0135 21.0856 7.95912 21.0375C6.98416 20.993 6.45467 20.8301 6.10228 20.6932C5.63552 20.5118 5.3024 20.2951 4.95243 19.9451C4.60251 19.5952 4.38579 19.2621 4.20442 18.7953C4.06747 18.4429 3.90458 17.9134 3.86009 16.9385C3.81196 15.884 3.8018 15.5677 3.8018 12.8976C3.8018 10.2275 3.81196 9.9112 3.86009 8.85671C3.90458 7.88174 4.06747 7.35225 4.20442 6.99986C4.38579 6.53314 4.60251 6.19998 4.95243 5.85006C5.3024 5.50013 5.63552 5.28341 6.10228 5.10201C6.45467 4.96509 6.98416 4.8022 7.95912 4.75771C9.01362 4.70958 9.32991 4.69943 12 4.69943Z" fill="#ADACAC"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9 8L5 12M5 12L9 16M5 12H17" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.094 4.00051C10.5119 3.98199 8.95977 4.43305 7.63398 5.29665C6.30819 6.16025 5.26826 7.39759 4.6457 8.85222C4.02313 10.3068 3.8459 11.9134 4.1364 13.4688C4.4269 15.0241 5.1721 16.4584 6.27775 17.5902C7.3834 18.7221 8.79985 19.5006 10.348 19.8274C11.8961 20.1543 13.5064 20.0147 14.9752 19.4263C16.444 18.838 17.7053 17.8273 18.5997 16.522C19.4941 15.2168 19.9813 13.6757 19.9999 12.0936" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7.07051 1.00041C5.8839 0.986525 4.71983 1.32482 3.72548 1.97252C2.73114 2.62022 1.9512 3.54823 1.48427 4.63919C1.01735 5.73016 0.884422 6.93509 1.1023 8.1016C1.32018 9.26812 1.87907 10.3438 2.70831 11.1927C3.53755 12.0416 4.59989 12.6255 5.76098 12.8706C6.92208 13.1157 8.12979 13.011 9.23139 12.5698C10.333 12.1285 11.279 11.3705 11.9498 10.3916C12.6206 9.41265 12.986 8.25681 12.9999 7.07021" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg width="33" height="33" viewBox="0 0 33 33" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.5473 4.43087C14.1741 4.4031 11.8459 5.0797 9.85722 6.37509C7.86854 7.67049 6.30864 9.52651 5.3748 11.7084C4.44095 13.8904 4.17509 16.3002 4.61085 18.6333C5.0466 20.9663 6.16439 23.1177 7.82287 24.8155C9.48135 26.5132 11.606 27.681 13.9282 28.1713C16.2504 28.6615 18.6658 28.4521 20.869 27.5696C23.0722 26.687 24.9642 25.171 26.3058 23.2132C27.6474 21.2554 28.3783 18.9437 28.406 16.5705" stroke="url(#paint0_linear_2055_36886)" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <defs>
4
+ <linearGradient id="paint0_linear_2055_36886" x1="16.2664" y1="28.4292" x2="16.5473" y2="4.43087" gradientUnits="userSpaceOnUse">
5
+ <stop stop-color="#651FFF"/>
6
+ <stop offset="1" stop-color="#BA9BFF"/>
7
+ </linearGradient>
8
+ </defs>
9
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2.5 5.7C2.5 4.57989 2.5 4.01984 2.71799 3.59202C2.90973 3.21569 3.21569 2.90973 3.59202 2.71799C4.01984 2.5 4.5799 2.5 5.7 2.5H18.3C19.4201 2.5 19.9802 2.5 20.408 2.71799C20.7843 2.90973 21.0903 3.21569 21.282 3.59202C21.5 4.01984 21.5 4.5799 21.5 5.7V18.3C21.5 19.4201 21.5 19.9802 21.282 20.408C21.0903 20.7843 20.7843 21.0903 20.408 21.282C19.9802 21.5 19.4201 21.5 18.3 21.5H5.7C4.57989 21.5 4.01984 21.5 3.59202 21.282C3.21569 21.0903 2.90973 20.7843 2.71799 20.408C2.5 19.9802 2.5 19.4201 2.5 18.3V5.7Z" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M12.5 15.0294C12.5 17.1878 10.3603 18.704 9.42687 19.2628C9.16233 19.4211 8.83767 19.4211 8.57313 19.2628C7.63974 18.704 5.5 17.1878 5.5 15.0294C5.5 12.9118 7.19587 11.5 9 11.5C10.8667 11.5 12.5 12.9118 12.5 15.0294Z" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M18.5 21.5L12.5 6.5" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M21.5 4.5L2.5 8.5" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <circle cx="9" cy="15" r="1" fill="#323232"/>
7
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="14" y="2" width="4" height="4" rx="2" transform="rotate(90 14 2)" fill="#323232"/>
3
+ <rect x="14" y="10" width="4" height="4" rx="2" transform="rotate(90 14 10)" fill="#323232"/>
4
+ <rect x="14" y="18" width="4" height="4" rx="2" transform="rotate(90 14 18)" fill="#323232"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5 6H19" stroke="#323232" stroke-linecap="round"/>
3
+ <path d="M7.19461 9.80518L5 11.9997M5 11.9997L7.19461 14.1945M5 11.9997H18.9177" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M5 18H19" stroke="#323232" stroke-linecap="round"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3.5 11C3.5 9.10025 3.50106 7.72573 3.64199 6.67754C3.78098 5.64373 4.04772 5.00253 4.52513 4.52513C5.00253 4.04772 5.64373 3.78098 6.67754 3.64199C7.72573 3.50106 9.10025 3.5 11 3.5H13C14.8998 3.5 16.2743 3.50106 17.3225 3.64199C18.3563 3.78098 18.9975 4.04772 19.4749 4.52513C19.9523 5.00253 20.219 5.64373 20.358 6.67754C20.4989 7.72573 20.5 9.10025 20.5 11V13C20.5 14.8998 20.4989 16.2743 20.358 17.3225C20.219 18.3563 19.9523 18.9975 19.4749 19.4749C18.9975 19.9523 18.3563 20.219 17.3225 20.358C16.2743 20.4989 14.8998 20.5 13 20.5H11C9.10025 20.5 7.72573 20.4989 6.67754 20.358C5.64373 20.219 5.00253 19.9523 4.52513 19.4749C4.04772 18.9975 3.78098 18.3563 3.64199 17.3225C3.50106 16.2743 3.5 14.8998 3.5 13V11Z" stroke="#323232"/>
3
+ <path d="M16 12L8 12" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.20313 14C3.26032 14 2.78891 14 2.49602 13.6095C2.20312 13.219 2.20312 12.5904 2.20312 11.3333V4.66667C2.20312 3.40959 2.20312 2.78105 2.49602 2.39052C2.78891 2 3.26032 2 4.20312 2M9.20313 2C10.1459 2 10.6173 2 10.9102 2.39052C11.2031 2.78105 11.2031 3.40959 11.2031 4.66667" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <rect x="5.79688" y="6.05908" width="8" height="9" rx="2" stroke="#323232"/>
4
+ <path d="M7.79688 8.05908L10.7969 8.05908" stroke="#323232" stroke-linecap="round"/>
5
+ <path d="M7.79688 13.3923L9.79688 13.3923" stroke="#323232" stroke-linecap="round"/>
6
+ <path d="M7.79688 10.7258L11.7969 10.7258" stroke="#323232" stroke-linecap="round"/>
7
+ <rect x="4.20312" y="0.666504" width="5" height="3" rx="1.5" stroke="#323232"/>
8
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="12" cy="12" r="9" stroke="#323232"/>
3
+ <path d="M12 12H21" stroke="#323232" stroke-linecap="round"/>
4
+ <path d="M12 3V11.9379C12 11.9777 12.0158 12.0158 12.0439 12.0439L18 18" stroke="#323232" stroke-linecap="round"/>
5
+ </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="M8.69826 3.40949C9.35132 2.97412 9.67785 2.75643 10.0336 2.79166C10.3894 2.82689 10.6669 3.10439 11.2219 3.65938L12.3406 4.77812C12.8956 5.33311 13.1731 5.61061 13.2083 5.96638C13.2436 6.32215 13.0259 6.64868 12.5905 7.30174L11.7413 8.57559C11.6283 8.74498 11.5719 8.82967 11.518 8.91503C11.0329 9.68406 10.6825 10.5302 10.4817 11.417C10.4594 11.5154 10.4395 11.6152 10.3995 11.8148L10.2682 12.4714C10.171 12.9575 9.60766 13.1851 9.20002 12.9029V12.9029C6.81539 11.252 4.748 9.18461 3.0971 6.79998V6.79998C2.81489 6.39234 3.04246 5.82901 3.52863 5.73177L4.18516 5.60047C4.38478 5.56054 4.4846 5.54058 4.58303 5.5183C5.46984 5.31754 6.31594 4.96708 7.08497 4.48196C7.17033 4.42811 7.25502 4.37165 7.42441 4.25873L8.69826 3.40949Z" stroke="#323232"/>
3
+ <path d="M2.75751 13.0794L5.58594 10.251" stroke="#323232" stroke-linecap="round"/>
4
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="12" cy="12" r="9.5" stroke="#323232" stroke-linecap="round"/>
3
+ <path d="M8.20857 16.622C8.63044 16.2567 9.20751 15.9763 9.86133 15.7876C10.5191 15.5977 11.256 15.5 12 15.5C12.744 15.5 13.4809 15.5977 14.1387 15.7876C14.7925 15.9763 15.3696 16.2567 15.7914 16.622" stroke="#323232" stroke-linecap="round"/>
4
+ <path d="M9.5 9C9.74028 9 9.86042 9 9.93306 9.12245C10.0057 9.2449 9.96299 9.32308 9.87758 9.47943C9.8323 9.56233 9.7751 9.63911 9.70711 9.70711C9.51957 9.89464 9.26522 10 9 10C8.73478 10 8.48043 9.89464 8.29289 9.70711C8.2249 9.63911 8.16771 9.56233 8.12242 9.47944C8.03701 9.32308 7.9943 9.2449 8.06694 9.12245C8.13958 9 8.25972 9 8.5 9L9 9H9.5Z" fill="#323232" stroke="#323232" stroke-linecap="round"/>
5
+ <path d="M15.5 9C15.7403 9 15.8604 9 15.9331 9.12245C16.0057 9.2449 15.963 9.32308 15.8776 9.47943C15.8323 9.56233 15.7751 9.63911 15.7071 9.70711C15.5196 9.89464 15.2652 10 15 10C14.7348 10 14.4804 9.89464 14.2929 9.70711C14.2249 9.63911 14.1677 9.56233 14.1224 9.47944C14.037 9.32308 13.9943 9.2449 14.0669 9.12245C14.1396 9 14.2597 9 14.5 9L15 9H15.5Z" fill="#323232" stroke="#323232" stroke-linecap="round"/>
6
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="11" cy="11" r="6" stroke="#323232"/>
3
+ <path d="M20 20L17 17" stroke="#323232" stroke-linecap="round"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M14.1361 3.36136H14.6361V3.33642L14.6337 3.3116L14.1361 3.36136ZM14.1361 3.36137H13.6361V3.38631L13.6386 3.41112L14.1361 3.36137ZM14.4309 4.81738L14.8285 4.51421L14.8285 4.51421L14.4309 4.81738ZM15.3596 5.20208L15.2929 4.70656L15.3596 5.20208ZM16.5975 4.38101L16.3202 3.96498L16.2998 3.97855L16.2809 3.99403L16.5975 4.38101ZM16.5975 4.381L16.8749 4.79703L16.8952 4.78347L16.9142 4.76798L16.5975 4.381ZM17.2847 3.90923L17.4369 4.38549L17.4369 4.38549L17.2847 3.90923ZM17.9869 3.94425L17.788 4.403L17.788 4.403L17.9869 3.94425ZM18.6237 4.48206L18.9772 4.12851V4.12851L18.6237 4.48206ZM19.5173 5.37568L19.8708 5.02213L19.5173 5.37568ZM20.0553 6.01274L20.5141 5.81394L20.0553 6.01274ZM20.0903 6.71466L20.5666 6.86682V6.86682L20.0903 6.71466ZM19.6184 7.40207L19.9921 7.73426L19.9989 7.72661L20.0053 7.71869L19.6184 7.40207ZM19.6184 7.40209L19.2446 7.06991L19.2379 7.07755L19.2314 7.08547L19.6184 7.40209ZM18.797 8.64049L18.3015 8.57382V8.57382L18.797 8.64049ZM19.1816 9.56889L18.8783 9.96643L18.8783 9.96643L19.1816 9.56889ZM20.6383 9.86383L20.5885 10.3613L20.6383 9.86383ZM21.4585 10.0163L21.6878 9.57195L21.6878 9.57195L21.4585 10.0163ZM21.9299 10.5372L22.3949 10.3533L22.3949 10.3533L21.9299 10.5372ZM21.9301 13.4624L22.3951 13.6461V13.6461L21.9301 13.4624ZM21.4581 13.9839L21.6871 14.4284H21.6872L21.4581 13.9839ZM20.639 14.1361L20.6887 14.6336L20.639 14.1361ZM19.1837 14.4307L19.4867 14.8283L19.4867 14.8283L19.1837 14.4307ZM18.7988 15.3598L19.2943 15.2929V15.2929L18.7988 15.3598ZM19.6198 16.5974L19.2328 16.914L19.6198 16.5974ZM20.0918 17.2848L19.6155 17.437L20.0918 17.2848ZM20.0568 17.9869L20.5155 18.1857L20.0568 17.9869ZM17.988 20.0555L17.7893 19.5966H17.7893L17.988 20.0555ZM17.2866 20.0905L17.1346 20.5668L17.2866 20.0905ZM16.5986 19.6182L16.9152 19.2312L16.5986 19.6182ZM15.3591 18.7963L15.4256 18.3007L15.3591 18.7963ZM14.4315 19.1805L14.8288 19.484L14.4315 19.1805ZM14.1362 20.6382L13.6387 20.5884L14.1362 20.6382ZM13.9836 21.4587L13.5393 21.2293H13.5393L13.9836 21.4587ZM13.463 21.9298L13.647 22.3948L13.647 22.3948L13.463 21.9298ZM10.5372 21.9299L10.7211 21.465L10.7211 21.465L10.5372 21.9299ZM10.0163 21.4585L10.4606 21.2292L10.4606 21.2292L10.0163 21.4585ZM9.86384 20.6384L10.3614 20.5887L9.86384 20.6384ZM9.56879 19.1815L9.96628 18.8782H9.96628L9.56879 19.1815ZM8.64068 18.7971L8.5741 18.3015L8.64068 18.7971ZM7.40177 19.6187L7.71839 20.0057L7.40177 19.6187ZM6.71395 20.0909L6.86602 20.5672H6.86602L6.71395 20.0909ZM6.01237 20.0559L6.21109 19.5971H6.21109L6.01237 20.0559ZM5.37498 19.5177L5.72854 19.1641H5.72854L5.37498 19.5177ZM4.48169 18.6244L4.1054 18.9536L4.11637 18.9661L4.12814 18.9779L4.48169 18.6244ZM4.48168 18.6244L4.85797 18.2951L4.84701 18.2826L4.83524 18.2708L4.48168 18.6244ZM3.94364 17.9872L3.48486 18.186L3.48486 18.186L3.94364 17.9872ZM3.90864 17.2854L3.43235 17.1332L3.43235 17.1332L3.90864 17.2854ZM4.3807 16.5978L4.76768 16.9144L4.3807 16.5978ZM5.202 15.3596L5.69752 15.4263V15.4263L5.202 15.3596ZM4.81733 14.4309L4.51414 14.8285L4.51414 14.8285L4.81733 14.4309ZM3.36128 14.1361L3.41104 13.6386L3.38622 13.6361H3.36128V14.1361ZM3.36128 14.1361L3.31152 14.6336L3.33634 14.6361H3.36128V14.1361ZM2.54172 13.9838L2.31258 14.4282L2.31258 14.4282L2.54172 13.9838ZM2.07 13.4626L1.605 13.6464H1.605L2.07 13.4626ZM2.07017 10.537L2.53509 10.721H2.53509L2.07017 10.537ZM2.54131 10.0164L2.77065 10.4607L2.77066 10.4607L2.54131 10.0164ZM3.36203 9.8638L3.41178 10.3613L3.36203 9.8638ZM4.81934 9.5687L4.51601 9.17122L4.51601 9.17122L4.81934 9.5687ZM5.20377 8.6406L5.69932 8.57403V8.57403L5.20377 8.6406ZM4.38221 7.40176L3.98221 7.70176L3.98854 7.71021L3.99523 7.71838L4.38221 7.40176ZM4.3822 7.40176L4.7822 7.10176L4.76088 7.07333L4.73576 7.0482L4.3822 7.40176ZM4.3822 7.40175L3.99522 7.71837L4.01101 7.73767L4.02865 7.75531L4.3822 7.40175ZM3.91012 6.71408L4.38643 6.56198L4.38643 6.56198L3.91012 6.71408ZM3.94512 6.0124L3.48631 5.81366L3.48631 5.81366L3.94512 6.0124ZM5.3769 4.4815L5.73045 4.83505H5.73045L5.3769 4.4815ZM6.01346 3.94385L6.21239 4.40258L6.21239 4.40258L6.01346 3.94385ZM6.7159 3.90882L6.56361 4.38506L6.56361 4.38506L6.7159 3.90882ZM7.40281 4.38046L7.73206 4.00417L7.72583 3.99872L7.71942 3.99348L7.40281 4.38046ZM7.40281 4.38047L7.07356 4.75676L7.07979 4.76221L7.08619 4.76745L7.40281 4.38047ZM8.64023 5.20129L8.70711 4.70578H8.70711L8.64023 5.20129ZM9.56932 4.81645L9.96698 5.11954L9.56932 4.81645ZM9.86389 3.36106L9.36637 3.31131V3.31131L9.86389 3.36106ZM10.0161 2.54188L10.4605 2.77094V2.77094L10.0161 2.54188ZM10.5376 2.06994L10.7213 2.53497L10.7213 2.53497L10.5376 2.06994ZM13.4626 2.07001L13.2788 2.53501V2.53501L13.4626 2.07001ZM13.9838 2.5417L14.4282 2.31255L14.4282 2.31255L13.9838 2.5417ZM14.6361 3.36136V3.36136H13.6361V3.36136H14.6361ZM14.6361 3.36137V3.36136H13.6361V3.36137H14.6361ZM14.8285 4.51421C14.8172 4.49938 14.7805 4.43828 14.742 4.22413C14.7043 4.01476 14.6755 3.7303 14.6337 3.31162L13.6386 3.41112C13.6788 3.81303 13.7115 4.144 13.7578 4.40121C13.8032 4.65363 13.8729 4.91024 14.0333 5.12055L14.8285 4.51421ZM15.2929 4.70656C15.1148 4.73056 14.9375 4.65712 14.8285 4.51421L14.0333 5.12054C14.3602 5.5493 14.8921 5.76961 15.4264 5.6976L15.2929 4.70656ZM16.2809 3.99403C15.9553 4.26046 15.7338 4.44121 15.5591 4.56261C15.3805 4.68678 15.3113 4.70407 15.2929 4.70656L15.4264 5.6976C15.6885 5.66228 15.9192 5.53012 16.1298 5.38375C16.3444 5.23461 16.6016 5.02374 16.9142 4.76799L16.2809 3.99403ZM16.3202 3.96498L16.3202 3.96498L16.8749 4.79703L16.8749 4.79703L16.3202 3.96498ZM17.1324 3.43297C16.9726 3.48407 16.8371 3.56517 16.7094 3.6562C16.5857 3.74434 16.4444 3.8603 16.2809 3.99403L16.9142 4.76798C17.0879 4.62585 17.1994 4.53491 17.2897 4.47062C17.3758 4.40922 17.4154 4.39237 17.4369 4.38549L17.1324 3.43297ZM18.1857 3.4855C17.8526 3.34108 17.4783 3.32241 17.1324 3.43297L17.4369 4.38549C17.5522 4.34864 17.677 4.35486 17.788 4.403L18.1857 3.4855ZM18.9772 4.12851C18.8279 3.97918 18.6988 3.84974 18.5845 3.74972C18.4664 3.64643 18.3397 3.55226 18.1857 3.4855L17.788 4.403C17.8087 4.41198 17.8464 4.43269 17.9261 4.50236C18.0094 4.57531 18.1114 4.6769 18.2701 4.83562L18.9772 4.12851ZM19.8708 5.02213L18.9772 4.12851L18.2701 4.83562L19.1637 5.72923L19.8708 5.02213ZM20.5141 5.81394C20.4473 5.65986 20.3531 5.53313 20.2498 5.41501C20.1497 5.30065 20.0202 5.17152 19.8708 5.02213L19.1637 5.72923C19.3225 5.88801 19.4241 5.99001 19.4971 6.07343C19.5668 6.1531 19.5875 6.19081 19.5965 6.21154L20.5141 5.81394ZM20.5666 6.86682C20.677 6.52106 20.6584 6.14698 20.5141 5.81394L19.5965 6.21154C19.6446 6.32255 19.6508 6.44725 19.614 6.5625L20.5666 6.86682ZM20.0053 7.71869C20.1391 7.55518 20.2551 7.41381 20.3433 7.29006C20.4344 7.16225 20.5155 7.02677 20.5666 6.86682L19.614 6.56249C19.6071 6.58401 19.5903 6.6236 19.5289 6.7098C19.4645 6.80007 19.3736 6.91167 19.2314 7.08546L20.0053 7.71869ZM19.9921 7.73427L19.9921 7.73426L19.2447 7.06989L19.2446 7.06991L19.9921 7.73427ZM19.2925 8.70715C19.295 8.68866 19.3123 8.61952 19.4365 8.4408C19.558 8.26606 19.7388 8.04447 20.0053 7.71871L19.2314 7.08547C18.9755 7.39817 18.7646 7.65543 18.6154 7.8701C18.4689 8.08079 18.3368 8.31162 18.3015 8.57382L19.2925 8.70715ZM19.4848 9.17136C19.342 9.0624 19.2686 8.8852 19.2925 8.70715L18.3015 8.57382C18.2296 9.10794 18.4498 9.63956 18.8783 9.96643L19.4848 9.17136ZM20.688 9.36631C20.2691 9.32442 19.9845 9.29559 19.775 9.25789C19.5608 9.21934 19.4997 9.18267 19.4848 9.17136L18.8783 9.96643C19.0887 10.1269 19.3454 10.1966 19.5979 10.2421C19.8553 10.2884 20.1864 10.3211 20.5885 10.3613L20.688 9.36631ZM21.6878 9.57195C21.5385 9.49493 21.3852 9.45647 21.2304 9.43047C21.0805 9.40529 20.8984 9.38734 20.688 9.36631L20.5885 10.3613C20.8121 10.3837 20.9554 10.3983 21.0648 10.4167C21.1693 10.4342 21.2092 10.4503 21.2293 10.4606L21.6878 9.57195ZM22.3949 10.3533C22.2614 10.0159 22.0102 9.73831 21.6878 9.57195L21.2293 10.4606C21.3367 10.5161 21.4205 10.6086 21.465 10.7211L22.3949 10.3533ZM22.5 11.3684C22.5 11.157 22.5003 10.9741 22.4901 10.8224C22.4797 10.6658 22.4566 10.5095 22.3949 10.3533L21.465 10.7211C21.4733 10.7421 21.4853 10.7834 21.4923 10.8891C21.4997 10.9997 21.5 11.1438 21.5 11.3684H22.5ZM22.5 12.6322V11.3684H21.5V12.6322H22.5ZM22.3951 13.6461C22.4567 13.49 22.4797 13.3339 22.4902 13.1775C22.5003 13.026 22.5 12.8433 22.5 12.6322H21.5C21.5 12.8565 21.4997 13.0004 21.4924 13.1109C21.4853 13.2164 21.4733 13.2577 21.465 13.2787L22.3951 13.6461ZM21.6872 14.4284C22.0101 14.2619 22.2616 13.984 22.3951 13.6461L21.465 13.2787C21.4205 13.3913 21.3367 13.484 21.229 13.5395L21.6872 14.4284ZM20.6887 14.6336C20.8988 14.6126 21.0806 14.5947 21.2303 14.5696C21.385 14.5436 21.538 14.5052 21.6871 14.4284L21.229 13.5395C21.209 13.5498 21.1691 13.5658 21.0648 13.5834C20.9556 13.6017 20.8125 13.6163 20.5892 13.6386L20.6887 14.6336ZM19.4867 14.8283C19.5016 14.817 19.5626 14.7804 19.7767 14.7419C19.9859 14.7043 20.2703 14.6755 20.6887 14.6336L20.5892 13.6386C20.1875 13.6788 19.8567 13.7115 19.5996 13.7577C19.3473 13.8031 19.0908 13.8727 18.8806 14.033L19.4867 14.8283ZM19.2943 15.2929C19.2703 15.1147 19.3437 14.9373 19.4867 14.8283L18.8806 14.033C18.4516 14.3599 18.2311 14.8921 18.3033 15.4267L19.2943 15.2929ZM20.0068 16.2808C19.7404 15.9552 19.5597 15.7337 19.4383 15.5591C19.3141 15.3804 19.2968 15.3114 19.2943 15.2929L18.3033 15.4267C18.3387 15.6887 18.4708 15.9193 18.6172 16.1299C18.7663 16.3444 18.9771 16.6015 19.2328 16.914L20.0068 16.2808ZM20.568 17.1326C20.5169 16.9727 20.4358 16.8372 20.3448 16.7094C20.2566 16.5857 20.1406 16.4443 20.0068 16.2808L19.2328 16.914C19.375 17.0878 19.466 17.1994 19.5303 17.2897C19.5918 17.3759 19.6086 17.4155 19.6155 17.437L20.568 17.1326ZM20.5155 18.1857C20.6599 17.8526 20.6786 17.4784 20.568 17.1326L19.6155 17.437C19.6523 17.5523 19.6461 17.677 19.598 17.7881L20.5155 18.1857ZM19.8724 18.9774C20.0218 18.828 20.1512 18.6989 20.2513 18.5846C20.3546 18.4665 20.4488 18.3398 20.5155 18.1857L19.598 17.7881C19.589 17.8088 19.5683 17.8465 19.4986 17.9261C19.4257 18.0095 19.3241 18.1115 19.1653 18.2702L19.8724 18.9774ZM18.9791 19.8706L19.8724 18.9774L19.1653 18.2702L18.272 19.1635L18.9791 19.8706ZM18.1866 20.5143C18.3408 20.4476 18.4677 20.3533 18.5859 20.2499C18.7004 20.1498 18.8296 20.0202 18.9791 19.8706L18.272 19.1635C18.1131 19.3225 18.011 19.4242 17.9275 19.4972C17.8478 19.5669 17.8101 19.5877 17.7893 19.5966L18.1866 20.5143ZM17.1346 20.5668C17.4801 20.6771 17.8538 20.6584 18.1866 20.5143L17.7893 19.5966C17.6784 19.6447 17.5538 19.6509 17.4386 19.6141L17.1346 20.5668ZM16.282 20.0052C16.4456 20.1391 16.5871 20.2552 16.711 20.3434C16.8389 20.4345 16.9745 20.5157 17.1346 20.5668L17.4386 19.6141C17.4171 19.6073 17.3775 19.5904 17.2912 19.5289C17.2009 19.4646 17.0892 19.3735 16.9152 19.2312L16.282 20.0052ZM15.2927 19.2918C15.3112 19.2943 15.3804 19.3116 15.5593 19.4359C15.7342 19.5574 15.9559 19.7384 16.282 20.0052L16.9152 19.2312C16.6022 18.9751 16.3448 18.764 16.1299 18.6147C15.919 18.4682 15.688 18.3359 15.4256 18.3007L15.2927 19.2918ZM14.8288 19.484C14.9378 19.3413 15.1148 19.268 15.2927 19.2918L15.4256 18.3007C14.8919 18.2292 14.3608 18.4491 14.0341 18.8771L14.8288 19.484ZM14.6337 20.6879C14.6756 20.2687 14.7045 19.9839 14.7422 19.7743C14.7808 19.56 14.8175 19.4988 14.8288 19.484L14.0341 18.8771C13.8734 19.0875 13.8035 19.3444 13.758 19.5972C13.7117 19.8547 13.6789 20.186 13.6387 20.5884L14.6337 20.6879ZM14.4279 21.688C14.505 21.5387 14.5435 21.3854 14.5695 21.2305C14.5947 21.0805 14.6127 20.8983 14.6337 20.6879L13.6387 20.5884C13.6163 20.8121 13.6017 20.9554 13.5833 21.0648C13.5658 21.1693 13.5497 21.2092 13.5393 21.2293L14.4279 21.688ZM13.647 22.3948C13.9842 22.2613 14.2616 22.0102 14.4279 21.688L13.5393 21.2293C13.4839 21.3367 13.3914 21.4204 13.279 21.4649L13.647 22.3948ZM12.6314 22.5C12.8428 22.5 13.0259 22.5003 13.1776 22.4901C13.3343 22.4796 13.4907 22.4566 13.647 22.3948L13.279 21.4649C13.258 21.4732 13.2166 21.4853 13.1109 21.4923C13.0002 21.4997 12.8561 21.5 12.6314 21.5V22.5ZM11.3684 22.5H12.6314V21.5H11.3684V22.5ZM10.3533 22.3949C10.5095 22.4566 10.6658 22.4797 10.8224 22.4901C10.9741 22.5003 11.157 22.5 11.3684 22.5V21.5C11.1437 21.5 10.9997 21.4997 10.8891 21.4924C10.7834 21.4853 10.7421 21.4733 10.7211 21.465L10.3533 22.3949ZM9.57194 21.6877C9.7383 22.0102 10.0159 22.2614 10.3533 22.3949L10.7211 21.465C10.6086 21.4205 10.5161 21.3367 10.4606 21.2292L9.57194 21.6877ZM9.36632 20.6882C9.38735 20.8985 9.4053 21.0805 9.43047 21.2304C9.45647 21.3853 9.49492 21.5385 9.57194 21.6877L10.4606 21.2292C10.4503 21.2092 10.4342 21.1692 10.4167 21.0648C10.3983 20.9555 10.3837 20.8122 10.3614 20.5887L9.36632 20.6882ZM9.17131 19.4848C9.18264 19.4997 9.21932 19.5608 9.25789 19.7751C9.29559 19.9846 9.32443 20.2692 9.36632 20.6882L10.3614 20.5887C10.3211 20.1865 10.2884 19.8553 10.2421 19.5979C10.1966 19.3454 10.1268 19.0886 9.96628 18.8782L9.17131 19.4848ZM8.70725 19.2926C8.88523 19.2687 9.06237 19.3421 9.17131 19.4848L9.96628 18.8782C9.63945 18.4499 9.10804 18.2298 8.5741 18.3015L8.70725 19.2926ZM7.71839 20.0057C8.04429 19.739 8.26597 19.5581 8.44079 19.4366C8.61959 19.3124 8.68876 19.2951 8.70725 19.2926L8.5741 18.3015C8.31179 18.3368 8.08087 18.469 7.87011 18.6155C7.65535 18.7647 7.39799 18.9758 7.08515 19.2317L7.71839 20.0057ZM6.86602 20.5672C7.02607 20.5161 7.16162 20.4349 7.2895 20.3438C7.41333 20.2556 7.55478 20.1395 7.71839 20.0057L7.08515 19.2317C6.91126 19.374 6.79959 19.465 6.70927 19.5294C6.62301 19.5908 6.5834 19.6077 6.56187 19.6146L6.86602 20.5672ZM5.81366 20.5147C6.14656 20.6589 6.52043 20.6775 6.86602 20.5672L6.56188 19.6146C6.44668 19.6514 6.32205 19.6451 6.21109 19.5971L5.81366 20.5147ZM5.02143 19.8712C5.1709 20.0207 5.30009 20.1502 5.41452 20.2503C5.5327 20.3537 5.6595 20.4479 5.81366 20.5147L6.21109 19.5971C6.19035 19.5881 6.15262 19.5674 6.07291 19.4977C5.98945 19.4246 5.8874 19.323 5.72854 19.1641L5.02143 19.8712ZM4.12814 18.9779L5.02143 19.8712L5.72854 19.1641L4.83525 18.2708L4.12814 18.9779ZM4.10539 18.9536L4.1054 18.9536L4.85798 18.2951L4.85797 18.2951L4.10539 18.9536ZM3.48486 18.186C3.55162 18.3401 3.64583 18.4669 3.74917 18.585C3.84922 18.6994 3.97873 18.8285 4.12813 18.9779L4.83524 18.2708C4.67644 18.112 4.5748 18.01 4.50182 17.9266C4.43213 17.8469 4.41141 17.8092 4.40243 17.7885L3.48486 18.186ZM3.43235 17.1332C3.32191 17.479 3.34057 17.853 3.48486 18.186L4.40243 17.7885C4.35434 17.6775 4.34812 17.5528 4.38493 17.4375L3.43235 17.1332ZM3.99372 16.2812C3.8599 16.4447 3.74386 16.5861 3.65567 16.7099C3.56459 16.8378 3.48345 16.9733 3.43235 17.1332L4.38493 17.4375C4.3918 17.416 4.40866 17.3764 4.4701 17.2902C4.53444 17.1999 4.62544 17.0883 4.76768 16.9144L3.99372 16.2812ZM4.70647 15.2928C4.70398 15.3113 4.68669 15.3804 4.56248 15.5591C4.44104 15.7339 4.26023 15.9554 3.99372 16.2812L4.76768 16.9144C5.02351 16.6017 5.23444 16.3445 5.38362 16.1299C5.53002 15.9192 5.66221 15.6885 5.69752 15.4263L4.70647 15.2928ZM4.51414 14.8285C4.65703 14.9375 4.73046 15.1147 4.70647 15.2928L5.69752 15.4263C5.76949 14.892 5.54921 14.3602 5.12052 14.0333L4.51414 14.8285ZM3.31153 14.6336C3.73022 14.6755 4.01469 14.7043 4.22406 14.742C4.43821 14.7805 4.49931 14.8172 4.51414 14.8285L5.12053 14.0333C4.91021 13.8729 4.65359 13.8032 4.40115 13.7578C4.14393 13.7115 3.81295 13.6788 3.41104 13.6386L3.31153 14.6336ZM3.36128 14.6361H3.36128V13.6361H3.36128V14.6361ZM2.31258 14.4282C2.46178 14.5052 2.61489 14.5436 2.76962 14.5695C2.91943 14.5947 3.10137 14.6126 3.31152 14.6336L3.41103 13.6386C3.18766 13.6163 3.04446 13.6017 2.93519 13.5833C2.83083 13.5658 2.79093 13.5498 2.77086 13.5394L2.31258 14.4282ZM1.605 13.6464C1.73846 13.984 1.98987 14.2618 2.31258 14.4282L2.77086 13.5394C2.66329 13.484 2.57949 13.3914 2.535 13.2788L1.605 13.6464ZM1.5 12.6319C1.5 12.8431 1.49974 13.026 1.50986 13.1775C1.52031 13.3341 1.5433 13.4902 1.605 13.6464L2.535 13.2788C2.5267 13.2578 2.51469 13.2165 2.50764 13.1109C2.50026 13.0004 2.5 12.8564 2.5 12.6319H1.5ZM1.5 11.3686V12.6319H2.5V11.3686H1.5ZM1.60526 10.353C1.54341 10.5093 1.52036 10.6656 1.50988 10.8224C1.49974 10.9741 1.5 11.1572 1.5 11.3686H2.5C2.5 11.1439 2.50026 10.9998 2.50766 10.8891C2.51472 10.7834 2.52677 10.742 2.53509 10.721L1.60526 10.353ZM2.31196 9.57209C1.98975 9.73842 1.7387 10.0158 1.60526 10.353L2.53509 10.721C2.57957 10.6086 2.66325 10.5161 2.77065 10.4607L2.31196 9.57209ZM3.31228 9.36628C3.1018 9.38733 2.91959 9.40529 2.76958 9.43048C2.61465 9.4565 2.46133 9.49499 2.31196 9.57209L2.77066 10.4607C2.79074 10.4503 2.83069 10.4342 2.93521 10.4167C3.04465 10.3983 3.18808 10.3837 3.41178 10.3613L3.31228 9.36628ZM4.51601 9.17122C4.50118 9.18254 4.44005 9.21923 4.22568 9.25781C4.01612 9.29552 3.73136 9.32437 3.31228 9.36628L3.41178 10.3613C3.81408 10.3211 4.14537 10.2883 4.4028 10.242C4.65543 10.1965 4.91226 10.1268 5.12267 9.96618L4.51601 9.17122ZM4.70823 8.70717C4.73214 8.88515 4.65877 9.06228 4.51601 9.17122L5.12267 9.96618C5.55094 9.63935 5.77105 9.10796 5.69932 8.57403L4.70823 8.70717ZM3.99523 7.71838C4.26185 8.04425 4.44274 8.26592 4.56422 8.44072C4.68846 8.61951 4.70574 8.68867 4.70823 8.70717L5.69932 8.57403C5.66408 8.31172 5.53186 8.08081 5.38539 7.87005C5.23616 7.6553 5.02512 7.39796 4.76919 7.08514L3.99523 7.71838ZM3.9822 7.70176L3.98221 7.70176L4.78221 7.10176L4.7822 7.10176L3.9822 7.70176ZM4.02865 7.75531L4.02865 7.75531L4.73576 7.0482L4.73575 7.0482L4.02865 7.75531ZM3.43382 6.86618C3.48492 7.0262 3.56606 7.16172 3.65715 7.28958C3.74535 7.41338 3.86139 7.5548 3.99522 7.71837L4.76918 7.08513C4.62694 6.91128 4.53593 6.79964 4.4716 6.70934C4.41016 6.62311 4.3933 6.58351 4.38643 6.56198L3.43382 6.86618ZM3.48631 5.81366C3.34209 6.14661 3.32344 6.52054 3.43382 6.86618L4.38643 6.56198C4.34963 6.44677 4.35585 6.32212 4.40392 6.21114L3.48631 5.81366ZM4.12973 5.02156C3.98029 5.171 3.85075 5.30018 3.75067 5.41459C3.64731 5.53275 3.55308 5.65953 3.48631 5.81366L4.40392 6.21114C4.41291 6.19041 4.43362 6.15268 4.50334 6.07299C4.57634 5.98954 4.678 5.8875 4.83684 5.72867L4.12973 5.02156ZM5.02335 4.12795L4.12973 5.02156L4.83684 5.72867L5.73045 4.83505L5.02335 4.12795ZM5.81453 3.48513C5.66059 3.55188 5.53396 3.64603 5.41594 3.74929C5.30166 3.84927 5.17262 3.97867 5.02335 4.12795L5.73045 4.83505C5.88912 4.67639 5.99104 4.57483 6.07439 4.50191C6.154 4.43226 6.19168 4.41156 6.21239 4.40258L5.81453 3.48513ZM6.86819 3.43257C6.5222 3.32193 6.1478 3.3406 5.81453 3.48513L6.21239 4.40258C6.32348 4.3544 6.44827 4.34818 6.56361 4.38506L6.86819 3.43257ZM7.71942 3.99348C7.55603 3.8598 7.41476 3.74388 7.2911 3.65576C7.16338 3.56476 7.02801 3.48368 6.86819 3.43257L6.56361 4.38506C6.5851 4.39193 6.62466 4.40879 6.7108 4.47017C6.801 4.53444 6.91252 4.62535 7.08619 4.76744L7.71942 3.99348ZM7.73206 4.00418L7.73206 4.00417L7.07355 4.75675L7.07356 4.75676L7.73206 4.00418ZM8.70711 4.70578C8.68864 4.70329 8.61955 4.68599 8.44096 4.56186C8.26636 4.4405 8.04494 4.25981 7.71943 3.99349L7.08619 4.76745C7.39866 5.0231 7.65572 5.2339 7.87022 5.38299C8.08074 5.52931 8.31137 5.66144 8.57335 5.6968L8.70711 4.70578ZM9.17165 4.51336C9.06266 4.65636 8.88529 4.72983 8.70711 4.70578L8.57335 5.6968C9.1079 5.76894 9.64002 5.54853 9.96698 5.11954L9.17165 4.51336ZM9.36637 3.31131C9.32453 3.7298 9.29572 4.01413 9.25808 4.2234C9.21957 4.43746 9.18295 4.49854 9.17165 4.51336L9.96698 5.11954C10.1272 4.90929 10.1969 4.65278 10.2423 4.40046C10.2885 4.14336 10.3212 3.81253 10.3614 3.41082L9.36637 3.31131ZM9.57165 2.31282C9.49479 2.46196 9.4564 2.61501 9.43044 2.76966C9.40531 2.9194 9.38738 3.10126 9.36637 3.31131L10.3614 3.41082C10.3837 3.18755 10.3983 3.04442 10.4166 2.9352C10.4342 2.83089 10.4502 2.791 10.4605 2.77094L9.57165 2.31282ZM10.3539 1.60491C10.016 1.73837 9.73807 1.98991 9.57165 2.31282L10.4605 2.77094C10.516 2.6633 10.6087 2.57946 10.7213 2.53497L10.3539 1.60491ZM11.3679 1.5C11.1567 1.5 10.974 1.49974 10.8225 1.50985C10.666 1.52029 10.5099 1.54326 10.3539 1.60491L10.7213 2.53497C10.7423 2.52668 10.7836 2.51468 10.8891 2.50763C10.9996 2.50026 11.1435 2.5 11.3679 2.5V1.5ZM12.6319 1.5H11.3679V2.5H12.6319V1.5ZM13.6464 1.60502C13.4903 1.54331 13.3341 1.52032 13.1775 1.50986C13.026 1.49974 12.8431 1.5 12.6319 1.5V2.5C12.8564 2.5 13.0003 2.50026 13.1109 2.50764C13.2165 2.51469 13.2578 2.5267 13.2788 2.53501L13.6464 1.60502ZM14.4282 2.31255C14.2618 1.98986 13.984 1.73847 13.6464 1.60502L13.2788 2.53501C13.3914 2.57949 13.4839 2.66329 13.5394 2.77085L14.4282 2.31255ZM14.6337 3.3116C14.6126 3.10142 14.5947 2.91945 14.5695 2.76963C14.5436 2.61489 14.5051 2.46176 14.4282 2.31255L13.5394 2.77085C13.5498 2.79092 13.5658 2.83082 13.5833 2.9352C13.6017 3.04449 13.6163 3.18771 13.6386 3.41111L14.6337 3.3116ZM15.5 12C15.5 13.933 13.933 15.5 12 15.5V16.5C14.4853 16.5 16.5 14.4853 16.5 12H15.5ZM12 8.5C13.933 8.5 15.5 10.067 15.5 12H16.5C16.5 9.51472 14.4853 7.5 12 7.5V8.5ZM8.5 12C8.5 10.067 10.067 8.5 12 8.5V7.5C9.51472 7.5 7.5 9.51472 7.5 12H8.5ZM12 15.5C10.067 15.5 8.5 13.933 8.5 12H7.5C7.5 14.4853 9.51472 16.5 12 16.5V15.5Z" fill="#323232"/>
3
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9 6C9 6.39397 9.0776 6.78407 9.22836 7.14805C9.37913 7.51203 9.6001 7.84274 9.87868 8.12132C10.1573 8.3999 10.488 8.62087 10.852 8.77164C11.2159 8.9224 11.606 9 12 9C12.394 9 12.7841 8.9224 13.1481 8.77164C13.512 8.62087 13.8427 8.3999 14.1213 8.12132C14.3999 7.84274 14.6209 7.51203 14.7716 7.14805C14.9224 6.78407 15 6.39396 15 6C15 5.60603 14.9224 5.21593 14.7716 4.85195C14.6209 4.48797 14.3999 4.15725 14.1213 3.87868C13.8427 3.6001 13.512 3.37912 13.148 3.22836C12.7841 3.0776 12.394 3 12 3C11.606 3 11.2159 3.0776 10.8519 3.22836C10.488 3.37913 10.1573 3.6001 9.87868 3.87868C9.6001 4.15726 9.37912 4.48797 9.22836 4.85195C9.0776 5.21593 9 5.60604 9 6L9 6Z" stroke="#323232"/>
3
+ <path d="M4.43708 13.9015C4.0959 14.0985 3.79685 14.3607 3.55702 14.6733C3.31719 14.9858 3.14127 15.3426 3.0393 15.7231C2.93734 16.1037 2.91132 16.5006 2.96275 16.8912C3.01417 17.2818 3.14202 17.6584 3.339 17.9996C3.53599 18.3408 3.79824 18.6398 4.1108 18.8796C4.42335 19.1195 4.78008 19.2954 5.16062 19.3974C5.54117 19.4993 5.93806 19.5253 6.32866 19.4739C6.71925 19.4225 7.0959 19.2946 7.43708 19.0977C7.77827 18.9007 8.07731 18.6384 8.31714 18.3259C8.55697 18.0133 8.73289 17.6566 8.83486 17.276C8.93682 16.8955 8.96284 16.4986 8.91141 16.108C8.85999 15.7174 8.73214 15.3408 8.53516 14.9996C8.33817 14.6584 8.07592 14.3594 7.76336 14.1195C7.45081 13.8797 7.09408 13.7038 6.71354 13.6018C6.33299 13.4998 5.9361 13.4738 5.5455 13.5252C5.1549 13.5767 4.77826 13.7045 4.43708 13.9015L4.43708 13.9015Z" stroke="#323232"/>
4
+ <path d="M19.5629 13.9015C19.9041 14.0985 20.2031 14.3607 20.443 14.6733C20.6828 14.9859 20.8587 15.3426 20.9607 15.7231C21.0627 16.1037 21.0887 16.5006 21.0373 16.8912C20.9858 17.2818 20.858 17.6584 20.661 17.9996C20.464 18.3408 20.2018 18.6398 19.8892 18.8796C19.5766 19.1195 19.2199 19.2954 18.8394 19.3974C18.4588 19.4993 18.0619 19.5253 17.6713 19.4739C17.2807 19.4225 16.9041 19.2946 16.5629 19.0977C16.2217 18.9007 15.9227 18.6384 15.6829 18.3259C15.443 18.0133 15.2671 17.6566 15.1651 17.276C15.0632 16.8955 15.0372 16.4986 15.0886 16.108C15.14 15.7174 15.2679 15.3408 15.4648 14.9996C15.6618 14.6584 15.9241 14.3594 16.2366 14.1195C16.5492 13.8797 16.9059 13.7038 17.2865 13.6018C17.667 13.4998 18.0639 13.4738 18.4545 13.5252C18.8451 13.5767 19.2217 13.7045 19.5629 13.9015L19.5629 13.9015Z" stroke="#323232"/>
5
+ <path d="M7.62109 13.574L10.5234 8.84033" stroke="#323232" stroke-linecap="round"/>
6
+ <path d="M9.07031 16.4995L15.0763 16.4995" stroke="#323232" stroke-linecap="round"/>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Icons/Icons24&#209;&#133;24/Black/burger &#38; menu/Sort">
3
+ <path id="Vector 7" d="M5 7.80371H19" stroke="#323232" stroke-linecap="round"/>
4
+ <path id="Vector 8" d="M5 12.8037H15" stroke="#323232" stroke-linecap="round"/>
5
+ <path id="Vector 9" d="M5 17.8037H11" stroke="#323232" stroke-linecap="round"/>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="23" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.0547 0.396973L15.5814 7.54287L23.4674 8.68877L17.761 14.2511L19.1081 22.1052L12.0547 18.397L5.00126 22.1052L6.34835 14.2511L0.64201 8.68877L8.52798 7.54287L12.0547 0.396973Z" fill="#cbd5db"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="4" y="4.86768" width="16" height="16" rx="8" fill="#2BC945"/>
3
+ <path d="M15 10.8677L10.875 14.8677L9 13.0495" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1601_29258)">
3
+ <rect y="0.867676" width="24" height="24" rx="12" fill="#2BC945"/>
4
+ <path d="M16.5 9.86768L10.3125 15.8677L7.5 13.1404" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_1601_29258">
8
+ <rect width="24" height="24" fill="white" transform="translate(0 0.867676)"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.33333 9.12999H4.66667C3.2 9.12999 2 10.3221 2 11.7792V13.1038C2 14.5609 3.2 15.7531 4.66667 15.7531H6.33333L6.33333 7.14306C6.33333 4.95744 9.67008 3.16919 11.8701 3.16919L11.8581 3.16921C14.0581 3.16921 17.6667 4.95744 17.6667 7.14306L17.6667 15.7531M17.6667 9.12999H19.3333C20.8 9.12999 22 10.3221 22 11.7792V13.1038C22 14.5609 20.8 15.7531 19.3333 15.7531H17.6667M17.6667 15.7531C17.6667 17.6627 16.3 19.2633 14.4889 19.6386M13.1667 20.8308H10.8333C10.1 20.8308 9.5 20.2347 9.5 19.5062C9.5 18.7776 10.1 18.1816 10.8333 18.1816H13.1667C13.9 18.1816 14.5 18.7776 14.5 19.5062C14.5 20.2347 13.9 20.8308 13.1667 20.8308Z" stroke="#323232" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.23741 11.8584C9.06923 9.75322 12.2912 8.36537 13.9033 7.69484C18.5063 5.78032 19.4627 5.44774 20.0861 5.43676C20.2232 5.43435 20.5298 5.46833 20.7284 5.62946C20.8961 5.76552 20.9422 5.94932 20.9643 6.07832C20.9864 6.20732 21.0139 6.50119 20.992 6.73081C20.7426 9.35164 19.6633 15.7117 19.1142 18.6471C18.8818 19.8891 18.4244 20.3056 17.9815 20.3464C17.0189 20.4349 16.288 19.7103 15.3558 19.0992C13.897 18.1429 13.0729 17.5477 11.6569 16.6145C10.0205 15.5362 11.0813 14.9435 12.0139 13.9748C12.258 13.7213 16.4988 9.86393 16.5809 9.514C16.5912 9.47024 16.6007 9.3071 16.5038 9.22096C16.4069 9.13482 16.2639 9.16428 16.1606 9.18771C16.0143 9.22091 13.6839 10.7612 9.16938 13.8087C8.5079 14.2629 7.90875 14.4842 7.37193 14.4726C6.78013 14.4598 5.64175 14.138 4.79548 13.8629C3.75749 13.5255 2.93252 13.3471 3.00436 12.7741C3.04178 12.4756 3.45279 12.1704 4.23741 11.8584Z" fill="#ADACAC"/>
3
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.33203 9.66675L6.33203 7.66675" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M9.66797 9.66675L9.66797 7.66675" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M2 4.33325H14V4.33325C13.6904 4.33325 13.5356 4.33325 13.4056 4.35036C12.5081 4.46852 11.8019 5.17473 11.6838 6.0722C11.6667 6.20217 11.6667 6.35697 11.6667 6.66659V9.66659C11.6667 11.2303 11.6667 12.0122 11.2534 12.5508C11.147 12.6894 11.0229 12.8136 10.8842 12.92C10.3456 13.3333 9.56372 13.3333 8 13.3333V13.3333C6.43628 13.3333 5.65443 13.3333 5.11581 12.92C4.97715 12.8136 4.85303 12.6894 4.74663 12.5508C4.33333 12.0122 4.33333 11.2303 4.33333 9.66659V6.66659C4.33333 6.35697 4.33333 6.20217 4.31622 6.0722C4.19807 5.17473 3.49185 4.46852 2.59439 4.35036C2.46442 4.33325 2.30961 4.33325 2 4.33325V4.33325Z" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M6.66406 2.6665C6.66406 2.6665 6.96406 1.6665 8.16406 1.6665C9.36406 1.6665 9.66406 2.66626 9.66406 2.66626" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12 2.5C9.76317 2.5 7.83928 3.83526 6.97989 5.75007C6.89728 5.93416 6.83874 6.06452 6.79362 6.15941C6.77129 6.20638 6.75451 6.23984 6.74168 6.26371C6.73213 6.28147 6.72703 6.28965 6.72588 6.29149C6.72575 6.29171 6.72567 6.29184 6.72564 6.29188C6.65664 6.38826 6.62018 6.41763 6.59892 6.4314C6.57756 6.44522 6.53559 6.46657 6.41833 6.49017C6.38281 6.49732 6.30904 6.5 6 6.5C4.067 6.5 2.5 8.067 2.5 10C2.5 11.933 4.067 13.5 6 13.5H6.67157L7.67157 12.5H6C4.61929 12.5 3.5 11.3807 3.5 10C3.5 8.61929 4.61929 7.5 6 7.5L6.05357 7.50003C6.27958 7.50021 6.46738 7.50035 6.61565 7.47051C6.79642 7.43413 6.97421 7.37969 7.1423 7.27088C7.3104 7.16208 7.43286 7.02216 7.54007 6.87214C7.59798 6.79112 7.64966 6.68782 7.69674 6.58881C7.74715 6.48277 7.81019 6.34231 7.88955 6.1655L7.88958 6.16542L7.89222 6.15954C8.59624 4.59089 10.1713 3.5 12 3.5C13.8287 3.5 15.4038 4.59089 16.1078 6.15954L16.1105 6.16566C16.1898 6.3424 16.2529 6.4828 16.3033 6.58881C16.3503 6.68782 16.402 6.79112 16.4599 6.87214C16.5671 7.02216 16.6896 7.16208 16.8577 7.27088C17.0258 7.37969 17.2036 7.43413 17.3844 7.47051C17.5326 7.50035 17.7204 7.50021 17.9464 7.50003L18 7.5C19.3807 7.5 20.5 8.61929 20.5 10C20.5 11.3807 19.3807 12.5 18 12.5H16.3284L17.3284 13.5H18C19.933 13.5 21.5 11.933 21.5 10C21.5 8.067 19.933 6.5 18 6.5C17.691 6.5 17.6172 6.49732 17.5817 6.49017C17.4644 6.46657 17.4224 6.44522 17.4011 6.4314C17.3798 6.41763 17.3434 6.38826 17.2744 6.29188L17.2741 6.2915C17.273 6.28968 17.2679 6.2815 17.2583 6.26371C17.2455 6.23984 17.2287 6.20638 17.2064 6.15941C17.1613 6.06452 17.1027 5.93416 17.0201 5.75007C16.1607 3.83526 14.2368 2.5 12 2.5Z" fill="#323232"/>
3
+ <path d="M8 16L12 12M12 12L16 16M12 12L12 21" stroke="#323232" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="12" cy="8" r="3.5" stroke="#323232" stroke-linecap="round"/>
3
+ <path d="M6.24684 15.9465C7.45154 14.1154 9.25931 13.5 11.4511 13.5H12.4823C14.6828 13.5 16.5143 14.1468 17.7295 15.9814V15.9814C18.8016 17.6 17.9261 19.5 15.9847 19.5H8.00741C6.07032 19.5 5.18216 17.5648 6.24684 15.9465V15.9465Z" stroke="#323232" stroke-linecap="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="12" cy="12.4492" r="3.5" stroke="#323232"/>
3
+ <path d="M20.188 11.3834C20.5762 11.8547 20.7703 12.0904 20.7703 12.4492C20.7703 12.808 20.5762 13.0436 20.188 13.5149C18.7679 15.239 15.6357 18.4492 12 18.4492C8.36427 18.4492 5.23206 15.239 3.81197 13.5149C3.42381 13.0436 3.22973 12.808 3.22973 12.4492C3.22973 12.0904 3.42381 11.8547 3.81197 11.3834C5.23206 9.6593 8.36427 6.44916 12 6.44916C15.6357 6.44916 18.7679 9.6593 20.188 11.3834Z" stroke="#323232"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M15.9202 12.7988C15.9725 12.5407 16 12.2736 16 12C16 9.79086 14.2091 8 12 8C11.7264 8 11.4593 8.02746 11.2012 8.07977L12.1239 9.00251C13.6822 9.06583 14.9342 10.3178 14.9975 11.8761L15.9202 12.7988ZM9.39311 10.5143C9.14295 10.9523 9 11.4595 9 12C9 13.6569 10.3431 15 12 15C12.5405 15 13.0477 14.857 13.4857 14.6069L14.212 15.3332C13.5784 15.7545 12.8179 16 12 16C9.79086 16 8 14.2091 8 12C8 11.1821 8.24547 10.4216 8.66676 9.78799L9.39311 10.5143Z" fill="#323232"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18.5599 15.4985C19.4013 14.7404 20.0881 13.9744 20.5747 13.3836L20.6335 13.3124C20.9641 12.913 21.271 12.5421 21.271 12C21.271 11.4579 20.9641 11.087 20.6335 10.6876L20.5747 10.6164C19.8498 9.73623 18.6806 8.46727 17.2176 7.41472C15.7586 6.365 13.9646 5.5 12.0007 5.5C10.998 5.5 10.0396 5.72551 9.14737 6.08597L9.9244 6.86299C10.5947 6.63362 11.2903 6.5 12.0007 6.5C13.6726 6.5 15.2626 7.24007 16.6336 8.22646C18.0007 9.21001 19.1077 10.4082 19.8028 11.2522C20.2272 11.7674 20.271 11.8565 20.271 12C20.271 12.1435 20.2272 12.2326 19.8028 12.7478C19.3283 13.3239 18.6619 14.0651 17.8518 14.7904L18.5599 15.4985ZM8.46422 7.52414C8.0859 7.73646 7.71967 7.97335 7.36787 8.22646C6.00079 9.21001 4.89379 10.4082 4.19865 11.2522C3.7743 11.7674 3.73047 11.8565 3.73047 12C3.73047 12.1435 3.7743 12.2326 4.19865 12.7478C4.89379 13.5918 6.00079 14.79 7.36787 15.7735C8.73889 16.7599 10.3289 17.5 12.0007 17.5C13.6726 17.5 15.2626 16.7599 16.6336 15.7735C16.6491 15.7624 16.6646 15.7512 16.6801 15.74L17.3954 16.4553C17.3366 16.499 17.2774 16.5423 17.2176 16.5853C15.7586 17.635 13.9646 18.5 12.0007 18.5C10.0368 18.5 8.24289 17.635 6.78385 16.5853C5.32087 15.5327 4.15172 14.2638 3.42677 13.3836L3.36796 13.3124C3.03744 12.913 2.73047 12.5421 2.73047 12C2.73047 11.4579 3.03744 11.087 3.36796 10.6876L3.42677 10.6164C4.15173 9.73623 5.32087 8.46727 6.78386 7.41472C7.08611 7.19726 7.40273 6.98773 7.73226 6.79218L8.46422 7.52414Z" fill="#323232"/>
4
+ <path d="M5 2L21 18" stroke="#323232"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M21.5411 8.06126C21.6801 7.62465 21.5411 7.30383 20.8794 7.30383H18.6914C18.135 7.30383 17.8786 7.58097 17.7395 7.88658C17.7395 7.88658 16.6268 10.4407 15.0505 12.0997C14.5406 12.58 14.3087 12.7328 14.0306 12.7328C13.8915 12.7328 13.6902 12.58 13.6902 12.1434V8.06126C13.6902 7.53733 13.5287 7.30383 13.0651 7.30383H9.62678C9.27911 7.30383 9.07003 7.547 9.07003 7.77746C9.07003 8.27413 9.85811 8.38866 9.93935 9.78579V12.8201C9.93935 13.4854 9.81177 13.606 9.5336 13.606C8.79186 13.606 6.98756 11.0405 5.91744 8.1049C5.70773 7.53432 5.49738 7.30383 4.93819 7.30383H2.75018C2.12504 7.30383 2 7.58097 2 7.88658C2 8.43234 2.74178 11.1392 5.45387 14.7193C7.26191 17.1642 9.80932 18.4896 12.1274 18.4896C13.5182 18.4896 13.6902 18.1952 13.6902 17.6882V15.8403C13.6902 15.2516 13.822 15.1341 14.2624 15.1341C14.5869 15.1341 15.1433 15.2869 16.4414 16.4657C17.9249 17.8628 18.1695 18.4896 19.004 18.4896H21.192C21.8171 18.4896 22.1297 18.1952 21.9494 17.6143C21.752 17.0353 21.0437 16.1953 20.1039 15.1996C19.5939 14.632 18.8289 14.0208 18.5971 13.7151C18.2726 13.3222 18.3653 13.1476 18.5971 12.7983C18.5971 12.7983 21.2629 9.26187 21.5411 8.06126Z" fill="#ADACAC"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.2679 5.86768C11.0377 4.53434 12.9623 4.53434 13.7321 5.86768L18.9282 14.8677C19.698 16.201 18.7358 17.8677 17.1962 17.8677H6.80385C5.26425 17.8677 4.302 16.201 5.0718 14.8677L10.2679 5.86768Z" fill="#FFE457"/>
3
+ <circle cx="12" cy="14.8687" r="0.5" fill="white"/>
4
+ <line x1="12" y1="9.13135" x2="12" y2="13.1313" stroke="white" stroke-linecap="round"/>
5
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1601_29262)">
3
+ <path d="M9.40193 3.86767C10.5566 1.86767 13.4434 1.86768 14.5981 3.86768L23.2583 18.8677C24.413 20.8677 22.9697 23.3677 20.6603 23.3677H3.33974C1.03034 23.3677 -0.413031 20.8677 0.74167 18.8677L9.40193 3.86767Z" fill="#FFE457"/>
4
+ <circle cx="12" cy="17.6177" r="0.75" fill="white"/>
5
+ <line x1="12" y1="8.11768" x2="12" y2="14.6177" stroke="white" stroke-width="1.5" stroke-linecap="round"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_1601_29262">
9
+ <rect width="24" height="24" fill="white" transform="translate(0 0.867676)"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7.1676 20.9508C7.1676 20.6161 7.1676 20.2814 7.1676 19.9467C7.16998 19.9331 7.1695 19.919 7.16618 19.9055C7.16287 19.8921 7.15679 19.8794 7.14833 19.8683C7.13987 19.8572 7.12921 19.848 7.117 19.8412C7.10479 19.8343 7.09129 19.8301 7.07734 19.8286C6.23944 19.593 5.46606 19.1732 4.81484 18.6005C4.34036 18.1732 3.9453 17.6668 3.64764 17.1043C3.2281 16.2918 2.94888 15.4155 2.82158 14.5117C2.66384 13.378 2.60906 12.2326 2.65789 11.0892C2.6686 10.5562 2.69614 10.0292 2.75733 9.49614C2.85491 8.48318 3.11303 7.49175 3.5222 6.55828C4.02745 5.41055 4.94404 4.48862 6.09524 3.97024C6.87945 3.61499 7.70445 3.35563 8.55202 3.19792C9.3832 3.04206 10.2248 2.94641 11.07 2.9117C11.8319 2.88503 12.5947 2.89615 13.3554 2.94502C14.4443 2.99052 15.5233 3.16905 16.5679 3.47656C17.3424 3.69758 18.0792 4.0319 18.7539 4.46846C19.4113 4.91522 19.943 5.52027 20.299 6.22664C20.7174 7.05164 21.0019 7.9368 21.1419 8.84951C21.2328 9.39138 21.2926 9.93794 21.3209 10.4865C21.3606 11.1665 21.356 11.8495 21.33 12.5264C21.304 13.2033 21.2459 13.8605 21.1618 14.5238C21.0554 15.5194 20.7463 16.4832 20.2531 17.3572C19.6111 18.4628 18.5827 19.2977 17.3619 19.7044C16.527 19.9938 15.6651 20.1998 14.7888 20.3193C14.1479 20.4071 13.5054 20.4707 12.8598 20.4964C12.3657 20.5192 11.8716 20.5131 11.3775 20.5055C11.0975 20.5055 10.8191 20.4783 10.5407 20.454C10.5134 20.4489 10.4851 20.452 10.4595 20.4628C10.4339 20.4735 10.4121 20.4916 10.3969 20.5146C9.83395 21.184 9.24959 21.8351 8.66063 22.4833C8.55335 22.6015 8.42914 22.7036 8.29196 22.7862C8.20192 22.8446 8.09924 22.8813 7.99222 22.8933C7.8852 22.9053 7.77685 22.8921 7.6759 22.855C7.57495 22.8178 7.48423 22.7577 7.41108 22.6795C7.33793 22.6012 7.2844 22.507 7.25479 22.4045C7.1965 22.2224 7.16759 22.0323 7.16913 21.8412C7.1676 21.5414 7.1676 21.2461 7.1676 20.9508ZM7.84834 22.2213L7.92024 22.1547L9.19758 20.7509C9.68914 20.2107 10.1802 19.6701 10.6707 19.129C10.6948 19.096 10.7274 19.0699 10.765 19.0534C10.8026 19.0369 10.844 19.0306 10.8849 19.0351C11.0516 19.0517 11.2184 19.0578 11.3867 19.0593C11.968 19.0593 12.5493 19.0593 13.1306 19.0184C13.6583 18.9775 14.1846 18.9139 14.7077 18.8322C15.271 18.7351 15.8287 18.6082 16.3782 18.4521C17.602 18.1265 18.5489 17.4299 19.144 16.3017C19.4953 15.608 19.7157 14.8567 19.7942 14.0846C19.8871 13.357 19.9428 12.6251 19.9609 11.8919C19.988 10.9707 19.9245 10.0492 19.7712 9.14026C19.6649 8.48174 19.4737 7.83944 19.2021 7.22914C18.8564 6.47196 18.3669 5.84502 17.6127 5.4422C16.4562 4.82434 15.2049 4.54873 13.9153 4.40789C13.5497 4.36852 13.1841 4.34732 12.817 4.33369C12.0652 4.29532 11.3119 4.29937 10.5606 4.3458C10.0203 4.3855 9.48288 4.45731 8.95129 4.56084C8.16951 4.70191 7.41322 4.95709 6.70714 5.31802C6.2978 5.52277 5.92643 5.79466 5.60878 6.12215C5.09397 6.69175 4.71634 7.36951 4.5043 8.10444C4.25276 8.96037 4.11544 9.8452 4.09586 10.7364C4.04664 11.6276 4.05788 12.5211 4.12951 13.4108C4.17408 13.9402 4.26363 14.465 4.39722 14.9796C4.59598 15.7815 4.98156 16.5263 5.52312 17.1543C6.10779 17.7949 6.86346 18.259 7.70301 18.4929C7.80856 18.5247 7.85599 18.5611 7.85599 18.6792C7.84681 19.1154 7.85599 19.5515 7.85599 19.9876L7.84834 22.2213Z" fill="#ADACAC"/>
3
+ <path d="M6.77638 8.69652C6.76567 8.36488 6.94771 8.1241 7.168 7.90754C7.45853 7.63203 7.77862 7.38879 8.12256 7.18216C8.2794 7.08641 8.46588 7.04993 8.64772 7.07942C8.82956 7.10891 8.99454 7.2024 9.11231 7.34269C9.52845 7.77572 9.90093 8.24791 10.2244 8.75255C10.3846 8.97956 10.5056 9.23135 10.5824 9.49762C10.6131 9.60153 10.6151 9.71169 10.5882 9.81662C10.5613 9.92155 10.5065 10.0174 10.4294 10.0943C10.2529 10.2658 10.0649 10.4251 9.86648 10.5713C9.76652 10.6502 9.69219 10.7564 9.65275 10.8767C9.61331 10.9971 9.6105 11.1263 9.64466 11.2482C9.76717 11.8208 10.0448 12.3495 10.4478 12.7777C10.9374 13.3695 11.5684 13.8311 12.2835 14.121C12.4592 14.2104 12.6606 14.2377 12.8541 14.1982C12.9601 14.1696 13.0543 14.1086 13.1233 14.024C13.2304 13.8893 13.3467 13.759 13.443 13.6152C13.568 13.4357 13.7589 13.3117 13.9749 13.2695C14.191 13.2274 14.4151 13.2704 14.5995 13.3895C15.1181 13.6874 15.6076 14.0321 16.062 14.4193C16.169 14.5101 16.2807 14.598 16.3878 14.6904C16.5145 14.786 16.606 14.9202 16.6483 15.0723C16.6906 15.2244 16.6813 15.386 16.6219 15.5323C16.5273 15.7785 16.3896 16.0061 16.2149 16.2047C15.9979 16.5033 15.7215 16.7548 15.4026 16.9437C15.2502 17.0323 15.079 17.0844 14.9026 17.0957C14.7262 17.107 14.5496 17.0772 14.3869 17.0088C13.1492 16.5156 11.9928 15.8423 10.9557 15.0114C9.94128 14.1847 9.0548 13.2153 8.32449 12.1341C7.70997 11.239 7.22109 10.2655 6.87122 9.24018C6.83397 9.11617 6.80333 8.9903 6.77944 8.8631C6.77264 8.80783 6.77161 8.75201 6.77638 8.69652Z" fill="#ADACAC"/>
4
+ <path d="M12.0605 7.08166C13.0961 7.10061 14.092 7.47874 14.8748 8.15012C15.6575 8.8215 16.1774 9.74354 16.3438 10.7555C16.4108 11.1234 16.4467 11.4962 16.4509 11.8701C16.4509 11.9579 16.428 12.0215 16.3331 12.0306C16.2383 12.0397 16.2138 11.9594 16.2138 11.8792C16.228 11.123 16.0712 10.3733 15.7549 9.68484C15.4885 9.11918 15.0939 8.62199 14.6017 8.23195C14.1095 7.84191 13.5331 7.56953 12.9172 7.43602C12.5916 7.36139 12.2586 7.32279 11.9244 7.32093C11.8919 7.32148 11.8594 7.3174 11.828 7.30882C11.8013 7.30136 11.7786 7.28393 11.7646 7.2602C11.7506 7.23647 11.7465 7.20829 11.7531 7.18161C11.7533 7.16895 11.756 7.15646 11.7611 7.14485C11.7662 7.13325 11.7737 7.12278 11.7829 7.11404C11.7922 7.1053 11.8031 7.09847 11.815 7.09395C11.827 7.08943 11.8397 7.08732 11.8525 7.08772C11.9213 7.07863 11.9917 7.08166 12.0605 7.08166Z" fill="#ADACAC"/>
5
+ <path d="M15.0114 11.19C15.0062 10.7693 14.9016 10.3556 14.7058 9.98217C14.51 9.60873 14.2285 9.28591 13.8839 9.0396C13.4818 8.75994 13.0143 8.58638 12.5255 8.53531C12.4429 8.52471 12.3603 8.52017 12.2762 8.51108C12.192 8.502 12.1416 8.46717 12.1492 8.38236C12.1568 8.29756 12.2104 8.26727 12.3022 8.27333C13.6575 8.35511 14.811 9.1138 15.1659 10.5267C15.2308 10.7991 15.2631 11.0782 15.2622 11.3581C15.2622 11.3838 15.2622 11.4096 15.2622 11.4338C15.2622 11.5095 15.2133 11.5595 15.1383 11.558C15.1217 11.5574 15.1054 11.5535 15.0903 11.5465C15.0753 11.5395 15.0618 11.5295 15.0508 11.5172C15.0398 11.5049 15.0314 11.4904 15.0262 11.4748C15.021 11.4592 15.0191 11.4426 15.0205 11.4262C15.0083 11.3551 15.0114 11.2824 15.0114 11.19Z" fill="#ADACAC"/>
6
+ <path d="M12.6396 9.50378C13.3831 9.55375 13.9017 9.91417 14.0439 10.6971C14.0612 10.7974 14.0735 10.8985 14.0807 11C14.0807 11.0817 14.0623 11.1514 13.972 11.1514C13.8818 11.1514 13.8512 11.0908 13.8481 11C13.8473 10.6999 13.7539 10.4071 13.5804 10.161C13.3981 9.93808 13.1364 9.79282 12.8492 9.75516C12.785 9.74327 12.7201 9.73518 12.6549 9.73093C12.5479 9.73093 12.4882 9.67793 12.502 9.59615C12.5157 9.51438 12.58 9.49923 12.6396 9.50378Z" fill="#ADACAC"/>
7
+ </svg>