@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,102 @@
1
+ <svg width="250" height="172" viewBox="0 0 250 172" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_16895_1825)">
3
+ <path d="M21.9542 85.5637C22.4255 85.4061 22.7398 84.9335 22.7398 84.3034L22.4255 83.0432C22.2684 82.5706 21.797 82.2555 21.3257 82.413L9.38462 85.5637C8.91326 85.7212 8.59902 86.1938 8.75614 86.6664L9.07038 87.9266C9.2275 88.3992 9.69886 88.7143 10.1702 88.5567C10.6416 90.2896 11.8985 91.7073 13.4697 92.6525L15.5123 93.7552C15.8265 93.9128 15.8265 94.2278 15.6694 94.3853L14.2553 96.2757C13.1555 97.6935 12.8412 99.5838 13.1555 101.317C12.6841 101.474 12.3699 101.947 12.527 102.419L12.8412 103.68C12.9984 104.467 13.6268 104.782 14.0982 104.625L26.0393 101.474C26.5106 101.317 26.8249 100.844 26.6677 100.371L26.3535 99.1113C26.1964 98.6387 25.725 98.3236 25.2537 98.4811C24.7823 96.7483 23.5253 95.3305 21.9542 94.5429L19.7545 93.4402C19.4402 93.2826 19.4402 92.9676 19.5974 92.81L21.0114 90.9197C21.9542 89.1869 22.2684 87.454 21.9542 85.5637ZM19.126 89.5019L17.5548 91.7073C17.3977 92.0224 16.9263 92.0224 16.7692 91.8649L14.4124 90.6046C13.4697 90.132 12.8412 89.5019 12.3699 88.5567C12.2128 88.2417 12.3699 87.9266 12.6841 87.7691C12.6841 87.7691 12.6841 87.7691 12.8412 87.7691L19.4402 86.0362C19.7545 86.0362 20.0687 86.1938 20.0687 86.5088C20.0687 86.5088 20.0687 86.5088 20.0687 86.6664C19.9116 87.7691 19.7545 88.7143 19.126 89.5019Z" fill="url(#paint0_linear_16895_1825)"/>
4
+ <path d="M123.593 172C167.5 172 203.093 136.63 203.093 93C203.093 49.3695 167.5 14 123.593 14C79.6864 14 44.093 49.3695 44.093 93C44.093 136.63 79.6864 172 123.593 172Z" fill="#EAEEF9"/>
5
+ <path d="M212.606 53.2694C215.04 51.0391 215.21 47.2527 212.985 44.8122C210.761 42.3716 206.984 42.2012 204.55 44.4315C202.116 46.6617 201.946 50.4482 204.17 52.8887C206.395 55.3292 210.171 55.4997 212.606 53.2694Z" fill="#EAEEF9"/>
6
+ <path d="M78.1394 20.1343C80.2025 19.462 81.3313 17.2402 80.6608 15.1718C79.9902 13.1033 77.7742 11.9715 75.7111 12.6438C73.648 13.3161 72.5192 15.5379 73.1897 17.6064C73.8603 19.6748 76.0764 20.8066 78.1394 20.1343Z" fill="#EAEEF9"/>
7
+ <path d="M86.7138 7.2846C88.1166 6.82743 88.8843 5.31658 88.4283 3.91002C87.9723 2.50347 86.4654 1.73384 85.0625 2.19101C83.6597 2.64819 82.892 4.15904 83.348 5.56559C83.804 6.97215 85.3109 7.74177 86.7138 7.2846Z" fill="#EAEEF9"/>
8
+ <path d="M213.057 26.4326C214.081 25.4935 214.153 23.8992 213.216 22.8716C212.28 21.844 210.69 21.7722 209.665 22.7113C208.64 23.6504 208.568 25.2447 209.505 26.2723C210.441 27.2999 212.032 27.3716 213.057 26.4326Z" fill="#EAEEF9"/>
9
+ <path d="M151.035 7.64231C151.74 6.99671 151.789 5.90065 151.145 5.19418C150.501 4.48772 149.408 4.43837 148.703 5.08397C147.998 5.72957 147.949 6.82563 148.593 7.5321C149.237 8.23856 150.33 8.28791 151.035 7.64231Z" fill="#EAEEF9"/>
10
+ <path d="M133.127 9.82177C132.656 9.34918 132.028 8.87659 131.399 8.404V8.24647C131.399 8.24647 131.556 8.08894 131.713 8.08894C132.185 7.77388 132.656 7.30129 132.813 6.8287C132.97 5.88351 132.185 5.56845 131.713 5.25339C131.713 5.25339 131.556 5.25339 131.556 5.09586L131.713 4.93833C132.185 4.62327 132.656 3.99315 132.656 3.36303C132.656 3.04797 132.342 2.73291 132.028 2.73291C131.713 2.73291 131.399 3.04797 131.399 3.36303C131.399 3.52056 131.085 3.83562 130.928 3.99315C130.613 4.30821 130.142 4.7808 130.142 5.41092C130.299 5.88351 130.613 6.19858 131.085 6.35611C131.242 6.35611 131.399 6.51363 131.399 6.51363C131.399 6.67116 131.085 6.8287 130.928 6.98623C130.613 7.14376 130.456 7.45882 130.142 7.61635C130.142 7.61635 129.985 7.61635 129.985 7.45882C129.671 7.30129 129.357 7.14376 129.042 6.98623C128.885 6.98623 128.728 6.8287 128.571 6.8287C127.471 6.51364 126.685 6.67116 126.057 7.30129C125.9 7.45882 125.743 7.61635 125.743 7.93141L121.343 20.5338C121.186 21.0064 121.343 21.479 121.815 21.6365C121.972 21.6365 122.286 21.6365 122.443 21.6365L134.541 17.0682H134.699C134.856 16.9106 135.013 16.9106 135.17 16.7531C135.641 16.2805 135.798 15.6504 135.798 15.0203C135.641 13.76 135.327 12.6573 134.541 11.7121C134.227 11.082 133.756 10.4519 133.127 9.82177ZM134.384 15.9654C133.913 16.438 131.713 15.9654 129.356 13.6025C127.157 11.2395 126.685 9.03412 127.157 8.56153C127.471 8.24647 128.414 8.404 129.671 9.03412L129.356 9.50671C129.199 9.82177 129.199 10.1368 129.514 10.4519C129.671 10.4519 129.671 10.6094 129.828 10.6094C129.985 10.6094 130.299 10.4519 130.299 10.2944L130.613 9.82177C131.085 10.1368 131.556 10.6094 132.028 11.082C134.384 13.1299 134.856 15.4929 134.384 15.9654Z" fill="url(#paint1_linear_16895_1825)"/>
11
+ <path d="M141.612 11.2392C141.455 11.3967 140.983 11.0817 140.669 10.9242C140.198 10.6091 139.412 10.294 138.941 10.7666C138.469 11.2392 138.627 11.7118 138.627 12.3419C138.627 12.4995 138.627 12.657 138.627 12.8145C138.312 12.657 138.155 12.4995 137.841 12.3419C137.37 12.0269 136.584 11.5543 135.955 12.1844C135.798 12.4995 135.798 12.8145 136.113 13.1296C136.27 13.2871 136.584 13.2871 136.741 13.1296C136.898 13.1296 137.055 13.2871 137.212 13.4446C137.684 13.7597 138.155 14.0748 138.784 14.0748C138.941 14.0748 138.941 14.0748 139.098 14.0748C140.041 13.7597 139.883 12.657 139.883 12.1844C139.883 12.1844 139.883 12.0269 139.883 11.8693C140.041 11.8693 140.041 12.0269 140.198 12.0269C140.826 12.3419 141.612 12.657 142.24 12.3419C142.555 12.1844 142.712 11.8693 142.554 11.5543C142.397 11.2392 141.926 11.0817 141.612 11.2392Z" fill="url(#paint2_linear_16895_1825)"/>
12
+ <path d="M134.541 9.03428C134.699 9.03428 134.856 8.87675 135.013 8.87675C135.17 8.87675 135.327 8.87675 135.327 8.87675C135.955 9.03428 136.584 9.03428 137.055 8.71922C137.684 8.24663 137.841 7.61651 137.684 6.82886C137.684 6.67133 137.684 6.35627 137.684 6.35627C137.841 6.35627 137.998 6.35627 138.155 6.35627C138.784 6.5138 139.569 6.35627 140.041 5.88368C140.355 5.72615 140.355 5.25355 140.198 4.93849C140.041 4.62343 139.569 4.62343 139.255 4.78096C138.941 4.9385 138.469 5.09602 138.155 4.93849C137.527 4.78096 137.055 4.93849 136.584 5.41109C136.27 5.88368 136.27 6.35627 136.27 6.82886C136.27 7.30145 136.27 7.45898 136.113 7.45898C135.955 7.61651 135.641 7.45898 135.327 7.45898C134.856 7.30145 134.227 7.14392 133.756 7.77404C133.599 8.0891 133.599 8.40416 133.913 8.56169C134.227 9.03428 134.384 9.03428 134.541 9.03428Z" fill="url(#paint3_linear_16895_1825)"/>
13
+ <path d="M135.798 3.36295C135.798 3.52048 135.798 3.52048 135.955 3.67801H136.113L136.898 3.36295C137.055 3.20542 137.212 3.20542 137.37 3.36295L138.155 3.67801C138.312 3.67801 138.312 3.67801 138.469 3.52048V3.36295L138.155 2.5753C137.998 2.41777 137.998 2.26024 138.155 2.10271L138.469 1.31506C138.469 1.15753 138.469 1.15753 138.312 1H138.155L137.37 1.31506C137.212 1.47259 137.055 1.47259 136.898 1.31506L136.113 1C135.955 1 135.955 1 135.798 1.15753V1.31506L136.113 2.10271C136.27 2.26024 136.27 2.41777 136.113 2.5753L135.798 3.36295Z" fill="url(#paint4_linear_16895_1825)"/>
14
+ <path d="M145.383 8.56139C145.383 8.40386 145.383 8.24633 145.383 8.08879L145.697 7.30114C145.697 7.14361 145.697 7.14361 145.54 6.98608H145.383L144.597 7.30114C144.44 7.30114 144.283 7.30114 144.126 7.30114L143.34 6.98608C143.183 6.98608 143.183 6.98608 143.026 7.14361V7.30114L143.34 8.08879C143.34 8.24633 143.34 8.40386 143.34 8.56139L143.026 9.34904C143.026 9.50657 143.026 9.50657 143.183 9.6641H143.34L144.126 9.34904C144.283 9.34904 144.44 9.34904 144.597 9.34904L145.383 9.6641C145.54 9.6641 145.54 9.6641 145.697 9.50657V9.34904L145.383 8.56139Z" fill="url(#paint5_linear_16895_1825)"/>
15
+ <path d="M126.371 5.5684L127 5.25334C127.157 5.25334 127.314 5.25334 127.471 5.25334L128.1 5.5684H128.257V5.41087L127.943 4.78075C127.943 4.62322 127.943 4.46569 127.943 4.30816L128.257 3.67804V3.52051H128.1L127.471 3.83557C127.314 3.83557 127.157 3.83557 127 3.83557L126.371 3.52051H126.214V3.67804L126.528 4.30816C126.528 4.46569 126.528 4.62322 126.528 4.78075L126.214 5.41087C126.057 5.5684 126.057 5.5684 126.371 5.5684C126.214 5.5684 126.214 5.5684 126.371 5.5684Z" fill="url(#paint6_linear_16895_1825)"/>
16
+ <path d="M166.947 156.137H25.0688L50.9935 36.5718H193.029L166.947 156.137Z" fill="white"/>
17
+ <path d="M166.947 156.137H25.0688L50.9935 36.5718H193.029L166.947 156.137Z" fill="#D5DAE8"/>
18
+ <path d="M85.0883 156.137H55.707C50.3649 156.137 45.9656 151.569 46.2798 146.213L50.9934 36.5718H58.0638L85.0883 156.137Z" fill="url(#paint7_linear_16895_1825)"/>
19
+ <path d="M224.139 156.137H82.2601L58.2208 64.2971L58.0637 63.667L50.9933 36.5718H193.029L199.157 60.0438L200.099 63.667L200.257 64.2971L224.139 156.137Z" fill="white"/>
20
+ <path d="M200.099 63.667H58.0637L50.9933 36.5718H193.029L199.157 60.0438L200.099 63.667Z" fill="#F3F5FA"/>
21
+ <path opacity="0.3" d="M88.3878 55.9481C91.1646 55.9481 93.4156 53.6912 93.4156 50.9072C93.4156 48.1231 91.1646 45.8662 88.3878 45.8662C85.611 45.8662 83.36 48.1231 83.36 50.9072C83.36 53.6912 85.611 55.9481 88.3878 55.9481Z" fill="#172D45"/>
22
+ <path opacity="0.3" d="M171.347 55.9481C174.124 55.9481 176.375 53.6912 176.375 50.9072C176.375 48.1231 174.124 45.8662 171.347 45.8662C168.57 45.8662 166.319 48.1231 166.319 50.9072C166.319 53.6912 168.57 55.9481 171.347 55.9481Z" fill="#172D45"/>
23
+ <path d="M87.1309 52.955C86.1882 52.955 85.4026 52.1674 85.4026 51.2222C85.4026 50.277 86.1882 49.4894 87.1309 49.4894C90.5875 49.4894 94.2012 44.6059 94.2012 37.202C94.2012 37.0445 94.2012 36.7294 94.2012 36.5719C94.0441 29.3255 90.4304 24.9146 87.1309 24.9146C83.9885 24.9146 80.5319 29.168 80.0605 35.7842H76.4468C76.9181 27.5927 81.4746 21.449 86.9738 21.449C92.7872 21.449 97.3436 28.2228 97.6579 36.8869C97.6579 37.0445 97.6579 37.202 97.6579 37.3595C97.815 46.0237 93.1014 52.955 87.1309 52.955Z" fill="#1C3754"/>
24
+ <path d="M169.618 52.955C168.676 52.955 167.89 52.1674 167.89 51.2222C167.89 50.277 168.676 49.4894 169.618 49.4894C173.075 49.4894 176.689 44.6059 176.689 37.202C176.689 37.0445 176.689 36.7294 176.689 36.5719C176.532 29.3255 172.918 24.9146 169.618 24.9146C166.476 24.9146 163.019 29.168 162.548 35.7842H158.934C159.406 27.5927 163.962 21.449 169.461 21.449C175.275 21.449 179.831 28.2228 180.145 36.8869C180.145 37.0445 180.145 37.202 180.145 37.3595C180.302 46.0237 175.589 52.955 169.618 52.955Z" fill="#1C3754"/>
25
+ <path d="M7 155.98H235.608" stroke="#EAEEF9" stroke-width="3.93023" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
26
+ <path d="M172.132 99.1113C171.19 99.1113 170.561 98.3236 170.561 97.536C170.561 96.5908 171.19 95.9607 172.132 95.9607H177.003C177.946 95.9607 178.574 96.7483 178.574 97.536C178.574 98.4812 177.789 99.1113 177.003 99.1113H172.132Z" fill="#D5DAE8"/>
27
+ <path d="M105.199 143.535C104.571 143.535 103.942 143.062 103.628 142.432L101.114 133.138H88.7019C87.7592 133.138 87.1307 132.35 87.1307 131.563C87.1307 130.617 87.9163 129.987 88.7019 129.987H100.172L96.2436 116.125H84.3026C83.3599 116.125 82.7314 115.337 82.7314 114.549C82.7314 113.604 83.3599 112.974 84.3026 112.974H95.3009L91.3729 99.1114H80.0604C79.1176 99.1114 78.4892 98.3237 78.4892 97.5361C78.4892 96.5909 79.1176 95.9608 80.0604 95.9608H90.5873L86.6594 82.0981H75.8181C74.8754 82.0981 74.2469 81.3104 74.2469 80.5228C74.2469 79.5776 74.8754 78.9475 75.8181 78.9475H85.7166L84.1455 73.2764C83.9883 72.4888 84.4597 71.5436 85.2453 71.386C85.4024 71.386 85.5595 71.386 85.7166 71.386C86.3451 71.386 86.9736 71.8586 87.2878 72.4888L89.1733 78.9475H101.743C102.686 78.9475 103.314 79.5776 103.314 80.5228C103.314 81.468 102.686 82.0981 101.743 82.0981H90.116L94.044 95.9608H113.841L107.556 73.2764C107.399 72.4888 107.87 71.5436 108.656 71.386C108.813 71.386 108.97 71.386 109.127 71.386C109.756 71.386 110.384 71.8586 110.699 72.4888L112.584 78.9475H119.34C120.283 78.9475 120.911 79.5776 120.911 80.5228C120.911 81.468 120.126 82.0981 119.34 82.0981H113.527L117.455 95.9608H130.81C131.753 95.9608 132.381 96.7484 132.381 97.5361C132.381 98.4812 131.753 99.1114 130.81 99.1114H118.397L122.325 112.974H142.28L133.638 82.0981H129.396C128.453 82.0981 127.825 81.3104 127.825 80.5228C127.825 79.5776 128.61 78.9475 129.396 78.9475H132.695L131.124 73.2764C130.967 72.8038 131.124 72.4888 131.281 72.0162C131.438 71.7011 131.753 71.386 132.224 71.2285C132.381 71.2285 132.538 71.2285 132.695 71.2285C133.324 71.2285 133.952 71.7011 134.266 72.3312L136.152 78.79H139.451C140.394 78.79 141.023 79.4201 141.023 80.3653C141.023 81.3104 140.394 81.9406 139.451 81.9406H137.095L141.023 95.8032H160.977L157.049 81.9406H146.836C145.893 81.9406 145.265 81.1529 145.265 80.3653C145.265 79.4201 146.05 78.79 146.836 78.79H155.635L154.063 73.1189C153.906 72.3312 154.378 71.386 155.163 71.2285C155.32 71.2285 155.478 71.2285 155.635 71.2285C156.263 71.2285 156.892 71.7011 157.206 72.3312L159.091 78.79H179.045L177.474 73.1189C177.317 72.3312 177.788 71.386 178.574 71.2285C178.731 71.2285 178.888 71.2285 179.045 71.2285C179.674 71.2285 180.302 71.7011 180.617 72.3312L182.502 78.79H194.757C195.7 78.79 196.329 79.4201 196.329 80.3653C196.329 81.3104 195.7 81.9406 194.757 81.9406H182.973L186.901 95.8032H198.685C199.628 95.8032 200.257 96.5909 200.257 97.3785C200.257 98.3237 199.628 98.9538 198.685 98.9538H187.844L191.772 112.816H203.085C204.027 112.816 204.656 113.604 204.656 114.392C204.656 115.337 204.027 115.967 203.085 115.967H192.715L196.643 129.83H207.327C208.27 129.83 208.898 130.617 208.898 131.405C208.898 132.35 208.113 132.98 207.327 132.98H197.428L199.785 141.329C199.942 142.117 199.471 143.062 198.685 143.22C198.528 143.22 198.371 143.22 198.214 143.22C197.586 143.22 196.957 142.747 196.643 142.117L194.129 132.98H174.175L176.532 141.172C176.689 141.645 176.532 141.96 176.374 142.432C176.217 142.747 175.903 143.062 175.432 143.22C175.275 143.22 175.117 143.22 174.96 143.22C174.332 143.22 173.703 142.747 173.389 142.117L170.875 133.138H150.921L153.278 141.329C153.435 142.117 152.964 143.062 152.178 143.22C152.021 143.22 151.864 143.22 151.707 143.22C151.078 143.22 150.45 142.747 150.136 142.117L147.622 133.138H127.667L130.024 141.329C130.181 142.117 129.71 143.062 128.924 143.22C128.767 143.22 128.61 143.22 128.453 143.22C127.825 143.22 127.196 142.747 126.882 142.117L124.368 133.138H104.414L106.771 141.487C106.928 141.96 106.771 142.275 106.614 142.747C106.456 143.062 106.142 143.377 105.671 143.535C105.514 143.535 105.357 143.535 105.199 143.535ZM149.978 129.987H193.186L189.258 116.125H169.304L170.718 121.166C170.875 121.638 170.718 121.953 170.561 122.426C170.404 122.741 170.09 123.056 169.618 123.213C169.461 123.213 169.304 123.213 169.147 123.213C168.518 123.213 167.89 122.741 167.576 122.111L166.005 116.282H160.034C159.091 116.282 158.463 115.495 158.463 114.707C158.463 113.762 159.091 113.132 160.034 113.132H165.062L161.134 99.2689H141.337L145.265 113.132H150.136C151.078 113.132 151.707 113.919 151.707 114.707C151.707 115.652 151.078 116.282 150.136 116.282H146.05L149.978 129.987ZM126.725 129.987H146.679L142.751 116.125H122.797L126.725 129.987ZM103.471 129.987H123.425L119.497 116.125H113.684C112.741 116.125 112.113 115.337 112.113 114.549C112.113 113.604 112.898 112.974 113.684 112.974H118.712L114.784 99.1114H94.8296L98.7575 112.974H103.942C104.885 112.974 105.514 113.762 105.514 114.549C105.514 115.494 104.728 116.125 103.942 116.125H99.7003L103.471 129.987ZM168.518 112.974H188.473L179.831 82.0981H159.72L168.518 112.974Z" fill="#D5DAE8"/>
28
+ <path d="M116.984 89.9747C114.941 93.1253 113.998 96.906 114.312 100.687C114.47 104.31 115.884 107.933 118.083 110.926C120.283 113.762 123.425 116.125 126.882 117.07C130.339 118.173 134.11 118.015 137.566 117.07C140.866 115.967 143.851 113.762 145.422 110.769C146.993 107.776 147.15 104.152 145.579 101.317C144.165 98.3238 141.18 96.1184 137.88 94.8581C134.581 93.4404 130.81 92.8103 127.039 92.6527C125.625 92.6527 124.682 91.3925 124.682 90.1322C124.682 88.7145 125.939 87.7693 127.196 87.7693C131.438 88.0843 135.681 88.7145 139.609 90.4473C143.537 92.1801 147.465 95.0157 149.507 99.4265C150.45 101.474 151.078 103.995 150.921 106.358C150.764 108.721 150.136 111.084 149.036 112.974C146.836 117.07 142.908 119.905 138.666 121.166C134.424 122.426 129.867 122.268 125.782 120.851C121.697 119.433 118.083 116.597 115.569 113.132C113.056 109.666 111.641 105.413 111.484 101.159C111.327 96.906 112.741 92.4952 115.098 89.0295C115.412 88.5569 116.198 88.3994 116.826 88.7145C117.141 88.7145 117.298 89.5021 116.984 89.9747Z" fill="url(#paint8_linear_16895_1825)"/>
29
+ <g filter="url(#filter0_d_16895_1825)">
30
+ <path d="M242.387 140.873C242.23 141.345 242.23 141.975 242.072 142.448C241.601 144.181 241.13 145.756 240.344 147.174C236.73 155.208 229.817 161.194 221.49 163.557C221.018 163.714 220.547 163.872 220.233 163.872C215.99 164.975 211.434 165.132 206.878 164.187C190.694 160.879 180.168 144.811 183.624 128.586C186.924 112.36 202.95 101.805 219.133 105.271C224.946 106.531 230.131 109.367 234.216 113.463C241.287 120.552 244.429 130.948 242.387 140.873Z" fill="url(#paint9_linear_16895_1825)"/>
31
+ </g>
32
+ <path d="M240.322 147.158C236.708 155.192 229.795 161.178 221.468 163.541L207.484 149.521L206.384 143.062L217.225 141.802L218.325 125.261L240.322 147.158Z" fill="url(#paint10_linear_16895_1825)"/>
33
+ <path d="M200.821 142.048C200.821 140.315 202.706 141.103 203.806 137.322C205.063 132.754 203.178 128.343 208.048 124.562C208.362 124.247 208.834 124.089 209.305 123.774C209.462 123.617 209.619 123.459 209.619 123.302C209.462 121.569 210.719 119.994 212.448 119.836C214.176 119.679 215.747 120.939 215.904 122.672C215.904 122.829 215.904 122.987 215.904 122.987C215.904 123.302 216.061 123.459 216.218 123.617C219.675 125.35 221.089 128.343 221.246 132.123C221.875 140.63 223.76 139.37 224.86 140.788C225.803 142.205 224.389 143.781 222.503 143.781C203.649 144.411 200.821 144.568 200.821 142.048Z" fill="url(#paint11_linear_16895_1825)"/>
34
+ <path d="M211.662 149.451C210.091 148.821 209.305 147.089 209.934 145.671C209.934 145.513 210.091 145.356 210.405 145.356C212.133 145.356 213.704 145.356 215.433 145.356C215.59 145.356 215.904 145.513 215.904 145.671C216.375 146.773 215.904 148.191 215.119 148.979C214.019 149.609 212.762 149.924 211.662 149.451Z" fill="url(#paint12_linear_16895_1825)"/>
35
+ </g>
36
+ <defs>
37
+ <filter id="filter0_d_16895_1825" x="172.967" y="96.6116" width="80.0334" height="80.196" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
38
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
39
+ <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"/>
40
+ <feOffset dy="2"/>
41
+ <feGaussianBlur stdDeviation="5"/>
42
+ <feColorMatrix type="matrix" values="0 0 0 0 0.1125 0 0 0 0 0.295916 0 0 0 0 1 0 0 0 0.22 0"/>
43
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16895_1825"/>
44
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16895_1825" result="shape"/>
45
+ </filter>
46
+ <linearGradient id="paint0_linear_16895_1825" x1="8.47097" y1="93.5723" x2="26.7465" y2="93.5723" gradientUnits="userSpaceOnUse">
47
+ <stop stop-color="#83A6FF"/>
48
+ <stop offset="1" stop-color="#5A78FF"/>
49
+ </linearGradient>
50
+ <linearGradient id="paint1_linear_16895_1825" x1="121.338" y1="12.3251" x2="135.974" y2="12.3251" gradientUnits="userSpaceOnUse">
51
+ <stop stop-color="#FF66A9"/>
52
+ <stop offset="1" stop-color="#F53689"/>
53
+ </linearGradient>
54
+ <linearGradient id="paint2_linear_16895_1825" x1="135.967" y1="12.2351" x2="142.535" y2="12.2351" gradientUnits="userSpaceOnUse">
55
+ <stop stop-color="#FF66A9"/>
56
+ <stop offset="1" stop-color="#F53689"/>
57
+ </linearGradient>
58
+ <linearGradient id="paint3_linear_16895_1825" x1="133.924" y1="6.95504" x2="140.486" y2="6.95504" gradientUnits="userSpaceOnUse">
59
+ <stop stop-color="#FF66A9"/>
60
+ <stop offset="1" stop-color="#F53689"/>
61
+ </linearGradient>
62
+ <linearGradient id="paint4_linear_16895_1825" x1="135.818" y1="2.1903" x2="138.567" y2="2.1903" gradientUnits="userSpaceOnUse">
63
+ <stop stop-color="#FF66A9"/>
64
+ <stop offset="1" stop-color="#F53689"/>
65
+ </linearGradient>
66
+ <linearGradient id="paint5_linear_16895_1825" x1="143.059" y1="8.36542" x2="145.742" y2="8.36542" gradientUnits="userSpaceOnUse">
67
+ <stop stop-color="#FF66A9"/>
68
+ <stop offset="1" stop-color="#F53689"/>
69
+ </linearGradient>
70
+ <linearGradient id="paint6_linear_16895_1825" x1="126.107" y1="4.59959" x2="128.159" y2="4.59959" gradientUnits="userSpaceOnUse">
71
+ <stop stop-color="#FF66A9"/>
72
+ <stop offset="1" stop-color="#F53689"/>
73
+ </linearGradient>
74
+ <linearGradient id="paint7_linear_16895_1825" x1="46.2511" y1="96.3365" x2="85.1463" y2="96.3365" gradientUnits="userSpaceOnUse">
75
+ <stop stop-color="#D5DAE8"/>
76
+ <stop offset="1" stop-color="#9AA3BA"/>
77
+ </linearGradient>
78
+ <linearGradient id="paint8_linear_16895_1825" x1="127.798" y1="121.78" x2="133.682" y2="88.3311" gradientUnits="userSpaceOnUse">
79
+ <stop stop-color="#FF66A9"/>
80
+ <stop offset="1" stop-color="#F53689"/>
81
+ </linearGradient>
82
+ <linearGradient id="paint9_linear_16895_1825" x1="182.881" y1="134.756" x2="242.984" y2="134.756" gradientUnits="userSpaceOnUse">
83
+ <stop stop-color="#83A6FF"/>
84
+ <stop offset="1" stop-color="#5A78FF"/>
85
+ </linearGradient>
86
+ <linearGradient id="paint10_linear_16895_1825" x1="214.758" y1="139.206" x2="227.606" y2="152.021" gradientUnits="userSpaceOnUse">
87
+ <stop stop-color="#4F6AFF"/>
88
+ <stop offset="1" stop-color="#657EFF" stop-opacity="0"/>
89
+ </linearGradient>
90
+ <linearGradient id="paint11_linear_16895_1825" x1="222.441" y1="146.455" x2="205.362" y2="129.421" gradientUnits="userSpaceOnUse">
91
+ <stop offset="0.0113208" stop-color="#C2D1FF"/>
92
+ <stop offset="1" stop-color="white"/>
93
+ </linearGradient>
94
+ <linearGradient id="paint12_linear_16895_1825" x1="217.51" y1="151.398" x2="200.431" y2="134.364" gradientUnits="userSpaceOnUse">
95
+ <stop offset="0.0113208" stop-color="#C2D1FF"/>
96
+ <stop offset="1" stop-color="white"/>
97
+ </linearGradient>
98
+ <clipPath id="clip0_16895_1825">
99
+ <rect width="250" height="172" fill="white"/>
100
+ </clipPath>
101
+ </defs>
102
+ </svg>
@@ -0,0 +1,173 @@
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_7550)">
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_7550)">
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_7550)">
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_7550)">
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_7550)">
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_7550)"/>
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_7550)"/>
41
+ <g filter="url(#filter4_d_16536_7550)">
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_7550)">
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_7550)">
48
+ <path d="M203.602 140.399C203.602 144.607 201.853 148.378 198.938 150.99C196.314 153.311 192.962 154.762 189.172 154.762C189.172 154.762 188.443 154.762 169.495 154.762C168.767 154.762 168.184 154.762 167.455 154.762C166.289 154.762 165.123 154.762 163.957 154.762H141.365C131.745 155.052 124.166 147.363 124.166 138.223C124.166 129.084 131.745 121.395 141.365 121.685H141.511C142.531 118.784 143.843 116.172 145.446 113.996C145.446 113.996 145.446 113.996 145.446 113.851C148.361 109.934 152.297 107.178 156.523 105.582C156.669 105.437 156.961 105.437 157.106 105.292C162.937 103.406 169.35 103.551 175.034 105.582C183.051 108.628 189.755 115.592 191.067 126.037C198.209 127.053 203.602 133.146 203.602 140.399Z" fill="url(#paint2_linear_16536_7550)"/>
49
+ </g>
50
+ <path d="M189.318 154.762C197.288 154.762 203.748 148.331 203.748 140.399C203.748 132.467 197.288 126.037 189.318 126.037C181.349 126.037 174.889 132.467 174.889 140.399C174.889 148.331 181.349 154.762 189.318 154.762Z" fill="url(#paint3_linear_16536_7550)"/>
51
+ <path d="M165.706 154.761C179.793 154.761 191.213 143.395 191.213 129.374C191.213 115.352 179.793 103.986 165.706 103.986C151.619 103.986 140.199 115.352 140.199 129.374C140.199 143.395 151.619 154.761 165.706 154.761Z" fill="url(#paint4_linear_16536_7550)"/>
52
+ <path d="M199.014 150.944C196.391 153.266 193.038 154.716 189.249 154.716C189.249 154.716 188.52 154.716 169.572 154.716L169.426 154.571L157.474 142.675L157.766 138.323L150.77 130.634L158.64 125.411L166.657 120.479L175.839 123.961L189.249 139.484L199.014 150.944Z" fill="url(#paint5_linear_16536_7550)"/>
53
+ <path d="M159.516 131.07C160.099 130.489 160.099 129.619 159.516 129.039C158.933 128.458 158.204 128.603 157.33 128.603C159.807 122.22 168.115 120.769 172.634 125.992C174.237 127.733 177.006 125.412 175.403 123.526C170.739 118.158 162.723 117.578 157.475 122.22C155.581 123.961 154.123 126.137 153.54 128.603C151.645 128.603 151.354 128.603 151.062 129.039C150.479 129.619 150.479 130.489 151.062 131.07C155.872 136.002 154.56 135.857 159.516 131.07Z" fill="url(#paint6_linear_16536_7550)"/>
54
+ <path d="M181.38 134.261L178.173 131.069C177.59 130.489 176.716 130.489 176.133 131.069L172.926 134.261C172.343 134.841 172.343 135.712 172.926 136.292C173.509 136.872 174.238 136.727 175.112 136.727C172.635 143.256 164.035 144.561 159.663 139.194C159.08 138.468 157.768 138.323 157.039 138.903C154.27 141.225 160.829 146.302 166.659 146.302C172.489 146.302 177.445 142.385 179.048 136.872C180.943 136.872 181.234 136.872 181.526 136.437C181.817 135.712 181.963 134.841 181.38 134.261Z" fill="url(#paint7_linear_16536_7550)"/>
55
+ <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(#paint8_linear_16536_7550)"/>
56
+ <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(#paint9_linear_16536_7550)"/>
57
+ <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(#paint10_linear_16536_7550)"/>
58
+ <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"/>
59
+ <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"/>
60
+ </g>
61
+ <defs>
62
+ <filter id="filter0_d_16536_7550" x="76.9364" y="32.1767" width="172.145" height="138.106" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
63
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
64
+ <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"/>
65
+ <feOffset dy="14.7964"/>
66
+ <feGaussianBlur stdDeviation="14.7964"/>
67
+ <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"/>
68
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16536_7550"/>
69
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16536_7550" result="shape"/>
70
+ </filter>
71
+ <filter id="filter1_d_16536_7550" x="56.4071" y="21.2958" width="131.664" height="130.621" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
72
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
73
+ <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"/>
74
+ <feOffset dy="14.7964"/>
75
+ <feGaussianBlur stdDeviation="14.7964"/>
76
+ <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"/>
77
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16536_7550"/>
78
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16536_7550" result="shape"/>
79
+ </filter>
80
+ <filter id="filter2_d_16536_7550" x="145.899" y="14.498" width="121.547" height="131.681" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
81
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
82
+ <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"/>
83
+ <feOffset dy="14.7964"/>
84
+ <feGaussianBlur stdDeviation="14.7964"/>
85
+ <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"/>
86
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16536_7550"/>
87
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16536_7550" result="shape"/>
88
+ </filter>
89
+ <filter id="filter3_d_16536_7550" x="110.595" y="-0.62213" width="114.731" height="129.426" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
90
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
91
+ <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"/>
92
+ <feOffset dy="14.7964"/>
93
+ <feGaussianBlur stdDeviation="14.7964"/>
94
+ <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"/>
95
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16536_7550"/>
96
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16536_7550" result="shape"/>
97
+ </filter>
98
+ <filter id="filter4_d_16536_7550" x="73.8934" y="25.3568" width="177.557" height="104.802" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
99
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
100
+ <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"/>
101
+ <feOffset dy="-22.8672"/>
102
+ <feGaussianBlur stdDeviation="14.7964"/>
103
+ <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"/>
104
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16536_7550"/>
105
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16536_7550" result="shape"/>
106
+ </filter>
107
+ <filter id="filter5_d_16536_7550" x="80.541" y="62.3296" width="163.918" height="101.925" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
108
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
109
+ <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"/>
110
+ <feOffset dy="8"/>
111
+ <feGaussianBlur stdDeviation="8"/>
112
+ <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"/>
113
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16536_7550"/>
114
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16536_7550" result="shape"/>
115
+ </filter>
116
+ <filter id="filter6_d_16536_7550" x="116.166" y="97.9634" width="95.4355" height="66.8062" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
117
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
118
+ <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"/>
119
+ <feOffset dy="2"/>
120
+ <feGaussianBlur stdDeviation="4"/>
121
+ <feColorMatrix type="matrix" values="0 0 0 0 0.1125 0 0 0 0 0.295916 0 0 0 0 1 0 0 0 0.22 0"/>
122
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16536_7550"/>
123
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16536_7550" result="shape"/>
124
+ </filter>
125
+ <linearGradient id="paint0_linear_16536_7550" x1="156.528" y1="45.508" x2="163.05" y2="46.262" gradientUnits="userSpaceOnUse">
126
+ <stop stop-color="#FF66A9"/>
127
+ <stop offset="1" stop-color="#F53689"/>
128
+ </linearGradient>
129
+ <linearGradient id="paint1_linear_16536_7550" x1="177.415" y1="73.4772" x2="186.595" y2="74.5384" gradientUnits="userSpaceOnUse">
130
+ <stop stop-color="#83A6FF"/>
131
+ <stop offset="1" stop-color="#5A78FF"/>
132
+ </linearGradient>
133
+ <linearGradient id="paint2_linear_16536_7550" x1="163.944" y1="103.778" x2="163.944" y2="154.685" gradientUnits="userSpaceOnUse">
134
+ <stop stop-color="#A7CAFF"/>
135
+ <stop offset="1" stop-color="#5599FF"/>
136
+ </linearGradient>
137
+ <linearGradient id="paint3_linear_16536_7550" x1="173.377" y1="123.124" x2="186.07" y2="137.035" gradientUnits="userSpaceOnUse">
138
+ <stop stop-color="#84B5FF"/>
139
+ <stop offset="1" stop-color="#8EBBFF" stop-opacity="0"/>
140
+ </linearGradient>
141
+ <linearGradient id="paint4_linear_16536_7550" x1="182" y1="144" x2="145.637" y2="113.835" gradientUnits="userSpaceOnUse">
142
+ <stop stop-color="#8DBBFF"/>
143
+ <stop offset="1" stop-color="#8DBBFF" stop-opacity="0"/>
144
+ </linearGradient>
145
+ <linearGradient id="paint5_linear_16536_7550" x1="159.147" y1="125.866" x2="189.611" y2="156.473" gradientUnits="userSpaceOnUse">
146
+ <stop stop-color="#2165CC"/>
147
+ <stop offset="1" stop-color="#68A4FF" stop-opacity="0"/>
148
+ </linearGradient>
149
+ <linearGradient id="paint6_linear_16536_7550" x1="176.938" y1="140.915" x2="163.889" y2="127.806" gradientUnits="userSpaceOnUse">
150
+ <stop offset="0.0113208" stop-color="#C2D1FF"/>
151
+ <stop offset="1" stop-color="white"/>
152
+ </linearGradient>
153
+ <linearGradient id="paint7_linear_16536_7550" x1="174.438" y1="143.404" x2="161.39" y2="130.295" gradientUnits="userSpaceOnUse">
154
+ <stop offset="0.0113208" stop-color="#C2D1FF"/>
155
+ <stop offset="1" stop-color="white"/>
156
+ </linearGradient>
157
+ <linearGradient id="paint8_linear_16536_7550" x1="141.598" y1="4.66847" x2="143.615" y2="3.82922" gradientUnits="userSpaceOnUse">
158
+ <stop stop-color="#FF66A9"/>
159
+ <stop offset="1" stop-color="#F53689"/>
160
+ </linearGradient>
161
+ <linearGradient id="paint9_linear_16536_7550" x1="135.569" y1="13.8339" x2="135.975" y2="11.6948" gradientUnits="userSpaceOnUse">
162
+ <stop stop-color="#FF66A9"/>
163
+ <stop offset="1" stop-color="#F53689"/>
164
+ </linearGradient>
165
+ <linearGradient id="paint10_linear_16536_7550" x1="155.504" y1="4.55199" x2="153.781" y2="3.21122" gradientUnits="userSpaceOnUse">
166
+ <stop stop-color="#FF66A9"/>
167
+ <stop offset="1" stop-color="#F53689"/>
168
+ </linearGradient>
169
+ <clipPath id="clip0_16536_7550">
170
+ <rect width="324" height="162" fill="white"/>
171
+ </clipPath>
172
+ </defs>
173
+ </svg>
@@ -0,0 +1,20 @@
1
+ <svg width="124" height="124" viewBox="0 0 124 124" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="63.5" cy="62.5" r="43" fill="#EBEEF1" stroke="#B7C2CE"/>
3
+ <path d="M27.5 43C27.5 41.067 29.067 39.5 31 39.5H93C94.933 39.5 96.5 41.067 96.5 43V67.5H27.5V43Z" fill="#EBEEF1" stroke="#B7C2CE"/>
4
+ <circle r="3.5" transform="matrix(1 0 0 -1 16.5 82.5)" fill="#EBEEF1"/>
5
+ <circle r="2" transform="matrix(1 0 0 -1 21 40)" fill="#EBEEF1"/>
6
+ <circle r="2" transform="matrix(1 0 0 -1 104 34)" fill="#EBEEF1"/>
7
+ <circle r="3" transform="matrix(1 0 0 -1 108 43)" fill="#EBEEF1"/>
8
+ <path d="M40.5 32C40.5 30.6193 41.6193 29.5 43 29.5H70.7264C71.4047 29.5 72.0538 29.7756 72.5249 30.2635L84.7985 42.9754C85.2485 43.4415 85.5 44.0641 85.5 44.7119V59.5H40.5V32Z" fill="white" stroke="#B7C2CE"/>
9
+ <rect x="46" y="53" width="21" height="1" rx="0.5" fill="#B7C2CE" stroke="#B7C2CE" stroke-width="0.5"/>
10
+ <path d="M21.5183 63.7757C21.0365 61.0221 23.1555 58.5 25.951 58.5H56.4387C58.6949 58.5 60.8775 57.697 62.5958 56.2346L69.3023 50.5269C70.8397 49.2185 72.7926 48.5 74.8113 48.5H103.216C105.397 48.5 107.047 50.4734 106.66 52.62L99.3966 92.9743C98.925 95.594 96.6453 97.5 93.9836 97.5H32.0412C29.3694 97.5 27.0841 95.5799 26.6235 92.9481L21.5183 63.7757Z" fill="white" stroke="#B7C2CE"/>
11
+ <mask id="path-10-inside-1_1193_34612" fill="white">
12
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M88.6218 91.2787C85.3463 93.6214 81.3341 95 77 95C65.9543 95 57 86.0457 57 75C57 63.9543 65.9543 55 77 55C88.0457 55 97 63.9543 97 75C97 79.1833 95.7157 83.0666 93.5198 86.2771L105.445 98.2028C106.812 99.5696 106.812 101.786 105.445 103.153C104.079 104.519 101.863 104.519 100.496 103.153L88.6218 91.2787ZM90 75C90 82.1797 84.1797 88 77 88C69.8203 88 64 82.1797 64 75C64 67.8203 69.8203 62 77 62C84.1797 62 90 67.8203 90 75Z"/>
13
+ </mask>
14
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M88.6218 91.2787C85.3463 93.6214 81.3341 95 77 95C65.9543 95 57 86.0457 57 75C57 63.9543 65.9543 55 77 55C88.0457 55 97 63.9543 97 75C97 79.1833 95.7157 83.0666 93.5198 86.2771L105.445 98.2028C106.812 99.5696 106.812 101.786 105.445 103.153C104.079 104.519 101.863 104.519 100.496 103.153L88.6218 91.2787ZM90 75C90 82.1797 84.1797 88 77 88C69.8203 88 64 82.1797 64 75C64 67.8203 69.8203 62 77 62C84.1797 62 90 67.8203 90 75Z" fill="#DDE2E8"/>
15
+ <path d="M88.6218 91.2787L89.3289 90.5716L88.7295 89.9722L88.0401 90.4653L88.6218 91.2787ZM93.5198 86.2771L92.6944 85.7126L92.2259 86.3975L92.8127 86.9842L93.5198 86.2771ZM105.445 98.2028L104.738 98.9099L105.445 98.2028ZM77 96C81.5496 96 85.7639 94.5521 89.2035 92.0921L88.0401 90.4653C84.9286 92.6906 81.1187 94 77 94V96ZM56 75C56 86.598 65.402 96 77 96V94C66.5066 94 58 85.4934 58 75H56ZM77 54C65.402 54 56 63.402 56 75H58C58 64.5066 66.5066 56 77 56V54ZM98 75C98 63.402 88.598 54 77 54V56C87.4934 56 96 64.5066 96 75H98ZM94.3452 86.8417C96.6512 83.4701 98 79.3911 98 75H96C96 78.9755 94.7801 82.6631 92.6944 85.7126L94.3452 86.8417ZM92.8127 86.9842L104.738 98.9099L106.153 97.4957L94.2269 85.57L92.8127 86.9842ZM104.738 98.9099C105.715 99.8862 105.715 101.469 104.738 102.445L106.153 103.86C107.91 102.102 107.91 99.2531 106.153 97.4957L104.738 98.9099ZM104.738 102.445C103.762 103.422 102.179 103.422 101.203 102.445L99.7886 103.86C101.546 105.617 104.395 105.617 106.153 103.86L104.738 102.445ZM101.203 102.445L89.3289 90.5716L87.9147 91.9858L99.7886 103.86L101.203 102.445ZM77 89C84.732 89 91 82.732 91 75H89C89 81.6274 83.6274 87 77 87V89ZM63 75C63 82.732 69.268 89 77 89V87C70.3726 87 65 81.6274 65 75H63ZM77 61C69.268 61 63 67.268 63 75H65C65 68.3726 70.3726 63 77 63V61ZM91 75C91 67.268 84.732 61 77 61V63C83.6274 63 89 68.3726 89 75H91Z" fill="#778DA8" mask="url(#path-10-inside-1_1193_34612)"/>
16
+ <path d="M76.3859 69.668C75.8726 69.668 75.3812 69.734 74.9119 69.866C74.4426 69.9833 73.9512 70.1813 73.4379 70.46L72.6899 68.414C73.2326 68.106 73.8486 67.864 74.5379 67.688C75.2419 67.4973 75.9606 67.402 76.6939 67.402C77.5739 67.402 78.2999 67.5267 78.8719 67.776C79.4439 68.0107 79.8986 68.3113 80.2359 68.678C80.5732 69.0447 80.8079 69.448 80.9399 69.888C81.0719 70.328 81.1379 70.7533 81.1379 71.164C81.1379 71.6627 81.0426 72.11 80.8519 72.506C80.6759 72.902 80.4486 73.2687 80.1699 73.606C79.8912 73.9433 79.5906 74.266 79.2679 74.574C78.9452 74.8673 78.6446 75.1753 78.3659 75.498C78.0872 75.806 77.8526 76.136 77.6619 76.488C77.4859 76.84 77.3979 77.236 77.3979 77.676C77.3979 77.7493 77.3979 77.8373 77.3979 77.94C77.3979 78.028 77.4052 78.116 77.4199 78.204H75.1319C75.1026 78.0573 75.0806 77.9033 75.0659 77.742C75.0512 77.566 75.0439 77.4047 75.0439 77.258C75.0439 76.774 75.1246 76.3413 75.2859 75.96C75.4472 75.5787 75.6526 75.2267 75.9019 74.904C76.1512 74.5813 76.4152 74.2807 76.6939 74.002C76.9872 73.7233 77.2586 73.4447 77.5079 73.166C77.7572 72.8873 77.9626 72.6013 78.1239 72.308C78.2852 72.0147 78.3659 71.692 78.3659 71.34C78.3659 70.856 78.1972 70.46 77.8599 70.152C77.5372 69.8293 77.0459 69.668 76.3859 69.668ZM78.1019 81.548C78.1019 82.0613 77.9332 82.4793 77.5959 82.802C77.2586 83.1247 76.8406 83.286 76.3419 83.286C75.8579 83.286 75.4399 83.1247 75.0879 82.802C74.7506 82.4793 74.5819 82.0613 74.5819 81.548C74.5819 81.0347 74.7506 80.6167 75.0879 80.294C75.4399 79.9567 75.8579 79.788 76.3419 79.788C76.8406 79.788 77.2586 79.9567 77.5959 80.294C77.9332 80.6167 78.1019 81.0347 78.1019 81.548Z" fill="#778DA8"/>
17
+ <rect x="46" y="37" width="21" height="1" rx="0.5" fill="#B7C2CE" stroke="#B7C2CE" stroke-width="0.5"/>
18
+ <rect x="46" y="41" width="12" height="1" rx="0.5" fill="#B7C2CE" stroke="#B7C2CE" stroke-width="0.5"/>
19
+ <path d="M72 30.2733C72 29.8188 72.5572 29.6 72.8664 29.933L78.5 36L85.7654 44H75C73.3431 44 72 42.6569 72 41V30.2733Z" fill="#B7C2CE"/>
20
+ </svg>
@@ -0,0 +1,38 @@
1
+ <svg width="124" height="124" viewBox="0 0 124 124" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="65.6763" cy="58.5" r="43" fill="#EBEEF1" stroke="#B7C2CE"/>
3
+ <rect x="8.69808" y="35.014" width="35" height="35" rx="1.5" transform="rotate(-35.8375 8.69808 35.014)" fill="white" stroke="#B7C2CE"/>
4
+ <rect x="13.5847" y="35.8021" width="28" height="28" rx="1" transform="rotate(-35.8375 13.5847 35.8021)" fill="#EBEEF1"/>
5
+ <circle cx="24.754" cy="37.6037" r="2" transform="rotate(-35.8375 24.754 37.6037)" fill="#99A9BA"/>
6
+ <path d="M28.4506 41.6701L28.0255 47.7981C27.9962 48.221 28.4734 48.4863 28.8171 48.2381L35.193 43.6332C35.5367 43.385 35.435 42.8486 35.0243 42.7435L29.0734 41.2204C28.7709 41.1429 28.4722 41.3586 28.4506 41.6701Z" fill="#99A9BA"/>
7
+ <path d="M33.3335 35.588L32.1521 44.7909C32.0964 45.2251 32.586 45.5162 32.9408 45.2599L43.2298 37.829C43.5846 37.5727 43.4622 37.0165 43.0325 36.9329L33.9249 35.1609C33.6414 35.1057 33.3703 35.3016 33.3335 35.588Z" fill="#B7C2CE"/>
8
+ <rect x="83.8264" y="11.703" width="35" height="35" rx="1.5" transform="rotate(38.8338 83.8264 11.703)" fill="white" stroke="#B7C2CE"/>
9
+ <rect x="84.3582" y="16.6241" width="28" height="28" rx="1" transform="rotate(38.8338 84.3582 16.6241)" fill="#EBEEF1"/>
10
+ <circle cx="85.5733" cy="27.8724" r="2" transform="rotate(38.8338 85.5733 27.8724)" fill="#99A9BA"/>
11
+ <path d="M82.6289 32.5124L76.6065 33.7224C76.1909 33.8059 76.0612 34.3363 76.3914 34.6021L82.518 39.534C82.8482 39.7998 83.3386 39.5598 83.3315 39.136L83.2273 32.9941C83.222 32.6819 82.935 32.4509 82.6289 32.5124Z" fill="#99A9BA"/>
12
+ <path d="M89.7853 35.6136L80.5975 36.9071C80.1641 36.9682 80.0127 37.5173 80.3537 37.7918L90.2402 45.7503C90.5811 46.0248 91.0853 45.7596 91.0523 45.3232L90.3536 36.0711C90.3319 35.7831 90.0713 35.5734 89.7853 35.6136Z" fill="#B7C2CE"/>
13
+ <rect x="44.8417" y="80.5819" width="35" height="35" rx="1.5" transform="rotate(-25.2257 44.8417 80.5819)" fill="white" stroke="#B7C2CE"/>
14
+ <rect x="49.4995" y="82.2565" width="28" height="28" rx="1" transform="rotate(-25.2257 49.4995 82.2565)" fill="#EBEEF1"/>
15
+ <circle cx="60.146" cy="86.0841" r="2" transform="rotate(-25.2257 60.146 86.0841)" fill="#99A9BA"/>
16
+ <path d="M63.0306 90.7618L61.4843 96.7067C61.3776 97.117 61.7978 97.4655 62.1813 97.2849L69.2962 93.9329C69.6797 93.7523 69.6785 93.2063 69.2942 93.0274L63.7256 90.4344C63.4425 90.3026 63.1092 90.4596 63.0306 90.7618Z" fill="#99A9BA"/>
17
+ <path d="M68.95 85.6829L66.0941 94.5108C65.9593 94.9273 66.3869 95.3036 66.7829 95.117L78.2643 89.708C78.6603 89.5215 78.6424 88.9522 78.2355 88.7909L69.6099 85.372C69.3414 85.2655 69.0389 85.4081 68.95 85.6829Z" fill="#B7C2CE"/>
18
+ <circle cx="47.6763" cy="43.5" r="6" fill="#DDE2E8" stroke="#778DA8"/>
19
+ <circle cx="84.6763" cy="43.5" r="6" fill="#DDE2E8" stroke="#778DA8"/>
20
+ <path d="M41.6763 41.4999C36.4415 44.1173 32.2553 54.5117 30.5063 60.349C30.3272 60.9468 30.7488 61.5493 31.3705 61.6029L58.688 63.9579C58.996 63.9845 59.299 63.8671 59.5087 63.6399L64.8199 57.8861C65.043 57.6444 65.133 57.3084 65.0605 56.9875L61.6763 42L55.181 43.3918C54.8644 43.4596 54.5371 43.3679 54.2858 43.1637C52.0359 41.3354 46.9446 38.8658 41.6763 41.4999Z" fill="#DDE2E8" stroke="#778DA8"/>
21
+ <path d="M90.6763 41.4999C95.9111 44.1173 100.097 54.5117 101.846 60.349C102.025 60.9468 101.604 61.5493 100.982 61.6029L73.6645 63.9579C73.3565 63.9845 73.0536 63.8671 72.8439 63.6399L67.5326 57.8861C67.3095 57.6444 67.2195 57.3084 67.292 56.9875L70.6763 42L77.1715 43.3918C77.4882 43.4596 77.8154 43.3679 78.0668 43.1637C80.3166 41.3354 85.408 38.8658 90.6763 41.4999Z" fill="#DDE2E8" stroke="#778DA8"/>
22
+ <circle cx="44.1763" cy="68" r="15.5" fill="#DDE2E8" stroke="#778DA8"/>
23
+ <circle cx="89.1763" cy="68" r="15.5" fill="#DDE2E8" stroke="#778DA8"/>
24
+ <circle cx="44.1763" cy="68" r="11.5" fill="#DDE2E8" stroke="#778DA8"/>
25
+ <circle cx="89.1763" cy="68" r="11.5" fill="#DDE2E8" stroke="#778DA8"/>
26
+ <circle cx="44.1763" cy="66" r="9.5" fill="#DDE2E8" stroke="#778DA8"/>
27
+ <circle cx="89.1763" cy="66" r="9.5" fill="#DDE2E8" stroke="#778DA8"/>
28
+ <path d="M44.1763 60C43.3883 60 42.6081 60.1552 41.8802 60.4567C41.1522 60.7583 40.4908 61.2002 39.9336 61.7574C39.3765 62.3145 38.9345 62.9759 38.633 63.7039C38.3315 64.4319 38.1763 65.2121 38.1763 66" stroke="white" stroke-linecap="round"/>
29
+ <path d="M89.1763 60C88.3883 60 87.6081 60.1552 86.8802 60.4567C86.1522 60.7583 85.4908 61.2002 84.9336 61.7574C84.3765 62.3145 83.9345 62.9759 83.633 63.7039C83.3315 64.4319 83.1763 65.2121 83.1763 66" stroke="white" stroke-linecap="round"/>
30
+ <mask id="path-29-inside-1_1361_37176" fill="white">
31
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M71.1763 44V54C71.1763 56.7614 68.9377 59 66.1763 59C63.4148 59 61.1763 56.7614 61.1763 54V44C61.1763 41.2386 63.4148 39 66.1763 39C68.9377 39 71.1763 41.2386 71.1763 44Z"/>
32
+ </mask>
33
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M71.1763 44V54C71.1763 56.7614 68.9377 59 66.1763 59C63.4148 59 61.1763 56.7614 61.1763 54V44C61.1763 41.2386 63.4148 39 66.1763 39C68.9377 39 71.1763 41.2386 71.1763 44Z" fill="#DDE2E8"/>
34
+ <path d="M70.1763 44V54H72.1763V44H70.1763ZM70.1763 54C70.1763 56.2091 68.3854 58 66.1763 58V60C69.49 60 72.1763 57.3137 72.1763 54H70.1763ZM66.1763 58C63.9671 58 62.1763 56.2091 62.1763 54H60.1763C60.1763 57.3137 62.8626 60 66.1763 60V58ZM62.1763 54V44H60.1763V54H62.1763ZM66.1763 38C62.8626 38 60.1763 40.6863 60.1763 44H62.1763C62.1763 41.7909 63.9671 40 66.1763 40V38ZM72.1763 44C72.1763 40.6863 69.49 38 66.1763 38V40C68.3854 40 70.1763 41.7909 70.1763 44H72.1763Z" fill="#778DA8" mask="url(#path-29-inside-1_1361_37176)"/>
35
+ <path d="M61.1763 42.5C62.6763 41.5 66.6763 40.1 70.6763 42.5" stroke="#778DA8"/>
36
+ <circle cx="66.1763" cy="54" r="4.5" stroke="#778DA8"/>
37
+ <circle r="3.5" transform="matrix(1 0 0 -1 112.676 42.5)" fill="#EBEEF1"/>
38
+ </svg>
@@ -0,0 +1,114 @@
1
+ <svg width="178" height="156" viewBox="0 0 178 156" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4" d="M63.1079 16.5413C30.3094 18.7745 7.70499 50.0157 11.2659 100.032C13.7355 134.727 82.0092 124.364 124.774 113.348C159.738 93.0133 185.161 48.4817 160.493 16.5413C137.333 -13.4457 95.9065 14.3082 63.1079 16.5413Z" fill="#E9F3FD"/>
3
+ <path d="M177.406 123.036H17.6522L-9.15527e-05 155.99H150.927L177.406 123.036Z" fill="url(#paint0_linear_1866_38634)"/>
4
+ <path d="M29.1868 107.484C30.2867 109.35 30.3983 110.539 29.736 112.976" stroke="#6E6464" stroke-width="0.549243" stroke-linecap="round"/>
5
+ <path d="M12.4219 95.8533C19.2829 103.135 19.4571 109.497 28.8285 108.099C29.315 108.026 29.6827 107.622 29.7045 107.131C29.8051 104.855 29.8146 98.4914 27.03 95.6029C23.7688 92.2202 16.3846 93.3019 12.9261 94.0455C12.0981 94.2235 11.8412 95.2369 12.4219 95.8533Z" fill="url(#paint1_linear_1866_38634)"/>
6
+ <path d="M30.834 112.976C31.1171 112.067 31.3081 111.277 31.3623 110.504M30.8343 102.54C30.5585 104.384 30.0507 105.546 30.834 107.483C31.2834 108.595 31.4303 109.536 31.3623 110.504M31.3623 110.504C32.7922 109.189 33.4282 108.414 34.1296 106.934" stroke="#6E6464" stroke-width="0.549243" stroke-linecap="round"/>
7
+ <path d="M23.145 114.074C23.145 112.861 24.1286 111.877 25.342 111.877H36.3269C37.5402 111.877 38.5238 112.861 38.5238 114.074V121.764C38.5238 123.584 37.0484 125.059 35.2284 125.059H26.4405C24.6204 125.059 23.145 123.584 23.145 121.764V114.074Z" fill="url(#paint2_linear_1866_38634)"/>
8
+ <path d="M13.439 95.0596C22.1419 97.7038 23.1114 102.271 28.8759 106.942" stroke="white" stroke-opacity="0.2" stroke-width="0.274622" stroke-linecap="round"/>
9
+ <g filter="url(#filter0_d_1866_38634)">
10
+ <path d="M28.9548 99.7325C30.2293 91.696 28.2623 86.0133 22.7275 80.8557C22.2815 80.44 21.437 81.0799 21.5656 81.6758C22.5094 86.0478 19.7856 89.9197 21.4985 94.5763C22.4274 97.1016 25.6322 99.3458 27.437 100.448C28.0595 100.827 28.8406 100.453 28.9548 99.7325Z" fill="#C4C4C4"/>
11
+ <path d="M28.9548 99.7325C30.2293 91.696 28.2623 86.0133 22.7275 80.8557C22.2815 80.44 21.437 81.0799 21.5656 81.6758C22.5094 86.0478 19.7856 89.9197 21.4985 94.5763C22.4274 97.1016 25.6322 99.3458 27.437 100.448C28.0595 100.827 28.8406 100.453 28.9548 99.7325Z" fill="url(#paint3_linear_1866_38634)"/>
12
+ </g>
13
+ <path d="M22.5963 82.2184C25.3919 89.5274 23.4197 92.3793 27.5391 98.1464" stroke="white" stroke-opacity="0.2" stroke-width="0.274622" stroke-linecap="round"/>
14
+ <g filter="url(#filter1_d_1866_38634)">
15
+ <path d="M25.3639 95.4002C25.6588 99.1872 28.9643 102.83 29.9993 103.884C30.1943 104.083 30.4619 104.188 30.7401 104.175C32.6702 104.081 40.3656 103.332 39.6442 97.3226C38.8432 90.6499 38.9066 84.1174 39.008 80.9326C39.0357 80.0636 38.1093 79.4997 37.378 79.97C33.5816 82.4113 24.8483 88.7781 25.3639 95.4002Z" fill="#C4C4C4"/>
16
+ <path d="M25.3639 95.4002C25.6588 99.1872 28.9643 102.83 29.9993 103.884C30.1943 104.083 30.4619 104.188 30.7401 104.175C32.6702 104.081 40.3656 103.332 39.6442 97.3226C38.8432 90.6499 38.9066 84.1174 39.008 80.9326C39.0357 80.0636 38.1093 79.4997 37.378 79.97C33.5816 82.4113 24.8483 88.7781 25.3639 95.4002Z" fill="url(#paint4_linear_1866_38634)"/>
17
+ </g>
18
+ <g filter="url(#filter2_d_1866_38634)">
19
+ <path d="M42.8938 91.8091C32.8365 97.1366 31.2317 100.083 33.2336 106.78C33.3612 107.207 33.7439 107.511 34.1896 107.518C41.5876 107.629 44.3193 100.399 44.4509 92.7388C44.4647 91.9333 43.6057 91.432 42.8938 91.8091Z" fill="url(#paint5_linear_1866_38634)"/>
20
+ </g>
21
+ <path d="M34.5492 105.792C34.5248 105.863 34.5631 105.941 34.6349 105.966C34.7067 105.99 34.7847 105.952 34.8092 105.88L34.5492 105.792ZM43.3001 93.2885C43.3472 93.229 43.3372 93.1426 43.2777 93.0956C43.2182 93.0485 43.1319 93.0586 43.0848 93.118L43.3001 93.2885ZM34.8092 105.88C36.1285 102.011 37.9855 100.003 43.3001 93.2885L43.0848 93.118C37.787 99.8117 35.888 101.865 34.5492 105.792L34.8092 105.88Z" fill="white" fill-opacity="0.2"/>
22
+ <path d="M30.8339 102.54C30.0253 94.7568 31.7143 90.164 37.4248 81.6691" stroke="white" stroke-opacity="0.2" stroke-width="0.274622" stroke-linecap="round"/>
23
+ <g filter="url(#filter3_i_1866_38634)">
24
+ <path d="M153.593 124.836C161.618 124.836 168.123 118.33 168.123 110.305C168.123 102.28 161.577 95.9229 153.593 95.9229C145.608 95.9229 139.062 102.28 139.062 110.305C139.062 118.33 145.567 124.836 153.593 124.836Z" fill="url(#paint6_radial_1866_38634)"/>
25
+ </g>
26
+ <path d="M147 110.5C147 110.017 147.392 109.625 147.875 109.625H152.625V104.875C152.625 104.392 153.017 104 153.5 104C153.983 104 154.375 104.392 154.375 104.875V109.625H159.625C160.109 109.625 160.5 110.017 160.5 110.5C160.5 110.984 160.109 111.375 159.625 111.375H154.375V116.626C154.375 117.109 153.983 117.501 153.5 117.501C153.017 117.501 152.625 117.109 152.625 116.626V111.375H147.875C147.392 111.375 147 110.984 147 110.5Z" fill="white"/>
27
+ <path d="M44.1569 18.9249C44.1569 16.9341 45.7708 15.3202 47.7616 15.3202H128.868C130.859 15.3202 132.473 16.9341 132.473 18.9249V119.858C132.473 121.849 130.859 123.462 128.868 123.462H47.7616C45.7708 123.462 44.1569 121.849 44.1569 119.858V18.9249Z" fill="#D8E0E8"/>
28
+ <path d="M44.1569 18.9249C44.1569 16.9341 45.7708 15.3202 47.7616 15.3202H128.868C130.859 15.3202 132.473 16.9341 132.473 18.9249V119.858C132.473 121.849 130.859 123.462 128.868 123.462H47.7616C45.7708 123.462 44.1569 121.849 44.1569 119.858V18.9249Z" fill="url(#paint7_linear_1866_38634)"/>
29
+ <path d="M44.1569 18.9249C44.1569 16.9341 45.7708 15.3202 47.7616 15.3202H128.868C130.859 15.3202 132.473 16.9341 132.473 18.9249V119.858C132.473 121.849 130.859 123.462 128.868 123.462H47.7616C45.7708 123.462 44.1569 121.849 44.1569 119.858V18.9249Z" stroke="#072D57" stroke-width="3.60474"/>
30
+ <path d="M45.9591 15.3202H130.671C130.671 15.3202 132.473 102.735 118.054 118.055H33.3425C50.4651 104.538 45.9591 15.3202 45.9591 15.3202Z" fill="white"/>
31
+ <path d="M91.9197 98.0792C91.9197 98.0792 93.6905 97.7377 94.3921 97.6952C95.0937 97.6526 95.8426 97.8189 96.1816 97.5442C96.6023 97.2033 96.8235 96.8726 97.0838 96.4808C97.5246 95.8175 98.5116 95.5741 99.1874 94.8759C99.9561 94.0817 100.532 93.5972 100.623 92.6573C100.714 91.7174 99.8458 91.9452 99.8458 91.9452C99.0591 92.6572 98.5593 93.6517 98.5593 93.6517L97.4328 95.4896C97.4328 95.4896 96.5597 96.9262 95.6881 97.5442C95.1459 97.9287 94.7324 98.578 94.7324 98.578C94.7324 98.578 94.2391 99.1887 94.3921 99.4557C94.6427 99.8931 95.4721 98.7886 95.6283 98.578C95.8462 98.2843 95.9338 97.9564 96.1367 97.6656C96.1367 97.6656 99.8478 95.3986 100.08 95.424C100.368 95.4557 100.162 96.0029 100.04 96.3594C99.9178 96.7159 99.2919 98.0467 99.8603 98.0759C100.339 98.1005 100.552 97.6738 100.663 97.4621C100.92 96.9729 101.395 96.0889 101.879 95.9196C103.386 95.3928 102.815 97.2543 104.086 97.4621C105.612 97.7117 106.193 96.0421 107.69 96.3479C109.147 96.6454 108.017 98.2054 109.493 98.4664C110.775 98.6931 112.647 97.6656 112.647 97.6656" stroke="#7AB9FC" stroke-width="0.629798" stroke-linecap="round" stroke-linejoin="round"/>
32
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M98.2279 9.01186C98.2279 9.31601 98.2128 9.61664 98.1834 9.91304H109.042C113.024 9.91304 116.252 13.1408 116.252 17.1225V18.9249C116.252 19.9203 115.445 20.7273 114.449 20.7273H63.9828C62.9874 20.7273 62.1804 19.9203 62.1804 18.9249V17.1225C62.1804 13.1408 65.4082 9.91304 69.3899 9.91304H80.2486C80.2192 9.61664 80.2041 9.31601 80.2041 9.01186C80.2041 4.03475 84.2389 0 89.216 0C94.1931 0 98.2279 4.03475 98.2279 9.01186ZM89.2159 12.6166C91.2068 12.6166 92.8207 11.0027 92.8207 9.01184C92.8207 7.021 91.2068 5.4071 89.2159 5.4071C87.2251 5.4071 85.6112 7.021 85.6112 9.01184C85.6112 11.0027 87.2251 12.6166 89.2159 12.6166Z" fill="#072D57"/>
33
+ <line x1="75.2475" y1="55.4229" x2="101.382" y2="55.4229" stroke="#DDE2E8" stroke-width="2.70356" stroke-linecap="round"/>
34
+ <line x1="59.4766" y1="63.9842" x2="115.35" y2="63.9842" stroke="#DDE2E8" stroke-width="1.80237" stroke-linecap="round"/>
35
+ <line x1="103.635" y1="29.7391" x2="118.054" y2="29.7391" stroke="#DDE2E8" stroke-width="1.80237" stroke-linecap="round"/>
36
+ <line x1="57.6744" y1="29.7391" x2="72.0934" y2="29.7391" stroke="#DDE2E8" stroke-width="1.80237" stroke-linecap="round"/>
37
+ <line x1="103.635" y1="33.3439" x2="118.054" y2="33.3439" stroke="#DDE2E8" stroke-width="1.80237" stroke-linecap="round"/>
38
+ <line x1="57.6744" y1="33.3439" x2="72.0934" y2="33.3439" stroke="#DDE2E8" stroke-width="1.80237" stroke-linecap="round"/>
39
+ <line x1="59.4766" y1="69.3913" x2="115.35" y2="69.3913" stroke="#DDE2E8" stroke-width="1.80237" stroke-linecap="round"/>
40
+ <line x1="52.2676" y1="96.4268" x2="67.5878" y2="96.4268" stroke="#DDE2E8" stroke-width="1.80237" stroke-linecap="round"/>
41
+ <defs>
42
+ <filter id="filter0_d_1866_38634" x="17.6237" y="78.5259" width="12.8029" height="24.2693" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
43
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
44
+ <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"/>
45
+ <feOffset dx="-1.09849"/>
46
+ <feGaussianBlur stdDeviation="1.09849"/>
47
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.14 0"/>
48
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1866_38634"/>
49
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1866_38634" result="shape"/>
50
+ </filter>
51
+ <filter id="filter1_d_1866_38634" x="22.0466" y="77.6028" width="18.7436" height="28.77" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
52
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
53
+ <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"/>
54
+ <feOffset dx="-1.09849"/>
55
+ <feGaussianBlur stdDeviation="1.09849"/>
56
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.14 0"/>
57
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1866_38634"/>
58
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1866_38634" result="shape"/>
59
+ </filter>
60
+ <filter id="filter2_d_1866_38634" x="29.187" y="89.4843" width="16.3627" height="20.2318" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
61
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
62
+ <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"/>
63
+ <feOffset dx="-1.09849"/>
64
+ <feGaussianBlur stdDeviation="1.09849"/>
65
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.14 0"/>
66
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1866_38634"/>
67
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1866_38634" result="shape"/>
68
+ </filter>
69
+ <filter id="filter3_i_1866_38634" x="139.062" y="95.9229" width="30.0615" height="29.9128" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
70
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
71
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
72
+ <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"/>
73
+ <feOffset dx="1" dy="1"/>
74
+ <feGaussianBlur stdDeviation="1"/>
75
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
76
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.31 0"/>
77
+ <feBlend mode="normal" in2="shape" result="effect1_innerShadow_1866_38634"/>
78
+ </filter>
79
+ <linearGradient id="paint0_linear_1866_38634" x1="80.0064" y1="112.417" x2="83.0498" y2="156.077" gradientUnits="userSpaceOnUse">
80
+ <stop stop-color="#D4D8DB"/>
81
+ <stop offset="0.797373" stop-color="white" stop-opacity="0"/>
82
+ </linearGradient>
83
+ <linearGradient id="paint1_linear_1866_38634" x1="25.8936" y1="104.067" x2="16.2762" y2="95.8923" gradientUnits="userSpaceOnUse">
84
+ <stop stop-color="#22B5A1"/>
85
+ <stop offset="1" stop-color="#71D5AA"/>
86
+ </linearGradient>
87
+ <linearGradient id="paint2_linear_1866_38634" x1="38.5238" y1="118.468" x2="23.145" y2="118.468" gradientUnits="userSpaceOnUse">
88
+ <stop stop-color="#ABD9EA"/>
89
+ <stop offset="1" stop-color="#D2F2FF"/>
90
+ </linearGradient>
91
+ <linearGradient id="paint3_linear_1866_38634" x1="27.167" y1="95.1927" x2="18.5437" y2="90.5889" gradientUnits="userSpaceOnUse">
92
+ <stop stop-color="#22B5A1"/>
93
+ <stop offset="1" stop-color="#71D5AA"/>
94
+ </linearGradient>
95
+ <linearGradient id="paint4_linear_1866_38634" x1="36.2182" y1="97.4022" x2="24.8796" y2="88.8362" gradientUnits="userSpaceOnUse">
96
+ <stop stop-color="#22B5A1"/>
97
+ <stop offset="1" stop-color="#71D5AA"/>
98
+ </linearGradient>
99
+ <linearGradient id="paint5_linear_1866_38634" x1="41.5449" y1="103.09" x2="33.8555" y2="95.6748" gradientUnits="userSpaceOnUse">
100
+ <stop stop-color="#22B5A1"/>
101
+ <stop offset="1" stop-color="#71D5AA"/>
102
+ </linearGradient>
103
+ <radialGradient id="paint6_radial_1866_38634" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(149.562 106.423) rotate(53.427) scale(19.3003 19.3995)">
104
+ <stop stop-color="#6BADF3"/>
105
+ <stop offset="0.176032" stop-color="#3E96F3"/>
106
+ <stop offset="0.872244" stop-color="#2285EE"/>
107
+ <stop offset="1" stop-color="#2285EE"/>
108
+ </radialGradient>
109
+ <linearGradient id="paint7_linear_1866_38634" x1="117.604" y1="32.8933" x2="89.4107" y2="109.479" gradientUnits="userSpaceOnUse">
110
+ <stop offset="0.42117" stop-color="#828E9C"/>
111
+ <stop offset="1" stop-color="white" stop-opacity="0"/>
112
+ </linearGradient>
113
+ </defs>
114
+ </svg>