@verisoft/ui-govcz 18.4.0 → 18.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (595) hide show
  1. package/esm2022/index.mjs +2 -0
  2. package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +34 -0
  3. package/esm2022/lib/components/breadcrumb/index.mjs +2 -0
  4. package/esm2022/lib/components/button/button.component.mjs +87 -0
  5. package/esm2022/lib/components/button/index.mjs +2 -0
  6. package/esm2022/lib/components/calendar/calendar.component.mjs +87 -0
  7. package/esm2022/lib/components/calendar/index.mjs +2 -0
  8. package/esm2022/lib/components/checkbox/checkbox.component.mjs +62 -0
  9. package/esm2022/lib/components/checkbox/index.mjs +2 -0
  10. package/esm2022/lib/components/confirm-dialog/confirm-dialog.component.mjs +72 -0
  11. package/esm2022/lib/components/confirm-dialog/index.mjs +2 -0
  12. package/esm2022/lib/components/dropdown/dropdown-item.component.mjs +14 -0
  13. package/esm2022/lib/components/dropdown/dropdown.component.mjs +280 -0
  14. package/esm2022/lib/components/dropdown/dropdown.model.mjs +2 -0
  15. package/esm2022/lib/components/dropdown/index.mjs +2 -0
  16. package/esm2022/lib/components/errors/error.component.mjs +34 -0
  17. package/esm2022/lib/components/errors/index.mjs +2 -0
  18. package/esm2022/lib/components/form-field/form-field.component.mjs +92 -0
  19. package/esm2022/lib/components/form-field/index.mjs +2 -0
  20. package/esm2022/lib/components/header/header.component.mjs +85 -0
  21. package/esm2022/lib/components/header/index.mjs +2 -0
  22. package/esm2022/lib/components/index.mjs +34 -0
  23. package/esm2022/lib/components/input-group/index.mjs +2 -0
  24. package/esm2022/lib/components/input-group/input-group.component.mjs +89 -0
  25. package/esm2022/lib/components/loader/index.mjs +2 -0
  26. package/esm2022/lib/components/loader/loader.component.mjs +34 -0
  27. package/esm2022/lib/components/multiselect/index.mjs +2 -0
  28. package/esm2022/lib/components/multiselect/multiselect.component.mjs +121 -0
  29. package/esm2022/lib/components/number-input/index.mjs +2 -0
  30. package/esm2022/lib/components/number-input/number-input.component.mjs +104 -0
  31. package/esm2022/lib/components/page-header/index.mjs +2 -0
  32. package/esm2022/lib/components/page-header/page-header.component.mjs +28 -0
  33. package/esm2022/lib/components/password/index.mjs +2 -0
  34. package/esm2022/lib/components/password/password.component.mjs +94 -0
  35. package/esm2022/lib/components/radiobutton/index.mjs +2 -0
  36. package/esm2022/lib/components/radiobutton/radiobutton.component.mjs +50 -0
  37. package/esm2022/lib/components/search/index.mjs +2 -0
  38. package/esm2022/lib/components/search/search.component.mjs +40 -0
  39. package/esm2022/lib/components/section/index.mjs +2 -0
  40. package/esm2022/lib/components/section/section.component.mjs +70 -0
  41. package/esm2022/lib/components/shared-components/action-button-group/action-button-group.component.mjs +97 -0
  42. package/esm2022/lib/components/shared-components/action-button-group/components/action-button/action-button.component.mjs +64 -0
  43. package/esm2022/lib/components/shared-components/action-button-group/index.mjs +3 -0
  44. package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.mjs +91 -0
  45. package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component.component.mjs +42 -0
  46. package/esm2022/lib/components/shared-components/dynamic-component/index.mjs +3 -0
  47. package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-column.directive.mjs +43 -0
  48. package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.mjs +16 -0
  49. package/esm2022/lib/components/shared-components/feature-list/feature-list-filter.pipe.mjs +24 -0
  50. package/esm2022/lib/components/shared-components/feature-list/feature-list-page.component.mjs +43 -0
  51. package/esm2022/lib/components/shared-components/feature-list/feature-list-page.model.mjs +16 -0
  52. package/esm2022/lib/components/shared-components/feature-list/feature-list.component.mjs +285 -0
  53. package/esm2022/lib/components/shared-components/feature-list/index.mjs +6 -0
  54. package/esm2022/lib/components/shared-components/filter/directives/filter-field.directive.mjs +53 -0
  55. package/esm2022/lib/components/shared-components/filter/filter.component.mjs +195 -0
  56. package/esm2022/lib/components/shared-components/filter/filter.model.mjs +16 -0
  57. package/esm2022/lib/components/shared-components/filter/index.mjs +3 -0
  58. package/esm2022/lib/components/shared-components/generic-field/generic-field.component.mjs +98 -0
  59. package/esm2022/lib/components/shared-components/generic-field/index.mjs +2 -0
  60. package/esm2022/lib/components/shared-components/generic-form/generic-form.component.mjs +46 -0
  61. package/esm2022/lib/components/shared-components/generic-form/generic-form.model.mjs +50 -0
  62. package/esm2022/lib/components/shared-components/generic-form/index.mjs +3 -0
  63. package/esm2022/lib/components/shared-components/index.mjs +7 -0
  64. package/esm2022/lib/components/side-menu/index.mjs +3 -0
  65. package/esm2022/lib/components/side-menu/side-menu.component.mjs +48 -0
  66. package/esm2022/lib/components/side-menu/side-menu.module.mjs +59 -0
  67. package/esm2022/lib/components/snackbar/index.mjs +3 -0
  68. package/esm2022/lib/components/snackbar/services/snackbar.service.mjs +75 -0
  69. package/esm2022/lib/components/snackbar/snackbar.component.mjs +61 -0
  70. package/esm2022/lib/components/snackbar/snackbar.model.mjs +2 -0
  71. package/esm2022/lib/components/stepper/index.mjs +2 -0
  72. package/esm2022/lib/components/stepper/stepper.component.mjs +66 -0
  73. package/esm2022/lib/components/switch/index.mjs +2 -0
  74. package/esm2022/lib/components/switch/switch.component.mjs +45 -0
  75. package/esm2022/lib/components/tab-view/index.mjs +4 -0
  76. package/esm2022/lib/components/tab-view/tab-view-item.component.mjs +41 -0
  77. package/esm2022/lib/components/tab-view/tab-view.component.mjs +56 -0
  78. package/esm2022/lib/components/tab-view/tab-view.module.mjs +41 -0
  79. package/esm2022/lib/components/table/index.mjs +2 -0
  80. package/esm2022/lib/components/table/table-pagination-info.component.mjs +32 -0
  81. package/esm2022/lib/components/table/table.component.mjs +359 -0
  82. package/esm2022/lib/components/table/table.model.mjs +14 -0
  83. package/esm2022/lib/components/textarea/index.mjs +2 -0
  84. package/esm2022/lib/components/textarea/textarea.component.mjs +95 -0
  85. package/esm2022/lib/components/textfield/index.mjs +2 -0
  86. package/esm2022/lib/components/textfield/textfield.component.mjs +124 -0
  87. package/esm2022/lib/components/tooltip/index.mjs +2 -0
  88. package/esm2022/lib/components/tooltip/tooltip.component.mjs +66 -0
  89. package/esm2022/lib/components/tristatecheckbox/index.mjs +2 -0
  90. package/esm2022/lib/components/tristatecheckbox/tristatecheckbox.component.mjs +89 -0
  91. package/esm2022/lib/icons.mjs +35 -0
  92. package/esm2022/lib/index.mjs +6 -0
  93. package/esm2022/lib/init.service.mjs +17 -0
  94. package/esm2022/lib/pages/index.mjs +4 -0
  95. package/esm2022/lib/pages/not-authenticated/index.mjs +2 -0
  96. package/esm2022/lib/pages/not-authenticated/not-authenticated.component.mjs +17 -0
  97. package/esm2022/lib/pages/not-authorized/index.mjs +2 -0
  98. package/esm2022/lib/pages/not-authorized/not-authorized.component.mjs +20 -0
  99. package/esm2022/lib/pages/not-found/index.mjs +2 -0
  100. package/esm2022/lib/pages/not-found/not-found.component.mjs +20 -0
  101. package/esm2022/lib/pipes/color/color.pipe.mjs +27 -0
  102. package/esm2022/lib/pipes/index.mjs +4 -0
  103. package/esm2022/lib/pipes/multiselect/multiselect-options.pipe.mjs +52 -0
  104. package/esm2022/lib/pipes/size/size.pipe.mjs +23 -0
  105. package/esm2022/verisoft-ui-govcz.mjs +5 -0
  106. package/fesm2022/verisoft-ui-govcz.mjs +3728 -0
  107. package/fesm2022/verisoft-ui-govcz.mjs.map +1 -0
  108. package/{src/index.ts → index.d.ts} +1 -1
  109. package/lib/components/breadcrumb/breadcrumb.component.d.ts +7 -0
  110. package/{src/lib/components/breadcrumb/index.ts → lib/components/breadcrumb/index.d.ts} +1 -1
  111. package/lib/components/button/button.component.d.ts +26 -0
  112. package/lib/components/button/index.d.ts +1 -0
  113. package/lib/components/calendar/calendar.component.d.ts +23 -0
  114. package/lib/components/calendar/index.d.ts +1 -0
  115. package/lib/components/checkbox/checkbox.component.d.ts +15 -0
  116. package/lib/components/checkbox/index.d.ts +1 -0
  117. package/lib/components/confirm-dialog/confirm-dialog.component.d.ts +15 -0
  118. package/{src/lib/components/confirm-dialog/index.ts → lib/components/confirm-dialog/index.d.ts} +1 -1
  119. package/lib/components/dropdown/dropdown-item.component.d.ts +7 -0
  120. package/lib/components/dropdown/dropdown.component.d.ts +65 -0
  121. package/{src/lib/components/dropdown/dropdown.model.ts → lib/components/dropdown/dropdown.model.d.ts} +6 -6
  122. package/{src/lib/components/dropdown/index.ts → lib/components/dropdown/index.d.ts} +1 -1
  123. package/lib/components/errors/error.component.d.ts +14 -0
  124. package/lib/components/errors/index.d.ts +1 -0
  125. package/lib/components/form-field/form-field.component.d.ts +25 -0
  126. package/{src/lib/components/form-field/index.ts → lib/components/form-field/index.d.ts} +1 -1
  127. package/lib/components/header/header.component.d.ts +25 -0
  128. package/lib/components/header/index.d.ts +1 -0
  129. package/{src/lib/components/index.ts → lib/components/index.d.ts} +33 -33
  130. package/lib/components/input-group/index.d.ts +1 -0
  131. package/lib/components/input-group/input-group.component.d.ts +24 -0
  132. package/lib/components/loader/index.d.ts +1 -0
  133. package/lib/components/loader/loader.component.d.ts +8 -0
  134. package/lib/components/multiselect/index.d.ts +1 -0
  135. package/lib/components/multiselect/multiselect.component.d.ts +35 -0
  136. package/lib/components/number-input/index.d.ts +1 -0
  137. package/lib/components/number-input/number-input.component.d.ts +29 -0
  138. package/lib/components/page-header/index.d.ts +1 -0
  139. package/lib/components/page-header/page-header.component.d.ts +9 -0
  140. package/{src/lib/components/password/index.ts → lib/components/password/index.d.ts} +1 -1
  141. package/lib/components/password/password.component.d.ts +23 -0
  142. package/lib/components/radiobutton/index.d.ts +1 -0
  143. package/lib/components/radiobutton/radiobutton.component.d.ts +12 -0
  144. package/lib/components/search/index.d.ts +1 -0
  145. package/lib/components/search/search.component.d.ts +14 -0
  146. package/lib/components/section/index.d.ts +1 -0
  147. package/lib/components/section/section.component.d.ts +18 -0
  148. package/lib/components/shared-components/action-button-group/action-button-group.component.d.ts +29 -0
  149. package/lib/components/shared-components/action-button-group/components/action-button/action-button.component.d.ts +24 -0
  150. package/{src/lib/components/shared-components/action-button-group/index.ts → lib/components/shared-components/action-button-group/index.d.ts} +2 -2
  151. package/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.d.ts +17 -0
  152. package/lib/components/shared-components/dynamic-component/dynamic-component.component.d.ts +16 -0
  153. package/{src/lib/components/shared-components/dynamic-component/index.ts → lib/components/shared-components/dynamic-component/index.d.ts} +2 -2
  154. package/lib/components/shared-components/feature-list/directives/feature-list-column.directive.d.ts +10 -0
  155. package/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.d.ts +6 -0
  156. package/lib/components/shared-components/feature-list/feature-list-filter.pipe.d.ts +9 -0
  157. package/lib/components/shared-components/feature-list/feature-list-page.component.d.ts +9 -0
  158. package/lib/components/shared-components/feature-list/feature-list-page.model.d.ts +23 -0
  159. package/lib/components/shared-components/feature-list/feature-list.component.d.ts +62 -0
  160. package/{src/lib/components/shared-components/feature-list/index.ts → lib/components/shared-components/feature-list/index.d.ts} +5 -5
  161. package/lib/components/shared-components/filter/directives/filter-field.directive.d.ts +20 -0
  162. package/lib/components/shared-components/filter/filter.component.d.ts +53 -0
  163. package/lib/components/shared-components/filter/filter.model.d.ts +2 -0
  164. package/{src/lib/components/shared-components/filter/index.ts → lib/components/shared-components/filter/index.d.ts} +2 -2
  165. package/lib/components/shared-components/generic-field/generic-field.component.d.ts +28 -0
  166. package/{src/lib/components/shared-components/generic-field/index.ts → lib/components/shared-components/generic-field/index.d.ts} +1 -1
  167. package/lib/components/shared-components/generic-form/generic-form.component.d.ts +15 -0
  168. package/lib/components/shared-components/generic-form/generic-form.model.d.ts +4 -0
  169. package/{src/lib/components/shared-components/generic-form/index.ts → lib/components/shared-components/generic-form/index.d.ts} +2 -2
  170. package/{src/lib/components/shared-components/index.ts → lib/components/shared-components/index.d.ts} +6 -6
  171. package/{src/lib/components/side-menu/index.ts → lib/components/side-menu/index.d.ts} +2 -2
  172. package/lib/components/side-menu/side-menu.component.d.ts +15 -0
  173. package/lib/components/side-menu/side-menu.module.d.ts +12 -0
  174. package/{src/lib/components/snackbar/index.ts → lib/components/snackbar/index.d.ts} +2 -2
  175. package/lib/components/snackbar/services/snackbar.service.d.ts +18 -0
  176. package/lib/components/snackbar/snackbar.component.d.ts +18 -0
  177. package/{src/lib/components/snackbar/snackbar.model.ts → lib/components/snackbar/snackbar.model.d.ts} +10 -10
  178. package/lib/components/stepper/index.d.ts +1 -0
  179. package/lib/components/stepper/stepper.component.d.ts +20 -0
  180. package/lib/components/switch/index.d.ts +1 -0
  181. package/lib/components/switch/switch.component.d.ts +12 -0
  182. package/{src/lib/components/tab-view/index.ts → lib/components/tab-view/index.d.ts} +3 -3
  183. package/lib/components/tab-view/tab-view-item.component.d.ts +14 -0
  184. package/lib/components/tab-view/tab-view.component.d.ts +19 -0
  185. package/lib/components/tab-view/tab-view.module.d.ts +12 -0
  186. package/{src/lib/components/table/index.ts → lib/components/table/index.d.ts} +1 -1
  187. package/lib/components/table/table-pagination-info.component.d.ts +12 -0
  188. package/lib/components/table/table.component.d.ts +91 -0
  189. package/lib/components/table/table.model.d.ts +3 -0
  190. package/lib/components/textarea/index.d.ts +1 -0
  191. package/lib/components/textarea/textarea.component.d.ts +25 -0
  192. package/lib/components/textfield/index.d.ts +1 -0
  193. package/lib/components/textfield/textfield.component.d.ts +28 -0
  194. package/lib/components/tooltip/index.d.ts +1 -0
  195. package/lib/components/tooltip/tooltip.component.d.ts +18 -0
  196. package/{src/lib/components/tristatecheckbox/index.ts → lib/components/tristatecheckbox/index.d.ts} +1 -1
  197. package/lib/components/tristatecheckbox/tristatecheckbox.component.d.ts +27 -0
  198. package/lib/icons.d.ts +2 -0
  199. package/{src/lib/index.ts → lib/index.d.ts} +5 -5
  200. package/lib/init.service.d.ts +6 -0
  201. package/{src/lib/pages/index.ts → lib/pages/index.d.ts} +3 -3
  202. package/{src/lib/pages/not-authenticated/index.ts → lib/pages/not-authenticated/index.d.ts} +1 -1
  203. package/lib/pages/not-authenticated/not-authenticated.component.d.ts +5 -0
  204. package/{src/lib/pages/not-authorized/index.ts → lib/pages/not-authorized/index.d.ts} +1 -1
  205. package/lib/pages/not-authorized/not-authorized.component.d.ts +6 -0
  206. package/{src/lib/pages/not-found/index.ts → lib/pages/not-found/index.d.ts} +1 -1
  207. package/lib/pages/not-found/not-found.component.d.ts +6 -0
  208. package/lib/pipes/color/color.pipe.d.ts +8 -0
  209. package/{src/lib/pipes/index.ts → lib/pipes/index.d.ts} +3 -3
  210. package/lib/pipes/multiselect/multiselect-options.pipe.d.ts +9 -0
  211. package/lib/pipes/size/size.pipe.d.ts +8 -0
  212. package/package.json +37 -21
  213. package/.eslintrc.json +0 -48
  214. package/assets/i18n/cs.json +0 -9
  215. package/assets/i18n/en.json +0 -9
  216. package/assets/icons/components/24-7.svg +0 -12
  217. package/assets/icons/components/NO-ICON.svg +0 -2
  218. package/assets/icons/components/add.svg +0 -6
  219. package/assets/icons/components/all.svg +0 -3
  220. package/assets/icons/components/arrival.svg +0 -12
  221. package/assets/icons/components/arrow-left.svg +0 -3
  222. package/assets/icons/components/arrow-right.svg +0 -3
  223. package/assets/icons/components/bars.svg +0 -3
  224. package/assets/icons/components/bell.svg +0 -4
  225. package/assets/icons/components/big-help.svg +0 -12
  226. package/assets/icons/components/book.svg +0 -10
  227. package/assets/icons/components/bookmarks.svg +0 -11
  228. package/assets/icons/components/box-arrow-up-right.svg +0 -11
  229. package/assets/icons/components/business-file.svg +0 -14
  230. package/assets/icons/components/businessman.svg +0 -3
  231. package/assets/icons/components/cactus.svg +0 -14
  232. package/assets/icons/components/calendar.svg +0 -3
  233. package/assets/icons/components/camera.svg +0 -5
  234. package/assets/icons/components/car.svg +0 -5
  235. package/assets/icons/components/card-400.svg +0 -11
  236. package/assets/icons/components/card-401.svg +0 -11
  237. package/assets/icons/components/card-403.svg +0 -11
  238. package/assets/icons/components/card-404.svg +0 -11
  239. package/assets/icons/components/card-500.svg +0 -11
  240. package/assets/icons/components/card-502.svg +0 -11
  241. package/assets/icons/components/card-503.svg +0 -12
  242. package/assets/icons/components/card-504.svg +0 -15
  243. package/assets/icons/components/caret-right-fill.svg +0 -3
  244. package/assets/icons/components/certification.svg +0 -14
  245. package/assets/icons/components/chamber-deputies-cr.svg +0 -11
  246. package/assets/icons/components/chamber-deputies.svg +0 -13
  247. package/assets/icons/components/chat.svg +0 -11
  248. package/assets/icons/components/check-circle.svg +0 -4
  249. package/assets/icons/components/check-lg.svg +0 -3
  250. package/assets/icons/components/chevron-double-left.svg +0 -4
  251. package/assets/icons/components/chevron-double-right.svg +0 -4
  252. package/assets/icons/components/chevron-down.svg +0 -3
  253. package/assets/icons/components/chevron-left.svg +0 -3
  254. package/assets/icons/components/chevron-right.svg +0 -3
  255. package/assets/icons/components/chevron-up.svg +0 -3
  256. package/assets/icons/components/cities.svg +0 -17
  257. package/assets/icons/components/city-office.svg +0 -17
  258. package/assets/icons/components/coins.svg +0 -14
  259. package/assets/icons/components/communication.svg +0 -4
  260. package/assets/icons/components/confusion.svg +0 -8
  261. package/assets/icons/components/contact.svg +0 -6
  262. package/assets/icons/components/copy.svg +0 -10
  263. package/assets/icons/components/court.svg +0 -5
  264. package/assets/icons/components/covid.svg +0 -5
  265. package/assets/icons/components/czech-lion.svg +0 -134
  266. package/assets/icons/components/dash-lg.svg +0 -3
  267. package/assets/icons/components/diagram.svg +0 -3
  268. package/assets/icons/components/digital.svg +0 -10
  269. package/assets/icons/components/disability.svg +0 -5
  270. package/assets/icons/components/doc-agreement.svg +0 -7
  271. package/assets/icons/components/doc-basic-info.svg +0 -18
  272. package/assets/icons/components/doc-business.svg +0 -8
  273. package/assets/icons/components/doc-car-point-list.svg +0 -16
  274. package/assets/icons/components/doc-diploma.svg +0 -17
  275. package/assets/icons/components/doc-driver-info.svg +0 -8
  276. package/assets/icons/components/doc-election.svg +0 -13
  277. package/assets/icons/components/doc-filled.svg +0 -16
  278. package/assets/icons/components/doc-health.svg +0 -3
  279. package/assets/icons/components/doc-judgment.svg +0 -8
  280. package/assets/icons/components/doc-patient.svg +0 -8
  281. package/assets/icons/components/doc-personal-info.svg +0 -11
  282. package/assets/icons/components/doc-petition.svg +0 -8
  283. package/assets/icons/components/doc-registers.svg +0 -7
  284. package/assets/icons/components/doc-review.svg +0 -20
  285. package/assets/icons/components/doc-search.svg +0 -8
  286. package/assets/icons/components/doc-stamp.svg +0 -15
  287. package/assets/icons/components/doc-state.svg +0 -13
  288. package/assets/icons/components/doc-taxes.svg +0 -16
  289. package/assets/icons/components/doc-universal.svg +0 -13
  290. package/assets/icons/components/doc-visa.svg +0 -14
  291. package/assets/icons/components/documents.svg +0 -11
  292. package/assets/icons/components/download.svg +0 -4
  293. package/assets/icons/components/driver-file.svg +0 -14
  294. package/assets/icons/components/driver.svg +0 -7
  295. package/assets/icons/components/driving-licence.svg +0 -7
  296. package/assets/icons/components/email-notification.svg +0 -12
  297. package/assets/icons/components/empty-file.svg +0 -13
  298. package/assets/icons/components/energy.svg +0 -11
  299. package/assets/icons/components/envelope-fill.svg +0 -3
  300. package/assets/icons/components/envelope.svg +0 -3
  301. package/assets/icons/components/error.svg +0 -12
  302. package/assets/icons/components/european-parliament.svg +0 -11
  303. package/assets/icons/components/exclamation-lg.svg +0 -3
  304. package/assets/icons/components/exclamation-triangle-fill.svg +0 -10
  305. package/assets/icons/components/export.svg +0 -13
  306. package/assets/icons/components/eye.svg +0 -4
  307. package/assets/icons/components/family.svg +0 -12
  308. package/assets/icons/components/fast-forward.svg +0 -1
  309. package/assets/icons/components/filter.svg +0 -3
  310. package/assets/icons/components/gear.svg +0 -11
  311. package/assets/icons/components/geo-alt-fill.svg +0 -10
  312. package/assets/icons/components/globe.svg +0 -12
  313. package/assets/icons/components/graduate.svg +0 -4
  314. package/assets/icons/components/group.svg +0 -3
  315. package/assets/icons/components/hand-503.svg +0 -10
  316. package/assets/icons/components/hand-504.svg +0 -7
  317. package/assets/icons/components/hand.svg +0 -14
  318. package/assets/icons/components/health.svg +0 -5
  319. package/assets/icons/components/help.svg +0 -4
  320. package/assets/icons/components/history.svg +0 -4
  321. package/assets/icons/components/holiday.svg +0 -13
  322. package/assets/icons/components/hourglass.svg +0 -4
  323. package/assets/icons/components/house-door-fill.svg +0 -3
  324. package/assets/icons/components/house.svg +0 -13
  325. package/assets/icons/components/id-card.svg +0 -6
  326. package/assets/icons/components/id-info.svg +0 -9
  327. package/assets/icons/components/id.svg +0 -6
  328. package/assets/icons/components/illness.svg +0 -9
  329. package/assets/icons/components/info-circle-fill.svg +0 -10
  330. package/assets/icons/components/info-circle.svg +0 -11
  331. package/assets/icons/components/info-list.svg +0 -14
  332. package/assets/icons/components/info.svg +0 -3
  333. package/assets/icons/components/institute-file.svg +0 -23
  334. package/assets/icons/components/institution.svg +0 -10
  335. package/assets/icons/components/job-loss.svg +0 -4
  336. package/assets/icons/components/job.svg +0 -3
  337. package/assets/icons/components/lightbulb-fill.svg +0 -10
  338. package/assets/icons/components/list.svg +0 -3
  339. package/assets/icons/components/loader.svg +0 -3
  340. package/assets/icons/components/login.svg +0 -11
  341. package/assets/icons/components/logout.svg +0 -13
  342. package/assets/icons/components/map.svg +0 -11
  343. package/assets/icons/components/mobile-phone.svg +0 -13
  344. package/assets/icons/components/moon.svg +0 -10
  345. package/assets/icons/components/mouse.svg +0 -3
  346. package/assets/icons/components/my-filing.svg +0 -15
  347. package/assets/icons/components/my-state-data.svg +0 -19
  348. package/assets/icons/components/new-comments.svg +0 -6
  349. package/assets/icons/components/newborn.svg +0 -16
  350. package/assets/icons/components/news.svg +0 -20
  351. package/assets/icons/components/packet.svg +0 -11
  352. package/assets/icons/components/passport.svg +0 -7
  353. package/assets/icons/components/pencil.svg +0 -3
  354. package/assets/icons/components/personal-file.svg +0 -14
  355. package/assets/icons/components/pet.svg +0 -10
  356. package/assets/icons/components/petrol-station.svg +0 -14
  357. package/assets/icons/components/pills.svg +0 -4
  358. package/assets/icons/components/plus-lg.svg +0 -3
  359. package/assets/icons/components/population-register.svg +0 -12
  360. package/assets/icons/components/port-card.svg +0 -8
  361. package/assets/icons/components/portal.svg +0 -8
  362. package/assets/icons/components/pregnant.svg +0 -11
  363. package/assets/icons/components/president.svg +0 -13
  364. package/assets/icons/components/presidential-election.svg +0 -12
  365. package/assets/icons/components/print-fill.svg +0 -4
  366. package/assets/icons/components/profile-settings.svg +0 -13
  367. package/assets/icons/components/property.svg +0 -4
  368. package/assets/icons/components/question-circle.svg +0 -4
  369. package/assets/icons/components/queue.svg +0 -13
  370. package/assets/icons/components/quotes.svg +0 -6
  371. package/assets/icons/components/region.svg +0 -11
  372. package/assets/icons/components/regional-elections-clear.svg +0 -11
  373. package/assets/icons/components/regional-elections.svg +0 -12
  374. package/assets/icons/components/register-of-persons.svg +0 -7
  375. package/assets/icons/components/retiree.svg +0 -8
  376. package/assets/icons/components/rings.svg +0 -5
  377. package/assets/icons/components/search.svg +0 -10
  378. package/assets/icons/components/senate.svg +0 -11
  379. package/assets/icons/components/senior.svg +0 -4
  380. package/assets/icons/components/settings.svg +0 -13
  381. package/assets/icons/components/simple-envelope.svg +0 -3
  382. package/assets/icons/components/sms-notification.svg +0 -7
  383. package/assets/icons/components/sos.svg +0 -6
  384. package/assets/icons/components/star-fill.svg +0 -10
  385. package/assets/icons/components/state-file.svg +0 -8
  386. package/assets/icons/components/sun.svg +0 -10
  387. package/assets/icons/components/telephone.svg +0 -10
  388. package/assets/icons/components/three-dots-vertical.svg +0 -3
  389. package/assets/icons/components/time.svg +0 -4
  390. package/assets/icons/components/tombstone.svg +0 -7
  391. package/assets/icons/components/trash.svg +0 -6
  392. package/assets/icons/components/twitter-x.svg +0 -10
  393. package/assets/icons/components/upload.svg +0 -4
  394. package/assets/icons/components/user-login.svg +0 -13
  395. package/assets/icons/components/user.svg +0 -3
  396. package/assets/icons/components/vaccine.svg +0 -11
  397. package/assets/icons/components/x-circle.svg +0 -4
  398. package/assets/icons/components/x-lg.svg +0 -3
  399. package/assets/icons/components/x.svg +0 -3
  400. package/assets/logos/v-logo.svg +0 -4
  401. package/jest.config.ts +0 -21
  402. package/ng-package.json +0 -10
  403. package/project.json +0 -49
  404. package/src/config.d.ts +0 -10
  405. package/src/lib/components/breadcrumb/breadcrumb.component.html +0 -23
  406. package/src/lib/components/breadcrumb/breadcrumb.component.scss +0 -0
  407. package/src/lib/components/breadcrumb/breadcrumb.component.spec.ts +0 -21
  408. package/src/lib/components/breadcrumb/breadcrumb.component.ts +0 -30
  409. package/src/lib/components/button/button.component.html +0 -26
  410. package/src/lib/components/button/button.component.scss +0 -0
  411. package/src/lib/components/button/button.component.ts +0 -72
  412. package/src/lib/components/button/index.ts +0 -1
  413. package/src/lib/components/calendar/calendar.component.html +0 -28
  414. package/src/lib/components/calendar/calendar.component.scss +0 -0
  415. package/src/lib/components/calendar/calendar.component.ts +0 -79
  416. package/src/lib/components/calendar/index.ts +0 -1
  417. package/src/lib/components/checkbox/checkbox.component.html +0 -23
  418. package/src/lib/components/checkbox/checkbox.component.scss +0 -0
  419. package/src/lib/components/checkbox/checkbox.component.ts +0 -62
  420. package/src/lib/components/checkbox/index.ts +0 -1
  421. package/src/lib/components/confirm-dialog/confirm-dialog.component.html +0 -50
  422. package/src/lib/components/confirm-dialog/confirm-dialog.component.scss +0 -4
  423. package/src/lib/components/confirm-dialog/confirm-dialog.component.ts +0 -80
  424. package/src/lib/components/dropdown/dropdown-item.component.html +0 -8
  425. package/src/lib/components/dropdown/dropdown-item.component.ts +0 -18
  426. package/src/lib/components/dropdown/dropdown.component.html +0 -90
  427. package/src/lib/components/dropdown/dropdown.component.scss +0 -108
  428. package/src/lib/components/dropdown/dropdown.component.spec.ts +0 -21
  429. package/src/lib/components/dropdown/dropdown.component.ts +0 -297
  430. package/src/lib/components/errors/error.component.html +0 -11
  431. package/src/lib/components/errors/error.component.scss +0 -0
  432. package/src/lib/components/errors/error.component.spec.ts +0 -19
  433. package/src/lib/components/errors/error.component.ts +0 -30
  434. package/src/lib/components/errors/index.ts +0 -1
  435. package/src/lib/components/form-field/form-field.component.html +0 -14
  436. package/src/lib/components/form-field/form-field.component.scss +0 -0
  437. package/src/lib/components/form-field/form-field.component.spec.ts +0 -21
  438. package/src/lib/components/form-field/form-field.component.ts +0 -78
  439. package/src/lib/components/header/header.component.html +0 -122
  440. package/src/lib/components/header/header.component.scss +0 -0
  441. package/src/lib/components/header/header.component.ts +0 -91
  442. package/src/lib/components/header/index.ts +0 -1
  443. package/src/lib/components/input-group/index.ts +0 -1
  444. package/src/lib/components/input-group/input-group.component.html +0 -41
  445. package/src/lib/components/input-group/input-group.component.scss +0 -0
  446. package/src/lib/components/input-group/input-group.component.ts +0 -77
  447. package/src/lib/components/loader/index.ts +0 -1
  448. package/src/lib/components/loader/loader.component.html +0 -7
  449. package/src/lib/components/loader/loader.component.scss +0 -0
  450. package/src/lib/components/loader/loader.component.spec.ts +0 -21
  451. package/src/lib/components/loader/loader.component.ts +0 -33
  452. package/src/lib/components/multiselect/index.ts +0 -1
  453. package/src/lib/components/multiselect/multiselect.component.html +0 -21
  454. package/src/lib/components/multiselect/multiselect.component.scss +0 -0
  455. package/src/lib/components/multiselect/multiselect.component.spec.ts +0 -21
  456. package/src/lib/components/multiselect/multiselect.component.ts +0 -119
  457. package/src/lib/components/number-input/index.ts +0 -1
  458. package/src/lib/components/number-input/number-input.component.html +0 -48
  459. package/src/lib/components/number-input/number-input.component.scss +0 -0
  460. package/src/lib/components/number-input/number-input.component.ts +0 -82
  461. package/src/lib/components/page-header/index.ts +0 -1
  462. package/src/lib/components/page-header/page-header.component.html +0 -3
  463. package/src/lib/components/page-header/page-header.component.scss +0 -11
  464. package/src/lib/components/page-header/page-header.component.spec.ts +0 -21
  465. package/src/lib/components/page-header/page-header.component.ts +0 -29
  466. package/src/lib/components/password/password.component.html +0 -31
  467. package/src/lib/components/password/password.component.scss +0 -0
  468. package/src/lib/components/password/password.component.spec.ts +0 -21
  469. package/src/lib/components/password/password.component.ts +0 -85
  470. package/src/lib/components/radiobutton/index.ts +0 -1
  471. package/src/lib/components/radiobutton/radiobutton.component.html +0 -23
  472. package/src/lib/components/radiobutton/radiobutton.component.scss +0 -0
  473. package/src/lib/components/radiobutton/radiobutton.component.ts +0 -58
  474. package/src/lib/components/search/index.ts +0 -1
  475. package/src/lib/components/search/search.component.html +0 -23
  476. package/src/lib/components/search/search.component.scss +0 -0
  477. package/src/lib/components/search/search.component.ts +0 -47
  478. package/src/lib/components/section/index.ts +0 -1
  479. package/src/lib/components/section/section.component.html +0 -26
  480. package/src/lib/components/section/section.component.scss +0 -0
  481. package/src/lib/components/section/section.component.ts +0 -57
  482. package/src/lib/components/shared-components/action-button-group/action-button-group.component.html +0 -27
  483. package/src/lib/components/shared-components/action-button-group/action-button-group.component.scss +0 -0
  484. package/src/lib/components/shared-components/action-button-group/action-button-group.component.spec.ts +0 -21
  485. package/src/lib/components/shared-components/action-button-group/action-button-group.component.ts +0 -114
  486. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.html +0 -11
  487. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.scss +0 -0
  488. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.spec.ts +0 -21
  489. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.ts +0 -71
  490. package/src/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.ts +0 -142
  491. package/src/lib/components/shared-components/dynamic-component/dynamic-component.component.ts +0 -56
  492. package/src/lib/components/shared-components/feature-list/directives/feature-list-column.directive.ts +0 -32
  493. package/src/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.ts +0 -8
  494. package/src/lib/components/shared-components/feature-list/feature-list-filter.pipe.ts +0 -21
  495. package/src/lib/components/shared-components/feature-list/feature-list-page.component.ts +0 -31
  496. package/src/lib/components/shared-components/feature-list/feature-list-page.model.ts +0 -42
  497. package/src/lib/components/shared-components/feature-list/feature-list.component.html +0 -59
  498. package/src/lib/components/shared-components/feature-list/feature-list.component.scss +0 -10
  499. package/src/lib/components/shared-components/feature-list/feature-list.component.ts +0 -342
  500. package/src/lib/components/shared-components/filter/directives/filter-field.directive.ts +0 -35
  501. package/src/lib/components/shared-components/filter/filter.component.html +0 -68
  502. package/src/lib/components/shared-components/filter/filter.component.scss +0 -0
  503. package/src/lib/components/shared-components/filter/filter.component.spec.ts +0 -21
  504. package/src/lib/components/shared-components/filter/filter.component.stories.ts +0 -23
  505. package/src/lib/components/shared-components/filter/filter.component.ts +0 -284
  506. package/src/lib/components/shared-components/filter/filter.model.ts +0 -18
  507. package/src/lib/components/shared-components/generic-field/generic-field.component.html +0 -97
  508. package/src/lib/components/shared-components/generic-field/generic-field.component.spec.ts +0 -21
  509. package/src/lib/components/shared-components/generic-field/generic-field.component.ts +0 -94
  510. package/src/lib/components/shared-components/generic-form/generic-form.component.html +0 -46
  511. package/src/lib/components/shared-components/generic-form/generic-form.component.spec.ts +0 -21
  512. package/src/lib/components/shared-components/generic-form/generic-form.component.ts +0 -57
  513. package/src/lib/components/shared-components/generic-form/generic-form.model.spec.ts +0 -82
  514. package/src/lib/components/shared-components/generic-form/generic-form.model.ts +0 -68
  515. package/src/lib/components/side-menu/side-menu.component.html +0 -25
  516. package/src/lib/components/side-menu/side-menu.component.scss +0 -23
  517. package/src/lib/components/side-menu/side-menu.component.ts +0 -42
  518. package/src/lib/components/side-menu/side-menu.module.ts +0 -56
  519. package/src/lib/components/sidemenu/index.ts +0 -2
  520. package/src/lib/components/snackbar/services/snackbar.service.ts +0 -73
  521. package/src/lib/components/snackbar/snackbar.component.html +0 -14
  522. package/src/lib/components/snackbar/snackbar.component.scss +0 -0
  523. package/src/lib/components/snackbar/snackbar.component.spec.ts +0 -21
  524. package/src/lib/components/snackbar/snackbar.component.ts +0 -45
  525. package/src/lib/components/stepper/index.ts +0 -1
  526. package/src/lib/components/stepper/stepper.component.html +0 -35
  527. package/src/lib/components/stepper/stepper.component.scss +0 -9
  528. package/src/lib/components/stepper/stepper.component.ts +0 -61
  529. package/src/lib/components/switch/index.ts +0 -1
  530. package/src/lib/components/switch/switch.component.html +0 -16
  531. package/src/lib/components/switch/switch.component.scss +0 -0
  532. package/src/lib/components/switch/switch.component.ts +0 -37
  533. package/src/lib/components/tab-view/tab-view-item.component.ts +0 -23
  534. package/src/lib/components/tab-view/tab-view.component.html +0 -51
  535. package/src/lib/components/tab-view/tab-view.component.scss +0 -43
  536. package/src/lib/components/tab-view/tab-view.component.ts +0 -61
  537. package/src/lib/components/tab-view/tab-view.module.ts +0 -25
  538. package/src/lib/components/table/table-pagination-info.component.html +0 -9
  539. package/src/lib/components/table/table-pagination-info.component.ts +0 -22
  540. package/src/lib/components/table/table.component.html +0 -198
  541. package/src/lib/components/table/table.component.scss +0 -193
  542. package/src/lib/components/table/table.component.ts +0 -387
  543. package/src/lib/components/table/table.model.ts +0 -17
  544. package/src/lib/components/table/table.models.ts +0 -12
  545. package/src/lib/components/textarea/index.ts +0 -1
  546. package/src/lib/components/textarea/textarea.component.html +0 -50
  547. package/src/lib/components/textarea/textarea.component.scss +0 -0
  548. package/src/lib/components/textarea/textarea.component.ts +0 -78
  549. package/src/lib/components/textfield/index.ts +0 -1
  550. package/src/lib/components/textfield/textfield.component.html +0 -56
  551. package/src/lib/components/textfield/textfield.component.scss +0 -0
  552. package/src/lib/components/textfield/textfield.component.ts +0 -114
  553. package/src/lib/components/tooltip/index.ts +0 -1
  554. package/src/lib/components/tooltip/tooltip.component.html +0 -10
  555. package/src/lib/components/tooltip/tooltip.component.scss +0 -0
  556. package/src/lib/components/tooltip/tooltip.component.ts +0 -57
  557. package/src/lib/components/tristatecheckbox/tristatecheckbox.component.html +0 -23
  558. package/src/lib/components/tristatecheckbox/tristatecheckbox.component.scss +0 -0
  559. package/src/lib/components/tristatecheckbox/tristatecheckbox.component.ts +0 -103
  560. package/src/lib/icons.ts +0 -36
  561. package/src/lib/init.service.ts +0 -11
  562. package/src/lib/interceptors/http-error-message.interceptor.ts +0 -45
  563. package/src/lib/pages/bad-request-page/bad-request-page.component.html +0 -5
  564. package/src/lib/pages/bad-request-page/bad-request-page.component.scss +0 -0
  565. package/src/lib/pages/bad-request-page/bad-request-page.component.ts +0 -15
  566. package/src/lib/pages/error-page/error-page.component.html +0 -5
  567. package/src/lib/pages/error-page/error-page.component.scss +0 -0
  568. package/src/lib/pages/error-page/error-page.component.ts +0 -32
  569. package/src/lib/pages/error-page/error-page.constants.ts +0 -19
  570. package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.html +0 -5
  571. package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.scss +0 -0
  572. package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.ts +0 -16
  573. package/src/lib/pages/not-authenticated/not-authenticated.component.html +0 -5
  574. package/src/lib/pages/not-authenticated/not-authenticated.component.ts +0 -14
  575. package/src/lib/pages/not-authorized/not-authorized.component.html +0 -5
  576. package/src/lib/pages/not-authorized/not-authorized.component.ts +0 -18
  577. package/src/lib/pages/not-found/not-found.component.html +0 -5
  578. package/src/lib/pages/not-found/not-found.component.ts +0 -18
  579. package/src/lib/pages/not-found-page/not-found-page.component.html +0 -6
  580. package/src/lib/pages/not-found-page/not-found-page.component.scss +0 -0
  581. package/src/lib/pages/not-found-page/not-found-page.component.ts +0 -16
  582. package/src/lib/pipes/color/color.pipe.ts +0 -24
  583. package/src/lib/pipes/multiselect/multiselect-options.pipe.ts +0 -61
  584. package/src/lib/pipes/size/size.pipe.ts +0 -20
  585. package/src/sass/header.css +0 -526
  586. package/src/sass/header.scss +0 -480
  587. package/src/sass/main.scss +0 -246
  588. package/src/sass/scrollbar.scss +0 -22
  589. package/src/sass/sidemenu.css +0 -205
  590. package/src/sass/vendors/_bootstrap.scss +0 -2
  591. package/src/test-setup.ts +0 -8
  592. package/tsconfig.json +0 -32
  593. package/tsconfig.lib.json +0 -17
  594. package/tsconfig.lib.prod.json +0 -10
  595. package/tsconfig.spec.json +0 -16
@@ -1,6 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M43.4183 19.939C43.8046 20.1418 44.2532 19.8088 44.1785 19.3746L43.0484 12.804L47.8378 8.14474C48.1538 7.83729 47.9818 7.29617 47.548 7.23324L40.9254 6.27238L37.9703 0.294221C37.7764 -0.0980439 37.2237 -0.0980819 37.0297 0.294156L34.0736 6.27238L27.4519 7.23324C27.0182 7.29618 26.8462 7.83724 27.1622 8.1447L31.9506 12.804L30.8215 19.3748C30.7469 19.809 31.1954 20.1419 31.5817 19.9391L37.5001 16.8322L43.4183 19.939ZM45.3878 8.43552L41.4362 12.2797L42.3673 17.6931L37.5001 15.138L32.6324 17.6934L33.5627 12.2797L29.6119 8.43552L35.0689 7.64367L37.4999 2.72751L39.93 7.64367L45.3878 8.43552Z" fill="currentColor"/>
3
- <path d="M1 10.001C1 8.89641 1.89543 8.00098 3 8.00098H23.25C23.6642 8.00098 24 8.33676 24 8.75098C24 9.16519 23.6642 9.50098 23.25 9.50098H3C2.72386 9.50098 2.5 9.72483 2.5 10.001V38.001C2.5 38.2771 2.72386 38.501 3 38.501H8.23223C8.76267 38.501 9.27137 38.7117 9.64645 39.0868L16.3964 45.8368C16.5917 46.032 16.9083 46.032 17.1036 45.8368L23.8536 39.0868C24.2286 38.7117 24.7373 38.501 25.2678 38.501H42C42.2761 38.501 42.5 38.2771 42.5 38.001V23.751C42.5 23.3368 42.8358 23.001 43.25 23.001C43.6642 23.001 44 23.3368 44 23.751V38.001C44 39.1055 43.1046 40.001 42 40.001H25.2678C25.1352 40.001 25.008 40.0537 24.9142 40.1474L18.1642 46.8974C17.3832 47.6785 16.1168 47.6785 15.3358 46.8974L8.58579 40.1474C8.49202 40.0537 8.36484 40.001 8.23223 40.001H3C1.89543 40.001 1 39.1055 1 38.001V10.001Z" fill="currentColor"/>
4
- <path d="M8.25 17.75C8.25 17.3358 8.58579 17 9 17H16C16.4142 17 16.75 17.3358 16.75 17.75C16.75 18.1642 16.4142 18.5 16 18.5H9C8.58579 18.5 8.25 18.1642 8.25 17.75Z" fill="currentColor"/>
5
- <path d="M9 26C8.58579 26 8.25 26.3358 8.25 26.75C8.25 27.1642 8.58579 27.5 9 27.5H29C29.4142 27.5 29.75 27.1642 29.75 26.75C29.75 26.3358 29.4142 26 29 26H9Z" fill="currentColor"/>
6
- </svg>
@@ -1,16 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_779)">
3
- <path d="M20 8.75089C20 8.33667 20.3358 8.00089 20.75 8.00089C21.1642 8.00089 21.5 8.33667 21.5 8.75089V9.75089C21.5 10.1651 21.1642 10.5009 20.75 10.5009C20.3358 10.5009 20 10.1651 20 9.75089V8.75089Z" fill="currentColor"/>
4
- <path d="M20.9144 12.0324C21.1731 11.7089 21.6451 11.6565 21.9685 11.9153C23.1562 12.8654 24.8438 12.8654 26.0315 11.9153C26.355 11.6565 26.8269 11.7089 27.0857 12.0324C27.3444 12.3558 27.292 12.8278 26.9685 13.0866C25.233 14.475 22.767 14.475 21.0315 13.0866C20.7081 12.8278 20.6556 12.3558 20.9144 12.0324Z" fill="currentColor"/>
5
- <path d="M27.25 8.00089C26.8358 8.00089 26.5 8.33667 26.5 8.75089V9.75089C26.5 10.1651 26.8358 10.5009 27.25 10.5009C27.6642 10.5009 28 10.1651 28 9.75089V8.75089C28 8.33667 27.6642 8.00089 27.25 8.00089Z" fill="currentColor"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M33.5 9.50089C33.5 14.7476 29.2467 19.0009 24 19.0009C18.7533 19.0009 14.5 14.7476 14.5 9.50089C14.5 4.25418 18.7533 0.00088501 24 0.00088501C29.2467 0.00088501 33.5 4.25418 33.5 9.50089ZM32 9.50089C32 13.9192 28.4183 17.5009 24 17.5009C19.5817 17.5009 16 13.9192 16 9.50089C16 6.08095 18.146 3.16223 21.1648 2.01783C21.058 2.32581 21 2.65657 21 3.00089C21 4.65774 22.3431 6.00089 24 6.00089C24.969 6.00089 25.8307 5.54147 26.3792 4.82857C26.6319 4.50008 26.4492 4.05055 26.0683 3.88729C25.6876 3.72414 25.2523 3.92422 24.9268 4.18035C24.6717 4.38112 24.3498 4.50089 24 4.50089C23.1716 4.50089 22.5 3.82931 22.5 3.00089C22.5 2.17246 23.1716 1.50089 24 1.50089C28.4183 1.50089 32 5.08261 32 9.50089Z" fill="currentColor"/>
7
- <path d="M21.5 28.2509C21.0858 28.2509 20.75 28.5867 20.75 29.0009C20.75 29.4151 21.0858 29.7509 21.5 29.7509H26.5C26.9142 29.7509 27.25 29.4151 27.25 29.0009C27.25 28.5867 26.9142 28.2509 26.5 28.2509H21.5Z" fill="currentColor"/>
8
- <path d="M16.5618 19.0009C15.5231 19.0009 14.5269 19.4135 13.7924 20.148L10.0149 23.9255C8.64804 25.2923 8.64804 27.5084 10.0149 28.8753C11.3817 30.2421 13.5978 30.2421 14.9646 28.8753L15.0835 28.7564C15.3764 28.4635 15.3764 27.9886 15.0835 27.6957C14.7906 27.4028 14.3158 27.4028 14.0229 27.6957L13.904 27.8146C13.1229 28.5956 11.8566 28.5956 11.0755 27.8146C10.2945 27.0335 10.2945 25.7672 11.0755 24.9862L15.0405 21.0212C15.7714 20.2903 16.9311 20.2539 17.8165 20.7873C19.6224 21.8751 21.738 22.5009 23.9998 22.5009C26.2617 22.5009 28.3774 21.8751 30.1833 20.7872C31.0687 20.2537 32.2284 20.2901 32.9593 21.021L36.9247 24.9862C37.7058 25.7672 37.7058 27.0335 36.9247 27.8146C36.1437 28.5956 34.8773 28.5956 34.0963 27.8146L33.9774 27.6957C33.6845 27.4028 33.2096 27.4028 32.9167 27.6957C32.6238 27.9886 32.6238 28.4635 32.9167 28.7564L33.0356 28.8753C34.4025 30.2421 36.6185 30.2421 37.9854 28.8753C39.3522 27.5084 39.3522 25.2923 37.9854 23.9255L34.208 20.1481C33.4734 19.4136 32.4771 19.0009 31.4383 19.0009C30.611 19.0009 29.8162 19.2832 29.0931 19.685C27.5846 20.5234 25.8479 21.0009 23.9998 21.0009C22.1517 21.0009 20.4151 20.5233 18.9067 19.685C18.1837 19.2831 17.389 19.0009 16.5618 19.0009Z" fill="currentColor"/>
9
- <path fill-rule="evenodd" clip-rule="evenodd" d="M18.75 23.5009C18.75 23.0867 18.4142 22.7509 18 22.7509C17.5858 22.7509 17.25 23.0867 17.25 23.5009V32.1549L13.8688 35.5361C12.302 37.1029 11.7263 39.4058 12.3714 41.5257L13.641 45.6972C14.1636 47.4143 15.9793 48.3827 17.6965 47.8601C19.4136 47.3375 20.382 45.5218 19.8594 43.8046L18.6772 39.9201L21.5052 37.0921L21.6645 37.1717C23.1346 37.9068 24.8651 37.9068 26.3353 37.1717L26.4957 37.0915L29.3243 39.9201L28.1421 43.8046C27.6194 45.5218 28.5878 47.3375 30.305 47.8601C32.0221 48.3827 33.8378 47.4143 34.3604 45.6972L35.63 41.5257C36.2752 39.4058 35.6995 37.1029 34.1326 35.5361L30.75 32.1534V23.5009C30.75 23.0867 30.4142 22.7509 30 22.7509C29.5858 22.7509 29.25 23.0867 29.25 23.5009V32.1474C27.7665 32.8946 26.5916 34.1486 25.9448 35.6899L25.6645 35.8301C24.6166 36.354 23.3832 36.354 22.3353 35.8301L22.0571 35.691C21.4102 34.1487 20.2345 32.894 18.75 32.1466V23.5009ZM18.0517 33.4745L14.9295 36.5967C13.7544 37.7719 13.3226 39.499 13.8064 41.0889L15.076 45.2604C15.3574 46.185 16.3351 46.7065 17.2597 46.4251C18.1844 46.1437 18.7058 45.166 18.4244 44.2414L17.1548 40.0699C17.0473 39.7166 17.1432 39.3327 17.4044 39.0716L20.5266 35.9494C19.9933 34.8772 19.1239 34.0078 18.0517 33.4745ZM33.072 36.5967L29.9498 33.4745C28.8775 34.0078 28.0082 34.8772 27.4749 35.9494L30.5971 39.0716C30.8582 39.3327 30.9542 39.7166 30.8467 40.0699L29.5771 44.2414C29.2957 45.166 29.8171 46.1437 30.7417 46.4251C31.6663 46.7065 32.644 46.185 32.9254 45.2604L34.195 41.0889C34.6789 39.499 34.2471 37.7719 33.072 36.5967Z" fill="currentColor"/>
10
- </g>
11
- <defs>
12
- <clipPath id="clip0_100_779">
13
- <rect width="48" height="48" fill="white" transform="translate(0 0.00088501)"/>
14
- </clipPath>
15
- </defs>
16
- </svg>
@@ -1,20 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_797)">
3
- <path d="M10.5 7.25092C10.5 6.8367 10.8358 6.50092 11.25 6.50092H30.75C31.1642 6.50092 31.5 6.8367 31.5 7.25092C31.5 7.66513 31.1642 8.00092 30.75 8.00092H11.25C10.8358 8.00092 10.5 7.66513 10.5 7.25092Z" fill="currentColor"/>
4
- <path d="M31.5 12.0009C31.5 11.4486 31.0523 11.0009 30.5 11.0009H11.5C10.9477 11.0009 10.5 11.4486 10.5 12.0009V20.0009C10.5 20.5532 10.9477 21.0009 11.5 21.0009H30.5C31.0523 21.0009 31.5 20.5532 31.5 20.0009V12.0009Z" fill="currentColor"/>
5
- <path d="M10.5 25.7509C10.5 25.3367 10.8358 25.0009 11.25 25.0009H30.75C31.1642 25.0009 31.5 25.3367 31.5 25.7509C31.5 26.1651 31.1642 26.5009 30.75 26.5009H11.25C10.8358 26.5009 10.5 26.1651 10.5 25.7509Z" fill="currentColor"/>
6
- <path d="M31.5 28.7509C31.5 28.3367 31.1642 28.0009 30.75 28.0009H11.25C10.8358 28.0009 10.5 28.3367 10.5 28.7509C10.5 29.1651 10.8358 29.5009 11.25 29.5009H30.75C31.1642 29.5009 31.5 29.1651 31.5 28.7509Z" fill="currentColor"/>
7
- <path d="M10.5 34.7509C10.5 34.3367 10.8358 34.0009 11.25 34.0009H19.25C19.6642 34.0009 20 34.3367 20 34.7509C20 35.1651 19.6642 35.5009 19.25 35.5009H11.25C10.8358 35.5009 10.5 35.1651 10.5 34.7509Z" fill="currentColor"/>
8
- <path d="M31.5 34.7509C31.5 34.3367 31.1642 34.0009 30.75 34.0009H22.75C22.3358 34.0009 22 34.3367 22 34.7509C22 35.1651 22.3358 35.5009 22.75 35.5009H30.75C31.1642 35.5009 31.5 35.1651 31.5 34.7509Z" fill="currentColor"/>
9
- <path d="M10.5 37.7509C10.5 37.3367 10.8358 37.0009 11.25 37.0009H19.25C19.6642 37.0009 20 37.3367 20 37.7509C20 38.1651 19.6642 38.5009 19.25 38.5009H11.25C10.8358 38.5009 10.5 38.1651 10.5 37.7509Z" fill="currentColor"/>
10
- <path d="M20 40.7509C20 40.3367 19.6642 40.0009 19.25 40.0009H11.25C10.8358 40.0009 10.5 40.3367 10.5 40.7509C10.5 41.1651 10.8358 41.5009 11.25 41.5009H19.25C19.6642 41.5009 20 41.1651 20 40.7509Z" fill="currentColor"/>
11
- <path d="M22 37.7509C22 37.3367 22.3358 37.0009 22.75 37.0009H30.75C31.1642 37.0009 31.5 37.3367 31.5 37.7509C31.5 38.1651 31.1642 38.5009 30.75 38.5009H22.75C22.3358 38.5009 22 38.1651 22 37.7509Z" fill="currentColor"/>
12
- <path d="M31.5 40.7509C31.5 40.3367 31.1642 40.0009 30.75 40.0009H22.75C22.3358 40.0009 22 40.3367 22 40.7509C22 41.1651 22.3358 41.5009 22.75 41.5009H30.75C31.1642 41.5009 31.5 41.1651 31.5 40.7509Z" fill="currentColor"/>
13
- <path fill-rule="evenodd" clip-rule="evenodd" d="M6 0.000915527C4.89543 0.000915527 4 0.896347 4 2.00092V44.0009C4 46.2101 5.79086 48.0009 8 48.0009H40L39.9912 47.9921C40.0767 47.998 40.163 48.0009 40.25 48.0009C42.3211 48.0009 44 46.322 44 44.2509V25.2509C44 24.1463 43.1046 23.2509 42 23.2509H38V2.00092C38 0.896346 37.1046 0.000915527 36 0.000915527H6ZM36.5 2.00092C36.5 1.72477 36.2761 1.50092 36 1.50092H6C5.72386 1.50092 5.5 1.72477 5.5 2.00092V44.0009C5.5 45.3816 6.61929 46.5009 8 46.5009H37.2497C36.779 45.8742 36.5 45.0951 36.5 44.2509V2.00092ZM38 44.2509V24.7509H42C42.2761 24.7509 42.5 24.9748 42.5 25.2509V44.2509C42.5 45.4936 41.4926 46.5009 40.25 46.5009C39.0074 46.5009 38 45.4936 38 44.2509Z" fill="currentColor"/>
14
- </g>
15
- <defs>
16
- <clipPath id="clip0_100_797">
17
- <rect width="48" height="48" fill="white" transform="translate(0 0.00088501)"/>
18
- </clipPath>
19
- </defs>
20
- </svg>
@@ -1,11 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_913)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M13 22C11.8954 22 11 22.8954 11 24V26C11 27.1046 11.8954 28 13 28H21C22.1046 28 23 27.1046 23 26V24C23 22.8954 22.1046 22 21 22H13ZM21 23.5H13C12.7239 23.5 12.5 23.7239 12.5 24V26C12.5 26.2761 12.7239 26.5 13 26.5H21C21.2761 26.5 21.5 26.2761 21.5 26V24C21.5 23.7239 21.2761 23.5 21 23.5Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M34.7072 15H41.655C42.3975 15 43.079 15.4114 43.4248 16.0685L47.8842 24.5343C48.2347 25.2002 47.7468 26 46.9943 26H42.9704L42.9948 41C42.9948 42.1046 42.0995 43 40.9951 43H5.72492C4.62048 43 3.72516 42.1046 3.72516 41V18L1.39948 22.0287C1.19239 22.3874 0.733756 22.5103 0.37508 22.3032C0.0164038 22.0961 -0.106488 21.6374 0.100594 21.2787L3.14788 16C3.5051 15.3812 4.16527 15 4.87972 15H8.29301L18.1466 5.14645C18.3418 4.95118 18.6584 4.95118 18.8537 5.14645L22.5001 8.7929L25.1466 6.14645C25.3418 5.95118 25.6584 5.95118 25.8537 6.14645L34.7072 15ZM28.7072 15H32.5859L25.5001 7.91421L23.5608 9.85356L28.7072 15ZM10.4143 15L18.5001 6.91421L26.5859 15H10.4143ZM34.3725 26C34.0013 26 33.6606 25.7943 33.4877 25.4657L29.9964 18.7852V41.5H40.9951C41.2712 41.5 41.495 41.2761 41.495 41V26H34.3725ZM28.4966 41.5V16.5H5.22498V41C5.22498 41.2761 5.44881 41.5 5.72492 41.5H28.4966ZM30.4643 16.5L34.6743 24.5H46.2279L41.955 16.5H30.4643Z" fill="currentColor"/>
5
- </g>
6
- <defs>
7
- <clipPath id="clip0_100_913">
8
- <rect width="48" height="48" fill="white"/>
9
- </clipPath>
10
- </defs>
11
- </svg>
@@ -1,7 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M40 19.5009C40 23.643 36.6421 27.0009 32.5 27.0009C28.3579 27.0009 25 23.643 25 19.5009C25 15.3587 28.3579 12.0009 32.5 12.0009C36.6421 12.0009 40 15.3587 40 19.5009ZM38.5 19.5009C38.5 20.1096 38.4093 20.6972 38.2408 21.2509H36.0727C36.1846 20.7032 36.25 20.1187 36.25 19.5005C36.25 18.8826 36.1847 18.2983 36.0728 17.7509H38.2408C38.4093 18.3045 38.5 18.8921 38.5 19.5009ZM34.5352 17.7509C34.6694 18.2922 34.75 18.877 34.75 19.5005C34.75 20.1243 34.6693 20.7093 34.535 21.2509H30.465C30.3307 20.7093 30.25 20.1243 30.25 19.5005C30.25 18.877 30.3306 18.2922 30.4648 17.7509H34.5352ZM35.628 16.2509H37.5444C36.7746 15.0585 35.5936 14.1566 34.202 13.7457C34.3398 13.9249 34.482 14.1214 34.624 14.3345C34.9793 14.8674 35.3382 15.5102 35.628 16.2509ZM30.798 13.7457C29.4064 14.1566 28.2254 15.0585 27.4556 16.2509H29.372C29.6618 15.5102 30.0207 14.8674 30.376 14.3345C30.518 14.1214 30.6602 13.9249 30.798 13.7457ZM31.0061 16.2509C31.1976 15.8502 31.41 15.4877 31.624 15.1665C31.9382 14.6954 32.2521 14.3194 32.5 14.0505C32.7479 14.3194 33.0618 14.6954 33.376 15.1665C33.59 15.4877 33.8024 15.8502 33.9939 16.2509H31.0061ZM28.9272 17.7509H26.7592C26.5907 18.3045 26.5 18.8921 26.5 19.5009C26.5 20.1096 26.5907 20.6972 26.7592 21.2509H28.9273C28.8154 20.7032 28.75 20.1187 28.75 19.5005C28.75 18.8826 28.8153 18.2983 28.9272 17.7509ZM29.3723 22.7509H27.4556C28.2255 23.9434 29.4067 24.8454 30.7986 25.2562C30.6606 25.0768 30.5183 24.88 30.376 24.6665C30.0208 24.1338 29.6621 23.4912 29.3723 22.7509ZM34.2014 25.2562C35.5933 24.8454 36.7745 23.9434 37.5444 22.7509H35.6277C35.3379 23.4912 34.9792 24.1338 34.624 24.6665C34.4817 24.88 34.3394 25.0768 34.2014 25.2562ZM31.0065 22.7509C31.1978 23.1513 31.4101 23.5135 31.624 23.8345C31.9382 24.3057 32.2521 24.6817 32.5 24.9506C32.7479 24.6817 33.0618 24.3057 33.376 23.8345C33.5899 23.5135 33.8022 23.1513 33.9935 22.7509H31.0065Z" fill="currentColor"/>
3
- <path d="M34.25 30.5009C34.6642 30.5009 35 30.8366 35 31.2509C35 31.6651 34.6642 32.0009 34.25 32.0009H26.75C26.3358 32.0009 26 31.6651 26 31.2509C26 30.8366 26.3358 30.5009 26.75 30.5009H34.25Z" fill="currentColor"/>
4
- <path d="M43 35.2509C43 35.6651 42.6642 36.0009 42.25 36.0009H26.75C26.3358 36.0009 26 35.6651 26 35.2509C26 34.8366 26.3358 34.5009 26.75 34.5009H42.25C42.6642 34.5009 43 34.8366 43 35.2509Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M20 22.5009C20 25.5384 17.5376 28.0009 14.5 28.0009C11.4624 28.0009 9 25.5384 9 22.5009C9 19.4633 11.4624 17.0009 14.5 17.0009C17.5376 17.0009 20 19.4633 20 22.5009ZM18.5 22.5009C18.5 24.71 16.7091 26.5009 14.5 26.5009C12.2909 26.5009 10.5 24.71 10.5 22.5009C10.5 20.2917 12.2909 18.5009 14.5 18.5009C16.7091 18.5009 18.5 20.2917 18.5 22.5009Z" fill="currentColor"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M0 39.0009C0 40.1054 0.895431 41.0009 2 41.0009H46C47.1046 41.0009 48 40.1054 48 39.0009V9.00085C48 7.89628 47.1046 7.00085 46 7.00085H2C0.895432 7.00085 0 7.89629 0 9.00085V39.0009ZM2 8.50085C1.72386 8.50085 1.5 8.72471 1.5 9.00085V39.0009C1.5 39.277 1.72386 39.5009 2 39.5009H6V37.5009C6 32.8064 9.80558 29.0009 14.5 29.0009C19.1944 29.0009 23 32.8064 23 37.5009V39.5009H46C46.2761 39.5009 46.5 39.277 46.5 39.0009V9.00085C46.5 8.72471 46.2761 8.50085 46 8.50085H2ZM21.5 39.5009V37.5009C21.5 33.6349 18.366 30.5009 14.5 30.5009C10.634 30.5009 7.5 33.6349 7.5 37.5009V39.5009H21.5Z" fill="currentColor"/>
7
- </svg>
@@ -1,3 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-pencil" viewBox="0 0 16 16">
2
- <path d="M12.146.146a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-10 10a.5.5 0 0 1-.168.11l-5 2a.5.5 0 0 1-.65-.65l2-5a.5.5 0 0 1 .11-.168zM11.207 2.5 13.5 4.793 14.793 3.5 12.5 1.207zm1.586 3L10.5 3.207 4 9.707V10h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.293zm-9.761 5.175-.106.106-1.528 3.821 3.821-1.528.106-.106A.5.5 0 0 1 5 12.5V12h-.5a.5.5 0 0 1-.5-.5V11h-.5a.5.5 0 0 1-.468-.325"/>
3
- </svg>
@@ -1,14 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_981)">
3
- <path d="M9 6.75085C9 7.16507 9.33579 7.50085 9.75 7.50085H18.25C18.6642 7.50085 19 7.16507 19 6.75085C19 6.33664 18.6642 6.00085 18.25 6.00085H9.75C9.33579 6.00085 9 6.33664 9 6.75085Z" fill="currentColor"/>
4
- <path d="M19 10.7509C19 11.1651 18.6642 11.5009 18.25 11.5009H9.75C9.33579 11.5009 9 11.1651 9 10.7509C9 10.3366 9.33579 10.0009 9.75 10.0009H18.25C18.6642 10.0009 19 10.3366 19 10.7509Z" fill="currentColor"/>
5
- <path d="M9 14.7509C9 15.1651 9.33579 15.5009 9.75 15.5009H15.25C15.6642 15.5009 16 15.1651 16 14.7509C16 14.3366 15.6642 14.0009 15.25 14.0009H9.75C9.33579 14.0009 9 14.3366 9 14.7509Z" fill="currentColor"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M34 11.5009C34 14.5384 31.5376 17.0009 28.5 17.0009C25.4624 17.0009 23 14.5384 23 11.5009C23 8.46329 25.4624 6.00085 28.5 6.00085C31.5376 6.00085 34 8.46329 34 11.5009ZM32.5 11.5009C32.5 13.71 30.7091 15.5009 28.5 15.5009C26.2909 15.5009 24.5 13.71 24.5 11.5009C24.5 9.29172 26.2909 7.50086 28.5 7.50086C30.7091 7.50086 32.5 9.29172 32.5 11.5009Z" fill="currentColor"/>
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M41 2.00085C41 0.896285 40.1046 0.000854492 39 0.000854492H7C5.89543 0.000854492 5 0.896285 5 2.00085V16.0009H2C0.89543 16.0009 0 16.8963 0 18.0009V46.0009C0 47.1054 0.895431 48.0009 2 48.0009H43.3057C44.2834 48.0009 45.1178 47.294 45.2785 46.3297L47.6119 32.3297C47.815 31.1106 46.875 30.0009 45.6391 30.0009H45V18.0009C45 16.8963 44.1046 16.0009 43 16.0009H41V2.00085ZM15.3513 27.0009C16.0626 27.0009 16.7204 27.3787 17.0788 27.9931L18.25 30.0009H20V26.5009C20 21.8064 23.8056 18.0009 28.5 18.0009C33.1944 18.0009 37 21.8064 37 26.5009V30.0009H39.5V2.00085C39.5 1.72471 39.2761 1.50085 39 1.50085H7C6.72386 1.50085 6.5 1.72471 6.5 2.00085V27.0009H15.3513ZM35.5 30.0009V26.5009C35.5 22.6349 32.366 19.5009 28.5 19.5009C24.634 19.5009 21.5 22.6349 21.5 26.5009V30.0009H35.5ZM41 30.0009H43.5V18.0009C43.5 17.7247 43.2761 17.5009 43 17.5009H41V30.0009ZM2 17.5009C1.72386 17.5009 1.5 17.7247 1.5 18.0009V37.5009L2.75469 28.718C2.89545 27.7327 3.73929 27.0009 4.73459 27.0009H5V17.5009H2ZM45.6391 31.5009H17.3884L15.7831 28.7489C15.6935 28.5953 15.5291 28.5009 15.3513 28.5009H4.73459C4.48577 28.5009 4.27481 28.6838 4.23962 28.9301L1.81104 45.9301C1.76801 46.2314 2.00174 46.5009 2.30602 46.5009H43.3057C43.5502 46.5009 43.7588 46.3241 43.7989 46.0831L46.1323 32.0831C46.1831 31.7783 45.948 31.5009 45.6391 31.5009Z" fill="currentColor"/>
8
- </g>
9
- <defs>
10
- <clipPath id="clip0_100_981">
11
- <rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
12
- </clipPath>
13
- </defs>
14
- </svg>
@@ -1,10 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_738)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M11.7 7.60099L11.6956 7.65808C11.5488 9.57937 12.0729 12.0267 13.167 13.9629C14.2703 15.9152 15.7377 17.0152 17.3556 17.0152C18.352 17.0152 19.2097 16.4429 19.8939 15.2724C20.5876 14.0858 20.9667 12.4722 20.9667 10.9723C20.9667 9.00125 20.3515 6.51276 19.2441 4.55316C18.1098 2.54592 16.717 1.50089 15.3111 1.50089C14.3147 1.50089 13.457 2.07316 12.7727 3.24363C12.079 4.43026 11.7 6.04387 11.7 7.54374V7.60099ZM34.243 13.9946C35.3523 12.0703 35.9593 9.67028 35.9593 7.8866C35.9593 6.38673 35.5802 4.77312 34.8865 3.58649C34.2023 2.41602 33.3446 1.84374 32.3482 1.84374C30.9375 1.84374 29.5443 2.89442 28.4088 4.86426C27.2996 6.78859 26.6926 9.18864 26.6926 10.9723C26.6926 12.4722 27.0716 14.0858 27.7653 15.2724C28.4496 16.4429 29.3073 17.0152 30.3037 17.0152C31.7144 17.0152 33.1076 15.9645 34.243 13.9946ZM38.431 19.5279C37.253 21.4014 36.5741 23.7837 36.5741 25.7152C36.5741 27.0686 36.8779 28.3113 37.4105 29.1624C37.9071 29.9561 38.5697 30.3866 39.5037 30.3866C40.9697 30.3866 42.4447 29.3514 43.6431 27.4453C44.8211 25.5718 45.5 23.1895 45.5 21.258C45.5 19.9671 45.1388 18.7218 44.557 17.8437C43.9842 16.9792 43.2953 16.5866 42.5704 16.5866C41.1043 16.5866 39.6294 17.6218 38.431 19.5279ZM9.45289 19.5461C8.18732 17.5961 6.70706 16.5866 5.42963 16.5866C4.49564 16.5866 3.83305 17.0171 3.33639 17.8109C2.80383 18.6619 2.5 19.9046 2.5 21.258C2.5 23.1563 3.24432 25.534 4.47304 27.4271C5.73861 29.3771 7.21887 30.3866 8.4963 30.3866C9.43029 30.3866 10.0929 29.9561 10.5895 29.1624C11.1221 28.3113 11.4259 27.0686 11.4259 25.7152C11.4259 23.8169 10.6816 21.4392 9.45289 19.5461ZM10.234 45.8475C10.8032 46.2641 11.7094 46.5009 12.9259 46.5009C14.6486 46.5009 16.1882 45.9279 17.9573 45.2332C18.0228 45.2075 18.0887 45.1816 18.155 45.1555C19.7993 44.5085 21.7063 43.758 23.8296 43.758C25.7978 43.758 27.6288 44.5159 29.1745 45.1558C29.2454 45.1851 29.3157 45.2142 29.3853 45.243C31.0791 45.9422 32.5183 46.5009 34.0519 46.5009C35.344 46.5009 36.4622 46.3277 37.2173 45.8893C37.8315 45.5328 38.3444 44.9315 38.3444 43.5437C38.3444 40.5974 37.4617 39.019 36.4432 37.8065C36.0417 37.3285 35.6373 36.9256 35.1953 36.4852C35.016 36.3066 34.8305 36.1219 34.6366 35.9235C34.0045 35.2768 33.3244 34.5217 32.8238 33.5671C31.9703 31.9396 31.3633 30.3407 30.8326 28.9294L30.8013 28.8459C30.2711 27.4358 29.8322 26.2683 29.2881 25.2863C28.7493 24.3139 28.1571 23.6211 27.3824 23.1523C26.6066 22.6828 25.5113 22.3555 23.8296 22.3555C22.148 22.3555 21.0526 22.6828 20.2769 23.1523C19.5022 23.6211 18.91 24.3139 18.3712 25.2863C17.8271 26.2683 17.3882 27.4358 16.858 28.8459L16.8266 28.9294C16.296 30.3407 15.689 31.9396 14.8355 33.5671C14.3349 34.5217 13.6548 35.2768 13.0227 35.9235C12.8287 36.1219 12.6433 36.3066 12.464 36.4852C12.022 36.9256 11.6176 37.3285 11.216 37.8065C10.1976 39.019 9.31482 40.5974 9.31482 43.5437C9.31482 44.8688 9.74965 45.4931 10.234 45.8475ZM37.4593 7.8866C37.4593 12.0009 34.7333 18.5152 30.3037 18.5152C26.8963 18.5152 25.1926 14.4009 25.1926 10.9723C25.1926 6.85803 27.9185 0.343742 32.3482 0.343742C35.7556 0.343742 37.4593 4.45803 37.4593 7.8866ZM22.4667 10.9723C22.4667 14.4009 20.763 18.5152 17.3556 18.5152C12.5852 18.5152 9.85926 12.0009 10.2 7.54374C10.2 4.11517 11.9037 0.00088501 15.3111 0.00088501C19.7407 0.00088501 22.4667 6.51517 22.4667 10.9723ZM35.0741 25.7152C35.0741 21.258 38.1407 15.0866 42.5704 15.0866C45.2963 15.0866 47 18.1723 47 21.258C47 25.7152 43.9333 31.8866 39.5037 31.8866C36.437 31.8866 35.0741 28.8009 35.0741 25.7152ZM5.42963 15.0866C9.51852 15.0866 12.9259 21.258 12.9259 25.7152C12.9259 28.8009 11.563 31.8866 8.4963 31.8866C4.40741 31.8866 1 25.7152 1 21.258C1 18.1723 2.36296 15.0866 5.42963 15.0866ZM15.4765 28.2581C17.0452 24.0842 18.2586 20.8555 23.8296 20.8555C29.4006 20.8555 30.6141 24.0842 32.1828 28.2581C32.7295 29.7129 33.3195 31.2826 34.1522 32.8704C34.6547 33.8287 35.412 34.5831 36.2115 35.3797C37.9302 37.0921 39.8444 38.9992 39.8444 43.5437C39.8444 47.3152 36.7778 48.0009 34.0519 48.0009C32.1331 48.0009 30.393 47.2821 28.6943 46.5805C27.0747 45.9115 25.4927 45.258 23.8296 45.258C21.9963 45.258 20.326 45.9142 18.6194 46.5847C16.837 47.285 15.0148 48.0009 12.9259 48.0009C10.2 48.0009 7.81482 46.9723 7.81482 43.5437C7.81482 38.9992 9.72903 37.0921 11.4477 35.3797C12.2473 34.5831 13.0046 33.8287 13.5071 32.8704C14.3398 31.2826 14.9297 29.7129 15.4765 28.2581Z" fill="currentColor"/>
4
- </g>
5
- <defs>
6
- <clipPath id="clip0_100_738">
7
- <rect width="48" height="48" fill="white" transform="translate(0 0.00088501)"/>
8
- </clipPath>
9
- </defs>
10
- </svg>
@@ -1,14 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_845)">
3
- <path d="M8 26.7509C8 26.3367 8.33579 26.0009 8.75 26.0009H11.25C11.6642 26.0009 12 26.3367 12 26.7509C12 27.1651 11.6642 27.5009 11.25 27.5009H8.75C8.33579 27.5009 8 27.1651 8 26.7509Z" fill="currentColor"/>
4
- <path d="M14.75 26.0009C14.3358 26.0009 14 26.3367 14 26.7509C14 27.1651 14.3358 27.5009 14.75 27.5009H23.25C23.6642 27.5009 24 27.1651 24 26.7509C24 26.3367 23.6642 26.0009 23.25 26.0009H14.75Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M10 5.00089C8.89543 5.00089 8 5.89632 8 7.00089V20.0009C8 21.1055 8.89543 22.0009 10 22.0009H26C27.1046 22.0009 28 21.1055 28 20.0009V7.00089C28 5.89632 27.1046 5.00089 26 5.00089H10ZM26 6.50089H10C9.72386 6.50089 9.5 6.72474 9.5 7.00089V20.0009C9.5 20.277 9.72386 20.5009 10 20.5009H26C26.2761 20.5009 26.5 20.277 26.5 20.0009V7.00089C26.5 6.72474 26.2761 6.50089 26 6.50089Z" fill="currentColor"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M33 25.2769V46.5009H39.25C39.6642 46.5009 40 46.8367 40 47.2509C40 47.6651 39.6642 48.0009 39.25 48.0009H1.75C1.33579 48.0009 1 47.6651 1 47.2509C1 46.8367 1.33579 46.5009 1.75 46.5009H3V6.00089C3 2.68718 5.68629 0.00088501 9 0.00088501H27C30.3137 0.00088501 33 2.68718 33 6.00089V23.7706C36.218 24.0253 38.75 26.7174 38.75 30.0009V37.7217C38.75 39.6708 40.3301 41.2509 42.2792 41.2509C44.3649 41.2509 45.9957 39.4519 45.7915 37.3762L44.3324 22.5416L41.1668 21.2754C39.998 20.8079 39.2959 19.6064 39.4623 18.3587L40.0251 14.1374C40.2072 12.7712 41.3727 11.7509 42.751 11.7509H42.9383C42.744 11.3913 42.4976 11.0591 42.2044 10.7659L35.9697 4.53122C35.6768 4.23832 35.6768 3.76345 35.9697 3.47055C36.2626 3.17766 36.7374 3.17766 37.0303 3.47055L43.265 9.70526C44.2059 10.6461 44.7913 11.8841 44.9216 13.2083L47.2843 37.2294C47.5752 40.1872 45.2514 42.7509 42.2792 42.7509C39.5017 42.7509 37.25 40.4992 37.25 37.7217V30.0009C37.25 27.5464 35.3883 25.5267 33 25.2769ZM9 1.50089H27C29.4853 1.50089 31.5 3.5156 31.5 6.00089V46.5009H4.5V6.00089C4.5 3.5156 6.51472 1.50089 9 1.50089ZM43.4172 13.2509H42.751C42.1245 13.2509 41.5947 13.7147 41.5119 14.3357L40.9491 18.5569C40.8735 19.1241 41.1926 19.6702 41.7239 19.8827L44.1669 20.8599L43.4288 13.3551C43.4253 13.3203 43.4215 13.2855 43.4172 13.2509Z" fill="currentColor"/>
7
- <path d="M41.75 46.5009C41.3358 46.5009 41 46.8367 41 47.2509C41 47.6651 41.3358 48.0009 41.75 48.0009H44.25C44.6642 48.0009 45 47.6651 45 47.2509C45 46.8367 44.6642 46.5009 44.25 46.5009H41.75Z" fill="currentColor"/>
8
- </g>
9
- <defs>
10
- <clipPath id="clip0_100_845">
11
- <rect width="48" height="48" fill="white" transform="translate(0 0.00088501)"/>
12
- </clipPath>
13
- </defs>
14
- </svg>
@@ -1,4 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M0 12.0009C0 5.37347 5.37258 0.00088501 12 0.00088501C18.6274 0.00088501 24 5.37347 24 12.0009V36.0009C24 42.6283 18.6274 48.0009 12 48.0009C5.37258 48.0009 0 42.6283 0 36.0009V12.0009ZM1.5 23.2509V12.0009C1.5 6.2019 6.20101 1.50089 12 1.50089C17.799 1.50089 22.5 6.20189 22.5 12.0009V23.2509H1.5ZM1.5 24.7509V36.0009C1.5 41.7999 6.20101 46.5009 12 46.5009C17.799 46.5009 22.5 41.7999 22.5 36.0009V24.7509H1.5Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M36.5 48.0009C42.8513 48.0009 48 42.8522 48 36.5009C48 30.1496 42.8513 25.0009 36.5 25.0009C30.1487 25.0009 25 30.1496 25 36.5009C25 42.8522 30.1487 48.0009 36.5 48.0009ZM36.5 46.5009C42.0229 46.5009 46.5 42.0237 46.5 36.5009C46.5 34.0095 45.5889 31.7309 44.0818 29.9801L29.9792 44.0827C31.73 45.5898 34.0086 46.5009 36.5 46.5009ZM28.9186 43.022L43.0211 28.9194C41.2703 27.4121 38.9916 26.5009 36.5 26.5009C30.9772 26.5009 26.5 30.978 26.5 36.5009C26.5 38.9924 27.4112 41.2712 28.9186 43.022Z" fill="currentColor"/>
4
- </svg>
@@ -1,3 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-plus-lg" viewBox="0 0 16 16">
2
- <path fill-rule="evenodd" d="M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2"/>
3
- </svg>
@@ -1,12 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_799)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M34 11.5009C34 14.5384 31.5376 17.0009 28.5 17.0009C25.4624 17.0009 23 14.5384 23 11.5009C23 8.46329 25.4624 6.00085 28.5 6.00085C31.5376 6.00085 34 8.46329 34 11.5009ZM32.5 11.5009C32.5 13.71 30.7091 15.5009 28.5 15.5009C26.2909 15.5009 24.5 13.71 24.5 11.5009C24.5 9.29172 26.2909 7.50086 28.5 7.50086C30.7091 7.50086 32.5 9.29172 32.5 11.5009Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M41 2.00085C41 0.896285 40.1046 0.000854492 39 0.000854492H7C5.89543 0.000854492 5 0.896285 5 2.00085V16.0009H2C0.89543 16.0009 0 16.8963 0 18.0009V46.0009C0 47.1054 0.895431 48.0009 2 48.0009H43.3057C44.2834 48.0009 45.1178 47.294 45.2785 46.3297L47.6119 32.3297C47.815 31.1106 46.875 30.0009 45.6391 30.0009H45V18.0009C45 16.8963 44.1046 16.0009 43 16.0009H41V2.00085ZM15.3513 27.0009C16.0626 27.0009 16.7204 27.3787 17.0788 27.9931L18.25 30.0009H20V26.5009C20 21.8064 23.8056 18.0009 28.5 18.0009C33.1944 18.0009 37 21.8064 37 26.5009V30.0009H39.5V2.00085C39.5 1.72471 39.2761 1.50085 39 1.50085H7C6.72386 1.50085 6.5 1.72471 6.5 2.00085V27.0009H15.3513ZM35.5 30.0009V26.5009C35.5 22.6349 32.366 19.5009 28.5 19.5009C24.634 19.5009 21.5 22.6349 21.5 26.5009V30.0009H35.5ZM41 30.0009H43.5V18.0009C43.5 17.7247 43.2761 17.5009 43 17.5009H41V30.0009ZM2 17.5009C1.72386 17.5009 1.5 17.7247 1.5 18.0009V37.5009L2.75469 28.718C2.89545 27.7327 3.73929 27.0009 4.73459 27.0009H5V17.5009H2ZM45.6391 31.5009H17.3884L15.7831 28.7489C15.6935 28.5953 15.5291 28.5009 15.3513 28.5009H4.73459C4.48577 28.5009 4.27481 28.6838 4.23962 28.9301L1.81104 45.9301C1.76801 46.2314 2.00174 46.5009 2.30602 46.5009H43.3057C43.5502 46.5009 43.7588 46.3241 43.7989 46.0831L46.1323 32.0831C46.1831 31.7783 45.948 31.5009 45.6391 31.5009Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M14.5 5.00085L19.6727 9.70328C19.8811 9.89281 20 10.1615 20 10.4432V16.0009C20 16.5531 19.5523 17.0009 19 17.0009H10C9.44772 17.0009 9 16.5531 9 16.0009V10.4432C9 10.1615 9.11885 9.89281 9.32733 9.70328L14.5 5.00085ZM10.5 10.6644L14.5 7.02805L18.5 10.6644V15.5009H16V12.5009C16 12.2247 15.7761 12.0009 15.5 12.0009H12.5C12.2239 12.0009 12 12.2247 12 12.5009V15.5009H10.5V10.6644ZM14.5 15.5009H13.5V13.5009H14.5V15.5009Z" fill="currentColor"/>
6
- </g>
7
- <defs>
8
- <clipPath id="clip0_100_799">
9
- <rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
10
- </clipPath>
11
- </defs>
12
- </svg>
@@ -1,8 +0,0 @@
1
- <svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M46.1913 11.0009H16.5118C16.0976 11.0009 15.863 11.4756 16.1146 11.8046L27.1877 26.2848C27.8955 27.2104 29.2416 27.3373 30.11 26.5603L46.5247 11.8735C46.8667 11.5674 46.6503 11.0009 46.1913 11.0009Z" fill="var(--background-primary-subtlest)"/>
3
- <path d="M12.5129 37.0692H42.1924C42.6066 37.0692 42.8412 36.5945 42.5896 36.2655C41.165 34.5312 33.0609 26.7664 29.8777 23.7312C29.1435 23.0311 28.0069 22.9995 27.2277 23.6492L12.1795 36.1966C11.8375 36.5026 12.054 37.0692 12.5129 37.0692Z" fill="var(--background-primary-subtlest)"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M0.5 15.7509C0.5 15.3366 0.835786 15.0009 1.25 15.0009H10.75C11.1642 15.0009 11.5 15.3366 11.5 15.7509C11.5 16.1651 11.1642 16.5009 10.75 16.5009H1.25C0.835786 16.5009 0.5 16.1651 0.5 15.7509Z" fill="var(--icon-on-subtle)"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M0.5 21.7509C0.5 21.3366 0.835786 21.0009 1.25 21.0009H9.75C10.1642 21.0009 10.5 21.3366 10.5 21.7509C10.5 22.1651 10.1642 22.5009 9.75 22.5009H1.25C0.835786 22.5009 0.5 22.1651 0.5 21.7509Z" fill="var(--icon-on-subtle)"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M0.5 27.7509C0.5 27.3366 0.835786 27.0009 1.25 27.0009H8.75C9.16421 27.0009 9.5 27.3366 9.5 27.7509C9.5 28.1651 9.16421 28.5009 8.75 28.5009H1.25C0.835786 28.5009 0.5 28.1651 0.5 27.7509Z" fill="var(--icon-on-subtle)"/>
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M16.2336 10.0009C15.2383 10.0009 14.3945 10.7327 14.2537 11.718L10.8252 35.718C10.653 36.9229 11.588 38.0009 12.8051 38.0009H42.7645C43.7598 38.0009 44.6036 37.269 44.7444 36.2837L48.1729 12.2837C48.345 11.0788 47.4101 10.0009 46.193 10.0009H16.2336ZM16.8262 11.5009L27.7856 25.8324C28.2275 26.4103 29.0676 26.4902 29.6106 26.006L45.8739 11.5009H16.8262ZM46.5713 12.8888L32.9793 25.0113L43.3093 35.7226L46.5713 12.8888ZM31.8308 26.0357L30.609 27.1254C29.4146 28.1907 27.5663 28.0149 26.5941 26.7436L25.7947 25.6982L13.1532 36.5009H41.9725L31.8308 26.0357ZM24.9016 24.5304L15.6643 12.4508L12.4205 35.1575L24.9016 24.5304Z" fill="var(--icon-on-subtle)"/>
8
- </svg>
@@ -1,8 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M5 12.0009C5 11.4486 5.44772 11.0009 6 11.0009H15C15.5523 11.0009 16 11.4486 16 12.0009V31.0009C16 31.5532 15.5523 32.0009 15 32.0009H6C5.44771 32.0009 5 31.5532 5 31.0009V12.0009ZM6.5 30.5009V12.5009H14.5V30.5009H6.5Z" fill="currentColor"/>
3
- <path d="M40 13.0009C40 13.4151 39.6642 13.7509 39.25 13.7509H20.75C20.3358 13.7509 20 13.4151 20 13.0009C20 12.5867 20.3358 12.2509 20.75 12.2509H39.25C39.6642 12.2509 40 12.5867 40 13.0009Z" fill="currentColor"/>
4
- <path d="M20 18.0009C20 18.4151 20.3358 18.7509 20.75 18.7509H39.25C39.6642 18.7509 40 18.4151 40 18.0009C40 17.5867 39.6642 17.2509 39.25 17.2509H20.75C20.3358 17.2509 20 17.5867 20 18.0009Z" fill="currentColor"/>
5
- <path d="M28 23.0009C28 23.4151 27.6642 23.7509 27.25 23.7509H20.75C20.3358 23.7509 20 23.4151 20 23.0009C20 22.5867 20.3358 22.2509 20.75 22.2509H27.25C27.6642 22.2509 28 22.5867 28 23.0009Z" fill="currentColor"/>
6
- <path d="M32.4975 23.0243L41.7489 26.4715C41.8213 26.4966 41.8841 26.5435 41.9285 26.6059C41.9729 26.6683 41.9968 26.743 41.9968 26.8195C41.9968 26.8961 41.9729 26.9708 41.9285 27.0332C41.8841 27.0956 41.8213 27.1425 41.7489 27.1676L38.5706 28.1509L41.9184 31.414C41.9869 31.483 42.0254 31.5763 42.0254 31.6736C42.0254 31.7709 41.9869 31.8642 41.9184 31.9332L41.0529 32.7987C40.9839 32.8673 40.8905 32.9058 40.7932 32.9058C40.6959 32.9058 40.6026 32.8673 40.5336 32.7987L37.1748 29.521L36.1841 32.7435C36.161 32.8166 36.1157 32.8806 36.0545 32.9268C35.9933 32.9729 35.9192 32.9988 35.8426 33.0008C35.766 33.0028 35.6907 32.9809 35.6271 32.9381C35.5635 32.8952 35.5149 32.8337 35.488 32.7619L32.0224 23.4957C31.9982 23.4296 31.9935 23.3579 32.0088 23.2891C32.0241 23.2203 32.0589 23.1574 32.1089 23.1078C32.1589 23.0581 32.2221 23.0239 32.291 23.0091C32.3599 22.9943 32.4315 22.9996 32.4975 23.0243Z" fill="currentColor"/>
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M0 8.00092C0 6.89635 0.895431 6.00092 2 6.00092H46C47.1046 6.00092 48 6.89635 48 8.00092V35.0009C48 36.1055 47.1046 37.0009 46 37.0009H28.4545L29.2545 41.0009H40.4545C41.0068 41.0009 41.4545 41.4486 41.4545 42.0009C41.4545 42.5532 41.0068 43.0009 40.4545 43.0009H7.54541C6.99313 43.0009 6.54541 42.5532 6.54541 42.0009C6.54541 41.4486 6.99313 41.0009 7.54541 41.0009H18.7454L19.5454 37.0009H2C0.895432 37.0009 0 36.1055 0 35.0009V8.00092ZM2 7.50092H46C46.2761 7.50092 46.5 7.72477 46.5 8.00092V35.0009C46.5 35.2771 46.2761 35.5009 46 35.5009H2C1.72386 35.5009 1.5 35.2771 1.5 35.0009V8.00092C1.5 7.72477 1.72386 7.50092 2 7.50092Z" fill="currentColor"/>
8
- </svg>
@@ -1,11 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_813)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M18 42.3485C18.0658 42.3489 18.131 42.3365 18.1919 42.312C18.2528 42.2876 18.3082 42.2516 18.355 42.2061L22.2394 38.3853C22.7267 37.9017 23 37.2487 23 36.5682C23 35.8878 22.7267 35.2348 22.2394 34.7512C21.7484 34.2701 21.0832 34 20.3897 34C19.6962 34 19.031 34.2701 18.5399 34.7512L18 35.2815L17.4601 34.7512C16.969 34.2701 16.3038 34 15.6103 34C14.9168 34 14.2516 34.2701 13.7606 34.7512C13.2733 35.2348 13 35.8878 13 36.5682C13 37.2487 13.2733 37.9017 13.7606 38.3853L17.645 42.2061C17.6918 42.2516 17.7472 42.2876 17.8081 42.312C17.869 42.3365 17.9342 42.3489 18 42.3485ZM18 40.4512L21.1846 37.3188C21.3898 37.1142 21.5 36.8441 21.5 36.5682C21.5 36.2931 21.3904 36.0237 21.1862 35.8192C20.9786 35.6177 20.6929 35.5 20.3897 35.5C20.0851 35.5 19.7981 35.6188 19.5902 35.8221C19.59 35.8223 19.5904 35.8219 19.5902 35.8221L18 37.3842L16.4104 35.8227C16.4102 35.8225 16.4106 35.8229 16.4104 35.8227C16.2025 35.6194 15.9149 35.5 15.6103 35.5C15.3071 35.5 15.0214 35.6177 14.8138 35.8192C14.6096 36.0237 14.5 36.2931 14.5 36.5682C14.5 36.8441 14.6102 37.1142 14.8154 37.3188L18 40.4512ZM18.0055 41.8474L18.0033 41.8419L18.0055 41.8474Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M33.7249 17.1595C34.7578 13.2858 34.6758 8.03226 32.7656 4.35782C31.7994 2.49908 30.3377 0.997708 28.2761 0.346423C26.2215 -0.302685 23.7007 -0.0662153 20.6934 1.2819C20.4405 1.39528 20.2811 1.63153 20.2541 1.88869C18.4107 3.48635 18.4681 5.69247 18.4949 6.72152C18.4977 6.82748 18.5001 6.921 18.5001 7.00004C18.5001 7.16699 18.4206 7.40831 18.2375 7.68692C18.0601 7.95692 17.8326 8.18928 17.6532 8.32636C17.4159 8.50775 17.2467 8.80425 17.2511 9.14595C17.2803 11.4344 18.0066 12.8717 19.0871 13.6521C19.8628 14.2124 20.7346 14.37 21.4656 14.3325C21.4838 14.5906 21.4588 14.9821 21.284 15.5205C20.8457 16.8699 19.4672 19.1343 15.5198 22.4238C14.8585 22.9749 14.4283 23.5657 14.2081 24.1855C13.9864 24.8098 13.9963 25.4114 14.1323 25.948C14.3679 26.8776 14.9819 27.6169 15.4269 28.0589C15.2457 28.2436 15.0452 28.4394 14.8323 28.6474C13.9816 29.4781 12.9325 30.5026 12.1231 31.7901C11.0065 33.5664 10.2962 35.8776 10.7574 39.106C11.2072 42.2542 12.4569 43.9405 14.2066 46.3015L14.2073 46.3025C14.5291 46.7368 14.8679 47.1939 15.2216 47.6871C15.4631 48.0237 15.9316 48.1008 16.2682 47.8594C16.6048 47.618 16.6819 47.1494 16.4405 46.8128C16.0601 46.2825 15.7062 45.8031 15.378 45.3587C13.6487 43.0168 12.6353 41.6443 12.2423 38.8939C11.8322 36.0228 12.4624 34.069 13.393 32.5885C14.099 31.4655 14.9545 30.6294 15.777 29.8257C16.0864 29.5234 16.3911 29.2256 16.6815 28.9188C17.2176 28.3523 17.0598 27.5352 16.5967 27.1031C16.2141 26.7461 15.7412 26.1904 15.5863 25.5794C15.5135 25.292 15.5118 24.9967 15.6216 24.6876C15.733 24.3741 15.9776 23.9949 16.4801 23.5761C20.5256 20.2049 22.147 17.7192 22.7106 15.9838C22.9952 15.1074 23.0096 14.4224 22.9262 13.9239C22.8848 13.6767 22.8206 13.4822 22.7593 13.3393C22.7287 13.268 22.6991 13.21 22.6737 13.165C22.6618 13.144 22.6509 13.1258 22.6412 13.1105C22.5481 12.9571 22.4034 12.8438 22.2367 12.7882C22.1594 12.7624 22.0773 12.7491 21.9934 12.7499C21.9284 12.7504 21.8631 12.7594 21.7994 12.777C21.295 12.8979 20.5622 12.8672 19.9654 12.4361C19.4128 12.037 18.8252 11.1828 18.7567 9.35924C19.0133 9.13224 19.2755 8.83872 19.491 8.51071C19.7554 8.10839 20.0001 7.57699 20.0001 7.00004C20.0001 6.89825 19.9985 6.79071 19.9968 6.67839C19.9801 5.56976 19.9563 3.99495 21.4161 2.87582C22.1003 3.04566 22.5196 3.15919 22.8982 3.36539C23.3317 3.60145 23.7503 3.98887 24.3785 4.91964C24.8619 5.63585 25.0868 6.47838 25.1685 7.44073C25.2464 8.35952 25.1911 9.33345 25.1323 10.3691L25.1217 10.5556C25.0027 12.6671 24.8718 15.131 26.4257 16.9822C27.6431 18.4326 28.9858 19.4859 30.5129 20.1266L34.7543 26.6518C35.8129 28.2805 35.6326 30.4197 34.3162 31.8482L28.2542 38.4261C28.073 38.0405 27.8827 37.6296 27.6827 37.1897C27.6114 37.0327 27.5456 36.8754 27.4852 36.7179L31.7262 30.4993C32.1397 29.893 32.131 29.0932 31.7045 28.4961L29.9837 26.087C29.5208 25.439 28.519 25.3548 27.9994 26.0573C26.1878 28.5063 24.2304 33.2191 26.3172 37.8103C26.9466 39.1952 27.4816 40.2967 27.9368 41.2187C28.051 41.4501 28.1596 41.669 28.263 41.8775L28.2635 41.8784C28.5745 42.5055 28.8392 43.0389 29.0699 43.5351C29.6718 44.8289 30.0217 45.8231 30.2588 47.3641C30.3218 47.7735 30.7047 48.0543 31.1141 47.9913C31.5235 47.9283 31.8043 47.5454 31.7414 47.136C31.4784 45.427 31.0783 44.2961 30.43 42.9024C30.1905 42.3877 29.9141 41.8305 29.6003 41.1978C29.4981 40.9918 29.392 40.7779 29.2818 40.5548C29.1761 40.3406 29.0662 40.1169 28.9518 39.8825L35.4192 32.8647C37.2002 30.9321 37.4443 28.0379 36.012 25.8343L32.7009 20.7404C33.767 20.905 34.8965 20.9016 36.0979 20.7437C36.5086 20.6897 36.7978 20.313 36.7438 19.9023C36.6898 19.4916 36.3131 19.2025 35.9024 19.2565C34.1831 19.4825 32.7069 19.3479 31.3965 18.8631C31.3178 18.8142 31.2311 18.7806 31.1412 18.7634C29.8559 18.2343 28.6835 17.3389 27.5746 16.0179C26.4655 14.6965 26.4932 12.8771 26.6193 10.64L26.6315 10.4261C26.689 9.41812 26.7504 8.34312 26.6631 7.31392C26.5686 6.20012 26.2971 5.0809 25.6218 4.08047C24.9346 3.06234 24.3533 2.44977 23.6156 2.04805C23.5196 1.99579 23.4216 1.94763 23.3214 1.90283C25.1537 1.37551 26.6369 1.40162 27.8243 1.77674C29.4127 2.27858 30.601 3.44594 31.4347 5.0497C33.1246 8.30024 33.2425 13.1467 32.2755 16.773C32.1688 17.1733 32.4067 17.5842 32.8069 17.691C33.2072 17.7977 33.6181 17.5597 33.7249 17.1595ZM30.487 29.6541L26.9946 34.775C26.6152 31.8635 27.7484 29.0641 28.9812 27.2643L30.4839 29.3679C30.5448 29.4532 30.546 29.5675 30.487 29.6541Z" fill="currentColor"/>
5
- </g>
6
- <defs>
7
- <clipPath id="clip0_100_813">
8
- <rect width="48" height="48" fill="white"/>
9
- </clipPath>
10
- </defs>
11
- </svg>
@@ -1,13 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_939)">
3
- <path d="M34.167 26.1284C34.2693 26.1968 34.3532 26.2894 34.4113 26.398C34.4694 26.5065 34.4999 26.6277 34.5 26.7509V38.0009C34.5 38.1506 34.4551 38.297 34.3711 38.421C34.2872 38.5451 34.168 38.6411 34.029 38.6969L34.0245 38.6984L34.0155 38.7029L33.981 38.7164C33.7838 38.7947 33.5853 38.8697 33.3855 38.9414C32.9895 39.0839 32.439 39.2759 31.815 39.4664C30.591 39.8444 28.9965 40.2509 27.75 40.2509C26.4795 40.2509 25.428 39.8309 24.513 39.4634L24.471 39.4484C23.52 39.0659 22.71 38.7509 21.75 38.7509C20.7 38.7509 19.293 39.0959 18.0945 39.4664C17.5579 39.6336 17.0262 39.8162 16.5 40.0139V47.2509C16.5 47.4498 16.421 47.6405 16.2803 47.7812C16.1397 47.9218 15.9489 48.0009 15.75 48.0009C15.5511 48.0009 15.3603 47.9218 15.2197 47.7812C15.079 47.6405 15 47.4498 15 47.2509V26.7509C15 26.5519 15.079 26.3612 15.2197 26.2205C15.3603 26.0799 15.5511 26.0009 15.75 26.0009C15.9489 26.0009 16.1397 26.0799 16.2803 26.2205C16.421 26.3612 16.5 26.5519 16.5 26.7509V27.1739C16.839 27.0554 17.244 26.9189 17.685 26.7839C18.909 26.4089 20.505 26.0009 21.75 26.0009C23.01 26.0009 24.036 26.4164 24.9315 26.7794L24.996 26.8064C25.929 27.1829 26.742 27.5009 27.75 27.5009C28.8 27.5009 30.207 27.1559 31.4055 26.7854C32.0885 26.5721 32.7634 26.3339 33.429 26.0714C33.429 26.0714 33.8 25.9008 34.167 26.1284ZM33 27.8324C32.67 27.9494 32.28 28.0829 31.851 28.2149C30.636 28.5929 29.043 28.9994 27.75 28.9994C26.421 28.9994 25.362 28.5704 24.4455 28.1984L24.4335 28.1939C23.493 27.8159 22.7085 27.5009 21.75 27.5009C20.7465 27.5009 19.341 27.8444 18.1275 28.2179C17.5802 28.3867 17.0375 28.5703 16.5 28.7684V38.4179C16.83 38.3009 17.22 38.1674 17.649 38.0354C18.864 37.6559 20.457 37.2509 21.75 37.2509C23.0205 37.2509 24.072 37.6709 24.987 38.0384L25.029 38.0534C25.98 38.4359 26.79 38.7509 27.75 38.7509C28.752 38.7509 30.159 38.4074 31.3725 38.0339C31.9198 37.865 32.4625 37.6814 33 37.4834V27.8339V27.8324Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M15.582 27.026L18.2042 28.0749C20.3161 28.9196 22.2748 30.1059 24.0018 31.5862L24.9879 32.4315C25.1606 32.5795 25.2568 32.7979 25.2494 33.0253C25.242 33.2527 25.1318 33.4644 24.9498 33.6009L16.3498 40.0509L15.4498 38.8509L23.3018 32.9619L23.0256 32.7251C21.4234 31.3518 19.6064 30.2513 17.6471 29.4676L15.0249 28.4187L15.582 27.026Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M34.4486 32.9751L30.919 34.1517C28.6929 34.8937 26.2633 34.721 24.1645 33.6716L23.4937 33.3362L24.1645 31.9946L24.8353 32.33C26.5782 33.2015 28.596 33.3449 30.4447 32.7286L33.9742 31.5521L34.4486 32.9751Z" fill="currentColor"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M34.4409 10.5009L36.2132 8.72857L27.7279 0.243286L17.4704 10.5009H7.16065C6.44293 10.5009 5.78024 10.8854 5.42416 11.5086L0.263514 20.5397C0.0908306 20.8419 0 21.1839 0 21.532V46.0009C0 47.1054 0.895432 48.0009 2 48.0009H46C47.1046 48.0009 48 47.1054 48 46.0009V21.532C48 21.1839 47.9092 20.8419 47.7365 20.5397L42.5758 11.5086C42.2198 10.8854 41.5571 10.5009 40.8394 10.5009H34.4409ZM27.7279 2.36461L17.1213 12.9712L19.151 15.0009H27.8196L34.0919 8.72857L27.7279 2.36461ZM15 12.9712L17.0296 15.0009H12.75C12.3358 15.0009 12 15.3366 12 15.7509C12 16.1651 12.3358 16.5009 12.75 16.5009H35.25C35.6642 16.5009 36 16.1651 36 15.7509C36 15.3366 35.6642 15.0009 35.25 15.0009H29.9409L32.9409 12.0009H40.8394C41.0188 12.0009 41.1845 12.097 41.2735 12.2528L45.7009 20.0009H2.29905L6.72652 12.2528C6.81555 12.097 6.98122 12.0009 7.16065 12.0009H15.9704L15 12.9712ZM1.50097 21.5009C1.50032 21.5112 1.5 21.5216 1.5 21.532V46.0009C1.5 46.277 1.72386 46.5009 2 46.5009H46C46.2761 46.5009 46.5 46.277 46.5 46.0009V21.532C46.5 21.5216 46.4997 21.5112 46.499 21.5009H1.50097Z" fill="currentColor"/>
7
- </g>
8
- <defs>
9
- <clipPath id="clip0_100_939">
10
- <rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
11
- </clipPath>
12
- </defs>
13
- </svg>
@@ -1,12 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_915)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M34.5 26.5009H13.5V41.5009H34.5V26.5009ZM12 25.0009V43.0009H36V25.0009H12Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M13.4041 25.4445L22.7717 33.2508H35.7502V34.7508H22.7717L13.4041 42.5571L12.4438 41.4047L21.3286 34.0008L12.4438 26.5968L13.4041 25.4445Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M34.4409 10.5009L36.2132 8.72857L27.7279 0.243286L17.4704 10.5009H7.16065C6.44293 10.5009 5.78024 10.8854 5.42416 11.5086L0.263514 20.5397C0.0908306 20.8419 0 21.1839 0 21.532V46.0009C0 47.1054 0.895432 48.0009 2 48.0009H46C47.1046 48.0009 48 47.1054 48 46.0009V21.532C48 21.1839 47.9092 20.8419 47.7365 20.5397L42.5758 11.5086C42.2198 10.8854 41.5571 10.5009 40.8394 10.5009H34.4409ZM27.7279 2.36461L17.1213 12.9712L19.151 15.0009H27.8196L34.0919 8.72857L27.7279 2.36461ZM15 12.9712L17.0296 15.0009H12.75C12.3358 15.0009 12 15.3366 12 15.7509C12 16.1651 12.3358 16.5009 12.75 16.5009H35.25C35.6642 16.5009 36 16.1651 36 15.7509C36 15.3366 35.6642 15.0009 35.25 15.0009H29.9409L32.9409 12.0009H40.8394C41.0188 12.0009 41.1845 12.097 41.2735 12.2528L45.7009 20.0009H2.29905L6.72652 12.2528C6.81555 12.097 6.98122 12.0009 7.16065 12.0009H15.9704L15 12.9712ZM1.50097 21.5009C1.50032 21.5112 1.5 21.5216 1.5 21.532V46.0009C1.5 46.277 1.72386 46.5009 2 46.5009H46C46.2761 46.5009 46.5 46.277 46.5 46.0009V21.532C46.5 21.5216 46.4997 21.5112 46.499 21.5009H1.50097Z" fill="currentColor"/>
6
- </g>
7
- <defs>
8
- <clipPath id="clip0_100_915">
9
- <rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
10
- </clipPath>
11
- </defs>
12
- </svg>
@@ -1,4 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-printer-fill" viewBox="0 0 16 16">
2
- <path d="M5 1a2 2 0 0 0-2 2v1h10V3a2 2 0 0 0-2-2zm6 8H5a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1"/>
3
- <path d="M0 7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-1v-2a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2H2a2 2 0 0 1-2-2zm2.5 1a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1"/>
4
- </svg>
@@ -1,13 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_853)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M37.7601 14.8661C39.9692 14.8661 41.7601 13.0753 41.7601 10.8661C41.7601 8.65698 39.9692 6.86612 37.7601 6.86612C35.551 6.86612 33.7601 8.65698 33.7601 10.8661C33.7601 13.0753 35.551 14.8661 37.7601 14.8661ZM37.7601 13.3661C39.1408 13.3661 40.2601 12.2468 40.2601 10.8661C40.2601 9.48541 39.1408 8.36612 37.7601 8.36612C36.3794 8.36612 35.2601 9.48541 35.2601 10.8661C35.2601 12.2468 36.3794 13.3661 37.7601 13.3661Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M40.6932 3.25108L41.0271 3.39746L41.0362 3.40145C41.5848 3.64629 42.1056 3.94927 42.5896 4.3052L42.5916 4.30665L42.8827 4.51939L44.1099 4.12856C44.9619 3.85721 45.888 4.21568 46.3352 4.99L47.1368 6.37776C47.5838 7.15168 47.432 8.1324 46.7719 8.73497L45.8195 9.60441L45.8593 9.96386L45.8595 9.96604C45.9273 10.5666 45.9273 11.1734 45.8596 11.7745L45.8593 11.7768L45.8196 12.1359L46.7697 13.002C47.4305 13.6044 47.5828 14.5855 47.1358 15.3599L46.3353 16.7463C45.8882 17.5207 44.9622 17.8793 44.1101 17.6081L42.8822 17.2173L42.5891 17.4318C42.1028 17.788 41.58 18.0891 41.0316 18.3316L41.0271 18.3336L40.6933 18.4799L40.4193 19.7344C40.2284 20.6083 39.4546 21.2312 38.5601 21.2312H36.9594C36.065 21.2312 35.2913 20.6084 35.1004 19.7346L34.8264 18.481L34.4925 18.3347L34.4823 18.3302C34.2166 18.2113 33.9587 18.0799 33.7056 17.9333C33.4348 17.7788 33.1755 17.6098 32.9264 17.4268L32.9252 17.4259L32.6343 17.213L31.4089 17.6034C30.5567 17.875 29.6304 17.5164 29.1831 16.7418L28.3827 15.3554C27.9357 14.5811 28.088 13.5999 28.7488 12.9976L29.6989 12.1315L29.6592 11.7727L29.659 11.7708C29.5912 11.17 29.5912 10.563 29.659 9.96161L29.6592 9.95981L29.6989 9.60027L28.7497 8.73619C28.0885 8.13427 27.9355 7.15315 28.3821 6.37849L29.185 4.9859C29.6319 4.21064 30.5587 3.85155 31.4113 4.12322L32.637 4.51377L32.9298 4.29979C33.4156 3.94225 33.9404 3.63931 34.4929 3.39725L34.8241 3.25197L35.1005 1.99518C35.2923 1.12252 36.0655 0.500885 36.959 0.500885H38.5602C39.4546 0.500885 40.2283 1.12375 40.4193 1.99754L40.6932 3.25108ZM40.4249 4.77125C40.8762 4.97264 41.3046 5.22193 41.7026 5.51482L42.6124 6.17971L44.5651 5.55782C44.7455 5.50037 44.9416 5.57627 45.0363 5.74024L45.8379 7.128C45.9325 7.29188 45.9004 7.49956 45.7606 7.62715L44.2447 9.01103L44.3688 10.1325C44.4242 10.6223 44.4242 11.1176 44.3688 11.6085L44.2447 12.73L45.7592 14.1106C45.8992 14.2381 45.9314 14.4459 45.8367 14.6099L45.0363 15.9963C44.9416 16.1603 44.7455 16.2362 44.5651 16.1788L42.6113 15.5569L41.7026 16.2217C41.3048 16.5132 40.8759 16.7603 40.4249 16.9598L39.391 17.413L38.9538 19.4143C38.9134 19.5993 38.7495 19.7312 38.5601 19.7312H36.9594C36.77 19.7312 36.6062 19.5993 36.5658 19.4143L36.1286 17.4141L35.0947 16.9609C34.8742 16.8622 34.6614 16.7537 34.4531 16.6329C34.2315 16.5065 34.0187 16.368 33.8137 16.2173L32.905 15.5524L30.9535 16.1742C30.773 16.2317 30.5769 16.1558 30.4822 15.9918L29.6818 14.6054C29.5871 14.4415 29.6193 14.2337 29.7593 14.1061L31.2738 12.7255L31.1497 11.6041C31.0943 11.1143 31.0943 10.6189 31.1497 10.128L31.2738 9.00549L29.7594 7.62695C29.6194 7.49949 29.587 7.29173 29.6816 7.12769L30.4845 5.7351C30.5791 5.57094 30.7754 5.4949 30.9559 5.55242L32.9072 6.17417L33.817 5.50928C34.2143 5.21671 34.6428 4.96918 35.0947 4.77125L36.1253 4.31913L36.5655 2.31731C36.6061 2.13252 36.7698 2.00089 36.959 2.00089H38.5602C38.7496 2.00089 38.9134 2.13278 38.9538 2.31781L39.391 4.31802L40.4249 4.77125Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M17.5 30.0009C22.7467 30.0009 27 25.7476 27 20.5009C27 15.2542 22.7467 11.0009 17.5 11.0009C12.2533 11.0009 7.99998 15.2542 7.99998 20.5009C7.99998 25.7476 12.2533 30.0009 17.5 30.0009ZM17.5 28.5009C21.9183 28.5009 25.5 24.9192 25.5 20.5009C25.5 16.0826 21.9183 12.5009 17.5 12.5009C13.0817 12.5009 9.49998 16.0826 9.49998 20.5009C9.49998 24.9192 13.0817 28.5009 17.5 28.5009Z" fill="currentColor"/>
6
- <path d="M33.2186 47.0009C32.8134 47.0009 32.4832 46.6789 32.4505 46.275C31.8268 38.5641 25.3714 32.5009 17.4999 32.5009C9.62833 32.5009 3.17294 38.5641 2.54924 46.275C2.51657 46.6789 2.18638 47.0009 1.78112 47.0009C1.35753 47.0009 1.01602 46.6502 1.04825 46.2279C1.69816 37.71 8.81552 31.0009 17.4999 31.0009C26.1842 31.0009 33.3016 37.71 33.9515 46.2279C33.9837 46.6502 33.6422 47.0009 33.2186 47.0009Z" fill="currentColor"/>
7
- </g>
8
- <defs>
9
- <clipPath id="clip0_100_853">
10
- <rect width="48" height="48" fill="white" transform="translate(0 0.00088501)"/>
11
- </clipPath>
12
- </defs>
13
- </svg>
@@ -1,4 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M34 14.6493V20.6493H40V14.6493H34ZM38.5 16.1493H35.5V19.1493H38.5V16.1493Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M43 10.6493L32.6727 1.26082C32.2913 0.914076 31.7087 0.914076 31.3273 1.26082L21 10.6493V12.4618L16.9805 10.2008C16.3717 9.85838 15.6283 9.85838 15.0195 10.2008L1.01948 18.0758C0.389725 18.4301 0 19.0964 0 19.819V45.9395C0 46.7043 0.823657 47.186 1.49026 46.811L16 38.6493L31.0195 47.0978C31.6283 47.4402 32.3717 47.4402 32.9805 47.0978L46.9805 39.2228C47.6103 38.8685 48 38.2022 48 37.4796V11.3591C48 10.5943 47.1763 10.1126 46.5097 10.4876L43 12.4618V10.6493ZM43 14.1828V24.6493H32.75V45.5064L46.5 37.772V12.2141L43 14.1828ZM31.25 24.6493H21V14.1828L16.75 11.7922V37.3502L31.25 45.5064V24.6493ZM32 2.67649L41.5 11.3129V23.1493H31V14.6493H24V23.1493H22.5V11.3129L32 2.67649ZM25.5 23.1493H29.5V16.1493H25.5V23.1493ZM15.25 11.7922L1.5 19.5266V45.0845L15.25 37.3502V11.7922Z" fill="currentColor"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-question-circle" viewBox="0 0 16 16">
2
- <path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16"/>
3
- <path d="M5.255 5.786a.237.237 0 0 0 .241.247h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286m1.557 5.763c0 .533.425.927 1.01.927.609 0 1.028-.394 1.028-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94"/>
4
- </svg>
@@ -1,13 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_865)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M16.6228 0.00088501L16.67 0.00108343L16.7173 0.00088501C18.2086 0.00088501 19.6387 0.593283 20.6932 1.64776C21.7477 2.70223 22.3401 4.13241 22.3401 5.62366C22.3401 7.11491 21.7477 8.54509 20.6932 9.59956C19.6387 10.654 18.2086 11.2464 16.7173 11.2464L16.67 11.2462L16.6228 11.2464C15.1315 11.2464 13.7013 10.654 12.6469 9.59956C11.5924 8.54509 11 7.11491 11 5.62366C11 4.13241 11.5924 2.70223 12.6469 1.64776C13.7013 0.593283 15.1315 0.00088501 16.6228 0.00088501ZM16.67 9.74617L16.7173 9.74644C17.8107 9.74644 18.8594 9.31207 19.6326 8.5389C20.4057 7.76573 20.8401 6.71709 20.8401 5.62366C20.8401 4.53023 20.4057 3.48159 19.6326 2.70842C18.8594 1.93525 17.8107 1.50089 16.7173 1.50089L16.67 1.50116L16.6228 1.50089C15.5293 1.50089 14.4807 1.93525 13.7075 2.70842C12.9344 3.48159 12.5 4.53023 12.5 5.62366C12.5 6.71709 12.9344 7.76573 13.7075 8.5389C14.4807 9.31207 15.5293 9.74644 16.6228 9.74644L16.67 9.74617Z" fill="currentColor"/>
4
- <path d="M19.3517 12.7527C20.0118 12.751 20.3224 13.5968 19.8299 14.0365C19.6962 14.1558 19.5057 14.2455 19.3265 14.2455H12.6403C11.4182 14.2455 10.2563 14.5202 9.22971 15.1427L9.2281 15.1437C8.20164 15.7643 7.44215 16.6491 6.89578 17.6662L6.8952 17.6673C5.84347 19.6213 5.5 22.211 5.5 25.0232V28.9891C5.49995 29.3447 5.58424 29.6954 5.74595 30.0121C5.90766 30.3288 6.14217 30.6027 6.43024 30.8111C6.71831 31.0196 7.05172 31.1568 7.40309 31.2114C7.75447 31.2661 8.11378 31.2366 8.45155 31.1254C8.60464 31.075 8.91992 31.0009 8.91992 31.0009V22.5009C8.91992 22.0867 9.25571 21.7509 9.66992 21.7509C10.0841 21.7509 10.4199 22.0867 10.4199 22.5009C10.4199 26.1235 10.4201 29.7457 10.4202 33.368C10.4204 36.9901 10.4206 40.6123 10.4206 44.2346C10.4198 44.8138 10.6425 45.371 11.0424 45.79C11.4423 46.209 11.9884 46.4575 12.567 46.4838C13.1456 46.5101 13.7121 46.3121 14.1483 45.9311C14.5739 45.5593 14.8435 45.0414 14.9044 44.4806L15.1663 33.9498C15.1865 33.1362 15.8519 32.4872 16.6658 32.4871L16.67 32.4871L16.6743 32.4871C17.4882 32.4872 18.1535 33.1362 18.1738 33.9498L18.4357 44.4806C18.4966 45.0414 18.7662 45.5593 19.1918 45.9311C19.628 46.3121 20.1945 46.5101 20.7731 46.4838C20.8763 46.4791 20.9785 46.4674 21.0791 46.4488C21.4622 46.3781 21.893 46.5179 22.0952 46.8509C22.3071 47.2 22.2213 47.6749 21.833 47.8015C21.5147 47.9053 21.1813 47.9668 20.8411 47.9823C19.8765 48.0261 18.9322 47.696 18.205 47.0608C17.9387 46.8282 17.709 46.5612 17.5206 46.2689C17.2027 45.7759 17.0024 45.211 16.9419 44.6181L16.9387 44.5857L16.9375 44.5725L16.6742 33.9871L16.67 34.1553L16.6658 33.9871L16.4026 44.5725L16.4014 44.5857L16.3982 44.6181C16.3377 45.211 16.1374 45.7759 15.8195 46.2689C15.6311 46.5612 15.4014 46.8282 15.1351 47.0608C14.4078 47.696 13.4636 48.0261 12.499 47.9823C11.5344 47.9385 10.6239 47.5241 9.95728 46.8256C9.29065 46.1271 8.91928 45.1982 8.92055 44.2327C8.92055 42.2853 8.92039 40.3383 8.92024 38.3912C8.92008 36.4443 8.91992 34.4974 8.91992 32.5504C8.43624 32.7095 7.92606 32.7681 7.42055 32.7237C7.33775 32.7165 7.25507 32.7064 7.17266 32.6936C6.58688 32.6026 6.03105 32.3738 5.55081 32.0263C5.07057 31.6787 4.67961 31.2222 4.41002 30.6943C4.14044 30.1663 3.99992 29.5819 4 28.9891V25.0232C4 22.1368 4.34361 19.2429 5.57438 16.9563C6.22412 15.7468 7.15625 14.6435 8.45199 13.8601C9.75022 13.0729 11.1909 12.7455 12.6403 12.7455C13.5566 12.7455 14.4731 12.7477 15.3895 12.7498C16.7101 12.7529 18.031 12.756 19.3517 12.7527Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M30.67 0.00108343L30.6228 0.00088501C29.1315 0.00088501 27.7013 0.593283 26.6469 1.64776C25.5924 2.70223 25 4.13241 25 5.62366C25 7.11491 25.5924 8.54509 26.6469 9.59956C27.7013 10.654 29.1315 11.2464 30.6228 11.2464L30.67 11.2462L30.7173 11.2464C32.2086 11.2464 33.6387 10.654 34.6932 9.59956C35.7477 8.54509 36.3401 7.11491 36.3401 5.62366C36.3401 4.13241 35.7477 2.70223 34.6932 1.64776C33.6387 0.593283 32.2086 0.00088501 30.7173 0.00088501L30.67 0.00108343ZM30.7173 9.74644L30.67 9.74617L30.6228 9.74644C29.5293 9.74644 28.4807 9.31207 27.7075 8.5389C26.9344 7.76573 26.5 6.71709 26.5 5.62366C26.5 4.53023 26.9344 3.48159 27.7075 2.70842C28.4807 1.93525 29.5293 1.50089 30.6228 1.50089L30.67 1.50116L30.7173 1.50089C31.8107 1.50089 32.8594 1.93525 33.6326 2.70842C34.4057 3.48159 34.8401 4.53023 34.8401 5.62366C34.8401 6.71709 34.4057 7.76573 33.6326 8.5389C32.8594 9.31207 31.8107 9.74644 30.7173 9.74644Z" fill="currentColor"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M38.8881 13.8601C37.5899 13.0729 36.1492 12.7455 34.6998 12.7455H26.6403C25.1909 12.7455 23.7502 13.0729 22.452 13.8601C21.1562 14.6435 20.2241 15.7468 19.5744 16.9563C18.3436 19.2429 18 22.1368 18 25.0232V28.9891C17.9999 29.5819 18.1404 30.1663 18.41 30.6943C18.6796 31.2222 19.0706 31.6787 19.5508 32.0263C20.0311 32.3738 20.5869 32.6026 21.1727 32.6936C21.2551 32.7064 21.3377 32.7165 21.4206 32.7237C21.9261 32.7681 22.4362 32.7095 22.9199 32.5504C22.9199 34.4974 22.9201 36.4443 22.9202 38.3912C22.9204 40.3383 22.9206 42.2853 22.9206 44.2327C22.9193 45.1982 23.2906 46.1271 23.9573 46.8256C24.6239 47.5241 25.5344 47.9385 26.499 47.9823C27.4636 48.0261 28.4078 47.696 29.1351 47.0608C29.4014 46.8282 29.6311 46.5612 29.8195 46.2689C30.1374 45.7759 30.3377 45.211 30.3982 44.6181L30.4014 44.5857L30.4026 44.5725L30.6658 33.9871L30.67 34.1553L30.6742 33.9871L30.9375 44.5725L30.9387 44.5857L30.9419 44.6181C31.0024 45.211 31.2027 45.7759 31.5206 46.2689C31.709 46.5612 31.9387 46.8282 32.205 47.0608C32.9322 47.696 33.8765 48.0261 34.8411 47.9823C35.8057 47.9385 36.7162 47.5241 37.3828 46.8256C38.0494 46.1271 38.4208 45.1982 38.4195 44.2327C38.4195 42.2853 38.4197 40.3383 38.4199 38.3912C38.42 36.4444 38.4202 34.4973 38.4202 32.5504C38.9038 32.7095 39.414 32.7681 39.9195 32.7237C40.0023 32.7165 40.085 32.7064 40.1674 32.6936C40.7532 32.6026 41.309 32.3738 41.7893 32.0263C42.2695 31.6787 42.6605 31.2222 42.9301 30.6943C43.1996 30.1663 43.3402 29.5819 43.3401 28.9891V25.0232C43.3401 22.1368 42.9965 19.2429 41.7657 16.9563C41.116 15.7468 40.1838 14.6435 38.8881 13.8601ZM30.6743 32.4871L30.67 32.4871L30.6658 32.4871C29.8519 32.4872 29.1865 33.1362 29.1663 33.9498L28.9044 44.4806C28.8435 45.0414 28.5739 45.5593 28.1483 45.9311C27.7121 46.3121 27.1456 46.5101 26.567 46.4838C25.9884 46.4575 25.4423 46.209 25.0424 45.79C24.6425 45.371 24.4198 44.8138 24.4206 44.2346C24.4206 40.6555 24.4204 37.0765 24.4202 33.4975L24.4202 33.368C24.4201 29.7457 24.4199 26.1235 24.4199 22.5009C24.4199 22.0867 24.0841 21.7509 23.6699 21.7509C23.2557 21.7509 22.9199 22.0867 22.9199 22.5009V31.0009C22.9199 31.0009 22.6046 31.075 22.4516 31.1254C22.1138 31.2366 21.7545 31.2661 21.4031 31.2114C21.0517 31.1568 20.7183 31.0196 20.4302 30.8111C20.1422 30.6027 19.9077 30.3288 19.7459 30.0121C19.5842 29.6954 19.5 29.3447 19.5 28.9891V25.0232C19.5 22.211 19.8435 19.6213 20.8952 17.6673L20.8958 17.6662C21.4421 16.6491 22.2016 15.7643 23.2281 15.1437L23.2297 15.1427C24.2563 14.5202 25.4182 14.2455 26.6403 14.2455H34.6998C35.9219 14.2455 37.0838 14.5202 38.1104 15.1427L38.112 15.1437C39.1384 15.7643 39.8979 16.6491 40.4443 17.6662L40.4449 17.6673C41.4966 19.6213 41.8401 22.211 41.8401 25.0232V28.9891C41.8401 29.3447 41.7558 29.6954 41.5941 30.0121C41.4324 30.3288 41.1979 30.6027 40.9098 30.8111C40.6218 31.0196 40.2884 31.1568 39.937 31.2114C39.5856 31.2661 39.2263 31.2366 38.8885 31.1254C38.7354 31.075 38.4202 31.0009 38.4202 31.0009V22.5009C38.4202 22.0867 38.0844 21.7509 37.6702 21.7509C37.256 21.7509 36.9202 22.0867 36.9202 22.5009C36.9202 26.0393 36.92 29.5773 36.9199 33.1154L36.9198 33.4976C36.9197 37.0765 36.9195 40.6556 36.9195 44.2346C36.9203 44.8138 36.6975 45.371 36.2977 45.79C35.8978 46.209 35.3516 46.4575 34.7731 46.4838C34.1945 46.5101 33.628 46.3121 33.1918 45.9311C32.7662 45.5593 32.4966 45.0414 32.4357 44.4806L32.1738 33.9498C32.1535 33.1362 31.4882 32.4872 30.6743 32.4871Z" fill="currentColor"/>
7
- </g>
8
- <defs>
9
- <clipPath id="clip0_100_865">
10
- <rect width="48" height="48" fill="white" transform="translate(0 0.00088501)"/>
11
- </clipPath>
12
- </defs>
13
- </svg>
@@ -1,6 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M34.7691 20.569H25.7594L25.7594 12.2917C25.7594 9.96466 26.3379 7.96531 27.6974 6.30821C28.9147 4.82435 30.6048 3.78524 32.1863 2.86216L32.9225 2.4325L34.9846 7.30078L34.4147 7.63341C34.1179 7.80665 33.8549 7.95629 33.6185 8.09083C33.1726 8.34463 32.8211 8.54465 32.515 8.7478C32.0765 9.03878 31.8125 9.28676 31.609 9.6138L31.6003 9.62782L31.5909 9.64145C31.2045 10.2056 31.0453 10.7071 30.9952 11.5417H34.7691V20.569ZM33.2691 19.069V13.0417H29.4763V12.2917C29.4763 10.8573 29.6112 9.88372 30.3443 8.80709C30.6985 8.24332 31.1454 7.85646 31.6856 7.49797C32.0343 7.26657 32.4579 7.02531 32.9373 6.75226L33.0871 6.6669L32.2085 4.59275C30.902 5.38326 29.7229 6.20417 28.8571 7.25958C27.7661 8.58937 27.2594 10.2266 27.2594 12.2917L27.2594 19.069H33.2691Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M9.27745 27.4327H0.267787V36.4599H4.04163C3.99159 37.2945 3.83236 37.7961 3.44593 38.3602L3.43659 38.3738L3.42787 38.3879C3.22439 38.7149 2.96036 38.9629 2.52188 39.2538C2.21581 39.457 1.86443 39.6569 1.41862 39.9107C1.18224 40.0452 0.918971 40.195 0.622177 40.3682L0.0522461 40.7009L2.11432 45.5692L2.85051 45.1395C4.4321 44.2164 6.12219 43.1773 7.33949 41.6934C8.69893 40.0363 9.2775 38.037 9.2775 35.7099L9.27745 27.4327ZM1.76779 34.9599V28.9327H7.77746L7.7775 35.7099C7.7775 37.7751 7.27072 39.4123 6.1798 40.7421C5.31398 41.7975 4.13484 42.6184 2.82831 43.4089L1.94975 41.3348L2.09956 41.2494C2.57893 40.9764 3.00262 40.7351 3.35128 40.5037C3.89151 40.1452 4.33834 39.7583 4.69254 39.1946C5.4257 38.1179 5.5606 37.1444 5.5606 35.7099V34.9599H1.76779Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M22.2411 27.4327H13.2314V36.4599H17.0053C16.9552 37.2945 16.796 37.7961 16.4096 38.3602L16.4002 38.3738L16.3915 38.3879C16.188 38.7149 15.924 38.9629 15.4855 39.2538C15.1794 39.457 14.8279 39.657 14.382 39.9108C14.1458 40.0452 13.8823 40.1952 13.5858 40.3682L13.0159 40.7009L15.078 45.5692L15.8141 45.1395C17.3957 44.2164 19.0858 43.1773 20.3031 41.6934C21.6626 40.0363 22.2411 38.037 22.2411 35.7099L22.2411 27.4327ZM14.7314 34.9599V28.9327H20.7411L20.7411 35.7099C20.7411 37.7751 20.2344 39.4123 19.1434 40.7421C18.2776 41.7975 17.0985 42.6184 15.7919 43.4089L14.9134 41.3348L15.0632 41.2494C15.5426 40.9764 15.9663 40.7351 16.3149 40.5037C16.8551 40.1452 17.302 39.7583 17.6562 39.1946C18.3893 38.1179 18.5242 37.1444 18.5242 35.7099V34.9599H14.7314Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M38.723 20.569H47.7327V11.5417H43.9589C44.0089 10.7071 44.1681 10.2056 44.5546 9.64145L44.5639 9.62782L44.5726 9.6138C44.7761 9.28676 45.0401 9.03878 45.4786 8.74781C45.7847 8.54465 46.1362 8.34463 46.5821 8.09083C46.8185 7.9563 47.0815 7.80665 47.3783 7.63341L47.9482 7.30078L45.8862 2.4325L45.15 2.86217C43.5684 3.78524 41.8783 4.82436 40.661 6.30821C39.3016 7.96532 38.723 9.96466 38.723 12.2917L38.723 20.569ZM46.2327 13.0417V19.069H40.223L40.223 12.2917C40.223 10.2266 40.7298 8.58938 41.8207 7.25958C42.6865 6.20418 43.8657 5.38327 45.1722 4.59275L46.0507 6.66691L45.9009 6.75226C45.4215 7.02531 44.9979 7.26657 44.6492 7.49797C44.109 7.85647 43.6621 8.24332 43.3079 8.80709C42.5748 9.88372 42.4399 10.8573 42.4399 12.2917V13.0417L46.2327 13.0417Z" fill="currentColor"/>
6
- </svg>
@@ -1,11 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_999)">
3
- <path d="M15 21.5009L16 23.5009H19V21.5009L17.5 20.5009L15 21.5009Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M15.2353 10.2205C15.4636 9.99227 15.8123 9.93568 16.1011 10.0801L18.0386 11.0488C18.2165 11.1378 18.3518 11.2937 18.4147 11.4825L18.8008 12.6409L19.1563 12.8186L19.5118 12.6409L19.8979 11.4825C20 11.1762 20.2866 10.9696 20.6094 10.9696H22.5469C22.8536 10.9696 23.1294 11.1563 23.2433 11.4411L24.0553 13.4711L26.5452 13.8861C26.6499 13.9035 26.7496 13.943 26.8379 14.0018L28.1021 14.8446H30.0331C30.314 14.8446 30.5713 15.0016 30.6999 15.2513L31.4481 16.7044C31.6228 17.0437 31.5148 17.4601 31.1973 17.6718L30.3944 18.2071L30.6155 18.511L32.2603 20.3206L32.6728 19.908C32.7552 19.8257 32.8555 19.7637 32.966 19.7269L33.7364 19.47L33.2381 17.7397C33.1522 17.4415 33.2589 17.1212 33.5063 16.934C33.7538 16.7468 34.091 16.7313 34.3545 16.895L37.2219 18.676L39.353 18.2498C39.6846 18.1835 40.0196 18.3473 40.1709 18.6498L40.6552 19.6186C40.7996 19.9073 40.743 20.2561 40.5147 20.4843L40.0059 20.9931L40.7444 21.9778L41.6847 21.6644C41.8387 21.613 42.0051 21.613 42.1591 21.6644L43.5849 22.1396L45.4944 22.617C45.7068 22.6701 45.8854 22.8134 45.9834 23.0092L46.8977 24.8379L47.7804 25.7205C47.921 25.8612 48 26.052 48 26.2509V27.704C48 28.1182 47.6643 28.454 47.25 28.454H45.7139L44.9937 29.5343L44.5302 30.4613C44.4413 30.6392 44.2853 30.7745 44.0966 30.8374L43.034 31.1916L42.6495 32.7297C42.6253 32.8266 42.5819 32.9178 42.5219 32.9978L41.0688 34.9353C40.9581 35.0829 40.7968 35.1845 40.6159 35.2207L38.194 35.7051C38.0969 35.7245 37.9969 35.7245 37.8998 35.7051L36.0072 35.3265L34.6095 37.7645C34.4731 38.0025 34.2177 38.147 33.9434 38.1413C33.6692 38.1357 33.42 37.9809 33.2934 37.7375L32.6996 36.5956L31.0665 36.2367L30.0959 36.6328C30.0059 36.6695 29.9097 36.6884 29.8125 36.6884H27.875C27.6761 36.6884 27.4854 36.6094 27.3447 36.4687L26.1112 35.2353H25.4532C25.3367 35.2353 25.2219 35.2081 25.1177 35.1561L23.2701 34.2322L21.5959 33.8974L20.8365 36.1755C20.7543 36.4221 20.5503 36.6086 20.2973 36.6683C20.1576 36.7013 20.0138 36.693 19.8822 36.648L19.3427 37.7269C19.2349 37.9425 19.03 38.0932 18.792 38.1318C18.5541 38.1704 18.312 38.0923 18.1416 37.9218L17.6076 37.3878L16.6661 38.0155C16.5005 38.1259 16.298 38.1659 16.1029 38.1269L13.6811 37.6426C13.4098 37.5883 13.1905 37.3892 13.1103 37.1245C13.0424 36.8999 13.0839 36.6591 13.2174 36.4718L10.5039 34.146L9.61775 33.7029C9.54565 33.6669 9.47983 33.6195 9.42283 33.5625L6.73625 30.8759H6.07816C5.87924 30.8759 5.68848 30.7969 5.54783 30.6562L4.0947 29.2031C4.01237 29.1207 3.95034 29.0204 3.91352 28.9099L3.46763 27.5723L2.08753 25.7321C1.91709 25.5049 1.88967 25.2008 2.01671 24.9467L2.8438 23.2925L1.38337 22.5623C1.20546 22.4734 1.07017 22.3174 1.00727 22.1287L0.0385197 19.2224C-0.057407 18.9346 0.0294664 18.6174 0.258631 18.4187C0.487795 18.2199 0.814121 18.1788 1.08544 18.3144L2.43075 18.9871L3.03224 18.0848C3.10464 17.9763 3.20413 17.8884 3.32087 17.8301L5.25837 16.8613C5.43628 16.7723 5.64225 16.7577 5.83095 16.8206L6.77125 17.134L7.90003 15.629C8.04168 15.4401 8.26397 15.329 8.50003 15.329H9.89697L10.2104 14.3887C10.2915 14.1454 10.4912 13.9605 10.74 13.8983L12.5976 13.4339L14.4995 12.4829L14.2666 12.25C13.9737 11.9571 13.9737 11.4822 14.2666 11.1893L15.2353 10.2205ZM15.8576 11.7196L16.296 12.158C16.4665 12.3285 16.5446 12.5705 16.506 12.8085C16.4674 13.0465 16.3167 13.2514 16.1011 13.3592L13.1948 14.8123C13.1459 14.8368 13.0944 14.8558 13.0413 14.8691L11.5032 15.2536L11.149 16.3162C11.047 16.6224 10.7604 16.829 10.4375 16.829H8.87503L8.02395 17.9638C8.08238 18.0208 8.13243 18.0883 8.17099 18.1654L9.35473 20.5329L15.572 17.8684L16.1201 17.3202L15.3038 15.2794C15.1924 15.0008 15.2577 14.6827 15.4698 14.4705L17.2396 12.7007L17.0899 12.2515L15.9137 11.6634L15.8576 11.7196ZM18.0961 13.9656L16.8802 15.1815L17.317 16.2735C17.3756 16.2589 17.4369 16.2511 17.5 16.2511H21.4824L21.5 16.2509C21.5586 16.2509 21.6157 16.2576 21.6704 16.2703L23.4978 16.6358L24.0463 14.9903L23.3924 14.8813C23.1339 14.8382 22.9166 14.6633 22.8193 14.42L22.0391 12.4696H21.15L20.8365 13.4099C20.7736 13.5986 20.6384 13.7546 20.4604 13.8436L19.4917 14.3279C19.2805 14.4335 19.032 14.4335 18.8209 14.3279L18.0961 13.9656ZM17.7072 17.7511C17.6707 17.8544 17.6112 17.9505 17.5305 18.0312L16.5305 19.0312C16.463 19.0987 16.3833 19.1526 16.2956 19.1902L10.6801 21.5969L12.8726 22.8497C13.183 23.027 13.325 23.3989 13.212 23.738L12.291 26.5009L12.5396 27.2466L19.7281 26.7673L23.25 24.1259V23.1226L22.7918 21.7478C22.786 21.7311 22.7808 21.7142 22.7762 21.6971C22.7623 21.646 22.7539 21.5937 22.7511 21.5409C22.7502 21.5243 22.7499 21.5079 22.75 21.4915V20.8759L21.05 19.6009C20.8612 19.4592 20.75 19.2369 20.75 19.0009V17.7511H17.7072ZM6.82934 18.8363L7.95305 21.0837L4.26652 22.4242C4.19672 22.3265 4.10322 22.2452 3.99169 22.1894L2.33206 21.3596L2.03413 20.4658L2.35212 20.6248C2.69043 20.794 3.10176 20.6847 3.31157 20.37L4.16984 19.0826L5.65133 18.3419L6.78244 18.7189C6.79456 18.7586 6.81015 18.7979 6.82934 18.8363ZM3.56565 25.2029L4.1326 24.069L8.93011 22.3245L11.5945 23.847L10.7889 26.2637C10.7376 26.4176 10.7376 26.5841 10.7889 26.738L11.226 28.0491L10.3601 32.3784L7.57724 29.5955C7.43658 29.4549 7.24582 29.3759 7.04691 29.3759H6.38882L5.28056 28.2676L4.85217 26.9825C4.82668 26.906 4.78902 26.8341 4.74066 26.7696L3.56565 25.2029ZM14.8006 35.8533L11.7264 33.2183L12.6171 28.7447L19.25 28.3025V29.5009C19.25 29.6998 19.329 29.8905 19.4697 30.0312L20.4697 31.0312C20.5267 31.0882 20.5925 31.1356 20.6646 31.1717L23.25 32.4644V32.6985L21.2409 32.2967C20.87 32.2225 20.5019 32.4361 20.3823 32.795L19.7436 34.7111C19.6704 34.7009 19.5952 34.7016 19.5205 34.7137C19.2825 34.7523 19.0776 34.903 18.9698 35.1186L18.4664 36.1254L18.2335 35.8924C17.9807 35.6396 17.5846 35.6004 17.2871 35.7987L16.0925 36.5951L15.0618 36.389C15.0525 36.1821 14.958 35.9882 14.8006 35.8533ZM25.6302 33.7353L24.75 33.2952V32.0009C24.75 31.7168 24.5895 31.4571 24.3354 31.33L21.4443 29.8845L20.75 29.1902V27.8759L24.2791 25.229L27.1648 26.6718C27.2283 26.7036 27.2961 26.7262 27.366 26.7389L29.7501 27.1724V30.3231L28.9183 31.9866L26.2953 33.7353H25.6302ZM24.8356 23.8302C24.8075 23.8161 24.7789 23.804 24.75 23.7938V23.0009C24.75 22.9202 24.737 22.8402 24.7116 22.7637L24.4891 22.0964L26.3828 21.7808L29.1647 23.1717C29.4188 23.2988 29.7228 23.2713 29.9501 23.1009L31.6212 21.8476L31.6794 21.9116C31.8174 22.0634 32.0115 22.152 32.2165 22.1569C32.3993 22.1613 32.5766 22.0987 32.7157 21.9824L32.2885 23.2639C32.2324 23.4322 32.2378 23.6149 32.3037 23.7796L33.1571 25.9133L32.9467 26.229L27.7397 25.2823L24.8356 23.8302ZM26.3768 20.2611L24.25 20.6156V20.5009C24.25 20.2648 24.1389 20.0425 23.95 19.9009L22.25 18.6259V17.9159L23.8529 18.2365C24.2238 18.3107 24.5919 18.0971 24.7115 17.7382L25.5443 15.2399L26.1398 15.3392L27.459 16.2187C27.5822 16.3008 27.727 16.3446 27.875 16.3446H29.5757L29.8078 16.7954L28.9121 17.3925C28.7422 17.5058 28.6258 17.6835 28.5899 17.8845C28.5539 18.0856 28.6015 18.2926 28.7217 18.4578L29.4267 19.4265C29.4426 19.4485 29.4598 19.4696 29.4781 19.4897L30.6078 20.7326L29.4209 21.6228L26.8355 20.3301C26.6938 20.2592 26.5332 20.235 26.3768 20.2611ZM28.1857 35.1884L27.6393 34.642L29.9161 33.1242C30.0247 33.0518 30.1125 32.9523 30.1709 32.8355L31.1709 30.8355C31.223 30.7314 31.2501 30.6166 31.2501 30.5001V27.4451L32.261 27.6289C32.2674 27.6657 32.2765 27.7023 32.2885 27.7382L32.7885 29.2382C32.8583 29.4475 33.0166 29.6155 33.2215 29.6974L33.9205 29.977L37.1609 34.0276L35.7721 33.7498C35.456 33.6866 35.1348 33.8325 34.9744 34.1122L33.9909 35.8276L33.8686 35.5923C33.766 35.3951 33.5813 35.2536 33.3642 35.2059L31.1604 34.7215C31.0119 34.6888 30.8569 34.7021 30.716 34.7596L29.6654 35.1884H28.1857ZM39.0613 34.0019L40.0407 33.806L41.231 32.2189L41.6787 30.4283C41.7409 30.1796 41.9258 29.9798 42.1691 29.8987L43.3275 29.5126L43.5242 29.1193L41.0924 28.7719L36.384 30.6552L39.0613 34.0019ZM34.7159 20.7247L34.7115 20.7382L33.7984 23.4776L34.6964 25.7225C34.7881 25.9518 34.761 26.2116 34.6241 26.4171L33.8275 27.6119L34.1015 28.4339L36 29.1933L39.7828 27.6801L38.5527 26.1425L35.7628 25.2125C35.4566 25.1104 35.25 24.8238 35.25 24.501V23.001C35.25 22.8846 35.2771 22.7697 35.3292 22.6656L36.3292 20.6656C36.4018 20.5205 36.5195 20.4028 36.6646 20.3302L36.9196 20.2027C36.8364 20.1847 36.7561 20.1525 36.6824 20.1067L35.219 19.1977L35.377 19.7464C35.4883 20.1329 35.275 20.5383 34.8935 20.6655L34.7159 20.7247ZM41.4001 27.3006L44.3949 27.7284L44.6885 27.288C44.8276 27.0793 45.0618 26.954 45.3125 26.954H46.5V26.5615L45.751 25.8125C45.694 25.7555 45.6465 25.6896 45.6105 25.6175L44.796 23.9886L43.1931 23.5879L43.1763 23.5834L43.1628 23.5796L43.1482 23.5751L43.1379 23.5718L41.9219 23.1664L40.706 23.5718C40.3997 23.6738 40.0625 23.5685 39.8688 23.3102L38.4157 21.3727C38.3713 21.3136 38.3369 21.2498 38.3123 21.1834L37.559 21.56L36.75 23.1781V23.9604L39.2372 24.7895C39.3743 24.8352 39.4953 24.9196 39.5857 25.0325L41.4001 27.3006Z" fill="currentColor"/>
5
- </g>
6
- <defs>
7
- <clipPath id="clip0_100_999">
8
- <rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
9
- </clipPath>
10
- </defs>
11
- </svg>
@@ -1,11 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_946)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M39.6166 34.6237L40.4078 35.0975L40.555 35.3817L40.6471 36.2344L40.4631 36.3671L40.2054 36.405L39.7086 36.3482L39.2853 36.386L39.083 36.5755L38.9725 36.9166L38.8069 37.2008L38.3469 37.5608L37.9788 37.8451L37.5187 38.1483L37.1875 38.4136L37.0219 38.9252L37.0403 39.4937L37.0587 39.9674L36.7275 40.3275L36.3042 40.1948L36.0833 40.4222L35.7153 40.8391L35.3657 41.218L34.9976 41.5592L34.6112 41.9192L34.0223 41.9949L33.5623 41.976L33.139 41.8813L32.7525 41.6728L32.3662 41.7486L32.1269 41.957L31.8141 42.317L31.5196 42.715L31.2068 43.2646L30.9491 42.7339L30.3051 42.6202L29.7714 42.355L29.5506 42.0708L29.2378 42.0518L28.8697 41.9949L28.6305 42.0897L28.3361 42.3739H28.0048L27.6 42.4118L27.1767 42.4497L26.827 42.3929L26.3118 42.1086L26.0174 41.7486L25.7597 41.4833L25.0605 41.4644L24.8212 41.3317L24.674 41.1044H24.4164L24.0484 41.1612H23.8235L23.4227 41.0096L23.0178 40.8769L22.6313 40.7632L22.3922 40.6496L21.9873 40.4222L21.6745 40.4032H21.4537L21.3616 40.5169L21.38 40.8012L21.196 41.3128L21.104 41.7297L20.9384 41.8813L20.4967 42.1276L20.1103 42.5445L20.0735 42.7909L19.8895 43.1887L19.5399 43.3782L19.2454 43.4162L18.8038 43.4919L18.3253 43.7003H17.3867L16.8971 43.5487L16.5034 43.3403L16.4667 43.0371V42.7718L16.301 42.4877L16.025 42.3929L15.7122 42.2931L15.565 41.9381L15.3238 41.5584C15.3238 41.4831 14.9579 41.0875 14.9579 41.0875L14.5554 40.7484L14.2079 40.5412L13.4212 40.2398L13.2931 39.8254L12.9273 39.5428L12.3053 38.94L11.6101 38.0734L10.9515 37.3953L10.6222 37.3199L10.0734 37.075L9.7624 36.6229L9.41481 36.0389L9.1404 35.5115L8.75623 34.8334L8.48182 34.6449L8.33546 34.2494L8.46352 33.7031L8.73793 33.3829L8.97576 33.1191L8.88429 32.6294L8.40864 32.0454L7.49394 31.3295L7.40247 30.9151L7.10976 30.3876L7 30.124L7.20124 29.9355H7.96958L8.13423 29.6341L8.60988 29.1632L9.41481 28.7111L10.5856 28.5792L11.2076 28.8053L11.5918 28.146L12.2321 28.033L12.598 27.562L13.2017 27.2606H13.5675L13.9151 27.0157L14.0432 26.6955L14.464 26.4317L14.9396 26.3564H16.0006L16.1836 26.0926L16.641 25.6594L17.08 25.4333L17.574 25.245L17.7934 25.0001L17.7752 24.6233L17.5007 24.1901L17.5191 23.8698L17.9581 23.7003L18.635 24.0582L19.2386 24.6233L19.2753 25.0377L19.3302 25.5087L19.6778 25.8478L19.9907 25.6608L20.2265 25.4619L20.337 25.434L20.4783 25.4146H20.9752L21.3249 25.3387L21.3616 25.1303L21.3249 24.8461L21.2696 24.6566L21.2512 24.4292L21.4537 24.2397L21.6929 24.2965L22.1713 24.3534L22.5762 24.4861L22.8706 25.0166L22.889 25.3577L23.0915 25.604L23.1467 26.0209L23.2202 26.5136L23.4779 26.6463L23.7723 26.5515L24.2324 26.5325L24.7292 26.4188H25.4653L25.8518 26.7031L26.3302 27.1768L26.4039 27.5178L26.6799 27.5748L26.7719 27.2336L27.2319 27.1578L27.784 27.0631L28.2257 27.1768L28.5201 27.4042L28.6121 27.821L28.4833 28.1242L28.2624 28.2758L27.9128 28.579L27.6736 28.939L28.0417 29.4886L28.428 29.8296L28.8329 30.2276L29.0906 30.5876L29.3297 31.0234L29.4402 31.6109L29.7714 31.8003L30.0107 31.6866V31.4782L30.5627 31.4025L30.7835 31.175L30.9491 30.7771L31.0043 30.3981H31.5012L31.4829 30.1897L31.1148 29.9623L30.7284 29.7349L30.6363 29.1286L30.7835 28.7495L31.078 28.7117L31.7036 28.977L32.4213 29.2991L33.3046 29.8865L33.7279 30.0949H34.1327L34.4456 30.0192L34.5743 29.8676L34.9608 29.7918L35.1448 30.0571L35.2001 30.4171L35.108 30.6445L34.7216 30.7392L34.5927 30.9856L34.74 31.3456L35.1264 31.6488L35.5313 32.1983L35.9361 32.293L36.2305 32.1794L36.341 31.8572L36.525 31.6866L36.801 31.8193L36.9851 32.3878L37.5003 32.4826L37.7211 32.672L38.0155 32.8236L38.586 32.7857L38.8621 33.0699L39.6166 34.0743V34.6237ZM38.1166 34.5749V35.4255L37.7752 35.7451L37.6197 36.2251L37.4263 36.3765L37.1064 36.6235L36.6352 36.9341L35.8989 37.5239L35.5142 38.7121L35.5187 38.8507L34.9825 39.4026L34.6017 39.8341L34.303 40.1577L33.9751 40.4617L33.9443 40.4904L33.7584 40.4828L33.6688 40.4627L32.9914 40.0973L31.6835 40.354L31.0631 40.8944L30.8096 41.1861L30.7789 41.1807L30.7458 41.1642L30.3189 40.6145L29.3981 40.5588L28.696 40.4502L27.8021 40.8045L27.7082 40.8951L27.4663 40.9178L27.4603 40.9183L27.2886 40.9337L27.138 40.7495L26.4105 40.0004L25.7343 39.9821L25.4897 39.6044H24.3013L24.05 39.6432L23.9218 39.5947L23.4632 39.4444L23.1682 39.3576L23.0821 39.3167L22.4217 38.9457L21.7198 38.9032H20.738L19.8269 40.0288L19.863 40.5869L19.7836 40.8078L19.5583 40.9334L18.6954 41.8645L18.6763 41.9919L18.3712 42.0442L18.0128 42.2003H17.8697L17.316 41.2502L16.7904 41.0697L16.6569 40.8596C16.6428 40.8312 16.63 40.8074 16.6196 40.7887C16.5688 40.6972 16.5164 40.6218 16.4842 40.5771C16.4161 40.4823 16.3411 40.3912 16.2868 40.3269C16.2284 40.2577 16.1722 40.1941 16.132 40.1493C16.1115 40.1264 16.0942 40.1073 16.0816 40.0936L16.0664 40.077L16.0617 40.0718L16.0601 40.0701L16.0593 40.0692C16.0592 40.0692 16.0591 40.069 14.9579 41.0875L16.0593 40.0692L15.9957 40.0005L15.4285 39.5226L14.8651 39.1867L14.639 39.1L14.586 38.9286L13.9107 38.407L13.4166 37.9282L12.7357 37.0794L11.7185 36.032L11.0996 35.8904L11.07 35.8772L11.0262 35.8134L10.7257 35.3086L10.4587 34.7955L10.0826 34.1315L10.5864 33.5728L10.2886 31.9784L9.46551 30.9677L9.21993 30.7755L9.34547 30.5457L9.52115 30.3718L9.88455 30.1677L10.4039 30.1092L11.8728 30.6431L12.5376 29.5022L13.0621 29.4097L13.5662 28.7606H14.0429L15.1428 27.9856L15.1945 27.8564H16.7856L17.3277 27.075L17.5175 26.8952L17.6924 26.8051L18.281 26.5807L19.4564 27.7274L20.8169 26.9146H21.136L21.7438 26.7827L21.8502 27.4954L23.3448 28.2649L24.0378 28.0418L24.4322 28.0256L24.8987 27.9188H24.9477L24.9581 27.9291L25.1439 28.7896L25.872 28.9397L25.8703 28.9422L26.9034 30.4846L27.4052 30.9276L27.6888 31.2063L27.8187 31.3878L27.8997 31.5355L28.094 32.5689L29.7072 33.4917L31.0612 32.8481L31.2786 32.8183L31.4112 32.6818L31.5107 32.6345V32.5794L32.0587 32.0151L32.1073 31.8981H33.1394L33.1006 31.458L33.1817 31.498L33.5018 32.2808L34.0399 32.7029L34.6515 33.533L36.0447 33.8589L36.2534 33.7783L36.8307 33.8846L36.8779 33.925L37.6994 34.348L37.9343 34.3324L38.1166 34.5749Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M34.4409 10.5009L36.2132 8.72857L27.7279 0.243286L17.4704 10.5009H7.16065C6.44293 10.5009 5.78024 10.8854 5.42416 11.5086L0.263514 20.5397C0.0908306 20.8419 0 21.1839 0 21.532V46.0009C0 47.1054 0.895432 48.0009 2 48.0009H46C47.1046 48.0009 48 47.1054 48 46.0009V21.532C48 21.1839 47.9092 20.8419 47.7365 20.5397L42.5758 11.5086C42.2198 10.8854 41.5571 10.5009 40.8394 10.5009H34.4409ZM27.7279 2.36461L17.1213 12.9712L19.151 15.0009H27.8196L34.0919 8.72857L27.7279 2.36461ZM15 12.9712L17.0296 15.0009H12.75C12.3358 15.0009 12 15.3366 12 15.7509C12 16.1651 12.3358 16.5009 12.75 16.5009H35.25C35.6642 16.5009 36 16.1651 36 15.7509C36 15.3366 35.6642 15.0009 35.25 15.0009H29.9409L32.9409 12.0009H40.8394C41.0188 12.0009 41.1845 12.097 41.2735 12.2528L45.7009 20.0009H2.29905L6.72652 12.2528C6.81555 12.097 6.98122 12.0009 7.16065 12.0009H15.9704L15 12.9712ZM1.50097 21.5009C1.50032 21.5112 1.5 21.5216 1.5 21.532V46.0009C1.5 46.277 1.72386 46.5009 2 46.5009H46C46.2761 46.5009 46.5 46.277 46.5 46.0009V21.532C46.5 21.5216 46.4997 21.5112 46.499 21.5009H1.50097Z" fill="currentColor"/>
5
- </g>
6
- <defs>
7
- <clipPath id="clip0_100_946">
8
- <rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
9
- </clipPath>
10
- </defs>
11
- </svg>
@@ -1,12 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_927)">
3
- <path d="M18 32.3342L19.5 31.5009L21 32.3342V33.1675L18.75 34.0009L18 32.3342Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M39.6166 34.6237L40.4078 35.0975L40.555 35.3817L40.6471 36.2344L40.4631 36.3671L40.2054 36.405L39.7086 36.3482L39.2853 36.386L39.083 36.5755L38.9725 36.9166L38.8069 37.2008L38.3469 37.5608L37.9788 37.8451L37.5187 38.1483L37.1875 38.4136L37.0219 38.9252L37.0403 39.4937L37.0587 39.9674L36.7275 40.3275L36.3042 40.1948L36.0833 40.4222L35.7153 40.8391L35.3657 41.218L34.9976 41.5592L34.6112 41.9192L34.0223 41.9949L33.5623 41.976L33.139 41.8813L32.7525 41.6728L32.3662 41.7486L32.1269 41.957L31.8141 42.317L31.5196 42.715L31.2068 43.2646L30.9491 42.7339L30.3051 42.6202L29.7714 42.355L29.5506 42.0708L29.2378 42.0518L28.8697 41.9949L28.6305 42.0897L28.3361 42.3739H28.0048L27.6 42.4118L27.1767 42.4497L26.827 42.3929L26.3118 42.1086L26.0174 41.7486L25.7597 41.4833L25.0605 41.4644L24.8212 41.3317L24.674 41.1044H24.4164L24.0484 41.1612H23.8235L23.4227 41.0096L23.0178 40.8769L22.6313 40.7632L22.3922 40.6496L21.9873 40.4222L21.6745 40.4032H21.4537L21.3616 40.5169L21.38 40.8012L21.196 41.3128L21.104 41.7297L20.9384 41.8813L20.4967 42.1276L20.1103 42.5445L20.0735 42.7909L19.8895 43.1887L19.5399 43.3782L19.2454 43.4162L18.8038 43.4919L18.3253 43.7003H17.3867L16.8971 43.5487L16.5034 43.3403L16.4667 43.0371V42.7718L16.301 42.4877L16.025 42.3929L15.7122 42.2931L15.565 41.9381L15.3238 41.5584C15.3238 41.4831 14.9579 41.0875 14.9579 41.0875L16.0593 40.0692L16.0617 40.0718L16.0664 40.077L16.0816 40.0936L16.1003 40.1141L16.132 40.1493C16.1722 40.1941 16.2284 40.2577 16.2868 40.3269C16.3411 40.3912 16.4161 40.4823 16.4842 40.5771C16.5164 40.6218 16.5688 40.6972 16.6196 40.7887C16.63 40.8074 16.6428 40.8312 16.6569 40.8596L16.7904 41.0697L17.316 41.2502L17.8697 42.2003H18.0128L18.3712 42.0442L18.6763 41.9919L18.6954 41.8645L19.5583 40.9334L19.7836 40.8078L19.863 40.5869L19.8269 40.0288L20.738 38.9032H21.7198L22.1188 38.9274L20.5932 36.7915C20.5301 36.7033 20.4999 36.6015 20.5 36.5008H16.5001V36.571L15.6125 39.6776L15.9957 40.0005L16.0593 40.0692C16.0593 40.0692 16.0591 40.069 14.9579 41.0875L14.5554 40.7484L14.2079 40.5412L13.4212 40.2398L13.2931 39.8254L12.9273 39.5428L12.3053 38.94L11.6101 38.0734L10.9515 37.3953L10.6222 37.3199L10.0734 37.075L9.7624 36.6229L9.41481 36.0389L9.1404 35.5115L8.75623 34.8334L8.48182 34.6449L8.33546 34.2494L8.46352 33.7031L8.73793 33.3829L8.97576 33.1191L8.88429 32.6294L8.40864 32.0454L7.49394 31.3295L7.40247 30.9151L7.10976 30.3876L7 30.124L7.20124 29.9355H7.96958L8.13423 29.6341L8.60988 29.1632L9.41481 28.7111L10.5856 28.5792L11.2076 28.8053L11.5918 28.146L12.2321 28.033L12.598 27.562L13.2017 27.2606H13.5675L13.9151 27.0157L14.0432 26.6955L14.464 26.4317L14.9396 26.3564H16.0006L16.1836 26.0926L16.641 25.6594L17.08 25.4333L17.574 25.245L17.7934 25.0001L17.7752 24.6233L17.5007 24.1901L17.5191 23.8698L17.9581 23.7003L18.635 24.0582L19.2386 24.6233L19.2753 25.0377L19.3302 25.5087L19.6778 25.8478L19.9907 25.6608L20.2265 25.4619L20.337 25.434L20.4783 25.4146H20.9752L21.3249 25.3387L21.3616 25.1303L21.3249 24.8461L21.2696 24.6566L21.2512 24.4292L21.4537 24.2397L21.6929 24.2965L22.1713 24.3534L22.5762 24.4861L22.8706 25.0166L22.889 25.3577L23.0915 25.604L23.1467 26.0209L23.2202 26.5136L23.4779 26.6463L23.7723 26.5515L24.2324 26.5325L24.7292 26.4188H25.4653L25.8518 26.7031L26.3302 27.1768L26.4039 27.5178L26.6799 27.5748L26.7719 27.2336L27.2319 27.1578L27.784 27.0631L28.2257 27.1768L28.5201 27.4042L28.6121 27.821L28.4833 28.1242L28.2624 28.2758L27.9128 28.579L27.6736 28.939L28.0417 29.4886L28.428 29.8296L28.8329 30.2276L29.0906 30.5876L29.3297 31.0234L29.4402 31.6109L29.7714 31.8003L30.0107 31.6866V31.4782L30.5627 31.4025L30.7835 31.175L30.9491 30.7771L31.0043 30.3981H31.5012L31.4829 30.1897L31.1148 29.9623L30.7284 29.7349L30.6363 29.1286L30.7835 28.7495L31.078 28.7117L31.7036 28.977L32.4213 29.2991L33.3046 29.8865L33.7279 30.0949H34.1327L34.4456 30.0192L34.5743 29.8676L34.9608 29.7918L35.1448 30.0571L35.2001 30.4171L35.108 30.6445L34.7216 30.7392L34.5927 30.9856L34.74 31.3456L35.1264 31.6488L35.5313 32.1983L35.9361 32.293L36.2305 32.1794L36.341 31.8572L36.525 31.6866L36.801 31.8193L36.9851 32.3878L37.5003 32.4826L37.7211 32.672L38.0155 32.8236L38.586 32.7857L38.8621 33.0699L39.6166 34.0743V34.6237ZM21.6144 36.5008L23.7945 39.553L23.9218 39.5947L24.05 39.6432L24.3013 39.6044H25.1813L27.8573 36.4824L27.7822 36.4523L24.2552 34.4369L21.6754 36.5008H21.6144ZM26.1647 39.9937L28.8381 36.8747L30.3144 37.4652C30.3584 37.4828 30.4035 37.4937 30.4484 37.4984L32.4636 38.506L33.13 40.1721L32.9914 40.0973L31.6835 40.354L31.0631 40.8944L30.8096 41.1861L30.7789 41.1807L30.7458 41.1642L30.3189 40.6145L29.3981 40.5588L28.696 40.4502L27.8021 40.8045L27.7082 40.8951L27.4663 40.9178L27.4603 40.9183L27.2886 40.9337L27.138 40.7495L26.4105 40.0004L26.1647 39.9937ZM24.3665 33.5191C24.4905 33.4847 24.6276 33.4979 24.7482 33.5668L28.218 35.5496L29.9585 36.2458L29.5525 33.4032L28.094 32.5689L28.0737 32.4607L23.8737 32.0408L24.3665 33.5191ZM23.5498 31.0034L27.8433 31.4327L27.8187 31.3878L27.6888 31.2063L27.4052 30.9276L26.9034 30.4846L25.8703 28.9422L25.872 28.9397L25.6258 28.889L24.126 29.4889L23.0672 29.6212L23.5273 31.0016C23.5348 31.002 23.5423 31.0026 23.5498 31.0034ZM31.0294 36.6709L30.5201 33.1053L31.0612 32.8481L31.2786 32.8183L31.4112 32.6818L31.5107 32.6345V32.5794L31.8527 32.2272L34.2506 36.2236L31.842 37.0265C31.8226 37.033 31.8038 37.0405 31.7858 37.049L31.0294 36.6709ZM35.3149 36.0539L32.8215 31.8981H33.1394L33.1006 31.458L33.1817 31.498L33.5018 32.2808L34.0399 32.7029L34.6515 33.533L36.0447 33.8589L36.2534 33.7783L36.8307 33.8846L36.8779 33.925L37.6994 34.348L37.9343 34.3324L38.1166 34.5749V35.4255L37.7752 35.7451L37.6197 36.2251L37.4263 36.3765L37.3238 36.4557L35.3149 36.0539ZM33.0461 37.6792L33.2508 37.7816L34.2288 40.2265L34.303 40.1577L34.6017 39.8341L34.9825 39.4026L35.5187 38.8507L35.5142 38.7121L35.8989 37.5239L36.2319 37.2571L35.0323 37.0172L33.0461 37.6792ZM15.5001 35.9898L15.5 36.0008L15.5001 36.0117V36.4309L14.7278 39.1341L14.639 39.1L14.586 38.9286L13.9107 38.407L13.4166 37.9282L12.7357 37.0794L11.7185 36.032L11.0996 35.8904L11.07 35.8772L11.0262 35.8134L10.7257 35.3086L10.4587 34.7955L10.0826 34.1315L10.2572 33.938C10.3642 33.9975 10.4932 34.0181 10.6214 33.986L14.4801 33.0214L15.5001 33.3614V35.9898ZM16.5001 35.5008H21.3246L23.4154 33.8281L22.0553 29.7477L20.0621 29.9969C19.95 30.0109 19.842 29.9866 19.751 29.9344L15.2032 32.2083L16.5001 32.6406V35.5008ZM23.8741 28.5126L20 28.9969V27.4026L20.8169 26.9146H21.136L21.7438 26.7827L21.8502 27.4954L23.3448 28.2649L24.0378 28.0418L24.4322 28.0256L24.8987 27.9188H24.9477L24.9581 27.9291L24.9879 28.0671L23.8741 28.5126ZM13.9563 32.1216L12.2524 29.9917L11.8728 30.6431L10.4039 30.1092L9.88455 30.1677L9.52115 30.3718L9.34547 30.5457L9.21993 30.7755L9.46551 30.9677L10.2886 31.9784L10.4778 32.9912L13.9563 32.1216ZM13.0647 29.4063L14.6379 31.3729L19 29.1918V27.2822L18.281 26.5807L17.6924 26.8051L17.5175 26.8952L17.3277 27.075L16.7856 27.8564H15.1945L15.1428 27.9856L14.0429 28.7606H13.5662L13.0647 29.4063Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M34.4409 10.5009L36.2132 8.72857L27.7279 0.243286L17.4704 10.5009H7.16065C6.44293 10.5009 5.78024 10.8854 5.42416 11.5086L0.263514 20.5397C0.0908306 20.8419 0 21.1839 0 21.532V46.0009C0 47.1054 0.895432 48.0009 2 48.0009H46C47.1046 48.0009 48 47.1054 48 46.0009V21.532C48 21.1839 47.9092 20.8419 47.7365 20.5397L42.5758 11.5086C42.2198 10.8854 41.5571 10.5009 40.8394 10.5009H34.4409ZM27.7279 2.36461L17.1213 12.9712L19.151 15.0009H27.8196L34.0919 8.72857L27.7279 2.36461ZM15 12.9712L17.0296 15.0009H12.75C12.3358 15.0009 12 15.3366 12 15.7509C12 16.1651 12.3358 16.5009 12.75 16.5009H35.25C35.6642 16.5009 36 16.1651 36 15.7509C36 15.3366 35.6642 15.0009 35.25 15.0009H29.9409L32.9409 12.0009H40.8394C41.0188 12.0009 41.1845 12.097 41.2735 12.2528L45.7009 20.0009H2.29905L6.72652 12.2528C6.81555 12.097 6.98122 12.0009 7.16065 12.0009H15.9704L15 12.9712ZM1.50097 21.5009C1.50032 21.5112 1.5 21.5216 1.5 21.532V46.0009C1.5 46.277 1.72386 46.5009 2 46.5009H46C46.2761 46.5009 46.5 46.277 46.5 46.0009V21.532C46.5 21.5216 46.4997 21.5112 46.499 21.5009H1.50097Z" fill="currentColor"/>
6
- </g>
7
- <defs>
8
- <clipPath id="clip0_100_927">
9
- <rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
10
- </clipPath>
11
- </defs>
12
- </svg>
@@ -1,7 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M9 6.75085C9 7.16507 9.33579 7.50085 9.75 7.50085H18.25C18.6642 7.50085 19 7.16507 19 6.75085C19 6.33664 18.6642 6.00085 18.25 6.00085H9.75C9.33579 6.00085 9 6.33664 9 6.75085Z" fill="currentColor"/>
3
- <path d="M19 10.7509C19 11.1651 18.6642 11.5009 18.25 11.5009H9.75C9.33579 11.5009 9 11.1651 9 10.7509C9 10.3366 9.33579 10.0009 9.75 10.0009H18.25C18.6642 10.0009 19 10.3366 19 10.7509Z" fill="currentColor"/>
4
- <path d="M9 14.7509C9 15.1651 9.33579 15.5009 9.75 15.5009H15.25C15.6642 15.5009 16 15.1651 16 14.7509C16 14.3366 15.6642 14.0009 15.25 14.0009H9.75C9.33579 14.0009 9 14.3366 9 14.7509Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M34 11.5009C34 14.5384 31.5376 17.0009 28.5 17.0009C25.4624 17.0009 23 14.5384 23 11.5009C23 8.46329 25.4624 6.00085 28.5 6.00085C31.5376 6.00085 34 8.46329 34 11.5009ZM32.5 11.5009C32.5 13.71 30.7091 15.5009 28.5 15.5009C26.2909 15.5009 24.5 13.71 24.5 11.5009C24.5 9.29172 26.2909 7.50086 28.5 7.50086C30.7091 7.50086 32.5 9.29172 32.5 11.5009Z" fill="currentColor"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M41 2.00085C41 0.896285 40.1046 0.000854492 39 0.000854492H7C5.89543 0.000854492 5 0.896285 5 2.00085V16.0009H2C0.89543 16.0009 0 16.8963 0 18.0009V46.0009C0 47.1054 0.895431 48.0009 2 48.0009H43.3057C44.2834 48.0009 45.1178 47.294 45.2785 46.3297L47.6119 32.3297C47.815 31.1106 46.875 30.0009 45.6391 30.0009H45V18.0009C45 16.8963 44.1046 16.0009 43 16.0009H41V2.00085ZM15.3513 27.0009C16.0626 27.0009 16.7204 27.3787 17.0788 27.9931L18.25 30.0009H20V26.5009C20 21.8064 23.8056 18.0009 28.5 18.0009C33.1944 18.0009 37 21.8064 37 26.5009V30.0009H39.5V2.00085C39.5 1.72471 39.2761 1.50085 39 1.50085H7C6.72386 1.50085 6.5 1.72471 6.5 2.00085V27.0009H15.3513ZM35.5 30.0009V26.5009C35.5 22.6349 32.366 19.5009 28.5 19.5009C24.634 19.5009 21.5 22.6349 21.5 26.5009V30.0009H35.5ZM41 30.0009H43.5V18.0009C43.5 17.7247 43.2761 17.5009 43 17.5009H41V30.0009ZM2 17.5009C1.72386 17.5009 1.5 17.7247 1.5 18.0009V37.5009L2.75469 28.718C2.89545 27.7327 3.73929 27.0009 4.73459 27.0009H5V17.5009H2ZM45.6391 31.5009H17.3884L15.7831 28.7489C15.6935 28.5953 15.5291 28.5009 15.3513 28.5009H4.73459C4.48577 28.5009 4.27481 28.6838 4.23962 28.9301L1.81104 45.9301C1.76801 46.2314 2.00174 46.5009 2.30602 46.5009H43.3057C43.5502 46.5009 43.7588 46.3241 43.7989 46.0831L46.1323 32.0831C46.1831 31.7783 45.948 31.5009 45.6391 31.5009Z" fill="currentColor"/>
7
- </svg>
@@ -1,8 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <ellipse cx="16.5002" cy="25.3346" rx="1.5" ry="1.49382" fill="currentColor"/>
3
- <ellipse cx="31.5" cy="25.3346" rx="1.5" ry="1.49382" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M29.0835 15.5337C25.7206 14.9427 22.2799 14.9427 18.917 15.5337L15.6306 16.1112C15.2227 16.1829 14.8336 15.9117 14.7617 15.5055C14.6897 15.0993 14.962 14.7118 15.3699 14.6401L18.6563 14.0626C22.1916 13.4413 25.8089 13.4413 29.3441 14.0626L32.6306 14.6401C33.0385 14.7118 33.3108 15.0993 33.2388 15.5055C33.1669 15.9117 32.7778 16.1829 32.3699 16.1112L29.0835 15.5337Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M28.263 11.6038C25.496 10.6852 22.5044 10.6852 19.7374 11.6038C19.3444 11.7342 18.9197 11.5227 18.7887 11.1314C18.6577 10.7401 18.8701 10.3171 19.263 10.1866C22.338 9.16586 25.6624 9.16586 28.7374 10.1866C29.1303 10.3171 29.3427 10.7401 29.2117 11.1314C29.0807 11.5227 28.656 11.7342 28.263 11.6038Z" fill="currentColor"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M27.2045 36.1007C25.1581 36.9741 22.8418 36.9741 20.7954 36.1007C20.4147 35.9382 19.9738 36.1138 19.8106 36.493C19.6474 36.8721 19.8238 37.3112 20.2045 37.4737C22.6282 38.5082 25.3717 38.5082 27.7954 37.4737C28.1761 37.3112 28.3525 36.8721 28.1893 36.493C28.0261 36.1138 27.5852 35.9382 27.2045 36.1007Z" fill="currentColor"/>
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M9.83928 8.29772C9.27776 8.04697 8.65524 7.90751 8 7.90751C5.82587 7.90751 4.01185 9.44299 3.59171 11.4844C1.54182 11.9028 0 13.7094 0 15.8746C0 18.2672 1.88277 20.2219 4.25333 20.3494C4.64158 20.9293 5.16194 21.4139 5.77157 21.7606C3.74366 22.2998 2.25 24.1419 2.25 26.3313C2.25 28.909 4.32028 31.0052 6.89526 31.0607C7.99728 39.4902 15.2353 46 24 46C32.7647 46 40.0027 39.4902 41.1047 31.0607C43.6797 31.0052 45.75 28.909 45.75 26.3313C45.75 24.1419 44.2563 22.2998 42.2284 21.7606C42.8381 21.4139 43.3584 20.9293 43.7467 20.3494C46.1172 20.2219 48 18.2672 48 15.8746C48 13.7094 46.4582 11.9028 44.4083 11.4844C43.9882 9.44299 42.1741 7.90751 40 7.90751C39.3449 7.90751 38.7224 8.04694 38.161 8.29762C31.2817 -1.43253 16.7184 -1.4325 9.83928 8.29772ZM11.0869 9.12811C11.9569 9.94527 12.5 11.104 12.5 12.389C12.5 13.4203 12.1502 14.3703 11.5622 15.1277C12.1502 15.885 12.5 16.835 12.5 17.8663C12.5 18.2092 12.4613 18.5431 12.3881 18.864C13.4426 18.2302 14.6785 17.8655 16 17.8655C19.5265 17.8655 22.4439 20.4625 22.9291 23.8408H25.0709C25.5561 20.4625 28.4735 17.8655 32 17.8655C33.3215 17.8655 34.5574 18.2302 35.6119 18.864C35.5387 18.5431 35.5 18.2092 35.5 17.8663C35.5 16.835 35.8498 15.885 36.4378 15.1277C35.8498 14.3703 35.5 13.4203 35.5 12.389C35.5 11.1039 36.0432 9.9451 36.9133 9.12794C30.6273 0.282435 17.3728 0.282495 11.0869 9.12811ZM9.66621 15.1277L10.3755 14.214C10.7675 13.709 11 13.0782 11 12.389C11 10.739 9.65685 9.40133 8 9.40133C6.55234 9.40133 5.34113 10.424 5.06116 11.7844L4.86244 12.7499L3.89288 12.9478C2.52689 13.2267 1.5 14.4329 1.5 15.8746C1.5 17.4692 2.75517 18.7728 4.33425 18.8578L5.08449 18.8981L5.50132 19.5207C6.04162 20.3276 6.9594 20.854 8 20.854C9.65685 20.854 11 19.5164 11 17.8663C11 17.1772 10.7675 16.5463 10.3755 16.0413L9.66621 15.1277ZM39 24.8367C39 23.852 38.795 22.915 38.4252 22.0657C38.8411 22.2205 39.2862 22.3157 39.75 22.341V28.8211C39.75 37.4837 32.6985 44.5062 24 44.5062C15.3015 44.5062 8.25 37.4837 8.25 28.8211V22.341C8.71379 22.3157 9.15887 22.2205 9.5748 22.0657C9.20499 22.915 9 23.852 9 24.8367C9 28.6867 12.134 31.8078 16 31.8078C19.6979 31.8078 22.726 28.9523 22.9824 25.3346H25.0176C25.274 28.9523 28.3021 31.8078 32 31.8078C35.866 31.8078 39 28.6867 39 24.8367ZM6.75 23.1042C5.07189 23.2313 3.75 24.6276 3.75 26.3313C3.75 28.0404 5.08012 29.4401 6.76566 29.5597C6.75526 29.3148 6.75 29.0685 6.75 28.8211V23.1042ZM41.25 23.1042V28.8211C41.25 29.0685 41.2447 29.3148 41.2343 29.5597C42.9199 29.4401 44.25 28.0404 44.25 26.3313C44.25 24.6276 42.9281 23.2313 41.25 23.1042ZM38.3338 15.1277L37.6245 14.214C37.2325 13.709 37 13.0782 37 12.389C37 10.739 38.3431 9.40133 40 9.40133C41.4477 9.40133 42.6589 10.424 42.9388 11.7844L43.1376 12.7499L44.1071 12.9478C45.4731 13.2267 46.5 14.4329 46.5 15.8746C46.5 17.4692 45.2448 18.7728 43.6658 18.8578L42.9155 18.8981L42.4987 19.5207C41.9584 20.3276 41.0406 20.854 40 20.854C38.3431 20.854 37 19.5164 37 17.8663C37 17.1772 37.2325 16.5463 37.6245 16.0413L38.3338 15.1277ZM16 30.314C19.0376 30.314 21.5 27.8617 21.5 24.8367C21.5 21.8116 19.0376 19.3593 16 19.3593C12.9624 19.3593 10.5 21.8116 10.5 24.8367C10.5 27.8617 12.9624 30.314 16 30.314ZM32 30.314C35.0376 30.314 37.5 27.8617 37.5 24.8367C37.5 21.8116 35.0376 19.3593 32 19.3593C28.9624 19.3593 26.5 21.8116 26.5 24.8367C26.5 27.8617 28.9624 30.314 32 30.314Z" fill="currentColor"/>
8
- </svg>
@@ -1,5 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M22.1388 16.234C22.4662 15.9038 22.4329 15.3516 22.0359 15.1096C19.8398 13.7711 17.26 13 14.5 13C6.49187 13 0 19.4919 0 27.5C0 35.5081 6.49187 42 14.5 42C22.5081 42 29 35.5081 29 27.5C29 24.5133 28.097 21.7374 26.549 19.4307C26.2908 19.0458 25.754 18.9874 25.4241 19.3128C25.1507 19.5826 25.1339 20.0103 25.346 20.3305C26.7072 22.3857 27.5 24.8503 27.5 27.5C27.5 34.6797 21.6797 40.5 14.5 40.5C7.3203 40.5 1.5 34.6797 1.5 27.5C1.5 20.3203 7.3203 14.5 14.5 14.5C16.9461 14.5 19.2344 15.1756 21.1885 16.3504C21.4939 16.534 21.8879 16.487 22.1388 16.234Z" fill="currentColor"/>
3
- <path d="M46.5 27.5C46.5 34.6797 40.6797 40.5 33.5 40.5C31.0538 40.5 28.7654 39.8244 26.8113 38.6495C26.5059 38.4659 26.1119 38.5129 25.861 38.7659C25.5336 39.096 25.5668 39.6482 25.9639 39.8902C28.16 41.2288 30.7399 42 33.5 42C41.5081 42 48 35.5081 48 27.5C48 19.4919 41.5081 13 33.5 13C25.4919 13 19 19.4919 19 27.5C19 30.4867 19.903 33.2625 21.4509 35.5693C21.7091 35.9541 22.246 36.0126 22.5759 35.6871C22.8493 35.4173 22.8661 34.9897 22.654 34.6695C21.2927 32.6143 20.5 30.1497 20.5 27.5C20.5 20.3203 26.3203 14.5 33.5 14.5C40.6797 14.5 46.5 20.3203 46.5 27.5Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M11.1313 6.5L10.6158 8.30446L11.8704 10.5H17.1294L18.384 8.30446L17.8684 6.5H11.1313ZM10.7542 5C10.3077 5 9.91532 5.29598 9.79267 5.72528L9.11563 8.09492C9.04162 8.35395 9.07525 8.63188 9.20891 8.86578L10.712 11.4961C10.89 11.8077 11.2214 12 11.5802 12H17.4196C17.7784 12 18.1098 11.8077 18.2878 11.4961L19.7909 8.86578C19.9245 8.63188 19.9582 8.35395 19.8842 8.09492L19.2071 5.72528C19.0845 5.29598 18.6921 5 18.2456 5H10.7542Z" fill="currentColor"/>
5
- </svg>
@@ -1,10 +0,0 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_85_4581)">
3
- <path d="M11.742 10.344C12.7103 9.02267 13.144 7.38447 12.9563 5.75713C12.7686 4.12979 11.9734 2.63332 10.7298 1.56711C9.48612 0.500899 7.88575 -0.056418 6.24884 0.00665514C4.61192 0.0697283 3.05919 0.748541 1.90127 1.90729C0.743353 3.06603 0.0656519 4.61926 0.00375008 6.25621C-0.0581517 7.89317 0.500311 9.49314 1.56741 10.736C2.63451 11.9789 4.13155 12.773 5.75902 12.9596C7.38649 13.1461 9.02438 12.7112 10.345 11.742H10.344C10.3733 11.782 10.406 11.8203 10.442 11.857L14.292 15.707C14.4795 15.8946 14.7339 16.0001 14.9991 16.0002C15.2644 16.0003 15.5189 15.895 15.7065 15.7075C15.8941 15.52 15.9996 15.2656 15.9997 15.0003C15.9998 14.7351 15.8945 14.4806 15.707 14.293L11.857 10.443C11.8213 10.4068 11.7828 10.3743 11.742 10.344ZM12 6.49998C12 7.22225 11.8577 7.93745 11.5813 8.60474C11.3049 9.27203 10.8998 9.87834 10.3891 10.3891C9.87837 10.8998 9.27205 11.3049 8.60476 11.5813C7.93747 11.8577 7.22227 12 6.5 12C5.77773 12 5.06253 11.8577 4.39524 11.5813C3.72795 11.3049 3.12164 10.8998 2.61091 10.3891C2.10019 9.87834 1.69506 9.27203 1.41866 8.60474C1.14226 7.93745 1 7.22225 1 6.49998C1 5.04129 1.57946 3.64234 2.61091 2.61089C3.64236 1.57944 5.04131 0.999979 6.5 0.999979C7.95869 0.999979 9.35764 1.57944 10.3891 2.61089C11.4205 3.64234 12 5.04129 12 6.49998Z" fill="currentColor"/>
4
- </g>
5
- <defs>
6
- <clipPath id="clip0_85_4581">
7
- <rect width="16" height="16" fill="white"/>
8
- </clipPath>
9
- </defs>
10
- </svg>
@@ -1,11 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_936)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M34 34.0009C34 39.5237 29.5228 44.0009 24 44.0009C18.4772 44.0009 14 39.5237 14 34.0009C14 28.478 18.4772 24.0009 24 24.0009C29.5228 24.0009 34 28.478 34 34.0009ZM32.5 34.0009C32.5 38.6953 28.6944 42.5009 24 42.5009C22.6199 42.5009 21.3167 42.172 20.1643 41.5883C20.196 41.432 20.2499 41.284 20.3261 41.1444C20.4203 40.985 20.5978 40.9053 20.8587 40.9053C20.9674 40.9053 21.3949 41.0357 22.1413 41.2966C22.8949 41.5574 23.6159 41.6879 24.3043 41.6879C25.6739 41.6879 26.7971 41.2966 27.6739 40.5139C28.558 39.7313 29 38.7567 29 37.59C29 36.7205 28.7536 35.9668 28.2609 35.3292C27.7609 34.6987 26.8986 34.0067 25.6739 33.2531L23.7174 32.0466C22.9855 31.5973 22.4457 31.1661 22.0978 30.7531C21.75 30.3473 21.5761 29.8582 21.5761 29.2857C21.5761 28.648 21.8007 28.1516 22.25 27.7966C22.7065 27.4342 23.2391 27.2531 23.8478 27.2531C24.6304 27.2531 25.4203 27.5357 26.2174 28.1009C27.0217 28.6661 27.6051 29.6625 27.9674 31.09H28.5L28.0277 26.5138C30.6904 27.9493 32.5 30.7637 32.5 34.0009ZM27.5375 26.2697C26.4604 25.776 25.2624 25.5009 24 25.5009C19.3056 25.5009 15.5 29.3064 15.5 34.0009C15.5 37.0892 17.1471 39.7929 19.6107 41.2814L19 36.9161H19.5109C19.8877 37.9161 20.3297 38.7132 20.837 39.3074C21.721 40.3437 22.8188 40.8618 24.1304 40.8618C24.8406 40.8618 25.4529 40.6371 25.9674 40.1879C26.4891 39.7386 26.75 39.1118 26.75 38.3074C26.75 37.5828 26.4891 36.9524 25.9674 36.4161C25.6268 36.0755 24.9094 35.5647 23.8152 34.8835L21.913 33.6987C21.3406 33.3364 20.8841 32.9705 20.5435 32.6009C19.913 31.898 19.5978 31.1226 19.5978 30.2748C19.5978 29.1516 19.971 28.2168 20.7174 27.4705C21.4638 26.7241 22.4529 26.3509 23.6848 26.3509C24.192 26.3509 24.8007 26.4777 25.5109 26.7313C26.2283 26.9777 26.6377 27.1009 26.7391 27.1009C27.0145 27.1009 27.2029 27.0357 27.3043 26.9053C27.4029 26.7869 27.4807 26.5004 27.5375 26.2697Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M34.4409 10.5009L36.2132 8.72857L27.7279 0.243286L17.4704 10.5009H7.16065C6.44293 10.5009 5.78024 10.8854 5.42416 11.5086L0.263514 20.5397C0.0908306 20.8419 0 21.1839 0 21.532V46.0009C0 47.1054 0.895432 48.0009 2 48.0009H46C47.1046 48.0009 48 47.1054 48 46.0009V21.532C48 21.1839 47.9092 20.8419 47.7365 20.5397L42.5758 11.5086C42.2198 10.8854 41.5571 10.5009 40.8394 10.5009H34.4409ZM27.7279 2.36461L17.1213 12.9712L19.151 15.0009H27.8196L34.0919 8.72857L27.7279 2.36461ZM15 12.9712L17.0296 15.0009H12.75C12.3358 15.0009 12 15.3366 12 15.7509C12 16.1651 12.3358 16.5009 12.75 16.5009H35.25C35.6642 16.5009 36 16.1651 36 15.7509C36 15.3366 35.6642 15.0009 35.25 15.0009H29.9409L32.9409 12.0009H40.8394C41.0188 12.0009 41.1845 12.097 41.2735 12.2528L45.7009 20.0009H2.29905L6.72652 12.2528C6.81555 12.097 6.98122 12.0009 7.16065 12.0009H15.9704L15 12.9712ZM1.50097 21.5009C1.50032 21.5112 1.5 21.5216 1.5 21.532V46.0009C1.5 46.277 1.72386 46.5009 2 46.5009H46C46.2761 46.5009 46.5 46.277 46.5 46.0009V21.532C46.5 21.5216 46.4997 21.5112 46.499 21.5009H1.50097Z" fill="currentColor"/>
5
- </g>
6
- <defs>
7
- <clipPath id="clip0_100_936">
8
- <rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
9
- </clipPath>
10
- </defs>
11
- </svg>
@@ -1,4 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M22.0744 6.93752L22.0659 6.93294L22.0247 6.91107C21.987 6.8912 21.9297 6.86142 21.8567 6.82463C21.7099 6.75068 21.5036 6.65044 21.2678 6.54631C20.76 6.32214 20.2495 6.14075 19.9113 6.09169C19.1058 5.97486 18.108 6.22345 17.132 6.6833C16.4149 7.02122 15.8473 7.40699 15.5281 7.66008V11.4546C15.9537 11.8983 16.2167 12.5005 16.2167 13.1674V15.1253C16.2167 15.7923 15.9537 16.3944 15.5281 16.8381V44.2484L15.5283 44.3484C15.5295 44.8754 15.5315 45.7003 15.2667 46.3829C15.1008 46.8108 14.808 47.2605 14.3086 47.5831C13.8223 47.8972 13.28 48 12.7713 48C12.2625 48 11.7202 47.8972 11.2339 47.5831C10.7346 47.2605 10.4418 46.8108 10.2758 46.3829C10.011 45.7003 10.013 44.8754 10.0142 44.3484L10.0144 44.2484V16.8381C9.58887 16.3944 9.32587 15.7923 9.32587 15.1253V13.1674C9.32587 12.5238 9.57082 11.9405 9.97041 11.5017C9.95928 11.3224 9.95695 11.1435 9.95516 11.0062L9.9541 10.9301C9.94922 10.6234 9.94231 10.3098 9.91186 9.98954C9.8463 9.30003 9.69154 8.85111 9.48625 8.61504C9.36363 8.47402 9.18771 8.37615 8.63703 8.23633C8.59207 8.22492 8.53966 8.21255 8.48097 8.1987C8.00846 8.08719 7.12868 7.87957 6.45107 7.2997C4.78169 5.87112 4.38094 3.12044 6.16318 1.34671C6.87942 0.63389 7.78628 0.142629 8.8772 0.351814C9.72893 0.515137 10.4241 1.09183 10.8549 1.44924L10.8719 1.46332C11.0549 1.6151 11.3703 1.69506 11.7117 1.57795C12.8753 1.17882 14.523 0.670779 16.2383 0.33474C17.9707 -0.00467283 19.4474 -0.11926 21.4765 0.147483L21.5825 0.161343C22.2414 0.247253 23.3915 0.397213 24.5616 0.756698C25.7699 1.1279 27.2349 1.79005 28.1982 3.06474C28.9464 4.05483 28.9739 5.12381 28.9894 5.72402C28.9914 5.80111 28.9932 5.87047 28.9963 5.93093C29.0297 6.585 28.9059 7.30343 28.4157 7.88239C27.9186 8.46956 27.2585 8.66186 26.7509 8.70398C25.8274 8.78061 24.9061 8.41464 24.4485 8.19275C24.0255 7.98762 23.4227 7.66828 22.9439 7.41063C22.7005 7.27967 22.4822 7.16089 22.3248 7.07484L22.1381 6.97259L22.0871 6.94451L22.0744 6.93752ZM11.5144 44.2484V16.75H14.0281V44.2484C14.0281 45.4919 14.0207 46.5 12.7713 46.5C11.5218 46.5 11.5144 45.4919 11.5144 44.2484ZM14.0281 7.35367V11.5H11.4738C11.461 11.3606 11.4581 11.1738 11.4547 10.955C11.4403 10.0354 11.417 8.54941 10.6181 7.63074C10.1191 7.05689 9.45427 6.89269 8.81505 6.73482C8.30286 6.60832 7.80713 6.48589 7.42635 6.16003C6.33866 5.22924 6.13514 3.49088 7.2213 2.40991C8.26079 1.37538 8.94656 1.81528 9.91435 2.61791C10.5299 3.12846 11.4006 3.27045 12.1984 2.9968C13.3275 2.60952 14.9041 2.12464 16.5267 1.80676C18.1277 1.49308 19.4391 1.39255 21.281 1.63469L21.375 1.64701C22.7302 1.82421 25.6712 2.20877 27.0015 3.9691C27.442 4.55199 27.4636 5.12422 27.487 5.7423C27.4903 5.82969 27.4937 5.91809 27.4982 6.00747C27.5856 7.71829 25.8855 7.22251 25.103 6.84306C24.3205 6.46361 22.7932 5.62097 22.7932 5.62097C22.7932 5.62097 21.2297 4.76722 20.1266 4.60722C17.6753 4.25168 14.8648 6.13526 14.1944 6.84306C14.0991 6.94366 14.0281 7.11233 14.0281 7.35367Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M28.6233 21.7398C29.0319 21.6717 29.3079 21.2853 29.2398 20.8767C29.1717 20.4681 28.7853 20.1921 28.3767 20.2602L26.9803 20.4929C25.7301 20.7013 24.6704 21.5262 24.1596 22.6851L24.0784 22.8695C23.4765 24.2351 22.7765 25.8235 22.2184 27.1284C21.9674 27.7152 21.7432 28.249 21.5688 28.6817C21.2055 29.3747 21 30.1633 21 31C21 33.7614 23.2386 36 26 36C28.7614 36 31 33.7614 31 31C31 30.6389 30.9617 30.2868 30.889 29.9474C31.6121 29.7213 32.3879 29.7213 33.111 29.9475C33.0383 30.2868 33 30.6389 33 31C33 33.7614 35.2386 36 38 36C40.7614 36 43 33.7614 43 31C43 30.1633 42.7945 29.3747 42.4312 28.6817C42.2568 28.249 42.0326 27.7152 41.7816 27.1284C41.2235 25.8236 40.5235 24.2352 39.9217 22.8696L39.8404 22.6851C39.3296 21.5262 38.2699 20.7013 37.0197 20.4929L35.6233 20.2602C35.2147 20.1921 34.8283 20.4681 34.7602 20.8767C34.6921 21.2853 34.9681 21.6717 35.3767 21.7398L36.7731 21.9725C37.5236 22.0976 38.1605 22.5929 38.4677 23.29L38.5486 23.4734C38.9491 24.3822 39.391 25.3849 39.8051 26.3358C39.2452 26.1189 38.6365 26 38 26C36.1315 26 34.5023 27.025 33.6441 28.5434C32.577 28.1893 31.423 28.1893 30.3559 28.5433C29.4977 27.025 27.8685 26 26 26C25.3635 26 24.7548 26.1189 24.1949 26.3358C24.6091 25.3848 25.051 24.382 25.4515 23.4732L25.5323 23.29C25.8395 22.5929 26.4764 22.0976 27.2269 21.9725L28.6233 21.7398ZM41.1167 29.4346L41.071 29.3196C40.4763 28.2352 39.324 27.5 38 27.5C36.067 27.5 34.5 29.067 34.5 31C34.5 32.933 36.067 34.5 38 34.5C39.933 34.5 41.5 32.933 41.5 31C41.5 30.781 41.4799 30.5668 41.4414 30.359C41.3964 30.2765 41.3664 30.1847 41.3551 30.0872C41.3481 30.0618 41.3353 30.0208 41.3149 29.9611C41.2714 29.8342 41.2048 29.6573 41.1167 29.4346ZM22.5586 30.359C22.6036 30.2765 22.6336 30.1847 22.6449 30.0872C22.6519 30.0618 22.6647 30.0208 22.6851 29.9611C22.7286 29.8342 22.7952 29.6573 22.8833 29.4346L22.929 29.3196C23.5237 28.2352 24.676 27.5 26 27.5C27.933 27.5 29.5 29.067 29.5 31C29.5 32.933 27.933 34.5 26 34.5C24.067 34.5 22.5 32.933 22.5 31C22.5 30.781 22.5201 30.5668 22.5586 30.359Z" fill="currentColor"/>
4
- </svg>