@stamcat/craftsman 0.0.27-alpha.2 → 0.0.27-alpha.21

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 (221) hide show
  1. package/AGENTS.md +19 -344
  2. package/Components.esm.js +72 -11
  3. package/README.md +5 -0
  4. package/Styles.esm.js +7 -7
  5. package/Utilities.esm.js +2 -2
  6. package/_virtual/_rolldown/runtime.esm.js +18 -6
  7. package/package.json +75 -6
  8. package/src/components/Button/AGENTS.md +65 -0
  9. package/src/components/{Button.d.ts → Button/Button.d.ts} +1 -1
  10. package/src/components/Button/Button.esm.js +20 -0
  11. package/src/components/Carousel/AGENTS.md +41 -0
  12. package/src/components/Carousel/Carousel.css +1 -0
  13. package/src/components/Carousel/Carousel.d.ts +11 -0
  14. package/src/components/Carousel/Carousel.scss +34 -0
  15. package/src/components/Carousel/Carousel2.esm.js +75 -0
  16. package/src/components/Checkbox/AGENTS.md +34 -0
  17. package/src/components/Checkbox/Checkbox.d.ts +8 -0
  18. package/src/components/Checkbox/Checkbox.esm.js +18 -0
  19. package/src/components/DatePicker/AGENTS.md +36 -0
  20. package/src/components/DatePicker/DatePicker.css +1 -0
  21. package/src/components/DatePicker/DatePicker.d.ts +8 -0
  22. package/src/components/DatePicker/DatePicker.scss +61 -0
  23. package/src/components/DatePicker/DatePicker2.esm.js +29 -0
  24. package/src/components/DatePicker/ReactCalendar.css +1 -0
  25. package/src/components/DatePicker/ReactCalendar.scss +158 -0
  26. package/src/components/DatePicker/_DatePicker.scss +73 -0
  27. package/src/components/DateRangePicker/AGENTS.md +38 -0
  28. package/src/components/DateRangePicker/DateRangePicker.css +1 -0
  29. package/src/components/DateRangePicker/DateRangePicker.d.ts +8 -0
  30. package/src/components/DateRangePicker/DateRangePicker.scss +62 -0
  31. package/src/components/DateRangePicker/DateRangePicker2.esm.js +29 -0
  32. package/src/components/DateTimePicker/AGENTS.md +41 -0
  33. package/src/components/DateTimePicker/DateTimePicker.css +1 -0
  34. package/src/components/DateTimePicker/DateTimePicker.d.ts +13 -0
  35. package/src/components/DateTimePicker/DateTimePicker.scss +86 -0
  36. package/src/components/DateTimePicker/DateTimePicker2.esm.js +82 -0
  37. package/src/components/Icons/IconAmazonPay.d.ts +2 -0
  38. package/src/components/Icons/IconAmazonPay.esm.js +76 -0
  39. package/src/components/Icons/IconAmex.d.ts +2 -0
  40. package/src/components/Icons/IconAmex.esm.js +87 -0
  41. package/src/components/Icons/IconApplePay.d.ts +2 -0
  42. package/src/components/Icons/IconApplePay.esm.js +26 -0
  43. package/src/components/Icons/IconDiscover.d.ts +2 -0
  44. package/src/components/Icons/IconDiscover.esm.js +129 -0
  45. package/src/components/Icons/IconGooglePay.d.ts +2 -0
  46. package/src/components/Icons/IconGooglePay.esm.js +64 -0
  47. package/src/components/Icons/IconMaestro.d.ts +2 -0
  48. package/src/components/Icons/IconMaestro.esm.js +38 -0
  49. package/src/components/Icons/IconMastercard.d.ts +2 -0
  50. package/src/components/Icons/IconMastercard.esm.js +27 -0
  51. package/src/components/Icons/IconPayPal.d.ts +2 -0
  52. package/src/components/Icons/IconPayPal.esm.js +52 -0
  53. package/src/components/Icons/IconSepa.d.ts +2 -0
  54. package/src/components/Icons/IconSepa.esm.js +272 -0
  55. package/src/components/Icons/IconShopPay.d.ts +2 -0
  56. package/src/components/Icons/IconShopPay.esm.js +35 -0
  57. package/src/components/Icons/IconSquare.d.ts +2 -0
  58. package/src/components/Icons/IconSquare.esm.js +11 -0
  59. package/src/components/Icons/IconStripe.d.ts +2 -0
  60. package/src/components/Icons/IconStripe.esm.js +57 -0
  61. package/src/components/Icons/IconUnionPay.d.ts +2 -0
  62. package/src/components/Icons/IconUnionPay.esm.js +28 -0
  63. package/src/components/Icons/IconVenmo.d.ts +2 -0
  64. package/src/components/Icons/IconVenmo.esm.js +21 -0
  65. package/src/components/Icons/IconVisa.d.ts +2 -0
  66. package/src/components/Icons/IconVisa.esm.js +14 -0
  67. package/src/components/Icons/index.d.ts +15 -0
  68. package/src/components/Icons/index.esm.js +16 -0
  69. package/src/components/Icons/types.d.ts +4 -0
  70. package/src/components/Input/AGENTS.md +30 -0
  71. package/src/components/Input/Input.css +1 -0
  72. package/src/components/Input/Input.d.ts +6 -0
  73. package/src/components/Input/Input.scss +176 -0
  74. package/src/components/Input/Input2.esm.js +42 -0
  75. package/src/components/Input/InputWrapper.d.ts +11 -0
  76. package/src/components/Input/InputWrapper.esm.js +22 -0
  77. package/src/components/InputNumber/AGENTS.md +37 -0
  78. package/src/components/InputNumber/InputNumber.css +1 -0
  79. package/src/components/InputNumber/InputNumber.d.ts +10 -0
  80. package/src/components/InputNumber/InputNumber.scss +29 -0
  81. package/src/components/InputNumber/InputNumber2.esm.js +36 -0
  82. package/src/components/InputPassword/AGENTS.md +29 -0
  83. package/src/components/{InputPassword.d.ts → InputPassword/InputPassword.d.ts} +2 -2
  84. package/src/components/InputPassword/InputPassword.esm.js +30 -0
  85. package/src/components/InputPhone/AGENTS.md +35 -0
  86. package/src/components/InputPhone/InputPhone.css +1 -0
  87. package/src/components/InputPhone/InputPhone.d.ts +7 -0
  88. package/src/components/InputPhone/InputPhone.scss +266 -0
  89. package/src/components/InputPhone/InputPhone2.esm.js +27 -0
  90. package/src/components/Loader/AGENTS.md +31 -0
  91. package/src/components/{Loader.d.ts → Loader/Loader.d.ts} +1 -2
  92. package/src/components/Loader/Loader.esm.js +19 -0
  93. package/src/components/Loader/loaders.module.css +1 -0
  94. package/src/components/Loader/loaders.module.esm.js +21 -0
  95. package/src/{styles/global/components → components/Loader}/loaders.module.scss +2 -1
  96. package/src/components/Modal/AGENTS.md +47 -0
  97. package/src/components/Modal/Modal.css +1 -0
  98. package/src/components/{Modal.d.ts → Modal/Modal.d.ts} +0 -1
  99. package/src/components/Modal/Modal.scss +150 -0
  100. package/src/components/Modal/Modal2.esm.js +53 -0
  101. package/src/components/Notice/AGENTS.md +42 -0
  102. package/src/components/Notice/Notice.css +1 -0
  103. package/src/components/Notice/Notice.d.ts +13 -0
  104. package/src/components/Notice/Notice.scss +76 -0
  105. package/src/components/Notice/Notice2.esm.js +56 -0
  106. package/src/components/Pagination/AGENTS.md +38 -0
  107. package/src/components/Pagination/Pagination.css +1 -0
  108. package/src/components/Pagination/Pagination.d.ts +10 -0
  109. package/src/components/Pagination/Pagination.scss +22 -0
  110. package/src/components/Pagination/Pagination2.esm.js +64 -0
  111. package/src/components/RadioButton/AGENTS.md +44 -0
  112. package/src/components/RadioButton/RadioButton.d.ts +9 -0
  113. package/src/components/RadioButton/RadioButton.esm.js +18 -0
  114. package/src/components/Select/AGENTS.md +36 -0
  115. package/src/components/Select/Select.d.ts +14 -0
  116. package/src/components/Select/Select.esm.js +26 -0
  117. package/src/components/SortableList/AGENTS.md +45 -0
  118. package/src/components/SortableList/ListItem.d.ts +10 -0
  119. package/src/components/SortableList/ListItem.esm.js +67 -0
  120. package/src/components/SortableList/SortableList.css +1 -0
  121. package/src/components/SortableList/SortableList.d.ts +23 -0
  122. package/src/components/SortableList/SortableList.scss +41 -0
  123. package/src/components/SortableList/SortableList2.esm.js +54 -0
  124. package/src/components/SortableList/utilities.d.ts +7 -0
  125. package/src/components/SortableList/utilities.esm.js +4 -0
  126. package/src/components/Text/AGENTS.md +32 -0
  127. package/src/components/Text/Text.css +1 -0
  128. package/src/components/Text/Text.d.ts +10 -0
  129. package/src/components/Text/Text.scss +80 -0
  130. package/src/components/Text/Text2.esm.js +23 -0
  131. package/src/components/Textarea/AGENTS.md +32 -0
  132. package/src/components/Textarea/Textarea.d.ts +3 -0
  133. package/src/components/Textarea/Textarea.esm.js +23 -0
  134. package/src/components/TimePicker/AGENTS.md +42 -0
  135. package/src/components/TimePicker/TimePicker.css +1 -0
  136. package/src/components/TimePicker/TimePicker.d.ts +13 -0
  137. package/src/components/TimePicker/TimePicker.scss +226 -0
  138. package/src/components/TimePicker/TimePicker2.esm.js +98 -0
  139. package/src/components/TimePicker/TimePickerDisplay.d.ts +16 -0
  140. package/src/components/TimePicker/TimePickerDisplay.esm.js +54 -0
  141. package/src/components/TimePicker/TimePickerWheel.d.ts +13 -0
  142. package/src/components/TimePicker/TimePickerWheel.esm.js +61 -0
  143. package/src/components/TimePicker/constants.d.ts +7 -0
  144. package/src/components/TimePicker/constants.esm.js +3 -0
  145. package/src/components/TimePicker/utilities.d.ts +15 -0
  146. package/src/components/TimePicker/utilities.esm.js +20 -0
  147. package/src/components/Toggle/AGENTS.md +33 -0
  148. package/src/components/Toggle/Toggle.css +1 -0
  149. package/src/components/Toggle/Toggle.d.ts +5 -0
  150. package/src/components/Toggle/Toggle.scss +64 -0
  151. package/src/components/Toggle/Toggle2.esm.js +19 -0
  152. package/src/components/Tooltip/AGENTS.md +41 -0
  153. package/src/components/Tooltip/Tooltip.css +1 -0
  154. package/src/components/Tooltip/Tooltip.d.ts +12 -0
  155. package/src/components/Tooltip/Tooltip.scss +29 -0
  156. package/src/components/Tooltip/Tooltip2.esm.js +65 -0
  157. package/src/components/index.d.ts +23 -7
  158. package/src/stories/assets/Stam.jpg +0 -0
  159. package/src/stories/assets/kaluah.jpg +0 -0
  160. package/src/stories/assets/stam2.jpg +0 -0
  161. package/src/stories/assets/tito.jpg +0 -0
  162. package/src/stories/documentation/AboutUs.mdx +21 -0
  163. package/src/stories/documentation/GettingStarted.mdx +117 -0
  164. package/src/stories/documentation/Introduction.mdx +29 -0
  165. package/src/stories/documentation/Themes.mdx +264 -0
  166. package/src/stories/documentation/ToDo.mdx +15 -0
  167. package/src/stories/molecules/Carousel.scss +21 -0
  168. package/src/stories/utilities/DeviceDetection.mdx +59 -0
  169. package/src/styles/_config.scss +30 -0
  170. package/src/styles/components/ThemeProvider.esm.js +1 -1
  171. package/src/styles/global/components/_button.scss +56 -52
  172. package/src/styles/global/components/_checkbox.scss +64 -59
  173. package/src/styles/global/components/_code.scss +19 -15
  174. package/src/styles/global/components/_input.scss +29 -37
  175. package/src/styles/global/components/_radioButton.scss +30 -26
  176. package/src/styles/global/components/_select.scss +56 -0
  177. package/src/styles/global/components/_typography.scss +97 -6
  178. package/src/styles/global/globalStyles.module.scss +1 -129
  179. package/src/styles/global/globalStyles.scss +87 -1
  180. package/src/styles/index.d.ts +1 -1
  181. package/src/styles/theme/components.esm.js +11 -7
  182. package/src/styles/theme/theme.esm.js +31 -41
  183. package/src/styles/theme/types.d.ts +4 -1
  184. package/src/styles/utilities/_functions.scss +117 -0
  185. package/src/styles/utilities/_mixins.scss +0 -0
  186. package/src/styles/utilities/_placeholders.scss +6 -0
  187. package/src/styles/utilities/color.d.ts +1 -1
  188. package/src/styles/utilities/constants.d.ts +1 -1
  189. package/src/styles/utilities/layout.d.ts +1 -1
  190. package/src/styles/utilities/layout.esm.js +3 -3
  191. package/src/{styles/utilities → utilities}/types.d.ts +61 -3
  192. package/src/utilities/types.esm.js +85 -0
  193. package/src/utilities/validations.d.ts +5 -0
  194. package/src/utilities/validations.esm.js +19 -1
  195. package/src/components/Button.esm.js +0 -28
  196. package/src/components/Button.module.css +0 -1
  197. package/src/components/Button.module.esm.js +0 -9
  198. package/src/components/Button.module.scss +0 -5
  199. package/src/components/Checkbox.d.ts +0 -7
  200. package/src/components/Checkbox.esm.js +0 -11
  201. package/src/components/Input.d.ts +0 -11
  202. package/src/components/Input.esm.js +0 -41
  203. package/src/components/Input.module.css +0 -1
  204. package/src/components/Input.module.esm.js +0 -11
  205. package/src/components/Input.module.scss +0 -141
  206. package/src/components/InputPassword.esm.js +0 -33
  207. package/src/components/Loader.esm.js +0 -21
  208. package/src/components/Modal.esm.js +0 -62
  209. package/src/components/Modal.module.css +0 -1
  210. package/src/components/Modal.module.esm.js +0 -13
  211. package/src/components/Modal.module.scss +0 -133
  212. package/src/components/RadioButton.d.ts +0 -7
  213. package/src/components/RadioButton.esm.js +0 -11
  214. package/src/styles/global/components/_mixins.scss +0 -2
  215. package/src/styles/global/components/button.d.ts +0 -7
  216. package/src/styles/global/components/loaders.module.css +0 -1
  217. package/src/styles/global/components/loaders.module.esm.js +0 -21
  218. package/src/styles/utilities/types.esm.js +0 -54
  219. package/src/{styles/global/components/loaders.d.ts → components/Loader/types.d.ts} +1 -1
  220. /package/src/{styles/global/components/loaders.esm.js → components/Loader/types.esm.js} +0 -0
  221. /package/src/components/{Progress.d.ts → Progress/Progress.d.ts} +0 -0
@@ -0,0 +1,272 @@
1
+ import { jsx as e, jsxs as t } from "react/jsx-runtime";
2
+ //#region src/components/Icons/IconSepa.tsx
3
+ var n = ({ width: n = 40, ...r }) => /* @__PURE__ */ t("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ viewBox: "-2.40797607 -2.40797607 196.95056214 85.08182114",
6
+ width: n,
7
+ ...r,
8
+ children: [
9
+ /* @__PURE__ */ e("path", {
10
+ fill: "#10298e",
11
+ d: "M 0.22487,78.25562 L 0.22487,71.41562 L 5.29612,71.41562 L 5.29612,72.57312 L 1.60612,72.57312 L 1.60612,74.08937 L 5.03987,74.08937 L 5.03987,75.24187 L 1.60612,75.24187 L 1.60612,77.10312 L 5.42737,77.10312 L 5.42737,78.25562 L 0.22487,78.25562 z"
12
+ }),
13
+ /* @__PURE__ */ e("path", {
14
+ fill: "#10298e",
15
+ d: "M 6.6555,71.41575 L 7.96675,71.41575 L 7.96675,72.62825 L 6.6555,72.62825 L 6.6555,71.41575 z M 6.6555,73.30075 L 7.96675,73.30075 L 7.96675,78.25575 L 6.6555,78.25575 L 6.6555,73.30075 z"
16
+ }),
17
+ /* @__PURE__ */ e("path", {
18
+ fill: "#10298e",
19
+ d: "M 13.88387,78.25562 L 12.57262,78.25562 L 12.57262,75.72687 C 12.57262,75.19187 12.54512,74.84562 12.48887,74.68812 C 12.43262,74.53187 12.34262,74.41062 12.21637,74.32312 C 12.09012,74.23562 11.93887,74.19187 11.76137,74.19187 C 11.53387,74.19187 11.33012,74.25437 11.15012,74.37937 C 10.97012,74.50312 10.84512,74.66812 10.77887,74.87312 C 10.71137,75.07812 10.67887,75.45812 10.67887,76.01062 L 10.67887,78.25562 L 9.36762,78.25562 L 9.36762,73.30062 L 10.58512,73.30062 L 10.58512,74.02812 C 11.01762,73.46937 11.56262,73.18937 12.21887,73.18937 C 12.50762,73.18937 12.77137,73.24062 13.01137,73.34562 C 13.25137,73.44937 13.43137,73.58312 13.55512,73.74437 C 13.67762,73.90562 13.76387,74.08937 13.81137,74.29437 C 13.86012,74.49937 13.88387,74.79437 13.88387,75.17687 L 13.88387,78.25562 z"
20
+ }),
21
+ /* @__PURE__ */ e("path", {
22
+ fill: "#10298e",
23
+ d: "M 16.58675,71.416 L 16.58675,73.931 C 17.00925,73.436 17.5155,73.1885 18.103,73.1885 C 18.40425,73.1885 18.67675,73.24475 18.91925,73.35725 C 19.16175,73.4685 19.34425,73.61225 19.468,73.786 C 19.5905,73.95975 19.67425,74.1535 19.71925,74.36475 C 19.76425,74.576 19.78675,74.90475 19.78675,75.34975 L 19.78675,78.256 L 18.47675,78.256 L 18.47675,75.6385 C 18.47675,75.1185 18.45175,74.78975 18.40175,74.6485 C 18.35175,74.50975 18.26425,74.3985 18.138,74.316 C 18.01175,74.2335 17.85425,74.19225 17.66425,74.19225 C 17.44675,74.19225 17.25175,74.24475 17.08175,74.34975 C 16.9105,74.456 16.7855,74.616 16.7055,74.8285 C 16.62675,75.04225 16.58675,75.35725 16.58675,75.7735 L 16.58675,78.256 L 15.2755,78.256 L 15.2755,71.416 L 16.58675,71.416 z"
24
+ }),
25
+ /* @__PURE__ */ e("path", {
26
+ fill: "#10298e",
27
+ d: "M 24.053,76.67862 L 25.35925,76.89862 C 25.19175,77.37737 24.9255,77.74112 24.56425,77.99237 C 24.20175,78.24237 23.748,78.36737 23.20425,78.36737 C 22.34175,78.36737 21.70425,78.08612 21.2905,77.52237 C 20.96425,77.07237 20.8005,76.50362 20.8005,75.81612 C 20.8005,74.99487 21.0155,74.35112 21.4455,73.88612 C 21.87425,73.42112 22.41675,73.18862 23.073,73.18862 C 23.8105,73.18862 24.39175,73.43237 24.818,73.91862 C 25.24425,74.40612 25.448,75.15112 25.42925,76.15612 L 22.14425,76.15612 C 22.15425,76.54487 22.25925,76.84737 22.46175,77.06362 C 22.66425,77.27987 22.91675,77.38737 23.218,77.38737 C 23.423,77.38737 23.5955,77.33237 23.7355,77.21987 C 23.8755,77.10737 23.98175,76.92737 24.053,76.67862 M 24.128,75.35362 C 24.118,74.97362 24.0205,74.68612 23.83425,74.48862 C 23.64675,74.29112 23.4205,74.19237 23.153,74.19237 C 22.86675,74.19237 22.6305,74.29612 22.443,74.50487 C 22.25675,74.71237 22.1655,74.99612 22.168,75.35362 L 24.128,75.35362 z"
28
+ }),
29
+ /* @__PURE__ */ e("path", {
30
+ fill: "#10298e",
31
+ d: "M 26.56425,71.41575 L 27.8755,71.41575 L 27.8755,72.62825 L 26.56425,72.62825 L 26.56425,71.41575 z M 26.56425,73.30075 L 27.8755,73.30075 L 27.8755,78.25575 L 26.56425,78.25575 L 26.56425,73.30075 z"
32
+ }),
33
+ /* @__PURE__ */ e("path", {
34
+ fill: "#10298e",
35
+ d: "M 31.55812,73.30075 L 31.55812,74.34575 L 30.66187,74.34575 L 30.66187,76.34325 C 30.66187,76.747 30.67062,76.98325 30.68812,77.0495 L 30.80437,77.21575 L 31.02687,77.28075 C 31.14812,77.28075 31.32312,77.23825 31.55312,77.1545 L 31.66562,78.172 C 31.36062,78.302 31.01562,78.367 30.62937,78.367 C 30.39312,78.367 30.18062,78.32825 29.99062,78.24825 C 29.80062,78.1695 29.66187,78.067 29.57312,77.94075 C 29.48437,77.8145 29.42312,77.6445 29.38812,77.4295 C 29.36062,77.27825 29.34687,76.9695 29.34687,76.50575 L 29.34687,74.34575 L 28.74437,74.34575 L 28.74437,73.30075 L 29.34687,73.30075 L 29.34687,72.31575 L 30.66187,71.55075 L 30.66187,73.30075 L 31.55812,73.30075 z"
36
+ }),
37
+ /* @__PURE__ */ e("path", {
38
+ fill: "#10298e",
39
+ d: "M 32.53425,71.41575 L 33.8455,71.41575 L 33.8455,78.25575 L 32.53425,78.25575 L 32.53425,71.41575 z"
40
+ }),
41
+ /* @__PURE__ */ e("path", {
42
+ fill: "#10298e",
43
+ d: "M 35.25675,71.41575 L 36.568,71.41575 L 36.568,72.62825 L 35.25675,72.62825 L 35.25675,71.41575 z M 35.25675,73.30075 L 36.568,73.30075 L 36.568,78.25575 L 35.25675,78.25575 L 35.25675,73.30075 z"
44
+ }),
45
+ /* @__PURE__ */ e("path", {
46
+ fill: "#10298e",
47
+ d: "M 42.298,74.76587 L 41.0055,74.99962 C 40.96175,74.74087 40.863,74.54712 40.70925,74.41587 C 40.5555,74.28587 40.3555,74.21962 40.1105,74.21962 C 39.783,74.21962 39.523,74.33337 39.328,74.55837 C 39.13425,74.78337 39.03675,75.16087 39.03675,75.68962 C 39.03675,76.27712 39.1355,76.69337 39.333,76.93587 C 39.5305,77.17837 39.7955,77.29837 40.128,77.29837 C 40.378,77.29837 40.5805,77.22837 40.73925,77.08712 C 40.898,76.94587 41.0105,76.70212 41.0755,76.35712 L 42.363,76.57587 C 42.22925,77.16712 41.973,77.61337 41.593,77.91462 C 41.21425,78.21712 40.7055,78.36712 40.068,78.36712 C 39.343,78.36712 38.7655,78.13837 38.33425,77.68212 C 37.90425,77.22462 37.688,76.59212 37.688,75.78337 C 37.688,74.96462 37.90425,74.32837 38.33675,73.87212 C 38.76925,73.41712 39.35425,73.18837 40.09175,73.18837 C 40.69425,73.18837 41.17425,73.31837 41.5305,73.57837 C 41.88675,73.83837 42.143,74.23337 42.298,74.76587"
48
+ }),
49
+ /* @__PURE__ */ e("path", {
50
+ fill: "#10298e",
51
+ d: "M 44.66512,71.416 L 44.66512,73.931 C 45.08762,73.436 45.59387,73.1885 46.18137,73.1885 C 46.48262,73.1885 46.75512,73.24475 46.99762,73.35725 C 47.24012,73.4685 47.42262,73.61225 47.54637,73.786 C 47.66887,73.95975 47.75262,74.1535 47.79762,74.36475 C 47.84262,74.576 47.86512,74.90475 47.86512,75.34975 L 47.86512,78.256 L 46.55512,78.256 L 46.55512,75.6385 C 46.55512,75.1185 46.53012,74.78975 46.48012,74.6485 C 46.43012,74.50975 46.34262,74.3985 46.21637,74.316 C 46.09012,74.2335 45.93262,74.19225 45.74262,74.19225 C 45.52512,74.19225 45.33012,74.24475 45.16012,74.34975 C 44.98887,74.456 44.86262,74.616 44.78387,74.8285 C 44.70512,75.04225 44.66512,75.35725 44.66512,75.7735 L 44.66512,78.256 L 43.35387,78.256 L 43.35387,71.416 L 44.66512,71.416 z"
52
+ }),
53
+ /* @__PURE__ */ e("path", {
54
+ fill: "#10298e",
55
+ d: "M 52.13137,76.67862 L 53.43762,76.89862 C 53.27012,77.37737 53.00387,77.74112 52.64262,77.99237 C 52.28012,78.24237 51.82637,78.36737 51.28262,78.36737 C 50.42012,78.36737 49.78262,78.08612 49.36887,77.52237 C 49.04262,77.07237 48.88012,76.50362 48.88012,75.81612 C 48.88012,74.99487 49.09387,74.35112 49.52387,73.88612 C 49.95262,73.42112 50.49512,73.18862 51.15137,73.18862 C 51.88887,73.18862 52.47012,73.43237 52.89637,73.91862 C 53.32262,74.40612 53.52637,75.15112 53.50762,76.15612 L 50.22262,76.15612 C 50.23262,76.54487 50.33762,76.84737 50.54012,77.06362 C 50.74262,77.27987 50.99512,77.38737 51.29637,77.38737 C 51.50137,77.38737 51.67387,77.33237 51.81387,77.21987 C 51.95387,77.10737 52.06012,76.92737 52.13137,76.67862 M 52.20637,75.35362 C 52.19637,74.97362 52.09887,74.68612 51.91262,74.48862 C 51.72512,74.29112 51.49887,74.19237 51.23137,74.19237 C 50.94512,74.19237 50.70887,74.29612 50.52137,74.50487 C 50.33512,74.71237 50.24387,74.99612 50.24637,75.35362 L 52.20637,75.35362 z"
56
+ }),
57
+ /* @__PURE__ */ e("path", {
58
+ fill: "#10298e",
59
+ d: "M 55.89787,78.25562 L 54.58662,78.25562 L 54.58662,73.30062 L 55.80412,73.30062 L 55.80412,74.00562 C 56.01287,73.67312 56.20037,73.45312 56.36662,73.34812 C 56.53287,73.24187 56.72162,73.18937 56.93412,73.18937 C 57.23287,73.18937 57.52037,73.27187 57.79662,73.43562 L 57.39037,74.57937 C 57.17037,74.43562 56.96412,74.36437 56.77537,74.36437 C 56.59162,74.36437 56.43537,74.41562 56.30787,74.51687 C 56.18037,74.61687 56.08037,74.80062 56.00787,75.06437 C 55.93412,75.32937 55.89787,75.88187 55.89787,76.72562 L 55.89787,78.25562 z"
60
+ }),
61
+ /* @__PURE__ */ e("path", {
62
+ fill: "#10298e",
63
+ d: "M 61.15937,78.25562 L 61.15937,71.41562 L 66.23062,71.41562 L 66.23062,72.57312 L 62.54062,72.57312 L 62.54062,74.08937 L 65.97437,74.08937 L 65.97437,75.24187 L 62.54062,75.24187 L 62.54062,77.10312 L 66.36187,77.10312 L 66.36187,78.25562 L 61.15937,78.25562 z"
64
+ }),
65
+ /* @__PURE__ */ e("path", {
66
+ fill: "#10298e",
67
+ d: "M 70.851,78.25562 L 70.851,77.51437 C 70.671,77.77812 70.4335,77.98687 70.13975,78.13812 C 69.846,78.29062 69.536,78.36812 69.2085,78.36812 C 68.876,78.36812 68.57725,78.29437 68.3135,78.14812 C 68.0485,78.00187 67.85725,77.79687 67.73975,77.53312 C 67.621,77.26812 67.56225,76.90312 67.56225,76.43562 L 67.56225,73.30062 L 68.8735,73.30062 L 68.8735,75.57812 C 68.8735,76.27437 68.89725,76.70062 68.94475,76.85812 C 68.9935,77.01562 69.081,77.13937 69.2085,77.23187 C 69.336,77.32312 69.4985,77.36937 69.6935,77.36937 C 69.9185,77.36937 70.1185,77.30812 70.296,77.18562 C 70.4735,77.06187 70.59475,76.90937 70.65975,76.72812 C 70.72475,76.54562 70.75725,76.10062 70.75725,75.39062 L 70.75725,73.30062 L 72.0685,73.30062 L 72.0685,78.25562 L 70.851,78.25562 z"
68
+ }),
69
+ /* @__PURE__ */ e("path", {
70
+ fill: "#10298e",
71
+ d: "M 74.74825,78.25562 L 73.437,78.25562 L 73.437,73.30062 L 74.6545,73.30062 L 74.6545,74.00562 C 74.86325,73.67312 75.05075,73.45312 75.217,73.34812 C 75.38325,73.24187 75.572,73.18937 75.7845,73.18937 C 76.08325,73.18937 76.37075,73.27187 76.647,73.43562 L 76.24075,74.57937 C 76.02075,74.43562 75.81575,74.36437 75.62575,74.36437 C 75.442,74.36437 75.28575,74.41562 75.15825,74.51687 C 75.03075,74.61687 74.93075,74.80062 74.85825,75.06437 C 74.7845,75.32937 74.74825,75.88187 74.74825,76.72562 L 74.74825,78.25562 z"
72
+ }),
73
+ /* @__PURE__ */ e("path", {
74
+ fill: "#10298e",
75
+ d: "M 76.97525,75.70812 C 76.97525,75.27312 77.08275,74.85187 77.29775,74.44312 C 77.5115,74.03687 77.81525,73.72562 78.209,73.51062 C 78.60275,73.29687 79.0415,73.18937 79.52775,73.18937 C 80.2765,73.18937 80.8915,73.43187 81.37025,73.91937 C 81.849,74.40562 82.089,75.02062 82.089,75.76437 C 82.089,76.51312 81.8465,77.13562 81.36275,77.62812 C 80.879,78.12062 80.27025,78.36687 79.5365,78.36687 C 79.08275,78.36687 78.649,78.26437 78.23775,78.05937 C 77.82525,77.85437 77.5115,77.55312 77.29775,77.15687 C 77.08275,76.76062 76.97525,76.27687 76.97525,75.70812 M 78.319,75.77812 C 78.319,76.26937 78.43525,76.64562 78.669,76.90687 C 78.90275,77.16812 79.19025,77.29937 79.5315,77.29937 C 79.874,77.29937 80.16025,77.16812 80.39275,76.90687 C 80.624,76.64562 80.74025,76.26687 80.74025,75.76812 C 80.74025,75.28312 80.624,74.91062 80.39275,74.64937 C 80.16025,74.38812 79.874,74.25687 79.5315,74.25687 C 79.19025,74.25687 78.90275,74.38812 78.669,74.64937 C 78.43525,74.91062 78.319,75.28687 78.319,75.77812"
76
+ }),
77
+ /* @__PURE__ */ e("path", {
78
+ fill: "#10298e",
79
+ d: "M 83.033,75.12075 L 85.608,75.12075 L 85.608,76.432 L 83.033,76.432 L 83.033,75.12075 z"
80
+ }),
81
+ /* @__PURE__ */ e("path", {
82
+ fill: "#10298e",
83
+ d: "M 85.84737,78.25562 L 85.84737,77.01062 L 89.43987,72.57312 L 86.25362,72.57312 L 86.25362,71.41562 L 91.25987,71.41562 L 91.25987,72.48937 L 87.51362,77.10312 L 91.40362,77.10312 L 91.40362,78.25562 L 85.84737,78.25562 z"
84
+ }),
85
+ /* @__PURE__ */ e("path", {
86
+ fill: "#10298e",
87
+ d: "M 93.31375,74.8125 L 92.12375,74.5975 C 92.2575,74.11875 92.4875,73.76375 92.815,73.53375 C 93.14125,73.30375 93.62625,73.18875 94.27,73.18875 C 94.855,73.18875 95.29,73.2575 95.57625,73.39625 C 95.8625,73.535 96.06375,73.71125 96.18,73.92375 C 96.2975,74.1375 96.355,74.52875 96.355,75.09625 L 96.34125,76.6275 C 96.34125,77.06375 96.3625,77.38375 96.405,77.59 C 96.44625,77.7975 96.525,78.01875 96.64,78.25625 L 95.34375,78.25625 C 95.30875,78.16875 95.2675,78.04 95.2175,77.86875 L 95.17,77.715 C 94.94625,77.9325 94.7075,78.09625 94.4525,78.205 C 94.1975,78.3125 93.925,78.3675 93.63625,78.3675 C 93.125,78.3675 92.72375,78.23 92.43,77.9525 C 92.13625,77.67625 91.98875,77.32625 91.98875,76.9025 C 91.98875,76.6225 92.055,76.37375 92.18875,76.15375 C 92.3225,75.935 92.51,75.76625 92.75125,75.65 C 92.9925,75.53375 93.34,75.43125 93.79375,75.345 C 94.4075,75.22875 94.83125,75.1225 95.0675,75.0225 L 95.0675,74.89125 C 95.0675,74.64 95.00625,74.46 94.88125,74.3525 C 94.75625,74.24625 94.5225,74.1925 94.17625,74.1925 C 93.94375,74.1925 93.76125,74.2375 93.63125,74.33 C 93.5,74.42125 93.395,74.5825 93.31375,74.8125 M 95.0675,75.87625 C 94.9,75.9325 94.63375,76 94.27,76.0775 C 93.90625,76.155 93.66875,76.23125 93.55625,76.305 C 93.385,76.42625 93.3,76.58125 93.3,76.7675 C 93.3,76.95125 93.36875,77.11 93.505,77.2425 C 93.6425,77.3775 93.81625,77.44375 94.0275,77.44375 C 94.26375,77.44375 94.49,77.36625 94.70375,77.21 C 94.8625,77.0925 94.9675,76.9475 95.01625,76.77625 C 95.05125,76.66375 95.0675,76.45125 95.0675,76.1375 L 95.0675,75.87625 z"
88
+ }),
89
+ /* @__PURE__ */ e("path", {
90
+ fill: "#10298e",
91
+ d: "M 99.0215,71.416 L 99.0215,73.931 C 99.444,73.436 99.949,73.1885 100.53775,73.1885 C 100.839,73.1885 101.1115,73.24475 101.354,73.35725 C 101.5965,73.4685 101.779,73.61225 101.90275,73.786 C 102.02525,73.95975 102.109,74.1535 102.154,74.36475 C 102.199,74.576 102.2215,74.90475 102.2215,75.34975 L 102.2215,78.256 L 100.91025,78.256 L 100.91025,75.6385 C 100.91025,75.1185 100.88525,74.78975 100.8365,74.6485 C 100.7865,74.50975 100.699,74.3985 100.57275,74.316 C 100.4465,74.2335 100.289,74.19225 100.099,74.19225 C 99.8815,74.19225 99.6865,74.24475 99.51525,74.34975 C 99.34525,74.456 99.219,74.616 99.14025,74.8285 C 99.06025,75.04225 99.0215,75.35725 99.0215,75.7735 L 99.0215,78.256 L 97.71025,78.256 L 97.71025,71.416 L 99.0215,71.416 z"
92
+ }),
93
+ /* @__PURE__ */ e("path", {
94
+ fill: "#10298e",
95
+ d: "M 103.618,71.41575 L 104.92925,71.41575 L 104.92925,78.25575 L 103.618,78.25575 L 103.618,71.41575 z"
96
+ }),
97
+ /* @__PURE__ */ e("path", {
98
+ fill: "#10298e",
99
+ d: "M 109.60087,78.25562 L 109.60087,77.51437 C 109.42087,77.77812 109.18337,77.98687 108.88962,78.13812 C 108.59587,78.29062 108.28462,78.36812 107.95837,78.36812 C 107.62587,78.36812 107.32712,78.29437 107.06337,78.14812 C 106.79837,78.00187 106.60712,77.79687 106.48837,77.53312 C 106.37087,77.26812 106.31212,76.90312 106.31212,76.43562 L 106.31212,73.30062 L 107.62212,73.30062 L 107.62212,75.57812 C 107.62212,76.27437 107.64712,76.70062 107.69462,76.85812 C 107.74212,77.01562 107.83087,77.13937 107.95837,77.23187 C 108.08587,77.32312 108.24837,77.36937 108.44337,77.36937 C 108.66712,77.36937 108.86837,77.30812 109.04587,77.18562 C 109.22337,77.06187 109.34337,76.90937 109.40962,76.72812 C 109.47462,76.54562 109.50712,76.10062 109.50712,75.39062 L 109.50712,73.30062 L 110.81837,73.30062 L 110.81837,78.25562 L 109.60087,78.25562 z"
100
+ }),
101
+ /* @__PURE__ */ e("path", {
102
+ fill: "#10298e",
103
+ d: "M 116.75025,78.25562 L 115.439,78.25562 L 115.439,75.72687 C 115.439,75.19187 115.4115,74.84562 115.35525,74.68812 C 115.299,74.53187 115.20775,74.41062 115.0815,74.32312 C 114.9565,74.23562 114.804,74.19187 114.62775,74.19187 C 114.40025,74.19187 114.1965,74.25437 114.01525,74.37937 C 113.83525,74.50312 113.71275,74.66812 113.64525,74.87312 C 113.57775,75.07812 113.54525,75.45812 113.54525,76.01062 L 113.54525,78.25562 L 112.234,78.25562 L 112.234,73.30062 L 113.4515,73.30062 L 113.4515,74.02812 C 113.884,73.46937 114.42775,73.18937 115.084,73.18937 C 115.374,73.18937 115.63775,73.24062 115.87775,73.34562 C 116.1165,73.44937 116.29775,73.58312 116.4215,73.74437 C 116.544,73.90562 116.629,74.08937 116.67775,74.29437 C 116.72525,74.49937 116.75025,74.79437 116.75025,75.17687 L 116.75025,78.25562 z"
104
+ }),
105
+ /* @__PURE__ */ e("path", {
106
+ fill: "#10298e",
107
+ d: "M 118.0255,78.58212 L 119.523,78.76462 C 119.548,78.93837 119.6055,79.05837 119.6955,79.12337 C 119.81925,79.21712 120.0155,79.26337 120.283,79.26337 C 120.6255,79.26337 120.88175,79.21212 121.053,79.10837 C 121.168,79.04087 121.2555,78.93087 121.31425,78.77837 C 121.35425,78.66962 121.37425,78.46837 121.37425,78.17587 L 121.37425,77.45337 C 120.983,77.98837 120.48925,78.25587 119.89175,78.25587 C 119.2255,78.25587 118.698,77.97462 118.30925,77.41087 C 118.0055,76.96712 117.853,76.41337 117.853,75.74962 C 117.853,74.91962 118.05175,74.28587 118.45175,73.84587 C 118.85175,73.40837 119.348,73.18837 119.943,73.18837 C 120.5555,73.18837 121.06175,73.45837 121.45925,73.99587 L 121.45925,73.30087 L 122.6855,73.30087 L 122.6855,77.74712 C 122.6855,78.33087 122.638,78.76837 122.54175,79.05837 C 122.44425,79.34712 122.30925,79.57462 122.1355,79.73962 C 121.96175,79.90462 121.728,80.03337 121.438,80.12712 C 121.14675,80.21962 120.77925,80.26587 120.33425,80.26587 C 119.49425,80.26587 118.89925,80.12212 118.548,79.83462 C 118.1955,79.54712 118.0205,79.18212 118.0205,78.74087 L 118.0255,78.58212 z M 119.19675,75.67462 C 119.19675,76.20087 119.298,76.58587 119.50175,76.83087 C 119.7055,77.07462 119.95675,77.19712 120.2555,77.19712 C 120.5755,77.19712 120.8455,77.07087 121.06675,76.82087 C 121.288,76.57087 121.398,76.19962 121.398,75.70837 C 121.398,75.19462 121.293,74.81462 121.0805,74.56587 C 120.86925,74.31712 120.60175,74.19212 120.278,74.19212 C 119.96425,74.19212 119.7055,74.31462 119.50175,74.55837 C 119.298,74.80212 119.19675,75.17462 119.19675,75.67462"
108
+ }),
109
+ /* @__PURE__ */ e("path", {
110
+ fill: "#10298e",
111
+ d: "M 123.588,76.84225 L 124.90425,76.641 C 124.95925,76.896 125.073,77.08975 125.24425,77.22225 C 125.4155,77.35475 125.65425,77.421 125.963,77.421 C 126.30175,77.421 126.55675,77.3585 126.728,77.23475 C 126.843,77.14725 126.9005,77.02975 126.9005,76.8835 L 126.80675,76.63725 C 126.74175,76.57475 126.5955,76.51725 126.368,76.4635 C 125.31175,76.231 124.6405,76.0185 124.358,75.82475 C 123.96675,75.55725 123.76925,75.186 123.76925,74.70975 C 123.76925,74.281 123.93925,73.91975 124.278,73.62725 C 124.618,73.33475 125.143,73.1885 125.8555,73.1885 C 126.533,73.1885 127.038,73.29975 127.36675,73.521 C 127.69675,73.741 127.92425,74.06725 128.048,74.49975 L 126.81175,74.7285 C 126.75925,74.536 126.658,74.38725 126.5105,74.286 C 126.363,74.18225 126.15175,74.131 125.878,74.131 C 125.53425,74.131 125.28675,74.17975 125.13675,74.276 L 124.988,74.54225 L 125.118,74.77975 C 125.23675,74.86725 125.64425,74.98975 126.343,75.1485 C 127.0405,75.30725 127.52925,75.50225 127.8055,75.731 C 128.07925,75.96475 128.21675,76.28975 128.21675,76.706 C 128.21675,77.161 128.02675,77.551 127.64675,77.87725 C 127.268,78.20475 126.7055,78.36725 125.963,78.36725 C 125.288,78.36725 124.75425,78.231 124.3605,77.95725 C 123.96675,77.6835 123.70925,77.31225 123.588,76.84225"
112
+ }),
113
+ /* @__PURE__ */ e("path", {
114
+ fill: "#10298e",
115
+ d: "M 130.79275,78.25562 L 128.7965,73.30062 L 130.17275,73.30062 L 131.10525,75.82937 L 131.3765,76.67437 C 131.44775,76.45937 131.49275,76.31812 131.5115,76.24937 C 131.55525,76.10937 131.6015,75.96937 131.6515,75.82937 L 132.594,73.30062 L 133.94275,73.30062 L 131.974,78.25562 L 130.79275,78.25562 z"
116
+ }),
117
+ /* @__PURE__ */ e("path", {
118
+ fill: "#10298e",
119
+ d: "M 137.68087,76.67862 L 138.98712,76.89862 C 138.81962,77.37737 138.55337,77.74112 138.19212,77.99237 C 137.82962,78.24237 137.37587,78.36737 136.83212,78.36737 C 135.96962,78.36737 135.33212,78.08612 134.91837,77.52237 C 134.59212,77.07237 134.42962,76.50362 134.42962,75.81612 C 134.42962,74.99487 134.64337,74.35112 135.07212,73.88612 C 135.50212,73.42112 136.04462,73.18862 136.70087,73.18862 C 137.43837,73.18862 138.01962,73.43237 138.44587,73.91862 C 138.87212,74.40612 139.07587,75.15112 139.05712,76.15612 L 135.77337,76.15612 C 135.78212,76.54487 135.88712,76.84737 136.08962,77.06362 C 136.29212,77.27987 136.54462,77.38737 136.84587,77.38737 C 137.05087,77.38737 137.22337,77.33237 137.36337,77.21987 C 137.50337,77.10737 137.60962,76.92737 137.68087,76.67862 M 137.75587,75.35362 C 137.74587,74.97362 137.64837,74.68612 137.46087,74.48862 C 137.27462,74.29112 137.04837,74.19237 136.78087,74.19237 C 136.49462,74.19237 136.25837,74.29612 136.07212,74.50487 C 135.88462,74.71237 135.79337,74.99612 135.79587,75.35362 L 137.75587,75.35362 z"
120
+ }),
121
+ /* @__PURE__ */ e("path", {
122
+ fill: "#10298e",
123
+ d: "M 141.4475,78.25562 L 140.13625,78.25562 L 140.13625,73.30062 L 141.35375,73.30062 L 141.35375,74.00562 C 141.5625,73.67312 141.75,73.45312 141.91625,73.34812 C 142.0825,73.24187 142.27125,73.18937 142.4825,73.18937 C 142.78125,73.18937 143.07,73.27187 143.34625,73.43562 L 142.94,74.57937 C 142.72,74.43562 142.51375,74.36437 142.325,74.36437 C 142.14125,74.36437 141.985,74.41562 141.8575,74.51687 C 141.73,74.61687 141.63,74.80062 141.5575,75.06437 C 141.48375,75.32937 141.4475,75.88187 141.4475,76.72562 L 141.4475,78.25562 z"
124
+ }),
125
+ /* @__PURE__ */ e("path", {
126
+ fill: "#10298e",
127
+ d: "M 143.93062,78.25562 L 143.93062,71.41562 L 145.24187,71.41562 L 145.24187,75.04562 L 146.77687,73.30062 L 148.39062,73.30062 L 146.69812,75.11062 L 148.51312,78.25562 L 147.09937,78.25562 L 145.85312,76.02937 L 145.24187,76.66937 L 145.24187,78.25562 L 143.93062,78.25562 z"
128
+ }),
129
+ /* @__PURE__ */ e("path", {
130
+ fill: "#10298e",
131
+ d: "M 152.22775,76.67862 L 153.534,76.89862 C 153.3665,77.37737 153.1015,77.74112 152.739,77.99237 C 152.37525,78.24237 151.92275,78.36737 151.379,78.36737 C 150.5165,78.36737 149.879,78.08612 149.46525,77.52237 C 149.139,77.07237 148.97525,76.50362 148.97525,75.81612 C 148.97525,74.99487 149.19025,74.35112 149.62025,73.88612 C 150.049,73.42112 150.5915,73.18862 151.24775,73.18862 C 151.98525,73.18862 152.5665,73.43237 152.99275,73.91862 C 153.419,74.40612 153.62275,75.15112 153.604,76.15612 L 150.319,76.15612 C 150.329,76.54487 150.43525,76.84737 150.6365,77.06362 C 150.839,77.27987 151.09025,77.38737 151.39275,77.38737 C 151.59775,77.38737 151.77025,77.33237 151.91025,77.21987 C 152.05025,77.10737 152.1565,76.92737 152.22775,76.67862 M 152.30275,75.35362 C 152.29275,74.97362 152.19525,74.68612 152.009,74.48862 C 151.82275,74.29112 151.594,74.19237 151.3265,74.19237 C 151.04025,74.19237 150.804,74.29612 150.61775,74.50487 C 150.4315,74.71237 150.34025,74.99612 150.34275,75.35362 L 152.30275,75.35362 z"
132
+ }),
133
+ /* @__PURE__ */ e("path", {
134
+ fill: "#10298e",
135
+ d: "M 156.046,71.416 L 156.046,73.931 C 156.4685,73.436 156.9735,73.1885 157.56225,73.1885 C 157.8635,73.1885 158.136,73.24475 158.3785,73.35725 C 158.621,73.4685 158.8035,73.61225 158.92725,73.786 C 159.04975,73.95975 159.1335,74.1535 159.1785,74.36475 C 159.2235,74.576 159.246,74.90475 159.246,75.34975 L 159.246,78.256 L 157.93475,78.256 L 157.93475,75.6385 C 157.93475,75.1185 157.90975,74.78975 157.861,74.6485 C 157.811,74.50975 157.7235,74.3985 157.59725,74.316 C 157.471,74.2335 157.3135,74.19225 157.1235,74.19225 C 156.906,74.19225 156.711,74.24475 156.53975,74.34975 C 156.36975,74.456 156.2435,74.616 156.16475,74.8285 C 156.08475,75.04225 156.046,75.35725 156.046,75.7735 L 156.046,78.256 L 154.73475,78.256 L 154.73475,71.416 L 156.046,71.416 z"
136
+ }),
137
+ /* @__PURE__ */ e("path", {
138
+ fill: "#10298e",
139
+ d: "M 161.89775,78.25562 L 160.5865,78.25562 L 160.5865,73.30062 L 161.804,73.30062 L 161.804,74.00562 C 162.01275,73.67312 162.20025,73.45312 162.3665,73.34812 C 162.53275,73.24187 162.7215,73.18937 162.934,73.18937 C 163.2315,73.18937 163.519,73.27187 163.7965,73.43562 L 163.39025,74.57937 C 163.17025,74.43562 162.964,74.36437 162.77525,74.36437 C 162.5915,74.36437 162.43525,74.41562 162.30775,74.51687 C 162.18025,74.61687 162.08025,74.80062 162.00775,75.06437 C 161.934,75.32937 161.89775,75.88187 161.89775,76.72562 L 161.89775,78.25562 z"
140
+ }),
141
+ /* @__PURE__ */ e("path", {
142
+ fill: "#10298e",
143
+ d: "M 163.96612,76.84225 L 165.28112,76.641 C 165.33737,76.896 165.45112,77.08975 165.62237,77.22225 C 165.79362,77.35475 166.03237,77.421 166.34112,77.421 C 166.67987,77.421 166.93487,77.3585 167.10612,77.23475 C 167.22112,77.14725 167.27862,77.02975 167.27862,76.8835 L 167.18487,76.63725 C 167.11987,76.57475 166.97362,76.51725 166.74612,76.4635 C 165.68862,76.231 165.01862,76.0185 164.73612,75.82475 C 164.34487,75.55725 164.14737,75.186 164.14737,74.70975 C 164.14737,74.281 164.31737,73.91975 164.65612,73.62725 C 164.99612,73.33475 165.52112,73.1885 166.23362,73.1885 C 166.91112,73.1885 167.41487,73.29975 167.74487,73.521 C 168.07487,73.741 168.30237,74.06725 168.42612,74.49975 L 167.18987,74.7285 C 167.13737,74.536 167.03612,74.38725 166.88862,74.286 C 166.74112,74.18225 166.52987,74.131 166.25612,74.131 C 165.91237,74.131 165.66487,74.17975 165.51487,74.276 L 165.36612,74.54225 L 165.49612,74.77975 C 165.61487,74.86725 166.02237,74.98975 166.72112,75.1485 C 167.41862,75.30725 167.90737,75.50225 168.18362,75.731 C 168.45737,75.96475 168.59487,76.28975 168.59487,76.706 C 168.59487,77.161 168.40487,77.551 168.02487,77.87725 C 167.64612,78.20475 167.08362,78.36725 166.34112,78.36725 C 165.66487,78.36725 165.13237,78.231 164.73862,77.95725 C 164.34487,77.6835 164.08737,77.31225 163.96612,76.84225"
144
+ }),
145
+ /* @__PURE__ */ e("path", {
146
+ fill: "#10298e",
147
+ d: "M 171.06375,78.25562 L 169.7525,78.25562 L 169.7525,73.30062 L 170.97,73.30062 L 170.97,74.00562 C 171.17875,73.67312 171.36625,73.45312 171.5325,73.34812 C 171.69875,73.24187 171.8875,73.18937 172.1,73.18937 C 172.39875,73.18937 172.68625,73.27187 172.9625,73.43562 L 172.55625,74.57937 C 172.33625,74.43562 172.13125,74.36437 171.94125,74.36437 C 171.7575,74.36437 171.6025,74.41562 171.47375,74.51687 C 171.3475,74.61687 171.24625,74.80062 171.17375,75.06437 C 171.1,75.32937 171.06375,75.88187 171.06375,76.72562 L 171.06375,78.25562 z"
148
+ }),
149
+ /* @__PURE__ */ e("path", {
150
+ fill: "#10298e",
151
+ d: "M 174.5735,74.8125 L 173.3835,74.5975 C 173.5185,74.11875 173.7485,73.76375 174.07475,73.53375 C 174.401,73.30375 174.886,73.18875 175.52975,73.18875 C 176.11475,73.18875 176.551,73.2575 176.836,73.39625 C 177.12225,73.535 177.32475,73.71125 177.441,73.92375 C 177.55725,74.1375 177.61475,74.52875 177.61475,75.09625 L 177.601,76.6275 C 177.601,77.06375 177.62225,77.38375 177.66475,77.59 C 177.70725,77.7975 177.78475,78.01875 177.89975,78.25625 L 176.6035,78.25625 C 176.5685,78.16875 176.52725,78.04 176.47725,77.86875 L 176.431,77.715 C 176.20725,77.9325 175.96725,78.09625 175.71225,78.205 C 175.45725,78.3125 175.18475,78.3675 174.896,78.3675 C 174.386,78.3675 173.9835,78.23 173.68975,77.9525 C 173.396,77.67625 173.2485,77.32625 173.2485,76.9025 C 173.2485,76.6225 173.316,76.37375 173.44975,76.15375 C 173.5835,75.935 173.76975,75.76625 174.01225,75.65 C 174.25225,75.53375 174.59975,75.43125 175.05475,75.345 C 175.66725,75.22875 176.091,75.1225 176.32725,75.0225 L 176.32725,74.89125 C 176.32725,74.64 176.266,74.46 176.141,74.3525 C 176.01725,74.24625 175.78225,74.1925 175.43725,74.1925 C 175.2035,74.1925 175.021,74.2375 174.891,74.33 C 174.75975,74.42125 174.65475,74.5825 174.5735,74.8125 M 176.32725,75.87625 C 176.15975,75.9325 175.8935,76 175.52975,76.0775 C 175.166,76.155 174.9285,76.23125 174.816,76.305 C 174.646,76.42625 174.55975,76.58125 174.55975,76.7675 C 174.55975,76.95125 174.6285,77.11 174.76475,77.2425 C 174.90225,77.3775 175.076,77.44375 175.28725,77.44375 C 175.5235,77.44375 175.74975,77.36625 175.96475,77.21 C 176.12225,77.0925 176.22725,76.9475 176.27725,76.77625 C 176.311,76.66375 176.32725,76.45125 176.32725,76.1375 L 176.32725,75.87625 z"
152
+ }),
153
+ /* @__PURE__ */ e("path", {
154
+ fill: "#10298e",
155
+ d: "M 182.236,78.25562 L 182.236,77.51437 C 182.056,77.77812 181.8185,77.98687 181.52475,78.13812 C 181.231,78.29062 180.921,78.36812 180.5935,78.36812 C 180.261,78.36812 179.96225,78.29437 179.6985,78.14812 C 179.4335,78.00187 179.24225,77.79687 179.12475,77.53312 C 179.006,77.26812 178.946,76.90312 178.946,76.43562 L 178.946,73.30062 L 180.25725,73.30062 L 180.25725,75.57812 C 180.25725,76.27437 180.281,76.70062 180.32975,76.85812 C 180.3785,77.01562 180.466,77.13937 180.5935,77.23187 C 180.721,77.32312 180.8835,77.36937 181.0785,77.36937 C 181.3035,77.36937 181.5035,77.30812 181.681,77.18562 C 181.85725,77.06187 181.97975,76.90937 182.04475,76.72812 C 182.10975,76.54562 182.14225,76.10062 182.14225,75.39062 L 182.14225,73.30062 L 183.4535,73.30062 L 183.4535,78.25562 L 182.236,78.25562 z"
156
+ }),
157
+ /* @__PURE__ */ e("path", {
158
+ fill: "#10298e",
159
+ d: "M 184.78025,73.30075 L 185.98775,73.30075 L 185.98775,73.977 C 186.4215,73.452 186.93525,73.18825 187.53275,73.18825 C 187.85025,73.18825 188.12525,73.2545 188.35775,73.3845 C 188.59275,73.51575 188.78275,73.71325 188.93275,73.977 C 189.15025,73.71325 189.38525,73.51575 189.63775,73.3845 C 189.889,73.2545 190.15775,73.18825 190.444,73.18825 C 190.80775,73.18825 191.11525,73.26325 191.36775,73.41075 C 191.62025,73.55825 191.80775,73.77575 191.93275,74.062 C 192.02275,74.27325 192.06775,74.61575 192.06775,75.08825 L 192.06775,78.25575 L 190.7565,78.25575 L 190.7565,75.4245 C 190.7565,74.932 190.7115,74.61575 190.6215,74.472 C 190.50025,74.28575 190.314,74.192 190.0615,74.192 C 189.87775,74.192 189.70525,74.24825 189.544,74.36075 C 189.38275,74.472 189.26525,74.63575 189.194,74.852 C 189.12275,75.06825 189.0865,75.4095 189.0865,75.87575 L 189.0865,78.25575 L 187.77525,78.25575 L 187.77525,75.54075 C 187.77525,75.05825 187.75275,74.747 187.70525,74.607 C 187.659,74.467 187.5865,74.36325 187.489,74.2945 C 187.39025,74.227 187.25775,74.192 187.089,74.192 C 186.88775,74.192 186.70525,74.24575 186.544,74.35575 C 186.3815,74.4645 186.2665,74.622 186.1965,74.827 C 186.1265,75.032 186.0915,75.372 186.0915,75.84825 L 186.0915,78.25575 L 184.78025,78.25575 L 184.78025,73.30075 z"
160
+ }),
161
+ /* @__PURE__ */ e("path", {
162
+ fill: "#10298e",
163
+ d: "M 0.05975,62.93912 L 2.031,62.74787 C 2.1485,63.40912 2.38975,63.89412 2.75225,64.20537 C 3.11475,64.51537 3.60475,64.67037 4.21975,64.67037 C 4.87225,64.67037 5.3635,64.53162 5.69475,64.25662 C 6.02475,63.98037 6.191,63.65787 6.191,63.28787 C 6.191,63.05162 6.121,62.84912 5.98225,62.68162 C 5.84225,62.51662 5.59975,62.37162 5.2535,62.24787 C 5.016,62.16537 4.476,62.01912 3.631,61.81037 C 2.546,61.54037 1.7835,61.21037 1.346,60.81787 C 0.72975,60.26662 0.42225,59.59287 0.42225,58.79912 C 0.42225,58.28912 0.56725,57.81037 0.85725,57.36662 C 1.146,56.92037 1.5635,56.58287 2.10975,56.34912 C 2.6535,56.11662 3.31225,56.00037 4.0835,56.00037 C 5.34225,56.00037 6.28975,56.27662 6.926,56.82912 C 7.56225,57.38037 7.89725,58.11787 7.9285,59.03912 L 5.9035,59.12787 C 5.816,58.61162 5.631,58.24162 5.346,58.01537 C 5.061,57.79037 4.63225,57.67662 4.06225,57.67662 C 3.47475,57.67662 3.0135,57.79787 2.681,58.04037 C 2.466,58.19412 2.3585,58.40287 2.3585,58.66287 C 2.3585,58.89912 2.4585,59.10287 2.65975,59.27162 C 2.91475,59.48662 3.536,59.70912 4.521,59.94162 C 5.506,60.17412 6.23475,60.41537 6.70725,60.66412 C 7.17975,60.91287 7.5485,61.25287 7.816,61.68287 C 8.08225,62.11537 8.216,62.64787 8.216,63.28162 C 8.216,63.85662 8.056,64.39412 7.73725,64.89662 C 7.41725,65.39787 6.966,65.77037 6.38225,66.01537 C 5.7985,66.25912 5.071,66.38162 4.19975,66.38162 C 2.931,66.38162 1.95725,66.08787 1.27725,65.50162 C 0.59725,64.91537 0.19225,64.06162 0.05975,62.93912"
164
+ }),
165
+ /* @__PURE__ */ e("path", {
166
+ fill: "#10298e",
167
+ d: "M 10.32675,56.172 L 12.24925,56.172 L 12.24925,57.95075 L 10.32675,57.95075 L 10.32675,56.172 z M 10.32675,58.93575 L 12.24925,58.93575 L 12.24925,66.20325 L 10.32675,66.20325 L 10.32675,58.93575 z"
168
+ }),
169
+ /* @__PURE__ */ e("path", {
170
+ fill: "#10298e",
171
+ d: "M 21.2505,66.20312 L 19.328,66.20312 L 19.328,62.49437 C 19.328,61.70937 19.28675,61.20187 19.20425,60.97187 C 19.123,60.74187 18.98925,60.56187 18.80425,60.43437 C 18.61925,60.30687 18.39675,60.24312 18.13675,60.24312 C 17.80425,60.24312 17.5055,60.33437 17.2405,60.51687 C 16.9755,60.69937 16.79425,60.94062 16.69675,61.24187 C 16.598,61.54312 16.54925,62.09937 16.54925,62.91187 L 16.54925,66.20312 L 14.62675,66.20312 L 14.62675,58.93562 L 16.413,58.93562 L 16.413,60.00312 C 17.04675,59.18187 17.8455,58.77187 18.808,58.77187 C 19.23175,58.77187 19.61925,58.84812 19.9705,59.00062 C 20.32175,59.15437 20.588,59.34937 20.768,59.58562 C 20.948,59.82312 21.073,60.09312 21.14425,60.39312 C 21.2155,60.69437 21.2505,61.12562 21.2505,61.68687 L 21.2505,66.20312 z"
172
+ }),
173
+ /* @__PURE__ */ e("path", {
174
+ fill: "#10298e",
175
+ d: "M 23.44337,66.68212 L 25.63962,66.94962 C 25.67587,67.20462 25.76087,67.37962 25.89337,67.47587 C 26.07587,67.61337 26.36212,67.68087 26.75587,67.68087 C 27.25712,67.68087 27.63337,67.60587 27.88462,67.45587 C 28.05337,67.35462 28.18087,67.19337 28.26712,66.96962 C 28.32587,66.80962 28.35587,66.51587 28.35587,66.08712 L 28.35587,65.02587 C 27.78212,65.81087 27.05587,66.20337 26.18087,66.20337 C 25.20462,66.20337 24.43087,65.78962 23.86087,64.96462 C 23.41337,64.31212 23.18962,63.50087 23.18962,62.52837 C 23.18962,61.31087 23.48337,60.37962 24.06962,59.73712 C 24.65587,59.09337 25.38462,58.77212 26.25587,58.77212 C 27.15462,58.77212 27.89587,59.16587 28.47962,59.95587 L 28.47962,58.93587 L 30.27962,58.93587 L 30.27962,65.45712 C 30.27962,66.31462 30.20837,66.95587 30.06712,67.37962 C 29.92587,67.80462 29.72712,68.13712 29.47212,68.37962 C 29.21587,68.62087 28.87462,68.80962 28.44837,68.94712 C 28.02212,69.08337 27.48212,69.15212 26.83087,69.15212 C 25.59837,69.15212 24.72462,68.94087 24.20962,68.51962 C 23.69462,68.09712 23.43712,67.56212 23.43712,66.91462 L 23.44337,66.68212 z M 25.16087,62.41962 C 25.16087,63.18962 25.30962,63.75462 25.60962,64.11337 C 25.90712,64.47087 26.27587,64.64962 26.71462,64.64962 C 27.18337,64.64962 27.58087,64.46587 27.90462,64.09962 C 28.22837,63.73212 28.39087,63.18837 28.39087,62.46712 C 28.39087,61.71462 28.23587,61.15587 27.92587,60.79087 C 27.61462,60.42587 27.22212,60.24337 26.74837,60.24337 C 26.28712,60.24337 25.90712,60.42212 25.60962,60.77962 C 25.30962,61.13837 25.16087,61.68462 25.16087,62.41962"
176
+ }),
177
+ /* @__PURE__ */ e("path", {
178
+ fill: "#10298e",
179
+ d: "M 32.60175,56.172 L 34.52425,56.172 L 34.52425,66.20325 L 32.60175,66.20325 L 32.60175,56.172 z"
180
+ }),
181
+ /* @__PURE__ */ e("path", {
182
+ fill: "#10298e",
183
+ d: "M 41.124,63.89025 L 43.04025,64.2115 C 42.794,64.914 42.404,65.449 41.87275,65.8165 C 41.3415,66.184 40.6765,66.36775 39.879,66.36775 C 38.61525,66.36775 37.68025,65.954 37.07275,65.129 C 36.594,64.46775 36.35525,63.63275 36.35525,62.624 C 36.35525,61.42025 36.669,60.4765 37.299,59.794 C 37.929,59.11275 38.724,58.7715 39.6865,58.7715 C 40.76775,58.7715 41.6215,59.129 42.2465,59.84275 C 42.8715,60.5565 43.17025,61.65025 43.14275,63.124 L 38.32525,63.124 C 38.339,63.694 38.494,64.13775 38.79025,64.45525 C 39.0865,64.7715 39.4565,64.93025 39.899,64.93025 C 40.20025,64.93025 40.454,64.84775 40.659,64.684 C 40.864,64.52025 41.019,64.25525 41.124,63.89025 M 41.234,61.9465 C 41.22025,61.39025 41.0765,60.9665 40.80275,60.67775 C 40.529,60.38775 40.19525,60.24275 39.80275,60.24275 C 39.384,60.24275 39.0365,60.3965 38.76275,60.7015 C 38.489,61.0065 38.35525,61.42275 38.359,61.9465 L 41.234,61.9465 z"
184
+ }),
185
+ /* @__PURE__ */ e("path", {
186
+ fill: "#10298e",
187
+ d: "M 49.45775,66.20312 L 49.45775,56.17187 L 56.89525,56.17187 L 56.89525,57.86812 L 51.48275,57.86812 L 51.48275,60.09312 L 56.519,60.09312 L 56.519,61.78312 L 51.48275,61.78312 L 51.48275,64.51312 L 57.08775,64.51312 L 57.08775,66.20312 L 49.45775,66.20312 z"
188
+ }),
189
+ /* @__PURE__ */ e("path", {
190
+ fill: "#10298e",
191
+ d: "M 63.99437,66.20312 L 63.99437,65.11562 C 63.72937,65.50312 63.38187,65.80812 62.95062,66.03187 C 62.51937,66.25562 62.06437,66.36687 61.58562,66.36687 C 61.09687,66.36687 60.65937,66.26062 60.27187,66.04562 C 59.88437,65.83062 59.60312,65.53062 59.43062,65.14187 C 59.25687,64.75437 59.17062,64.21812 59.17062,63.53437 L 59.17062,58.93562 L 61.09312,58.93562 L 61.09312,62.27562 C 61.09312,63.29687 61.12812,63.92312 61.19937,64.15437 C 61.26937,64.38437 61.39812,64.56687 61.58562,64.70187 C 61.77312,64.83562 62.01062,64.90312 62.29687,64.90312 C 62.62562,64.90312 62.92062,64.81312 63.18062,64.63312 C 63.44062,64.45312 63.61812,64.22812 63.71437,63.96187 C 63.80937,63.69437 63.85812,63.04187 63.85812,62.00187 L 63.85812,58.93562 L 65.78062,58.93562 L 65.78062,66.20312 L 63.99437,66.20312 z"
192
+ }),
193
+ /* @__PURE__ */ e("path", {
194
+ fill: "#10298e",
195
+ d: "M 70.03275,66.20312 L 68.11025,66.20312 L 68.11025,58.93562 L 69.8965,58.93562 L 69.8965,59.96937 C 70.2015,59.48062 70.4765,59.15937 70.72025,59.00437 C 70.964,58.84937 71.2415,58.77187 71.5515,58.77187 C 71.99025,58.77187 72.4115,58.89312 72.81775,59.13437 L 72.22275,60.81062 C 71.89775,60.60187 71.59775,60.49687 71.319,60.49687 C 71.05025,60.49687 70.8215,60.57062 70.63525,60.71937 C 70.44775,60.86687 70.30025,61.13562 70.194,61.52312 C 70.0865,61.91062 70.03275,62.72312 70.03275,63.95812 L 70.03275,66.20312 z"
196
+ }),
197
+ /* @__PURE__ */ e("path", {
198
+ fill: "#10298e",
199
+ d: "M 73.6215,62.467 C 73.6215,61.82825 73.779,61.21075 74.094,60.61325 C 74.409,60.0145 74.854,59.55825 75.4315,59.2445 C 76.00775,58.9295 76.65275,58.772 77.364,58.772 C 78.464,58.772 79.36525,59.1295 80.06775,59.84325 C 80.769,60.557 81.1215,61.45825 81.1215,62.5495 C 81.1215,63.64825 80.7665,64.5595 80.0565,65.282 C 79.34775,66.00575 78.45525,66.367 77.37775,66.367 C 76.7115,66.367 76.0765,66.217 75.47275,65.91575 C 74.86775,65.6145 74.409,65.17325 74.094,64.592 C 73.779,64.0095 73.6215,63.302 73.6215,62.467 M 75.59275,62.5695 C 75.59275,63.29075 75.76275,63.842 76.10525,64.22575 C 76.44775,64.60825 76.869,64.80075 77.3715,64.80075 C 77.87275,64.80075 78.294,64.60825 78.634,64.22575 C 78.97275,63.842 79.144,63.28575 79.144,62.55575 C 79.144,61.8445 78.97275,61.297 78.634,60.91325 C 78.294,60.53075 77.87275,60.3395 77.3715,60.3395 C 76.869,60.3395 76.44775,60.53075 76.10525,60.91325 C 75.76275,61.297 75.59275,61.84825 75.59275,62.5695"
200
+ }),
201
+ /* @__PURE__ */ e("path", {
202
+ fill: "#10298e",
203
+ d: "M 87.37425,66.20312 L 87.37425,56.17187 L 90.62425,56.17187 C 91.85675,56.17187 92.65925,56.22187 93.033,56.32187 C 93.608,56.47312 94.08925,56.80062 94.47675,57.30437 C 94.86425,57.80812 95.058,58.45937 95.058,59.25812 C 95.058,59.87312 94.94675,60.39062 94.723,60.81062 C 94.49925,61.23062 94.2155,61.56062 93.87175,61.80062 C 93.52675,62.03937 93.17675,62.19812 92.8205,62.27562 C 92.338,62.37062 91.63675,62.41937 90.7205,62.41937 L 89.39925,62.41937 L 89.39925,66.20312 L 87.37425,66.20312 z M 89.39925,57.86812 L 89.39925,60.71562 L 90.508,60.71562 C 91.30675,60.71562 91.8405,60.66312 92.10925,60.55812 C 92.378,60.45312 92.58925,60.28812 92.74175,60.06562 C 92.8955,59.84187 92.97175,59.58187 92.97175,59.28562 C 92.97175,58.92062 92.86425,58.61937 92.6505,58.38187 C 92.4355,58.14437 92.16425,57.99562 91.8355,57.93687 C 91.59425,57.89187 91.108,57.86812 90.378,57.86812 L 89.39925,57.86812 z"
204
+ }),
205
+ /* @__PURE__ */ e("path", {
206
+ fill: "#10298e",
207
+ d: "M 98.56487,61.15325 L 96.82112,60.83825 C 97.01612,60.13575 97.35487,59.61575 97.83362,59.27825 C 98.31237,58.94075 99.02362,58.772 99.96862,58.772 C 100.82487,58.772 101.46362,58.87325 101.88362,59.077 C 102.30362,59.2795 102.59862,59.537 102.76987,59.8495 C 102.94112,60.162 103.02612,60.73575 103.02612,61.57075 L 103.00612,63.8145 C 103.00612,64.4545 103.03737,64.9245 103.09862,65.22825 C 103.15987,65.53075 103.27487,65.857 103.44487,66.20325 L 101.54237,66.20325 C 101.49112,66.07575 101.42987,65.88575 101.35612,65.63575 C 101.32487,65.522 101.30237,65.44575 101.28862,65.4095 C 100.95987,65.72825 100.60862,65.96825 100.23487,66.12825 C 99.86112,66.28825 99.46237,66.367 99.03737,66.367 C 98.28862,66.367 97.69987,66.1645 97.26862,65.75825 C 96.83737,65.352 96.62237,64.8395 96.62237,64.21825 C 96.62237,63.80825 96.71987,63.442 96.91612,63.12075 C 97.11112,62.7995 97.38612,62.55325 97.74112,62.38075 C 98.09362,62.21075 98.60362,62.06075 99.26987,61.93325 C 100.16862,61.7645 100.79112,61.607 101.13737,61.46075 L 101.13737,61.2695 C 101.13737,60.8995 101.04737,60.637 100.86362,60.4795 C 100.68112,60.322 100.33737,60.24325 99.83112,60.24325 C 99.48862,60.24325 99.22112,60.31075 99.02987,60.44575 C 98.83862,60.5795 98.68362,60.81575 98.56487,61.15325 M 101.13737,62.71325 C 100.89112,62.79575 100.50237,62.89325 99.96862,63.00825 C 99.43487,63.122 99.08487,63.23325 98.92112,63.34325 C 98.66987,63.52075 98.54487,63.747 98.54487,64.02075 C 98.54487,64.2895 98.64487,64.522 98.84612,64.71825 C 99.04612,64.9145 99.30112,65.012 99.61237,65.012 C 99.95862,65.012 100.28862,64.89825 100.60362,64.67075 C 100.83612,64.497 100.98987,64.2845 101.06362,64.0345 C 101.11237,63.8695 101.13737,63.557 101.13737,63.097 L 101.13737,62.71325 z"
208
+ }),
209
+ /* @__PURE__ */ e("path", {
210
+ fill: "#10298e",
211
+ d: "M 104.43212,58.93625 L 106.47837,58.93625 L 108.21712,64.09625 L 109.91337,58.93625 L 111.90462,58.93625 L 109.33837,65.93 L 108.87962,67.195 C 108.71087,67.62 108.54962,67.94375 108.39837,68.1675 C 108.24462,68.39 108.06962,68.5725 107.87087,68.71125 C 107.67212,68.85 107.42837,68.95875 107.13837,69.03625 C 106.84837,69.11375 106.52212,69.1525 106.15587,69.1525 C 105.78712,69.1525 105.42462,69.11375 105.06962,69.03625 L 104.89712,67.53125 C 105.19837,67.59 105.46962,67.62 105.71212,67.62 C 106.15837,67.62 106.48962,67.48875 106.70337,67.22625 C 106.91837,66.96375 107.08212,66.63 107.19712,66.22375 L 104.43212,58.93625 z"
212
+ }),
213
+ /* @__PURE__ */ e("path", {
214
+ fill: "#10298e",
215
+ d: "M 113.41287,58.93625 L 115.18537,58.93625 L 115.18537,59.92875 C 115.81912,59.1575 116.57412,58.7725 117.45037,58.7725 C 117.91537,58.7725 118.31912,58.8675 118.66162,59.05875 C 119.00287,59.25125 119.28412,59.54125 119.50287,59.92875 C 119.82162,59.54125 120.16662,59.25125 120.53662,59.05875 C 120.90537,58.8675 121.30037,58.7725 121.72037,58.7725 C 122.25412,58.7725 122.70537,58.88 123.07412,59.09625 C 123.44412,59.31375 123.72037,59.63125 123.90287,60.05125 C 124.03412,60.3625 124.10162,60.86375 124.10162,61.5575 L 124.10162,66.20375 L 122.17787,66.20375 L 122.17787,62.05 C 122.17787,61.32875 122.11287,60.86375 121.98037,60.65375 C 121.80162,60.38 121.52787,60.24375 121.15912,60.24375 C 120.88912,60.24375 120.63662,60.325 120.39912,60.49 C 120.16162,60.65375 119.99162,60.895 119.88662,61.21125 C 119.78037,61.52875 119.72912,62.02875 119.72912,62.71375 L 119.72912,66.20375 L 117.80537,66.20375 L 117.80537,62.22125 C 117.80537,61.51375 117.77162,61.0575 117.70287,60.8525 C 117.63537,60.6475 117.52912,60.49375 117.38537,60.39375 C 117.24162,60.29375 117.04662,60.24375 116.80037,60.24375 C 116.50287,60.24375 116.23662,60.3225 115.99912,60.4825 C 115.76287,60.6425 115.59162,60.8725 115.49037,61.17375 C 115.38662,61.475 115.33537,61.975 115.33537,62.6725 L 115.33537,66.20375 L 113.41287,66.20375 L 113.41287,58.93625 z"
216
+ }),
217
+ /* @__PURE__ */ e("path", {
218
+ fill: "#10298e",
219
+ d: "M 130.64587,63.89025 L 132.56212,64.2115 C 132.31587,64.914 131.92587,65.449 131.39462,65.8165 C 130.86337,66.184 130.19837,66.36775 129.40087,66.36775 C 128.13587,66.36775 127.20212,65.954 126.59462,65.129 C 126.11587,64.46775 125.87587,63.63275 125.87587,62.624 C 125.87587,61.42025 126.19087,60.4765 126.82087,59.794 C 127.45087,59.11275 128.24587,58.7715 129.20837,58.7715 C 130.28962,58.7715 131.14337,59.129 131.76837,59.84275 C 132.39212,60.5565 132.69212,61.65025 132.66462,63.124 L 127.84712,63.124 C 127.86087,63.694 128.01587,64.13775 128.31212,64.45525 C 128.60962,64.7715 128.97837,64.93025 129.42087,64.93025 C 129.72212,64.93025 129.97587,64.84775 130.18087,64.684 C 130.38587,64.52025 130.54087,64.25525 130.64587,63.89025 M 130.75587,61.9465 C 130.74212,61.39025 130.59837,60.9665 130.32462,60.67775 C 130.05087,60.38775 129.71712,60.24275 129.32462,60.24275 C 128.90587,60.24275 128.55837,60.3965 128.28462,60.7015 C 128.01087,61.0065 127.87587,61.42275 127.88087,61.9465 L 130.75587,61.9465 z"
220
+ }),
221
+ /* @__PURE__ */ e("path", {
222
+ fill: "#10298e",
223
+ d: "M 141.262,66.20312 L 139.3395,66.20312 L 139.3395,62.49437 C 139.3395,61.70937 139.29825,61.20187 139.21575,60.97187 C 139.13325,60.74187 139.00075,60.56187 138.81575,60.43437 C 138.63075,60.30687 138.40825,60.24312 138.14825,60.24312 C 137.81575,60.24312 137.517,60.33437 137.252,60.51687 C 136.987,60.69937 136.80575,60.94062 136.70825,61.24187 C 136.61075,61.54312 136.56075,62.09937 136.56075,62.91187 L 136.56075,66.20312 L 134.63825,66.20312 L 134.63825,58.93562 L 136.4245,58.93562 L 136.4245,60.00312 C 137.05825,59.18187 137.857,58.77187 138.8195,58.77187 C 139.24325,58.77187 139.63075,58.84812 139.982,59.00062 C 140.33325,59.15437 140.59825,59.34937 140.7795,59.58562 C 140.9595,59.82312 141.08575,60.09312 141.15575,60.39312 C 141.227,60.69437 141.262,61.12562 141.262,61.68687 L 141.262,66.20312 z"
224
+ }),
225
+ /* @__PURE__ */ e("path", {
226
+ fill: "#10298e",
227
+ d: "M 146.965,58.93625 L 146.965,60.46875 L 145.65125,60.46875 L 145.65125,63.3975 C 145.65125,63.99 145.66375,64.33625 145.68875,64.43375 L 145.86,64.6775 C 145.94875,64.74125 146.05625,64.7725 146.185,64.7725 C 146.3625,64.7725 146.62,64.71125 146.9575,64.58875 L 147.12125,66.08 C 146.675,66.27125 146.16875,66.3675 145.6025,66.3675 C 145.25625,66.3675 144.94375,66.30875 144.66625,66.19375 C 144.3875,66.07625 144.18375,65.92625 144.05375,65.74125 C 143.92375,65.55625 143.8325,65.30625 143.7825,64.9925 C 143.74125,64.76875 143.72125,64.3175 143.72125,63.6375 L 143.72125,60.46875 L 142.83875,60.46875 L 142.83875,58.93625 L 143.72125,58.93625 L 143.72125,57.4925 L 145.65125,56.37 L 145.65125,58.93625 L 146.965,58.93625 z"
228
+ }),
229
+ /* @__PURE__ */ e("path", {
230
+ fill: "#10298e",
231
+ d: "M 148.0425,64.12975 L 149.9725,63.836 C 150.05375,64.20975 150.22,64.4935 150.47125,64.68725 C 150.7225,64.881 151.07375,64.9785 151.525,64.9785 C 152.0225,64.9785 152.39625,64.88725 152.6475,64.70475 C 152.81625,64.57725 152.90125,64.406 152.90125,64.191 C 152.90125,64.04475 152.855,63.92475 152.76375,63.8285 C 152.66875,63.73725 152.4525,63.6535 152.12125,63.576 C 150.56875,63.2335 149.58625,62.921 149.17125,62.6385 C 148.59625,62.246 148.30875,61.701 148.30875,61.00225 C 148.30875,60.3735 148.5575,59.8435 149.055,59.41475 C 149.55125,58.986 150.3225,58.77225 151.36875,58.77225 C 152.3625,58.77225 153.10125,58.9335 153.585,59.25725 C 154.0675,59.58225 154.40125,60.061 154.58375,60.69475 L 152.77,61.02975 C 152.6925,60.74725 152.54625,60.531 152.32875,60.37975 C 152.1125,60.22975 151.80375,60.15475 151.40125,60.15475 C 150.895,60.15475 150.53375,60.22475 150.31375,60.366 C 150.1675,60.466 150.095,60.596 150.095,60.756 C 150.095,60.8935 150.15875,61.00975 150.2875,61.10475 C 150.46,61.23225 151.05875,61.4135 152.0825,61.646 C 153.10625,61.8785 153.82125,62.1635 154.22875,62.501 C 154.62875,62.8435 154.83,63.31975 154.83,63.931 C 154.83,64.59725 154.5525,65.16975 153.99625,65.6485 C 153.43875,66.12725 152.615,66.36725 151.525,66.36725 C 150.535,66.36725 149.7525,66.166 149.175,65.76475 C 148.5975,65.3635 148.22,64.8185 148.0425,64.12975"
232
+ }),
233
+ /* @__PURE__ */ e("path", {
234
+ fill: "#10298e",
235
+ d: "M 169.78725,66.20312 L 167.5835,66.20312 L 166.7085,63.92437 L 162.6985,63.92437 L 161.86975,66.20312 L 159.72225,66.20312 L 163.6285,56.17187 L 165.771,56.17187 L 169.78725,66.20312 z M 166.0585,62.23437 L 164.676,58.51187 L 163.321,62.23437 L 166.0585,62.23437 z"
236
+ }),
237
+ /* @__PURE__ */ e("path", {
238
+ fill: "#10298e",
239
+ d: "M 173.10912,66.20312 L 171.18662,66.20312 L 171.18662,58.93562 L 172.97287,58.93562 L 172.97287,59.96937 C 173.27787,59.48062 173.55287,59.15937 173.79662,59.00437 C 174.04037,58.84937 174.31787,58.77187 174.62787,58.77187 C 175.06662,58.77187 175.48787,58.89312 175.89412,59.13437 L 175.29912,60.81062 C 174.97412,60.60187 174.67412,60.49687 174.39537,60.49687 C 174.12662,60.49687 173.89787,60.57062 173.71162,60.71937 C 173.52412,60.86687 173.37662,61.13562 173.26912,61.52312 C 173.16287,61.91062 173.10912,62.72312 173.10912,63.95812 L 173.10912,66.20312 z"
240
+ }),
241
+ /* @__PURE__ */ e("path", {
242
+ fill: "#10298e",
243
+ d: "M 181.35087,63.89025 L 183.26712,64.2115 C 183.02087,64.914 182.63212,65.449 182.10087,65.8165 C 181.56837,66.184 180.90337,66.36775 180.10587,66.36775 C 178.84212,66.36775 177.90712,65.954 177.29962,65.129 C 176.82087,64.46775 176.58087,63.63275 176.58087,62.624 C 176.58087,61.42025 176.89587,60.4765 177.52587,59.794 C 178.15462,59.11275 178.95212,58.7715 179.91337,58.7715 C 180.99462,58.7715 181.84837,59.129 182.47337,59.84275 C 183.09837,60.5565 183.39712,61.65025 183.36962,63.124 L 178.55212,63.124 C 178.56587,63.694 178.72087,64.13775 179.01712,64.45525 C 179.31337,64.7715 179.68337,64.93025 180.12587,64.93025 C 180.42712,64.93025 180.68087,64.84775 180.88587,64.684 C 181.09087,64.52025 181.24587,64.25525 181.35087,63.89025 M 181.46087,61.9465 C 181.44712,61.39025 181.30337,60.9665 181.02962,60.67775 C 180.75587,60.38775 180.42212,60.24275 180.02962,60.24275 C 179.61087,60.24275 179.26337,60.3965 178.98962,60.7015 C 178.71587,61.0065 178.58212,61.42275 178.58587,61.9465 L 181.46087,61.9465 z"
244
+ }),
245
+ /* @__PURE__ */ e("path", {
246
+ fill: "#10298e",
247
+ d: "M 186.79325,61.15325 L 185.0495,60.83825 C 185.2445,60.13575 185.58325,59.61575 186.062,59.27825 C 186.54075,58.94075 187.252,58.772 188.197,58.772 C 189.05325,58.772 189.692,58.87325 190.11325,59.077 C 190.532,59.2795 190.827,59.537 190.99825,59.8495 C 191.1695,60.162 191.2545,60.73575 191.2545,61.57075 L 191.2345,63.8145 C 191.2345,64.4545 191.26575,64.9245 191.327,65.22825 C 191.38825,65.53075 191.50325,65.857 191.67325,66.20325 L 189.77075,66.20325 C 189.7195,66.07575 189.65825,65.88575 189.58575,65.63575 C 189.55325,65.522 189.53075,65.44575 189.517,65.4095 C 189.18825,65.72825 188.837,65.96825 188.46325,66.12825 C 188.0895,66.28825 187.69075,66.367 187.26575,66.367 C 186.517,66.367 185.92825,66.1645 185.497,65.75825 C 185.06575,65.352 184.8495,64.8395 184.8495,64.21825 C 184.8495,63.80825 184.94825,63.442 185.1445,63.12075 C 185.34075,62.7995 185.6145,62.55325 185.9695,62.38075 C 186.322,62.21075 186.832,62.06075 187.49825,61.93325 C 188.397,61.7645 189.0195,61.607 189.36575,61.46075 L 189.36575,61.2695 C 189.36575,60.8995 189.27575,60.637 189.092,60.4795 C 188.9095,60.322 188.56575,60.24325 188.0595,60.24325 C 187.71825,60.24325 187.45075,60.31075 187.25825,60.44575 C 187.067,60.5795 186.912,60.81575 186.79325,61.15325 M 189.36575,62.71325 C 189.1195,62.79575 188.73075,62.89325 188.197,63.00825 C 187.66325,63.122 187.31325,63.23325 187.1495,63.34325 C 186.89825,63.52075 186.77325,63.747 186.77325,64.02075 C 186.77325,64.2895 186.87325,64.522 187.0745,64.71825 C 187.2745,64.9145 187.5295,65.012 187.84075,65.012 C 188.187,65.012 188.51825,64.89825 188.832,64.67075 C 189.06575,64.497 189.21825,64.2845 189.292,64.0345 C 189.34075,63.8695 189.36575,63.557 189.36575,63.097 L 189.36575,62.71325 z"
248
+ }),
249
+ /* @__PURE__ */ e("path", {
250
+ fill: "#10298e",
251
+ d: "M 42.6875,16.7485 L 29.54125,16.7485 C 29.54125,14.591 29.2875,13.1435 28.7825,12.406 C 28,11.316 25.84125,10.76975 22.3075,10.76975 C 18.875,10.76975 16.6,11.0835 15.49,11.71225 C 14.38,12.3435 13.82375,13.71475 13.82375,15.826 C 13.82375,17.73725 14.31625,18.99725 15.3025,19.59975 C 16.00875,20.0285 16.9425,20.27975 18.105,20.35475 L 20.75625,20.54225 C 26.43875,20.9185 29.9875,21.18475 31.4025,21.336 C 35.89625,21.7885 39.15375,22.9835 41.175,24.91975 C 42.765,26.431 43.71375,28.406 44.01625,30.8435 C 44.19375,32.30225 44.28125,33.9535 44.28125,35.78725 C 44.28125,40.01475 43.8775,43.10975 43.07125,45.071 C 41.6075,48.671 38.31875,50.94475 33.2025,51.89975 C 31.05875,52.3035 27.78,52.50475 23.36875,52.50475 C 16.00625,52.50475 10.87625,52.06725 7.97875,51.186 C 4.42375,50.10725 2.07875,47.921 0.945,44.62975 C 0.3125,42.79725 0,39.74475 0,35.47225 L 13.14625,35.47225 C 13.14625,35.9485 13.1475,36.3135 13.1475,36.56475 C 13.1475,38.84475 13.8025,40.30975 15.11125,40.9635 C 16.0175,41.4135 17.11125,41.64975 18.3975,41.6785 L 23.23125,41.6785 C 25.6975,41.6785 27.27125,41.55225 27.95,41.2985 C 29.15875,40.8235 29.9525,40.0585 30.33125,38.99975 C 30.5325,38.34725 30.6325,37.50475 30.6325,36.47225 C 30.6325,34.161 29.78875,32.75475 28.10375,32.24975 C 27.4725,32.051 24.5425,31.77225 19.31,31.421 C 15.1075,31.121 12.18875,30.83225 10.555,30.55225 C 6.25125,29.74725 3.3825,28.091 1.95125,25.57725 C 0.6925,23.44225 0.06375,20.211 0.06375,15.88725 C 0.06375,12.596 0.40375,9.956 1.08375,7.971 C 1.76375,5.98475 2.86,4.47725 4.3725,3.446 C 6.58875,1.86225 9.425,0.9335 12.87625,0.656 C 15.74875,0.40475 18.935,0.27725 22.44,0.27725 C 27.9575,0.27725 31.89,0.59475 34.23375,1.2235 C 39.955,2.761 42.815,7.066 42.815,14.141 C 42.815,14.721 42.7725,15.5885 42.6875,16.7485"
252
+ }),
253
+ /* @__PURE__ */ e("path", {
254
+ fill: "#10298e",
255
+ d: "M 100.49825,52.50525 L 100.49825,0.00025 L 121.0945,0.00025 L 124.327,0.00025 L 126.82575,0.00025 C 130.437,0.00025 133.192,0.294 135.08575,0.884 C 139.41575,2.24025 142.32075,5.019 143.8095,9.2165 C 144.577,11.42025 144.962,14.73775 144.962,19.16775 C 144.962,24.494 144.53575,28.32025 143.692,30.6515 C 142.00325,35.259 138.52825,37.914 133.2795,38.6015 C 132.662,38.70525 130.03575,38.7965 125.3995,38.8715 L 123.0545,38.949 L 114.6295,38.949 L 114.6295,52.50525 L 100.49825,52.50525 z M 114.6295,26.769 L 123.43825,26.769 C 126.232,26.669 127.93075,26.454 128.542,26.11775 C 129.377,25.659 129.93825,24.739 130.217,23.36025 C 130.39575,22.44275 130.4845,21.07775 130.4845,19.26525 C 130.4845,17.044 130.307,15.39775 129.95075,14.32275 C 129.44325,12.8165 128.22575,11.90025 126.29825,11.5665 C 125.91575,11.5165 125.00325,11.489 123.557,11.489 L 114.6295,11.489 L 114.6295,26.769 z"
256
+ }),
257
+ /* @__PURE__ */ e("path", {
258
+ fill: "#10298e",
259
+ d: "M 175.12587,43.43125 L 156.23212,43.43125 L 153.69337,52.505 L 139.07337,52.505 L 154.84962,0 L 176.16587,0 L 192.13462,52.505 L 177.82212,52.505 L 175.12587,43.43125 z M 172.31962,33.2025 L 165.69837,10.4425 L 159.27337,33.2025 L 172.31962,33.2025 z"
260
+ }),
261
+ /* @__PURE__ */ e("path", {
262
+ fill: "#ffbe00",
263
+ d: "M 80.99412,7.38675 C 86.82162,7.38675 92.02412,10.07175 95.44287,14.27675 L 98.48912,7.7455 C 93.72537,3.243 87.24162,0.46675 80.09037,0.46675 C 68.95537,0.46675 59.43037,7.19175 55.52162,16.71175 L 49.58162,16.71175 L 46.07412,24.2305 L 53.71537,24.2305 C 53.65787,24.928 53.62037,25.6255 53.62037,26.338 C 53.62037,27.19925 53.66537,28.05175 53.75037,28.893 L 49.91037,28.893 L 46.40412,36.41425 L 55.70412,36.41425 C 59.72412,45.693 69.13037,52.20675 80.09037,52.20675 C 85.61412,52.20675 90.73912,50.55175 94.98287,47.72425 L 94.98287,38.50675 C 91.56537,42.398 86.56662,44.85675 80.99412,44.85675 C 74.48037,44.85675 68.75037,41.498 65.41412,36.41425 L 84.88662,36.41425 L 88.39412,28.893 L 62.54912,28.893 C 62.41537,27.988 62.34412,27.063 62.34412,26.1205 C 62.34412,25.483 62.37662,24.853 62.43912,24.2305 L 90.56787,24.2305 L 94.07412,16.71175 L 64.87037,16.71175 C 68.10037,11.138 74.11037,7.38675 80.99412,7.38675"
264
+ }),
265
+ /* @__PURE__ */ e("path", {
266
+ fill: "#10298e",
267
+ d: "M 80.99412,7.612 C 86.54787,7.612 91.75037,10.0945 95.26787,14.4195 L 95.49537,14.6995 L 95.64912,14.37325 L 98.69412,7.842 L 98.76162,7.69325 L 98.64537,7.58075 C 93.63787,2.84825 87.04787,0.242 80.09037,0.242 C 74.65662,0.242 69.42912,1.8295 64.97037,4.83325 C 60.61662,7.76575 57.27662,11.8445 55.31412,16.62575 L 55.52162,16.48575 L 49.58162,16.48575 L 49.43662,16.48575 L 49.37662,16.61575 L 45.87037,24.13575 L 45.72037,24.457 L 46.07412,24.457 L 53.71537,24.457 L 53.49037,24.212 C 53.42662,24.99325 53.39537,25.687 53.39537,26.33825 C 53.39537,27.182 53.43912,28.05075 53.52537,28.91575 L 53.75037,28.66825 L 49.91037,28.66825 L 49.76787,28.66825 L 49.70787,28.79825 L 46.19912,36.31825 L 46.05037,36.6395 L 46.40412,36.6395 L 55.70412,36.6395 L 55.49662,36.50325 C 59.68912,46.1795 69.34287,52.432 80.09037,52.432 C 85.47787,52.432 90.66912,50.87075 95.10787,47.91325 L 95.20662,47.847 L 95.20662,47.7245 L 95.20662,38.507 L 95.20662,37.90825 L 94.81287,38.35825 C 91.31162,42.3445 86.27537,44.6295 80.99412,44.6295 C 74.78162,44.6295 69.02787,41.51075 65.60162,36.2895 L 65.41412,36.6395 L 84.88662,36.6395 L 85.03162,36.6395 L 85.09162,36.51075 L 88.59912,28.98825 L 88.74912,28.66825 L 88.39412,28.66825 L 62.54912,28.66825 L 62.77287,28.86075 C 62.63912,27.9495 62.57037,27.0295 62.57037,26.12075 C 62.57037,25.502 62.60162,24.8745 62.66412,24.25325 L 62.43912,24.457 L 90.56787,24.457 L 90.71287,24.457 L 90.77287,24.327 L 94.27912,16.807 L 94.43037,16.48575 L 94.07412,16.48575 L 64.87037,16.48575 L 65.06537,16.8245 C 68.35787,11.142 74.46287,7.612 80.99412,7.612 M 64.87037,16.937 L 94.07412,16.937 L 93.86912,16.61575 L 90.36412,24.13575 L 90.56787,24.00575 L 62.43912,24.00575 L 62.23537,24.00575 L 62.21287,24.2095 C 62.15037,24.8445 62.11912,25.48825 62.11912,26.12075 C 62.11912,27.05075 62.18912,27.99575 62.32537,28.927 L 62.35537,29.1195 L 62.54912,29.1195 L 88.39412,29.1195 L 88.19037,28.79825 L 84.68412,36.31825 L 84.88662,36.18825 L 65.41412,36.18825 L 64.99537,36.18825 L 65.22537,36.53575 C 68.73412,41.88825 74.63037,45.0795 80.99412,45.0795 C 86.40412,45.0795 91.56537,42.7395 95.15287,38.65575 L 94.75662,38.507 L 94.75662,47.7245 L 94.85662,47.53825 C 90.49287,50.4445 85.38787,51.98075 80.09037,51.98075 C 69.52162,51.98075 60.03162,45.8345 55.91162,36.32325 L 55.85162,36.18825 L 55.70412,36.18825 L 46.40412,36.18825 L 46.61037,36.51075 L 50.11537,28.98825 L 49.91037,29.1195 L 53.75037,29.1195 L 53.99912,29.1195 L 53.97537,28.87075 C 53.89037,28.02075 53.84537,27.167 53.84537,26.33825 C 53.84537,25.70075 53.87662,25.017 53.94037,24.2495 L 53.96037,24.00575 L 53.71537,24.00575 L 46.07412,24.00575 L 46.27787,24.327 L 49.78537,16.807 L 49.58162,16.937 L 55.52162,16.937 L 55.67287,16.937 L 55.72912,16.797 C 57.66037,12.09825 60.94287,8.09075 65.22287,5.207 C 69.60537,2.25575 74.74787,0.6945 80.09037,0.6945 C 86.93287,0.6945 93.41037,3.25575 98.33412,7.9095 L 98.28412,7.6495 L 95.24037,14.182 L 95.61912,14.1345 C 92.01287,9.70325 86.68412,7.16075 80.99412,7.16075 C 74.30037,7.16075 68.04912,10.777 64.67412,16.59825 L 64.47787,16.937 L 64.87037,16.937 z"
268
+ })
269
+ ]
270
+ });
271
+ //#endregion
272
+ export { n as IconSepa };
@@ -0,0 +1,2 @@
1
+ import { SVGIconProps } from './types';
2
+ export declare const IconShopPay: ({ width, ...props }: SVGIconProps) => import("react").JSX.Element;
@@ -0,0 +1,35 @@
1
+ import { jsx as e, jsxs as t } from "react/jsx-runtime";
2
+ //#region src/components/Icons/IconShopPay.tsx
3
+ var n = ({ width: n = 40, ...r }) => /* @__PURE__ */ t("svg", {
4
+ viewBox: "0 0 683 164",
5
+ fill: "none",
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ width: n,
8
+ ...r,
9
+ children: [
10
+ /* @__PURE__ */ e("path", {
11
+ fillRule: "evenodd",
12
+ clipRule: "evenodd",
13
+ d: "M454.942 0C441.175 0 430.015 11.1602 430.015 24.927V138.295C430.015 152.062 441.175 163.222 454.942 163.222H658.072C671.839 163.222 682.999 152.062 682.999 138.295V24.927C682.999 11.1602 671.839 0 658.072 0H454.942ZM490.023 113.902V85.1661H508.1C524.616 85.1661 533.399 75.9057 533.399 61.872C533.399 47.8383 524.616 39.4371 508.1 39.4371H478.376V113.902H490.023ZM490.023 50.5114H505.427C516.119 50.5114 521.37 54.9029 521.37 62.2539C521.37 69.6049 516.31 73.9964 505.904 73.9964H490.023V50.5114ZM553.933 115.429C562.811 115.429 568.635 111.515 571.308 104.832C572.071 112.279 576.558 116.098 586.296 113.52L586.391 105.596C582.477 105.978 581.714 104.546 581.714 100.441V80.9655C581.714 69.5094 574.172 62.7312 560.233 62.7312C546.486 62.7312 538.562 69.6049 538.562 81.2519H549.255C549.255 75.7148 553.169 72.3734 560.042 72.3734C567.298 72.3734 570.639 75.5239 570.544 80.9655V83.4477L558.229 84.7842C544.386 86.3117 536.748 91.5624 536.748 100.727C536.748 108.269 542.095 115.429 553.933 115.429ZM556.319 106.837C550.305 106.837 547.918 103.591 547.918 100.345C547.918 95.9539 552.882 93.9491 562.62 92.8035L570.257 91.9443C569.78 100.345 564.148 106.837 556.319 106.837ZM621.754 117.625C616.885 129.463 609.057 132.995 596.837 132.995H591.586V123.258H597.219C603.902 123.258 607.148 121.157 610.68 115.143L589.009 64.2587H601.038L616.504 101.396L630.251 64.2587H641.993L621.754 117.625Z",
14
+ fill: "#5433EB"
15
+ }),
16
+ /* @__PURE__ */ e("path", {
17
+ d: "M57.3945 71.7445C41.4471 68.2852 34.3427 66.9315 34.3427 60.7862C34.3427 55.0063 39.1506 52.127 48.7662 52.127C57.2228 52.127 63.4043 55.8228 67.9545 63.0638C68.2979 63.6225 69.0062 63.8159 69.5857 63.5151L87.5292 54.4476C88.1731 54.1253 88.4092 53.3088 88.0443 52.6857C80.5965 39.7721 66.8384 32.7029 48.7233 32.7029C24.9203 32.7029 10.132 44.4347 10.132 63.0853C10.132 82.8962 28.1398 87.9027 44.1086 91.3621C60.0774 94.8215 67.2033 96.1751 67.2033 102.32C67.2033 108.466 62.0091 111.366 51.6423 111.366C42.0696 111.366 34.9652 106.983 30.6725 98.4742C30.3505 97.8511 29.5993 97.5933 28.9769 97.9156L11.0764 106.79C10.4539 107.112 10.1964 107.864 10.5183 108.509C17.6227 122.797 32.1964 130.833 51.6637 130.833C76.454 130.833 91.4355 119.295 91.4355 100.064C91.4355 80.8335 73.3418 75.2469 57.3945 71.7875V71.7445Z",
18
+ fill: "#5433EB"
19
+ }),
20
+ /* @__PURE__ */ e("path", {
21
+ d: "M153.551 32.7032C143.377 32.7032 134.384 36.3129 127.924 42.7375C127.516 43.1243 126.85 42.845 126.85 42.2863V1.26785C126.85 0.558781 126.292 0.00012207 125.584 0.00012207H103.133C102.425 0.00012207 101.867 0.558781 101.867 1.26785V128.578C101.867 129.287 102.425 129.845 103.133 129.845H125.584C126.292 129.845 126.85 129.287 126.85 128.578V72.7332C126.85 61.9468 135.114 53.6743 146.253 53.6743C157.393 53.6743 165.463 61.7749 165.463 72.7332V128.578C165.463 129.287 166.021 129.845 166.729 129.845H189.18C189.889 129.845 190.447 129.287 190.447 128.578V72.7332C190.447 49.2695 175.079 32.7246 153.551 32.7246V32.7032Z",
22
+ fill: "#5433EB"
23
+ }),
24
+ /* @__PURE__ */ e("path", {
25
+ d: "M235.991 29.0505C223.8 29.0505 212.381 32.7893 204.182 38.1825C203.624 38.5477 203.431 39.2998 203.774 39.8799L213.669 56.7901C214.034 57.3917 214.806 57.6066 215.407 57.2413C221.632 53.4811 228.758 51.5258 236.034 51.5688C255.63 51.5688 270.032 65.4063 270.032 83.6917C270.032 99.2697 258.506 110.808 243.889 110.808C231.977 110.808 223.714 103.868 223.714 94.0698C223.714 88.4618 226.096 83.8636 232.299 80.619C232.943 80.2753 233.179 79.4802 232.793 78.8571L223.456 63.0428C223.156 62.5271 222.512 62.2907 221.932 62.5056C209.419 67.1468 200.641 78.3199 200.641 93.3178C200.641 116.008 218.691 132.94 243.868 132.94C273.273 132.94 294.414 112.549 294.414 83.3049C294.414 51.9556 269.817 29.0505 235.991 29.0505Z",
26
+ fill: "#5433EB"
27
+ }),
28
+ /* @__PURE__ */ e("path", {
29
+ d: "M360.069 32.5311C348.714 32.5311 338.584 36.7211 331.179 44.1126C330.771 44.5208 330.106 44.22 330.106 43.6613V34.7658C330.106 34.0567 329.548 33.498 328.839 33.498H306.968C306.26 33.498 305.702 34.0567 305.702 34.7658V161.882C305.702 162.591 306.26 163.15 306.968 163.15H329.419C330.127 163.15 330.685 162.591 330.685 161.882V120.198C330.685 119.639 331.351 119.36 331.758 119.725C339.142 126.601 348.908 130.619 360.09 130.619C386.426 130.619 406.966 109.282 406.966 81.5642C406.966 53.8461 386.404 32.5096 360.09 32.5096L360.069 32.5311ZM355.84 109.089C340.859 109.089 329.505 97.1637 329.505 81.3923C329.505 65.6209 340.837 53.6957 355.84 53.6957C370.843 53.6957 382.155 65.4275 382.155 81.3923C382.155 97.357 370.994 109.089 355.819 109.089H355.84Z",
30
+ fill: "#5433EB"
31
+ })
32
+ ]
33
+ });
34
+ //#endregion
35
+ export { n as IconShopPay };
@@ -0,0 +1,2 @@
1
+ import { SVGIconProps } from './types';
2
+ export declare const IconSquare: ({ width, ...props }: SVGIconProps) => import("react").JSX.Element;
@@ -0,0 +1,11 @@
1
+ import { jsx as e } from "react/jsx-runtime";
2
+ //#region src/components/Icons/IconSquare.tsx
3
+ var t = ({ width: t = 40, ...n }) => /* @__PURE__ */ e("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ viewBox: "0 0 2000 501.43",
6
+ width: t,
7
+ ...n,
8
+ children: /* @__PURE__ */ e("path", { d: "M501.43,83.79v333.84c0,46.27-37.5,83.79-83.79,83.79H83.79c-46.28,0-83.79-37.5-83.79-83.79V83.79C0,37.52,37.52,0,83.79,0h333.84c46.29,0,83.79,37.5,83.79,83.79ZM410.23,117.65c0-14.61-11.85-26.45-26.45-26.45H117.63c-14.61,0-26.45,11.84-26.45,26.45v266.19c0,14.61,11.84,26.45,26.45,26.45h266.17c14.61,0,26.45-11.85,26.45-26.45V117.65h-.02ZM182.32,197.6c0-8.43,6.79-15.26,15.17-15.26h106.4c8.39,0,15.17,6.84,15.17,15.26v106.24c0,8.43-6.75,15.26-15.17,15.26h-106.4c-8.39,0-15.17-6.84-15.17-15.26v-106.24ZM778.95,221.94l-3.85-.86c-41.04-9.31-65.81-14.93-65.81-42,0-24.2,23.02-41.11,55.98-41.11,30.52,0,53.74,12.76,73.08,40.16,1.11,1.57,2.84,2.61,4.74,2.84,1.89.23,3.79-.35,5.23-1.59l32.16-27.71c2.68-2.31,3.15-6.22,1.1-9.09-24.19-33.89-67.01-54.12-114.56-54.12-31.56,0-60.34,9.26-81.04,26.08-21.73,17.65-33.21,41.93-33.21,70.23,0,63.76,54.74,76.94,98.71,87.53,4.45,1.08,8.77,2.1,12.95,3.08,39.74,9.36,66,15.54,66,43.74s-24.04,45.48-61.24,45.48c-33.71,0-64.35-17.1-86.28-48.14-1.1-1.55-2.8-2.59-4.68-2.84-1.88-.25-3.73.28-5.2,1.49l-33.86,27.99c-2.72,2.25-3.28,6.14-1.3,9.05,25.63,37.64,76.48,61.97,129.56,61.97,32.56,0,62.52-9.57,84.36-26.95,23.27-18.51,35.57-44.01,35.57-73.73,0-67.27-57.62-80.13-108.45-91.48ZM1126.34,177.74h-40.76c-3.74,0-6.78,3.04-6.78,6.78v19.06c-12.6-14.21-33.77-30.22-65.18-30.22s-56.88,12.32-75.37,35.62c-17.16,21.63-26.62,51.73-26.62,84.75s9.45,63.12,26.62,84.75c18.49,23.31,44.56,35.62,75.37,35.62,26.63,0,49.1-9.45,65.18-27.37v107.92c0,3.74,3.04,6.78,6.78,6.78h40.76c3.74,0,6.78-3.04,6.78-6.78V184.52c0-3.74-3.04-6.78-6.78-6.78ZM1080.11,287.17v13.57c0,39.86-21.97,65.61-55.98,65.61-36.15,0-57.74-27.15-57.74-72.61s21.58-72.61,57.74-72.61c34.01,0,55.98,25.93,55.98,66.05ZM1360.6,177.74h-40.76c-3.74,0-6.78,3.04-6.78,6.78v130.66c0,32.45-23.32,49.42-46.36,49.42-26.03,0-39.79-15.58-39.79-45.04v-135.03c0-3.74-3.04-6.78-6.78-6.78h-40.76c-3.74,0-6.78,3.04-6.78,6.78v146.41c0,50.53,30.93,83.17,78.8,83.17,23.76,0,43.95-9.67,61.67-29.56v17.96c0,3.74,3.04,6.78,6.78,6.78h40.76c3.74,0,6.78-3.04,6.78-6.78v-217.99c0-3.74-3.04-6.78-6.78-6.78ZM1607.93,367.07c-8.79-.24-12.72-4.78-12.72-14.7v-98.9c0-51.66-31.71-80.11-89.3-80.11-44.71,0-80.07,23.24-94.59,62.18-.66,1.78-.52,3.78.39,5.47.93,1.73,2.57,2.98,4.48,3.42l37.83,8.71c3.37.77,6.78-1.14,7.94-4.45,6.74-19.11,20.01-28.01,41.76-28.01,25.53,0,38.48,11.62,38.48,34.54v3.2l-62.73,12.98c-53.04,11.03-77.74,34.25-77.74,73.09s32.22,68.73,78.36,68.73c28.25,0,51.2-8.69,66.46-25.16,9.13,17.73,33.93,26.29,62.3,21.35,3.24-.57,5.6-3.38,5.6-6.69v-28.9c0-3.63-2.93-6.67-6.52-6.77ZM1542.21,300.54v26.89c0,27.56-27.28,41.98-54.24,41.98-20.26,0-32.35-10.13-32.35-27.1,0-19.37,14.63-26.41,38.23-31.5l48.36-10.27ZM1774.35,177.33c-3.17-.52-6.47-.77-10.09-.77-27.5,0-50.92,12.35-62.11,32.47v-24.51c0-3.74-3.04-6.78-6.78-6.78h-40.76c-3.74,0-6.78,3.04-6.78,6.78v217.99c0,3.74,3.04,6.78,6.78,6.78h40.76c3.74,0,6.78-3.04,6.78-6.78v-114.9c0-34.27,23.2-57.3,57.74-57.3,4.7,0,8.63.17,12.74.56,1.89.18,3.79-.45,5.2-1.73,1.41-1.28,2.22-3.11,2.22-5.02v-40.09c0-3.34-2.39-6.16-5.69-6.7ZM1973.75,206.72c-18.32-21.83-44.82-33.36-76.62-33.36s-59.09,12.34-79.33,34.76c-19.98,22.12-30.98,52.52-30.98,85.61,0,70.87,46.26,120.37,112.49,120.37,43.9,0,79.17-21.53,96.77-59.08.8-1.7.85-3.61.14-5.37-.71-1.76-2.14-3.15-3.91-3.82l-33.69-12.76c-3.39-1.28-7.27.37-8.63,3.68-8.08,19.63-26.56,30.9-50.68,30.9-33.08,0-56.1-23.59-60.26-61.64h154.16c3.74,0,6.78-3.04,6.78-6.78v-11.63c0-31.99-9.32-60.72-26.25-80.88ZM1945.22,264.82h-103.37c7.73-28.91,27.66-45.45,54.84-45.45,34.72,0,47.8,23.3,48.52,45.45Z" })
9
+ });
10
+ //#endregion
11
+ export { t as IconSquare };
@@ -0,0 +1,2 @@
1
+ import { SVGIconProps } from './types';
2
+ export declare const IconStripe: ({ width, ...props }: SVGIconProps) => import("react").JSX.Element;
@@ -0,0 +1,57 @@
1
+ import { jsx as e, jsxs as t } from "react/jsx-runtime";
2
+ //#region src/components/Icons/IconStripe.tsx
3
+ var n = ({ width: n = 40, ...r }) => /* @__PURE__ */ t("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ viewBox: "54 36 360.02 149.84",
6
+ width: n,
7
+ ...r,
8
+ children: [
9
+ /* @__PURE__ */ e("path", {
10
+ fill: "#635bff",
11
+ fillRule: "evenodd",
12
+ clipRule: "evenodd",
13
+ d: "M414,113.4c0-25.6-12.4-45.8-36.1-45.8c-23.8,0-38.2,20.2-38.2,45.6c0,30.1,17,45.3,41.4,45.3\n c11.9,0,20.9-2.7,27.7-6.5v-20c-6.8,3.4-14.6,5.5-24.5,5.5c-9.7,0-18.3-3.4-19.4-15.2h48.9C413.8,121,414,115.8,414,113.4z\n M364.6,103.9c0-11.3,6.9-16,13.2-16c6.1,0,12.6,4.7,12.6,16H364.6z"
14
+ }),
15
+ /* @__PURE__ */ e("path", {
16
+ fill: "#635bff",
17
+ fillRule: "evenodd",
18
+ clipRule: "evenodd",
19
+ d: "M301.1,67.6c-9.8,0-16.1,4.6-19.6,7.8l-1.3-6.2h-22v116.6l25-5.3l0.1-28.3c3.6,2.6,8.9,6.3,17.7,6.3\n c17.9,0,34.2-14.4,34.2-46.1C335.1,83.4,318.6,67.6,301.1,67.6z M295.1,136.5c-5.9,0-9.4-2.1-11.8-4.7l-0.1-37.1\n c2.6-2.9,6.2-4.9,11.9-4.9c9.1,0,15.4,10.2,15.4,23.3C310.5,126.5,304.3,136.5,295.1,136.5z"
20
+ }),
21
+ /* @__PURE__ */ e("polygon", {
22
+ fill: "#635bff",
23
+ fillRule: "evenodd",
24
+ clipRule: "evenodd",
25
+ points: "223.8,61.7 248.9,56.3 248.9,36 223.8,41.3"
26
+ }),
27
+ /* @__PURE__ */ e("rect", {
28
+ fill: "#635bff",
29
+ fillRule: "evenodd",
30
+ clipRule: "evenodd",
31
+ x: "223.8",
32
+ y: "69.3",
33
+ width: "25.1",
34
+ height: "87.5"
35
+ }),
36
+ /* @__PURE__ */ e("path", {
37
+ fill: "#635bff",
38
+ fillRule: "evenodd",
39
+ clipRule: "evenodd",
40
+ d: "M196.9,76.7l-1.6-7.4h-21.6v87.5h25V97.5c5.9-7.7,15.9-6.3,19-5.2v-23C214.5,68.1,202.8,65.9,196.9,76.7z"
41
+ }),
42
+ /* @__PURE__ */ e("path", {
43
+ fill: "#635bff",
44
+ fillRule: "evenodd",
45
+ clipRule: "evenodd",
46
+ d: "M146.9,47.6l-24.4,5.2l-0.1,80.1c0,14.8,11.1,25.7,25.9,25.7c8.2,0,14.2-1.5,17.5-3.3V135\n c-3.2,1.3-19,5.9-19-8.9V90.6h19V69.3h-19L146.9,47.6z"
47
+ }),
48
+ /* @__PURE__ */ e("path", {
49
+ fill: "#635bff",
50
+ fillRule: "evenodd",
51
+ clipRule: "evenodd",
52
+ d: "M79.3,94.7c0-3.9,3.2-5.4,8.5-5.4c7.6,0,17.2,2.3,24.8,6.4V72.2c-8.3-3.3-16.5-4.6-24.8-4.6\n C67.5,67.6,54,78.2,54,95.9c0,27.6,38,23.2,38,35.1c0,4.6-4,6.1-9.6,6.1c-8.3,0-18.9-3.4-27.3-8v23.8c9.3,4,18.7,5.7,27.3,5.7\n c20.8,0,35.1-10.3,35.1-28.2C117.4,100.6,79.3,105.9,79.3,94.7z"
53
+ })
54
+ ]
55
+ });
56
+ //#endregion
57
+ export { n as IconStripe };
@@ -0,0 +1,2 @@
1
+ import { SVGIconProps } from './types';
2
+ export declare const IconUnionPay: ({ width, ...props }: SVGIconProps) => import("react").JSX.Element;
@@ -0,0 +1,28 @@
1
+ import { jsx as e, jsxs as t } from "react/jsx-runtime";
2
+ //#region src/components/Icons/IconUnionPay.tsx
3
+ var n = ({ width: n = 40, ...r }) => /* @__PURE__ */ e("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ viewBox: "0 0 256 160",
6
+ width: n,
7
+ ...r,
8
+ children: /* @__PURE__ */ t("g", { children: [
9
+ /* @__PURE__ */ e("path", {
10
+ fill: "#E21836",
11
+ d: "M50.041631,0.000667563305 L113.820211,0.000667563305 C122.723127,0.000667563305 128.260438,7.25731345 126.183558,16.1897657 L96.4900715,143.675416 C94.3945365,152.576777 85.480739,159.839641 76.571605,159.839641 L12.7992433,159.839641 C3.908764,159.839641 -1.64098444,152.576777 0.435896208,143.675416 L30.1418186,16.1897657 C32.2186993,7.25731345 41.1278333,0.000667563305 50.041631,0.000667563305"
12
+ }),
13
+ /* @__PURE__ */ e("path", {
14
+ fill: "#00447C",
15
+ d: "M108.513283,0.000667563305 L181.857018,0.000667563305 C190.758378,0.000667563305 186.744527,7.25731345 184.650546,16.1897657 L154.961724,143.675416 C152.878625,152.576777 153.528427,159.839641 144.608411,159.839641 L71.2646775,159.839641 C62.3446615,159.839641 56.8244495,152.576777 58.919985,143.675416 L88.6072525,16.1897657 C90.715224,7.25731345 99.6057035,0.000667563305 108.513283,0.000667563305"
16
+ }),
17
+ /* @__PURE__ */ e("path", {
18
+ fill: "#007B84",
19
+ d: "M178.94783,0.000667563305 L242.726409,0.000667563305 C251.641762,0.000667563305 257.179074,7.25731345 255.085093,16.1897657 L225.396271,143.675416 C223.300736,152.576777 214.380719,159.839641 205.466922,159.839641 L141.717879,159.839641 C132.797863,159.839641 127.265215,152.576777 129.354532,143.675416 L159.048017,16.1897657 C161.124899,7.25731345 170.027814,0.000667563305 178.94783,0.000667563305"
20
+ }),
21
+ /* @__PURE__ */ e("path", {
22
+ fill: "#FEFEFE",
23
+ d: "M66.698338,40.8561434 C60.139686,40.9229891 58.202715,40.8561434 57.5840035,40.7100156 C57.346157,41.8401744 52.920349,62.256098 52.9079125,62.273198 C51.9549725,66.403641 51.261643,69.347961 48.9064975,71.2491775 C47.5695833,72.3544635 46.0088137,72.8876745 44.1993159,72.8876745 C41.2907503,72.8876745 39.5962892,71.4434965 39.3118063,68.704377 L39.2573971,67.7638735 C39.2573971,67.7638735 40.1434913,62.231225 40.1434913,62.200134 C40.1434913,62.200134 44.7884909,43.5952629 45.6201759,41.1359627 C45.6637033,40.9960531 45.6761397,40.9229891 45.6870215,40.8561434 C36.6457507,40.9354255 35.0430082,40.8561434 34.9326351,40.7100156 C34.8720075,40.9105527 34.6481522,42.0640298 34.6481522,42.0640298 L29.9052159,63.0333735 L29.4979234,64.8117805 L28.7097659,70.6289115 C28.7097659,72.3544635 29.0486581,73.762887 29.7233334,74.9536735 C31.8841598,78.729679 38.0479561,79.2955355 41.5348148,79.2955355 C46.0274683,79.2955355 50.241857,78.341041 53.089795,76.598389 C58.0332685,73.677387 59.3266555,69.1116695 60.4801325,65.0542905 L61.014898,62.972746 C61.014898,62.972746 65.7998075,43.6496723 66.6128375,41.1359627 C66.643929,40.9960531 66.656365,40.9229891 66.698338,40.8561434 Z M82.9786885,56.444252 C81.825211,56.444252 79.7172395,56.724071 77.823796,57.6521385 C77.1366845,58.0050215 76.486882,58.412314 75.8013245,58.818052 L76.420036,56.5841615 L76.081144,56.20796 C72.0657375,57.0209905 71.167207,57.129809 67.4580475,57.6521385 L67.147137,57.8588935 C66.7165265,61.4296985 66.3341065,64.1144085 64.7375825,71.133208 C64.129753,73.7199815 63.498605,76.331628 62.8659025,78.912183 L63.036903,79.2401935 C66.8377815,79.0396565 67.9912585,79.0396565 71.29468,79.0940655 L71.562063,78.8033645 C71.981792,76.65342 72.036201,76.1497455 72.965823,71.795447 C73.402652,69.7310025 74.313619,65.1948215 74.7628845,63.579643 C75.588351,63.197223 76.402936,62.8210215 77.1802115,62.8210215 C79.0316825,62.8210215 78.8062725,64.4362005 78.734763,65.079785 C78.655481,66.160198 77.9808055,69.68903 77.2890305,72.7188505 L76.8273285,74.674476 C76.5055365,76.1186545 76.152653,77.522414 75.830861,78.954156 L75.9707705,79.2401935 C79.7172395,79.0396565 80.859835,79.0396565 84.0591015,79.0940655 L84.435303,78.8033645 C85.013596,75.4455335 85.183042,74.547003 86.209046,69.6579385 L86.725157,67.411612 C87.727843,63.0153405 88.2315175,60.786114 87.4728965,58.970398 C86.670748,56.93549 84.7462135,56.444252 82.9786885,56.444252 Z M101.165696,61.047123 C99.1743155,61.429543 97.904247,61.684489 96.6419515,61.8492715 C95.3905375,62.049809 94.1702145,62.2316915 92.24568,62.499074 L92.093334,62.637429 L91.9534245,62.7478025 C91.7528875,64.181099 91.6129775,65.420076 91.3471495,66.876691 C91.1217395,68.383051 90.7750745,70.094612 90.2107725,72.5539125 C89.7739435,74.436474 89.5485335,75.092495 89.299805,75.754734 C89.057295,76.4169725 88.7899125,77.060557 88.298674,78.9120275 L88.413711,79.0830285 L88.510093,79.240038 C90.308709,79.1545375 91.4855045,79.09391 92.6949455,79.0830285 C93.902832,79.039501 95.1542455,79.0830285 97.0912165,79.09391 L97.260663,78.955555 L97.4425455,78.803209 C97.7223645,77.133621 97.7643375,76.6843555 97.935338,75.8697705 C98.104784,74.9961125 98.39704,73.786672 99.113688,70.556314 C99.4525805,69.039072 99.8303365,67.5264935 100.181665,65.97816 C100.546985,64.436045 100.929404,62.9172485 101.293169,61.4000065 L101.23876,61.2165695 L101.165696,61.047123 Z M101.208135,54.841043 C99.3986375,53.7730665 96.222689,54.1119585 94.0851805,55.587228 C91.953891,57.0329605 91.711381,59.0849685 93.5146605,60.166936 C95.293067,61.2053765 98.481452,60.896021 100.600305,59.408315 C102.726932,57.9314915 102.99276,55.898138 101.208135,54.841043 Z M112.151399,79.574733 C115.812368,79.574733 119.565055,78.565829 122.389675,75.571763 C124.562938,73.143554 125.559405,69.5307765 125.904516,68.043071 C127.028457,63.112034 126.153244,60.809743 125.054176,59.407538 C123.384588,57.2700295 120.43405,56.5844725 117.373138,56.5844725 C115.532549,56.5844725 111.148714,56.766355 107.724038,59.923649 C105.264737,62.2010665 104.12836,65.291515 103.442803,68.2544895 C102.751028,71.2734285 101.955097,76.70814 106.95298,78.7306115 C108.495095,79.3928505 110.718104,79.574733 112.151399,79.574733 Z M111.865362,68.4798995 C112.709484,64.7458675 113.705951,61.6118915 116.249197,61.6118915 C118.242132,61.6118915 118.386705,63.943719 117.500611,67.6901875 C117.342047,68.5218725 116.614517,71.6138755 115.630486,72.9305805 C114.943374,73.902175 114.130344,74.49135 113.231813,74.49135 C112.96443,74.49135 111.374124,74.49135 111.349251,72.1299865 C111.336815,70.964073 111.574661,69.7732865 111.865362,68.4798995 Z M135.05616,79.094532 L135.342197,78.803831 C135.747935,76.6538865 135.814781,76.148657 136.713312,71.7959135 C137.162577,69.731469 138.092198,65.195288 138.529028,63.580109 C139.356049,63.196135 140.156643,62.8199335 140.958791,62.8199335 C142.797825,62.8199335 142.57397,64.4351125 142.500907,65.0786965 C142.43406,66.1606645 141.759386,69.6879415 141.055173,72.717762 L140.618345,74.673388 C140.284116,76.1191205 139.920351,77.521326 139.598559,78.9546225 L139.738469,79.24066 C143.497374,79.0401225 144.596441,79.0401225 147.814363,79.094532 L148.203001,78.803831 C148.767303,75.4444455 148.919649,74.5459145 149.976744,69.658405 L150.480419,67.410524 C151.487768,63.0142525 151.99766,60.7865805 151.251476,58.9708645 C150.426009,56.9359565 148.489038,56.4447185 146.746386,56.4447185 C145.591354,56.4447185 143.472501,56.722983 141.589939,57.652605 C140.916819,58.005488 140.242143,58.411226 139.579904,58.8185185 L140.156643,56.584628 L139.847287,56.206872 C135.833436,57.021457 134.91625,57.1302755 131.211754,57.652605 L130.927271,57.85936 C130.478006,61.4301645 130.112686,64.1133205 128.516162,71.1336745 C127.908333,73.720448 127.277185,76.332094 126.646037,78.9126495 L126.815483,79.24066 C130.622579,79.0401225 131.758957,79.0401225 135.05616,79.094532 Z M162.673542,79.2398825 C162.909834,78.0864055 164.313594,71.2494885 164.32603,71.2494885 C164.32603,71.2494885 165.52148,66.232951 165.594545,66.0510685 C165.594545,66.0510685 165.970746,65.5287395 166.346947,65.321984 L166.900367,65.321984 C172.122106,65.321984 178.018519,65.321984 182.6402,61.92218 C185.785058,59.590353 187.935002,56.1470215 188.89416,51.9621695 C189.142889,50.9361655 189.326326,49.7158426 189.326326,48.4955199 C189.326326,46.8927774 189.004534,45.3071349 188.074912,44.0681575 C185.718212,40.770954 181.025022,40.7103265 175.60741,40.6854536 C175.59031,40.6854536 172.93669,40.7103265 172.93669,40.7103265 C166.001837,40.7958268 163.220744,40.770954 162.078149,40.6310444 C161.981767,41.1362735 161.799884,42.0348043 161.799884,42.0348043 C161.799884,42.0348043 159.315711,53.547812 159.315711,53.5664665 C159.315711,53.5664665 153.371107,78.0444325 153.091287,79.1979095 C159.146265,79.124846 161.628884,79.124846 162.673542,79.2398825 Z M167.276569,58.7882045 C167.276569,58.7882045 169.917752,47.2985153 169.905316,47.3420427 L169.990815,46.7528678 L170.028125,46.3036024 L171.083665,46.4124209 C171.083665,46.4124209 176.530813,46.8803409 176.658287,46.8927774 C178.808231,47.7244624 179.694325,49.8681887 179.075614,52.666381 C178.511312,55.223618 176.852606,57.373563 174.721316,58.412003 C172.966227,59.291879 170.816282,59.364943 168.601047,59.364943 L167.167751,59.364943 L167.276569,58.7882045 Z M183.721236,68.692718 C183.023242,71.668129 182.221093,77.102841 187.194103,79.039812 C188.779745,79.714487 190.200605,79.915024 191.644784,79.8419605 C193.169799,79.759569 194.582886,78.99473 195.891818,77.8941075 C195.773673,78.346482 195.655527,78.7988565 195.537381,79.2527855 L195.76279,79.5434865 C199.339813,79.392695 200.449763,79.392695 204.325259,79.4222315 L204.676588,79.1548485 C205.242445,75.8281085 205.775656,72.597751 207.246262,66.2334175 C207.962909,63.184942 208.678003,60.1660035 209.413306,57.1299645 L209.29827,56.795736 C205.296854,57.537257 204.227323,57.6958215 200.378253,58.241469 L200.085998,58.479315 C200.047134,58.788671 200.006716,59.08559 199.969406,59.3825095 C199.370904,58.4155785 198.503465,57.590112 197.164996,57.0755555 C195.453434,56.4024345 191.433365,57.269874 187.977597,60.416286 C185.549388,62.662613 184.383475,65.7406245 183.721236,68.692718 Z M192.12514,68.8746005 C192.981698,65.2074135 193.965729,62.104529 196.515194,62.104529 C198.127263,62.104529 198.976048,63.5922345 198.803493,66.1292625 C198.666693,66.761965 198.51901,67.4288675 198.343345,68.182825 C198.0884,69.2725655 197.811689,70.3529785 197.542752,71.4349465 C197.26915,72.174913 196.950468,72.8729065 196.600694,73.3377175 C195.944673,74.267339 194.383904,74.8440775 193.485373,74.8440775 C193.230426,74.8440775 191.65722,74.8440775 191.602811,72.524687 C191.590374,71.3696555 191.828221,70.1804235 192.12514,68.8746005 Z M236.010903,56.766044 L235.701548,56.413161 C231.742105,57.2153095 231.025456,57.3427825 227.387807,57.834021 L227.120423,58.1014035 C227.107988,58.144931 227.097105,58.211777 227.078451,58.2724045 L227.066014,58.211777 C224.357986,64.459519 224.437268,63.111723 222.232914,68.0303235 C222.220477,67.806468 222.220477,67.6665585 222.208042,67.428712 L221.656175,56.766044 L221.30951,56.413161 C217.161968,57.2153095 217.064031,57.3427825 213.233616,57.834021 L212.935143,58.1014035 C212.893169,58.228877 212.893169,58.3687865 212.868297,58.5211325 L212.893169,58.575542 C213.371971,61.022406 213.256934,60.4767585 213.737291,64.338264 C213.961146,66.233262 214.25962,68.139142 214.483475,70.010822 C214.861232,73.143243 215.072651,74.685358 215.534352,79.4656035 C212.947578,83.7344015 212.335085,85.3495805 209.844694,89.0960495 L209.861794,89.1333585 L208.10826,91.906678 C207.907723,92.198934 207.725841,92.399471 207.470894,92.4849715 C207.191075,92.6233265 206.82731,92.648199 206.32208,92.648199 L205.350486,92.648199 L203.906308,97.451763 L208.860663,97.5372635 C211.769228,97.524827 213.597381,96.1645945 214.581412,94.336442 L217.696733,88.9981125 L217.646987,88.9981125 L217.974998,88.621911 C220.070533,84.110603 236.010903,56.766044 236.010903,56.766044 Z M183.72108,119.853625 L181.619326,119.853625 L189.398302,94.1242455 L191.978857,94.1242455 L192.798105,91.4737355 L192.877387,94.421165 C192.781005,96.243099 194.214302,97.858278 197.979425,97.5908955 L202.333723,97.5908955 L203.832311,92.63654 L202.193814,92.63654 C201.251756,92.63654 200.814927,92.3986935 200.869337,91.888801 L200.790054,88.890071 L192.726596,88.890071 L192.726596,88.9056165 C190.119614,88.960026 182.33442,89.1558995 180.758105,89.5756285 C178.850671,90.0668665 176.840635,91.5125995 176.840635,91.5125995 L177.630347,88.85898 L170.087664,88.85898 L168.516013,94.1242455 L160.632883,120.246927 L159.103204,120.246927 L157.603062,125.165528 L172.626247,125.165528 L172.122572,126.805579 L179.525345,126.805579 L180.016584,125.165528 L182.093465,125.165528 L183.72108,119.853625 Z M177.557284,99.352202 C176.349398,99.6864305 174.101516,100.699998 174.101516,100.699998 L176.100669,94.1242455 L182.093465,94.1242455 L180.647732,98.915373 C180.647732,98.915373 178.796261,99.0241915 177.557284,99.352202 Z M177.672321,108.746356 C177.672321,108.746356 175.789759,108.982648 174.550781,109.262467 C173.330458,109.632451 171.042159,110.798364 171.042159,110.798364 L173.106603,103.955229 L179.13049,103.955229 L177.672321,108.746356 Z M174.31449,119.914253 L168.30304,119.914253 L170.045692,114.139095 L176.038487,114.139095 L174.31449,119.914253 Z M188.791404,103.955229 L197.456474,103.955229 L196.211278,107.987735 L187.431173,107.987735 L186.112912,112.396443 L193.795505,112.396443 L187.978375,120.587374 C187.571082,121.188986 187.205762,121.401959 186.800025,121.571405 C186.392732,121.77816 185.857967,122.02067 185.239255,122.02067 L183.107965,122.02067 L181.643577,126.849107 L187.218198,126.849107 C190.115882,126.849107 191.827443,125.530847 193.091294,123.800631 L197.080273,118.341047 L197.936831,123.884578 C198.118713,124.923017 198.864898,125.530847 199.370127,125.767139 C199.928211,126.046958 200.50495,126.527315 201.319535,126.598824 C202.193192,126.636133 202.82434,126.66567 203.244069,126.66567 L205.983189,126.66567 L207.627904,121.262049 L206.547491,121.262049 C205.927224,121.262049 204.859248,121.157894 204.677366,120.963575 C204.495483,120.727283 204.495483,120.363518 204.397546,119.810098 L203.528552,114.254131 L199.970183,114.254131 L201.530954,112.396443 L210.293959,112.396443 L211.641755,107.987735 L203.528552,107.987735 L204.792402,103.955229 L212.880733,103.955229 L214.380875,98.982219 L190.266674,98.982219 L188.791404,103.955229 Z M115.605924,121.037106 L117.628395,114.309008 L125.940582,114.309008 L127.459378,109.304907 L119.139419,109.304907 L120.409488,105.163582 L128.539791,105.163582 L130.046152,100.318045 L109.703292,100.318045 L108.228023,105.163582 L112.849704,105.163582 L111.616945,109.304907 L106.982827,109.304907 L105.446931,114.394508 L110.067057,114.394508 L107.371465,123.295869 C107.0077,124.474219 107.542466,124.923484 107.881358,125.470686 C108.228023,126.003897 108.579352,126.35678 109.369064,126.557317 C110.183649,126.7392 110.741733,126.848018 111.500354,126.848018 L120.87119,126.848018 L122.540778,121.304488 L118.387016,121.875009 C117.584868,121.875009 115.363414,121.778627 115.605924,121.037106 Z M116.55933,88.8286665 L114.452913,92.635763 C114.002093,93.4674475 113.596355,93.983559 113.231036,94.221405 C112.909244,94.4219425 112.271878,94.505888 111.348474,94.505888 L110.249406,94.505888 L108.780355,99.3762975 L112.430442,99.3762975 C114.18553,99.3762975 115.533326,98.7327135 116.176911,98.410921 C116.868686,98.040938 117.050568,98.252357 117.585334,97.736246 L118.818094,96.668269 L130.216064,96.668269 L131.728643,91.5973225 L123.385365,91.5973225 L124.84198,88.8286665 L116.55933,88.8286665 Z M133.386416,121.134887 C133.192097,120.855067 133.332007,120.362275 133.628926,119.336271 L136.744247,109.024932 L147.826644,109.024932 C149.441823,109.001614 150.607736,108.982959 151.366357,108.92855 C152.180942,108.843049 153.067037,108.552348 154.032413,108.030019 C155.028881,107.482817 155.538773,106.906078 155.969384,106.243839 C156.44974,105.583155 157.220798,104.137422 157.883037,101.908196 L161.798952,88.859291 L150.298381,88.926137 C150.298381,88.926137 146.757113,89.448466 145.197898,90.0252045 C143.624692,90.668789 141.37681,92.4658505 141.37681,92.4658505 L142.415251,88.8888275 L135.31095,88.8888275 L125.364931,121.874854 C125.012048,123.155803 124.775756,124.085425 124.721347,124.643509 C124.702692,125.245121 125.479968,125.840514 125.983643,126.289779 C126.579036,126.739045 127.458911,126.665981 128.303033,126.739045 C129.190682,126.805891 130.452978,126.847863 132.195629,126.847863 L137.655214,126.847863 L139.33102,121.189296 L134.443511,121.650998 C133.921182,121.650998 133.543426,121.371178 133.386416,121.134887 Z M138.754282,102.060541 L150.394763,102.060541 L149.654797,104.379932 C149.550642,104.434341 149.301913,104.264895 148.117345,104.404805 L138.037634,104.404805 L138.754282,102.060541 Z M141.086109,94.2815665 L152.824526,94.2815665 L151.980405,97.075095 C151.980405,97.075095 146.447757,97.020686 145.561663,97.1839135 C141.662847,97.858589 139.38543,99.941688 139.38543,99.941688 L141.086109,94.2815665 Z M149.915339,112.146937 C149.818957,112.493602 149.666611,112.705021 149.453638,112.863585 C149.217345,113.015931 148.834926,113.07034 148.264406,113.07034 L146.605699,113.07034 L146.703636,110.245721 L139.804537,110.245721 L139.524718,124.054801 C139.513836,125.051268 139.610218,125.628007 140.339303,126.089709 C141.068387,126.666447 143.314714,126.739511 146.338316,126.739511 L150.661524,126.739511 L152.222294,121.570628 L148.458724,121.777383 L147.207311,121.850447 C147.03631,121.777383 146.873082,121.710537 146.6912,121.528655 C146.532635,121.371645 146.265253,121.468028 146.30878,120.47156 L146.338316,116.931847 L150.285323,116.768619 C152.416613,116.768619 153.32758,116.075288 154.104855,115.414604 C154.846376,114.781902 155.088886,114.054372 155.368706,113.07034 L156.030945,109.936365 L150.607114,109.936365 L149.915339,112.146937 Z"
24
+ })
25
+ ] })
26
+ });
27
+ //#endregion
28
+ export { n as IconUnionPay };
@@ -0,0 +1,2 @@
1
+ import { SVGIconProps } from './types';
2
+ export declare const IconVenmo: ({ width, ...props }: SVGIconProps) => import("react").JSX.Element;
@@ -0,0 +1,21 @@
1
+ import { jsx as e, jsxs as t } from "react/jsx-runtime";
2
+ //#region src/components/Icons/IconVenmo.tsx
3
+ var n = ({ width: n = 40, ...r }) => /* @__PURE__ */ e("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ viewBox: "0 0 194.46875 35.71875",
6
+ width: n,
7
+ ...r,
8
+ children: /* @__PURE__ */ t("g", {
9
+ fill: "#008cff",
10
+ transform: "matrix(0.9244437,0,0,0.89314785,0,-0.73419)",
11
+ children: [
12
+ /* @__PURE__ */ e("path", { d: "m 34.5771,0.822021 c 1.4203,2.345309 2.0606,4.760989 2.0606,7.812489 0,9.73269 -8.31,22.37619 -15.0545,31.25429 H 6.17825 L 0,2.95296 13.4887,1.67258 16.7552,27.9548 c 3.0522,-4.9714 6.8186,-12.7838 6.8186,-18.11027 0,-2.91551 -0.4995,-4.90135 -1.2803,-6.53647 z" }),
13
+ /* @__PURE__ */ e("path", { d: "m 52.0595,17.0887 c 2.4822,0 8.7312,-1.1353 8.7312,-4.6863 0,-1.7051 -1.2059,-2.55564 -2.627,-2.55564 -2.4861,0 -5.7487,2.98074 -6.1042,7.24194 z m -0.2844,7.0327 c 0,4.3359 2.4114,6.037 5.6083,6.037 3.4813,0 6.8145,-0.8506 11.1469,-3.0519 l -1.6318,11.0787 c -3.0525,1.4911 -7.8097,2.4861 -12.4272,2.4861 -11.7129,0 -15.9049,-7.102 -15.9049,-15.9805 0,-11.5074 6.8189,-23.7262 20.8772,-23.7262 7.7401,0 12.0681,4.33553 12.0681,10.3725 7e-4,9.7324 -12.4929,12.7139 -19.7366,12.7843 z" }),
14
+ /* @__PURE__ */ e("path", { d: "m 110.439,9.34835 c 0,1.42035 -0.215,3.48055 -0.43,4.82695 l -4.047,25.5721 H 92.8275 l 3.6921,-23.4415 c 0.07,-0.6358 0.2852,-1.9158 0.2852,-2.626 0,-1.7052 -1.0655,-2.1306 -2.3465,-2.1306 -1.7015,0 -3.407,0.7805 -4.5428,1.3504 l -4.1877,26.848 H 72.5195 L 78.5537,1.46185 h 11.4318 l 0.1447,3.05588 c 2.697,-1.77549 6.2483,-3.695708 11.2868,-3.695708 6.676,-7.3e-4 9.022,3.409878 9.022,8.526328 z" }),
15
+ /* @__PURE__ */ e("path", { d: "m 149.432,5.15577 c 3.762,-2.69641 7.314,-4.19117 12.211,-4.19117 6.744,0 9.09,3.41061 9.09,8.52707 0,1.42043 -0.215,3.48063 -0.429,4.82703 l -4.043,25.572 h -13.138 l 3.763,-23.9369 c 0.069,-0.6399 0.215,-1.4204 0.215,-1.9155 0,-1.9199 -1.066,-2.3457 -2.347,-2.3457 -1.631,0 -3.262,0.7102 -4.473,1.3504 l -4.187,26.8481 H 132.96 l 3.762,-23.937 c 0.069,-0.6398 0.211,-1.4203 0.211,-1.9154 0,-1.9199 -1.067,-2.3457 -2.343,-2.3457 -1.705,0 -3.407,0.7805 -4.543,1.3504 l -4.191,26.8481 h -13.204 l 6.034,-38.28598 h 11.292 l 0.355,3.19624 c 2.627,-1.91548 6.175,-3.835703 10.932,-3.835703 4.119,-0.001458 6.815,1.774393 8.167,4.189713 z" }),
16
+ /* @__PURE__ */ e("path", { d: "m 196.869,16.3076 c 0,-3.1255 -0.782,-5.2564 -3.123,-5.2564 -5.183,0 -6.248,9.1621 -6.248,13.8491 0,3.5557 0.995,5.7563 3.336,5.7563 4.899,0 6.035,-9.6624 6.035,-14.349 z m -22.719,8.0269 c 0,-12.0737 6.389,-23.371121 21.088,-23.371121 11.076,0 15.125,6.536471 15.125,15.558621 0,11.9336 -6.32,24.292 -21.374,24.292 -11.147,0 -14.839,-7.317 -14.839,-16.4795 z" })
17
+ ]
18
+ })
19
+ });
20
+ //#endregion
21
+ export { n as IconVenmo };
@@ -0,0 +1,2 @@
1
+ import { SVGIconProps } from './types';
2
+ export declare const IconVisa: ({ width, ...props }: SVGIconProps) => import("react").JSX.Element;
@@ -0,0 +1,14 @@
1
+ import { jsx as e } from "react/jsx-runtime";
2
+ //#region src/components/Icons/IconVisa.tsx
3
+ var t = ({ width: t = 40, ...n }) => /* @__PURE__ */ e("svg", {
4
+ xmlns: "http://www.w3.org/2000/svg",
5
+ viewBox: "0 0 1000 324.68",
6
+ width: t,
7
+ ...n,
8
+ children: /* @__PURE__ */ e("path", {
9
+ fill: "#1434cb",
10
+ d: "m651.19.5c-70.93,0-134.32,36.77-134.32,104.69,0,77.9,112.42,83.28,112.42,122.42,0,16.48-18.88,31.23-51.14,31.23-45.77,0-79.98-20.61-79.98-20.61l-14.64,68.55s39.41,17.41,91.73,17.41c77.55,0,138.58-38.57,138.58-107.66,0-82.32-112.89-87.54-112.89-123.86,0-12.91,15.5-27.05,47.66-27.05,36.29,0,65.89,14.99,65.89,14.99l14.33-66.2S696.61.5,651.18.5h0ZM2.22,5.5L.5,15.49s29.84,5.46,56.72,16.36c34.61,12.49,37.07,19.77,42.9,42.35l63.51,244.83h85.14L379.93,5.5h-84.94l-84.28,213.17-34.39-180.7c-3.15-20.68-19.13-32.48-38.68-32.48,0,0-135.41,0-135.41,0Zm411.87,0l-66.63,313.53h81L494.85,5.5h-80.76Zm451.76,0c-19.53,0-29.88,10.46-37.47,28.73l-118.67,284.8h84.94l16.43-47.47h103.48l9.99,47.47h74.95L934.12,5.5h-68.27Zm11.05,84.71l25.18,117.65h-67.45l42.28-117.65h0Z"
11
+ })
12
+ });
13
+ //#endregion
14
+ export { t as IconVisa };