adata-ui 0.3.98 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (535) hide show
  1. package/-error.vue +170 -0
  2. package/.editorconfig +12 -0
  3. package/.eslintrc.cjs +4 -0
  4. package/.gitlab-ci.yml +16 -0
  5. package/.nuxtrc +1 -0
  6. package/.nvmrc +1 -0
  7. package/.playground/app.config.ts +5 -0
  8. package/.playground/nuxt.config.ts +4 -0
  9. package/.prettierignore +24 -0
  10. package/.prettierrc +10 -0
  11. package/README.md +75 -7
  12. package/app.config.ts +27 -0
  13. package/app.vue +7 -0
  14. package/assets/img/adata-mobile.png +0 -0
  15. package/assets/img/analytics-mobile.png +0 -0
  16. package/assets/img/compliance-mobile.png +0 -0
  17. package/assets/img/empty-box.png +0 -0
  18. package/assets/img/fea-mobile.png +0 -0
  19. package/assets/img/fines-mobile.png +0 -0
  20. package/assets/img/pk-mobile.png +0 -0
  21. package/assets/img/tenders-mobile.png +0 -0
  22. package/assets/img/work-mobile.png +0 -0
  23. package/assets/styles/index.scss +101 -0
  24. package/assets/styles/modules/_base.scss +5 -0
  25. package/assets/styles/modules/_typography.scss +152 -0
  26. package/components/elements/README.md +1 -0
  27. package/components/elements/a-select-row/index.vue +140 -0
  28. package/components/elements/accordion/AAccordion.vue +196 -0
  29. package/components/elements/accordion/AAccordionGroup/AAccordionGroup.vue +145 -0
  30. package/components/elements/accordion/AAccordionGroup/types.ts +20 -0
  31. package/components/elements/accordion/AAccordionGroup/ui.config.ts +22 -0
  32. package/components/elements/accordion/types.ts +14 -0
  33. package/components/elements/accordion/ui.config.ts +22 -0
  34. package/components/elements/alert/AAlert.vue +65 -0
  35. package/components/elements/banner/ABanner.vue +49 -0
  36. package/components/elements/bg-block/ABgBlock.vue +11 -0
  37. package/components/elements/button/AButton.vue +188 -0
  38. package/components/elements/button/types.ts +24 -0
  39. package/components/elements/calendar/ACalendar.vue +83 -0
  40. package/components/elements/carousel/ACarousel.vue +159 -0
  41. package/components/elements/carousel/config.ui.ts +15 -0
  42. package/components/elements/carousel/types.ts +18 -0
  43. package/components/elements/chip-wrapper/AChipWrapper.vue +80 -0
  44. package/components/elements/chip-wrapper/types.ts +12 -0
  45. package/components/elements/chips/AChips.vue +32 -0
  46. package/components/elements/companies/AOurClients.vue +42 -0
  47. package/components/elements/curve-block/ACurveBlock.vue +196 -0
  48. package/components/elements/digit-badge/ADigitBadge.vue +83 -0
  49. package/components/elements/error-template/index.vue +48 -0
  50. package/components/elements/error-template/types.ts +23 -0
  51. package/components/elements/feature-description/AFeatureDescription.vue +112 -0
  52. package/components/elements/illustrations/noAccess.vue +62 -0
  53. package/components/elements/infinite-carousel/AInfiniteCarousel.vue +55 -0
  54. package/components/elements/infinite-scroll/AInfiniteScroll.vue +33 -0
  55. package/components/elements/leave-note/ALeaveNote.vue +77 -0
  56. package/components/elements/pagination/APagination.vue +110 -0
  57. package/components/elements/photos-animation/APhotosAnimation.vue +83 -0
  58. package/components/elements/select/ASelect.vue +389 -0
  59. package/components/elements/select/ASelectMobile.vue +186 -0
  60. package/components/elements/select/ui/select-button.vue +112 -0
  61. package/components/elements/select/ui/select-list.vue +99 -0
  62. package/components/elements/show-more/AShowMore.vue +35 -0
  63. package/components/elements/skeleton/ASkeleton.vue +44 -0
  64. package/components/elements/star-rating/AStarRating.vue +181 -0
  65. package/components/elements/star-rating/types.ts +8 -0
  66. package/components/elements/star-rating/ui/Star.vue +74 -0
  67. package/components/elements/status-badge/AStatusBadge.vue +74 -0
  68. package/components/elements/table/ATable.vue +93 -0
  69. package/components/elements/table/table.config.ts +32 -0
  70. package/components/elements/tree-select/ATreeSelect.vue +169 -0
  71. package/components/elements/tree-select/TreeService.ts +249 -0
  72. package/components/elements/tree-select/components/tree-select-nodes.vue +90 -0
  73. package/components/elements/tree-select/types.ts +34 -0
  74. package/components/elements/tree-select-mobile/ATreeSelectMobile.vue +79 -0
  75. package/components/elements/tree-select-mobile/components/ATreeSelectNodesMobile.vue +175 -0
  76. package/components/features/color-mode/AColorMode.client.vue +53 -0
  77. package/components/features/dropdown/ADropdown.vue +124 -0
  78. package/components/features/go-top/GoTop.vue +58 -0
  79. package/components/features/lang-switcher/lang-switcher.vue +56 -0
  80. package/components/features/pk-mobile-services/APkMobileServices.vue +130 -0
  81. package/components/features//321/201hange-version/AChangeVersion.vue +20 -0
  82. package/components/forms/README.md +1 -0
  83. package/components/forms/checkbox/ACheckbox.vue +151 -0
  84. package/components/forms/feedback-form/FeedbackForm.vue +171 -0
  85. package/components/forms/input/button/AInputButton.vue +53 -0
  86. package/components/forms/input/date/AInputDate.vue +213 -0
  87. package/components/forms/input/password/AInputPassword.vue +53 -0
  88. package/components/forms/input/standard/AInputStandard.vue +412 -0
  89. package/components/forms/input/textarea/ATextarea.vue +200 -0
  90. package/components/forms/radio-button/ARadioButton.vue +87 -0
  91. package/components/forms/request-demo/ARequestDemo.vue +90 -0
  92. package/components/forms/toggle/AToggle.vue +157 -0
  93. package/components/forms/toggle/types.ts +16 -0
  94. package/components/modals/AboutTariffModal.vue +113 -0
  95. package/components/modals/AnotherDeviceModal.vue +59 -0
  96. package/components/modals/ApplicationAcceptedModal.vue +47 -0
  97. package/components/modals/AuthModal.vue +50 -0
  98. package/components/modals/ConnectingTariffModal.vue +68 -0
  99. package/components/modals/ContactsMobileModel.vue +182 -0
  100. package/components/modals/ContentNavigationModal.vue +282 -0
  101. package/components/modals/Insufficient-funds-modal.vue +74 -0
  102. package/components/modals/LimitReachedModal.vue +29 -0
  103. package/components/modals/NoAccessModal.vue +37 -0
  104. package/components/modals/PaymentMethodModal.vue +101 -0
  105. package/components/modals/RedirectsBanksModal.vue +69 -0
  106. package/components/modals/ReplenishModal.vue +132 -0
  107. package/components/modals/ReportBugConfirmModal.vue +30 -0
  108. package/components/modals/ReportBugModal.vue +156 -0
  109. package/components/modals/SubmitApplicationModal.vue +111 -0
  110. package/components/navigation/README.md +1 -0
  111. package/components/navigation/bottom-navigation/ABottomNavigation.vue +101 -0
  112. package/components/navigation/breadcrumbs/ABreadcrumbs.vue +66 -0
  113. package/components/navigation/breadcrumbs/types.ts +4 -0
  114. package/components/navigation/footer/AFooter.vue +126 -0
  115. package/components/navigation/footer/NewFooter.vue +276 -0
  116. package/components/navigation/footer/ui/footer-acccordion.vue +119 -0
  117. package/components/navigation/footer/ui/new-footer-accordion.vue +120 -0
  118. package/components/navigation/header/AHeader.vue +187 -0
  119. package/components/navigation/header/AlmatyContacts.vue +143 -0
  120. package/components/navigation/header/AstanaContacts.vue +65 -0
  121. package/components/navigation/header/CardGallery.vue +248 -0
  122. package/components/navigation/header/ContactMenu.vue +114 -0
  123. package/components/navigation/header/HeaderLink.vue +247 -0
  124. package/components/navigation/header/ListItem.vue +31 -0
  125. package/components/navigation/header/NavCard.vue +41 -0
  126. package/components/navigation/header/NavList.vue +115 -0
  127. package/components/navigation/header/NotificationsMenu.vue +51 -0
  128. package/components/navigation/header/ProductMenu.vue +212 -0
  129. package/components/navigation/header/ProfileMenu.vue +189 -0
  130. package/components/navigation/header/TopHeader.vue +181 -0
  131. package/components/navigation/header/types.ts +28 -0
  132. package/components/navigation/line-tabs/ALineTabs.vue +111 -0
  133. package/components/navigation/line-tabs/types.ts +21 -0
  134. package/components/navigation/mobile-navigation/AMobileNavigation.vue +104 -0
  135. package/components/navigation/pill-tabs/APillTabs.vue +157 -0
  136. package/components/navigation/pill-tabs/types.ts +22 -0
  137. package/components/navigation/side-navigation/ASideNavigation.vue +404 -0
  138. package/components/overlays/README.md +1 -0
  139. package/components/overlays/modal/AModal.vue +332 -0
  140. package/components/overlays/sideover/ASlideover.vue +351 -0
  141. package/components/overlays/tooltip/ATooltip.vue +242 -0
  142. package/components/transitions/ATransitionHeight.vue +67 -0
  143. package/components/utils/index.ts +19 -0
  144. package/composables/highlight.ts +18 -0
  145. package/composables/modalsState.ts +8 -0
  146. package/composables/projectState.ts +2 -0
  147. package/composables/useAdaptive.ts +46 -0
  148. package/composables/useCarouselScroll.ts +49 -0
  149. package/composables/useHeaderNavigationLinks.ts +576 -0
  150. package/composables/useUIValidation.ts +16 -0
  151. package/histoire.config.ts +10 -0
  152. package/i18n/i18n.config.ts +21 -0
  153. package/i18n.config.ts +21 -0
  154. package/icons/adata-logo.vue +17 -0
  155. package/icons/arrow/arrow-bottom-left-on-square.vue +5 -0
  156. package/icons/arrow/arrow-circle-down.vue +20 -0
  157. package/icons/arrow/arrow-circle-reset.vue +16 -0
  158. package/icons/arrow/arrow-corner.vue +9 -0
  159. package/icons/arrow/arrow-graph-down.vue +13 -0
  160. package/icons/arrow/arrow-graph-up.vue +14 -0
  161. package/icons/arrow/arrow-square-down.vue +15 -0
  162. package/icons/arrow/arrow-top-right-on-square.vue +6 -0
  163. package/icons/arrow-currency-gray.vue +5 -0
  164. package/icons/arrow-currency-green.vue +5 -0
  165. package/icons/arrow-currency-red.vue +5 -0
  166. package/icons/arrow-side-up.vue +6 -0
  167. package/icons/avatar.vue +12 -0
  168. package/icons/block.vue +16 -0
  169. package/icons/bookmark/bookmark-filled.vue +18 -0
  170. package/icons/bookmark/bookmark.vue +5 -0
  171. package/icons/browsers/browser-duck.vue +65 -0
  172. package/icons/browsers/browser-google.vue +24 -0
  173. package/icons/browsers/browser-yandex.vue +13 -0
  174. package/icons/building-vector.vue +7 -0
  175. package/icons/calculator.vue +7 -0
  176. package/icons/calendar.vue +24 -0
  177. package/icons/car.vue +7 -0
  178. package/icons/check/check-circle.vue +6 -0
  179. package/icons/check/check-shield.vue +14 -0
  180. package/icons/check/check.vue +17 -0
  181. package/icons/check/checkmark-circle.vue +6 -0
  182. package/icons/checkbox/checkbox-active.vue +17 -0
  183. package/icons/checkbox/checkbox-empty.vue +10 -0
  184. package/icons/checkbox/checkbox-intermediate.vue +7 -0
  185. package/icons/chevron/chevron-down.vue +5 -0
  186. package/icons/chevron/chevron-left.vue +5 -0
  187. package/icons/chevron/chevron-right.vue +5 -0
  188. package/icons/chevron/chevron-up.vue +5 -0
  189. package/icons/chevron/double-chevron-right.vue +12 -0
  190. package/icons/clipboard-text.vue +7 -0
  191. package/icons/clock.vue +9 -0
  192. package/icons/company/company-bazis.vue +21 -0
  193. package/icons/company/company-bereke.vue +25 -0
  194. package/icons/company/company-bigroup.vue +16 -0
  195. package/icons/company/company-erg.vue +17 -0
  196. package/icons/company/company-forte.vue +23 -0
  197. package/icons/company/company-halyk.vue +15 -0
  198. package/icons/company/company-jusan.vue +14 -0
  199. package/icons/company/company-kaspi.vue +14 -0
  200. package/icons/company/company-mycar.vue +13 -0
  201. package/icons/company/company-samruk.vue +21 -0
  202. package/icons/company-egov-small.vue +15 -0
  203. package/icons/company.vue +8 -0
  204. package/icons/copy.vue +7 -0
  205. package/icons/currency/currency-dollar.vue +16 -0
  206. package/icons/currency/currency-down.vue +22 -0
  207. package/icons/currency/currency-eur.vue +57 -0
  208. package/icons/currency/currency-rub.vue +7 -0
  209. package/icons/currency/currency-usd.vue +221 -0
  210. package/icons/currency/currency-yuan.vue +25 -0
  211. package/icons/delete.vue +7 -0
  212. package/icons/document.vue +5 -0
  213. package/icons/download.vue +11 -0
  214. package/icons/edit.vue +7 -0
  215. package/icons/education.vue +16 -0
  216. package/icons/egov-small.vue +7 -0
  217. package/icons/expand-window.vue +7 -0
  218. package/icons/eye-closed.vue +26 -0
  219. package/icons/eye-open.vue +7 -0
  220. package/icons/eye-opened.vue +23 -0
  221. package/icons/file/file.vue +16 -0
  222. package/icons/file/files.vue +16 -0
  223. package/icons/filter.vue +5 -0
  224. package/icons/flag.vue +7 -0
  225. package/icons/gift.vue +8 -0
  226. package/icons/globe.vue +16 -0
  227. package/icons/graph-pie.vue +14 -0
  228. package/icons/hand/hand-thumb-up-filled.vue +5 -0
  229. package/icons/hand/hand-thumb-up.vue +5 -0
  230. package/icons/hand-with-phone/hand-with-phone-dark.vue +52 -0
  231. package/icons/hand-with-phone/hand-with-phone-light.vue +52 -0
  232. package/icons/handshake.vue +5 -0
  233. package/icons/hcheck.vue +14 -0
  234. package/icons/hdocument.vue +7 -0
  235. package/icons/history.vue +5 -0
  236. package/icons/horizontal-more.vue +13 -0
  237. package/icons/hummer.vue +16 -0
  238. package/icons/id.vue +7 -0
  239. package/icons/info/info-circle.vue +29 -0
  240. package/icons/invoice.vue +7 -0
  241. package/icons/judge.vue +14 -0
  242. package/icons/link-chain.vue +28 -0
  243. package/icons/link.vue +7 -0
  244. package/icons/linkedin.vue +24 -0
  245. package/icons/loader-circle.vue +27 -0
  246. package/icons/location.vue +8 -0
  247. package/icons/lock.vue +5 -0
  248. package/icons/logo.vue +15 -0
  249. package/icons/logout.vue +16 -0
  250. package/icons/magnify/magnifying-glass-minus.vue +8 -0
  251. package/icons/magnify/magnifying-glass-plus.vue +9 -0
  252. package/icons/magnify/magnifying-glass.vue +9 -0
  253. package/icons/mail.vue +7 -0
  254. package/icons/main-filter.vue +5 -0
  255. package/{dist/img/location.807c7100.svg → icons/map/map-pin-filled.vue} +7 -4
  256. package/icons/map/map-pin-rect.vue +15 -0
  257. package/{src/assets/location.svg → icons/map/map-pin.vue} +7 -4
  258. package/icons/map-marker-start.vue +7 -0
  259. package/icons/map-paper.vue +5 -0
  260. package/icons/medal.vue +7 -0
  261. package/icons/menu-filled.vue +20 -0
  262. package/icons/menu.vue +8 -0
  263. package/icons/message/message.vue +12 -0
  264. package/icons/minus/minus-circle.vue +10 -0
  265. package/icons/money.vue +5 -0
  266. package/icons/monitoring.vue +10 -0
  267. package/icons/moon.vue +8 -0
  268. package/icons/more.vue +29 -0
  269. package/icons/note-pencil.vue +14 -0
  270. package/icons/note.vue +14 -0
  271. package/icons/notification.vue +16 -0
  272. package/icons/paperclip.vue +7 -0
  273. package/icons/payment/payment-card.vue +6 -0
  274. package/icons/payment/payment-kaspi.vue +11 -0
  275. package/icons/person-vector.vue +7 -0
  276. package/icons/person-with-briefcase.vue +10 -0
  277. package/icons/phone-filled.vue +5 -0
  278. package/icons/phone.vue +7 -0
  279. package/icons/plus/plus-circle.vue +8 -0
  280. package/icons/plus/plus.vue +13 -0
  281. package/icons/profile.vue +5 -0
  282. package/icons/radio/radio-check.vue +8 -0
  283. package/icons/radio/radio-empty.vue +10 -0
  284. package/icons/receipt.vue +8 -0
  285. package/icons/robot.vue +14 -0
  286. package/icons/scales/scale.vue +16 -0
  287. package/icons/scales/scales.vue +5 -0
  288. package/icons/scales/standing-scales.vue +15 -0
  289. package/icons/search.vue +15 -0
  290. package/icons/share/share-alt.vue +5 -0
  291. package/icons/share/share.vue +14 -0
  292. package/icons/ship.vue +8 -0
  293. package/icons/socials/face-book.vue +15 -0
  294. package/icons/socials/instagram.vue +19 -0
  295. package/icons/socials/telegram.vue +15 -0
  296. package/icons/socials/tik-tok.vue +15 -0
  297. package/icons/socials/youtube.vue +16 -0
  298. package/icons/sort/sort-asc.vue +15 -0
  299. package/icons/sort/sort-desc.vue +15 -0
  300. package/icons/splitting-arrows.vue +8 -0
  301. package/icons/star/star-filled.vue +40 -0
  302. package/icons/star/star-half-filled.vue +20 -0
  303. package/icons/star/star.vue +25 -0
  304. package/icons/sun.vue +14 -0
  305. package/icons/sviazi.vue +5 -0
  306. package/icons/tag.vue +30 -0
  307. package/icons/tender-search.vue +11 -0
  308. package/icons/toasts/check-circle-toast.vue +6 -0
  309. package/icons/toasts/warning-triangle-toast.vue +7 -0
  310. package/icons/trash.vue +13 -0
  311. package/icons/triangle.vue +10 -0
  312. package/icons/truck.vue +7 -0
  313. package/icons/user-square.vue +14 -0
  314. package/icons/user.vue +22 -0
  315. package/icons/users-focus.vue +8 -0
  316. package/icons/users-three.vue +7 -0
  317. package/icons/users.vue +8 -0
  318. package/icons/warning/warning-circle.vue +29 -0
  319. package/icons/warning/warning-triangle-filled.vue +12 -0
  320. package/icons/warning/warning-triangle.vue +28 -0
  321. package/icons/whatsapp.vue +8 -0
  322. package/icons/work-bag.vue +11 -0
  323. package/icons/work-search.vue +10 -0
  324. package/icons/work.vue +5 -0
  325. package/icons/x-mark.vue +15 -0
  326. package/illustrations/address-location.vue +38 -0
  327. package/illustrations/ball-with-chain.vue +120 -0
  328. package/illustrations/bill.vue +133 -0
  329. package/illustrations/buildings.vue +82 -0
  330. package/illustrations/calendar.vue +156 -0
  331. package/illustrations/chains.vue +152 -0
  332. package/illustrations/coin-percent.vue +126 -0
  333. package/illustrations/coins-stack.vue +202 -0
  334. package/illustrations/delete-dark.vue +31 -0
  335. package/illustrations/delete.vue +32 -0
  336. package/illustrations/doc-with-stamp.vue +126 -0
  337. package/illustrations/document.vue +64 -0
  338. package/illustrations/door.vue +74 -0
  339. package/illustrations/empty-box.vue +77 -0
  340. package/illustrations/empty-wallet.vue +161 -0
  341. package/illustrations/graph-in-coin.vue +119 -0
  342. package/illustrations/hammer.vue +156 -0
  343. package/illustrations/hand-cash.vue +108 -0
  344. package/illustrations/info.vue +39 -0
  345. package/illustrations/mail.vue +68 -0
  346. package/illustrations/ok.vue +62 -0
  347. package/illustrations/people-group.vue +237 -0
  348. package/illustrations/person-with-phone.vue +187 -0
  349. package/illustrations/person.vue +159 -0
  350. package/illustrations/phone-check.vue +90 -0
  351. package/illustrations/phone-payment-method.vue +223 -0
  352. package/illustrations/stop-hand.vue +77 -0
  353. package/illustrations/stop-sign.vue +34 -0
  354. package/illustrations/suit.vue +111 -0
  355. package/illustrations/suitcase.vue +105 -0
  356. package/illustrations/terminal-dark.vue +48 -0
  357. package/illustrations/terminal.vue +234 -0
  358. package/illustrations/trash-can.vue +108 -0
  359. package/illustrations/turn-on-tariff.vue +38 -0
  360. package/illustrations/two-persons.vue +169 -0
  361. package/lang/en.ts +593 -0
  362. package/lang/kk.ts +594 -0
  363. package/lang/ru.ts +595 -0
  364. package/layouts/default.vue +13 -0
  365. package/nuxt.config.ts +64 -0
  366. package/package.json +65 -76
  367. package/plugins/maska.ts +5 -0
  368. package/plugins/toast.client.ts +58 -0
  369. package/public/error-illustrations/401.webp +0 -0
  370. package/public/error-illustrations/403.webp +0 -0
  371. package/public/error-illustrations/404.webp +0 -0
  372. package/public/error-illustrations/500.webp +0 -0
  373. package/public/error-illustrations/502.webp +0 -0
  374. package/public/error-illustrations/503.webp +0 -0
  375. package/public/error-illustrations/504.webp +0 -0
  376. package/public/header/compliance.webp +0 -0
  377. package/public/header/unload.webp +0 -0
  378. package/public/header/ved.webp +0 -0
  379. package/public/mode/dark-analytics-en.webp +0 -0
  380. package/public/mode/dark-analytics-kk.webp +0 -0
  381. package/public/mode/dark-analytics-ru.webp +0 -0
  382. package/public/mode/dark-complience-en.webp +0 -0
  383. package/public/mode/dark-complience-kk.webp +0 -0
  384. package/public/mode/dark-complience-ru.webp +0 -0
  385. package/public/mode/dark-fea-en.webp +0 -0
  386. package/public/mode/dark-fea-kk.webp +0 -0
  387. package/public/mode/dark-fea-ru.webp +0 -0
  388. package/public/mode/dark-fines-en.webp +0 -0
  389. package/public/mode/dark-fines-kk.webp +0 -0
  390. package/public/mode/dark-fines-ru.webp +0 -0
  391. package/public/mode/dark-pk-en.webp +0 -0
  392. package/public/mode/dark-pk-kk.webp +0 -0
  393. package/public/mode/dark-pk-ru.webp +0 -0
  394. package/public/mode/dark-tenders-en.webp +0 -0
  395. package/public/mode/dark-tenders-kk.webp +0 -0
  396. package/public/mode/dark-tenders-ru.webp +0 -0
  397. package/public/mode/dark-work-en.webp +0 -0
  398. package/public/mode/dark-work-kk.webp +0 -0
  399. package/public/mode/dark-work-ru.webp +0 -0
  400. package/public/mode/light-analytics-en.webp +0 -0
  401. package/public/mode/light-analytics-kk.webp +0 -0
  402. package/public/mode/light-analytics-ru.webp +0 -0
  403. package/public/mode/light-complience-en.webp +0 -0
  404. package/public/mode/light-complience-kk.webp +0 -0
  405. package/public/mode/light-complience-ru.webp +0 -0
  406. package/public/mode/light-fea-en.webp +0 -0
  407. package/public/mode/light-fea-kk.webp +0 -0
  408. package/public/mode/light-fea-ru.webp +0 -0
  409. package/public/mode/light-fines-en.webp +0 -0
  410. package/public/mode/light-fines-kk.webp +0 -0
  411. package/public/mode/light-fines-ru.webp +0 -0
  412. package/public/mode/light-pk-en.webp +0 -0
  413. package/public/mode/light-pk-kk.webp +0 -0
  414. package/public/mode/light-pk-ru.webp +0 -0
  415. package/public/mode/light-tenders-en.webp +0 -0
  416. package/public/mode/light-tenders-kk.webp +0 -0
  417. package/public/mode/light-tenders-ru.webp +0 -0
  418. package/public/mode/light-work-en.webp +0 -0
  419. package/public/mode/light-work-kk.webp +0 -0
  420. package/public/mode/light-work-ru.webp +0 -0
  421. package/public/tariff/subtract.png +0 -0
  422. package/shared/constans/pages.ts +73 -0
  423. package/tailwind.config.ts +163 -0
  424. package/tests/AButton.test.ts +81 -0
  425. package/tsconfig.json +6 -0
  426. package/utils/getMaxZindex.ts +25 -0
  427. package/utils/localizedNavigation.ts +36 -0
  428. package/vitest.config.ts +14 -0
  429. package/babel.config.js +0 -5
  430. package/dist/adata-ui.common.js +0 -10910
  431. package/dist/adata-ui.common.js.map +0 -1
  432. package/dist/adata-ui.css +0 -1
  433. package/dist/adata-ui.umd.js +0 -10920
  434. package/dist/adata-ui.umd.js.map +0 -1
  435. package/dist/adata-ui.umd.min.js +0 -7
  436. package/dist/adata-ui.umd.min.js.map +0 -1
  437. package/dist/demo.html +0 -10
  438. package/dist/img/expand-window.39c851da.svg +0 -3
  439. package/dist/img/facebook.797d820f.svg +0 -4
  440. package/dist/img/instagram.8a77381c.svg +0 -6
  441. package/dist/img/linkedIn.607d9542.svg +0 -13
  442. package/dist/img/logo-desktop-main.4d169395.svg +0 -8
  443. package/dist/img/logo-mobile-main.397bce24.svg +0 -4
  444. package/dist/img/logo-white-desktop.7d0e3481.svg +0 -8
  445. package/dist/img/mail.e4826575.svg +0 -3
  446. package/dist/img/phone.ae6c1746.svg +0 -3
  447. package/dist/img/telegram.be0d1008.svg +0 -4
  448. package/dist/img/tiktok.eaeb39cb.svg +0 -4
  449. package/dist/img/up-down.e2b28f72.svg +0 -3
  450. package/dist/img/youtube.125aace6.svg +0 -5
  451. package/package-lock.json +0 -27138
  452. package/public/favicon.ico +0 -0
  453. package/public/index.html +0 -17
  454. package/public/logo.svg +0 -4
  455. package/src/App.vue +0 -31
  456. package/src/assets/_text_field.scss +0 -225
  457. package/src/assets/expand-window.svg +0 -3
  458. package/src/assets/facebook.svg +0 -4
  459. package/src/assets/instagram.svg +0 -6
  460. package/src/assets/linkedIn.svg +0 -13
  461. package/src/assets/logo-desktop-main.svg +0 -8
  462. package/src/assets/logo-desktop.svg +0 -9
  463. package/src/assets/logo-desktop.webp +0 -0
  464. package/src/assets/logo-mobile-main.svg +0 -4
  465. package/src/assets/logo-mobile.svg +0 -9
  466. package/src/assets/logo-mobile.webp +0 -0
  467. package/src/assets/logo-white-desktop.svg +0 -8
  468. package/src/assets/mail.svg +0 -3
  469. package/src/assets/phone.svg +0 -3
  470. package/src/assets/style.scss +0 -1
  471. package/src/assets/telegram.svg +0 -4
  472. package/src/assets/tiktok.svg +0 -4
  473. package/src/assets/up-down.svg +0 -3
  474. package/src/assets/youtube.svg +0 -5
  475. package/src/components/Alert/Alert.stories.js +0 -17
  476. package/src/components/Alert/Alert.vue +0 -63
  477. package/src/components/BottomNavigationBar/ABottomNavigationBar.vue +0 -160
  478. package/src/components/BottomNavigationBar/BottomNavigationBar.stories.js +0 -25
  479. package/src/components/Button/AButton.vue +0 -231
  480. package/src/components/Button/Button.stories.js +0 -23
  481. package/src/components/Checkbox/ACheckbox.vue +0 -114
  482. package/src/components/Checkbox/Checkbox.stories.js +0 -15
  483. package/src/components/CheckboxMenu/CheckboxMenu.stories.js +0 -24
  484. package/src/components/CheckboxMenu/CheckboxMenu.vue +0 -108
  485. package/src/components/ErrorPages/BadGateway.vue +0 -224
  486. package/src/components/ErrorPages/Forbidden.vue +0 -468
  487. package/src/components/ErrorPages/InternalServerError.vue +0 -275
  488. package/src/components/ErrorPages/NotFound.vue +0 -995
  489. package/src/components/ErrorPages/Unavailable.vue +0 -3705
  490. package/src/components/Footer/Footer.stories.js +0 -20
  491. package/src/components/Footer/Footer.vue +0 -292
  492. package/src/components/Header/ChildLinks.vue +0 -144
  493. package/src/components/Header/Header.stories.js +0 -56
  494. package/src/components/Header/Header.vue +0 -1306
  495. package/src/components/Header/InfoHeader.vue +0 -319
  496. package/src/components/Header/Profile.vue +0 -670
  497. package/src/components/Header/ProfileMenu.vue +0 -293
  498. package/src/components/Header/ProfileMobile.vue +0 -308
  499. package/src/components/Header/ProfileOld.vue +0 -781
  500. package/src/components/InternalServerError/InternalServerError.stories.js +0 -17
  501. package/src/components/InternalServerError/InternalServerError.vue +0 -262
  502. package/src/components/Introduction.stories.mdx +0 -7
  503. package/src/components/Loader/Loader.stories.js +0 -25
  504. package/src/components/Loader/Loader.vue +0 -325
  505. package/src/components/MailTo/MailTo.stories.js +0 -15
  506. package/src/components/MailTo/MailTo.vue +0 -258
  507. package/src/components/NavIcon/ANavIcon.vue +0 -50
  508. package/src/components/NavIcon/NavIcon.stories.js +0 -15
  509. package/src/components/PasswordField/PasswordField.stories.js +0 -16
  510. package/src/components/PasswordField/PasswordField.vue +0 -77
  511. package/src/components/SearchTextField/SearchTextField.stories.js +0 -78
  512. package/src/components/SearchTextField/SearchTextField.vue +0 -230
  513. package/src/components/ServiceSlider/AServiceSlider.vue +0 -793
  514. package/src/components/ServiceSlider/ServiceSlider.stories.js +0 -20
  515. package/src/components/Table/ATable.vue +0 -117
  516. package/src/components/Table/Table.stories.js +0 -15
  517. package/src/components/TextArea/TextArea.stories.js +0 -17
  518. package/src/components/TextArea/TextArea.vue +0 -116
  519. package/src/components/TextError/TextError.stories.js +0 -15
  520. package/src/components/TextError/TextError.vue +0 -57
  521. package/src/components/TextField/TextField.stories.js +0 -17
  522. package/src/components/TextField/TextField.vue +0 -107
  523. package/src/components/index.js +0 -56
  524. package/src/components/newComponents/FooterNew/FooterBottom.vue +0 -153
  525. package/src/components/newComponents/FooterNew/FooterItem.vue +0 -114
  526. package/src/components/newComponents/FooterNew/FooterNew.stories.js +0 -20
  527. package/src/components/newComponents/FooterNew/FooterNew.vue +0 -39
  528. package/src/components/newComponents/FooterNew/FooterTop.vue +0 -321
  529. package/src/components/newComponents/FooterRedesign/FooterAccordion.vue +0 -221
  530. package/src/components/newComponents/FooterRedesign/FooterRedesign.vue +0 -430
  531. package/src/components/transitions/SlideToggle.vue +0 -55
  532. package/src/components/transitions/VerticalMobileToggle.vue +0 -75
  533. package/src/configs/icons.js +0 -112
  534. package/src/configs/profileDropDown.js +0 -134
  535. package/src/main.js +0 -12
@@ -1,17 +0,0 @@
1
- import AInternalServerError from "./InternalServerError.vue";
2
-
3
- export default {
4
- title: 'InternalServerError',
5
- component: AInternalServerError,
6
- data: () => ({ value: "" }),
7
- template: "<a-internal-server-error />"
8
- }
9
-
10
-
11
- const Template = (args, { argTypes }) => ({
12
- components: { AInternalServerError },
13
- props: Object.keys(argTypes),
14
- template: '<a-internal-server-error v-bind="$props" ></a-internal-server-error>'
15
- })
16
-
17
- export const Simple = Template.bind({});
@@ -1,262 +0,0 @@
1
- <template>
2
- <div class="error">
3
- <div class="error__wrapper">
4
- <div class="error__wrapper__images">
5
- <svg width="559" height="559" viewBox="0 0 559 559" fill="none" xmlns="http://www.w3.org/2000/svg">
6
- <circle cx="279" cy="279" r="275" fill="url(#paint0_radial_2747_48514)" fill-opacity="0.8"/>
7
- <path
8
- d="M106.407 424.039L121.458 439.784L110.75 450.073C109.719 451.064 108.504 451.842 107.173 452.362C105.842 452.882 104.422 453.134 102.994 453.103C101.567 453.073 100.159 452.761 98.8511 452.185C97.5436 451.61 96.362 450.781 95.3739 449.747C94.3858 448.714 93.6104 447.495 93.0921 446.161C92.5738 444.827 92.3227 443.403 92.3531 441.972C92.3836 440.54 92.6949 439.129 93.2694 437.818C93.8439 436.506 94.6703 435.322 95.7014 434.331L106.409 424.041L106.407 424.039Z"
9
- fill="white"/>
10
- <path
11
- d="M118.848 386.906L158.526 428.412L146.412 440.053C142.809 443.515 137.982 445.401 132.993 445.295C128.004 445.189 123.261 443.101 119.809 439.489L106.169 425.221C102.717 421.609 100.837 416.77 100.943 411.768C101.049 406.766 103.133 402.011 106.736 398.548L118.85 386.907L118.848 386.906Z"
12
- fill="white"/>
13
- <path
14
- d="M151.27 342.021L204.63 397.841L174.346 426.942C171.775 429.413 168.331 430.758 164.771 430.683C161.212 430.607 157.828 429.117 155.364 426.54L120.581 390.154C118.118 387.577 116.777 384.124 116.852 380.555C116.928 376.986 118.415 373.593 120.986 371.123L151.27 342.021Z"
15
- fill="white"/>
16
- <path
17
- d="M213.974 386.12L163.35 333.163C160.327 330.001 155.32 329.895 152.166 332.926C149.012 335.957 148.905 340.978 151.928 344.14L202.551 397.096C205.574 400.258 210.581 400.365 213.735 397.333C216.89 394.302 216.996 389.282 213.974 386.12Z"
18
- fill="white"/>
19
- <path
20
- d="M187.565 378.545L156.241 408.646C155.01 409.827 153.56 410.755 151.972 411.374C150.384 411.994 148.69 412.294 146.987 412.257C145.283 412.221 143.604 411.848 142.045 411.16C140.485 410.473 139.076 409.484 137.898 408.25L155.684 426.856C156.862 428.089 158.271 429.078 159.831 429.766C161.39 430.453 163.07 430.826 164.773 430.863C166.476 430.899 168.17 430.599 169.758 429.98C171.346 429.36 172.796 428.433 174.027 427.251L205.351 397.148L187.565 378.545Z"
21
- fill="#EDF5FC"/>
22
- <path
23
- d="M144.839 414.101L132.895 425.578C129.28 429.05 124.447 430.956 119.443 430.884C114.438 430.811 109.663 428.767 106.15 425.192C106.21 425.255 106.262 425.327 106.325 425.393L119.639 439.319C121.37 441.13 123.439 442.581 125.73 443.59C128.02 444.599 130.487 445.145 132.988 445.199C135.489 445.252 137.977 444.81 140.308 443.9C142.639 442.989 144.769 441.627 146.576 439.891L158.52 428.412L144.839 414.101Z"
24
- fill="#EDF5FC"/>
25
- <path
26
- d="M113.24 431.194L102.532 441.482C101.225 442.738 99.6256 443.647 97.8792 444.125C96.1327 444.603 94.2949 444.635 92.533 444.218C92.9193 446.296 93.9026 448.215 95.3619 449.74C97.3579 451.828 100.099 453.035 102.983 453.096C105.867 453.157 108.657 452.067 110.74 450.067L121.448 439.775L113.24 431.194Z"
27
- fill="#EDF5FC"/>
28
- <path
29
- d="M213.965 386.118L197.566 368.965L186.144 379.94L202.543 397.093C203.994 398.611 205.987 399.488 208.083 399.533C210.18 399.577 212.208 398.785 213.722 397.33C214.473 396.61 215.074 395.748 215.492 394.795C215.911 393.842 216.138 392.815 216.16 391.774C216.183 390.733 216.001 389.698 215.624 388.727C215.247 387.757 214.684 386.87 213.965 386.118Z"
30
- fill="#EDF5FC"/>
31
- <path
32
- d="M449.696 135.468L434.864 119.516L445.712 109.376C446.758 108.399 447.985 107.638 449.323 107.136C450.662 106.634 452.086 106.402 453.514 106.453C454.943 106.503 456.347 106.835 457.647 107.43C458.947 108.025 460.117 108.871 461.091 109.92C463.057 112.035 464.105 114.847 464.004 117.737C463.902 120.627 462.66 123.358 460.55 125.33L449.702 135.47L449.696 135.468Z"
33
- fill="white"/>
34
- <path
35
- d="M434.572 174.45L395.462 132.386L409.396 119.363C412.991 116.003 417.768 114.213 422.678 114.385C427.589 114.558 432.229 116.679 435.579 120.282L449.42 135.168C452.77 138.771 454.555 143.56 454.382 148.483C454.21 153.406 452.093 158.059 448.499 161.418L434.565 174.442L434.572 174.45Z"
36
- fill="white"/>
37
- <path
38
- d="M401.532 218.881L348.947 162.325L379.6 133.675C382.405 131.054 386.133 129.657 389.965 129.791C393.796 129.926 397.418 131.581 400.032 134.393L432.905 169.748C435.519 172.56 436.912 176.298 436.777 180.139C436.643 183.981 434.992 187.612 432.187 190.233L401.534 218.883L401.532 218.881Z"
39
- fill="white"/>
40
- <path
41
- d="M338.723 174.59L388.611 228.245C391.59 231.449 396.595 231.624 399.791 228.638C402.987 225.651 403.163 220.632 400.184 217.428L350.296 163.773C347.317 160.569 342.312 160.394 339.116 163.381C335.92 166.368 335.744 171.386 338.723 174.59Z"
42
- fill="white"/>
43
- <path
44
- d="M311.284 278.841C310.211 277.687 309.64 276.153 309.695 274.576C309.75 273 310.428 271.51 311.579 270.434L334.725 248.801L342.815 257.502L319.669 279.135C319.099 279.668 318.43 280.083 317.7 280.356C316.971 280.63 316.194 280.756 315.416 280.729C314.637 280.702 313.871 280.521 313.162 280.197C312.454 279.873 311.815 279.412 311.284 278.841Z"
45
- fill="white"/>
46
- <path
47
- d="M280.272 245.488C279.199 244.334 278.628 242.8 278.683 241.223C278.738 239.647 279.416 238.156 280.567 237.081L303.713 215.447L311.803 224.148L288.657 245.782C287.506 246.858 285.976 247.431 284.404 247.376C282.831 247.321 281.345 246.641 280.272 245.488Z"
48
- fill="white"/>
49
- <path d="M298.319 209.646L350.904 266.201L389.961 229.697L337.376 173.141L298.319 209.646Z" fill="white"/>
50
- <path d="M356.827 217.32L346.04 205.718L318.556 231.406L329.343 243.007L356.827 217.32Z" fill="#F0F9FF"/>
51
- <path
52
- d="M384.012 200.034L415.912 170.216C421.063 165.403 421.282 157.242 416.394 151.986L433.922 170.84C438.807 176.093 438.591 184.256 433.44 189.07L401.54 218.896L384.012 200.034Z"
53
- fill="#EDF5FC"/>
54
- <path
55
- d="M421.094 159.952L434.643 147.3C438.304 143.877 440.474 139.146 440.683 134.132C440.892 129.118 439.123 124.223 435.76 120.507C435.822 120.574 435.891 120.629 435.952 120.693L449.073 134.805C452.519 138.51 454.355 143.436 454.177 148.499C454 153.562 451.824 158.347 448.128 161.802L434.579 174.454L421.094 159.952Z"
56
- fill="#EDF5FC"/>
57
- <path
58
- d="M441.628 126.77L452.477 116.631C453.802 115.394 454.797 113.844 455.372 112.123C455.946 110.402 456.082 108.564 455.768 106.777C457.815 107.28 459.671 108.372 461.107 109.919C462.081 110.966 462.84 112.196 463.34 113.537C463.84 114.879 464.071 116.306 464.021 117.737C463.971 119.168 463.64 120.576 463.047 121.879C462.454 123.182 461.611 124.355 460.566 125.331L449.717 135.473L441.628 126.77Z"
59
- fill="#EDF5FC"/>
60
- <path
61
- d="M388.62 228.253L372.439 210.85L384.012 200.035L400.193 217.435C401.621 218.974 402.381 221.018 402.307 223.119C402.233 225.219 401.33 227.205 399.797 228.639C399.038 229.35 398.147 229.903 397.174 230.268C396.201 230.633 395.167 230.803 394.129 230.767C393.091 230.731 392.07 230.491 391.125 230.059C390.18 229.628 389.329 229.014 388.62 228.253Z"
62
- fill="#EDF5FC"/>
63
- <path
64
- d="M307.764 219.801L287.512 238.731C286.407 239.761 284.951 240.329 283.442 240.318C281.932 240.307 280.485 239.718 279.395 238.672C278.817 239.759 278.591 241.001 278.749 242.223C278.908 243.446 279.442 244.588 280.278 245.492C281.352 246.645 282.838 247.323 284.41 247.378C285.983 247.434 287.513 246.861 288.665 245.786L311.81 224.153L307.764 219.801Z"
65
- fill="#D1DFEB"/>
66
- <path
67
- d="M338.776 253.157L318.522 272.084C317.419 273.116 315.963 273.687 314.453 273.679C312.944 273.67 311.495 273.083 310.403 272.038C309.825 273.126 309.6 274.368 309.759 275.59C309.918 276.812 310.453 277.955 311.289 278.858C312.362 280.012 313.847 280.691 315.42 280.746C316.992 280.801 318.522 280.228 319.673 279.153L342.818 257.519L338.776 253.157Z"
68
- fill="#D1DFEB"/>
69
- <path
70
- d="M351.23 217.119L343.141 208.419L346.035 205.715L356.821 217.316L329.337 243.003L326.641 240.105L351.23 217.119Z"
71
- fill="#D1DFEB"/>
72
- <path
73
- d="M90.7916 262.35C90.0615 262.11 89.4525 261.595 89.0928 260.914C88.7331 260.233 88.6507 259.439 88.8632 258.699C88.9705 258.323 89.1506 257.973 89.3931 257.667C89.6356 257.361 89.9357 257.107 90.2764 256.918C90.6171 256.729 90.9918 256.609 91.3788 256.565C91.7658 256.521 92.1577 256.555 92.5321 256.663L134.204 268.721C134.957 268.943 135.592 269.455 135.972 270.144C136.352 270.833 136.446 271.644 136.234 272.401C136.127 272.777 135.947 273.128 135.704 273.433C135.461 273.739 135.161 273.993 134.82 274.182C134.479 274.371 134.104 274.491 133.717 274.534C133.33 274.578 132.938 274.544 132.563 274.435L90.8934 262.379L90.7916 262.35Z"
74
- fill="#D1DFEB"/>
75
- <path
76
- d="M200.742 219.804C200.14 219.603 199.617 219.215 199.249 218.696C198.882 218.177 198.688 217.555 198.697 216.918L199.5 173.432C199.515 172.644 199.842 171.894 200.408 171.347C200.975 170.8 201.735 170.502 202.521 170.517C203.307 170.532 204.055 170.86 204.601 171.428C205.147 171.997 205.445 172.759 205.432 173.547L204.627 217.032C204.62 217.422 204.536 217.808 204.381 218.166C204.225 218.524 204.001 218.847 203.721 219.118C203.44 219.389 203.109 219.602 202.747 219.745C202.385 219.887 201.998 219.956 201.608 219.949C201.314 219.944 201.022 219.895 200.742 219.804Z"
77
- fill="#D1DFEB"/>
78
- <path
79
- d="M155.345 235.48C154.809 235.304 154.334 234.979 153.975 234.542L126.401 200.953C125.905 200.342 125.669 199.56 125.745 198.776C125.82 197.992 126.2 197.27 126.803 196.766C127.41 196.265 128.191 196.026 128.974 196.102C129.757 196.178 130.478 196.562 130.979 197.171L158.552 230.763C158.8 231.065 158.986 231.412 159.1 231.786C159.214 232.16 159.253 232.552 159.216 232.941C159.179 233.33 159.065 233.707 158.882 234.052C158.699 234.397 158.45 234.702 158.15 234.95C157.765 235.268 157.306 235.483 156.816 235.576C156.325 235.669 155.82 235.635 155.345 235.48Z"
80
- fill="#D1DFEB"/>
81
- <path
82
- d="M278.587 435.065C278.201 435.137 277.805 435.143 277.418 435.081C277.004 435.017 276.607 434.876 276.251 434.667C275.894 434.457 275.585 434.184 275.341 433.862C275.097 433.54 274.922 433.176 274.827 432.79C274.732 432.405 274.719 432.005 274.788 431.615L282.479 388.16C282.622 387.373 283.089 386.671 283.778 386.207C284.467 385.742 285.322 385.553 286.158 385.68C286.572 385.745 286.969 385.886 287.325 386.096C287.682 386.305 287.991 386.579 288.235 386.901C288.479 387.223 288.654 387.587 288.749 387.973C288.843 388.359 288.857 388.759 288.788 389.149L281.094 432.601C280.989 433.203 280.693 433.76 280.246 434.2C279.798 434.64 279.22 434.941 278.587 435.065Z"
83
- fill="#D1DFEB"/>
84
- <path
85
- d="M347.131 419.514C346.537 419.64 345.921 419.559 345.372 419.283C344.824 419.006 344.372 418.549 344.081 417.977L324.39 378.823C324.212 378.471 324.101 378.085 324.063 377.687C324.024 377.289 324.059 376.887 324.166 376.504C324.272 376.121 324.447 375.764 324.682 375.453C324.917 375.143 325.207 374.886 325.534 374.696C326.194 374.313 326.969 374.228 327.688 374.459C328.407 374.689 329.011 375.217 329.368 375.927L349.063 415.082C349.24 415.433 349.35 415.818 349.389 416.216C349.427 416.614 349.392 417.015 349.285 417.399C349.179 417.782 349.004 418.138 348.769 418.448C348.535 418.758 348.245 419.016 347.918 419.205C347.672 419.351 347.407 419.456 347.131 419.514Z"
86
- fill="#D1DFEB"/>
87
- <path
88
- d="M400.464 354.431C399.949 354.661 399.379 354.738 398.821 354.655L355.948 348.21C355.17 348.093 354.471 347.67 354.003 347.036C353.536 346.402 353.339 345.608 353.455 344.828C353.513 344.442 353.647 344.07 353.848 343.736C354.049 343.401 354.314 343.109 354.627 342.877C354.941 342.644 355.297 342.476 355.675 342.382C356.053 342.288 356.446 342.269 356.832 342.327L399.716 348.77C400.493 348.887 401.193 349.309 401.66 349.943C402.127 350.577 402.324 351.371 402.208 352.151C402.133 352.648 401.934 353.118 401.629 353.517C401.324 353.915 400.923 354.23 400.464 354.431Z"
89
- fill="#D1DFEB"/>
90
- <path d="M214.171 259.816L214.138 273.006L207.129 276.781L207.163 263.591L214.171 259.816Z" fill="#D1DFEB"/>
91
- <path style="mix-blend-mode:multiply" opacity="0.7"
92
- d="M233.894 270.605L233.854 283.85L214.172 273.061L214.212 259.816L233.894 270.605Z"
93
- fill="url(#paint1_linear_2747_48514)"/>
94
- <path d="M245.163 264.057L245.128 276.925L233.893 283.85L233.928 270.982L245.163 264.057Z" fill="#D1DFEB"/>
95
- <path style="mix-blend-mode:multiply" opacity="0.7"
96
- d="M200.015 274.354C199.679 272.823 197.976 271.186 194.905 269.444C194.633 269.291 194.36 269.138 194.061 268.988C194.03 268.97 193.998 268.953 193.965 268.938C193.693 268.793 193.404 268.653 193.112 268.514L192.97 268.447C192.682 268.31 192.385 268.179 192.079 268.042L191.921 267.973C191.613 267.841 191.297 267.705 190.976 267.579L190.834 267.522L190.472 267.38L190.074 267.23L189.616 267.061L188.915 266.812L188.463 266.657L187.646 266.389L187.253 266.263C186.842 266.134 186.436 266.008 185.997 265.882L183.22 261.23L183.182 274.338L185.959 278.99C186.387 279.116 186.804 279.242 187.215 279.371L187.61 279.497L188.428 279.765L188.88 279.92C189.117 280.003 189.351 280.084 189.58 280.169L190.038 280.338C190.294 280.435 190.551 280.531 190.799 280.63L190.94 280.687C191.265 280.818 191.578 280.955 191.889 281.083L192.044 281.15C192.349 281.284 192.646 281.418 192.935 281.555L193.077 281.622C193.368 281.761 193.654 281.903 193.93 282.045C193.962 282.061 193.994 282.078 194.025 282.096C194.317 282.246 194.597 282.399 194.87 282.552C197.942 284.297 199.645 285.934 199.979 287.462C200.025 287.669 200.047 287.88 200.048 288.091L200.086 274.984C200.085 274.772 200.061 274.561 200.015 274.354Z"
97
- fill="url(#paint2_linear_2747_48514)"/>
98
- <path style="mix-blend-mode:multiply" opacity="0.7"
99
- d="M221.213 276.619C221.213 276.753 221.213 276.892 221.185 277.018L221.169 277.184C221.145 277.367 221.118 277.55 221.083 277.73C221.048 277.918 220.999 278.106 220.948 278.297C220.931 278.352 220.915 278.406 220.896 278.463C220.856 278.603 220.81 278.736 220.758 278.884C220.739 278.941 220.718 279.001 220.696 279.058C220.653 279.176 220.601 279.293 220.553 279.41C220.528 279.465 220.507 279.522 220.482 279.577C220.404 279.749 220.32 279.923 220.231 280.095C220.166 280.218 220.098 280.338 220.028 280.461L219.939 280.614C219.885 280.704 219.828 280.791 219.771 280.886C219.714 280.982 219.712 280.982 219.679 281.028C219.609 281.135 219.539 281.241 219.463 281.347C219.441 281.375 219.422 281.405 219.403 281.432C219.306 281.566 219.209 281.705 219.106 281.83L218.892 282.103L218.749 282.278C218.671 282.373 218.587 282.466 218.503 282.551L218.368 282.701C218.252 282.829 218.13 282.952 218.005 283.077C217.989 283.094 217.976 283.113 217.957 283.129C217.816 283.271 217.67 283.402 217.521 283.552C217.373 283.702 217.235 283.825 217.089 283.942L216.956 284.054L216.632 284.327L216.451 284.471C216.351 284.55 216.253 284.632 216.15 284.711L215.945 284.867L215.645 285.093L215.423 285.252C215.32 285.325 215.218 285.402 215.112 285.473L214.882 285.631L214.552 285.852L214.32 286.005L213.96 286.234L213.733 286.376C213.544 286.49 213.352 286.608 213.152 286.725C212.808 286.927 212.459 287.121 212.113 287.312L211.791 287.483C211.543 287.614 211.294 287.756 211.045 287.871L210.694 288.048C210.423 288.179 210.153 288.321 209.882 288.43L209.612 288.556C209.258 288.717 208.901 288.872 208.547 289.02L208.311 289.115C208.041 289.23 207.746 289.341 207.462 289.451L207.105 289.581C206.851 289.677 206.597 289.767 206.34 289.854L205.994 289.972C205.756 290.051 205.518 290.122 205.28 290.195C205.123 290.244 204.969 290.294 204.815 290.337C204.561 290.411 204.304 290.482 204.047 290.55L203.647 290.657C203.287 290.749 202.927 290.831 202.565 290.913L202.465 290.935C202.073 291.019 201.678 291.098 201.281 291.169C200.883 291.24 200.404 291.319 199.964 291.382L199.693 291.418C199.344 291.464 198.993 291.508 198.641 291.543C198.371 291.571 198.101 291.592 197.83 291.614L197.422 291.65C197.024 291.677 196.611 291.696 196.224 291.71H196.194C195.794 291.723 195.383 291.729 194.988 291.731H194.596C194.269 291.731 193.942 291.731 193.615 291.715C193.228 291.701 192.844 291.68 192.457 291.652L192.168 291.633C191.873 291.611 191.578 291.581 191.284 291.554L190.91 291.516C190.508 291.472 190.099 291.423 189.696 291.363C189.629 291.363 189.561 291.341 189.493 291.33C189.133 291.279 188.772 291.222 188.412 291.159L187.958 291.071C187.687 291.019 187.417 290.967 187.146 290.91C186.762 290.828 186.376 290.738 185.986 290.637L185.716 290.575C185.24 290.456 184.762 290.328 184.283 290.19C183.877 290.075 183.471 289.953 183.06 289.822L182.758 289.723C182.444 289.62 182.13 289.516 181.817 289.407L181.387 289.254C181.116 289.153 180.824 289.05 180.543 288.94L180.108 288.774C179.737 288.629 179.364 288.482 178.994 288.327L178.907 288.291C178.499 288.119 178.096 287.939 177.685 287.745L177.349 287.593C177.022 287.443 176.695 287.29 176.368 287.131L176.084 286.995C175.676 286.799 175.273 286.591 174.859 286.381L174.589 286.242C174.253 286.067 173.918 285.887 173.583 285.696L173.239 285.508C172.823 285.276 172.409 285.044 171.993 284.802C166.797 281.775 163.024 278.82 160.673 275.937C160.159 275.312 159.69 274.649 159.273 273.954L159.235 287.298C161.322 290.805 165.559 294.421 171.944 298.146C172.36 298.389 172.774 298.621 173.19 298.852L173.537 299.041C173.872 299.224 174.207 299.404 174.54 299.586L174.81 299.725C175.218 299.935 175.626 300.139 176.035 300.339L176.322 300.479L177.301 300.937L177.636 301.09C178.043 301.272 178.451 301.453 178.858 301.635L178.942 301.668C179.231 301.791 179.521 301.908 179.81 302.023L180.059 302.118L180.494 302.287C180.775 302.395 181.057 302.498 181.338 302.598L181.768 302.751C182.082 302.86 182.393 302.964 182.706 303.065C182.809 303.1 182.912 303.136 183.012 303.166C183.401 303.291 183.791 303.409 184.177 303.521L184.234 303.534C184.714 303.672 185.192 303.801 185.67 303.919L185.94 303.982C186.33 304.074 186.716 304.164 187.103 304.255L187.206 304.279C187.444 304.328 187.679 304.369 187.914 304.415L188.369 304.503C188.729 304.566 189.09 304.624 189.45 304.675C189.518 304.675 189.585 304.699 189.653 304.707C190.053 304.765 190.464 304.814 190.854 304.857L191.227 304.896L191.83 304.953L192.1 304.975L192.39 304.994C192.776 305.021 193.16 305.043 193.547 305.057H193.904H194.529C194.661 305.057 194.799 305.057 194.923 305.057C195.324 305.057 195.735 305.057 196.124 305.038H196.17C196.565 305.024 196.959 305.002 197.354 304.977L197.763 304.942C198.001 304.923 198.236 304.907 198.471 304.882H198.563C198.915 304.847 199.266 304.803 199.615 304.756L199.885 304.721C200.326 304.658 200.767 304.587 201.205 304.508H201.245C201.629 304.437 202.008 304.361 202.387 304.279L202.489 304.255C202.849 304.175 203.209 304.091 203.571 304.001L203.971 303.894C204.228 303.826 204.485 303.755 204.739 303.682C204.896 303.638 205.05 303.589 205.204 303.54C205.358 303.491 205.564 303.433 205.745 303.376L205.921 303.316L206.267 303.199C206.524 303.111 206.778 303.021 207.032 302.926L207.392 302.795C207.676 302.686 207.957 302.574 208.238 302.459L208.474 302.364C208.831 302.216 209.185 302.061 209.539 301.9L209.809 301.775C210.08 301.652 210.35 301.523 210.621 301.392L210.972 301.215C211.221 301.09 211.47 300.959 211.718 300.828L212.04 300.656C212.389 300.465 212.735 300.271 213.081 300.069L213.598 299.758L213.66 299.72L213.89 299.575L214.247 299.349L214.479 299.196L214.809 298.975L215.039 298.817C215.145 298.743 215.247 298.672 215.35 298.596L215.572 298.438L215.872 298.211L216.077 298.056L216.375 297.818L216.559 297.671L216.881 297.398L217.016 297.281C217.162 297.153 217.305 297.024 217.443 296.896C217.592 296.754 217.738 296.623 217.881 296.473L217.927 296.421C218.051 296.296 218.173 296.171 218.289 296.045L218.425 295.895C218.508 295.799 218.592 295.709 218.671 295.622C218.749 295.535 218.768 295.505 218.817 295.445L219.028 295.188L219.044 295.166C219.141 295.041 219.236 294.915 219.314 294.79L219.374 294.705C219.447 294.599 219.522 294.493 219.593 294.386L219.682 294.244C219.739 294.157 219.796 294.067 219.85 293.971L219.939 293.819L220.004 293.707L220.142 293.453C220.231 293.281 220.315 293.106 220.393 292.935C220.418 292.88 220.439 292.823 220.463 292.768C220.515 292.651 220.564 292.534 220.607 292.416C220.607 292.392 220.628 292.37 220.637 292.345C220.645 292.321 220.658 292.277 220.672 292.242C220.72 292.1 220.766 291.969 220.81 291.822L220.858 291.652C220.91 291.464 220.958 291.276 220.996 291.088C221.031 290.905 221.058 290.722 221.083 290.542L221.099 290.375C221.099 290.242 221.121 290.103 221.126 289.977C221.126 289.944 221.126 289.909 221.126 289.873C221.126 289.838 221.126 289.751 221.126 289.688L221.164 276.344C221.223 276.436 221.218 276.535 221.213 276.619Z"
100
- fill="url(#paint3_linear_2747_48514)"/>
101
- <path
102
- d="M245.163 263.889L232.991 271.072L214.447 260.199L206.637 264.02C208.943 264.929 210.524 265.617 211.381 266.083C212.237 266.549 213.013 266.982 213.708 267.382C216.836 269.216 218.939 271.298 220.016 273.627C221.092 275.956 221.013 278.311 219.776 280.691C218.538 283.071 216.193 285.28 212.741 287.317C206.879 290.837 200.144 292.569 193.339 292.307C186.447 292.067 179.289 289.77 171.866 285.418C165.511 281.691 161.3 278.074 159.235 274.566L171.221 267.491C172.61 269.598 174.248 271.523 176.099 273.223C177.935 275.013 179.967 276.584 182.154 277.907C184.884 279.508 187.555 280.399 190.165 280.581C192.708 280.779 195.25 280.18 197.449 278.867C199.523 277.645 200.395 276.254 200.063 274.697C199.732 273.139 198.052 271.473 195.024 269.697C192.717 268.343 189.791 267.135 186.247 266.072L183.508 261.334L214.117 245.678L245.163 263.889Z"
103
- fill="white"/>
104
- <path style="mix-blend-mode:multiply" opacity="0.7"
105
- d="M264.848 287.509C264.73 287.438 264.609 287.376 264.485 287.313L264.362 287.258C264.278 287.22 264.195 287.179 264.106 287.144H264.079L264.017 287.122C263.875 287.067 263.727 287.016 263.579 286.972L263.506 286.947L263.445 286.931C263.34 286.901 263.232 286.876 263.125 286.852L263.022 286.825H262.993C262.893 286.803 262.794 286.787 262.694 286.77L262.568 286.748C262.439 286.729 262.299 286.716 262.178 286.702H262.119C261.963 286.688 261.801 286.68 261.64 286.677H261.621C261.592 286.677 261.559 286.677 261.53 286.677H261.048H260.952C260.777 286.677 260.602 286.697 260.414 286.713H260.32H260.263L260.01 286.743L259.741 286.778L259.473 286.819L259.268 286.852H259.225C258.975 286.898 258.722 286.953 258.461 287.016L258.295 287.056C258.026 287.122 257.757 287.193 257.488 287.277C257.329 287.324 257.165 287.376 256.996 287.43L256.939 287.449L256.67 287.539L256.321 287.659L256.033 287.766L255.67 287.902L255.366 288.022L254.987 288.175L254.661 288.308L254.269 288.477C254.156 288.524 254.043 288.576 253.927 288.628L253.513 288.81L253.158 288.974L252.725 289.173L252.357 289.35L251.905 289.568L251.518 289.757L251.047 289.994L250.646 290.196L250.154 290.449L249.74 290.665L249.224 290.938L248.801 291.161L248.264 291.456L247.833 291.69L247.252 292.012L246.827 292.247L246.193 292.607L245.784 292.836L245.074 293.245L244.706 293.458L243.598 294.104L242.589 294.704L242.406 294.813L241.478 295.375L241.312 295.476L241.002 295.667C240.838 295.765 240.68 295.863 240.521 295.964L240.357 296.065L239.51 296.597L239.308 296.725L238.663 297.14L238.464 297.268L237.713 297.761L237.587 297.846L236.987 298.252L236.799 298.381C236.578 298.531 236.366 298.681 236.159 298.828L236.135 298.841L235.522 299.283L235.363 299.403C235.202 299.521 235.046 299.635 234.895 299.75L234.787 299.834C234.608 299.971 234.436 300.104 234.271 300.235L234.155 300.328C234.026 300.434 233.887 300.535 233.779 300.639L233.663 300.734C233.515 300.86 233.376 300.983 233.244 301.1L233.185 301.152L232.959 301.362L232.848 301.465L232.781 301.531C232.668 301.64 232.563 301.746 232.464 301.85L232.41 301.907C232.311 302.013 232.214 302.12 232.141 302.224C232.069 302.327 232.004 302.39 231.939 302.472L231.923 302.496C231.851 302.589 231.786 302.679 231.724 302.769L231.689 302.818C231.619 302.924 231.555 303.031 231.496 303.132V303.148C231.453 303.222 231.418 303.295 231.383 303.369L231.367 303.399C231.329 303.484 231.294 303.565 231.262 303.647C231.262 303.647 231.262 303.68 231.243 303.696C231.221 303.762 231.203 303.827 231.184 303.893L231.168 303.966C231.168 303.991 231.168 304.015 231.149 304.037C231.13 304.059 231.149 304.116 231.13 304.157C231.111 304.198 231.13 304.184 231.13 304.198C231.13 304.264 231.13 304.329 231.114 304.392V304.444L231.076 317.781C231.076 317.699 231.082 317.618 231.092 317.538C231.094 317.524 231.094 317.51 231.092 317.497C231.092 317.434 231.114 317.371 231.13 317.306C231.135 317.281 231.141 317.256 231.149 317.232C231.165 317.166 231.185 317.1 231.208 317.036C231.212 317.019 231.218 317.003 231.224 316.987C231.255 316.894 231.291 316.803 231.332 316.714L231.348 316.684C231.385 316.608 231.426 316.529 231.471 316.447C231.517 316.365 231.593 316.24 231.662 316.133C231.675 316.119 231.686 316.103 231.695 316.087C231.759 315.997 231.824 315.904 231.896 315.814C231.969 315.724 232.036 315.631 232.114 315.541C232.192 315.451 232.297 315.334 232.383 315.225L232.437 315.168C232.536 315.064 232.644 314.958 232.754 314.849L232.822 314.783L233.158 314.469L233.217 314.418C233.349 314.3 233.486 314.178 233.636 314.052L233.752 313.957C233.873 313.853 233.999 313.752 234.131 313.646L234.244 313.553C234.411 313.422 234.58 313.28 234.761 313.152L234.868 313.068C235.019 312.953 235.175 312.838 235.336 312.721L235.495 312.601L236.111 312.159L236.132 312.146L236.772 311.698L236.96 311.57L237.563 311.161L237.684 311.082C237.929 310.918 238.181 310.752 238.439 310.586L238.636 310.457L239.284 310.04L239.483 309.915L240.333 309.383C240.384 309.347 240.44 309.315 240.494 309.282L241.282 308.796L241.454 308.69C241.758 308.507 242.065 308.319 242.382 308.131L242.562 308.022L243.571 307.422C243.947 307.201 244.316 306.986 244.681 306.776L245.047 306.563L245.757 306.154L246.166 305.925L246.801 305.565L247.225 305.33L247.806 305.008L248.237 304.774L248.774 304.479L249.197 304.255L249.713 303.983L250.13 303.764L250.619 303.514L251.02 303.312C251.179 303.23 251.335 303.154 251.491 303.077L251.878 302.886L252.327 302.668L252.701 302.491L253.131 302.292L253.489 302.128L253.9 301.945L254.242 301.795L254.634 301.626L254.96 301.493L255.336 301.34L255.643 301.22L256.006 301.083L256.294 300.977L256.641 300.857L256.91 300.767C257.095 300.704 257.278 300.647 257.448 300.595C257.716 300.511 257.985 300.44 258.254 300.374L258.418 300.333C258.687 300.271 258.932 300.216 259.182 300.17L259.43 300.126L259.698 300.085L259.967 300.05L260.22 300.02L260.371 300.006C260.551 299.99 260.726 299.979 260.909 299.971H261.067H261.605C261.769 299.971 261.928 299.971 262.084 299.995H262.143C262.275 300.009 262.412 300.023 262.533 300.042L262.673 300.063L262.971 300.115L263.103 300.148C263.211 300.172 263.318 300.197 263.423 300.227L263.558 300.268C263.706 300.312 263.853 300.363 263.996 300.418L264.087 300.451C264.173 300.486 264.257 300.524 264.34 300.565L264.464 300.62C264.588 300.682 264.709 300.745 264.827 300.816C265.781 301.374 266.258 302.045 266.258 302.829L266.293 289.489C266.284 288.729 265.802 288.069 264.848 287.509Z"
106
- fill="url(#paint4_linear_2747_48514)"/>
107
- <path style="mix-blend-mode:multiply" opacity="0.7"
108
- d="M284.601 291.298C284.601 291.433 284.585 291.573 284.574 291.705C284.574 291.79 284.555 291.876 284.544 291.961C284.524 292.098 284.502 292.236 284.478 292.376C284.453 292.516 284.445 292.568 284.423 292.665C284.423 292.709 284.404 292.75 284.395 292.794C284.354 292.973 284.307 293.154 284.255 293.344C284.203 293.533 284.124 293.759 284.047 293.97L283.981 294.146C283.956 294.212 283.929 294.278 283.901 294.347C283.874 294.416 283.835 294.504 283.8 294.583C283.764 294.663 283.742 294.718 283.709 294.787C283.676 294.856 283.638 294.946 283.599 295.026C283.561 295.106 283.531 295.161 283.498 295.23C283.465 295.298 283.415 295.389 283.371 295.469L283.261 295.672L283.143 295.881C283.086 295.98 283.025 296.082 282.962 296.183L282.841 296.384C282.776 296.486 282.71 296.59 282.641 296.692L282.512 296.884C282.435 296.997 282.355 297.107 282.276 297.22C282.235 297.275 282.196 297.33 282.158 297.388C282.043 297.544 281.922 297.701 281.801 297.858L281.776 297.891C281.598 298.113 281.411 298.339 281.227 298.567L281.106 298.707C280.914 298.927 280.717 299.15 280.511 299.37L280.401 299.485C280.206 299.694 280.005 299.9 279.794 300.109L279.701 300.205C279.473 300.431 279.237 300.656 278.995 300.882L278.754 301.104L278.561 301.28L278.226 301.577L278.048 301.734C277.905 301.858 277.773 301.984 277.612 302.108L277.518 302.19C277.337 302.341 277.153 302.492 276.969 302.644C276.917 302.69 276.859 302.734 276.804 302.778C276.67 302.886 276.53 302.996 276.395 303.103L276.176 303.276C276.049 303.372 275.926 303.471 275.797 303.567L275.558 303.749L275.174 304.037L274.927 304.219L274.515 304.516L274.281 304.686L273.768 305.046L273.617 305.151L272.933 305.621L272.744 305.745L272.225 306.091L271.951 306.264L271.481 306.567L271.207 306.754L270.737 307.048L270.441 307.235L269.944 307.543L269.669 307.716L269.12 308.04L268.846 308.202L268.022 308.692C267.473 309.014 266.924 309.328 266.375 309.632L266.1 309.786C265.575 310.077 265.054 310.361 264.538 310.638L264.239 310.795C263.712 311.075 263.187 311.35 262.666 311.619L262.528 311.688C262.023 311.944 261.524 312.188 261.024 312.428C260.95 312.463 260.879 312.502 260.804 312.535C260.296 312.777 259.794 313.01 259.292 313.239L258.995 313.373C258.496 313.599 257.999 313.816 257.504 314.025L257.293 314.116C256.81 314.319 256.327 314.517 255.849 314.707L255.715 314.759C255.22 314.954 254.729 315.138 254.243 315.309L253.968 315.41C253.493 315.583 253.019 315.748 252.546 315.908L252.299 315.99C251.819 316.15 251.338 316.304 250.863 316.447L250.762 316.477C250.253 316.631 249.748 316.776 249.246 316.911C248.747 317.049 248.25 317.186 247.756 317.291L247.643 317.318C247.171 317.431 246.701 317.533 246.235 317.629L246.067 317.665C245.617 317.755 245.17 317.838 244.728 317.912L244.505 317.95C244.066 318.025 243.632 318.088 243.201 318.146L242.973 318.176C242.518 318.236 242.062 318.289 241.601 318.33C241.139 318.371 240.7 318.407 240.253 318.434L239.83 318.454C239.517 318.47 239.204 318.481 238.894 318.489C238.748 318.489 238.603 318.489 238.454 318.489C238.139 318.489 237.826 318.489 237.513 318.489H237.128C236.703 318.489 236.28 318.465 235.857 318.44L235.651 318.426C235.292 318.404 234.935 318.377 234.581 318.346L234.191 318.308C233.867 318.275 233.546 318.236 233.224 318.195L232.909 318.157C232.483 318.096 232.058 318.033 231.635 317.959L231.44 317.92C231.089 317.857 230.74 317.788 230.391 317.714L229.842 317.588C229.587 317.53 229.334 317.469 229.082 317.406L228.513 317.255C228.239 317.178 227.942 317.098 227.66 317.016L227.421 316.944C227.031 316.823 226.641 316.697 226.254 316.565L226.034 316.488C225.667 316.359 225.299 316.213 224.936 316.081L224.813 316.034C224.56 315.935 224.31 315.828 224.06 315.724L223.495 315.49C223.237 315.375 222.982 315.254 222.723 315.133C222.551 315.053 222.375 314.976 222.202 314.893C221.927 314.756 221.634 314.619 221.351 314.462C221.205 314.388 221.076 314.319 220.92 314.242C220.493 314.017 220.07 313.782 219.649 313.538C214.134 310.351 211.382 306.863 211.393 303.073L211.355 316.518C211.344 320.308 214.096 323.797 219.61 326.984C220.033 327.229 220.457 327.464 220.881 327.688C221.024 327.765 221.156 327.833 221.31 327.905C221.584 328.053 221.878 328.199 222.163 328.339C222.334 328.422 222.507 328.496 222.68 328.575C222.938 328.696 223.198 328.82 223.459 328.936C223.643 329.015 223.83 329.09 224.008 329.167C224.244 329.266 224.478 329.367 224.717 329.461L224.766 329.48L224.89 329.527C225.252 329.67 225.617 329.802 225.988 329.931L226.213 330.011C226.6 330.143 226.987 330.269 227.377 330.39L227.618 330.461L228.028 330.582C228.176 330.626 228.324 330.659 228.47 330.7L229.038 330.852C229.29 330.915 229.546 330.975 229.798 331.033L230.347 331.16L230.529 331.201C230.803 331.261 231.108 331.314 231.399 331.366L231.591 331.404C231.974 331.47 232.355 331.531 232.736 331.586L232.865 331.602L233.181 331.641C233.502 331.682 233.823 331.72 234.147 331.753L234.537 331.792L234.811 331.819C235.086 331.841 235.333 331.858 235.594 331.872H235.8C236.17 331.894 236.541 331.91 236.898 331.918H237.447C237.76 331.918 238.076 331.918 238.389 331.918C238.537 331.918 238.682 331.918 238.828 331.918H239.149C239.355 331.918 239.561 331.899 239.764 331.888C239.907 331.888 240.038 331.888 240.187 331.866C240.634 331.841 241.084 331.808 241.535 331.764L241.738 331.745C242.122 331.707 242.509 331.66 242.899 331.61L243.124 331.58C243.555 331.523 243.992 331.459 244.428 331.385L244.651 331.347L245.051 331.281L245.99 331.099L246.158 331.063C246.625 330.967 247.094 330.865 247.566 330.753L247.679 330.725C248.173 330.608 248.671 330.481 249.172 330.346C249.674 330.212 250.18 330.067 250.69 329.912L250.792 329.881C251.097 329.788 251.402 329.694 251.706 329.606L252.228 329.436L252.475 329.353C252.947 329.194 253.421 329.028 253.897 328.856L254.172 328.751C254.66 328.573 255.149 328.389 255.643 328.202L255.78 328.147C256.258 327.963 256.738 327.767 257.219 327.558L257.433 327.468C257.927 327.259 258.424 327.042 258.924 326.816L259.223 326.681C259.723 326.453 260.225 326.222 260.733 325.98L260.955 325.87C261.451 325.632 261.951 325.387 262.454 325.134L262.594 325.062C263.116 324.798 263.639 324.523 264.165 324.238L264.467 324.075C264.985 323.8 265.504 323.518 266.026 323.229L266.301 323.072C266.85 322.764 267.399 322.453 267.948 322.132C268.222 321.97 268.497 321.805 268.771 321.642L269.046 321.48L269.491 321.205L269.587 321.148L269.861 320.974L270.358 320.666L270.655 320.48L271.124 320.185L271.399 319.999L271.868 319.696L272.143 319.523L272.662 319.176L272.851 319.053L273.535 318.583L273.686 318.478L274.199 318.118L274.432 317.948C274.572 317.849 274.707 317.75 274.844 317.648C274.929 317.59 275.009 317.53 275.091 317.469L275.476 317.181L275.714 316.999C275.843 316.903 275.97 316.804 276.093 316.708L276.313 316.535C276.453 316.427 276.588 316.317 276.722 316.21L276.889 316.076L277.439 315.622L277.532 315.539L277.971 315.166C278.029 315.113 278.086 315.061 278.147 315.012L278.482 314.712L278.674 314.539L278.841 314.385L278.916 314.313C279.157 314.088 279.396 313.863 279.621 313.637L279.717 313.541C279.926 313.332 280.126 313.126 280.321 312.917L280.431 312.801C280.637 312.582 280.837 312.359 281.027 312.139C281.068 312.092 281.109 312.045 281.148 311.996C281.34 311.771 281.526 311.545 281.697 311.322C281.707 311.312 281.716 311.3 281.724 311.287C281.845 311.133 281.963 310.976 282.078 310.822L282.196 310.654C282.276 310.542 282.355 310.432 282.432 310.319L282.561 310.127C282.63 310.025 282.696 309.92 282.762 309.816L282.885 309.618L283.064 309.316C283.089 309.274 283.113 309.236 283.135 309.195C283.157 309.153 283.165 309.137 283.182 309.107C283.198 309.076 283.256 308.969 283.294 308.903L283.418 308.664C283.454 308.595 283.487 308.527 283.52 308.461L283.632 308.221L283.723 308.018L283.822 307.782C283.849 307.713 283.876 307.647 283.901 307.581L283.942 307.482C283.949 307.456 283.957 307.43 283.967 307.405C284.044 307.193 284.115 306.984 284.176 306.776C284.236 306.567 284.274 306.415 284.316 306.226C284.316 306.182 284.335 306.14 284.346 306.096C284.357 306.052 284.365 306.014 284.373 305.97C284.382 305.926 284.39 305.863 284.398 305.808C284.423 305.67 284.445 305.533 284.464 305.393C284.464 305.307 284.486 305.222 284.494 305.137C284.494 305 284.516 304.862 284.522 304.73C284.522 304.678 284.522 304.626 284.535 304.573C284.549 304.521 284.535 304.436 284.535 304.365L284.574 290.919C284.62 291.054 284.601 291.177 284.601 291.298Z"
109
- fill="url(#paint5_linear_2747_48514)"/>
110
- <path
111
- d="M284.245 292.927C282.856 297.601 277.438 302.651 267.992 308.077C258.219 313.684 249.411 316.856 241.568 317.594C233.926 318.37 226.234 316.716 219.609 312.874C212.966 309.075 210.333 304.855 211.709 300.212C213.085 295.569 218.459 290.551 227.83 285.159C237.653 279.516 246.505 276.318 254.386 275.566C262.042 274.764 269.757 276.407 276.4 280.254C283.017 284.031 285.632 288.255 284.245 292.927ZM239.116 306.221C242.306 305.272 246.95 303.046 253.049 299.544C259.148 296.042 263.043 293.356 264.734 291.484C266.403 289.622 266.312 288.165 264.46 287.11C262.608 286.056 260.105 285.983 256.952 286.893C253.798 287.797 249.072 290.058 242.775 293.676C236.528 297.266 232.626 299.958 231.069 301.753C229.511 303.547 229.659 304.971 231.51 306.026C233.384 307.098 235.919 307.161 239.114 306.213"
112
- fill="white"/>
113
- <path style="mix-blend-mode:multiply" opacity="0.7"
114
- d="M309.923 312.961C309.805 312.893 309.684 312.827 309.56 312.767L309.436 312.71L309.167 312.598L309.14 312.585L309.076 312.563C308.933 312.508 308.788 312.459 308.638 312.413L308.565 312.388L308.506 312.372L308.183 312.293C308.148 312.293 308.116 312.274 308.081 312.268H308.051L307.756 312.217L307.629 312.195H307.613C307.489 312.176 307.363 312.165 307.234 312.151H307.167C307.011 312.14 306.852 312.132 306.691 312.127H306.672C306.642 312.127 306.61 312.127 306.58 312.127C306.443 312.127 306.312 312.127 306.161 312.127C306.14 312.125 306.12 312.125 306.099 312.127H306.002C305.828 312.127 305.653 312.145 305.465 312.165H305.373H305.314L305.061 312.197L304.792 312.23L304.523 312.274C304.456 312.274 304.389 312.293 304.322 312.306H304.276C304.026 312.353 303.773 312.407 303.512 312.47L303.348 312.511C303.079 312.576 302.81 312.65 302.528 312.732L302.036 312.885L301.979 312.904L301.711 312.994L301.356 313.116L301.087 313.22L300.721 313.356L300.414 313.479L300.038 313.629L299.713 313.765L299.317 313.932L298.978 314.082L298.567 314.264L298.207 314.428L297.779 314.63L297.405 314.807L296.956 315.022L296.569 315.213L296.101 315.448L295.695 315.652L295.208 315.903L294.791 316.118L294.275 316.391L293.853 316.617L293.315 316.909L292.882 317.146L292.304 317.466L291.879 317.703L291.245 318.06L290.836 318.292L290.115 318.706L289.76 318.911C289.394 319.121 289.026 319.339 288.65 319.56C288.273 319.781 287.969 319.961 287.641 320.16C287.579 320.195 287.517 320.231 287.458 320.269C287.144 320.457 286.834 320.642 286.533 320.828L286.361 320.931L286.055 321.12L285.568 321.419L285.412 321.518L284.565 322.049L284.358 322.18L283.715 322.595L283.519 322.72C283.25 322.889 283.008 323.053 282.763 323.216L282.642 323.298L282.04 323.705L281.852 323.835C281.631 323.985 281.416 324.135 281.209 324.283L281.187 324.296C280.975 324.446 280.773 324.593 280.574 324.738L280.416 324.855C280.254 324.972 280.098 325.09 279.948 325.204L279.837 325.286L279.324 325.687L279.208 325.782L278.832 326.09L278.716 326.189C278.568 326.311 278.428 326.434 278.297 326.554L278.237 326.606C278.159 326.677 278.081 326.745 278.011 326.813L277.901 326.917L277.834 326.982C277.721 327.091 277.616 327.2 277.517 327.304L277.463 327.361C277.363 327.467 277.267 327.574 277.194 327.675L276.992 327.923L276.973 327.95C276.904 328.043 276.836 328.136 276.774 328.223L276.742 328.269C276.67 328.375 276.608 328.479 276.549 328.583C276.549 328.588 276.549 328.594 276.549 328.599C276.508 328.673 276.473 328.746 276.438 328.817L276.422 328.85C276.383 328.931 276.348 329.013 276.317 329.098L276.301 329.147C276.28 329.213 276.258 329.278 276.242 329.343C276.226 329.409 276.242 329.393 276.223 329.417L276.207 329.488C276.207 329.529 276.207 329.567 276.188 329.608V329.649C276.188 329.714 276.188 329.777 276.188 329.84C276.188 329.859 276.188 329.875 276.188 329.892L276.153 343.229C276.153 343.147 276.159 343.066 276.169 342.986C276.168 342.972 276.168 342.959 276.169 342.945C276.169 342.882 276.191 342.817 276.204 342.754C276.212 342.73 276.218 342.705 276.223 342.68C276.242 342.615 276.261 342.55 276.282 342.484C276.289 342.468 276.294 342.452 276.299 342.435C276.331 342.348 276.368 342.26 276.409 342.162L276.425 342.13C276.463 342.053 276.503 341.974 276.546 341.895C276.589 341.816 276.67 341.688 276.74 341.582L276.772 341.535C276.834 341.445 276.901 341.352 276.973 341.262C277.046 341.173 277.113 341.08 277.191 340.99C277.269 340.9 277.374 340.782 277.46 340.676L277.514 340.619C277.613 340.515 277.718 340.406 277.831 340.297L277.899 340.234C278.006 340.131 278.116 340.027 278.235 339.921L278.294 339.869C278.426 339.749 278.563 339.626 278.713 339.504L278.829 339.406L279.205 339.097L279.324 339.002C279.488 338.871 279.657 338.729 279.835 338.601L279.945 338.519C280.096 338.405 280.252 338.287 280.413 338.17L280.571 338.053C280.77 337.909 280.972 337.761 281.187 337.611L281.206 337.598C281.413 337.45 281.628 337.3 281.849 337.15L282.04 337.02L282.637 336.616L282.763 336.531C283.005 336.368 283.258 336.204 283.516 336.035L283.712 335.91L284.355 335.495L284.562 335.364L285.409 334.833C285.46 334.8 285.517 334.767 285.568 334.732L286.358 334.249C286.415 334.211 286.474 334.175 286.533 334.14L287.456 333.595L287.638 333.483L288.647 332.886C289.023 332.665 289.392 332.447 289.757 332.237L290.112 332.032L290.833 331.618L291.242 331.386L291.876 331.029L292.301 330.791L292.882 330.472L293.315 330.235L293.853 329.943L294.278 329.717L294.791 329.444L295.208 329.229L295.698 328.978C295.832 328.907 295.967 328.842 296.101 328.774L296.569 328.539L296.956 328.348L297.405 328.133L297.779 327.956L298.209 327.754L298.567 327.59L298.978 327.408L299.32 327.258L299.715 327.091L300.038 326.955L300.417 326.805L300.721 326.682L301.087 326.546L301.372 326.442L301.724 326.319L301.993 326.229C302.181 326.169 302.364 326.11 302.531 326.058C302.8 325.976 303.069 325.902 303.337 325.837L303.501 325.796C303.77 325.733 304.018 325.679 304.265 325.632L304.513 325.591L304.781 325.548L305.05 325.515L305.303 325.482L305.456 325.469C305.634 325.452 305.811 325.441 305.994 325.433H306.153C306.295 325.433 306.435 325.433 306.572 325.433H306.683C306.844 325.433 307.003 325.441 307.159 325.458H307.229C307.358 325.458 307.497 325.482 307.61 325.501L307.75 325.526L308.049 325.578L308.181 325.608L308.5 325.687L308.632 325.728C308.783 325.774 308.931 325.823 309.073 325.878L309.162 325.913L309.415 326.025C309.458 326.044 309.501 326.06 309.541 326.082C309.665 326.142 309.786 326.208 309.904 326.276C310.858 326.834 311.334 327.505 311.332 328.288L311.37 314.951C311.352 314.182 310.87 313.519 309.923 312.961Z"
115
- fill="url(#paint6_linear_2747_48514)"/>
116
- <path style="mix-blend-mode:multiply" opacity="0.7"
117
- d="M329.677 318.147C329.677 318.28 329.66 318.413 329.646 318.543C329.646 318.625 329.63 318.707 329.619 318.79C329.6 318.922 329.578 319.055 329.553 319.193C329.534 319.284 329.52 319.376 329.498 319.459C329.498 319.499 329.479 319.541 329.471 319.584C329.43 319.756 329.383 319.929 329.331 320.115C329.279 320.301 329.199 320.518 329.122 320.72L329.056 320.89C329.032 320.954 329.004 321.02 328.977 321.084C328.949 321.147 328.911 321.238 328.875 321.312C328.839 321.386 328.817 321.445 328.785 321.511C328.752 321.578 328.713 321.663 328.675 321.74C328.636 321.817 328.606 321.87 328.573 321.936C328.54 322.002 328.491 322.09 328.447 322.167C328.403 322.244 328.375 322.3 328.337 322.363C328.299 322.427 328.26 322.499 328.219 322.565C328.178 322.632 328.101 322.762 328.038 322.86C327.975 322.958 327.958 322.988 327.917 323.051L327.717 323.351L327.588 323.537L327.352 323.858L327.231 324.02C327.119 324.171 327.001 324.322 326.877 324.474L326.849 324.506C326.674 324.724 326.487 324.942 326.3 325.159L326.179 325.295C325.987 325.51 325.79 325.722 325.584 325.937L325.474 326.049C325.279 326.251 325.076 326.45 324.867 326.652C324.837 326.683 324.807 326.713 324.774 326.742C324.546 326.96 324.31 327.18 324.066 327.398L323.827 327.613L323.635 327.783L323.303 328.067L323.121 328.221L322.688 328.579L322.589 328.659C322.41 328.805 322.226 328.954 322.04 329.1L321.87 329.23L321.463 329.543L321.244 329.708C321.117 329.803 320.994 329.896 320.865 329.989L320.626 330.167L320.242 330.433L319.995 330.608L319.58 330.9L319.35 331.059L318.828 331.415L318.685 331.511L318.002 331.962L317.81 332.084L317.294 332.419L317.019 332.586L316.552 332.878L316.278 333.056L315.808 333.343L315.512 333.52L315.012 333.82L314.738 333.985L314.189 334.301L313.914 334.458L313.091 334.93C312.542 335.241 311.993 335.541 311.444 335.836L311.169 335.987C310.648 336.269 310.126 336.542 309.61 336.808L309.308 336.962C308.781 337.232 308.258 337.498 307.738 337.758L307.598 337.824C307.096 338.069 306.596 338.307 306.096 338.539L305.877 338.642C305.369 338.876 304.866 339.102 304.364 339.322L304.068 339.449C303.568 339.667 303.071 339.88 302.577 340.081L302.363 340.166C301.88 340.363 301.399 340.553 300.922 340.737L300.785 340.79C300.293 340.979 299.802 341.157 299.313 341.321L299.039 341.42C298.561 341.587 298.089 341.746 297.617 341.9L297.367 341.98C296.886 342.134 296.409 342.282 295.934 342.421L295.832 342.45C295.322 342.598 294.816 342.739 294.314 342.872C293.815 343.003 293.318 343.124 292.824 343.236L292.711 343.265C292.236 343.371 291.77 343.472 291.303 343.565L291.136 343.597C290.685 343.684 290.238 343.764 289.793 343.838L289.574 343.876C289.134 343.945 288.701 344.008 288.267 344.064L288.042 344.093C287.586 344.149 287.13 344.199 286.669 344.242C286.208 344.284 285.769 344.314 285.321 344.34L284.899 344.361C284.586 344.375 284.273 344.388 283.963 344.396H283.523C283.208 344.396 282.895 344.396 282.582 344.396H282.197C281.772 344.396 281.349 344.375 280.926 344.351L280.718 344.338C280.361 344.316 280.004 344.29 279.65 344.258L279.26 344.223C278.936 344.192 278.615 344.154 278.294 344.115C278.187 344.101 278.083 344.091 277.978 344.075C277.55 344.019 277.127 343.955 276.705 343.884L276.512 343.849C276.161 343.788 275.81 343.719 275.461 343.647C275.274 343.61 275.088 343.568 274.912 343.528C274.657 343.469 274.404 343.414 274.152 343.35C273.962 343.305 273.773 343.254 273.583 343.206C273.309 343.132 273.012 343.055 272.73 342.973L272.491 342.904C272.101 342.79 271.711 342.668 271.324 342.54L271.105 342.463C270.737 342.338 270.369 342.197 270.007 342.073L269.886 342.028C269.63 341.932 269.378 341.826 269.125 341.722C268.939 341.648 268.755 341.579 268.576 341.499C268.302 341.388 268.052 341.268 267.791 341.151C267.621 341.074 267.451 341.003 267.281 340.923C267.006 340.79 266.71 340.658 266.424 340.504C266.281 340.435 266.15 340.368 265.999 340.296C265.573 340.079 265.148 339.853 264.728 339.617C259.214 336.537 256.461 333.166 256.47 329.506L256.432 342.492C256.432 346.153 259.184 349.523 264.689 352.603C265.112 352.84 265.536 353.067 265.96 353.283C266.1 353.355 266.235 353.421 266.386 353.493C266.66 353.633 266.957 353.777 267.242 353.909C267.412 353.989 267.583 354.061 267.756 354.138C268.03 354.255 268.274 354.377 268.538 354.486C268.722 354.565 268.908 354.634 269.087 354.709C269.323 354.804 269.559 354.905 269.798 354.995L269.847 355.014L269.968 355.059C270.333 355.195 270.701 355.325 271.066 355.449L271.286 355.526C271.673 355.654 272.063 355.776 272.452 355.89L272.691 355.959C272.828 355.999 272.966 356.041 273.103 356.079L273.545 356.193C273.734 356.241 273.924 356.291 274.113 356.336C274.366 356.4 274.621 356.456 274.874 356.514C275.06 356.554 275.244 356.596 275.423 356.634C275.483 356.647 275.543 356.663 275.604 356.673C275.895 356.732 276.183 356.785 276.474 356.835L276.666 356.87C277.048 356.934 277.426 356.995 277.811 357.045L277.94 357.061C278.044 357.077 278.148 357.088 278.256 357.101C278.577 357.141 278.898 357.178 279.222 357.21L279.612 357.244L279.9 357.273L280.682 357.324H280.888C281.259 357.342 281.629 357.358 281.986 357.366H282.535C282.848 357.366 283.164 357.366 283.477 357.366H283.916H284.237L284.852 357.337L285.275 357.316C285.722 357.289 286.172 357.258 286.623 357.218L286.823 357.199C287.207 357.162 287.597 357.117 287.984 357.069L288.209 357.04C288.643 356.984 289.077 356.92 289.516 356.851L289.736 356.814L290.134 356.748C290.446 356.695 290.762 356.634 291.078 356.573L291.245 356.541C291.712 356.447 292.181 356.346 292.654 356.238L292.763 356.214C293.257 356.101 293.755 355.979 294.257 355.848C294.758 355.715 295.264 355.574 295.775 355.425L295.876 355.396C296.181 355.309 296.486 355.216 296.79 355.131L297.312 354.966L297.559 354.887C298.031 354.733 298.506 354.572 298.984 354.406L299.258 354.308C299.747 354.131 300.237 353.954 300.73 353.777L300.87 353.724C301.345 353.547 301.825 353.356 302.308 353.153L302.522 353.068C303.016 352.866 303.513 352.654 304.013 352.436L304.312 352.308C304.812 352.089 305.315 351.862 305.822 351.629L306.041 351.525C306.541 351.294 307.041 351.055 307.546 350.811C307.59 350.787 307.636 350.766 307.683 350.744C308.205 350.479 308.729 350.213 309.253 349.948L309.555 349.794C310.073 349.528 310.593 349.255 311.114 348.974L311.389 348.822C311.938 348.527 312.487 348.227 313.036 347.917L313.859 347.444L314.134 347.29L314.584 347.025L314.68 346.966L314.955 346.802L315.454 346.502L315.751 346.324L316.22 346.037L316.511 345.859L316.975 345.567L317.25 345.4L317.768 345.065L317.958 344.943L318.641 344.492L318.784 344.396L319.306 344.04L319.536 343.881L319.951 343.589L320.198 343.414L320.582 343.148L320.821 342.97C320.95 342.877 321.076 342.784 321.2 342.689L321.419 342.524L321.828 342.208L321.996 342.081C322.183 341.935 322.366 341.786 322.545 341.64L322.638 341.563C322.786 341.443 322.932 341.321 323.075 341.202L323.253 341.051L323.588 340.764L323.78 340.594L323.948 340.445L324.022 340.379C324.263 340.161 324.499 339.941 324.727 339.723C324.76 339.694 324.79 339.664 324.821 339.633C325.029 339.431 325.232 339.232 325.427 339.03L325.537 338.918C325.743 338.703 325.943 338.491 326.133 338.276L326.254 338.14C326.446 337.923 326.632 337.705 326.803 337.487L326.827 337.455C326.952 337.303 327.07 337.152 327.181 337.001C327.225 336.948 327.264 336.895 327.302 336.839L327.538 336.518L327.667 336.332L327.868 336.032C327.909 335.969 327.95 335.905 327.988 335.841C328.027 335.777 328.112 335.645 328.17 335.546L328.241 335.432L328.288 335.345C328.326 335.281 328.362 335.214 328.397 335.148C328.433 335.082 328.483 334.994 328.524 334.917C328.565 334.84 328.592 334.787 328.625 334.721L328.738 334.49C328.768 334.426 328.798 334.359 328.826 334.296C328.853 334.232 328.894 334.142 328.927 334.065C328.96 333.988 328.982 333.935 329.007 333.871C329.032 333.807 329.034 333.807 329.045 333.775C329.056 333.743 329.062 333.728 329.073 333.701C329.15 333.499 329.221 333.297 329.281 333.096C329.342 332.894 329.38 332.748 329.421 332.565C329.421 332.522 329.441 332.48 329.449 332.44C329.457 332.4 329.468 332.36 329.476 332.32C329.485 332.28 329.493 332.217 329.504 332.164C329.528 332.028 329.55 331.898 329.57 331.76C329.57 331.678 329.589 331.595 329.597 331.513C329.597 331.383 329.622 331.248 329.627 331.12C329.627 331.07 329.627 331.019 329.627 330.969C329.627 330.918 329.627 330.836 329.627 330.767L329.663 317.781C329.69 317.914 329.682 318.03 329.677 318.147Z"
118
- fill="url(#paint7_linear_2747_48514)"/>
119
- <path
120
- d="M329.319 319.781C327.931 324.456 322.513 329.508 313.068 334.936C303.295 340.544 294.487 343.718 286.645 344.456C279.004 345.23 271.313 343.576 264.687 339.734C258.045 335.934 255.411 331.712 256.785 327.065C258.16 322.419 263.534 317.4 272.908 312.009C282.728 306.364 291.579 303.165 299.46 302.412C307.341 301.66 314.678 303.224 321.472 307.105C328.096 310.881 330.712 315.106 329.319 319.781ZM284.191 333.079C287.38 332.13 292.024 329.904 298.123 326.403C304.222 322.902 308.117 320.214 309.807 318.337C311.476 316.479 311.385 315.021 309.533 313.963C307.681 312.904 305.179 312.832 302.026 313.746C298.872 314.65 294.146 316.912 287.85 320.53C281.603 324.122 277.701 326.814 276.144 328.607C274.587 330.4 274.734 331.826 276.586 332.884C278.459 333.953 280.993 334.015 284.186 333.069"
121
- fill="white"/>
122
- <defs>
123
- <radialGradient id="paint0_radial_2747_48514" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse"
124
- gradientTransform="translate(279 279) rotate(90) scale(275)">
125
- <stop offset="0.501769" stop-color="#C9E5F2"/>
126
- <stop offset="1" stop-color="#C9E5F2" stop-opacity="0"/>
127
- </radialGradient>
128
- <linearGradient id="paint1_linear_2747_48514" x1="214.172" y1="271.831" x2="233.894" y2="271.831"
129
- gradientUnits="userSpaceOnUse">
130
- <stop offset="0.05" stop-color="#DEE7F0"/>
131
- <stop offset="0.33" stop-color="#E2EAF2"/>
132
- <stop offset="0.62" stop-color="#EFF4F9"/>
133
- <stop offset="0.79" stop-color="#FAFDFF"/>
134
- </linearGradient>
135
- <linearGradient id="paint2_linear_2747_48514" x1="194.317" y1="269.181" x2="187.193" y2="284.245"
136
- gradientUnits="userSpaceOnUse">
137
- <stop offset="0.05" stop-color="#DEE7F0"/>
138
- <stop offset="0.33" stop-color="#E2EAF2"/>
139
- <stop offset="0.62" stop-color="#EFF4F9"/>
140
- <stop offset="0.79" stop-color="#FAFDFF"/>
141
- </linearGradient>
142
- <linearGradient id="paint3_linear_2747_48514" x1="159.264" y1="289.541" x2="221.223" y2="289.541"
143
- gradientUnits="userSpaceOnUse">
144
- <stop offset="0.05" stop-color="#DEE7F0"/>
145
- <stop offset="0.33" stop-color="#E2EAF2"/>
146
- <stop offset="0.62" stop-color="#EFF4F9"/>
147
- <stop offset="0.79" stop-color="#FAFDFF"/>
148
- </linearGradient>
149
- <linearGradient id="paint4_linear_2747_48514" x1="244.593" y1="293.913" x2="249.552" y2="305.238"
150
- gradientUnits="userSpaceOnUse">
151
- <stop offset="0.05" stop-color="#D1DFEB"/>
152
- <stop offset="0.38" stop-color="#E3ECF4"/>
153
- <stop offset="0.72" stop-color="#FAFDFF"/>
154
- </linearGradient>
155
- <linearGradient id="paint5_linear_2747_48514" x1="211.319" y1="311.441" x2="284.62" y2="311.441"
156
- gradientUnits="userSpaceOnUse">
157
- <stop offset="0.05" stop-color="#DEE7F0"/>
158
- <stop offset="0.33" stop-color="#E2EAF2"/>
159
- <stop offset="0.62" stop-color="#EFF4F9"/>
160
- <stop offset="0.79" stop-color="#FAFDFF"/>
161
- </linearGradient>
162
- <linearGradient id="paint6_linear_2747_48514" x1="276.116" y1="327.683" x2="311.338" y2="327.683"
163
- gradientUnits="userSpaceOnUse">
164
- <stop offset="0.05" stop-color="#D1DFEB"/>
165
- <stop offset="0.38" stop-color="#E3ECF4"/>
166
- <stop offset="0.72" stop-color="#FAFDFF"/>
167
- </linearGradient>
168
- <linearGradient id="paint7_linear_2747_48514" x1="256.396" y1="337.601" x2="329.69" y2="337.601"
169
- gradientUnits="userSpaceOnUse">
170
- <stop offset="0.05" stop-color="#DEE7F0"/>
171
- <stop offset="0.33" stop-color="#E2EAF2"/>
172
- <stop offset="0.62" stop-color="#EFF4F9"/>
173
- <stop offset="0.79" stop-color="#FAFDFF"/>
174
- </linearGradient>
175
- </defs>
176
- </svg>
177
- </div>
178
- <div class="error__wrapper__content">
179
- <div class="error__wrapper__content__info">
180
- <div class="error__wrapper__content__info__top">
181
- <p class="title">500</p>
182
- <p class="title">Внутренняя ошибка сервера</p>
183
- </div>
184
- <p class="text">При обработке запроса произошла ошибка.
185
- <br>
186
- Попробуйте повторить запрос</p>
187
- </div>
188
- <div class="error__wrapper__content__button">
189
- <a-button variant="yellow" size="md">Перейти на главную</a-button>
190
- </div>
191
- </div>
192
- </div>
193
- </div>
194
- </template>
195
-
196
- <script>
197
-
198
- export default {
199
- name: "ErrorInternalServer",
200
- layout: "empty"
201
- }
202
- </script>
203
-
204
- <style lang="scss" scoped>
205
- .title{
206
- font-weight: 700;
207
- font-size: 36px;
208
- line-height: 40px;
209
- color: #2C3E50;
210
- @media only screen and (max-width: 820px) {
211
- font-size: 24px;
212
- line-height: 32px;
213
- }
214
- }
215
- .text{
216
- font-weight: 500;
217
- font-size: 14px;
218
- line-height: 20px;
219
- color: #2C3E50;
220
- }
221
- .error {
222
- &__wrapper {
223
- display: flex;
224
- align-items: center;
225
- gap: 45px;
226
- height: 100%;
227
-
228
- &__images {
229
- max-width: 550px;
230
- max-height: 550px;
231
- @media only screen and (max-width: 820px) {
232
- display: none;
233
- }
234
-
235
- svg {
236
- width: 100%;
237
- height: 100%;
238
- }
239
- }
240
-
241
- &__content {
242
- display: flex;
243
- gap: 32px;
244
- flex-direction: column;
245
- @media only screen and (max-width: 820px) {
246
- justify-content: space-between;
247
- }
248
- &__info{
249
- display: flex;
250
- gap: 16px;
251
- flex-direction: column;
252
- &__top{
253
- display: flex;
254
- gap: 24px;
255
- flex-direction: column;
256
- }
257
- }
258
- }
259
- }
260
- }
261
-
262
- </style>
@@ -1,7 +0,0 @@
1
- <Meta title="Adata UI Introduction" />
2
-
3
- # Welcome to Adata UI kit
4
-
5
-
6
-
7
- to install library run **npm i adata-ui**
@@ -1,25 +0,0 @@
1
- import Loader from './Loader.vue'
2
-
3
- export default {
4
- title: 'Loader',
5
- component: Loader,
6
- template: '<a-loader />'
7
- }
8
-
9
- const Template = (args, { argTypes }) => ({
10
- components: { Loader },
11
- props: Object.keys(argTypes),
12
- template: '<a-loader />',
13
- })
14
-
15
- export const Simple = Template.bind({})
16
- Simple.args = {
17
- timer: false,
18
- timerCenter: false,
19
- global: false,
20
- small: false,
21
- smallYellow: false,
22
- verySmall: false,
23
- seconds: 0,
24
- unloadData: false
25
- }