@max-ts/components 0.0.2

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 (962) hide show
  1. package/.storybook/main.ts +26 -0
  2. package/.storybook/preview.ts +14 -0
  3. package/.turbo/turbo-build.log +508 -0
  4. package/.turbo/turbo-type$colon$check.log +760 -0
  5. package/CHANGELOG.md +7 -0
  6. package/dist/components/Accordion/Accordion.d.ts +39 -0
  7. package/dist/components/Accordion/index.d.ts +1 -0
  8. package/dist/components/Accordion/styles.d.ts +21 -0
  9. package/dist/components/ActionCell/ActionCell.d.ts +24 -0
  10. package/dist/components/ActionCell/MainAction/MainAction.d.ts +13 -0
  11. package/dist/components/ActionCell/MainAction/index.d.ts +1 -0
  12. package/dist/components/ActionCell/SecondaryAction/SecondaryActions.d.ts +13 -0
  13. package/dist/components/ActionCell/SecondaryAction/index.d.ts +1 -0
  14. package/dist/components/ActionCell/index.d.ts +1 -0
  15. package/dist/components/ActionCell/styles.d.ts +1 -0
  16. package/dist/components/ActionCell/types.d.ts +66 -0
  17. package/dist/components/ActionCell/useLogic/index.d.ts +1 -0
  18. package/dist/components/ActionCell/useLogic/useLogic.d.ts +11 -0
  19. package/dist/components/AsyncAutocomplete/AsyncAutocomplete.d.ts +61 -0
  20. package/dist/components/AsyncAutocomplete/constants.d.ts +4 -0
  21. package/dist/components/AsyncAutocomplete/index.d.ts +1 -0
  22. package/dist/components/AsyncAutocomplete/useLogic/index.d.ts +1 -0
  23. package/dist/components/AsyncAutocomplete/useLogic/useLogic.d.ts +12 -0
  24. package/dist/components/Autocomplete/Autocomplete.d.ts +47 -0
  25. package/dist/components/Autocomplete/constants.d.ts +2 -0
  26. package/dist/components/Autocomplete/enums.d.ts +4 -0
  27. package/dist/components/Autocomplete/index.d.ts +1 -0
  28. package/dist/components/Autocomplete/styles.d.ts +7 -0
  29. package/dist/components/Autocomplete/useLogic/index.d.ts +1 -0
  30. package/dist/components/Autocomplete/useLogic/useLogic.d.ts +15 -0
  31. package/dist/components/Autocomplete/useLogic/utils/checkIsInputEmpty/checkIsInputEmpty.d.ts +1 -0
  32. package/dist/components/Autocomplete/useLogic/utils/checkIsInputEmpty/index.d.ts +1 -0
  33. package/dist/components/Autocomplete/useLogic/utils/index.d.ts +1 -0
  34. package/dist/components/Badge/Badge.d.ts +18 -0
  35. package/dist/components/Badge/index.d.ts +2 -0
  36. package/dist/components/Badge/styles.d.ts +8 -0
  37. package/dist/components/Badge/types.d.ts +2 -0
  38. package/dist/components/BottomDrawer/BottomDrawer.d.ts +15 -0
  39. package/dist/components/BottomDrawer/constants.d.ts +2 -0
  40. package/dist/components/BottomDrawer/index.d.ts +1 -0
  41. package/dist/components/BottomDrawer/styles.d.ts +20 -0
  42. package/dist/components/Button/Button.d.ts +35 -0
  43. package/dist/components/Button/constants.d.ts +1 -0
  44. package/dist/components/Button/enums.d.ts +23 -0
  45. package/dist/components/Button/index.d.ts +4 -0
  46. package/dist/components/Button/styles.d.ts +5 -0
  47. package/dist/components/Button/types.d.ts +19 -0
  48. package/dist/components/Button/useLogic/index.d.ts +1 -0
  49. package/dist/components/Button/useLogic/useLogic.d.ts +5 -0
  50. package/dist/components/Checkbox/Checkbox.d.ts +9 -0
  51. package/dist/components/Checkbox/icons.d.ts +4 -0
  52. package/dist/components/Checkbox/index.d.ts +1 -0
  53. package/dist/components/Checkbox/styles.d.ts +5 -0
  54. package/dist/components/CheckboxField/CheckboxField.d.ts +24 -0
  55. package/dist/components/CheckboxField/index.d.ts +1 -0
  56. package/dist/components/CheckboxField/styles.d.ts +8 -0
  57. package/dist/components/Chevron/Chevron.d.ts +7 -0
  58. package/dist/components/Chevron/index.d.ts +1 -0
  59. package/dist/components/Chevron/styles.d.ts +5 -0
  60. package/dist/components/CircularProgress/CircularProgress.d.ts +19 -0
  61. package/dist/components/CircularProgress/constants.d.ts +8 -0
  62. package/dist/components/CircularProgress/index.d.ts +1 -0
  63. package/dist/components/CircularProgress/useLogic/index.d.ts +1 -0
  64. package/dist/components/CircularProgress/useLogic/useLogic.d.ts +6 -0
  65. package/dist/components/Collapse/Collapse.d.ts +4 -0
  66. package/dist/components/Collapse/index.d.ts +1 -0
  67. package/dist/components/ConfigProvider/ConfigProvider.d.ts +91 -0
  68. package/dist/components/ConfigProvider/index.d.ts +1 -0
  69. package/dist/components/ConfirmAction/ConfirmAction.d.ts +38 -0
  70. package/dist/components/ConfirmAction/constants.d.ts +8 -0
  71. package/dist/components/ConfirmAction/index.d.ts +1 -0
  72. package/dist/components/ConfirmAction/styles.d.ts +16 -0
  73. package/dist/components/ConfirmAction/useLogic/index.d.ts +1 -0
  74. package/dist/components/ConfirmAction/useLogic/useLogic.d.ts +22 -0
  75. package/dist/components/Container/Container.d.ts +8 -0
  76. package/dist/components/Container/index.d.ts +1 -0
  77. package/dist/components/Container/styles.d.ts +24 -0
  78. package/dist/components/ContentState/ContentState.d.ts +36 -0
  79. package/dist/components/ContentState/index.d.ts +2 -0
  80. package/dist/components/ContentState/styles.d.ts +1 -0
  81. package/dist/components/ContentState/types.d.ts +29 -0
  82. package/dist/components/CopyTypography/CopyTypography.d.ts +17 -0
  83. package/dist/components/CopyTypography/enums.d.ts +5 -0
  84. package/dist/components/CopyTypography/index.d.ts +1 -0
  85. package/dist/components/CopyTypography/styles.d.ts +17 -0
  86. package/dist/components/CopyTypography/useLogic/index.d.ts +1 -0
  87. package/dist/components/CopyTypography/useLogic/useLogic.d.ts +10 -0
  88. package/dist/components/DataGrid/Body/Body.d.ts +99 -0
  89. package/dist/components/DataGrid/Body/index.d.ts +1 -0
  90. package/dist/components/DataGrid/Body/styles.d.ts +4 -0
  91. package/dist/components/DataGrid/Body/useLogic/index.d.ts +1 -0
  92. package/dist/components/DataGrid/Body/useLogic/useLogic.d.ts +11 -0
  93. package/dist/components/DataGrid/Cell/Cell.d.ts +26 -0
  94. package/dist/components/DataGrid/Cell/index.d.ts +1 -0
  95. package/dist/components/DataGrid/Cell/styles.d.ts +8 -0
  96. package/dist/components/DataGrid/Cell/useLogic/index.d.ts +1 -0
  97. package/dist/components/DataGrid/Cell/useLogic/useLogic.d.ts +8 -0
  98. package/dist/components/DataGrid/DataGrid.d.ts +154 -0
  99. package/dist/components/DataGrid/DataGridContext/DataGridContext.d.ts +7 -0
  100. package/dist/components/DataGrid/DataGridContext/DataGridProvider/DataGridProvider.d.ts +6 -0
  101. package/dist/components/DataGrid/DataGridContext/DataGridProvider/index.d.ts +1 -0
  102. package/dist/components/DataGrid/DataGridContext/index.d.ts +2 -0
  103. package/dist/components/DataGrid/Head/Head.d.ts +37 -0
  104. package/dist/components/DataGrid/Head/index.d.ts +1 -0
  105. package/dist/components/DataGrid/Head/styles.d.ts +4 -0
  106. package/dist/components/DataGrid/Head/useLogic/index.d.ts +1 -0
  107. package/dist/components/DataGrid/Head/useLogic/useLogic.d.ts +12 -0
  108. package/dist/components/DataGrid/HeadCell/HeadCell.d.ts +18 -0
  109. package/dist/components/DataGrid/HeadCell/index.d.ts +1 -0
  110. package/dist/components/DataGrid/HeadCell/styles.d.ts +22 -0
  111. package/dist/components/DataGrid/HeadCell/useLogic/index.d.ts +1 -0
  112. package/dist/components/DataGrid/HeadCell/useLogic/useLogic.d.ts +10 -0
  113. package/dist/components/DataGrid/Loader/Loader.d.ts +6 -0
  114. package/dist/components/DataGrid/Loader/index.d.ts +1 -0
  115. package/dist/components/DataGrid/Loader/styles.d.ts +4 -0
  116. package/dist/components/DataGrid/NoData/NoData.d.ts +34 -0
  117. package/dist/components/DataGrid/NoData/index.d.ts +1 -0
  118. package/dist/components/DataGrid/Row/NestedChildren/NestedChildren.d.ts +55 -0
  119. package/dist/components/DataGrid/Row/NestedChildren/index.d.ts +1 -0
  120. package/dist/components/DataGrid/Row/NestedChildren/styles.d.ts +20 -0
  121. package/dist/components/DataGrid/Row/NestedChildren/useLogic/index.d.ts +1 -0
  122. package/dist/components/DataGrid/Row/NestedChildren/useLogic/useLogic.d.ts +18 -0
  123. package/dist/components/DataGrid/Row/Row.d.ts +91 -0
  124. package/dist/components/DataGrid/Row/RowContext/RowContext.d.ts +7 -0
  125. package/dist/components/DataGrid/Row/RowContext/RowProvider/RowProvider.d.ts +6 -0
  126. package/dist/components/DataGrid/Row/RowContext/RowProvider/index.d.ts +1 -0
  127. package/dist/components/DataGrid/Row/RowContext/index.d.ts +2 -0
  128. package/dist/components/DataGrid/Row/constants.d.ts +2 -0
  129. package/dist/components/DataGrid/Row/index.d.ts +2 -0
  130. package/dist/components/DataGrid/Row/styles.d.ts +31 -0
  131. package/dist/components/DataGrid/Row/useLogic/index.d.ts +1 -0
  132. package/dist/components/DataGrid/Row/useLogic/useLogic.d.ts +35 -0
  133. package/dist/components/DataGrid/Row/useLogic/utils/getColumnsMap/getColumnsMap.d.ts +4 -0
  134. package/dist/components/DataGrid/Row/useLogic/utils/getColumnsMap/index.d.ts +1 -0
  135. package/dist/components/DataGrid/Row/useLogic/utils/index.d.ts +2 -0
  136. package/dist/components/DataGrid/Row/useLogic/utils/mergeColumnsOptions/index.d.ts +1 -0
  137. package/dist/components/DataGrid/Row/useLogic/utils/mergeColumnsOptions/mergeColumnsOptions.d.ts +2 -0
  138. package/dist/components/DataGrid/Row/utils/checkIsDisabled/checkIsDisabled.d.ts +1 -0
  139. package/dist/components/DataGrid/Row/utils/checkIsDisabled/index.d.ts +1 -0
  140. package/dist/components/DataGrid/Row/utils/index.d.ts +1 -0
  141. package/dist/components/DataGrid/constants.d.ts +6 -0
  142. package/dist/components/DataGrid/enums.d.ts +8 -0
  143. package/dist/components/DataGrid/faker.d.ts +24 -0
  144. package/dist/components/DataGrid/index.d.ts +6 -0
  145. package/dist/components/DataGrid/styles.d.ts +5 -0
  146. package/dist/components/DataGrid/types.d.ts +91 -0
  147. package/dist/components/DataGrid/useLogic/index.d.ts +1 -0
  148. package/dist/components/DataGrid/useLogic/useLogic.d.ts +32 -0
  149. package/dist/components/DataGrid/useLogic/utils/getGridTemplateColumns/getGridTemplateColumns.d.ts +3 -0
  150. package/dist/components/DataGrid/useLogic/utils/getGridTemplateColumns/index.d.ts +1 -0
  151. package/dist/components/DataGrid/useLogic/utils/index.d.ts +1 -0
  152. package/dist/components/DataGrid/utils/alignToJustifyContent/alignToJustifyContent.d.ts +5 -0
  153. package/dist/components/DataGrid/utils/alignToJustifyContent/constants.d.ts +6 -0
  154. package/dist/components/DataGrid/utils/alignToJustifyContent/index.d.ts +1 -0
  155. package/dist/components/DataGrid/utils/index.d.ts +1 -0
  156. package/dist/components/DataGridActionCell/DataGridActionCell.d.ts +22 -0
  157. package/dist/components/DataGridActionCell/MainAction/MainAction.d.ts +22 -0
  158. package/dist/components/DataGridActionCell/MainAction/MainIconButton/MainIconButton.d.ts +19 -0
  159. package/dist/components/DataGridActionCell/MainAction/MainIconButton/index.d.ts +1 -0
  160. package/dist/components/DataGridActionCell/MainAction/MainIconButton/useLogic/index.d.ts +1 -0
  161. package/dist/components/DataGridActionCell/MainAction/MainIconButton/useLogic/useLogic.d.ts +11 -0
  162. package/dist/components/DataGridActionCell/MainAction/index.d.ts +1 -0
  163. package/dist/components/DataGridActionCell/SecondaryAction/SecondaryAction.d.ts +22 -0
  164. package/dist/components/DataGridActionCell/SecondaryAction/index.d.ts +1 -0
  165. package/dist/components/DataGridActionCell/index.d.ts +1 -0
  166. package/dist/components/DataGridActionCell/styles.d.ts +1 -0
  167. package/dist/components/DataGridActionCell/types.d.ts +98 -0
  168. package/dist/components/DataGridActionCell/useLogic/index.d.ts +1 -0
  169. package/dist/components/DataGridActionCell/useLogic/useLogic.d.ts +10 -0
  170. package/dist/components/DataGridOld/Body/Body.d.ts +13 -0
  171. package/dist/components/DataGridOld/Body/index.d.ts +1 -0
  172. package/dist/components/DataGridOld/Body/styles.d.ts +1 -0
  173. package/dist/components/DataGridOld/Cell/Cell.d.ts +7 -0
  174. package/dist/components/DataGridOld/Cell/index.d.ts +1 -0
  175. package/dist/components/DataGridOld/Cell/styles.d.ts +4 -0
  176. package/dist/components/DataGridOld/DataGridOld.d.ts +20 -0
  177. package/dist/components/DataGridOld/Head/Head.d.ts +7 -0
  178. package/dist/components/DataGridOld/Head/index.d.ts +1 -0
  179. package/dist/components/DataGridOld/Head/styles.d.ts +4 -0
  180. package/dist/components/DataGridOld/HeadCell/HeadCell.d.ts +5 -0
  181. package/dist/components/DataGridOld/HeadCell/index.d.ts +1 -0
  182. package/dist/components/DataGridOld/HeadCell/styles.d.ts +3 -0
  183. package/dist/components/DataGridOld/Row/Row.d.ts +11 -0
  184. package/dist/components/DataGridOld/Row/index.d.ts +1 -0
  185. package/dist/components/DataGridOld/Row/styles.d.ts +5 -0
  186. package/dist/components/DataGridOld/State/State.d.ts +6 -0
  187. package/dist/components/DataGridOld/State/index.d.ts +1 -0
  188. package/dist/components/DataGridOld/State/styles.d.ts +1 -0
  189. package/dist/components/DataGridOld/constants.d.ts +1 -0
  190. package/dist/components/DataGridOld/index.d.ts +2 -0
  191. package/dist/components/DataGridOld/styles.d.ts +7 -0
  192. package/dist/components/DataGridOld/types.d.ts +15 -0
  193. package/dist/components/DataGridPagination/DataGridPagination.d.ts +25 -0
  194. package/dist/components/DataGridPagination/constants.d.ts +2 -0
  195. package/dist/components/DataGridPagination/faker.d.ts +3 -0
  196. package/dist/components/DataGridPagination/index.d.ts +1 -0
  197. package/dist/components/DataGridPagination/styles.d.ts +16 -0
  198. package/dist/components/DataGridPagination/useLogic/index.d.ts +1 -0
  199. package/dist/components/DataGridPagination/useLogic/useLogic.d.ts +10 -0
  200. package/dist/components/Description/Description.d.ts +34 -0
  201. package/dist/components/Description/DescriptionContext/DescriptionContext.d.ts +6 -0
  202. package/dist/components/Description/DescriptionContext/DescriptionContextProvider/DescriptionContextProvider.d.ts +7 -0
  203. package/dist/components/Description/DescriptionContext/DescriptionContextProvider/index.d.ts +1 -0
  204. package/dist/components/Description/DescriptionContext/index.d.ts +2 -0
  205. package/dist/components/Description/Name/Name.d.ts +3 -0
  206. package/dist/components/Description/Name/index.d.ts +1 -0
  207. package/dist/components/Description/Name/styles.d.ts +6 -0
  208. package/dist/components/Description/Value/Value.d.ts +22 -0
  209. package/dist/components/Description/Value/index.d.ts +1 -0
  210. package/dist/components/Description/Value/styles.d.ts +43 -0
  211. package/dist/components/Description/Value/useLogic/index.d.ts +1 -0
  212. package/dist/components/Description/Value/useLogic/useLogic.d.ts +9 -0
  213. package/dist/components/Description/constants.d.ts +3 -0
  214. package/dist/components/Description/index.d.ts +2 -0
  215. package/dist/components/Description/styles.d.ts +4 -0
  216. package/dist/components/Description/useLogic/index.d.ts +1 -0
  217. package/dist/components/Description/useLogic/useLogic.d.ts +9 -0
  218. package/dist/components/DescriptionList/DescriptionList.d.ts +2 -0
  219. package/dist/components/DescriptionList/index.d.ts +2 -0
  220. package/dist/components/DescriptionList/styles.d.ts +22 -0
  221. package/dist/components/DescriptionList/types.d.ts +32 -0
  222. package/dist/components/DescriptionList/utils/getTooltipProps/getTooltipProps.d.ts +3 -0
  223. package/dist/components/DescriptionList/utils/getTooltipProps/index.d.ts +1 -0
  224. package/dist/components/DescriptionList/utils/index.d.ts +1 -0
  225. package/dist/components/Dialog/Dialog.d.ts +20 -0
  226. package/dist/components/Dialog/constants.d.ts +22 -0
  227. package/dist/components/Dialog/index.d.ts +1 -0
  228. package/dist/components/Dialog/styles.d.ts +5 -0
  229. package/dist/components/DialogActions/DialogActions.d.ts +4 -0
  230. package/dist/components/DialogActions/index.d.ts +1 -0
  231. package/dist/components/DialogActions/styles.d.ts +6 -0
  232. package/dist/components/DialogContent/DialogContent.d.ts +4 -0
  233. package/dist/components/DialogContent/index.d.ts +1 -0
  234. package/dist/components/DialogContent/styles.d.ts +2 -0
  235. package/dist/components/DialogContentText/DialogContentText.d.ts +4 -0
  236. package/dist/components/DialogContentText/index.d.ts +1 -0
  237. package/dist/components/DialogContentText/styles.d.ts +1 -0
  238. package/dist/components/DialogHeader/DialogHeader.d.ts +17 -0
  239. package/dist/components/DialogHeader/index.d.ts +1 -0
  240. package/dist/components/DialogHeader/styles.d.ts +18 -0
  241. package/dist/components/DialogTitle/DialogTitle.d.ts +6 -0
  242. package/dist/components/DialogTitle/index.d.ts +1 -0
  243. package/dist/components/Divider/Divider.d.ts +4 -0
  244. package/dist/components/Divider/index.d.ts +1 -0
  245. package/dist/components/ErrorBoundary/ErrorBoundary.d.ts +36 -0
  246. package/dist/components/ErrorBoundary/ErrorBoundary.stubs.d.ts +12 -0
  247. package/dist/components/ErrorBoundary/constants.d.ts +9 -0
  248. package/dist/components/ErrorBoundary/enums.d.ts +9 -0
  249. package/dist/components/ErrorBoundary/index.d.ts +1 -0
  250. package/dist/components/FormControl/FormControl.d.ts +4 -0
  251. package/dist/components/FormControl/index.d.ts +1 -0
  252. package/dist/components/FormControlLabel/FormControlLabel.d.ts +2 -0
  253. package/dist/components/FormControlLabel/index.d.ts +2 -0
  254. package/dist/components/FormControlLabel/styles.d.ts +2 -0
  255. package/dist/components/FormControlLabel/types.d.ts +3 -0
  256. package/dist/components/FormHelperText/FormHelperText.d.ts +7 -0
  257. package/dist/components/FormHelperText/FormHelperTextContent/FormHelperTextContent.d.ts +7 -0
  258. package/dist/components/FormHelperText/FormHelperTextContent/index.d.ts +1 -0
  259. package/dist/components/FormHelperText/FormHelperTextContent/styles.d.ts +9 -0
  260. package/dist/components/FormHelperText/index.d.ts +2 -0
  261. package/dist/components/GuidTypography/GuidTypography.d.ts +3 -0
  262. package/dist/components/GuidTypography/index.d.ts +1 -0
  263. package/dist/components/IconButton/IconButton.d.ts +9 -0
  264. package/dist/components/IconButton/index.d.ts +1 -0
  265. package/dist/components/IconButton/styles.d.ts +23 -0
  266. package/dist/components/IconDropdownButton/IconDropdownButton.d.ts +9 -0
  267. package/dist/components/IconDropdownButton/index.d.ts +1 -0
  268. package/dist/components/InternalErrorPlaceholder/InternalErrorPlaceholder.d.ts +1 -0
  269. package/dist/components/InternalErrorPlaceholder/index.d.ts +1 -0
  270. package/dist/components/Link/Link.d.ts +24 -0
  271. package/dist/components/Link/index.d.ts +1 -0
  272. package/dist/components/Link/styles.d.ts +1 -0
  273. package/dist/components/List/List.d.ts +4 -0
  274. package/dist/components/List/index.d.ts +1 -0
  275. package/dist/components/ListItem/ListItem.d.ts +4 -0
  276. package/dist/components/ListItem/index.d.ts +1 -0
  277. package/dist/components/ListItemButton/ListItemButton.d.ts +21 -0
  278. package/dist/components/ListItemButton/constants.d.ts +5 -0
  279. package/dist/components/ListItemButton/index.d.ts +1 -0
  280. package/dist/components/ListItemIcon/ListItemIcon.d.ts +5 -0
  281. package/dist/components/ListItemIcon/index.d.ts +1 -0
  282. package/dist/components/ListItemIcon/styles.d.ts +1 -0
  283. package/dist/components/ListItemText/ListItemText.d.ts +4 -0
  284. package/dist/components/ListItemText/index.d.ts +1 -0
  285. package/dist/components/ListSubheader/ListSubheader.d.ts +4 -0
  286. package/dist/components/ListSubheader/index.d.ts +1 -0
  287. package/dist/components/Menu/Menu.d.ts +9 -0
  288. package/dist/components/Menu/index.d.ts +1 -0
  289. package/dist/components/MenuItem/MenuItem.d.ts +28 -0
  290. package/dist/components/MenuItem/index.d.ts +1 -0
  291. package/dist/components/MenuList/MenuList.d.ts +2 -0
  292. package/dist/components/MenuList/index.d.ts +2 -0
  293. package/dist/components/MenuList/styles.d.ts +1 -0
  294. package/dist/components/MenuList/types.d.ts +3 -0
  295. package/dist/components/NavMenu/Item/Item.d.ts +16 -0
  296. package/dist/components/NavMenu/Item/ItemButton/ItemButton.d.ts +11 -0
  297. package/dist/components/NavMenu/Item/ItemButton/index.d.ts +1 -0
  298. package/dist/components/NavMenu/Item/ItemButton/styles.d.ts +639 -0
  299. package/dist/components/NavMenu/Item/List/List.d.ts +13 -0
  300. package/dist/components/NavMenu/Item/List/index.d.ts +1 -0
  301. package/dist/components/NavMenu/Item/index.d.ts +1 -0
  302. package/dist/components/NavMenu/NavMenu.d.ts +15 -0
  303. package/dist/components/NavMenu/index.d.ts +1 -0
  304. package/dist/components/OutdatedReleasePlaceholder/OutdatedReleasePlaceholder.d.ts +1 -0
  305. package/dist/components/OutdatedReleasePlaceholder/index.d.ts +1 -0
  306. package/dist/components/OverflowTypography/OverflowTypography.d.ts +35 -0
  307. package/dist/components/OverflowTypography/hooks/index.d.ts +1 -0
  308. package/dist/components/OverflowTypography/hooks/useOverflowed/index.d.ts +1 -0
  309. package/dist/components/OverflowTypography/hooks/useOverflowed/useOverflowed.d.ts +5 -0
  310. package/dist/components/OverflowTypography/index.d.ts +1 -0
  311. package/dist/components/OverflowTypography/styles.d.ts +35 -0
  312. package/dist/components/OverflowTypography/useLogic/index.d.ts +1 -0
  313. package/dist/components/OverflowTypography/useLogic/useLogic.d.ts +8 -0
  314. package/dist/components/OverflowTypography/utils/index.d.ts +1 -0
  315. package/dist/components/OverflowTypography/utils/truncateString/index.d.ts +1 -0
  316. package/dist/components/OverflowTypography/utils/truncateString/truncateString.d.ts +4 -0
  317. package/dist/components/Pagination/Pagination.d.ts +2 -0
  318. package/dist/components/Pagination/index.d.ts +2 -0
  319. package/dist/components/Pagination/types.d.ts +3 -0
  320. package/dist/components/Paper/Paper.d.ts +14 -0
  321. package/dist/components/Paper/index.d.ts +1 -0
  322. package/dist/components/Placeholder/Image/Image.d.ts +21 -0
  323. package/dist/components/Placeholder/Image/index.d.ts +1 -0
  324. package/dist/components/Placeholder/Image/styles.d.ts +4 -0
  325. package/dist/components/Placeholder/Placeholder.d.ts +45 -0
  326. package/dist/components/Placeholder/constants.d.ts +14 -0
  327. package/dist/components/Placeholder/index.d.ts +3 -0
  328. package/dist/components/Placeholder/styles.d.ts +35 -0
  329. package/dist/components/Placeholder/types.d.ts +1 -0
  330. package/dist/components/Popover/Popover.d.ts +9 -0
  331. package/dist/components/Popover/index.d.ts +1 -0
  332. package/dist/components/SearchField/SearchField.d.ts +3 -0
  333. package/dist/components/SearchField/index.d.ts +1 -0
  334. package/dist/components/SearchField/styles.d.ts +22 -0
  335. package/dist/components/Select/Select.d.ts +25 -0
  336. package/dist/components/Select/constants.d.ts +1 -0
  337. package/dist/components/Select/index.d.ts +1 -0
  338. package/dist/components/Select/styles.d.ts +23 -0
  339. package/dist/components/Select/useLogic/index.d.ts +1 -0
  340. package/dist/components/Select/useLogic/useLogic.d.ts +10 -0
  341. package/dist/components/Tag/Tag.d.ts +36 -0
  342. package/dist/components/Tag/enums.d.ts +18 -0
  343. package/dist/components/Tag/index.d.ts +2 -0
  344. package/dist/components/Tag/styles.d.ts +27 -0
  345. package/dist/components/Tag/types.d.ts +5 -0
  346. package/dist/components/TagBadge/TagBadge.d.ts +23 -0
  347. package/dist/components/TagBadge/index.d.ts +1 -0
  348. package/dist/components/TagBadge/styles.d.ts +5 -0
  349. package/dist/components/TagBadge/utils/getCheckableTagBadgeBgColor/getCheckableTagBadgeBgColor.d.ts +15 -0
  350. package/dist/components/TagBadge/utils/getCheckableTagBadgeBgColor/index.d.ts +1 -0
  351. package/dist/components/TagBadge/utils/index.d.ts +1 -0
  352. package/dist/components/TagsList/Tag/Tag.d.ts +25 -0
  353. package/dist/components/TagsList/Tag/index.d.ts +1 -0
  354. package/dist/components/TagsList/Tag/styles.d.ts +11 -0
  355. package/dist/components/TagsList/Tag/useLogic/index.d.ts +1 -0
  356. package/dist/components/TagsList/Tag/useLogic/useLogic.d.ts +4 -0
  357. package/dist/components/TagsList/TagsList.d.ts +34 -0
  358. package/dist/components/TagsList/index.d.ts +2 -0
  359. package/dist/components/TagsList/styles.d.ts +1 -0
  360. package/dist/components/TagsList/types.d.ts +1 -0
  361. package/dist/components/TagsList/useLogic/index.d.ts +1 -0
  362. package/dist/components/TagsList/useLogic/useLogic.d.ts +14 -0
  363. package/dist/components/TagsList/utils/getElementByText/getElementByText.d.ts +4 -0
  364. package/dist/components/TagsList/utils/getElementByText/index.d.ts +1 -0
  365. package/dist/components/TagsList/utils/getKey/getKey.d.ts +2 -0
  366. package/dist/components/TagsList/utils/getKey/index.d.ts +1 -0
  367. package/dist/components/TagsList/utils/index.d.ts +2 -0
  368. package/dist/components/TextField/TextField.d.ts +28 -0
  369. package/dist/components/TextField/index.d.ts +1 -0
  370. package/dist/components/Tooltip/Tooltip.d.ts +16 -0
  371. package/dist/components/Tooltip/constants.d.ts +4 -0
  372. package/dist/components/Tooltip/index.d.ts +2 -0
  373. package/dist/components/Tooltip/styles.d.ts +7 -0
  374. package/dist/components/Tooltip/types.d.ts +2 -0
  375. package/dist/components/Typography/Typography.d.ts +48 -0
  376. package/dist/components/Typography/enums.d.ts +14 -0
  377. package/dist/components/Typography/hooks/index.d.ts +1 -0
  378. package/dist/components/Typography/hooks/useTypographyColor/index.d.ts +1 -0
  379. package/dist/components/Typography/hooks/useTypographyColor/useTypographyColor.d.ts +16 -0
  380. package/dist/components/Typography/index.d.ts +2 -0
  381. package/dist/components/Typography/styles.d.ts +2 -0
  382. package/dist/components/Typography/types.d.ts +4 -0
  383. package/dist/components/index.d.ts +62 -0
  384. package/dist/components/types.d.ts +1 -0
  385. package/dist/hooks/index.d.ts +3 -0
  386. package/dist/hooks/useMenu/index.d.ts +1 -0
  387. package/dist/hooks/useMenu/useMenu.d.ts +21 -0
  388. package/dist/hooks/usePopover/index.d.ts +1 -0
  389. package/dist/hooks/usePopover/usePopover.d.ts +11 -0
  390. package/dist/hooks/useViewportType/index.d.ts +1 -0
  391. package/dist/hooks/useViewportType/useViewportType.d.ts +5 -0
  392. package/dist/index.d.ts +3 -0
  393. package/dist/index.js +1080 -0
  394. package/dist/index.mjs +1080 -0
  395. package/dist/theme/baseTheme/baseTheme.d.ts +9 -0
  396. package/dist/theme/baseTheme/index.d.ts +1 -0
  397. package/dist/theme/breakpoints.d.ts +2 -0
  398. package/dist/theme/components/MuiAlert.d.ts +3 -0
  399. package/dist/theme/components/MuiAutocomplete.d.ts +3 -0
  400. package/dist/theme/components/MuiButton.d.ts +32 -0
  401. package/dist/theme/components/MuiButtonBase.d.ts +3 -0
  402. package/dist/theme/components/MuiCircularProgress.d.ts +4 -0
  403. package/dist/theme/components/MuiDialog.d.ts +3 -0
  404. package/dist/theme/components/MuiDialogActions.d.ts +3 -0
  405. package/dist/theme/components/MuiDialogContent.d.ts +3 -0
  406. package/dist/theme/components/MuiDialogTitle.d.ts +3 -0
  407. package/dist/theme/components/MuiDrawer.d.ts +3 -0
  408. package/dist/theme/components/MuiFormHelperText.d.ts +4 -0
  409. package/dist/theme/components/MuiFormLabel.d.ts +4 -0
  410. package/dist/theme/components/MuiInputLabel.d.ts +4 -0
  411. package/dist/theme/components/MuiLinearProgress.d.ts +4 -0
  412. package/dist/theme/components/MuiListItemButton.d.ts +3 -0
  413. package/dist/theme/components/MuiListItemText.d.ts +3 -0
  414. package/dist/theme/components/MuiMenu.d.ts +4 -0
  415. package/dist/theme/components/MuiMenuItem.d.ts +4 -0
  416. package/dist/theme/components/MuiOutlinedInput.d.ts +4 -0
  417. package/dist/theme/components/MuiPaginationItem.d.ts +3 -0
  418. package/dist/theme/components/MuiPaper.d.ts +3 -0
  419. package/dist/theme/components/MuiStep.d.ts +3 -0
  420. package/dist/theme/components/MuiStepConnector.d.ts +3 -0
  421. package/dist/theme/components/MuiStepLabel.d.ts +3 -0
  422. package/dist/theme/components/MuiSwitch.d.ts +3 -0
  423. package/dist/theme/components/MuiTab.d.ts +3 -0
  424. package/dist/theme/components/MuiTableCell.d.ts +3 -0
  425. package/dist/theme/components/MuiTableHead.d.ts +3 -0
  426. package/dist/theme/components/MuiTableRow.d.ts +3 -0
  427. package/dist/theme/components/MuiTabs.d.ts +3 -0
  428. package/dist/theme/components/MuiTextField.d.ts +3 -0
  429. package/dist/theme/components/MuiToggleButton.d.ts +3 -0
  430. package/dist/theme/components/MuiToggleButtonGroup.d.ts +3 -0
  431. package/dist/theme/components/MuiTypography.d.ts +21 -0
  432. package/dist/theme/components/components.d.ts +21 -0
  433. package/dist/theme/components/index.d.ts +1 -0
  434. package/dist/theme/constants.d.ts +1 -0
  435. package/dist/theme/elevation.d.ts +8 -0
  436. package/dist/theme/hooks/index.d.ts +1 -0
  437. package/dist/theme/hooks/useTheme/index.d.ts +2 -0
  438. package/dist/theme/index.d.ts +7 -0
  439. package/dist/theme/palette/componentsColors/componentsColors.d.ts +5 -0
  440. package/dist/theme/palette/componentsColors/index.d.ts +1 -0
  441. package/dist/theme/palette/componentsColors/linkColors/index.d.ts +1 -0
  442. package/dist/theme/palette/componentsColors/linkColors/linkColors.d.ts +7 -0
  443. package/dist/theme/palette/index.d.ts +3 -0
  444. package/dist/theme/palette/palette.d.ts +2 -0
  445. package/dist/theme/palette/types.d.ts +44 -0
  446. package/dist/theme/shape.d.ts +6 -0
  447. package/dist/theme/types.d.ts +21 -0
  448. package/dist/theme/typography.d.ts +153 -0
  449. package/package.json +47 -0
  450. package/rslib.config.ts +32 -0
  451. package/src/components/Accordion/Accordion.stories.tsx +126 -0
  452. package/src/components/Accordion/Accordion.tsx +80 -0
  453. package/src/components/Accordion/index.ts +1 -0
  454. package/src/components/Accordion/styles.ts +30 -0
  455. package/src/components/ActionCell/ActionCell.stories.tsx +226 -0
  456. package/src/components/ActionCell/ActionCell.tsx +71 -0
  457. package/src/components/ActionCell/MainAction/MainAction.tsx +85 -0
  458. package/src/components/ActionCell/MainAction/index.ts +1 -0
  459. package/src/components/ActionCell/SecondaryAction/SecondaryActions.tsx +45 -0
  460. package/src/components/ActionCell/SecondaryAction/index.ts +1 -0
  461. package/src/components/ActionCell/index.ts +1 -0
  462. package/src/components/ActionCell/styles.ts +6 -0
  463. package/src/components/ActionCell/types.ts +89 -0
  464. package/src/components/ActionCell/useLogic/index.ts +1 -0
  465. package/src/components/ActionCell/useLogic/useLogic.ts +46 -0
  466. package/src/components/AsyncAutocomplete/AsyncAutocomplete.stories.tsx +244 -0
  467. package/src/components/AsyncAutocomplete/AsyncAutocomplete.tsx +139 -0
  468. package/src/components/AsyncAutocomplete/constants.ts +7 -0
  469. package/src/components/AsyncAutocomplete/index.ts +1 -0
  470. package/src/components/AsyncAutocomplete/useLogic/index.ts +1 -0
  471. package/src/components/AsyncAutocomplete/useLogic/useLogic.ts +117 -0
  472. package/src/components/Autocomplete/Autocomplete.stories.tsx +275 -0
  473. package/src/components/Autocomplete/Autocomplete.tsx +301 -0
  474. package/src/components/Autocomplete/constants.ts +3 -0
  475. package/src/components/Autocomplete/enums.ts +4 -0
  476. package/src/components/Autocomplete/index.ts +1 -0
  477. package/src/components/Autocomplete/styles.ts +10 -0
  478. package/src/components/Autocomplete/useLogic/index.ts +1 -0
  479. package/src/components/Autocomplete/useLogic/useLogic.ts +88 -0
  480. package/src/components/Autocomplete/useLogic/utils/checkIsInputEmpty/checkIsInputEmpty.ts +8 -0
  481. package/src/components/Autocomplete/useLogic/utils/checkIsInputEmpty/index.ts +1 -0
  482. package/src/components/Autocomplete/useLogic/utils/index.ts +1 -0
  483. package/src/components/Badge/Badge.stories.tsx +189 -0
  484. package/src/components/Badge/Badge.tsx +43 -0
  485. package/src/components/Badge/index.ts +3 -0
  486. package/src/components/Badge/styles.ts +104 -0
  487. package/src/components/Badge/types.ts +9 -0
  488. package/src/components/BottomDrawer/BottomDrawer.stories.tsx +104 -0
  489. package/src/components/BottomDrawer/BottomDrawer.tsx +52 -0
  490. package/src/components/BottomDrawer/constants.ts +3 -0
  491. package/src/components/BottomDrawer/index.ts +1 -0
  492. package/src/components/BottomDrawer/styles.ts +44 -0
  493. package/src/components/Button/Button.stories.tsx +203 -0
  494. package/src/components/Button/Button.tsx +85 -0
  495. package/src/components/Button/constants.ts +1 -0
  496. package/src/components/Button/enums.ts +26 -0
  497. package/src/components/Button/index.ts +7 -0
  498. package/src/components/Button/styles.ts +19 -0
  499. package/src/components/Button/types.ts +30 -0
  500. package/src/components/Button/useLogic/index.ts +1 -0
  501. package/src/components/Button/useLogic/useLogic.ts +22 -0
  502. package/src/components/Checkbox/Checkbox.stories.tsx +154 -0
  503. package/src/components/Checkbox/Checkbox.tsx +39 -0
  504. package/src/components/Checkbox/icons.tsx +41 -0
  505. package/src/components/Checkbox/index.ts +1 -0
  506. package/src/components/Checkbox/styles.ts +70 -0
  507. package/src/components/CheckboxField/CheckboxField.stories.tsx +50 -0
  508. package/src/components/CheckboxField/CheckboxField.tsx +64 -0
  509. package/src/components/CheckboxField/index.ts +1 -0
  510. package/src/components/CheckboxField/styles.ts +17 -0
  511. package/src/components/Chevron/Chevron.stories.tsx +35 -0
  512. package/src/components/Chevron/Chevron.tsx +12 -0
  513. package/src/components/Chevron/index.ts +1 -0
  514. package/src/components/Chevron/styles.tsx +17 -0
  515. package/src/components/CircularProgress/CircularProgress.stories.tsx +52 -0
  516. package/src/components/CircularProgress/CircularProgress.tsx +42 -0
  517. package/src/components/CircularProgress/constants.ts +9 -0
  518. package/src/components/CircularProgress/index.ts +1 -0
  519. package/src/components/CircularProgress/useLogic/index.ts +1 -0
  520. package/src/components/CircularProgress/useLogic/useLogic.ts +9 -0
  521. package/src/components/Collapse/Collapse.stories.tsx +68 -0
  522. package/src/components/Collapse/Collapse.tsx +10 -0
  523. package/src/components/Collapse/index.ts +1 -0
  524. package/src/components/ConfigProvider/ConfigProvider.tsx +165 -0
  525. package/src/components/ConfigProvider/index.ts +1 -0
  526. package/src/components/ConfirmAction/ConfirmAction.stories.tsx +118 -0
  527. package/src/components/ConfirmAction/ConfirmAction.tsx +97 -0
  528. package/src/components/ConfirmAction/constants.ts +9 -0
  529. package/src/components/ConfirmAction/index.ts +1 -0
  530. package/src/components/ConfirmAction/styles.ts +17 -0
  531. package/src/components/ConfirmAction/useLogic/index.ts +1 -0
  532. package/src/components/ConfirmAction/useLogic/useLogic.ts +46 -0
  533. package/src/components/Container/Container.tsx +15 -0
  534. package/src/components/Container/index.ts +1 -0
  535. package/src/components/Container/styles.ts +76 -0
  536. package/src/components/ContentState/ContentState.stories.tsx +243 -0
  537. package/src/components/ContentState/ContentState.tsx +90 -0
  538. package/src/components/ContentState/index.ts +3 -0
  539. package/src/components/ContentState/styles.ts +11 -0
  540. package/src/components/ContentState/types.ts +30 -0
  541. package/src/components/CopyTypography/CopyTypography.stories.tsx +95 -0
  542. package/src/components/CopyTypography/CopyTypography.tsx +55 -0
  543. package/src/components/CopyTypography/enums.ts +5 -0
  544. package/src/components/CopyTypography/index.ts +1 -0
  545. package/src/components/CopyTypography/styles.ts +28 -0
  546. package/src/components/CopyTypography/useLogic/index.ts +1 -0
  547. package/src/components/CopyTypography/useLogic/useLogic.ts +38 -0
  548. package/src/components/DataGrid/Body/Body.tsx +185 -0
  549. package/src/components/DataGrid/Body/index.ts +1 -0
  550. package/src/components/DataGrid/Body/styles.tsx +16 -0
  551. package/src/components/DataGrid/Body/useLogic/index.ts +1 -0
  552. package/src/components/DataGrid/Body/useLogic/useLogic.ts +20 -0
  553. package/src/components/DataGrid/Cell/Cell.tsx +63 -0
  554. package/src/components/DataGrid/Cell/index.ts +1 -0
  555. package/src/components/DataGrid/Cell/styles.ts +26 -0
  556. package/src/components/DataGrid/Cell/useLogic/index.ts +1 -0
  557. package/src/components/DataGrid/Cell/useLogic/useLogic.ts +35 -0
  558. package/src/components/DataGrid/DataGrid.stories.tsx +1882 -0
  559. package/src/components/DataGrid/DataGrid.tsx +307 -0
  560. package/src/components/DataGrid/DataGridContext/DataGridContext.ts +15 -0
  561. package/src/components/DataGrid/DataGridContext/DataGridProvider/DataGridProvider.tsx +83 -0
  562. package/src/components/DataGrid/DataGridContext/DataGridProvider/index.ts +1 -0
  563. package/src/components/DataGrid/DataGridContext/index.ts +3 -0
  564. package/src/components/DataGrid/Head/Head.tsx +110 -0
  565. package/src/components/DataGrid/Head/index.ts +1 -0
  566. package/src/components/DataGrid/Head/styles.ts +21 -0
  567. package/src/components/DataGrid/Head/useLogic/index.ts +1 -0
  568. package/src/components/DataGrid/Head/useLogic/useLogic.tsx +65 -0
  569. package/src/components/DataGrid/HeadCell/HeadCell.tsx +68 -0
  570. package/src/components/DataGrid/HeadCell/index.ts +1 -0
  571. package/src/components/DataGrid/HeadCell/styles.ts +39 -0
  572. package/src/components/DataGrid/HeadCell/useLogic/index.ts +1 -0
  573. package/src/components/DataGrid/HeadCell/useLogic/useLogic.ts +29 -0
  574. package/src/components/DataGrid/Loader/Loader.tsx +26 -0
  575. package/src/components/DataGrid/Loader/index.ts +1 -0
  576. package/src/components/DataGrid/Loader/styles.ts +26 -0
  577. package/src/components/DataGrid/NoData/NoData.tsx +65 -0
  578. package/src/components/DataGrid/NoData/index.ts +1 -0
  579. package/src/components/DataGrid/Row/NestedChildren/NestedChildren.tsx +158 -0
  580. package/src/components/DataGrid/Row/NestedChildren/index.ts +1 -0
  581. package/src/components/DataGrid/Row/NestedChildren/styles.ts +80 -0
  582. package/src/components/DataGrid/Row/NestedChildren/useLogic/index.ts +1 -0
  583. package/src/components/DataGrid/Row/NestedChildren/useLogic/useLogic.ts +44 -0
  584. package/src/components/DataGrid/Row/Row.tsx +307 -0
  585. package/src/components/DataGrid/Row/RowContext/RowContext.ts +14 -0
  586. package/src/components/DataGrid/Row/RowContext/RowProvider/RowProvider.tsx +35 -0
  587. package/src/components/DataGrid/Row/RowContext/RowProvider/index.ts +1 -0
  588. package/src/components/DataGrid/Row/RowContext/index.ts +3 -0
  589. package/src/components/DataGrid/Row/constants.ts +3 -0
  590. package/src/components/DataGrid/Row/index.ts +3 -0
  591. package/src/components/DataGrid/Row/styles.ts +124 -0
  592. package/src/components/DataGrid/Row/useLogic/index.ts +1 -0
  593. package/src/components/DataGrid/Row/useLogic/useLogic.ts +144 -0
  594. package/src/components/DataGrid/Row/useLogic/utils/getColumnsMap/getColumnsMap.ts +20 -0
  595. package/src/components/DataGrid/Row/useLogic/utils/getColumnsMap/index.ts +1 -0
  596. package/src/components/DataGrid/Row/useLogic/utils/index.ts +3 -0
  597. package/src/components/DataGrid/Row/useLogic/utils/mergeColumnsOptions/index.ts +1 -0
  598. package/src/components/DataGrid/Row/useLogic/utils/mergeColumnsOptions/mergeColumnsOptions.ts +34 -0
  599. package/src/components/DataGrid/Row/utils/checkIsDisabled/checkIsDisabled.ts +15 -0
  600. package/src/components/DataGrid/Row/utils/checkIsDisabled/index.ts +1 -0
  601. package/src/components/DataGrid/Row/utils/index.ts +1 -0
  602. package/src/components/DataGrid/constants.ts +11 -0
  603. package/src/components/DataGrid/enums.ts +9 -0
  604. package/src/components/DataGrid/faker.ts +116 -0
  605. package/src/components/DataGrid/index.ts +11 -0
  606. package/src/components/DataGrid/styles.ts +31 -0
  607. package/src/components/DataGrid/types.ts +118 -0
  608. package/src/components/DataGrid/useLogic/index.ts +1 -0
  609. package/src/components/DataGrid/useLogic/useLogic.tsx +139 -0
  610. package/src/components/DataGrid/useLogic/utils/getGridTemplateColumns/getGridTemplateColumns.ts +7 -0
  611. package/src/components/DataGrid/useLogic/utils/getGridTemplateColumns/index.ts +1 -0
  612. package/src/components/DataGrid/useLogic/utils/index.ts +1 -0
  613. package/src/components/DataGrid/utils/alignToJustifyContent/alignToJustifyContent.ts +20 -0
  614. package/src/components/DataGrid/utils/alignToJustifyContent/constants.ts +7 -0
  615. package/src/components/DataGrid/utils/alignToJustifyContent/index.ts +1 -0
  616. package/src/components/DataGrid/utils/index.ts +1 -0
  617. package/src/components/DataGridActionCell/DataGridActionCell.stories.tsx +271 -0
  618. package/src/components/DataGridActionCell/DataGridActionCell.tsx +70 -0
  619. package/src/components/DataGridActionCell/MainAction/MainAction.tsx +76 -0
  620. package/src/components/DataGridActionCell/MainAction/MainIconButton/MainIconButton.tsx +88 -0
  621. package/src/components/DataGridActionCell/MainAction/MainIconButton/index.ts +1 -0
  622. package/src/components/DataGridActionCell/MainAction/MainIconButton/useLogic/index.ts +1 -0
  623. package/src/components/DataGridActionCell/MainAction/MainIconButton/useLogic/useLogic.ts +31 -0
  624. package/src/components/DataGridActionCell/MainAction/index.ts +1 -0
  625. package/src/components/DataGridActionCell/SecondaryAction/SecondaryAction.tsx +54 -0
  626. package/src/components/DataGridActionCell/SecondaryAction/index.ts +1 -0
  627. package/src/components/DataGridActionCell/index.ts +1 -0
  628. package/src/components/DataGridActionCell/styles.ts +6 -0
  629. package/src/components/DataGridActionCell/types.ts +123 -0
  630. package/src/components/DataGridActionCell/useLogic/index.ts +1 -0
  631. package/src/components/DataGridActionCell/useLogic/useLogic.ts +53 -0
  632. package/src/components/DataGridOld/Body/Body.tsx +56 -0
  633. package/src/components/DataGridOld/Body/index.ts +1 -0
  634. package/src/components/DataGridOld/Body/styles.ts +12 -0
  635. package/src/components/DataGridOld/Cell/Cell.tsx +41 -0
  636. package/src/components/DataGridOld/Cell/index.ts +1 -0
  637. package/src/components/DataGridOld/Cell/styles.ts +25 -0
  638. package/src/components/DataGridOld/DataGridOld.tsx +65 -0
  639. package/src/components/DataGridOld/Head/Head.tsx +31 -0
  640. package/src/components/DataGridOld/Head/index.ts +1 -0
  641. package/src/components/DataGridOld/Head/styles.ts +11 -0
  642. package/src/components/DataGridOld/HeadCell/HeadCell.tsx +14 -0
  643. package/src/components/DataGridOld/HeadCell/index.ts +1 -0
  644. package/src/components/DataGridOld/HeadCell/styles.ts +29 -0
  645. package/src/components/DataGridOld/Row/Row.tsx +53 -0
  646. package/src/components/DataGridOld/Row/index.ts +1 -0
  647. package/src/components/DataGridOld/Row/styles.ts +24 -0
  648. package/src/components/DataGridOld/State/State.tsx +32 -0
  649. package/src/components/DataGridOld/State/index.ts +1 -0
  650. package/src/components/DataGridOld/State/styles.ts +25 -0
  651. package/src/components/DataGridOld/constants.ts +1 -0
  652. package/src/components/DataGridOld/index.ts +2 -0
  653. package/src/components/DataGridOld/styles.ts +24 -0
  654. package/src/components/DataGridOld/types.ts +18 -0
  655. package/src/components/DataGridPagination/DataGridPagination.stories.tsx +206 -0
  656. package/src/components/DataGridPagination/DataGridPagination.tsx +102 -0
  657. package/src/components/DataGridPagination/constants.ts +3 -0
  658. package/src/components/DataGridPagination/faker.ts +36 -0
  659. package/src/components/DataGridPagination/index.ts +1 -0
  660. package/src/components/DataGridPagination/styles.ts +26 -0
  661. package/src/components/DataGridPagination/useLogic/index.ts +1 -0
  662. package/src/components/DataGridPagination/useLogic/useLogic.ts +53 -0
  663. package/src/components/Description/Description.stories.tsx +327 -0
  664. package/src/components/Description/Description.tsx +73 -0
  665. package/src/components/Description/DescriptionContext/DescriptionContext.tsx +15 -0
  666. package/src/components/Description/DescriptionContext/DescriptionContextProvider/DescriptionContextProvider.tsx +21 -0
  667. package/src/components/Description/DescriptionContext/DescriptionContextProvider/index.ts +1 -0
  668. package/src/components/Description/DescriptionContext/index.ts +3 -0
  669. package/src/components/Description/Name/Name.tsx +28 -0
  670. package/src/components/Description/Name/index.ts +1 -0
  671. package/src/components/Description/Name/styles.ts +29 -0
  672. package/src/components/Description/Value/Value.tsx +73 -0
  673. package/src/components/Description/Value/index.ts +1 -0
  674. package/src/components/Description/Value/styles.ts +62 -0
  675. package/src/components/Description/Value/useLogic/index.ts +1 -0
  676. package/src/components/Description/Value/useLogic/useLogic.ts +18 -0
  677. package/src/components/Description/constants.ts +5 -0
  678. package/src/components/Description/index.ts +3 -0
  679. package/src/components/Description/styles.ts +27 -0
  680. package/src/components/Description/useLogic/index.ts +1 -0
  681. package/src/components/Description/useLogic/useLogic.ts +21 -0
  682. package/src/components/DescriptionList/DescriptionList.stories.tsx +475 -0
  683. package/src/components/DescriptionList/DescriptionList.tsx +108 -0
  684. package/src/components/DescriptionList/index.ts +3 -0
  685. package/src/components/DescriptionList/styles.ts +67 -0
  686. package/src/components/DescriptionList/types.ts +46 -0
  687. package/src/components/DescriptionList/utils/getTooltipProps/getTooltipProps.ts +3 -0
  688. package/src/components/DescriptionList/utils/getTooltipProps/index.ts +1 -0
  689. package/src/components/DescriptionList/utils/index.ts +1 -0
  690. package/src/components/Dialog/Dialog.stories.tsx +429 -0
  691. package/src/components/Dialog/Dialog.tsx +68 -0
  692. package/src/components/Dialog/constants.ts +7 -0
  693. package/src/components/Dialog/index.ts +1 -0
  694. package/src/components/Dialog/styles.ts +26 -0
  695. package/src/components/DialogActions/DialogActions.stories.tsx +114 -0
  696. package/src/components/DialogActions/DialogActions.tsx +19 -0
  697. package/src/components/DialogActions/index.ts +1 -0
  698. package/src/components/DialogActions/styles.ts +17 -0
  699. package/src/components/DialogContent/DialogContent.stories.tsx +70 -0
  700. package/src/components/DialogContent/DialogContent.tsx +11 -0
  701. package/src/components/DialogContent/index.ts +1 -0
  702. package/src/components/DialogContent/styles.ts +13 -0
  703. package/src/components/DialogContentText/DialogContentText.stories.tsx +64 -0
  704. package/src/components/DialogContentText/DialogContentText.tsx +12 -0
  705. package/src/components/DialogContentText/index.ts +1 -0
  706. package/src/components/DialogContentText/styles.ts +8 -0
  707. package/src/components/DialogHeader/DialogHeader.stories.tsx +107 -0
  708. package/src/components/DialogHeader/DialogHeader.tsx +58 -0
  709. package/src/components/DialogHeader/index.ts +1 -0
  710. package/src/components/DialogHeader/styles.ts +63 -0
  711. package/src/components/DialogTitle/DialogTitle.tsx +43 -0
  712. package/src/components/DialogTitle/index.ts +1 -0
  713. package/src/components/Divider/Divider.stories.tsx +57 -0
  714. package/src/components/Divider/Divider.tsx +10 -0
  715. package/src/components/Divider/index.ts +1 -0
  716. package/src/components/ErrorBoundary/ErrorBoundary.stories.tsx +57 -0
  717. package/src/components/ErrorBoundary/ErrorBoundary.stubs.tsx +67 -0
  718. package/src/components/ErrorBoundary/ErrorBoundary.tsx +73 -0
  719. package/src/components/ErrorBoundary/constants.ts +15 -0
  720. package/src/components/ErrorBoundary/enums.ts +9 -0
  721. package/src/components/ErrorBoundary/index.ts +1 -0
  722. package/src/components/FormControl/FormControl.tsx +12 -0
  723. package/src/components/FormControl/index.tsx +1 -0
  724. package/src/components/FormControlLabel/FormControlLabel.tsx +6 -0
  725. package/src/components/FormControlLabel/index.ts +3 -0
  726. package/src/components/FormControlLabel/styles.ts +14 -0
  727. package/src/components/FormControlLabel/types.ts +6 -0
  728. package/src/components/FormHelperText/FormHelperText.tsx +29 -0
  729. package/src/components/FormHelperText/FormHelperTextContent/FormHelperTextContent.tsx +38 -0
  730. package/src/components/FormHelperText/FormHelperTextContent/index.ts +1 -0
  731. package/src/components/FormHelperText/FormHelperTextContent/styles.ts +44 -0
  732. package/src/components/FormHelperText/index.ts +3 -0
  733. package/src/components/GuidTypography/GuidTypography.stories.tsx +57 -0
  734. package/src/components/GuidTypography/GuidTypography.tsx +10 -0
  735. package/src/components/GuidTypography/index.ts +1 -0
  736. package/src/components/IconButton/IconButton.stories.tsx +236 -0
  737. package/src/components/IconButton/IconButton.tsx +57 -0
  738. package/src/components/IconButton/index.ts +1 -0
  739. package/src/components/IconButton/styles.ts +52 -0
  740. package/src/components/IconDropdownButton/IconDropdownButton.stories.tsx +196 -0
  741. package/src/components/IconDropdownButton/IconDropdownButton.tsx +38 -0
  742. package/src/components/IconDropdownButton/index.ts +1 -0
  743. package/src/components/InternalErrorPlaceholder/InternalErrorPlaceholder.stories.tsx +33 -0
  744. package/src/components/InternalErrorPlaceholder/InternalErrorPlaceholder.tsx +39 -0
  745. package/src/components/InternalErrorPlaceholder/index.ts +1 -0
  746. package/src/components/Link/Link.stories.tsx +88 -0
  747. package/src/components/Link/Link.tsx +44 -0
  748. package/src/components/Link/index.ts +1 -0
  749. package/src/components/Link/styles.ts +37 -0
  750. package/src/components/List/List.stories.tsx +254 -0
  751. package/src/components/List/List.tsx +9 -0
  752. package/src/components/List/index.ts +1 -0
  753. package/src/components/ListItem/ListItem.stories.tsx +84 -0
  754. package/src/components/ListItem/ListItem.tsx +12 -0
  755. package/src/components/ListItem/index.ts +1 -0
  756. package/src/components/ListItemButton/ListItemButton.stories.tsx +112 -0
  757. package/src/components/ListItemButton/ListItemButton.tsx +74 -0
  758. package/src/components/ListItemButton/constants.ts +5 -0
  759. package/src/components/ListItemButton/index.ts +1 -0
  760. package/src/components/ListItemIcon/ListItemIcon.stories.tsx +41 -0
  761. package/src/components/ListItemIcon/ListItemIcon.tsx +14 -0
  762. package/src/components/ListItemIcon/index.ts +1 -0
  763. package/src/components/ListItemIcon/styles.ts +5 -0
  764. package/src/components/ListItemText/ListItemText.stories.tsx +39 -0
  765. package/src/components/ListItemText/ListItemText.tsx +11 -0
  766. package/src/components/ListItemText/index.ts +1 -0
  767. package/src/components/ListSubheader/ListSubheader.stories.tsx +42 -0
  768. package/src/components/ListSubheader/ListSubheader.tsx +12 -0
  769. package/src/components/ListSubheader/index.ts +1 -0
  770. package/src/components/Menu/Menu.stories.tsx +108 -0
  771. package/src/components/Menu/Menu.tsx +38 -0
  772. package/src/components/Menu/index.ts +1 -0
  773. package/src/components/MenuItem/MenuItem.stories.tsx +110 -0
  774. package/src/components/MenuItem/MenuItem.tsx +68 -0
  775. package/src/components/MenuItem/index.ts +1 -0
  776. package/src/components/MenuList/MenuList.stories.tsx +86 -0
  777. package/src/components/MenuList/MenuList.tsx +6 -0
  778. package/src/components/MenuList/index.ts +3 -0
  779. package/src/components/MenuList/styles.ts +10 -0
  780. package/src/components/MenuList/types.ts +11 -0
  781. package/src/components/NavMenu/Item/Item.tsx +87 -0
  782. package/src/components/NavMenu/Item/ItemButton/ItemButton.tsx +76 -0
  783. package/src/components/NavMenu/Item/ItemButton/index.ts +1 -0
  784. package/src/components/NavMenu/Item/ItemButton/styles.ts +143 -0
  785. package/src/components/NavMenu/Item/List/List.tsx +43 -0
  786. package/src/components/NavMenu/Item/List/index.ts +1 -0
  787. package/src/components/NavMenu/Item/index.ts +1 -0
  788. package/src/components/NavMenu/NavMenu.stories.tsx +116 -0
  789. package/src/components/NavMenu/NavMenu.tsx +32 -0
  790. package/src/components/NavMenu/index.ts +1 -0
  791. package/src/components/OutdatedReleasePlaceholder/OutdatedReleasePlaceholder.stories.tsx +31 -0
  792. package/src/components/OutdatedReleasePlaceholder/OutdatedReleasePlaceholder.tsx +30 -0
  793. package/src/components/OutdatedReleasePlaceholder/index.ts +1 -0
  794. package/src/components/OverflowTypography/OverflowTypography.stories.tsx +112 -0
  795. package/src/components/OverflowTypography/OverflowTypography.tsx +106 -0
  796. package/src/components/OverflowTypography/hooks/index.ts +1 -0
  797. package/src/components/OverflowTypography/hooks/useOverflowed/index.ts +1 -0
  798. package/src/components/OverflowTypography/hooks/useOverflowed/useOverflowed.ts +58 -0
  799. package/src/components/OverflowTypography/index.ts +1 -0
  800. package/src/components/OverflowTypography/styles.ts +39 -0
  801. package/src/components/OverflowTypography/useLogic/index.ts +1 -0
  802. package/src/components/OverflowTypography/useLogic/useLogic.ts +29 -0
  803. package/src/components/OverflowTypography/utils/index.ts +1 -0
  804. package/src/components/OverflowTypography/utils/truncateString/index.ts +1 -0
  805. package/src/components/OverflowTypography/utils/truncateString/truncateString.ts +9 -0
  806. package/src/components/Pagination/Pagination.stories.tsx +55 -0
  807. package/src/components/Pagination/Pagination.tsx +7 -0
  808. package/src/components/Pagination/index.ts +3 -0
  809. package/src/components/Pagination/types.ts +13 -0
  810. package/src/components/Paper/Paper.tsx +25 -0
  811. package/src/components/Paper/index.ts +1 -0
  812. package/src/components/Placeholder/Image/Image.tsx +16 -0
  813. package/src/components/Placeholder/Image/index.ts +1 -0
  814. package/src/components/Placeholder/Image/styles.ts +24 -0
  815. package/src/components/Placeholder/Placeholder.stories.tsx +204 -0
  816. package/src/components/Placeholder/Placeholder.tsx +108 -0
  817. package/src/components/Placeholder/constants.ts +31 -0
  818. package/src/components/Placeholder/index.ts +5 -0
  819. package/src/components/Placeholder/styles.ts +94 -0
  820. package/src/components/Placeholder/types.ts +1 -0
  821. package/src/components/Popover/Popover.stories.tsx +210 -0
  822. package/src/components/Popover/Popover.tsx +39 -0
  823. package/src/components/Popover/index.ts +1 -0
  824. package/src/components/SearchField/SearchField.tsx +93 -0
  825. package/src/components/SearchField/index.ts +1 -0
  826. package/src/components/SearchField/styles.ts +38 -0
  827. package/src/components/Select/Select.stories.tsx +324 -0
  828. package/src/components/Select/Select.tsx +204 -0
  829. package/src/components/Select/constants.ts +1 -0
  830. package/src/components/Select/index.ts +1 -0
  831. package/src/components/Select/styles.ts +60 -0
  832. package/src/components/Select/useLogic/index.ts +1 -0
  833. package/src/components/Select/useLogic/useLogic.ts +53 -0
  834. package/src/components/Tag/Tag.stories.tsx +592 -0
  835. package/src/components/Tag/Tag.tsx +102 -0
  836. package/src/components/Tag/enums.ts +20 -0
  837. package/src/components/Tag/index.ts +3 -0
  838. package/src/components/Tag/styles.ts +332 -0
  839. package/src/components/Tag/types.ts +9 -0
  840. package/src/components/TagBadge/TagBadge.stories.tsx +235 -0
  841. package/src/components/TagBadge/TagBadge.tsx +47 -0
  842. package/src/components/TagBadge/index.ts +1 -0
  843. package/src/components/TagBadge/styles.ts +14 -0
  844. package/src/components/TagBadge/utils/getCheckableTagBadgeBgColor/getCheckableTagBadgeBgColor.ts +31 -0
  845. package/src/components/TagBadge/utils/getCheckableTagBadgeBgColor/index.ts +1 -0
  846. package/src/components/TagBadge/utils/index.ts +1 -0
  847. package/src/components/TagsList/Tag/Tag.tsx +49 -0
  848. package/src/components/TagsList/Tag/index.ts +1 -0
  849. package/src/components/TagsList/Tag/styles.ts +19 -0
  850. package/src/components/TagsList/Tag/useLogic/index.ts +1 -0
  851. package/src/components/TagsList/Tag/useLogic/useLogic.ts +11 -0
  852. package/src/components/TagsList/TagsList.tsx +80 -0
  853. package/src/components/TagsList/index.ts +3 -0
  854. package/src/components/TagsList/styles.ts +6 -0
  855. package/src/components/TagsList/types.ts +1 -0
  856. package/src/components/TagsList/useLogic/index.ts +1 -0
  857. package/src/components/TagsList/useLogic/useLogic.ts +184 -0
  858. package/src/components/TagsList/utils/getElementByText/getElementByText.ts +21 -0
  859. package/src/components/TagsList/utils/getElementByText/index.ts +1 -0
  860. package/src/components/TagsList/utils/getKey/getKey.ts +11 -0
  861. package/src/components/TagsList/utils/getKey/index.ts +1 -0
  862. package/src/components/TagsList/utils/index.ts +3 -0
  863. package/src/components/TextField/TextField.stories.tsx +97 -0
  864. package/src/components/TextField/TextField.tsx +117 -0
  865. package/src/components/TextField/index.ts +1 -0
  866. package/src/components/Tooltip/Tooltip.stories.tsx +237 -0
  867. package/src/components/Tooltip/Tooltip.tsx +48 -0
  868. package/src/components/Tooltip/constants.ts +4 -0
  869. package/src/components/Tooltip/index.ts +3 -0
  870. package/src/components/Tooltip/styles.tsx +65 -0
  871. package/src/components/Tooltip/types.ts +3 -0
  872. package/src/components/Typography/Typography.stories.tsx +193 -0
  873. package/src/components/Typography/Typography.tsx +107 -0
  874. package/src/components/Typography/enums.ts +14 -0
  875. package/src/components/Typography/hooks/index.ts +1 -0
  876. package/src/components/Typography/hooks/useTypographyColor/index.ts +1 -0
  877. package/src/components/Typography/hooks/useTypographyColor/useTypographyColor.tsx +54 -0
  878. package/src/components/Typography/index.ts +3 -0
  879. package/src/components/Typography/styles.ts +9 -0
  880. package/src/components/Typography/types.ts +30 -0
  881. package/src/components/index.ts +123 -0
  882. package/src/components/types.ts +1 -0
  883. package/src/hooks/index.ts +3 -0
  884. package/src/hooks/useMenu/index.ts +1 -0
  885. package/src/hooks/useMenu/useMenu.stories.tsx +31 -0
  886. package/src/hooks/useMenu/useMenu.ts +45 -0
  887. package/src/hooks/usePopover/index.ts +1 -0
  888. package/src/hooks/usePopover/usePopover.ts +27 -0
  889. package/src/hooks/useViewportType/index.ts +1 -0
  890. package/src/hooks/useViewportType/useViewportType.stories.tsx +30 -0
  891. package/src/hooks/useViewportType/useViewportType.ts +13 -0
  892. package/src/illustrations/certificates-not-found.svg +91 -0
  893. package/src/illustrations/data-access-disabled.svg +103 -0
  894. package/src/illustrations/data-access-success.svg +119 -0
  895. package/src/illustrations/drop-files-in.svg +40 -0
  896. package/src/illustrations/drop-files-out.svg +43 -0
  897. package/src/illustrations/error.svg +159 -0
  898. package/src/illustrations/features.svg +35 -0
  899. package/src/illustrations/mail.svg +84 -0
  900. package/src/illustrations/no-data.svg +1 -0
  901. package/src/illustrations/no-notifications.svg +102 -0
  902. package/src/illustrations/outdated-release.svg +173 -0
  903. package/src/illustrations/placeholder.svg +20 -0
  904. package/src/illustrations/search.svg +38 -0
  905. package/src/illustrations/sketchpad.svg +114 -0
  906. package/src/illustrations/technical-support.svg +341 -0
  907. package/src/index.ts +3 -0
  908. package/src/theme/baseTheme/baseTheme.ts +49 -0
  909. package/src/theme/baseTheme/index.ts +1 -0
  910. package/src/theme/breakpoints.ts +11 -0
  911. package/src/theme/components/MuiAlert.ts +70 -0
  912. package/src/theme/components/MuiAutocomplete.ts +94 -0
  913. package/src/theme/components/MuiButton.ts +418 -0
  914. package/src/theme/components/MuiButtonBase.ts +16 -0
  915. package/src/theme/components/MuiCircularProgress.ts +22 -0
  916. package/src/theme/components/MuiDialog.ts +13 -0
  917. package/src/theme/components/MuiDialogActions.ts +17 -0
  918. package/src/theme/components/MuiDialogContent.ts +13 -0
  919. package/src/theme/components/MuiDialogTitle.ts +24 -0
  920. package/src/theme/components/MuiDrawer.ts +15 -0
  921. package/src/theme/components/MuiFormHelperText.ts +23 -0
  922. package/src/theme/components/MuiFormLabel.ts +16 -0
  923. package/src/theme/components/MuiInputLabel.ts +33 -0
  924. package/src/theme/components/MuiLinearProgress.ts +22 -0
  925. package/src/theme/components/MuiListItemButton.ts +16 -0
  926. package/src/theme/components/MuiListItemText.ts +16 -0
  927. package/src/theme/components/MuiMenu.ts +32 -0
  928. package/src/theme/components/MuiMenuItem.ts +36 -0
  929. package/src/theme/components/MuiOutlinedInput.ts +75 -0
  930. package/src/theme/components/MuiPaginationItem.ts +16 -0
  931. package/src/theme/components/MuiPaper.ts +38 -0
  932. package/src/theme/components/MuiStep.ts +16 -0
  933. package/src/theme/components/MuiStepConnector.ts +11 -0
  934. package/src/theme/components/MuiStepLabel.ts +30 -0
  935. package/src/theme/components/MuiSwitch.ts +153 -0
  936. package/src/theme/components/MuiTab.ts +15 -0
  937. package/src/theme/components/MuiTableCell.ts +16 -0
  938. package/src/theme/components/MuiTableHead.ts +15 -0
  939. package/src/theme/components/MuiTableRow.ts +19 -0
  940. package/src/theme/components/MuiTabs.ts +19 -0
  941. package/src/theme/components/MuiTextField.ts +28 -0
  942. package/src/theme/components/MuiToggleButton.ts +14 -0
  943. package/src/theme/components/MuiToggleButtonGroup.ts +10 -0
  944. package/src/theme/components/MuiTypography.ts +41 -0
  945. package/src/theme/components/components.ts +155 -0
  946. package/src/theme/components/index.ts +1 -0
  947. package/src/theme/constants.ts +1 -0
  948. package/src/theme/elevation.ts +15 -0
  949. package/src/theme/hooks/index.ts +1 -0
  950. package/src/theme/hooks/useTheme/index.ts +7 -0
  951. package/src/theme/index.ts +13 -0
  952. package/src/theme/palette/componentsColors/componentsColors.ts +9 -0
  953. package/src/theme/palette/componentsColors/index.ts +1 -0
  954. package/src/theme/palette/componentsColors/linkColors/index.ts +1 -0
  955. package/src/theme/palette/componentsColors/linkColors/linkColors.ts +13 -0
  956. package/src/theme/palette/index.ts +5 -0
  957. package/src/theme/palette/palette.ts +125 -0
  958. package/src/theme/palette/types.ts +55 -0
  959. package/src/theme/shape.ts +11 -0
  960. package/src/theme/types.ts +30 -0
  961. package/src/theme/typography.ts +191 -0
  962. package/tsconfig.json +15 -0
@@ -0,0 +1,119 @@
1
+ <svg width="144" height="162" viewBox="0 0 144 162" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.56" d="M143.638 148.891C143.638 155.865 111.496 161.481 71.9148 161.481C32.334 161.481 0.191162 155.865 0.191162 148.891C0.191162 141.917 32.334 136.301 71.9148 136.301C111.496 136.301 143.638 141.917 143.638 148.891Z" fill="url(#paint0_radial_740_13903)"/>
3
+ <path d="M31.0633 42.182C32.6191 39.8484 35.2382 38.4467 38.0428 38.4467H104.559C107.364 38.4467 109.983 39.8484 111.539 42.182L114.488 46.6056C115.499 48.1226 116.039 49.905 116.039 51.7282H26.5632C26.5632 49.905 27.1029 48.1226 28.1142 46.6056L31.0633 42.182Z" fill="url(#paint1_linear_740_13903)"/>
4
+ <g filter="url(#filter0_i_740_13903)">
5
+ <ellipse cx="43.6894" cy="40.8932" rx="7.33981" ry="1.74757" fill="#5681AB"/>
6
+ </g>
7
+ <g filter="url(#filter1_i_740_13903)">
8
+ <ellipse cx="98.9128" cy="40.8932" rx="7.33981" ry="1.74757" fill="#5681AB"/>
9
+ </g>
10
+ <mask id="mask0_740_13903" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="38" y="0" width="67" height="43">
11
+ <path d="M104.342 42.0684C102.058 42.9903 97.1652 42.9903 94.1174 42.2122V30.5775C94.1174 19.5137 85.1138 10.4338 73.9738 10.4338H68.7089C57.6452 10.4338 48.5653 19.4374 48.5653 30.5775V42.2913C46.1361 42.9903 41.2429 42.9903 38.1882 42.0479V30.5775C38.1882 13.7911 51.8463 0.133057 68.6326 0.133057H73.8975C90.6838 0.133057 104.342 13.7911 104.342 30.5775V42.0684Z" fill="#3B496E"/>
12
+ <path d="M104.342 42.0684C102.058 42.9903 97.1652 42.9903 94.1174 42.2122V30.5775C94.1174 19.5137 85.1138 10.4338 73.9738 10.4338H68.7089C57.6452 10.4338 48.5653 19.4374 48.5653 30.5775V42.2913C46.1361 42.9903 41.2429 42.9903 38.1882 42.0479V30.5775C38.1882 13.7911 51.8463 0.133057 68.6326 0.133057H73.8975C90.6838 0.133057 104.342 13.7911 104.342 30.5775V42.0684Z" fill="url(#paint2_linear_740_13903)"/>
13
+ </mask>
14
+ <g mask="url(#mask0_740_13903)">
15
+ <path d="M104.6 41.7591H94.376V30.4444C94.376 19.3806 85.3724 10.3007 74.2323 10.3007H68.9675C57.9037 10.3007 48.8238 19.3043 48.8238 30.4444V41.7591H38.4468V30.4444C38.4468 13.658 52.1048 0 68.8912 0H74.156C90.9424 0 104.6 13.658 104.6 30.4444V41.7591Z" fill="url(#paint3_radial_740_13903)"/>
16
+ <mask id="mask1_740_13903" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="36" y="39" width="16" height="4">
17
+ <ellipse cx="43.6894" cy="40.8932" rx="7.33981" ry="1.74757" fill="#C4C4C4"/>
18
+ </mask>
19
+ <g mask="url(#mask1_740_13903)">
20
+ <path d="M38.1882 46.7853H48.5653V38.6814H38.1882V46.7853Z" fill="#576894"/>
21
+ </g>
22
+ <mask id="mask2_740_13903" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="91" y="39" width="16" height="4">
23
+ <ellipse cx="98.9128" cy="40.8932" rx="7.33981" ry="1.74757" fill="#C4C4C4"/>
24
+ </mask>
25
+ <g mask="url(#mask2_740_13903)">
26
+ <path d="M94.1174 46.7853H104.342V38.6814H94.1174V46.7853Z" fill="#576894"/>
27
+ </g>
28
+ <g filter="url(#filter2_f_740_13903)">
29
+ <path d="M94.1174 41.9418V30.5775C94.1174 19.5138 85.1138 10.4338 73.9738 10.4338H68.709C57.6452 10.4338 48.5653 19.4375 48.5653 30.5775V41.9418H45.78C45.6157 39.446 45.4176 36.6023 45.1785 33.3736C43.7805 14.4902 57.4385 5.72534 68.6327 5.72534H73.8975C85.0916 5.72534 98.7496 14.4902 97.3516 33.3736C97.1125 36.6023 96.9144 39.446 96.7501 41.9418H94.1174Z" fill="url(#paint4_radial_740_13903)"/>
30
+ </g>
31
+ </g>
32
+ <path d="M116.039 111.936C116.039 116.82 112.071 120.787 107.188 120.787H35.4142C30.5309 120.787 26.5632 116.82 26.5632 111.936V51.4919C26.5632 46.6086 30.5309 42.6409 35.4142 42.6409H107.188C112.071 42.6409 116.039 46.6086 116.039 51.4919V111.936Z" fill="url(#paint5_linear_740_13903)"/>
33
+ <path d="M116.039 111.936C116.039 116.82 112.071 120.787 107.188 120.787H35.4142C30.5309 120.787 26.5632 116.82 26.5632 111.936V51.4919C26.5632 46.6086 30.5309 42.6409 35.4142 42.6409H107.188C112.071 42.6409 116.039 46.6086 116.039 51.4919V111.936Z" fill="url(#paint6_radial_740_13903)"/>
34
+ <path d="M26.5632 112.081C26.5632 116.964 30.5129 120.932 35.3741 120.932H107.228C112.089 120.932 116.039 116.964 116.039 112.081H26.5632Z" fill="#EEF7FF"/>
35
+ <path d="M26.5632 112.081C26.5632 116.964 30.5129 120.932 35.3741 120.932H107.228C112.089 120.932 116.039 116.964 116.039 112.081H26.5632Z" fill="url(#paint7_linear_740_13903)"/>
36
+ <g filter="url(#filter3_i_740_13903)">
37
+ <path d="M65.8138 97.3399C64.6255 97.3399 63.4371 96.9205 62.5284 96.0117L51.6934 85.1768C49.876 83.3593 49.876 80.4234 51.6934 78.6059C53.5109 76.7884 56.4468 76.7884 58.2643 78.6059L65.8138 86.1554L84.1983 67.7709C86.0158 65.9535 88.9517 65.9535 90.7692 67.7709C92.5866 69.5884 92.5866 72.5243 90.7692 74.3418L69.0993 96.0117C68.1905 96.8506 67.0022 97.3399 65.8138 97.3399Z" fill="#2285EE"/>
38
+ </g>
39
+ <path d="M118.625 40.4737C118.205 40.4737 117.786 40.264 117.436 39.9145C116.737 39.2155 116.807 38.097 117.506 37.398L123.168 31.9456C123.867 31.2466 124.986 31.3165 125.685 32.0155C126.384 32.7145 126.314 33.833 125.615 34.532L119.953 39.9844C119.603 40.3339 119.114 40.4737 118.625 40.4737Z" fill="#2285EE"/>
40
+ <path d="M114.921 37.5379C113.942 37.468 113.243 36.6991 113.243 35.7204L113.313 31.1068C113.313 30.1282 114.152 29.3593 115.13 29.3593C116.109 29.3593 116.878 30.1981 116.878 31.1767L116.808 35.7903C116.808 36.769 115.969 37.5379 114.99 37.5379H114.921Z" fill="#2285EE"/>
41
+ <path d="M121.351 44.2488C120.443 44.1789 119.674 43.4099 119.674 42.4313C119.674 41.4526 120.512 40.6837 121.491 40.6837L126.105 40.7536C127.083 40.7536 127.852 41.5925 127.852 42.5711C127.852 43.5497 127.013 44.3187 126.035 44.3187L121.421 44.2488H121.351Z" fill="#2285EE"/>
42
+ <defs>
43
+ <filter id="filter0_i_740_13903" x="36.3496" y="39.1456" width="14.6797" height="4.19415" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
44
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
45
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
46
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
47
+ <feOffset dy="0.699029"/>
48
+ <feGaussianBlur stdDeviation="0.699029"/>
49
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
50
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
51
+ <feBlend mode="normal" in2="shape" result="effect1_innerShadow_740_13903"/>
52
+ </filter>
53
+ <filter id="filter1_i_740_13903" x="91.573" y="39.1456" width="14.6797" height="4.19415" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
54
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
55
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
56
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
57
+ <feOffset dy="0.699029"/>
58
+ <feGaussianBlur stdDeviation="0.699029"/>
59
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
60
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
61
+ <feBlend mode="normal" in2="shape" result="effect1_innerShadow_740_13903"/>
62
+ </filter>
63
+ <filter id="filter2_f_740_13903" x="41.5842" y="2.2302" width="59.3616" height="43.2068" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
64
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
65
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
66
+ <feGaussianBlur stdDeviation="1.74757" result="effect1_foregroundBlur_740_13903"/>
67
+ </filter>
68
+ <filter id="filter3_i_740_13903" x="50.3303" y="65.7088" width="41.802" height="31.631" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
69
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
70
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
71
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
72
+ <feOffset dy="-0.699029"/>
73
+ <feGaussianBlur stdDeviation="0.699029"/>
74
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
75
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
76
+ <feBlend mode="normal" in2="shape" result="effect1_innerShadow_740_13903"/>
77
+ </filter>
78
+ <radialGradient id="paint0_radial_740_13903" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(71.8534 148.737) scale(71.747 12.5472)">
79
+ <stop stop-color="#CCDBEB"/>
80
+ <stop offset="0.515067" stop-color="#BDD0E3" stop-opacity="0.4"/>
81
+ <stop offset="0.746289" stop-color="#B0D0F2" stop-opacity="0.1656"/>
82
+ <stop offset="1" stop-color="#B0D0F2" stop-opacity="0.01"/>
83
+ </radialGradient>
84
+ <linearGradient id="paint1_linear_740_13903" x1="71.3011" y1="38.4467" x2="71.3011" y2="51.7282" gradientUnits="userSpaceOnUse">
85
+ <stop stop-color="#CCE0F4"/>
86
+ <stop offset="1" stop-color="#8EA7BF"/>
87
+ </linearGradient>
88
+ <linearGradient id="paint2_linear_740_13903" x1="74.2027" y1="-45.648" x2="74.2027" y2="26.8387" gradientUnits="userSpaceOnUse">
89
+ <stop stop-color="#3B496E"/>
90
+ <stop offset="1" stop-color="white" stop-opacity="0"/>
91
+ </linearGradient>
92
+ <radialGradient id="paint3_radial_740_13903" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(71.5597 34.4689) rotate(-90) scale(34.602 51.4663)">
93
+ <stop stop-color="#485679"/>
94
+ <stop offset="0.397859" stop-color="#46557E"/>
95
+ <stop offset="0.872917" stop-color="#6F82B1"/>
96
+ </radialGradient>
97
+ <radialGradient id="paint4_radial_740_13903" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(71.2651 32.1554) rotate(-90) scale(26.5631 25.9002)">
98
+ <stop offset="0.843094" stop-color="#8698C5"/>
99
+ <stop offset="1" stop-color="#475A89"/>
100
+ </radialGradient>
101
+ <linearGradient id="paint5_linear_740_13903" x1="30.0584" y1="45.6417" x2="71.3011" y2="110.651" gradientUnits="userSpaceOnUse">
102
+ <stop stop-color="#E4F2FF"/>
103
+ <stop offset="0.537495" stop-color="#F5FAFF"/>
104
+ <stop offset="0.807978" stop-color="#E9F4FF"/>
105
+ <stop offset="1" stop-color="#E9F4FF"/>
106
+ </linearGradient>
107
+ <radialGradient id="paint6_radial_740_13903" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(71.3011 78.4961) rotate(90) scale(50.3301 66.4054)">
108
+ <stop stop-color="#EEF7FF"/>
109
+ <stop offset="0.480806" stop-color="white" stop-opacity="0"/>
110
+ <stop offset="0.992174" stop-color="#E7EFFA"/>
111
+ </radialGradient>
112
+ <linearGradient id="paint7_linear_740_13903" x1="71.223" y1="120.932" x2="71.223" y2="111.845" gradientUnits="userSpaceOnUse">
113
+ <stop stop-color="#ABBCE0"/>
114
+ <stop offset="0.0001" stop-color="#C8DCF2"/>
115
+ <stop offset="0.42338" stop-color="#E1EEFC"/>
116
+ <stop offset="1" stop-color="#EEF6FF"/>
117
+ </linearGradient>
118
+ </defs>
119
+ </svg>
@@ -0,0 +1,40 @@
1
+ <svg width="124" height="124" viewBox="0 0 124 124" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle opacity="0.5" cx="61.5" cy="67.5" r="42.8776" fill="#EBEEF1" stroke="#B7C2CE" stroke-width="1.2449"/>
3
+ <path d="M28.6224 52C28.6224 50.1346 30.1346 48.6224 32 48.6224H49.3967C50.8252 48.6224 52.1638 49.3194 52.983 50.4896L53.4972 51.2243C54.5493 52.7273 56.2686 53.6224 58.1033 53.6224H91.5825C93.4204 53.6224 94.921 55.0921 94.9593 56.9296L95.3644 76.3776H28.6224V52Z" fill="#EBEEF1" stroke="#B7C2CE" stroke-width="1.2449"/>
4
+ <path d="M53.9257 59.2841L28.2886 72.8347C28.104 72.9323 27.8752 72.8614 27.778 72.6766L10.0899 39.0402C9.99297 38.8559 10.0635 38.628 10.2476 38.5307L27.4611 29.4324C28.1975 29.0432 29.0517 28.9398 29.8597 29.1421L38.2649 31.2463C39.1952 31.4792 39.9826 32.0966 40.4308 32.9444L54.083 58.7739C54.1805 58.9582 54.11 59.1867 53.9257 59.2841Z" fill="white" stroke="#B7C2CE" stroke-width="1.2449" stroke-linejoin="round"/>
5
+ <path d="M31.3102 35.7361L27.8454 29.0298C27.7662 28.8764 27.9055 28.7014 28.0728 28.7443L40.1129 31.8314C40.2901 31.8768 40.3184 32.1165 40.1567 32.2019L32.6659 36.1612C32.1744 36.421 31.5653 36.23 31.3102 35.7361Z" fill="#B7C2CE"/>
6
+ <rect x="14.4072" y="40.1565" width="14" height="1" rx="0.5" transform="rotate(-27.8589 14.4072 40.1565)" fill="#B7C2CE"/>
7
+ <rect x="15.8074" y="42.8057" width="8" height="1" rx="0.5" transform="rotate(-27.8589 15.8074 42.8057)" fill="#B7C2CE"/>
8
+ <g clip-path="url(#clip0_1377_37168)">
9
+ <path d="M39.3325 42.6381C38.7095 41.968 37.7681 41.6777 36.8758 41.8802C35.2426 42.244 29.5348 45.2608 29.5348 45.2608C29.5348 45.2608 23.8272 48.2776 22.5989 49.4074C21.9439 50.0224 21.6464 50.9868 21.8492 51.879C22.2278 53.5043 23.7918 56.4633 23.7918 56.4633C23.7918 56.4633 25.3637 59.4372 26.4854 60.6506C27.1086 61.3205 28.0498 61.6109 28.9421 61.4083C30.5904 61.0368 36.2831 58.0278 36.2831 58.0278C36.2831 58.0278 41.9907 55.0111 43.2191 53.8813C43.8891 53.2581 44.1794 52.3169 43.9769 51.4246C43.5981 49.7993 42.0342 46.8404 42.0342 46.8404C42.0342 46.8404 40.4773 43.8584 39.3325 42.6381ZM32.5365 55.3385L29.6468 49.8713L35.8379 50.0962L32.5365 55.3385Z" fill="#B7C2CE"/>
10
+ </g>
11
+ <path d="M77.9458 62.876L49.0511 60.4324C48.843 60.4148 48.6887 60.2316 48.7068 60.0236L51.989 22.162C52.007 21.9545 52.1895 21.8008 52.397 21.8184L71.7978 23.4591C72.6277 23.5292 73.4025 23.9036 73.9732 24.5103L79.9103 30.8211C80.5674 31.5196 80.8966 32.4645 80.8158 33.42L78.3539 62.5316C78.3363 62.7394 78.1536 62.8936 77.9458 62.876Z" fill="white" stroke="#B7C2CE" stroke-width="1.2449" stroke-linejoin="round"/>
12
+ <path d="M71.6321 30.8431L72.3386 23.3278C72.3548 23.1559 72.5666 23.0839 72.6842 23.2103L81.1495 32.3117C81.274 32.4456 81.1684 32.6626 80.9862 32.6472L72.5435 31.9332C71.9895 31.8863 71.5801 31.3966 71.6321 30.8431Z" fill="#B7C2CE"/>
13
+ <rect x="55.0195" y="25.4333" width="14" height="1" rx="0.5" transform="rotate(4.83392 55.0195 25.4333)" fill="#B7C2CE"/>
14
+ <rect x="54.7666" y="28.4226" width="14" height="1" rx="0.5" transform="rotate(4.83392 54.7666 28.4226)" fill="#B7C2CE"/>
15
+ <rect x="52.5757" y="54.3302" width="14" height="1" rx="0.5" transform="rotate(4.83392 52.5757 54.3302)" fill="#B7C2CE"/>
16
+ <rect x="54.5139" y="31.412" width="12.019" height="1" rx="0.5" transform="rotate(4.83392 54.5139 31.412)" fill="#B7C2CE"/>
17
+ <rect x="52.323" y="57.3195" width="24" height="1" rx="0.5" transform="rotate(4.83392 52.323 57.3195)" fill="#B7C2CE"/>
18
+ <rect x="54.0925" y="36.3942" width="24" height="16" rx="1" transform="rotate(4.83392 54.0925 36.3942)" fill="#EBEEF1"/>
19
+ <circle cx="59.734" cy="40.8855" r="2" transform="rotate(4.83392 59.734 40.8855)" fill="#B7C2CE"/>
20
+ <path d="M59.972 45.3826L55.6559 49.7534C55.358 50.055 55.5471 50.5672 55.9695 50.6029L63.8065 51.2657C64.2289 51.3014 64.5013 50.8282 64.2583 50.4809L60.7375 45.4473C60.5585 45.1914 60.1914 45.1604 59.972 45.3826Z" fill="#B7C2CE"/>
21
+ <path d="M67.6391 43.9517L60.7454 50.1619C60.4201 50.4548 60.6017 50.9947 61.0379 51.0316L73.6845 52.1011C74.1207 52.138 74.3903 51.6363 74.1189 51.2928L68.366 44.0132C68.1869 43.7866 67.8537 43.7584 67.6391 43.9517Z" fill="white"/>
22
+ <path d="M91.3628 73.6899L70.1723 56.9614C70.0083 56.832 69.9806 56.5941 70.1104 56.4304L92.4817 28.2208C92.6111 28.0576 92.8481 28.03 93.0115 28.159L106.724 38.984C107.378 39.5001 107.818 40.2395 107.959 41.0603L109.434 49.5985C109.597 50.5435 109.351 51.5133 108.756 52.2661L91.893 73.6275C91.7638 73.7911 91.5264 73.8191 91.3628 73.6899Z" fill="white" stroke="#B7C2CE" stroke-width="1.2449" stroke-linejoin="round"/>
23
+ <path d="M102.515 45.0533L107.247 39.1726C107.356 39.038 107.572 39.0947 107.6 39.2651L109.646 51.5252C109.676 51.7056 109.468 51.8284 109.325 51.7151L102.674 46.4652C102.238 46.1207 102.166 45.4864 102.515 45.0533Z" fill="#B7C2CE"/>
24
+ <rect x="93.209" y="32.618" width="12" height="1" rx="0.5" transform="rotate(38.2887 93.209 32.618)" fill="#B7C2CE"/>
25
+ <rect x="91.3501" y="34.9728" width="5" height="1" rx="0.5" transform="rotate(38.2887 91.3501 34.9728)" fill="#B7C2CE"/>
26
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M86.517 42.3053L85.0454 44.1695L89.6567 47.8098L91.1283 45.9456L86.517 42.3053ZM84.5807 44.7582L89.192 48.3985L87.7978 50.1645L83.1865 46.5242L84.5807 44.7582ZM89.7806 48.8632L88.3865 50.6292L93.2921 54.5018L94.6863 52.7358L89.7806 48.8632ZM95.2749 53.2005L93.8808 54.9666L98.4921 58.6068L99.8862 56.8408L95.2749 53.2005ZM92.8274 55.0905L87.9218 51.2179L86.5276 52.9839L91.4332 56.8565L92.8274 55.0905ZM92.0219 57.3213L93.4161 55.5552L98.0273 59.1955L96.6332 60.9616L92.0219 57.3213ZM90.9685 57.4452L86.0629 53.5726L84.6687 55.3386L89.5744 59.2112L90.9685 57.4452ZM90.163 59.676L91.5572 57.9099L96.1685 61.5502L94.7743 63.3162L90.163 59.676ZM89.1096 59.7999L84.204 55.9273L82.7324 57.7914L87.638 61.664L89.1096 59.7999ZM88.2267 62.1288L89.6983 60.2646L94.3096 63.9049L92.838 65.769L88.2267 62.1288ZM95.7397 52.6119L97.2113 50.7477L101.823 54.388L100.351 56.2522L95.7397 52.6119ZM96.6226 50.283L95.151 52.1471L90.2454 48.2745L91.717 46.4104L96.6226 50.283ZM97.676 50.1591L102.483 53.9543C102.7 54.1254 102.737 54.4398 102.566 54.6565L100.94 56.7169L100.475 57.3055L99.0807 59.0716L98.616 59.6602L97.2219 61.4263L96.7571 62.0149L95.363 63.781L94.8983 64.3696L93.2718 66.43C93.1007 66.6467 92.7862 66.6837 92.5695 66.5126L87.762 62.7174L87.1733 62.2527L82.2677 58.3801L81.679 57.9153L76.8715 54.1201C76.6548 53.949 76.6178 53.6346 76.7889 53.4179L80.2743 49.0028L80.739 48.4142L82.1331 46.6481L82.5979 46.0595L83.992 44.2934L84.4567 43.7048L86.0833 41.6444C86.2544 41.4277 86.5688 41.3907 86.7855 41.5618L97.0873 49.6943L97.676 50.1591ZM82.7218 47.1129L87.3331 50.7531L85.9389 52.5192L81.3277 48.8789L82.7218 47.1129ZM80.8629 49.4675L85.4742 53.1078L84.0801 54.8739L79.4688 51.2336L80.8629 49.4675ZM79.0041 51.8222L83.6154 55.4625L82.1437 57.3267L77.5325 53.6864L79.0041 51.8222Z" fill="#B7C2CE"/>
27
+ <path d="M24.8775 68.2133C24.7556 65.7149 26.7484 63.6224 29.2498 63.6224H57.4499C59.7041 63.6224 61.7516 62.3086 62.6908 60.2593C63.4273 58.6526 65.0326 57.6224 66.8001 57.6224H93.8262C95.7479 57.6224 97.2824 59.2236 97.2007 61.1436L95.6226 98.2286C95.5001 101.107 93.1309 103.378 90.2499 103.378H31.7145C28.8464 103.378 26.483 101.127 26.3433 98.262L24.8775 68.2133Z" fill="white" stroke="#B7C2CE" stroke-width="1.2449"/>
28
+ <circle cx="62.5" cy="95.5" r="14.8776" fill="#DDE2E8" stroke="#778DA8" stroke-width="1.2449"/>
29
+ <mask id="path-26-outside-1_1377_37168" maskUnits="userSpaceOnUse" x="54" y="87" width="17" height="17" fill="black">
30
+ <rect fill="white" x="54" y="87" width="17" height="17"/>
31
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M64 90.5C64 89.6716 63.3284 89 62.5 89C61.6716 89 61 89.6716 61 90.5V94H57.5C56.6716 94 56 94.6716 56 95.5C56 96.3284 56.6716 97 57.5 97H61V100.5C61 101.328 61.6716 102 62.5 102C63.3284 102 64 101.328 64 100.5V97H67.5C68.3284 97 69 96.3284 69 95.5C69 94.6716 68.3284 94 67.5 94H64V90.5Z"/>
32
+ </mask>
33
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M64 90.5C64 89.6716 63.3284 89 62.5 89C61.6716 89 61 89.6716 61 90.5V94H57.5C56.6716 94 56 94.6716 56 95.5C56 96.3284 56.6716 97 57.5 97H61V100.5C61 101.328 61.6716 102 62.5 102C63.3284 102 64 101.328 64 100.5V97H67.5C68.3284 97 69 96.3284 69 95.5C69 94.6716 68.3284 94 67.5 94H64V90.5Z" fill="white"/>
34
+ <path d="M61 94V95.2449H62.2449V94H61ZM61 97H62.2449V95.7551H61V97ZM64 97V95.7551H62.7551V97H64ZM64 94H62.7551V95.2449H64V94ZM62.5 90.2449C62.6409 90.2449 62.7551 90.3591 62.7551 90.5H65.2449C65.2449 88.984 64.016 87.7551 62.5 87.7551V90.2449ZM62.2449 90.5C62.2449 90.3591 62.3591 90.2449 62.5 90.2449V87.7551C60.984 87.7551 59.7551 88.984 59.7551 90.5H62.2449ZM62.2449 94V90.5H59.7551V94H62.2449ZM57.5 95.2449H61V92.7551H57.5V95.2449ZM57.2449 95.5C57.2449 95.3591 57.3591 95.2449 57.5 95.2449V92.7551C55.984 92.7551 54.7551 93.984 54.7551 95.5H57.2449ZM57.5 95.7551C57.3591 95.7551 57.2449 95.6409 57.2449 95.5H54.7551C54.7551 97.016 55.984 98.2449 57.5 98.2449V95.7551ZM61 95.7551H57.5V98.2449H61V95.7551ZM62.2449 100.5V97H59.7551V100.5H62.2449ZM62.5 100.755C62.3591 100.755 62.2449 100.641 62.2449 100.5H59.7551C59.7551 102.016 60.984 103.245 62.5 103.245V100.755ZM62.7551 100.5C62.7551 100.641 62.6409 100.755 62.5 100.755V103.245C64.016 103.245 65.2449 102.016 65.2449 100.5H62.7551ZM62.7551 97V100.5H65.2449V97H62.7551ZM67.5 95.7551H64V98.2449H67.5V95.7551ZM67.7551 95.5C67.7551 95.6409 67.6409 95.7551 67.5 95.7551V98.2449C69.016 98.2449 70.2449 97.016 70.2449 95.5H67.7551ZM67.5 95.2449C67.6409 95.2449 67.7551 95.3591 67.7551 95.5H70.2449C70.2449 93.984 69.016 92.7551 67.5 92.7551V95.2449ZM64 95.2449H67.5V92.7551H64V95.2449ZM62.7551 90.5V94H65.2449V90.5H62.7551Z" fill="#778DA8" mask="url(#path-26-outside-1_1377_37168)"/>
35
+ <defs>
36
+ <clipPath id="clip0_1377_37168">
37
+ <rect width="22" height="22" fill="white" transform="translate(18.144 47.2261) rotate(-27.8589)"/>
38
+ </clipPath>
39
+ </defs>
40
+ </svg>
@@ -0,0 +1,43 @@
1
+ <svg width="125" height="124" viewBox="0 0 125 124" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle opacity="0.5" cx="60.5" cy="72.614" r="43" fill="#EBEEF1" stroke="#B7C2CE"/>
3
+ <path d="M27.5 57.114C27.5 55.181 29.067 53.614 31 53.614H48.3967C49.8651 53.614 51.2412 54.3305 52.0833 55.5334L52.5975 56.2681C53.6267 57.7384 55.3086 58.614 57.1033 58.614H90.5825C92.4871 58.614 94.042 60.1369 94.0817 62.0411L94.4895 81.614H27.5V57.114Z" fill="#EBEEF1" stroke="#B7C2CE"/>
4
+ <path d="M44.9829 56.5065L19.3458 70.0571C19.1013 70.1863 18.7983 70.0925 18.6696 69.8477L0.981495 36.2113C0.853161 35.9673 0.946615 35.6654 1.19039 35.5366L18.4039 26.4383C19.167 26.035 20.0522 25.9278 20.8894 26.1374L29.2946 28.2417C30.2587 28.483 31.0746 29.1228 31.539 30.0014L45.1913 55.8308C45.3203 56.0749 45.227 56.3775 44.9829 56.5065Z" fill="white" stroke="#B7C2CE" stroke-linejoin="round"/>
5
+ <path d="M22.3102 32.8503L18.8454 26.1439C18.7662 25.9905 18.9055 25.8155 19.0728 25.8584L31.1129 28.9455C31.2901 28.9909 31.3184 29.2306 31.1567 29.316L23.6659 33.2754C23.1744 33.5351 22.5653 33.3442 22.3102 32.8503Z" fill="#B7C2CE"/>
6
+ <rect x="5.40723" y="37.2706" width="14" height="1" rx="0.5" transform="rotate(-27.8589 5.40723 37.2706)" fill="#B7C2CE"/>
7
+ <rect x="6.80737" y="39.9198" width="8" height="1" rx="0.5" transform="rotate(-27.8589 6.80737 39.9198)" fill="#B7C2CE"/>
8
+ <g clip-path="url(#clip0_1359_36875)">
9
+ <path d="M30.3325 39.7522C29.7095 39.0821 28.7681 38.7918 27.8758 38.9943C26.2426 39.3581 20.5348 42.375 20.5348 42.375C20.5348 42.375 14.8272 45.3917 13.5989 46.5216C12.9439 47.1366 12.6464 48.101 12.8492 48.9931C13.2278 50.6184 14.7918 53.5774 14.7918 53.5774C14.7918 53.5774 16.3637 56.5513 17.4854 57.7647C18.1086 58.4346 19.0498 58.725 19.9421 58.5224C21.5904 58.1509 27.2831 55.142 27.2831 55.142C27.2831 55.142 32.9907 52.1252 34.2191 50.9954C34.8891 50.3723 35.1794 49.431 34.9769 48.5387C34.5981 46.9134 33.0342 43.9545 33.0342 43.9545C33.0342 43.9545 31.4773 40.9725 30.3325 39.7522ZM23.5365 52.4527L20.6468 46.9854L26.8379 47.2104L23.5365 52.4527Z" fill="#B7C2CE"/>
10
+ </g>
11
+ <path d="M76.9355 54.998L48.0408 52.5544C47.7652 52.5311 47.5609 52.2885 47.5848 52.013L50.867 14.1514C50.8908 13.8767 51.1325 13.6731 51.4073 13.6963L70.8081 15.337C71.6681 15.4098 72.471 15.7977 73.0624 16.4264L78.9994 22.7372C79.6804 23.461 80.0215 24.4401 79.9378 25.4304L77.4759 54.5419C77.4526 54.8171 77.2107 55.0213 76.9355 54.998Z" fill="white" stroke="#B7C2CE" stroke-linejoin="round"/>
12
+ <path d="M70.6321 22.8431L71.3386 15.3278C71.3548 15.1559 71.5666 15.0839 71.6842 15.2103L80.1495 24.3117C80.274 24.4456 80.1684 24.6626 79.9862 24.6472L71.5435 23.9332C70.9895 23.8863 70.5801 23.3966 70.6321 22.8431Z" fill="#B7C2CE"/>
13
+ <rect x="54.0195" y="17.4333" width="14" height="1" rx="0.5" transform="rotate(4.83392 54.0195 17.4333)" fill="#B7C2CE"/>
14
+ <rect x="53.7666" y="20.4226" width="14" height="1" rx="0.5" transform="rotate(4.83392 53.7666 20.4226)" fill="#B7C2CE"/>
15
+ <rect x="51.5757" y="46.3302" width="14" height="1" rx="0.5" transform="rotate(4.83392 51.5757 46.3302)" fill="#B7C2CE"/>
16
+ <rect x="53.5139" y="23.412" width="12.019" height="1" rx="0.5" transform="rotate(4.83392 53.5139 23.412)" fill="#B7C2CE"/>
17
+ <rect x="51.323" y="49.3195" width="24" height="1" rx="0.5" transform="rotate(4.83392 51.323 49.3195)" fill="#B7C2CE"/>
18
+ <rect x="53.0925" y="28.3942" width="24" height="16" rx="1" transform="rotate(4.83392 53.0925 28.3942)" fill="#EBEEF1"/>
19
+ <circle cx="58.734" cy="32.8855" r="2" transform="rotate(4.83392 58.734 32.8855)" fill="#B7C2CE"/>
20
+ <path d="M58.972 37.3826L54.6559 41.7534C54.358 42.055 54.5471 42.5672 54.9695 42.6029L62.8065 43.2657C63.2289 43.3014 63.5013 42.8282 63.2583 42.4809L59.7375 37.4473C59.5585 37.1914 59.1914 37.1604 58.972 37.3826Z" fill="#B7C2CE"/>
21
+ <path d="M66.6391 35.9517L59.7454 42.1619C59.4201 42.4548 59.6017 42.9947 60.0379 43.0316L72.6845 44.1011C73.1207 44.138 73.3903 43.6363 73.1189 43.2928L67.366 36.0132C67.1869 35.7866 66.8537 35.7584 66.6391 35.9517Z" fill="white"/>
22
+ <path d="M102.287 71.9L81.0964 55.1715C80.8793 55.0001 80.8426 54.6851 81.0144 54.4684L103.386 26.2587C103.557 26.0427 103.871 26.0061 104.087 26.1769L117.8 37.0019C118.477 37.5367 118.933 38.3029 119.08 39.1535L120.554 47.6917C120.723 48.671 120.468 49.6759 119.853 50.4559L102.989 71.8173C102.818 72.0341 102.504 72.0711 102.287 71.9Z" fill="white" stroke="#B7C2CE" stroke-linejoin="round"/>
23
+ <path d="M113.515 43.1673L118.247 37.2866C118.356 37.1521 118.572 37.2087 118.6 37.3791L120.646 49.6392C120.676 49.8196 120.468 49.9424 120.325 49.8291L113.674 44.5792C113.238 44.2347 113.166 43.6004 113.515 43.1673Z" fill="#B7C2CE"/>
24
+ <rect x="104.209" y="30.7321" width="12" height="1" rx="0.5" transform="rotate(38.2887 104.209 30.7321)" fill="#B7C2CE"/>
25
+ <rect width="5" height="1" rx="0.5" transform="matrix(0.784898 0.619625 -0.619623 0.784899 102.35 33.0868)" fill="#B7C2CE"/>
26
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M97.517 40.4194L96.0454 42.2835L100.657 45.9238L102.128 44.0597L97.517 40.4194ZM95.5807 42.8722L100.192 46.5125L98.7978 48.2785L94.1865 44.6382L95.5807 42.8722ZM100.781 46.9772L99.3865 48.7432L104.292 52.6158L105.686 50.8498L100.781 46.9772ZM106.275 51.3145L104.881 53.0806L109.492 56.7209L110.886 54.9548L106.275 51.3145ZM103.827 53.2045L98.9218 49.3319L97.5276 51.0979L102.433 54.9706L103.827 53.2045ZM103.022 55.4353L104.416 53.6692L109.027 57.3095L107.633 59.0756L103.022 55.4353ZM101.969 55.5592L97.0629 51.6866L95.6687 53.4526L100.574 57.3252L101.969 55.5592ZM101.163 57.79L102.557 56.0239L107.168 59.6642L105.774 61.4303L101.163 57.79ZM100.11 57.9139L95.204 54.0413L93.7324 55.9054L98.638 59.778L100.11 57.9139ZM99.2267 60.2428L100.698 58.3786L105.31 62.0189L103.838 63.8831L99.2267 60.2428ZM98.762 60.8314L98.1733 60.3667L93.2677 56.4941L92.679 56.0294L87.8715 52.2342C87.6548 52.0631 87.6178 51.7486 87.7889 51.5319L91.2743 47.1168L91.739 46.5282L93.1331 44.7621L93.5979 44.1735L94.992 42.4075L95.4567 41.8188L97.0833 39.7584C97.2544 39.5417 97.5688 39.5047 97.7855 39.6758L102.593 43.471L103.182 43.9357L113.483 52.0683C113.7 52.2394 113.737 52.5538 113.566 52.7705L111.94 54.8309L111.475 55.4196L110.081 57.1856L109.616 57.7742L108.222 59.5403L107.757 60.129L106.363 61.895L105.898 62.4836L104.272 64.544C104.101 64.7607 103.786 64.7977 103.569 64.6266L98.762 60.8314ZM106.74 50.7259L108.211 48.8617L112.823 52.502L111.351 54.3662L106.74 50.7259ZM107.623 48.397L106.151 50.2612L101.245 46.3885L102.717 44.5244L107.623 48.397ZM93.7218 45.2269L98.3331 48.8672L96.9389 50.6332L92.3277 46.9929L93.7218 45.2269ZM91.863 47.5816L96.4742 51.2219L95.0801 52.9879L90.4688 49.3476L91.863 47.5816ZM90.0041 49.9363L94.6154 53.5765L93.1437 55.4407L88.5325 51.8004L90.0041 49.9363Z" fill="#B7C2CE"/>
27
+ <rect x="45.9927" y="6.55774" width="1" height="5" rx="0.5" transform="rotate(-24.9327 45.9927 6.55774)" fill="#B7C2CE"/>
28
+ <rect x="41" y="14.0906" width="1" height="5" rx="0.5" transform="rotate(-77.5858 41 14.0906)" fill="#B7C2CE"/>
29
+ <rect x="55.8228" y="6" width="1" height="5" rx="0.5" transform="rotate(31.6718 55.8228 6)" fill="#B7C2CE"/>
30
+ <path d="M21.2617 77.7166C20.8968 75.0164 22.9964 72.614 25.7211 72.614H56.4499C58.6563 72.614 60.6602 71.3281 61.5795 69.3223C62.3359 67.6721 63.9847 66.614 65.8001 66.614H95.5079C97.6011 66.614 99.2263 68.4391 98.9845 70.5183L95.1204 103.749C94.798 106.522 92.4491 108.614 89.6572 108.614H30.2437C27.4908 108.614 25.1619 106.579 24.7933 103.851L21.2617 77.7166Z" fill="white" stroke="#B7C2CE"/>
31
+ <circle cx="61.5" cy="100.614" r="16" fill="#DDE2E8" stroke="#778DA8"/>
32
+ <mask id="path-29-outside-1_1359_36875" maskUnits="userSpaceOnUse" x="54" y="93.114" width="15" height="15" fill="black">
33
+ <rect fill="white" x="54" y="93.114" width="15" height="15"/>
34
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M63 95.614C63 94.7856 62.3284 94.114 61.5 94.114C60.6716 94.114 60 94.7856 60 95.614V99.114H56.5C55.6716 99.114 55 99.7856 55 100.614C55 101.442 55.6716 102.114 56.5 102.114H60V105.614C60 106.442 60.6716 107.114 61.5 107.114C62.3284 107.114 63 106.442 63 105.614V102.114H66.5C67.3284 102.114 68 101.442 68 100.614C68 99.7856 67.3284 99.114 66.5 99.114H63V95.614Z"/>
35
+ </mask>
36
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M63 95.614C63 94.7856 62.3284 94.114 61.5 94.114C60.6716 94.114 60 94.7856 60 95.614V99.114H56.5C55.6716 99.114 55 99.7856 55 100.614C55 101.442 55.6716 102.114 56.5 102.114H60V105.614C60 106.442 60.6716 107.114 61.5 107.114C62.3284 107.114 63 106.442 63 105.614V102.114H66.5C67.3284 102.114 68 101.442 68 100.614C68 99.7856 67.3284 99.114 66.5 99.114H63V95.614Z" fill="white"/>
37
+ <path d="M60 99.114V100.114H61V99.114H60ZM60 102.114H61V101.114H60V102.114ZM63 102.114V101.114H62V102.114H63ZM63 99.114H62V100.114H63V99.114ZM61.5 95.114C61.7761 95.114 62 95.3379 62 95.614H64C64 94.2333 62.8807 93.114 61.5 93.114V95.114ZM61 95.614C61 95.3379 61.2239 95.114 61.5 95.114V93.114C60.1193 93.114 59 94.2333 59 95.614H61ZM61 99.114V95.614H59V99.114H61ZM56.5 100.114H60V98.114H56.5V100.114ZM56 100.614C56 100.338 56.2239 100.114 56.5 100.114V98.114C55.1193 98.114 54 99.2333 54 100.614H56ZM56.5 101.114C56.2239 101.114 56 100.89 56 100.614H54C54 101.995 55.1193 103.114 56.5 103.114V101.114ZM60 101.114H56.5V103.114H60V101.114ZM61 105.614V102.114H59V105.614H61ZM61.5 106.114C61.2239 106.114 61 105.89 61 105.614H59C59 106.995 60.1193 108.114 61.5 108.114V106.114ZM62 105.614C62 105.89 61.7761 106.114 61.5 106.114V108.114C62.8807 108.114 64 106.995 64 105.614H62ZM62 102.114V105.614H64V102.114H62ZM66.5 101.114H63V103.114H66.5V101.114ZM67 100.614C67 100.89 66.7761 101.114 66.5 101.114V103.114C67.8807 103.114 69 101.995 69 100.614H67ZM66.5 100.114C66.7761 100.114 67 100.338 67 100.614H69C69 99.2333 67.8807 98.114 66.5 98.114V100.114ZM63 100.114H66.5V98.114H63V100.114ZM62 95.614V99.114H64V95.614H62Z" fill="#778DA8" mask="url(#path-29-outside-1_1359_36875)"/>
38
+ <defs>
39
+ <clipPath id="clip0_1359_36875">
40
+ <rect width="22" height="22" fill="white" transform="translate(9.14404 44.3402) rotate(-27.8589)"/>
41
+ </clipPath>
42
+ </defs>
43
+ </svg>
@@ -0,0 +1,159 @@
1
+ <svg width="324" height="162" viewBox="0 0 324 162" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_16536_26330)">
3
+ <path d="M215.845 27.9684C218.904 27.9684 221.384 25.5003 221.384 22.4556C221.384 19.411 218.904 16.9429 215.845 16.9429C212.786 16.9429 210.307 19.411 210.307 22.4556C210.307 25.5003 212.786 27.9684 215.845 27.9684Z" fill="#EAEEF9"/>
4
+ <path d="M113.671 31.8845C115.684 31.8845 117.315 30.2607 117.315 28.2577C117.315 26.2546 115.684 24.6309 113.671 24.6309C111.659 24.6309 110.027 26.2546 110.027 28.2577C110.027 30.2607 111.659 31.8845 113.671 31.8845Z" fill="#EAEEF9"/>
5
+ <path d="M103.615 38.5575C104.983 38.5575 106.092 37.4533 106.092 36.0912C106.092 34.7292 104.983 33.625 103.615 33.625C102.246 33.625 101.137 34.7292 101.137 36.0912C101.137 37.4533 102.246 38.5575 103.615 38.5575Z" fill="#EAEEF9"/>
6
+ <path d="M229.547 31.1599C230.835 31.1599 231.879 30.1207 231.879 28.8387C231.879 27.5568 230.835 26.5176 229.547 26.5176C228.259 26.5176 227.215 27.5568 227.215 28.8387C227.215 30.1207 228.259 31.1599 229.547 31.1599Z" fill="#EAEEF9"/>
7
+ <path d="M162.354 161C202.361 161 234.793 128.719 234.793 88.8982C234.793 49.0777 202.361 16.7969 162.354 16.7969C122.346 16.7969 89.9141 49.0777 89.9141 88.8982C89.9141 128.719 122.346 161 162.354 161Z" fill="#EAEEF9"/>
8
+ <g filter="url(#filter0_d_16536_26330)">
9
+ <path d="M149.672 54.3719L147.778 49.1492C147.34 47.8436 146.029 46.9731 144.717 46.9731H111.485C108.716 46.9731 106.529 49.1492 106.529 51.9056V125.893V113.707H219.489V61.4805C219.489 58.7241 217.302 56.548 214.533 56.548H152.733C151.421 56.548 150.11 55.6775 149.672 54.3719Z" fill="#CED7E2"/>
10
+ </g>
11
+ <g filter="url(#filter1_d_16536_26330)">
12
+ <path d="M135.535 42.7656L158.127 81.9354C158.855 83.241 158.418 84.9819 157.106 85.7073L118.627 107.178C117.316 107.903 115.567 107.468 114.838 106.163L86.4158 55.387C85.5413 54.0813 86.1243 52.3405 87.4361 51.6151L115.421 36.0923L135.535 42.7656Z" fill="white"/>
13
+ </g>
14
+ <path d="M115.129 46.9733L96.6185 57.2735C96.1812 57.5636 95.5982 57.4185 95.4524 56.9833C95.1609 56.5481 95.3067 55.9678 95.7439 55.8227L114.255 45.5225C114.692 45.2324 115.275 45.3775 115.421 45.8127C115.712 46.2479 115.566 46.8282 115.129 46.9733Z" fill="#CED7E2"/>
15
+ <path d="M106.239 57.8531L99.097 61.7701C98.6597 62.0603 98.0767 61.9152 97.931 61.48C97.6394 61.0448 97.7852 60.4645 98.2225 60.3194L105.219 56.4024C105.656 56.1123 106.239 56.2573 106.385 56.6926C106.822 56.9827 106.676 57.563 106.239 57.8531Z" fill="#E6EDF5"/>
16
+ <path d="M115.42 36.0923L121.542 46.9728C122.416 48.4235 124.457 49.0038 125.914 48.1334L135.68 42.7656" fill="#E6EDF5"/>
17
+ <path d="M137.721 66.7025C136.555 64.2363 134.952 61.4799 132.911 59.4489C131.891 58.4334 130.434 57.708 128.83 57.708C127.227 57.708 125.77 58.2883 124.166 59.0137C121.397 60.1742 118.773 61.4799 116.296 63.0757C113.963 64.3814 111.34 65.8321 109.591 68.0082C107.259 71.0547 108.571 74.2463 110.174 77.4379C111.34 79.9042 112.943 82.6606 114.984 84.6916C116.587 86.2874 118.773 86.8677 120.96 86.1423C123.729 85.417 128.976 82.5155 131.454 81.0648C133.64 79.7591 136.118 78.4535 137.721 76.5675C140.782 73.3759 139.616 70.1843 137.721 66.7025ZM118.919 70.0392C118.482 69.1688 118.773 68.5885 119.794 68.7336C122.563 68.8786 125.332 68.8786 127.956 69.0237C128.976 69.0237 129.268 69.604 128.83 70.4744C127.519 72.7956 126.207 75.1168 124.749 77.583C124.166 78.4535 123.583 78.4535 123.146 77.7281C123 77.2929 119.356 70.7646 118.919 70.0392Z" fill="#CED7E2"/>
18
+ <g filter="url(#filter2_d_16536_26330)">
19
+ <path d="M237.854 67.7181L212.201 100.795C211.327 101.955 209.724 102.1 208.557 101.23L176.492 76.1323C175.326 75.2619 175.18 73.6661 176.054 72.5055L209.432 30.2892C210.307 29.1286 211.91 28.9836 213.076 29.854L236.396 48.1332L237.854 67.7181Z" fill="white"/>
20
+ </g>
21
+ <path d="M195.295 80.1936L194.129 79.3232C193.837 79.0331 193.837 78.7429 194.129 78.4528C194.42 78.1626 194.712 78.1626 195.003 78.3077L196.169 79.1781C196.461 79.3232 196.461 79.7584 196.315 80.0486C196.024 80.3387 195.586 80.3387 195.295 80.1936Z" fill="#E3EAF2"/>
22
+ <path d="M192.088 77.583L185.238 72.2153C184.946 72.0702 184.946 71.635 185.092 71.3449C185.238 71.0547 185.675 71.0547 185.966 71.1998L192.817 76.5675C193.108 76.7126 193.108 77.1478 192.963 77.4379C192.817 77.7281 192.38 77.8732 192.088 77.583Z" fill="#E3EAF2"/>
23
+ <path d="M226.923 51.7593L211.473 39.7182C211.181 39.4281 211.035 38.9928 211.327 38.5576C211.618 38.2675 212.056 38.1224 212.493 38.4125L227.943 50.4536C228.234 50.7438 228.38 51.179 228.089 51.6142C227.797 52.0494 227.36 52.0494 226.923 51.7593Z" fill="#CED7E2"/>
24
+ <path d="M214.533 47.9876L208.703 43.3453C208.412 43.0551 208.266 42.6199 208.557 42.1847C208.849 41.7495 209.286 41.7495 209.723 42.0396L215.554 46.682C215.845 46.9721 215.991 47.4073 215.699 47.8425C215.408 48.2778 214.825 48.2778 214.533 47.9876Z" fill="#CED7E2"/>
25
+ <path d="M236.396 48.1333L229.254 57.1278C228.234 58.4335 228.525 60.3194 229.837 61.335L237.999 67.7182" fill="#E6EDF5"/>
26
+ <path d="M227.943 69.7489L219.926 63.5107L211.618 56.9825L203.893 50.8894C203.019 50.164 201.707 50.3091 201.124 51.3246L190.047 65.2516C189.318 66.1221 189.464 67.4277 190.338 68.008L214.533 87.0126C215.408 87.7379 216.72 87.5929 217.303 86.5774L228.38 72.6503C228.963 71.6348 228.817 70.4743 227.943 69.7489ZM202.29 69.6038L204.768 66.4122L212.201 72.2151L209.723 75.4067L202.29 69.6038ZM208.995 76.2772L206.663 79.1786L199.229 73.3757L201.561 70.4743L208.995 76.2772ZM215.408 68.1531L212.93 71.3447L205.497 65.5418L207.974 62.3502L215.408 68.1531ZM208.703 61.3347L211.327 58.143L218.76 63.946L216.282 67.1376L208.703 61.3347ZM222.113 78.4533L213.95 72.0701L216.428 68.8785L224.59 75.2617L222.113 78.4533ZM204.622 64.6713L196.751 58.4332L199.229 55.2416L207.1 61.4797L204.622 64.6713ZM195.877 59.4487L203.748 65.6868L201.27 68.8785L193.399 62.6403L195.877 59.4487ZM213.222 72.9405L221.384 79.3237L218.906 82.5153L210.744 76.1321L213.222 72.9405ZM227.36 71.7799L225.319 74.3912L217.157 68.008L219.635 64.8164L227.214 70.7644C227.651 70.9095 227.651 71.4898 227.36 71.7799ZM203.019 51.6148L210.306 57.4177L207.829 60.6093L199.958 54.3711L201.999 51.7598C202.144 51.4697 202.727 51.4697 203.019 51.6148ZM190.921 65.8319L192.67 63.6558L200.541 69.894L198.209 72.7954L190.921 66.9925C190.63 66.7024 190.63 66.1221 190.921 65.8319ZM215.262 85.852L207.683 79.904L210.015 77.0025L218.177 83.3858L216.282 85.7069C215.991 86.1421 215.554 86.1421 215.262 85.852Z" fill="#E3EAF2"/>
27
+ <g filter="url(#filter3_d_16536_26330)">
28
+ <path d="M195.732 35.2222L191.505 81.7906C191.359 83.3864 189.902 84.547 188.299 84.4019L142.823 79.7596C141.22 79.6145 140.054 78.1638 140.2 76.568L146.321 16.7979C146.467 15.2021 147.925 14.0415 149.528 14.1866L182.468 17.5232L195.732 35.2222Z" fill="white"/>
29
+ </g>
30
+ <path d="M182.614 17.6685L181.302 30.4349C181.156 32.1758 182.468 33.9166 184.363 34.0617L195.877 35.2223" fill="#E6EDF5"/>
31
+ <path d="M185.383 69.3143L148.07 65.1072C147.195 64.9621 146.467 64.2367 146.612 63.3663L149.382 39.5743C149.527 38.7039 150.256 37.9785 151.131 38.1236L188.444 42.1856C189.318 42.3307 190.047 43.056 189.901 43.9265L187.132 67.7185C186.986 68.734 186.257 69.3143 185.383 69.3143Z" fill="#E6EDF5"/>
32
+ <path d="M168.621 63.6563L151.422 61.6253L161.042 52.9209L168.621 63.6563Z" fill="#CED7E2"/>
33
+ <path d="M182.904 65.2518L157.98 62.3503L172.119 49.874L182.904 65.2518Z" fill="white"/>
34
+ <path d="M159.731 49.1489C161.583 49.1489 163.084 47.6551 163.084 45.8123C163.084 43.9695 161.583 42.4756 159.731 42.4756C157.88 42.4756 156.379 43.9695 156.379 45.8123C156.379 47.6551 157.88 49.1489 159.731 49.1489Z" fill="url(#paint0_linear_16536_26330)"/>
35
+ <path d="M174.16 25.647L151.568 23.0357C151.276 23.0357 150.985 22.7455 151.131 22.4554V22.1652C151.131 21.8751 151.422 21.5849 151.714 21.73L174.305 24.3413C174.597 24.3413 174.888 24.6315 174.743 24.9216V25.2117C174.743 25.5019 174.451 25.792 174.16 25.647Z" fill="#CED7E2"/>
36
+ <path d="M174.014 29.8545L151.13 27.2432C150.839 27.2432 150.547 26.953 150.693 26.6629V26.3727C150.693 26.0826 150.985 25.7924 151.276 25.9375L174.159 28.5488C174.451 28.5488 174.742 28.839 174.597 29.1291V29.4193C174.597 29.7094 174.305 29.8545 174.014 29.8545Z" fill="#E6EDF5"/>
37
+ <path d="M174.742 73.8114L146.32 70.6198C145.883 70.6198 145.591 70.1846 145.737 69.7494C145.737 69.3142 146.174 69.024 146.612 69.1691L174.888 72.3607C175.325 72.3607 175.617 72.7959 175.471 73.2311C175.471 73.6664 175.179 73.9565 174.742 73.8114Z" fill="#E6EDF5"/>
38
+ <path d="M170.661 33.9156L150.693 31.5944C150.256 31.5944 149.964 31.1592 150.11 30.724C150.11 30.2888 150.547 29.9986 150.985 30.1437L170.953 32.4649C171.39 32.4649 171.682 32.9001 171.536 33.3353C171.39 33.6254 171.099 33.9156 170.661 33.9156Z" fill="#E6EDF5"/>
39
+ <path d="M185.237 79.3237L145.738 74.6813C145.301 74.6813 145.009 74.2461 145.155 73.8109C145.155 73.3757 145.592 73.0855 146.03 73.2306L185.529 77.7279C185.966 77.7279 186.258 78.1631 186.112 78.5983C186.112 79.0335 185.675 79.3237 185.237 79.3237Z" fill="#E6EDF5"/>
40
+ <path d="M185.82 75.1172L178.096 74.2468C177.658 74.2468 177.367 73.8116 177.513 73.3763C177.513 72.9411 177.95 72.651 178.387 72.796L186.112 73.6665C186.549 73.6665 186.841 74.1017 186.695 74.5369C186.549 74.9721 186.258 75.2623 185.82 75.1172Z" fill="url(#paint1_linear_16536_26330)"/>
41
+ <g filter="url(#filter4_d_16536_26330)">
42
+ <path d="M221.788 82.3596L213.418 119.553C212.895 121.73 210.279 123.434 207.14 123.434H116.635C113.496 123.434 110.88 121.825 110.357 119.553L103.556 89.0791C103.033 86.8077 105.518 84.631 108.788 84.631H159.795C161.364 84.631 162.672 83.8739 163.195 82.8328L164.634 79.6151C165.157 78.574 166.465 77.8169 168.034 77.8169H216.687C219.826 77.9115 222.311 79.9936 221.788 82.3596Z" fill="white"/>
43
+ </g>
44
+ <g filter="url(#filter5_d_16536_26330)">
45
+ <path d="M228.38 77.2931L219.052 134.307C218.469 137.644 215.554 140.255 212.056 140.255H111.194C107.696 140.255 104.781 137.789 104.198 134.307L96.6188 87.5933C96.0358 84.1115 98.8051 80.7748 102.449 80.7748H159.293C161.042 80.7748 162.5 79.6143 163.083 78.0185L164.686 73.086C165.269 71.4902 166.726 70.3296 168.475 70.3296H222.696C226.194 70.4747 228.963 73.6663 228.38 77.2931Z" fill="white"/>
46
+ </g>
47
+ <g filter="url(#filter6_d_16536_26330)">
48
+ <path d="M189.131 132.07C189.131 133.432 188.995 134.658 188.859 136.021C187.5 145.013 181.386 152.371 173.098 155.504C170.245 156.594 167.256 157.139 164.131 157.139C155.435 157.139 147.691 152.643 143.207 145.831C140.625 141.88 139.131 137.111 139.131 132.07C139.131 118.172 150.272 107 164.131 107C177.854 107 189.131 118.309 189.131 132.07Z" fill="url(#paint2_linear_16536_26330)"/>
49
+ </g>
50
+ <path d="M186.316 143.759C186.538 151.075 180.549 157.283 173.228 157.504H169.679L153.484 141.321L167.238 125.359L172.341 122.477L186.095 136.222L186.316 143.759Z" fill="url(#paint3_linear_16536_26330)"/>
51
+ <path d="M168.499 131.781L173.17 127.084C174.504 125.743 174.504 123.73 173.17 122.388C171.835 121.046 169.833 121.046 168.499 122.388L163.827 127.084L159.156 122.388C157.822 121.046 155.82 121.046 154.485 122.388C153.151 123.73 153.151 125.743 154.485 127.084L159.156 131.781L154.485 136.477C153.151 137.819 153.151 139.831 154.485 141.173C155.153 141.844 156.042 142.068 156.932 142.068C157.822 142.068 158.712 141.844 159.379 141.173L164.05 136.477L168.721 141.173C170.056 142.515 172.057 142.515 173.392 141.173C174.059 140.502 174.282 139.608 174.282 138.713C174.282 137.819 174.059 136.924 173.392 136.253L168.499 131.781Z" fill="url(#paint4_linear_16536_26330)"/>
52
+ <path d="M144.28 8.23792C143.697 8.52806 143.114 8.23792 142.823 7.65763L140.345 1.56456C140.053 0.984264 140.345 0.403972 140.928 0.113826C141.511 -0.17632 142.094 0.113826 142.385 0.694118L144.863 6.78719C145.155 7.51255 144.863 8.09284 144.28 8.23792Z" fill="url(#paint5_linear_16536_26330)"/>
53
+ <path d="M139.763 14.0414C139.471 14.3316 139.18 14.4767 138.742 14.3316L132.475 13.171C131.892 13.0259 131.455 12.4456 131.601 11.8654C131.746 11.2851 132.329 10.8498 132.912 10.9949L139.18 12.1555C139.763 12.3006 140.2 12.8809 140.054 13.4612C139.908 13.7513 139.908 13.8964 139.763 14.0414Z" fill="url(#paint6_linear_16536_26330)"/>
54
+ <path d="M152.588 7.51291C152.443 7.51291 152.297 7.36784 152.005 7.36784C151.568 6.93262 151.422 6.35233 151.86 5.77204L155.795 0.694478C156.232 0.259259 156.815 0.114186 157.398 0.549405C157.836 0.984624 157.981 1.56492 157.544 2.14521L153.609 7.22277C153.317 7.36784 152.88 7.51291 152.588 7.51291Z" fill="url(#paint7_linear_16536_26330)"/>
55
+ <path d="M141.51 102.826H110.027C109.444 102.826 108.861 102.39 108.861 101.665C108.861 100.94 109.299 100.504 110.027 100.504H141.656C142.239 100.504 142.822 100.94 142.822 101.665C142.822 102.39 142.239 102.826 141.51 102.826Z" fill="#E6EDF5"/>
56
+ <path d="M131.016 109.644H112.068C111.485 109.644 110.902 109.209 110.902 108.483C110.902 107.758 111.34 107.323 112.068 107.323H131.016C131.599 107.323 132.182 107.758 132.182 108.483C132.182 109.209 131.599 109.644 131.016 109.644Z" fill="#E6EDF5"/>
57
+ </g>
58
+ <defs>
59
+ <filter id="filter0_d_16536_26330" x="76.9364" y="32.1767" width="172.145" height="138.106" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
60
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
61
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
62
+ <feOffset dy="14.7964"/>
63
+ <feGaussianBlur stdDeviation="14.7964"/>
64
+ <feColorMatrix type="matrix" values="0 0 0 0 0.397708 0 0 0 0 0.47749 0 0 0 0 0.575 0 0 0 0.18 0"/>
65
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16536_26330"/>
66
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16536_26330" result="shape"/>
67
+ </filter>
68
+ <filter id="filter1_d_16536_26330" x="56.4071" y="21.2958" width="131.664" height="130.621" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
69
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
70
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
71
+ <feOffset dy="14.7964"/>
72
+ <feGaussianBlur stdDeviation="14.7964"/>
73
+ <feColorMatrix type="matrix" values="0 0 0 0 0.397708 0 0 0 0 0.47749 0 0 0 0 0.575 0 0 0 0.18 0"/>
74
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16536_26330"/>
75
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16536_26330" result="shape"/>
76
+ </filter>
77
+ <filter id="filter2_d_16536_26330" x="145.899" y="14.498" width="121.547" height="131.681" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
78
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
79
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
80
+ <feOffset dy="14.7964"/>
81
+ <feGaussianBlur stdDeviation="14.7964"/>
82
+ <feColorMatrix type="matrix" values="0 0 0 0 0.397708 0 0 0 0 0.47749 0 0 0 0 0.575 0 0 0 0.18 0"/>
83
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16536_26330"/>
84
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16536_26330" result="shape"/>
85
+ </filter>
86
+ <filter id="filter3_d_16536_26330" x="110.595" y="-0.62213" width="114.731" height="129.426" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
87
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
88
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
89
+ <feOffset dy="14.7964"/>
90
+ <feGaussianBlur stdDeviation="14.7964"/>
91
+ <feColorMatrix type="matrix" values="0 0 0 0 0.397708 0 0 0 0 0.47749 0 0 0 0 0.575 0 0 0 0.18 0"/>
92
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16536_26330"/>
93
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16536_26330" result="shape"/>
94
+ </filter>
95
+ <filter id="filter4_d_16536_26330" x="73.8934" y="25.3568" width="177.557" height="104.802" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
96
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
97
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
98
+ <feOffset dy="-22.8672"/>
99
+ <feGaussianBlur stdDeviation="14.7964"/>
100
+ <feColorMatrix type="matrix" values="0 0 0 0 0.397708 0 0 0 0 0.47749 0 0 0 0 0.575 0 0 0 0.18 0"/>
101
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16536_26330"/>
102
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16536_26330" result="shape"/>
103
+ </filter>
104
+ <filter id="filter5_d_16536_26330" x="80.541" y="62.3296" width="163.918" height="101.925" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
105
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
106
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
107
+ <feOffset dy="8"/>
108
+ <feGaussianBlur stdDeviation="8"/>
109
+ <feColorMatrix type="matrix" values="0 0 0 0 0.397708 0 0 0 0 0.47749 0 0 0 0 0.575 0 0 0 0.18 0"/>
110
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16536_26330"/>
111
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16536_26330" result="shape"/>
112
+ </filter>
113
+ <filter id="filter6_d_16536_26330" x="131.131" y="101" width="66" height="66.1392" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
114
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
115
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
116
+ <feOffset dy="2"/>
117
+ <feGaussianBlur stdDeviation="4"/>
118
+ <feColorMatrix type="matrix" values="0 0 0 0 0.968627 0 0 0 0 0.254902 0 0 0 0 0.564706 0 0 0 0.3 0"/>
119
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16536_26330"/>
120
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16536_26330" result="shape"/>
121
+ </filter>
122
+ <linearGradient id="paint0_linear_16536_26330" x1="156.528" y1="45.508" x2="163.05" y2="46.262" gradientUnits="userSpaceOnUse">
123
+ <stop stop-color="#F35959"/>
124
+ <stop offset="1" stop-color="#E62727"/>
125
+ </linearGradient>
126
+ <linearGradient id="paint1_linear_16536_26330" x1="177.415" y1="73.4772" x2="186.595" y2="74.5384" gradientUnits="userSpaceOnUse">
127
+ <stop stop-color="#83A6FF"/>
128
+ <stop offset="1" stop-color="#5A78FF"/>
129
+ </linearGradient>
130
+ <linearGradient id="paint2_linear_16536_26330" x1="164.088" y1="103.647" x2="164.088" y2="158.711" gradientUnits="userSpaceOnUse">
131
+ <stop stop-color="#F24646"/>
132
+ <stop offset="1" stop-color="#F67E7E"/>
133
+ </linearGradient>
134
+ <linearGradient id="paint3_linear_16536_26330" x1="162.206" y1="131.163" x2="175.269" y2="144.234" gradientUnits="userSpaceOnUse">
135
+ <stop stop-color="#FF0000"/>
136
+ <stop offset="1" stop-color="#F67E7E" stop-opacity="0"/>
137
+ </linearGradient>
138
+ <linearGradient id="paint4_linear_16536_26330" x1="172.556" y1="140.796" x2="155.576" y2="123.773" gradientUnits="userSpaceOnUse">
139
+ <stop offset="0.0113208" stop-color="#FFB5B5"/>
140
+ <stop offset="0.463542" stop-color="white"/>
141
+ <stop offset="0.463642" stop-color="white"/>
142
+ </linearGradient>
143
+ <linearGradient id="paint5_linear_16536_26330" x1="141.598" y1="4.66847" x2="143.615" y2="3.82922" gradientUnits="userSpaceOnUse">
144
+ <stop stop-color="#F35959"/>
145
+ <stop offset="1" stop-color="#F02B2B"/>
146
+ </linearGradient>
147
+ <linearGradient id="paint6_linear_16536_26330" x1="135.569" y1="13.8339" x2="135.975" y2="11.6948" gradientUnits="userSpaceOnUse">
148
+ <stop stop-color="#F24646"/>
149
+ <stop offset="1" stop-color="#F23535"/>
150
+ </linearGradient>
151
+ <linearGradient id="paint7_linear_16536_26330" x1="155.504" y1="4.55199" x2="153.781" y2="3.21122" gradientUnits="userSpaceOnUse">
152
+ <stop stop-color="#F67E7E"/>
153
+ <stop offset="1" stop-color="#F24646"/>
154
+ </linearGradient>
155
+ <clipPath id="clip0_16536_26330">
156
+ <rect width="324" height="162" fill="white"/>
157
+ </clipPath>
158
+ </defs>
159
+ </svg>
@@ -0,0 +1,35 @@
1
+ <svg width="492" height="259" viewBox="0 0 492 259" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M-1 0C-2.65685 0 -4 1.34315 -4 3.00001V258.363C58.5888 244.597 147.442 236 246 236C344.558 236 433.411 244.596 496 258.363V3C496 1.34315 494.657 0 493 0H-1Z" fill="url(#paint0_linear_776_13891)"/>
3
+ <path d="M344.353 166.19C359.992 166.19 374.99 159.437 386.049 147.417C397.107 135.397 403.32 119.094 403.32 102.095C403.32 85.096 397.107 68.7932 386.049 56.773C374.99 44.7529 359.992 38 344.353 38" stroke="url(#paint1_linear_776_13891)" stroke-width="45.2436"/>
4
+ <path d="M240.901 166.19C256.54 166.19 271.539 159.437 282.597 147.417C293.656 135.397 299.868 119.094 299.868 102.095C299.868 85.096 293.656 68.7932 282.597 56.773C271.539 44.7529 256.54 38 240.901 38" stroke="url(#paint2_linear_776_13891)" stroke-width="45.2436"/>
5
+ <path d="M136.794 101.533C136.794 89.0392 126.666 78.9111 114.173 78.9111C101.679 78.9111 91.5508 89.0392 91.5508 101.533L136.794 101.533ZM173.14 188.25C185.634 188.25 195.762 178.122 195.762 165.628C195.762 153.134 185.634 143.006 173.14 143.006L173.14 188.25ZM91.5508 101.533C91.5508 123.951 99.7265 145.792 114.796 162.171L148.092 131.539C141.044 123.878 136.794 113.113 136.794 101.533L91.5508 101.533ZM114.796 162.171C129.923 178.614 150.864 188.25 173.14 188.25L173.14 143.006C164.138 143.006 155.082 139.136 148.092 131.539L114.796 162.171Z" fill="url(#paint3_linear_776_13891)"/>
6
+ <path d="M353.694 46.8698C354.501 45.1385 356.963 45.1385 357.77 46.8698L361.411 54.6772C361.723 55.3467 362.344 55.8202 363.073 55.9439L371.318 57.344C373.078 57.643 373.805 59.7758 372.593 61.0874L366.458 67.7284C365.996 68.2281 365.786 68.91 365.885 69.5831L367.227 78.6707C367.5 80.5155 365.538 81.8713 363.908 80.9643L356.826 77.0214C356.146 76.6428 355.318 76.6428 354.638 77.0214L347.556 80.9643C345.926 81.8713 343.965 80.5155 344.237 78.6707L345.579 69.5831C345.679 68.91 345.468 68.2281 345.006 67.7284L338.871 61.0874C337.659 59.7758 338.386 57.643 340.146 57.344L348.391 55.9439C349.12 55.8202 349.741 55.3467 350.053 54.6772L353.694 46.8698Z" fill="white"/>
7
+ <path d="M146.791 143.575C147.598 141.843 150.06 141.843 150.867 143.575L152.655 147.408C152.967 148.077 153.588 148.551 154.316 148.675L158.511 149.387C160.272 149.686 160.999 151.819 159.787 153.13L156.556 156.627C156.094 157.127 155.884 157.809 155.983 158.482L156.676 163.17C156.948 165.015 154.986 166.371 153.357 165.464L149.923 163.552C149.243 163.174 148.415 163.174 147.735 163.552L144.301 165.464C142.672 166.371 140.71 165.015 140.982 163.17L141.675 158.482C141.774 157.809 141.564 157.127 141.102 156.627L137.871 153.13C136.659 151.819 137.386 149.686 139.146 149.387L143.341 148.675C144.07 148.551 144.691 148.077 145.003 147.408L146.791 143.575Z" fill="white"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M277.112 64.9885H219.179L216.894 77.4095C212.933 98.9342 212.933 121.001 216.894 142.525L219.179 154.946H277.112L279.398 142.525C283.358 121.001 283.358 98.9342 279.398 77.4095L277.112 64.9885ZM259.526 105.47C261.24 105.47 262.629 103.959 262.629 102.096C262.629 100.233 261.24 98.7227 259.526 98.7227C257.812 98.7227 256.422 100.233 256.422 102.096C256.422 103.959 257.812 105.47 259.526 105.47ZM234.697 105.47C236.411 105.47 237.801 103.959 237.801 102.096C237.801 100.233 236.411 98.7227 234.697 98.7227C232.983 98.7227 231.594 100.233 231.594 102.096C231.594 103.959 232.983 105.47 234.697 105.47ZM237.801 114.465H256.422V116.399C256.422 121.542 252.254 125.71 247.111 125.71C241.969 125.71 237.801 121.542 237.801 116.399V114.465Z" fill="white"/>
9
+ <path d="M285.385 78.4822H308.144L310.213 109.967L308.144 141.453H285.385L285.671 139.273C288.228 119.82 288.228 100.115 285.671 80.6619L285.385 78.4822Z" fill="white"/>
10
+ <path d="M210.9 78.4822H188.141L186.072 109.967L188.141 141.453H210.9L210.613 139.273C208.057 119.82 208.057 100.115 210.613 80.6619L210.9 78.4822Z" fill="white"/>
11
+ <path d="M312.282 87.4779H326.766C328.142 102.439 328.142 117.495 326.766 132.457H312.282L312.456 130.571C313.717 116.864 313.717 103.071 312.456 89.3641L312.282 87.4779Z" fill="white"/>
12
+ <path d="M184.002 87.4779H169.519C168.143 102.439 168.143 117.495 169.519 132.457H184.002L183.829 130.571C182.568 116.864 182.568 103.071 183.829 89.3641L184.002 87.4779Z" fill="white"/>
13
+ <path d="M448 140C448 133.373 453.373 128 460 128C466.627 128 472 133.373 472 140C472 146.627 466.627 152 460 152C453.373 152 448 146.627 448 140Z" fill="white" fill-opacity="0.1"/>
14
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M463.706 138.876C463.893 139.063 463.999 139.318 463.999 139.583C463.999 139.848 463.893 140.102 463.706 140.29L459.113 144.883C458.927 145.065 458.676 145.167 458.415 145.166C458.154 145.165 457.904 145.06 457.72 144.876C457.535 144.691 457.431 144.442 457.43 144.181C457.429 143.92 457.53 143.669 457.713 143.483L461.613 139.583L457.713 135.683C457.53 135.497 457.429 135.246 457.43 134.985C457.431 134.724 457.535 134.474 457.72 134.29C457.904 134.106 458.154 134.001 458.415 134C458.676 133.999 458.927 134.1 459.113 134.283L463.706 138.876Z" fill="white"/>
15
+ <path d="M20 140C20 133.373 25.3726 128 32 128C38.6274 128 44 133.373 44 140C44 146.627 38.6274 152 32 152C25.3726 152 20 146.627 20 140Z" fill="white" fill-opacity="0.1"/>
16
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M28.2928 138.876C28.1053 139.063 28 139.318 28 139.583C28 139.848 28.1053 140.102 28.2928 140.29L32.8858 144.883C33.0721 145.065 33.3229 145.167 33.5837 145.166C33.8446 145.165 34.0943 145.06 34.2788 144.876C34.4632 144.691 34.5674 144.442 34.5687 144.181C34.57 143.92 34.4684 143.669 34.2858 143.483L30.3858 139.583L34.2858 135.683C34.4684 135.497 34.57 135.246 34.5687 134.985C34.5674 134.724 34.4632 134.474 34.2788 134.29C34.0943 134.106 33.8446 134.001 33.5837 134C33.3229 133.999 33.0721 134.1 32.8858 134.283L28.2928 138.876Z" fill="white"/>
17
+ <defs>
18
+ <linearGradient id="paint0_linear_776_13891" x1="-30.0001" y1="247.905" x2="291.359" y2="-185.869" gradientUnits="userSpaceOnUse">
19
+ <stop stop-color="#0057C2"/>
20
+ <stop offset="1" stop-color="#0095FF"/>
21
+ </linearGradient>
22
+ <linearGradient id="paint1_linear_776_13891" x1="344.353" y1="138.964" x2="429.259" y2="107.084" gradientUnits="userSpaceOnUse">
23
+ <stop stop-color="#0057C2"/>
24
+ <stop offset="1" stop-color="#0095FF"/>
25
+ </linearGradient>
26
+ <linearGradient id="paint2_linear_776_13891" x1="240.901" y1="138.964" x2="325.807" y2="107.084" gradientUnits="userSpaceOnUse">
27
+ <stop stop-color="#0057C2"/>
28
+ <stop offset="1" stop-color="#0095FF"/>
29
+ </linearGradient>
30
+ <linearGradient id="paint3_linear_776_13891" x1="126.697" y1="101.533" x2="178.972" y2="160.453" gradientUnits="userSpaceOnUse">
31
+ <stop stop-color="#0057C2"/>
32
+ <stop offset="1" stop-color="#0095FF"/>
33
+ </linearGradient>
34
+ </defs>
35
+ </svg>
@@ -0,0 +1,84 @@
1
+ <svg width="177" height="177" viewBox="0 0 177 177" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle opacity="0.5" cx="91" cy="96" r="75" fill="#C5DCFF"/>
3
+ <circle opacity="0.5" r="4" transform="matrix(-1 0 0 1 20 40)" fill="#C5DCFF"/>
4
+ <circle opacity="0.5" r="2.5" transform="matrix(-1 0 0 1 2.5 50.5)" fill="#C5DCFF"/>
5
+ <circle opacity="0.5" r="5.5" transform="matrix(-1 0 0 1 171.5 58.5)" fill="#C5DCFF"/>
6
+ <circle opacity="0.5" r="2.5" transform="matrix(-1 0 0 1 164.5 37.5)" fill="#C5DCFF"/>
7
+ <circle opacity="0.5" r="2.5" transform="matrix(-1 0 0 1 174.5 116.5)" fill="#C5DCFF"/>
8
+ <g filter="url(#filter0_d_776_13695)">
9
+ <path d="M20 72H164V143C164 150.732 157.732 157 150 157H34C26.268 157 20 150.732 20 143V72Z" fill="#526DFF" fill-opacity="0.01" shape-rendering="crispEdges"/>
10
+ </g>
11
+ <path d="M79.7406 21.4042C86.8288 15.4006 97.2187 15.4022 104.305 21.408L164.004 72.0039H20L79.7406 21.4042Z" fill="#0160CB"/>
12
+ <path d="M20 72H164V143C164 150.732 157.732 157 150 157H34C26.268 157 20 150.732 20 143V72Z" fill="#0160CB"/>
13
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M35 59.2991L69.592 30H114.443L149 59.2878V94.5H35V59.2991Z" fill="#0E50B6"/>
14
+ <rect x="40" y="30" width="104" height="88" rx="5" fill="url(#paint0_linear_776_13695)"/>
15
+ <rect x="72" y="45" width="40" height="4" rx="2" fill="#F67E7E"/>
16
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M59 59C57.8954 59 57 59.8954 57 61C57 62.1046 57.8954 63 59 63H125C126.105 63 127 62.1046 127 61C127 59.8954 126.105 59 125 59H59ZM59 72C57.8954 72 57 72.8954 57 74C57 75.1046 57.8954 76 59 76H125C126.105 76 127 75.1046 127 74C127 72.8954 126.105 72 125 72H59ZM57 87C57 85.8954 57.8954 85 59 85H125C126.105 85 127 85.8954 127 87C127 88.1046 126.105 89 125 89H59C57.8954 89 57 88.1046 57 87ZM59 98C57.8954 98 57 98.8954 57 100C57 101.105 57.8954 102 59 102H125C126.105 102 127 101.105 127 100C127 98.8954 126.105 98 125 98H59Z" fill="#DDE2E8"/>
17
+ <rect x="40" y="30" width="104" height="88" rx="5" fill="url(#paint1_linear_776_13695)"/>
18
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M158.931 153.782C156.508 155.792 153.395 157 150 157H34C26.268 157 20 150.732 20 143V72H20.093L158.931 153.782Z" fill="url(#paint2_linear_776_13695)"/>
19
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M20.0686 72.2354L158.793 153.95C158.863 153.894 158.932 153.838 159 153.782L20.1616 72H20.0686V72.2354Z" fill="url(#paint3_linear_776_13695)"/>
20
+ <g filter="url(#filter1_d_776_13695)">
21
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M25.0686 153.782C27.4924 155.792 30.6051 157 34 157H150C157.732 157 164 150.732 164 143V72H163.907L25.0686 153.782Z" fill="url(#paint4_linear_776_13695)"/>
22
+ </g>
23
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M164 72.2354L25.2755 153.95C25.206 153.894 25.137 153.838 25.0686 153.782L163.907 72H164V72.2354Z" fill="url(#paint5_linear_776_13695)"/>
24
+ <rect x="107" y="129" width="42" height="4" rx="2" fill="url(#paint6_linear_776_13695)"/>
25
+ <rect x="107" y="118" width="42" height="4" rx="2" fill="url(#paint7_linear_776_13695)"/>
26
+ <path opacity="0.1" fill-rule="evenodd" clip-rule="evenodd" d="M65 157L80 150H63L48 157L65 157ZM101 157L116 150H99L84 157L101 157ZM152 150L137 157L120 157L135 150H152Z" fill="black"/>
27
+ <path opacity="0.1" fill-rule="evenodd" clip-rule="evenodd" d="M27 76.0686L20.9089 72.4807L20 73.0001V84.0001L27 80.0001V76.0686ZM20 104V93.0001L27 89.0001V100L20 104ZM20 113V124L27 120V109L20 113ZM20.0338 143.981C20.0114 143.657 20 143.33 20 143L20 133L27 129V140L20.0338 143.981Z" fill="black"/>
28
+ <path opacity="0.1" fill-rule="evenodd" clip-rule="evenodd" d="M164 80V72H163.907L157 76.0685V84L164 80ZM164 140V129L157 133V144L164 140ZM164 120V109L157 113V124L164 120ZM164 89V100L157 104V93L164 89Z" fill="black"/>
29
+ <defs>
30
+ <filter id="filter0_d_776_13695" x="12" y="68" width="160" height="101" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
31
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
32
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
33
+ <feOffset dy="4"/>
34
+ <feGaussianBlur stdDeviation="4"/>
35
+ <feComposite in2="hardAlpha" operator="out"/>
36
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.481992 0 0 0 0 0.875 0 0 0 0.24 0"/>
37
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_776_13695"/>
38
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_776_13695" result="shape"/>
39
+ </filter>
40
+ <filter id="filter1_d_776_13695" x="19.0686" y="66" width="146.931" height="93" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
41
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
42
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
43
+ <feOffset dx="-2" dy="-2"/>
44
+ <feGaussianBlur stdDeviation="2"/>
45
+ <feComposite in2="hardAlpha" operator="out"/>
46
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.482353 0 0 0 0 0.87451 0 0 0 0.16 0"/>
47
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_776_13695"/>
48
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_776_13695" result="shape"/>
49
+ </filter>
50
+ <linearGradient id="paint0_linear_776_13695" x1="92" y1="30" x2="92" y2="118" gradientUnits="userSpaceOnUse">
51
+ <stop offset="0.526042" stop-color="white"/>
52
+ </linearGradient>
53
+ <linearGradient id="paint1_linear_776_13695" x1="92" y1="30" x2="92" y2="118" gradientUnits="userSpaceOnUse">
54
+ <stop offset="0.369792" stop-color="white" stop-opacity="0"/>
55
+ <stop offset="1" stop-color="#0279D7" stop-opacity="0.8"/>
56
+ </linearGradient>
57
+ <linearGradient id="paint2_linear_776_13695" x1="140" y1="154.5" x2="14" y2="108.5" gradientUnits="userSpaceOnUse">
58
+ <stop stop-color="#015CC6"/>
59
+ <stop offset="1" stop-color="#018DF7"/>
60
+ </linearGradient>
61
+ <linearGradient id="paint3_linear_776_13695" x1="155.669" y1="153.473" x2="21.8785" y2="75.9726" gradientUnits="userSpaceOnUse">
62
+ <stop stop-color="#0277E1"/>
63
+ <stop offset="0.257366" stop-color="white"/>
64
+ <stop offset="1" stop-color="#1C89ED"/>
65
+ </linearGradient>
66
+ <linearGradient id="paint4_linear_776_13695" x1="44" y1="154.5" x2="170" y2="108.5" gradientUnits="userSpaceOnUse">
67
+ <stop stop-color="#015CC6"/>
68
+ <stop offset="1" stop-color="#018DF7"/>
69
+ </linearGradient>
70
+ <linearGradient id="paint5_linear_776_13695" x1="28.3992" y1="153.473" x2="162.19" y2="75.9726" gradientUnits="userSpaceOnUse">
71
+ <stop stop-color="#0277E1"/>
72
+ <stop offset="0.257366" stop-color="white"/>
73
+ <stop offset="1" stop-color="#1C89ED"/>
74
+ </linearGradient>
75
+ <linearGradient id="paint6_linear_776_13695" x1="107" y1="131" x2="149" y2="131" gradientUnits="userSpaceOnUse">
76
+ <stop stop-color="#018DF8"/>
77
+ <stop offset="1" stop-color="#0160CA"/>
78
+ </linearGradient>
79
+ <linearGradient id="paint7_linear_776_13695" x1="107" y1="120" x2="149" y2="120" gradientUnits="userSpaceOnUse">
80
+ <stop stop-color="#018DF8"/>
81
+ <stop offset="1" stop-color="#0160CA"/>
82
+ </linearGradient>
83
+ </defs>
84
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="228" height="204" fill="none"><circle cx="114.32" cy="101.68" r="96.636" fill="#EBEEF1" stroke="#B7C2CE" stroke-width="2.082"/><mask id="a" width="140" height="165" x="78" y="20" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path fill="#C4C4C4" d="m78.898 133.856 55.667-110.423a5.263 5.263 0 0 1 7.068-2.33l60.76 30.63a5.26 5.26 0 0 1 2.642 3.094L217.1 92.491a5.264 5.264 0 0 1-.313 3.974l-42.972 85.241a5.262 5.262 0 0 1-7.067 2.33l-85.52-43.112a5.263 5.263 0 0 1-2.33-7.068Z"/></mask><g mask="url(#a)"><path fill="#fff" d="m78.898 133.856 55.667-110.423a5.263 5.263 0 0 1 7.068-2.33l60.76 30.63a5.26 5.26 0 0 1 2.642 3.094L217.1 92.491a5.264 5.264 0 0 1-.313 3.974l-42.972 85.241a5.262 5.262 0 0 1-7.067 2.33l-85.52-43.112a5.263 5.263 0 0 1-2.33-7.068Z"/><path fill="#B7C2CE" d="m205.194 50.493 30.542 15.397a5.262 5.262 0 0 1 2.33 7.068l-12.791 25.374-30.543-15.397a5.262 5.262 0 0 1-2.33-7.068l12.792-25.374Z"/><mask id="b" width="88" height="77" x="106" y="71" maskUnits="userSpaceOnUse" style="mask-type:alpha"><rect width="74.939" height="48.938" x="127.701" y="70.948" fill="#C4C4C4" rx="2.631" transform="rotate(26.754 127.701 70.948)"/></mask><g mask="url(#b)"><rect width="72.857" height="46.856" x="128.162" y="72.346" stroke="#B7C2CE" stroke-width="2.082" rx="1.59" transform="rotate(26.754 128.162 72.346)"/><path fill="#B7C2CE" fill-rule="evenodd" d="M118.721 80.578c.259-.514.885-.72 1.398-.461l76.612 38.622a1.04 1.04 0 1 1-.937 1.859l-76.612-38.622a1.042 1.042 0 0 1-.461-1.398ZM113.747 90.445c.259-.513.885-.72 1.398-.46l76.612 38.621a1.04 1.04 0 1 1-.937 1.859l-76.612-38.622a1.042 1.042 0 0 1-.461-1.398ZM107.824 102.192c.259-.513.885-.72 1.398-.461l76.612 38.622a1.04 1.04 0 1 1-.937 1.859l-76.612-38.622a1.042 1.042 0 0 1-.461-1.398Z" clip-rule="evenodd"/></g><path fill="#B7C2CE" fill-rule="evenodd" d="M145.457 39.236a1.578 1.578 0 0 1 2.12-.7l39.001 19.662a1.58 1.58 0 0 1-1.422 2.82l-39-19.662a1.578 1.578 0 0 1-.699-2.12ZM140.244 49.574a1.58 1.58 0 0 1 2.121-.7l13.626 6.87a1.578 1.578 0 1 1-1.421 2.82l-13.627-6.87a1.58 1.58 0 0 1-.699-2.12Z" clip-rule="evenodd"/><path stroke="#B7C2CE" stroke-linecap="round" stroke-width="2.105" d="m99.742 128.747 14.566 7.343M122.296 140.118l7.518 3.79"/></g><path stroke="#B7C2CE" stroke-width="2.082" d="m79.829 134.325 55.667-110.423a4.22 4.22 0 0 1 5.669-1.87l60.76 30.631a4.22 4.22 0 0 1 2.12 2.482l12.064 37.664a4.222 4.222 0 0 1-.25 3.188l-42.972 85.24a4.222 4.222 0 0 1-5.67 1.87l-85.519-43.113a4.22 4.22 0 0 1-1.87-5.669Z"/><mask id="c" width="156" height="152" x="5" y="28" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path fill="#C4C4C4" d="M68.135 177.288 6.305 70.195a5.262 5.262 0 0 1 1.926-7.188l58.927-34.022a5.262 5.262 0 0 1 4.037-.514l38.113 10.559a5.262 5.262 0 0 1 3.152 2.44l47.73 82.67a5.264 5.264 0 0 1-1.926 7.189l-82.94 47.885a5.261 5.261 0 0 1-7.19-1.926Z"/></mask><g mask="url(#c)"><path fill="#fff" d="M68.135 177.288 6.305 70.195a5.262 5.262 0 0 1 1.926-7.188l58.927-34.022a5.262 5.262 0 0 1 4.037-.514l38.113 10.559a5.262 5.262 0 0 1 3.152 2.44l47.73 82.67a5.264 5.264 0 0 1-1.926 7.189l-82.94 47.885a5.261 5.261 0 0 1-7.19-1.926Z"/><path fill="#B7C2CE" d="M67.657 25.963 97.28 8.86a5.262 5.262 0 0 1 7.188 1.926l14.208 24.609-29.622 17.102a5.262 5.262 0 0 1-7.188-1.926l-14.208-24.61Z"/><mask id="d" width="92" height="81" x="43" y="63" maskUnits="userSpaceOnUse" style="mask-type:alpha"><rect width="79.459" height="48.938" x="42.279" y="101.984" fill="#C4C4C4" rx="2.631" transform="rotate(-30 42.28 101.984)"/></mask><g stroke="#B7C2CE" stroke-width="2.082" mask="url(#d)"><rect width="77.377" height="46.856" x="43.701" y="102.365" rx="1.59" transform="rotate(-30 43.701 102.365)"/><path stroke-linecap="round" d="m46.311 114.253 74.302-42.898M51.837 123.823l74.302-42.898M58.414 135.216l74.302-42.898"/></g><path fill="#B7C2CE" fill-rule="evenodd" d="M25.743 70.186c-.575-.995-.429-2.156.326-2.592l37.825-21.837c.755-.436 1.833.017 2.408 1.013.575.995.428 2.156-.327 2.592L28.151 71.2c-.755.436-1.833-.018-2.408-1.014ZM31.532 80.212c-.575-.996-.43-2.156.326-2.592l13.216-7.63c.755-.436 1.833.017 2.408 1.013.575.996.428 2.156-.327 2.592l-13.215 7.63c-.756.436-1.834-.017-2.408-1.013ZM74.373 157.571a1.046 1.046 0 0 1 .39-1.427l14.128-8.157a1.047 1.047 0 0 1 1.432.376 1.046 1.046 0 0 1-.391 1.427l-14.128 8.156a1.046 1.046 0 0 1-1.431-.375ZM96.247 144.942a1.046 1.046 0 0 1 .391-1.427l7.291-4.21a1.046 1.046 0 0 1 1.432.375 1.046 1.046 0 0 1-.391 1.428l-7.291 4.21a1.047 1.047 0 0 1-1.432-.376Z" clip-rule="evenodd"/></g><path stroke="#B7C2CE" stroke-width="2.082" d="M69.036 176.768 7.206 69.674a4.221 4.221 0 0 1 1.545-5.766l58.928-34.022a4.222 4.222 0 0 1 3.238-.412l38.113 10.559a4.223 4.223 0 0 1 2.529 1.957l47.729 82.671a4.22 4.22 0 0 1-1.545 5.766l-82.94 47.886a4.221 4.221 0 0 1-5.767-1.545Z"/><mask id="e" width="130" height="172" x="49" y="16" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path fill="#C4C4C4" d="M49.47 180.941V23.057a6.405 6.405 0 0 1 6.404-6.405h82.507c1.769 0 3.46.732 4.67 2.022l33.745 35.959a6.406 6.406 0 0 1 1.734 4.383V180.94a6.404 6.404 0 0 1-6.405 6.405H55.875a6.405 6.405 0 0 1-6.406-6.405Z"/></mask><g mask="url(#e)"><path fill="#fff" d="M49.47 180.941V23.057a6.405 6.405 0 0 1 6.404-6.405h82.507c1.769 0 3.46.732 4.67 2.022l33.745 35.959a6.406 6.406 0 0 1 1.734 4.383V180.94a6.404 6.404 0 0 1-6.405 6.405H55.875a6.405 6.405 0 0 1-6.406-6.405Z"/><path fill="#B7C2CE" d="M141.061 14.57h41.473a6.405 6.405 0 0 1 6.405 6.405v37.31h-41.473a6.405 6.405 0 0 1-6.405-6.405V14.57Z"/><mask id="f" width="96" height="63" x="66" y="81" maskUnits="userSpaceOnUse" style="mask-type:alpha"><rect width="95.755" height="62.449" x="66.122" y="81.183" fill="#C4C4C4" rx="2.082"/></mask><g mask="url(#f)"><rect width="93.674" height="60.367" x="67.163" y="82.223" stroke="#B7C2CE" stroke-width="2.082" rx="1.041"/><path fill="#B7C2CE" fill-rule="evenodd" d="M66.122 96.875c0-.53.43-.96.96-.96h93.834a.96.96 0 1 1 0 1.92H67.083a.96.96 0 0 1-.96-.96ZM66.122 111.446a.96.96 0 0 1 .96-.961h93.834a.96.96 0 1 1 0 1.922H67.083a.96.96 0 0 1-.96-.961ZM66.122 128.099c0-.53.43-.96.96-.96h93.834a.96.96 0 1 1 0 1.921H67.083a.96.96 0 0 1-.96-.961Z" clip-rule="evenodd"/></g><path fill="#B7C2CE" fill-rule="evenodd" d="M70.286 39.55c0-1.15.86-2.081 1.921-2.081h46.116c1.062 0 1.922.932 1.922 2.081 0 1.15-.86 2.082-1.922 2.082H72.207c-1.061 0-1.921-.932-1.921-2.082ZM70.286 47.877c0-1.15.86-2.082 1.921-2.082h16.974c1.06 0 1.921.932 1.921 2.082s-.86 2.081-1.922 2.081H72.207c-1.061 0-1.921-.932-1.921-2.081ZM68.204 163.407c0-.575.317-1.041 1.04-1.041h20.817c.725 0 1.041.466 1.041 1.041s-.316 1.041-1.04 1.041H69.244c-.725 0-1.04-.466-1.04-1.041ZM99.428 163.407c0-.575.35-1.041 1.041-1.041h10.408c.692 0 1.041.466 1.041 1.041s-.349 1.041-1.041 1.041h-10.408c-.691 0-1.04-.466-1.04-1.041Z" clip-rule="evenodd"/></g><path stroke="#B7C2CE" stroke-width="2.082" d="M50.51 180.941V23.057a5.364 5.364 0 0 1 5.364-5.364h82.507c1.482 0 2.897.613 3.911 1.694l33.745 35.958a5.365 5.365 0 0 1 1.453 3.67v121.926a5.364 5.364 0 0 1-5.365 5.364H55.875a5.364 5.364 0 0 1-5.365-5.364Z"/><circle cx="18.565" cy="43.714" r="4.484" fill="#F0F4F7"/><circle cx="199.187" cy="26.901" r="6.085" fill="#F0F4F7"/><circle cx="40.022" cy="182.383" r="4.163" fill="#DDE2E8"/><circle cx="28.493" cy="29.943" r="2.882" fill="#DDE2E8"/><circle cx="189.26" cy="15.211" r="2.882" fill="#DDE2E8"/><circle cx="205.271" cy="155.482" r="2.882" fill="#EBEEF1"/></svg>