@lancom/shared 0.0.62 → 0.0.66

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 (549) hide show
  1. package/assets/js/api/admin.js +332 -0
  2. package/assets/js/api/helpers.js +31 -0
  3. package/assets/js/api/index.js +162 -0
  4. package/assets/js/constants/colors.js +4 -0
  5. package/assets/js/constants/currencies.js +112 -0
  6. package/assets/js/constants/fonts.js +137 -0
  7. package/assets/js/constants/order.js +26 -0
  8. package/assets/js/constants/print-type.js +16 -0
  9. package/assets/js/constants/prints.js +17 -0
  10. package/assets/js/constants/product.js +11 -0
  11. package/assets/js/constants/sides.js +6 -0
  12. package/assets/js/constants/sizes.js +1 -0
  13. package/assets/js/constants/states.js +10 -0
  14. package/assets/js/models/print-area.js +72 -0
  15. package/assets/js/models/product-layers.js +108 -0
  16. package/assets/js/utils/breakpoints.js +67 -0
  17. package/assets/js/utils/cart.js +31 -0
  18. package/assets/js/utils/colors.js +71 -0
  19. package/assets/js/utils/copy-to-clipboard.js +10 -0
  20. package/assets/js/utils/custom-validation-rules.js +13 -0
  21. package/assets/js/utils/dom.js +12 -0
  22. package/assets/js/utils/event-bus.js +3 -0
  23. package/assets/js/utils/event-dispatcher.js +22 -0
  24. package/assets/js/utils/export-print-to-svg.js +97 -0
  25. package/assets/js/utils/fabric/files-loader.js +36 -0
  26. package/assets/js/utils/fabric/object-factory.js +50 -0
  27. package/assets/js/utils/fabric/selection-style.js +59 -0
  28. package/assets/js/utils/fabric/wireframe.js +143 -0
  29. package/assets/js/utils/fabric-helper.js +381 -0
  30. package/assets/js/utils/filters.js +87 -0
  31. package/assets/js/utils/fonts-helper.js +85 -0
  32. package/assets/js/utils/gtm.js +20 -0
  33. package/assets/js/utils/guid.js +3 -0
  34. package/assets/js/utils/news.js +10 -0
  35. package/assets/js/utils/order.js +73 -0
  36. package/assets/js/utils/pricing.js +5 -0
  37. package/assets/js/utils/prints.js +53 -0
  38. package/assets/js/utils/product.js +141 -0
  39. package/assets/js/utils/products-grouping/by-colors.js +23 -0
  40. package/assets/js/utils/products-grouping/by-design.js +49 -0
  41. package/assets/js/utils/products-grouping/by-prints.js +43 -0
  42. package/assets/js/utils/products-grouping/by-sku.js +18 -0
  43. package/assets/js/utils/products-grouping/index.js +7 -0
  44. package/assets/js/utils/products-grouping/prints-by-print-area.js +26 -0
  45. package/assets/js/utils/products-grouping/prints-by-size.js +20 -0
  46. package/assets/js/utils/products-grouping/sizes-by-price.js +21 -0
  47. package/assets/js/utils/quote.js +27 -0
  48. package/assets/js/utils/sizes.js +14 -0
  49. package/assets/scss/_common.scss +138 -0
  50. package/assets/scss/_reset.scss +50 -0
  51. package/assets/scss/_transitions.scss +472 -0
  52. package/assets/scss/main.scss +4 -0
  53. package/assets/scss/normalize/_index.scss +565 -0
  54. package/assets/scss/ui_kit/_buttons.scss +322 -0
  55. package/assets/scss/ui_kit/_forms.scss +625 -0
  56. package/assets/scss/ui_kit/_grid.scss +799 -0
  57. package/assets/scss/ui_kit/_index.scss +9 -0
  58. package/assets/scss/ui_kit/_modals.scss +64 -0
  59. package/assets/scss/ui_kit/_table.scss +90 -0
  60. package/assets/scss/ui_kit/_toast.scss +52 -0
  61. package/assets/scss/ui_kit/_tooltip.scss +131 -0
  62. package/assets/scss/ui_kit/_typography.scss +358 -0
  63. package/assets/scss/variables/_breakpoints.scss +12 -0
  64. package/assets/scss/variables/_index.scss +2 -0
  65. package/assets/scss/variables/_theme.scss +73 -0
  66. package/components/asides/contact_us/contact-us.scss +68 -0
  67. package/components/asides/contact_us/contact-us.vue +209 -0
  68. package/components/asides/menu/menu.scss +23 -0
  69. package/components/asides/menu/menu.vue +47 -0
  70. package/components/asides/offer_screen_printing/offer-screen-printing.scss +68 -0
  71. package/components/asides/offer_screen_printing/offer-screen-printing.vue +201 -0
  72. package/components/checkout/cart/cart.mixin.js +70 -0
  73. package/components/checkout/cart/cart.scss +115 -0
  74. package/components/checkout/cart/cart.vue +77 -0
  75. package/components/checkout/cart/cart_entities_group/cart-entities-group.mixin.js +114 -0
  76. package/components/checkout/cart/cart_entities_group/cart-entities-group.scss +74 -0
  77. package/components/checkout/cart/cart_entities_group/cart-entities-group.vue +82 -0
  78. package/components/checkout/cart/cart_entities_group/cart_entities_group_prints/cart-entities-group-prints.scss +29 -0
  79. package/components/checkout/cart/cart_entities_group/cart_entities_group_prints/cart-entities-group-prints.vue +75 -0
  80. package/components/checkout/cart/cart_entities_group/cart_entities_group_prints/cart_entities_group_print/cart-entities-group-print.scss +0 -0
  81. package/components/checkout/cart/cart_entities_group/cart_entities_group_prints/cart_entities_group_print/cart-entities-group-print.vue +88 -0
  82. package/components/checkout/cart/cart_entities_group/cart_entities_group_size_cell/cart-entities-group-size-cell.scss +23 -0
  83. package/components/checkout/cart/cart_entities_group/cart_entities_group_size_cell/cart-entities-group-size-cell.vue +91 -0
  84. package/components/checkout/cart/cart_entities_group_table/cart-entities-group-table.scss +7 -0
  85. package/components/checkout/cart/cart_entities_group_table/cart-entities-group-table.vue +57 -0
  86. package/components/checkout/cart/cart_entities_group_table/cart_entities_group_tr/cart-entities-group-tr.scss +10 -0
  87. package/components/checkout/cart/cart_entities_group_table/cart_entities_group_tr/cart-entities-group-tr.vue +100 -0
  88. package/components/checkout/cart/cart_entity/cart-entity.mixin.js +56 -0
  89. package/components/checkout/cart/cart_entity/cart-entity.scss +52 -0
  90. package/components/checkout/cart/cart_entity/cart-entity.vue +69 -0
  91. package/components/checkout/cart/cart_entity/cart_entity_color_simple_products/cart-entity-color-simple-products.mixin.js +83 -0
  92. package/components/checkout/cart/cart_entity/cart_entity_color_simple_products/cart-entity-color-simple-products.scss +96 -0
  93. package/components/checkout/cart/cart_entity/cart_entity_color_simple_products/cart-entity-color-simple-products.vue +89 -0
  94. package/components/checkout/cart/cart_entity/cart_entity_color_simple_products/cart_entity_color_simple_product/cart-entity-color-simple-product.scss +74 -0
  95. package/components/checkout/cart/cart_entity/cart_entity_color_simple_products/cart_entity_color_simple_product/cart-entity-color-simple-product.vue +129 -0
  96. package/components/checkout/cart/cart_entity/cart_entity_prints/cart-entity-prints.scss +65 -0
  97. package/components/checkout/cart/cart_entity/cart_entity_prints/cart-entity-prints.vue +72 -0
  98. package/components/checkout/cart/cart_entity/cart_entity_prints/cart_entity_print/cart-entity-print.scss +31 -0
  99. package/components/checkout/cart/cart_entity/cart_entity_prints/cart_entity_print/cart-entity-print.vue +102 -0
  100. package/components/checkout/cart/cart_price_info/cart-price-info.scss +0 -0
  101. package/components/checkout/cart/cart_price_info/cart-price-info.vue +66 -0
  102. package/components/checkout/cart/cart_quantity_errors/cart-quantity-errors.scss +8 -0
  103. package/components/checkout/cart/cart_quantity_errors/cart-quantity-errors.vue +32 -0
  104. package/components/checkout/order/address-form/address-form.scss +17 -0
  105. package/components/checkout/order/address-form/address-form.vue +301 -0
  106. package/components/checkout/order/order-billing-information/order-billing-information.scss +5 -0
  107. package/components/checkout/order/order-billing-information/order-billing-information.vue +68 -0
  108. package/components/checkout/order/order-checkout-method/order-checkout-method.scss +9 -0
  109. package/components/checkout/order/order-checkout-method/order-checkout-method.vue +102 -0
  110. package/components/checkout/order/order-payment-information/order-payment-information.scss +44 -0
  111. package/components/checkout/order/order-payment-information/order-payment-information.vue +166 -0
  112. package/components/checkout/order/order-review/order-review.scss +13 -0
  113. package/components/checkout/order/order-review/order-review.vue +127 -0
  114. package/components/checkout/order/order-shipping-information/order-shipping-information.scss +11 -0
  115. package/components/checkout/order/order-shipping-information/order-shipping-information.vue +50 -0
  116. package/components/checkout/order/order-shipping-method/order-shipping-method.scss +0 -0
  117. package/components/checkout/order/order-shipping-method/order-shipping-method.vue +67 -0
  118. package/components/checkout/order/order-success/order-success.scss +42 -0
  119. package/components/checkout/order/order-success/order-success.vue +41 -0
  120. package/components/checkout/order/order.scss +44 -0
  121. package/components/checkout/order/order.vue +145 -0
  122. package/components/checkout/payment/payment-cart/payment-cart.scss +53 -0
  123. package/components/checkout/payment/payment-cart/payment-cart.vue +196 -0
  124. package/components/checkout/payment/payment_failed/payment-failed.scss +19 -0
  125. package/components/checkout/payment/payment_failed/payment-failed.vue +41 -0
  126. package/components/checkout/payment/payment_success/payment-success.scss +19 -0
  127. package/components/checkout/payment/payment_success/payment-success.vue +40 -0
  128. package/components/common/breadcrumbs/breadcrumbs.scss +20 -0
  129. package/components/common/breadcrumbs/breadcrumbs.vue +65 -0
  130. package/components/common/breakpoint.vue +51 -0
  131. package/components/common/btn.vue +159 -0
  132. package/components/common/checkbox.vue +156 -0
  133. package/components/common/checked-icon.vue +48 -0
  134. package/components/common/color-picker.vue +108 -0
  135. package/components/common/file_uploader.vue +186 -0
  136. package/components/common/image_viewer/image-viewer.scss +139 -0
  137. package/components/common/image_viewer/image-viewer.vue +152 -0
  138. package/components/common/info-popover.vue +61 -0
  139. package/components/common/logo/logo.scss +16 -0
  140. package/components/common/logo/logo.vue +30 -0
  141. package/components/common/postcode_select/postcode-select.scss +8 -0
  142. package/components/common/postcode_select/postcode-select.vue +141 -0
  143. package/components/common/pricing_discounts_table/pricing-discounts-table.scss +5 -0
  144. package/components/common/pricing_discounts_table/pricing-discounts-table.vue +53 -0
  145. package/components/common/pricing_table/pricing-table.scss +8 -0
  146. package/components/common/pricing_table/pricing-table.vue +133 -0
  147. package/components/common/product_side_with_print/product-side-with-print.scss +19 -0
  148. package/components/common/product_side_with_print/product-side-with-print.vue +128 -0
  149. package/components/common/products_list_dropdown/products-list-dropdown.scss +0 -0
  150. package/components/common/products_list_dropdown/products-list-dropdown.vue +69 -0
  151. package/components/common/products_list_dropdown/products_list_dropdown_option/products-list-dropdown-option.scss +30 -0
  152. package/components/common/products_list_dropdown/products_list_dropdown_option/products-list-dropdown-option.vue +35 -0
  153. package/components/common/products_total_pricing/products-total-pricing.scss +12 -0
  154. package/components/common/products_total_pricing/products-total-pricing.vue +53 -0
  155. package/components/common/progress_steps/progress-steps.scss +169 -0
  156. package/components/common/progress_steps/progress-steps.vue +166 -0
  157. package/components/common/progress_steps/progress_steps_controls/progress-steps-controls.scss +0 -0
  158. package/components/common/progress_steps/progress_steps_controls/progress-steps-controls.vue +67 -0
  159. package/components/common/range/range.scss +51 -0
  160. package/components/common/range/range.vue +116 -0
  161. package/components/common/rich-text.vue +30 -0
  162. package/components/common/shops-multiselect.vue +46 -0
  163. package/components/common/single-item-price.vue +30 -0
  164. package/components/common/spinner.vue +73 -0
  165. package/components/common/stars-mark.vue +98 -0
  166. package/components/common/tabs.vue +174 -0
  167. package/components/common/toggle-content.vue +59 -0
  168. package/components/customer/customer.scss +9 -0
  169. package/components/customer/customer.vue +84 -0
  170. package/components/customer/customer_form/customer-form.scss +12 -0
  171. package/components/customer/customer_form/customer-form.vue +276 -0
  172. package/components/customer/customer_password/customer-password.scss +0 -0
  173. package/components/customer/customer_password/customer-password.vue +99 -0
  174. package/components/customer/recovery_form/recovery-form.scss +0 -0
  175. package/components/customer/recovery_form/recovery-form.vue +96 -0
  176. package/components/customer/signin_form/signin-form.scss +22 -0
  177. package/components/customer/signin_form/signin-form.vue +147 -0
  178. package/components/design/approve_design_header/approve-design-header.scss +71 -0
  179. package/components/design/approve_design_header/approve-design-header.vue +69 -0
  180. package/components/design/approve_design_prints/approve-design-prints.scss +76 -0
  181. package/components/design/approve_design_prints/approve-design-prints.vue +98 -0
  182. package/components/design/approve_design_tables/approve-design-tables.scss +47 -0
  183. package/components/design/approve_design_tables/approve-design-tables.vue +136 -0
  184. package/components/design/approve_design_tees/approve-design-tees.scss +87 -0
  185. package/components/design/approve_design_tees/approve-design-tees.vue +59 -0
  186. package/components/editor/editor.scss +42 -0
  187. package/components/editor/editor.vue +214 -0
  188. package/components/editor/editor_layers/editor-layers.scss +22 -0
  189. package/components/editor/editor_layers/editor-layers.vue +154 -0
  190. package/components/editor/editor_layers/editor_layer_forms/editor_layer_common_fields/editor-layer-common-fields.scss +37 -0
  191. package/components/editor/editor_layers/editor_layer_forms/editor_layer_common_fields/editor-layer-common-fields.vue +110 -0
  192. package/components/editor/editor_layers/editor_layer_forms/editor_layer_form_art/editor-layer-form-art.scss +7 -0
  193. package/components/editor/editor_layers/editor_layer_forms/editor_layer_form_art/editor-layer-form-art.vue +55 -0
  194. package/components/editor/editor_layers/editor_layer_forms/editor_layer_form_text/editor-layer-form-text.scss +49 -0
  195. package/components/editor/editor_layers/editor_layer_forms/editor_layer_form_text/editor-layer-form-text.vue +236 -0
  196. package/components/editor/editor_layers/editor_layer_forms/editor_layer_form_text/font-family_select/font-family-select.scss +147 -0
  197. package/components/editor/editor_layers/editor_layer_forms/editor_layer_form_text/font-family_select/font-family-select.vue +141 -0
  198. package/components/editor/editor_layers/editor_layer_forms/index.js +7 -0
  199. package/components/editor/editor_layers/editor_layers_layer/editor-layers-layer.scss +140 -0
  200. package/components/editor/editor_layers/editor_layers_layer/editor-layers-layer.vue +127 -0
  201. package/components/editor/editor_layers/editor_layers_toolbar/editor-layers-toolbar.scss +75 -0
  202. package/components/editor/editor_layers/editor_layers_toolbar/editor-layers-toolbar.vue +112 -0
  203. package/components/editor/editor_pricing/editor-pricing.scss +56 -0
  204. package/components/editor/editor_pricing/editor-pricing.vue +311 -0
  205. package/components/editor/editor_print_area_options/editor-print-area-options.scss +28 -0
  206. package/components/editor/editor_print_area_options/editor-print-area-options.vue +91 -0
  207. package/components/editor/editor_print_area_options/editor_print_area_option/editor-print-area-option.scss +28 -0
  208. package/components/editor/editor_print_area_options/editor_print_area_option/editor-print-area-option.vue +103 -0
  209. package/components/editor/editor_product_details/editor-product-details.scss +50 -0
  210. package/components/editor/editor_product_details/editor-product-details.vue +124 -0
  211. package/components/editor/editor_workspace/editor-workspace.scss +114 -0
  212. package/components/editor/editor_workspace/editor-workspace.vue +182 -0
  213. package/components/editor/editor_workspace/editor_workspace_side/editor-workspace-side.scss +110 -0
  214. package/components/editor/editor_workspace/editor_workspace_side/editor-workspace-side.vue +344 -0
  215. package/components/editor/mobile_editor_product_details/mobile-editor-product-details.scss +103 -0
  216. package/components/editor/mobile_editor_product_details/mobile-editor-product-details.vue +147 -0
  217. package/components/errors/404.vue +54 -0
  218. package/components/errors/500.vue +54 -0
  219. package/components/modals/cart_modal/cart-modal.scss +26 -0
  220. package/components/modals/cart_modal/cart-modal.vue +62 -0
  221. package/components/modals/confirmation_modal/confirmation-modal.scss +7 -0
  222. package/components/modals/confirmation_modal/confirmation-modal.vue +57 -0
  223. package/components/modals/editor_layers_templates/editor-layers-templates.scss +36 -0
  224. package/components/modals/editor_layers_templates/editor-layers-templates.vue +90 -0
  225. package/components/modals/failed_conversion_modal/failed-conversion-modal.scss +18 -0
  226. package/components/modals/failed_conversion_modal/failed-conversion-modal.vue +182 -0
  227. package/components/modals/order_modal/order-modal.scss +7 -0
  228. package/components/modals/order_modal/order-modal.vue +359 -0
  229. package/components/modals/payment_modal/payment-modal.scss +57 -0
  230. package/components/modals/payment_modal/payment-modal.vue +313 -0
  231. package/components/news/news.scss +77 -0
  232. package/components/news/news.vue +52 -0
  233. package/components/news/news_list/news-list.scss +24 -0
  234. package/components/news/news_list/news-list.vue +38 -0
  235. package/components/news/news_list_item/news-list-item.scss +84 -0
  236. package/components/news/news_list_item/news-list-item.vue +70 -0
  237. package/components/order/order_approval/order-approval.scss +15 -0
  238. package/components/order/order_approval/order-approval.vue +84 -0
  239. package/components/order/order_approval/order_approval_message/order-approval-message.scss +1 -0
  240. package/components/order/order_approval/order_approval_message/order-approval-message.vue +82 -0
  241. package/components/order/order_entity/order-entity.scss +25 -0
  242. package/components/order/order_entity/order-entity.vue +76 -0
  243. package/components/order/order_entity/order_entity_side_layers/order-entity-side-layers.scss +14 -0
  244. package/components/order/order_entity/order_entity_side_layers/order-entity-side-layers.vue +84 -0
  245. package/components/order/order_main_info/order-main-info.scss +11 -0
  246. package/components/order/order_main_info/order-main-info.vue +115 -0
  247. package/components/order/order_price/order-price.scss +8 -0
  248. package/components/order/order_price/order-price.vue +67 -0
  249. package/components/order/order_prints_groups/order-prints-groups.scss +14 -0
  250. package/components/order/order_prints_groups/order-prints-groups.vue +127 -0
  251. package/components/order/order_products_groups/order-products-groups.scss +11 -0
  252. package/components/order/order_products_groups/order-products-groups.vue +129 -0
  253. package/components/order/order_products_groups/order_products_group/order-products-group.scss +28 -0
  254. package/components/order/order_products_groups/order_products_group/order-products-group.vue +129 -0
  255. package/components/order/order_setup_groups/order-setup-groups.scss +7 -0
  256. package/components/order/order_setup_groups/order-setup-groups.vue +99 -0
  257. package/components/order/order_sku_groups/order-sku-groups.scss +7 -0
  258. package/components/order/order_sku_groups/order-sku-groups.vue +125 -0
  259. package/components/order/order_status/order-status.scss +12 -0
  260. package/components/order/order_status/order-status.vue +77 -0
  261. package/components/order/order_timeline/order-timeline.scss +15 -0
  262. package/components/order/order_timeline/order-timeline.vue +76 -0
  263. package/components/order/order_tracking_numbers/order-tracking-numbers.scss +34 -0
  264. package/components/order/order_tracking_numbers/order-tracking-numbers.vue +161 -0
  265. package/components/order/order_view/order-view.mixin.js +51 -0
  266. package/components/order/order_view/order-view.scss +52 -0
  267. package/components/order/order_view/order-view.vue +145 -0
  268. package/components/order/order_view/order_product_color_simple_products/order-product-color-simple-products.mixin.js +37 -0
  269. package/components/order/order_view/order_product_color_simple_products/order-product-color-simple-products.scss +95 -0
  270. package/components/order/order_view/order_product_color_simple_products/order-product-color-simple-products.vue +88 -0
  271. package/components/order/order_view/order_product_color_simple_products/order_product_color_simple_product/order-product-color-simple-product.scss +32 -0
  272. package/components/order/order_view/order_product_color_simple_products/order_product_color_simple_product/order-product-color-simple-product.vue +27 -0
  273. package/components/order/order_view/order_product_prints/order-product-prints.scss +67 -0
  274. package/components/order/order_view/order_product_prints/order-product-prints.vue +60 -0
  275. package/components/order/order_view/order_product_prints/order_product_print/order-product-print.scss +31 -0
  276. package/components/order/order_view/order_product_prints/order_product_print/order-product-print.vue +78 -0
  277. package/components/order/order_view/order_view_product/order-view-product.scss +29 -0
  278. package/components/order/order_view/order_view_product/order-view-product.vue +110 -0
  279. package/components/pages/customer/confirm_email/confirm-email.vue +52 -0
  280. package/components/pages/customer/create/create.vue +41 -0
  281. package/components/pages/customer/recovery/recovery.vue +51 -0
  282. package/components/pages/customer/settings/settings.vue +39 -0
  283. package/components/pages/customer/sign_in/sign-in.vue +31 -0
  284. package/components/pricing/pricing_digital_printing/pricing-digital-printing.scss +248 -0
  285. package/components/pricing/pricing_digital_printing/pricing-digital-printing.vue +293 -0
  286. package/components/pricing/pricing_example/pricing-example.scss +79 -0
  287. package/components/pricing/pricing_example/pricing-example.vue +104 -0
  288. package/components/pricing/pricing_garment/pricing-garment.scss +73 -0
  289. package/components/pricing/pricing_garment/pricing-garment.vue +92 -0
  290. package/components/pricing/pricing_how_we_calculate/pricing-how-we-calculate.scss +44 -0
  291. package/components/pricing/pricing_how_we_calculate/pricing-how-we-calculate.vue +96 -0
  292. package/components/pricing/pricing_main_section/pricing-main-section.scss +54 -0
  293. package/components/pricing/pricing_main_section/pricing-main-section.vue +61 -0
  294. package/components/pricing/pricing_print/discounts_table/discounts-table.scss +8 -0
  295. package/components/pricing/pricing_print/discounts_table/discounts-table.vue +91 -0
  296. package/components/pricing/pricing_print/pricing-print.scss +28 -0
  297. package/components/pricing/pricing_print/pricing-print.vue +58 -0
  298. package/components/pricing/pricing_screen_print/discounts_table/discounts-table.scss +14 -0
  299. package/components/pricing/pricing_screen_print/discounts_table/discounts-table.vue +78 -0
  300. package/components/pricing/pricing_screen_print/pricing-screen-print.scss +8 -0
  301. package/components/pricing/pricing_screen_print/pricing-screen-print.vue +38 -0
  302. package/components/pricing/pricing_screen_printing/pricing-screen-printing.scss +253 -0
  303. package/components/pricing/pricing_screen_printing/pricing-screen-printing.vue +339 -0
  304. package/components/product/layouts/product_colors_selector/product-colors-selector.scss +15 -0
  305. package/components/product/layouts/product_colors_selector/product-colors-selector.vue +55 -0
  306. package/components/product/layouts/product_colors_selector/product_colors_selector_options/product-colors-selector-options.scss +67 -0
  307. package/components/product/layouts/product_colors_selector/product_colors_selector_options/product-colors-selector-options.vue +76 -0
  308. package/components/product/layouts/product_fabric_and_size_info/product-fabric-and-size-info.scss +24 -0
  309. package/components/product/layouts/product_fabric_and_size_info/product-fabric-and-size-info.vue +58 -0
  310. package/components/product/layouts/product_gallery/product-gallery.scss +39 -0
  311. package/components/product/layouts/product_gallery/product-gallery.vue +79 -0
  312. package/components/product/layouts/product_labels_customization/product-labels-customization.scss +61 -0
  313. package/components/product/layouts/product_labels_customization/product-labels-customization.vue +147 -0
  314. package/components/product/layouts/product_main_info/product-main-info.scss +22 -0
  315. package/components/product/layouts/product_main_info/product-main-info.vue +79 -0
  316. package/components/product/layouts/product_model_measurements/product-model-measurements.scss +18 -0
  317. package/components/product/layouts/product_model_measurements/product-model-measurements.vue +66 -0
  318. package/components/product/layouts/product_packaging/product-packaging.scss +32 -0
  319. package/components/product/layouts/product_packaging/product-packaging.vue +99 -0
  320. package/components/product/layouts/product_size_table/product-size-table.scss +23 -0
  321. package/components/product/layouts/product_size_table/product-size-table.vue +73 -0
  322. package/components/product/layouts/product_tier_prices/product-tier-prices.scss +23 -0
  323. package/components/product/layouts/product_tier_prices/product-tier-prices.vue +74 -0
  324. package/components/product/product.scss +24 -0
  325. package/components/product/product.vue +80 -0
  326. package/components/product/product_color_image/product-color-image.scss +8 -0
  327. package/components/product/product_color_image/product-color-image.vue +34 -0
  328. package/components/product/product_color_thumbnails/product-color-thumbnails.scss +61 -0
  329. package/components/product/product_color_thumbnails/product-color-thumbnails.vue +67 -0
  330. package/components/product/product_info_tabs/product-info-tabs.scss +24 -0
  331. package/components/product/product_info_tabs/product-info-tabs.vue +63 -0
  332. package/components/product/product_price_range/product-price-range.scss +0 -0
  333. package/components/product/product_price_range/product-price-range.vue +79 -0
  334. package/components/product/product_prints_price_info/product-prints-price-info.scss +25 -0
  335. package/components/product/product_prints_price_info/product-prints-price-info.vue +36 -0
  336. package/components/product/product_prints_price_info/product_print_price_info/product-print-price-info.scss +46 -0
  337. package/components/product/product_prints_price_info/product_print_price_info/product-print-price-info.vue +130 -0
  338. package/components/product/product_reviews/add_review/add-review.scss +42 -0
  339. package/components/product/product_reviews/add_review/add-review.vue +185 -0
  340. package/components/product/product_reviews/add_review_modal/add-review-modal.scss +5 -0
  341. package/components/product/product_reviews/add_review_modal/add-review-modal.vue +35 -0
  342. package/components/product/product_reviews/product-reviews.scss +68 -0
  343. package/components/product/product_reviews/product-reviews.vue +76 -0
  344. package/components/product/product_reviews/product_review/product-review.scss +47 -0
  345. package/components/product/product_reviews/product_review/product-review.vue +56 -0
  346. package/components/product/product_size_selector/product-size-selector.scss +13 -0
  347. package/components/product/product_size_selector/product-size-selector.vue +75 -0
  348. package/components/product/product_size_selector/product_size_selector_color/product-size-selector-color.scss +50 -0
  349. package/components/product/product_size_selector/product_size_selector_color/product-size-selector-color.vue +66 -0
  350. package/components/product/product_size_selector/product_size_selector_color/product_size_selector_color_cell/product-size-selector-color-cell.scss +60 -0
  351. package/components/product/product_size_selector/product_size_selector_color/product_size_selector_color_cell/product-size-selector-color-cell.vue +125 -0
  352. package/components/product/product_sizes_info/product-sizes-info.scss +55 -0
  353. package/components/product/product_sizes_info/product-sizes-info.vue +100 -0
  354. package/components/product/simple_products_price_info/simple-products-price-info.scss +19 -0
  355. package/components/product/simple_products_price_info/simple-products-price-info.vue +37 -0
  356. package/components/products/product_list/product-list.scss +47 -0
  357. package/components/products/product_list/product-list.vue +78 -0
  358. package/components/products/product_list_product/product-list-product.scss +124 -0
  359. package/components/products/product_list_product/product-list-product.vue +113 -0
  360. package/components/products/products_aside/products-aside.scss +14 -0
  361. package/components/products/products_aside/products-aside.vue +81 -0
  362. package/components/products/products_attributes/products-attributes.scss +27 -0
  363. package/components/products/products_attributes/products-attributes.vue +43 -0
  364. package/components/products/products_attributes/products_attribute/products-attribute.scss +28 -0
  365. package/components/products/products_attributes/products_attribute/products-attribute.vue +56 -0
  366. package/components/products/products_autocomplete/products-autocomplete.scss +54 -0
  367. package/components/products/products_autocomplete/products-autocomplete.vue +87 -0
  368. package/components/products/products_autocomplete/products_autocomplete-item/products-autocomplete-item.scss +0 -0
  369. package/components/products/products_autocomplete/products_autocomplete-item/products-autocomplete-item.vue +22 -0
  370. package/components/products/products_brands/products-brands.scss +28 -0
  371. package/components/products/products_brands/products-brands.vue +58 -0
  372. package/components/products/products_catalog/products-catalog.scss +43 -0
  373. package/components/products/products_catalog/products-catalog.vue +58 -0
  374. package/components/products/products_colors/products-colors.scss +59 -0
  375. package/components/products/products_colors/products-colors.vue +73 -0
  376. package/components/products/products_filters/products-filters.scss +50 -0
  377. package/components/products/products_filters/products-filters.vue +91 -0
  378. package/components/products/products_link/products-link.scss +0 -0
  379. package/components/products/products_link/products-link.vue +56 -0
  380. package/components/products/products_tags/products-tags.scss +34 -0
  381. package/components/products/products_tags/products-tags.vue +53 -0
  382. package/components/products/products_types/products-types.scss +37 -0
  383. package/components/products/products_types/products-types.vue +65 -0
  384. package/components/quotes/quote_request/quote-request.scss +146 -0
  385. package/components/quotes/quote_request/quote-request.vue +404 -0
  386. package/components/quotes/quote_request_modal/quote-request-modal.scss +5 -0
  387. package/components/quotes/quote_request_modal/quote-request-modal.vue +27 -0
  388. package/components/quotes/quote_view/quote-view.mixin.js +52 -0
  389. package/components/quotes/quote_view/quote-view.scss +16 -0
  390. package/components/quotes/quote_view/quote-view.vue +79 -0
  391. package/components/quotes/quote_view/quote_option_view/quote-option-view.scss +10 -0
  392. package/components/quotes/quote_view/quote_option_view/quote-option-view.vue +56 -0
  393. package/components/quotes/quote_view/quote_product_color_simple_products/quote-product-color-simple-products.mixin.js +37 -0
  394. package/components/quotes/quote_view/quote_product_color_simple_products/quote-product-color-simple-products.scss +95 -0
  395. package/components/quotes/quote_view/quote_product_color_simple_products/quote-product-color-simple-products.vue +88 -0
  396. package/components/quotes/quote_view/quote_product_color_simple_products/quote_product_color_simple_product/quote-product-color-simple-product.scss +32 -0
  397. package/components/quotes/quote_view/quote_product_color_simple_products/quote_product_color_simple_product/quote-product-color-simple-product.vue +27 -0
  398. package/components/quotes/quote_view/quote_product_prints/quote-product-prints.scss +67 -0
  399. package/components/quotes/quote_view/quote_product_prints/quote-product-prints.vue +60 -0
  400. package/components/quotes/quote_view/quote_product_prints/quote_product_print/quote-product-print.scss +31 -0
  401. package/components/quotes/quote_view/quote_product_prints/quote_product_print/quote-product-print.vue +78 -0
  402. package/components/quotes/quote_view/quote_view_product/quote-view-product.scss +29 -0
  403. package/components/quotes/quote_view/quote_view_product/quote-view-product.vue +122 -0
  404. package/components/static_page/static-page.scss +11 -0
  405. package/components/static_page/static-page.vue +26 -0
  406. package/components/subscribe/subscribe.scss +23 -0
  407. package/components/subscribe/subscribe.vue +124 -0
  408. package/components/the_aside/the-aside.scss +79 -0
  409. package/components/the_aside/the-aside.vue +95 -0
  410. package/components/the_breadcrumbs/the-breadcrumbs.scss +36 -0
  411. package/components/the_breadcrumbs/the-breadcrumbs.vue +78 -0
  412. package/components/the_changes_saved_indicator/the-changes-saved-indicator.scss +60 -0
  413. package/components/the_changes_saved_indicator/the-changes-saved-indicator.vue +55 -0
  414. package/components/the_footer/the-footer.scss +96 -0
  415. package/components/the_footer/the-footer.vue +86 -0
  416. package/components/the_navbar/the-navbar.scss +43 -0
  417. package/components/the_navbar/the-navbar.vue +45 -0
  418. package/middleware/notAuthenticated.js +5 -0
  419. package/middleware/page-info.js +11 -0
  420. package/middleware/setVH.js +11 -0
  421. package/mixins/confirm.js +39 -0
  422. package/mixins/meta-info.js +93 -0
  423. package/mixins/modals.js +117 -0
  424. package/mixins/payment.js +84 -0
  425. package/mixins/product-preview.js +69 -0
  426. package/mixins/products-price.js +82 -0
  427. package/nuxt.config.js +119 -0
  428. package/package.json +14 -8
  429. package/pages/quotes/view/_id.js +20 -0
  430. package/plugins/aos-animation.js +39 -0
  431. package/plugins/aos.js +12 -0
  432. package/plugins/directives.js +10 -0
  433. package/plugins/error-handler.js +6 -0
  434. package/plugins/global-components.js +14 -0
  435. package/plugins/jsonld.js +4 -0
  436. package/plugins/save-state.js +38 -0
  437. package/plugins/vee-validate.js +20 -0
  438. package/plugins/vue-click-outside.js +4 -0
  439. package/plugins/vue-color.js +4 -0
  440. package/plugins/vue-fragment.js +4 -0
  441. package/plugins/vue-hummer.js +7 -0
  442. package/plugins/vue-js-modal.js +15 -0
  443. package/plugins/vue-multiselect.js +4 -0
  444. package/plugins/vue-recaptcha.js +18 -0
  445. package/plugins/vue-tables-2.js +6 -0
  446. package/plugins/vue-toastr.js +7 -0
  447. package/plugins/vue-tooltip.js +4 -0
  448. package/static/fonts/archivo_black.woff2 +0 -0
  449. package/static/fonts/open_sans_bold.woff2 +0 -0
  450. package/static/fonts/orbitron_medium.woff +0 -0
  451. package/static/icons/arrow-left.svg +3 -0
  452. package/static/icons/arrow-right.svg +3 -0
  453. package/static/icons/back_hoodie.svg +3 -0
  454. package/static/icons/back_hoodie_a3.svg +4 -0
  455. package/static/icons/back_hoodie_a4_v.svg +4 -0
  456. package/static/icons/back_hoodie_half_a4_h.svg +4 -0
  457. package/static/icons/back_hoodie_rect10_l.svg +4 -0
  458. package/static/icons/back_polo.svg +3 -0
  459. package/static/icons/back_polo_a3.svg +4 -0
  460. package/static/icons/back_polo_a4_v.svg +4 -0
  461. package/static/icons/back_polo_half_a4_h.svg +4 -0
  462. package/static/icons/back_polo_rect10_l.svg +4 -0
  463. package/static/icons/back_tee.svg +3 -0
  464. package/static/icons/back_tee_a3.svg +4 -0
  465. package/static/icons/back_tee_a4_v.svg +4 -0
  466. package/static/icons/back_tee_half_a4_h.svg +4 -0
  467. package/static/icons/back_tee_rect10_l.svg +4 -0
  468. package/static/icons/calc_delivery_price.svg +13 -0
  469. package/static/icons/calc_print_price.svg +17 -0
  470. package/static/icons/calc_tee_price.svg +5 -0
  471. package/static/icons/calc_total_price.svg +6 -0
  472. package/static/icons/delivery.svg +12 -0
  473. package/static/icons/error.svg +4 -0
  474. package/static/icons/front_hoodie.svg +3 -0
  475. package/static/icons/front_hoodie_a3.svg +4 -0
  476. package/static/icons/front_hoodie_a4_v.svg +4 -0
  477. package/static/icons/front_hoodie_half_a4_h.svg +4 -0
  478. package/static/icons/front_hoodie_rect10_l.svg +4 -0
  479. package/static/icons/front_polo.svg +3 -0
  480. package/static/icons/front_polo_a3.svg +4 -0
  481. package/static/icons/front_polo_a4_v.svg +4 -0
  482. package/static/icons/front_polo_half_a4_h.svg +4 -0
  483. package/static/icons/front_polo_rect10_l.svg +4 -0
  484. package/static/icons/front_tee.svg +3 -0
  485. package/static/icons/front_tee_a3.svg +4 -0
  486. package/static/icons/front_tee_a4_v.svg +4 -0
  487. package/static/icons/front_tee_half_a4_h.svg +4 -0
  488. package/static/icons/front_tee_rect10_l.svg +4 -0
  489. package/static/icons/garments.svg +4 -0
  490. package/static/icons/general.svg +25 -0
  491. package/static/icons/other.svg +8 -0
  492. package/static/icons/printing.svg +9 -0
  493. package/static/icons/product_hoodie.svg +4 -0
  494. package/static/icons/product_polo.svg +4 -0
  495. package/static/icons/product_tee.svg +4 -0
  496. package/static/icons/rotate.png +0 -0
  497. package/static/icons/star_gray.svg +3 -0
  498. package/static/icons/star_green.svg +3 -0
  499. package/static/icons/success.svg +4 -0
  500. package/static/images/american-express.svg +8 -0
  501. package/static/images/catalog_bg.png +0 -0
  502. package/static/images/check.svg +51 -0
  503. package/static/images/fonts-bengali-sprite.png +0 -0
  504. package/static/images/fonts-gujarati-sprite.png +0 -0
  505. package/static/images/fonts-hebrew-sprite.png +0 -0
  506. package/static/images/fonts-hindi-sprite.png +0 -0
  507. package/static/images/fonts-kannada-sprite.png +0 -0
  508. package/static/images/fonts-malyalam-sprite.png +0 -0
  509. package/static/images/fonts-marathi-sprite.png +0 -0
  510. package/static/images/fonts-oriya-sprite.png +0 -0
  511. package/static/images/fonts-sprite.png +0 -0
  512. package/static/images/fonts-tamil-sprite.png +0 -0
  513. package/static/images/fonts-telugu-sprite.png +0 -0
  514. package/static/images/jcb.svg +8 -0
  515. package/static/images/logo.png +0 -0
  516. package/static/images/logo.svg +13 -0
  517. package/static/images/maestro.svg +11 -0
  518. package/static/images/mastercard.svg +23 -0
  519. package/static/images/measurements_model.svg +9 -0
  520. package/static/images/packaging_quantity.svg +8 -0
  521. package/static/images/packaging_size.svg +6 -0
  522. package/static/images/packaging_weight.svg +4 -0
  523. package/static/images/paid.svg +5 -0
  524. package/static/images/paypal.svg +9 -0
  525. package/static/images/price_calc_example.png +0 -0
  526. package/static/images/pricing-header.png +0 -0
  527. package/static/images/pricing_garment_tee.png +0 -0
  528. package/static/images/tear-away-tag.svg +5 -0
  529. package/static/images/tee.svg +4 -0
  530. package/static/images/tee_label_1.svg +4 -0
  531. package/static/images/tee_label_2.svg +8 -0
  532. package/static/images/tee_size.svg +9 -0
  533. package/static/images/tee_with_1_label.svg +11 -0
  534. package/static/images/tee_with_2_labels.svg +13 -0
  535. package/static/images/tee_with_no_labels.svg +5 -0
  536. package/static/images/trasnparent-pattern.png +0 -0
  537. package/static/images/type_here.png +0 -0
  538. package/static/images/visa.svg +13 -0
  539. package/static/images/watermark.png +0 -0
  540. package/store/auth.js +70 -0
  541. package/store/cart.js +154 -0
  542. package/store/index.js +108 -0
  543. package/store/layers.js +28 -0
  544. package/store/order.js +55 -0
  545. package/store/page.js +22 -0
  546. package/store/product.js +373 -0
  547. package/store/products.js +91 -0
  548. package/store/quote.js +72 -0
  549. package/lib/module.js +0 -57
@@ -0,0 +1,4 @@
1
+ <svg width="48" height="50" viewBox="0 0 48 50" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M21.9916 4.29424H26.0644C26.5005 4.29424 26.8538 3.94072 26.8538 3.50479C26.8538 3.06875 26.5005 2.71533 26.0644 2.71533H21.9916C21.5555 2.71533 21.2021 3.06885 21.2021 3.50479C21.2021 3.94072 21.5555 4.29424 21.9916 4.29424Z" fill="#575872"/>
3
+ <path d="M47.5069 18.8178L44.7904 7.62568C44.7634 7.51494 44.1027 4.90029 41.505 3.79629C39.6248 2.99727 33.6783 0.739746 32.1894 0.175977C32.0538 0.0661133 31.8811 0 31.6929 0H31.5798H16.4199C16.3946 0 16.3695 0.00136719 16.3443 0.00380859C16.3334 0.00488281 16.3228 0.00673828 16.3121 0.00820312C16.2983 0.0100586 16.2845 0.0119141 16.2708 0.0145508C16.258 0.0169922 16.2454 0.0202148 16.2328 0.0232422C16.2215 0.0259766 16.2102 0.0287109 16.199 0.0318359C16.1859 0.0356445 16.1732 0.0400391 16.1603 0.0444336C16.1538 0.0467773 16.1471 0.0484375 16.1406 0.0508789C15.8339 0.166797 8.60425 2.89961 6.49448 3.79629C3.99702 4.85781 3.29038 7.31445 3.21567 7.60059C3.21567 7.60068 3.21567 7.60078 3.21558 7.60088C3.21421 7.60625 3.21314 7.61045 3.21206 7.61426C3.21069 7.61943 3.20972 7.62354 3.20923 7.62549L1.27876 15.5791C1.27876 15.5791 1.27876 15.5791 1.27876 15.5792L0.492627 18.8179C0.399756 19.2002 0.602686 19.5925 0.968409 19.7378L8.72915 22.8208V46.0011V49.2105C8.72915 49.6467 9.08257 50 9.5186 50H38.4808C38.9169 50 39.2703 49.6467 39.2703 49.2105V46.0011V30.9695C39.2703 30.5335 38.9169 30.1801 38.4808 30.1801C38.0447 30.1801 37.6914 30.5336 37.6914 30.9695V45.2115H18.2888C17.8527 45.2115 17.4994 45.5649 17.4994 46.001C17.4994 46.437 17.8527 46.7904 18.2888 46.7904H37.6915V48.421H10.3083V46.7904H15.6573C16.0934 46.7904 16.4467 46.4369 16.4467 46.001C16.4467 45.5648 16.0934 45.2115 15.6573 45.2115H10.3083V22.2848V18.8994V12.7818C10.3083 12.6378 10.2689 12.4966 10.1944 12.3733L6.21294 5.78887C6.46997 5.58232 6.76792 5.3959 7.11235 5.24951C8.72866 4.5626 13.5753 2.71357 15.6917 1.90986C16.1995 6.57559 19.8232 10.3279 24.0565 10.3279C28.2772 10.3279 31.8924 6.59766 32.4169 1.95107C34.5864 2.77529 39.2983 4.57402 40.8876 5.24941C41.232 5.3958 41.5298 5.58223 41.787 5.78877L37.8056 12.3731C37.7311 12.4964 37.6917 12.6377 37.6917 12.7816V18.8992V22.2847V28.3379C37.6917 28.774 38.0452 29.1273 38.4812 29.1273C38.9173 29.1273 39.2707 28.774 39.2707 28.3379V22.8205L47.0314 19.7375C47.3967 19.5924 47.5997 19.2001 47.5069 18.8178ZM8.72935 21.1217L2.18901 18.5234L2.59487 16.8516L8.72925 19.4243V21.1217H8.72935ZM8.72935 13.0019V17.7121L2.97212 15.2976L4.74302 8.00156C4.74526 7.99268 4.85278 7.58555 5.14282 7.07051L8.72935 13.0019ZM24.0564 8.74893C20.936 8.74893 17.6075 5.90078 17.2424 1.57891H30.8706C30.5053 5.90088 27.1768 8.74893 24.0564 8.74893ZM39.2705 13.0019L42.8571 7.07031C43.047 7.40752 43.1588 7.69834 43.2135 7.86045C43.2136 7.86094 43.2138 7.86143 43.214 7.86191C43.2192 7.87725 43.2237 7.89121 43.2279 7.9041C43.2287 7.90654 43.2295 7.90908 43.2302 7.91143C43.2335 7.92168 43.2364 7.93086 43.2389 7.93936C43.24 7.94258 43.2411 7.94619 43.2419 7.94922C43.2441 7.95615 43.2459 7.9623 43.2474 7.96777C43.2482 7.97031 43.249 7.97334 43.2497 7.97559C43.2509 7.97998 43.2519 7.9834 43.2527 7.98652C43.2532 7.98838 43.254 7.99092 43.2543 7.99238C43.2551 7.99512 43.2557 7.99766 43.2558 7.99805L45.0276 15.2977L39.2704 17.7122V13.0019H39.2705ZM39.2705 21.1217V19.4243L45.4048 16.8516L45.8106 18.5235L39.2705 21.1217Z" fill="#575872"/>
4
+ </svg>
Binary file
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="22" viewBox="0 0 24 22" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 0L15.5267 7.1459L23.4127 8.2918L17.7063 13.8541L19.0534 21.7082L12 18L4.94658 21.7082L6.29366 13.8541L0.587322 8.2918L8.47329 7.1459L12 0Z" fill="#F4F4F4"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="22" viewBox="0 0 24 22" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 0L15.5267 7.1459L23.4127 8.2918L17.7063 13.8541L19.0534 21.7082L12 18L4.94658 21.7082L6.29366 13.8541L0.587322 8.2918L8.47329 7.1459L12 0Z" fill="#D2EC5C"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="70" height="70" viewBox="0 0 70 70" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="35" cy="35" r="33.5" stroke="#38C88D" stroke-width="3"/>
3
+ <path d="M21 37.2925L32.3077 47.6L50.4 21" stroke="#38C88D" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="36" height="24" viewBox="0 0 36 24">
2
+ <g fill="none" fill-rule="evenodd">
3
+ <rect width="36" height="24" fill="#FFF" rx="4"/>
4
+ <g fill="#0072CE">
5
+ <path d="M36 14.314h-1.844c-.184 0-.306.007-.41.079-.106.07-.147.175-.147.314 0 .165.09.277.22.325.108.039.222.05.39.05l.55.015c.553.014.922.112 1.147.352.041.033.066.07.094.108v-1.243zm0 2.88c-.246.37-.725.559-1.373.559h-1.954v-.937h1.946c.193 0 .328-.026.41-.108a.39.39 0 0 0 .12-.285.364.364 0 0 0-.124-.289c-.074-.067-.18-.097-.357-.097-.95-.033-2.135.03-2.135-1.352 0-.634.39-1.3 1.451-1.3H36v-.87h-1.873c-.565 0-.975.14-1.266.357v-.357h-2.77c-.443 0-.963.113-1.209.357v-.357h-4.946v.357c-.394-.293-1.058-.357-1.364-.357h-3.263v.357c-.311-.312-1.004-.357-1.426-.357h-3.651l-.836.933-.783-.933H7.16v6.096h5.352l.86-.948.812.948 3.299.003V17.18h.324c.438.007.954-.011 1.41-.214v1.645h2.72v-1.589h.132c.167 0 .184.007.184.18v1.409h8.265c.525 0 1.074-.139 1.377-.39v.39h2.622c.546 0 1.079-.08 1.484-.281v-1.136zm-4.036-1.745c.197.21.302.476.302.925 0 .94-.569 1.379-1.589 1.379h-1.97v-.937h1.962c.192 0 .328-.026.413-.108a.393.393 0 0 0 .12-.285.38.38 0 0 0-.124-.289c-.077-.067-.184-.097-.36-.097-.946-.033-2.131.03-2.131-1.352 0-.634.386-1.3 1.446-1.3h2.029v.929h-1.856c-.184 0-.304.007-.406.079-.11.07-.152.176-.152.314 0 .165.095.277.222.326.107.038.221.05.394.05l.544.014c.55.014.927.112 1.156.352zm-9.13-.27c-.136.083-.303.09-.5.09h-1.23v-.981h1.247c.18 0 .36.004.482.079.132.07.21.206.21.393 0 .186-.078.337-.21.419zm.61.544c.226.085.41.24.496.366.143.214.164.413.168.798v.866h-1.016v-.547c0-.263.025-.652-.164-.855-.147-.156-.373-.194-.742-.194h-1.081v1.596h-1.017v-4.369h2.336c.512 0 .885.023 1.218.206.319.2.52.472.52.97 0 .698-.451 1.054-.717 1.163zm1.279-2.339H28.1v.904h-2.37v.794h2.312v.891H25.73v.87l2.37.003v.907h-3.377v-4.369zM17.896 15.4h-1.308v-1.112h1.32c.365 0 .619.153.619.535 0 .378-.242.577-.631.577zm-2.316 1.956l-1.553-1.78 1.553-1.723v3.503zm-4.012-.514H9.081v-.869h2.221v-.891H9.081v-.794h2.536l1.107 1.273-1.156 1.281zm8.045-2.019c0 1.214-.878 1.465-1.762 1.465h-1.263v1.465h-1.966l-1.246-1.446-1.295 1.446H8.073v-4.369h4.07l1.244 1.432 1.287-1.432h3.234c.803 0 1.705.23 1.705 1.44zM3.245 8.35l-.692-1.742-.69 1.741h1.382zm15.257-.694c-.139.087-.303.09-.5.09h-1.23v-.97h1.246c.177 0 .36.008.48.078.131.064.213.2.213.387 0 .19-.078.344-.209.415zm8.77.693l-.701-1.741-.696 1.741h1.396zm-16.347 1.885H9.888l-.004-3.42-1.467 3.42h-.889L6.058 6.81v3.424H3.998L3.61 9.26H1.504l-.393.974H.01l1.813-4.368h1.503l1.721 4.136V5.866H6.7L8.024 8.83 9.24 5.866h1.685v4.368zm4.134 0h-3.38V5.866h3.38v.91h-2.368v.787h2.312v.895H12.69v.873h2.368v.903zm4.766-3.192c0 .697-.45 1.057-.713 1.165.222.087.41.24.5.368.144.217.168.41.168.8v.859h-1.02l-.004-.55c0-.264.024-.642-.16-.852-.148-.153-.373-.187-.737-.187h-1.087v1.589h-1.011V5.866h2.327c.517 0 .898.014 1.225.21.32.194.512.48.512.966zm1.62 3.192h-1.033V5.866h1.033v4.368zm11.977 0H31.99L30.07 6.956v3.278H28.01l-.394-.974h-2.102l-.382.974h-1.184c-.492 0-1.114-.112-1.467-.483-.356-.371-.54-.873-.54-1.668 0-.647.11-1.24.545-1.708.327-.348.84-.509 1.536-.509h.98v.936h-.959c-.37 0-.578.057-.779.259-.172.184-.29.531-.29.99 0 .467.09.805.278 1.025.155.173.439.225.705.225h.454l1.426-3.435h1.517l1.713 4.132V5.866h1.54l1.779 3.042V5.866h1.036v4.368zM0 11.092H1.73l.39-.97h.873l.388.97h3.402v-.742l.304.745H8.85l.304-.756v.753h8.454l-.004-1.593h.163c.115.004.148.015.148.21v1.383h4.373v-.37c.352.194.9.37 1.623.37h1.84l.393-.97h.873l.384.97h3.545v-.922l.537.922h2.84V5h-2.81v.72L31.12 5h-2.885v.72L27.874 5h-3.897c-.652 0-1.225.094-1.688.356V5h-2.69v.356c-.294-.27-.695-.356-1.142-.356H8.634l-.66 1.573L7.299 5H4.204v.72L3.864 5H1.225L0 7.896v3.196z"/>
6
+ </g>
7
+ </g>
8
+ </svg>
Binary file
@@ -0,0 +1,51 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
3
+ viewBox="0 0 18 15" style="enable-background:new 0 0 18 15;" xml:space="preserve">
4
+ <style type="text/css">
5
+ .st0{clip-path:url(#SVGID_2_);}
6
+ .st1{clip-path:url(#SVGID_4_);fill:#1D1D1B;}
7
+ .st2{clip-path:url(#SVGID_6_);}
8
+ .st3{clip-path:url(#SVGID_8_);fill:#FAFAFA;}
9
+ </style>
10
+ <g>
11
+ <defs>
12
+ <path id="SVGID_1_" d="M16.5,3.8c0-0.6-0.2-1.2-0.7-1.7c-0.9-0.9-2.3-0.9-3.2-0.1c0,0,0,0-0.1,0.1L7,7.8L5.4,6.2
13
+ c-0.9-0.9-2.4-0.9-3.3,0c-0.4,0.4-0.7,1-0.7,1.7s0.2,1.2,0.7,1.7l3.2,3.2c0,0,0,0,0,0c0.4,0.4,1,0.7,1.6,0.7
14
+ c0.5,0,1.1-0.2,1.5-0.5c0.1,0,0.1-0.1,0.2-0.2c0,0,0,0,0,0l7.2-7.3c0,0,0,0,0,0C16.3,5,16.5,4.5,16.5,3.8 M3.3,7.4
15
+ c0.3-0.3,0.8-0.3,1.1,0l2.1,2.1c0,0,0,0,0.1,0.1C6.7,9.7,6.8,9.7,7,9.7s0.3-0.1,0.5-0.2c0,0,0,0,0.1-0.1l6.1-6.2c0,0,0,0,0,0
16
+ C14,3,14.4,3,14.7,3.3c0.1,0.1,0.2,0.3,0.2,0.5c0,0.2-0.1,0.4-0.2,0.5c0,0,0,0,0,0l-7.2,7.3c-0.1,0.1-0.3,0.2-0.5,0.2
17
+ c-0.2,0-0.4-0.1-0.5-0.2L3.3,8.4C3.1,8.3,3.1,8.1,3.1,7.9C3.1,7.7,3.1,7.5,3.3,7.4"/>
18
+ </defs>
19
+ <clipPath id="SVGID_2_">
20
+ <use xlink:href="#SVGID_1_" style="overflow:visible;"/>
21
+ </clipPath>
22
+ <g class="st0">
23
+ <defs>
24
+ <rect id="SVGID_3_" x="-112.7" y="-687.1" width="1190.6" height="1885.3"/>
25
+ </defs>
26
+ <clipPath id="SVGID_4_">
27
+ <use xlink:href="#SVGID_3_" style="overflow:visible;"/>
28
+ </clipPath>
29
+ <rect x="-3.4" y="-3.5" class="st1" width="24.8" height="21.9"/>
30
+ </g>
31
+ </g>
32
+ <g>
33
+ <defs>
34
+ <path id="SVGID_5_" d="M3.3,7.4c0.3-0.3,0.8-0.3,1.1,0l2.1,2.1c0,0,0,0,0.1,0.1C6.7,9.7,6.8,9.7,7,9.7s0.3-0.1,0.5-0.2
35
+ c0,0,0,0,0.1-0.1l6.1-6.2c0,0,0,0,0,0C14,3,14.4,3,14.7,3.3c0.1,0.1,0.2,0.3,0.2,0.5c0,0.2-0.1,0.4-0.2,0.5c0,0,0,0,0,0l-7.2,7.3
36
+ c-0.1,0.1-0.3,0.2-0.5,0.2c-0.2,0-0.4-0.1-0.5-0.2L3.3,8.4C3.1,8.3,3.1,8.1,3.1,7.9C3.1,7.7,3.1,7.5,3.3,7.4"/>
37
+ </defs>
38
+ <clipPath id="SVGID_6_">
39
+ <use xlink:href="#SVGID_5_" style="overflow:visible;"/>
40
+ </clipPath>
41
+ <g class="st2">
42
+ <defs>
43
+ <rect id="SVGID_7_" x="-112.7" y="-687.1" width="1190.6" height="1885.3"/>
44
+ </defs>
45
+ <clipPath id="SVGID_8_">
46
+ <use xlink:href="#SVGID_7_" style="overflow:visible;"/>
47
+ </clipPath>
48
+ <rect x="-1.8" y="-1.9" class="st3" width="21.7" height="18.8"/>
49
+ </g>
50
+ </g>
51
+ </svg>
Binary file
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="36" height="24" viewBox="0 0 36 24">
2
+ <g fill="none" fill-rule="evenodd">
3
+ <rect width="36" height="24" fill="#FFF" rx="4"/>
4
+ <path fill="#54B230" d="M24.055 11.554H25.709a.97.97 0 0 1 .136.01.803.803 0 0 1 .044.008l.011.002a.688.688 0 0 1 .191.072.728.728 0 0 1 .356.462.736.736 0 0 1-.164.65.718.718 0 0 1-.383.22l-.01.003a.358.358 0 0 1-.045.007 1.197 1.197 0 0 1-.136.011H24.055v-1.445zm2.2-1.637a.696.696 0 0 1-.082.507.64.64 0 0 1-.3.252.7.7 0 0 1-.164.049l-.007.001a.467.467 0 0 1-.075.008 1.468 1.468 0 0 1-.082.004H24.055V9.404H25.572a1.206 1.206 0 0 1 .13.012l.007.001a.706.706 0 0 1 .492.35.628.628 0 0 1 .054.15zM29.645 3h.011v13.7a2.682 2.682 0 0 1-.558 1.634l-.027.035a2.88 2.88 0 0 1-.082.098l-.028.031a2.88 2.88 0 0 1-.082.088l-.027.027-.027.027-.028.026-.027.025a2.863 2.863 0 0 1-.164.14l-.027.02-.028.021-.027.02-.027.02-.028.02-.027.018-.027.018-.028.018-.027.017a2.66 2.66 0 0 1-.082.05l-.027.015-.028.015-.027.015-.027.015-.028.014-.027.014-.027.013-.028.013-.027.013-.027.012-.028.012-.027.012-.027.011-.028.01-.027.012-.027.01-.028.01-.027.01-.027.009-.028.01-.027.008-.027.008-.028.009-.027.007-.027.008-.028.007-.027.007-.027.007-.028.007-.027.006-.027.006-.028.005-.027.006-.027.005-.028.005-.027.004-.027.005-.028.003-.027.004-.027.004-.028.003-.027.003c-.01 0-.018.002-.027.003l-.028.002-.027.002-.027.002-.028.002-.027.002h-.027l-.028.002h-.082l-.005.001H22.67v-5.586H27.103l.027-.001h.027l.028-.002.027-.001.027-.002.028-.002.027-.002.027-.002.028-.003.027-.003.027-.003.028-.003.027-.004.027-.004.028-.005.027-.005.027-.005.028-.005.027-.006.027-.006.028-.006a2.15 2.15 0 0 0 .11-.03l.026-.008a1.793 1.793 0 0 0 .082-.027l.028-.01.027-.01.027-.011a1.77 1.77 0 0 0 .465-.281 1.372 1.372 0 0 0 .246-.289 1.164 1.164 0 0 0 .164-.457 1.282 1.282 0 0 0 0-.348 1.13 1.13 0 0 0-.246-.554 1.23 1.23 0 0 0-.246-.23 1.63 1.63 0 0 0-.383-.208l-.027-.01a2.109 2.109 0 0 0-.027-.01l-.028-.01a2.475 2.475 0 0 0-.109-.035l-.027-.008a2.163 2.163 0 0 0-.164-.04l-.028-.005-.027-.005-.027-.004a2.148 2.148 0 0 0-.028-.005l-.027-.004a2.213 2.213 0 0 0-.027-.004l-.028-.003-.027-.004-.027-.003-.028-.003-.027-.002-.027-.002-.026-.002v-.032l.026-.004.027-.004.027-.005.028-.005a2 2 0 0 0 .027-.005l.027-.006.028-.006.027-.007a1.975 1.975 0 0 0 .355-.127 1.65 1.65 0 0 0 .246-.15 1.315 1.315 0 0 0 .246-.249 1.187 1.187 0 0 0 .164-.312 1.138 1.138 0 0 0 .062-.378 1.3 1.3 0 0 0-.034-.292 1.105 1.105 0 0 0-.52-.697 1.407 1.407 0 0 0-.246-.126 2.012 2.012 0 0 0-.19-.067l-.028-.008a2.066 2.066 0 0 0-.055-.014l-.027-.007a2.064 2.064 0 0 0-.055-.012l-.027-.006-.028-.005-.027-.005-.027-.005-.028-.004-.027-.004-.027-.004-.028-.004-.027-.003-.027-.003-.028-.002-.027-.002-.027-.003-.028-.001-.027-.002h-.01l-.017-.001-.028-.002-.027-.002h-.027l-.028-.002-.027-.001-.027-.001-.028-.001h-.027l-.027-.001H22.67V5.74a2.666 2.666 0 0 1 .496-1.55l.028-.037.027-.037.027-.035.028-.034.027-.033a2.49 2.49 0 0 1 .055-.064l.027-.03.027-.029a2.978 2.978 0 0 1 .11-.11l.027-.025.027-.025.028-.024.027-.023.027-.024a2.918 2.918 0 0 1 .082-.065l.028-.02.027-.021a2.95 2.95 0 0 1 .055-.04l.027-.018a2.55 2.55 0 0 1 .027-.018l.028-.018.027-.018a2.68 2.68 0 0 1 .027-.017l.028-.016.027-.017.027-.015.028-.016.027-.014.027-.015.028-.014.027-.014.027-.014.028-.013.027-.013.027-.012.028-.012.027-.012.027-.011.028-.011.027-.011.027-.01.028-.01.027-.01.027-.01.028-.009.027-.009.027-.008.028-.009.027-.008.028-.007.027-.008.027-.007.028-.007.027-.006.027-.007.028-.005.027-.006.027-.006.028-.005.027-.005.027-.004.028-.005c.009 0 .018-.002.027-.004l.027-.003.028-.004.027-.003.027-.003.028-.003.027-.003.027-.002.028-.002.027-.002.027-.001.028-.001.027-.001.027-.001h.055L25.497 3H29.645z"/>
5
+ <path fill="#006CB9" d="M7 12.508V5.74a2.666 2.666 0 0 1 .495-1.548l.027-.038.028-.036.027-.035.027-.035c.01-.01.018-.022.028-.033a2.652 2.652 0 0 1 .054-.063l.028-.03.027-.03.027-.028a2.669 2.669 0 0 1 .055-.055l.027-.026.027-.026.027-.024.028-.025.027-.023.027-.023.028-.022a2.61 2.61 0 0 1 .136-.104l.027-.02a2.59 2.59 0 0 1 .11-.072l.027-.017.027-.017.027-.016.028-.016.027-.015.027-.015.028-.015.027-.014.027-.014a2.84 2.84 0 0 1 .027-.013l.028-.013.027-.013.027-.013.028-.012.027-.011.027-.012.027-.01.028-.012.027-.01.027-.01.028-.01.027-.01.027-.009.027-.009.028-.008.027-.009.027-.007.028-.008.027-.008.027-.007.027-.007.028-.006.027-.007.027-.005.028-.006.027-.006.027-.005.027-.005.028-.004.027-.005.027-.004.028-.004.027-.004.027-.003.027-.003c.01 0 .019-.002.028-.003l.027-.002.027-.003.028-.002.027-.001.027-.002.027-.001.028-.001L9.76 3h.055L9.842 3H13.985v13.7a2.68 2.68 0 0 1-.623 1.716c-.01.01-.018.022-.027.033l-.028.03-.027.031-.027.03-.028.028-.027.029a2.837 2.837 0 0 1-.082.079l-.027.025-.027.024-.028.024-.027.023-.027.023-.027.022-.028.021-.027.021-.027.02-.028.02-.027.02-.027.02c-.01.005-.018.011-.027.017l-.028.019-.027.017-.027.017-.028.017-.027.016-.027.016-.027.016-.028.015a2.488 2.488 0 0 1-.054.029l-.028.014-.027.013c-.009.005-.018.01-.027.013l-.027.014-.028.012-.027.012-.027.012-.028.011-.027.012-.027.01-.027.011-.028.01-.027.01-.027.01-.028.009-.027.01-.027.008-.027.008-.028.008-.027.008-.027.007-.028.008-.027.007-.027.006-.027.007-.028.006-.027.005-.027.006-.028.005-.027.005-.027.005-.027.004-.028.005-.027.004-.027.003-.028.004-.027.003-.027.003-.027.002-.028.003-.027.002-.027.002-.028.001-.027.002h-.027l-.028.002h-.054l-.025.001H7v-5.775l.059.015.027.007.027.006.027.006.028.007.027.006.027.006.028.006.027.006.027.005.027.006.028.006.027.005.027.006.028.005.027.006.027.005.027.005.028.005.027.005.027.005.028.005.027.005.027.005.028.005.027.004.027.005.027.005.028.004.027.005.027.004.027.004.028.005.027.004.027.004.028.004.027.004.027.004.028.004.027.004.027.004.027.003.028.004.027.004.027.003.028.004.027.003.027.004.027.003.028.003.027.004.027.003.028.003.027.003.027.003.027.003.028.003.027.003.027.002.028.003.027.003.027.002.027.003.028.003.027.002.027.002.028.003.027.002.027.002.027.002.028.002.027.002.027.002.028.002.027.002.027.002.027.002.028.001.027.002.027.002.028.001.027.002.027.001.027.001.028.002h.027l.027.002.028.001.027.001.027.001.027.001.028.001h.027l.027.002h.055l.027.001h.027l.028.001h.054l.028.001h.245l.027-.001h.028l.027-.001h.027l.028-.002h.027L10.25 14l.027-.001.028-.001.027-.001.027-.002h.028l.027-.002.027-.002.027-.001.028-.002.027-.002.027-.001.028-.002.027-.002.027-.002.027-.003.028-.002.027-.002.027-.003.028-.002.027-.003.027-.003.027-.003.028-.003.027-.003.027-.003.028-.003.027-.004.027-.003.027-.004.028-.004.027-.004.027-.004.028-.004.027-.005.027-.004.027-.004.028-.005.027-.005.027-.005.028-.005.027-.006.027-.005.028-.006.027-.006.027-.006.027-.006.028-.006.027-.007.027-.006.028-.007.027-.007.027-.007.027-.008.028-.007.027-.008.027-.008.028-.008.027-.009.027-.008.027-.01.028-.008.027-.01.027-.01.028-.01.027-.01.027-.01.027-.01.028-.012.027-.01.027-.013.028-.012.027-.012.027-.013.027-.012.028-.014.027-.014c.01-.004.018-.009.027-.014a2.61 2.61 0 0 0 .082-.045l.027-.016.028-.016.027-.017.027-.017.028-.018.027-.019.027-.019.027-.02a2.013 2.013 0 0 0 .082-.064l.028-.022.027-.024.027-.025a1.765 1.765 0 0 0 .055-.052l.027-.028.027-.03a1.724 1.724 0 0 0 .382-.67 1.977 1.977 0 0 0 .082-.412c.01-.09.014-.18.014-.273v-3.18h-2.415l-.02 3.18a1.619 1.619 0 0 1-.035.326 1.377 1.377 0 0 1-.136.362 1.227 1.227 0 0 1-.682.561 1.649 1.649 0 0 1-.137.043l-.027.007a1.703 1.703 0 0 1-.164.033l-.027.004a2.094 2.094 0 0 1-.055.007l-.027.003-.027.003-.027.002a2.158 2.158 0 0 1-.055.003l-.027.002h-.028l-.027.001h-.136l-.028-.001-.027-.001-.027-.001-.027-.002h-.028l-.027-.002-.027-.002-.028-.002-.027-.002-.027-.002-.027-.003-.028-.002-.027-.003-.027-.003-.028-.003-.027-.003-.027-.003-.027-.004-.028-.003-.027-.004-.027-.004-.028-.004-.027-.005-.027-.004-.027-.005-.028-.004-.027-.005-.027-.005-.028-.006-.027-.005-.027-.005-.027-.006-.028-.006-.027-.006L8.396 13l-.028-.006-.027-.007-.027-.006-.027-.007-.028-.007-.027-.007-.027-.007-.028-.007-.027-.007-.027-.008-.027-.008-.028-.007-.027-.008-.027-.008-.028-.009-.027-.008-.027-.008-.028-.01-.027-.008-.027-.009-.027-.009-.028-.009-.027-.01-.027-.009-.027-.01-.028-.009-.027-.01-.027-.01-.028-.01-.027-.01-.027-.01-.028-.01-.027-.011-.027-.011-.027-.01-.028-.012-.027-.011-.027-.011-.028-.011-.027-.012-.027-.011-.027-.012-.028-.012-.027-.012-.027-.012-.028-.012-.027-.012-.027-.013-.027-.012L7 12.508z"/>
6
+ <path fill="#E10238" d="M14.894 9.28a2.55 2.55 0 0 0-.059.048V5.74a2.666 2.666 0 0 1 .495-1.548l.028-.038.027-.036.027-.035.028-.035.027-.032a2.685 2.685 0 0 1 .054-.064l.028-.03.027-.03a2.727 2.727 0 0 1 .082-.082l.027-.026.027-.026.028-.025.027-.024.027-.024.028-.023.027-.022a3.268 3.268 0 0 1 .245-.179 2.847 2.847 0 0 1 .055-.034l.027-.017.028-.016.027-.016.027-.015.027-.015.028-.015.027-.014c.01-.004.018-.01.027-.014l.028-.013.027-.013.027-.013.027-.012.028-.013.027-.011.027-.012.028-.01.027-.012.027-.01.027-.01.028-.01.027-.01.027-.009.028-.009.027-.008.027-.009.028-.007.027-.008.027-.008.027-.007.028-.007.027-.006.027-.007.028-.005.027-.006.027-.006.027-.005.028-.005.027-.004.027-.005.028-.004.027-.004.027-.003.027-.004.028-.003.027-.003.027-.002.028-.003.027-.002.027-.001.027-.002.028-.001.027-.001.027-.001h.055L17.662 3H21.82v13.7a2.676 2.676 0 0 1-.46 1.498l-.027.04a2.866 2.866 0 0 1-.137.178l-.027.032-.027.032-.028.03-.027.03-.027.028-.027.028-.028.027a2.777 2.777 0 0 1-.054.053l-.028.025-.027.024-.027.024-.027.023-.028.023-.027.022-.027.021-.028.021-.027.02-.027.02-.027.02-.028.019-.027.018-.027.019-.028.017-.027.017-.027.017-.027.016-.028.016-.027.016-.027.015-.028.014-.027.015-.027.014-.027.013-.028.013c-.009.005-.018.01-.027.013l-.027.013-.028.012-.027.012-.027.011-.027.012-.028.01-.027.011-.027.01-.028.01-.027.01-.027.009-.027.009-.028.009-.027.008-.027.008-.028.008-.027.007-.027.008-.027.007-.028.006-.027.007-.027.006-.028.005-.027.006-.027.005-.028.005-.027.005-.027.004-.027.005-.028.004-.027.003-.027.004c-.01 0-.018.002-.028.003l-.027.003-.027.002-.027.003-.028.002-.027.002-.027.001-.028.002h-.027l-.027.002h-.055l-.025.001H14.835v-6.327a2.61 2.61 0 0 0 .113.089l.028.02.027.02a2.8 2.8 0 0 0 .055.037l.027.018.027.018.027.017.028.017.027.016.027.016.028.016.027.015.027.015.027.015.028.014.027.014.027.014.028.013.027.013.027.013.027.013.028.012.027.012.027.012.028.011.027.011.027.011.027.011.028.01.027.011.027.01.028.01.027.01.027.01.027.009.028.009.027.009.027.009.028.008.027.008.027.009.027.008.028.007.027.008.027.008.028.007.027.007.027.007.027.007.028.007.027.007.027.006.028.006.027.006.027.007.027.005.028.006.027.006.027.005.028.006.027.005.027.005.027.005.028.005.027.005.027.004.028.005.027.004.027.005.028.004.027.004.027.004.027.004.028.003.027.004.027.004.028.003.027.004.027.003.027.003.028.003.027.003.027.003.028.003.027.002.027.003.027.003.028.002.027.002.027.003.028.002.027.002.027.002.027.002.028.002.027.001.027.002.028.002.027.001.027.002.027.001.028.001.027.002h.027l.028.002h.027l.027.002h.027l.028.001.027.001h.027l.028.001h.027l.027.001h.027l.028.001H18.44l.028-.001.027-.001h.027l.027-.001h.028l.027-.002h.027L18.66 14l.027-.001.027-.001.027-.001.028-.001.027-.002h.027l.028-.002.027-.001.027-.002.027-.001.028-.002.027-.002.027-.002.028-.002.027-.002.027-.002.027-.002.028-.002.027-.002.027-.003.028-.002.027-.003.027-.002.027-.003.028-.003.027-.003.027-.003.028-.003.027-.003.027-.003.027-.003.028-.003.027-.004.027-.003.028-.003.027-.004.027-.003.028-.004.027-.004.027-.003.027-.004.028-.004.027-.004.027-.004.028-.004.027-.004.027-.004.027-.004.028-.005.027-.004.027-.004.028-.005.027-.004.027-.005.027-.004.028-.005.027-.005.027-.004.028-.005.027-.005.027-.005.027-.005.028-.005.027-.005.027-.005.028-.005.027-.005.027-.006.027-.005.028-.005.027-.006.027-.005.028-.006.027-.005.027-.006.027-.005.028-.006.027-.006.027-.006.028-.006.027-.006.027-.006.027-.006.028-.006.027-.006.027-.007.027-.006v-1.16l-.027.014-.027.013-.027.013-.028.013-.027.012-.027.013-.027.012-.028.013-.027.012-.027.012-.028.012-.027.011-.027.012-.027.012-.028.01-.027.012-.027.011-.028.011-.027.011-.027.01-.027.011-.028.01-.027.01-.027.01-.028.01-.027.01-.027.01-.027.01-.028.009-.027.01-.027.008-.028.009-.027.009-.027.008-.027.009-.028.008-.027.008-.027.008-.028.008-.027.008-.027.007-.027.008-.028.007-.027.007-.027.007-.028.007-.027.006-.027.007-.027.006-.028.006-.027.006-.027.006-.028.006-.027.005-.027.006-.028.005-.027.005-.027.005-.027.005-.028.005-.027.004-.027.005-.028.004-.027.004-.027.004-.027.004-.028.004-.027.003-.027.004-.028.003-.027.003-.027.003-.027.003-.028.003-.027.002-.027.003-.028.002-.027.002-.016.002h-.011l-.027.002-.028.002-.027.001-.027.002h-.028l-.027.002h-.027l-.027.001h-.164l-.027-.001-.028-.001-.027-.001-.027-.002-.028-.001-.027-.002-.027-.002-.027-.002-.028-.003-.027-.003-.027-.003-.028-.003-.027-.003-.027-.004-.028-.004-.027-.004-.027-.005-.027-.005-.028-.005-.027-.005-.027-.006-.028-.006-.027-.006-.027-.007-.027-.007-.028-.007a2.06 2.06 0 0 1-.027-.007l-.027-.008a2.457 2.457 0 0 1-.055-.017l-.027-.01c-.01-.002-.018-.006-.027-.009l-.028-.01-.027-.01-.027-.01-.028-.012-.027-.011-.027-.012a2.363 2.363 0 0 1-.082-.04l-.027-.013-.028-.015-.027-.015a2.039 2.039 0 0 1-.054-.033l-.028-.017-.027-.018a1.686 1.686 0 0 1-.11-.08l-.026-.021a1.61 1.61 0 0 1-.492-.703 1.848 1.848 0 0 1-.082-.302 2.204 2.204 0 0 1-.038-.431 2.491 2.491 0 0 1 .038-.431 2.027 2.027 0 0 1 .11-.374 1.744 1.744 0 0 1 .245-.412 1.64 1.64 0 0 1 .191-.196l.028-.023c.008-.008.018-.015.027-.022a1.816 1.816 0 0 1 .109-.08l.027-.018.028-.017a1.684 1.684 0 0 1 .054-.033l.027-.015.028-.015.027-.014a2.082 2.082 0 0 1 .055-.026l.027-.013.027-.012.027-.011.028-.012.027-.01.027-.01.028-.01.027-.01.027-.009a2.464 2.464 0 0 1 .082-.025l.027-.007.028-.007.027-.007.027-.007.027-.006.028-.006.027-.006.027-.005.028-.005.027-.005.027-.005.027-.004.028-.004.027-.004.027-.003.028-.003.027-.003.027-.003c.01 0 .018-.002.028-.003l.027-.002.027-.002.027-.002.028-.001.027-.002h.027l.028-.002h.027l.027-.001h.164l.027.001.027.001.028.001.027.002.027.001.028.002.027.002h.01l.017.002.027.002.028.002.027.002.027.003.028.003.027.003.027.002.027.004.028.003.027.003.027.004.028.003.027.004.027.004.027.004.028.004.027.005.027.004.028.005.027.005.027.005.027.005.028.005.027.005.027.006.028.006.027.005.027.006.028.007.027.006.027.006.027.007.028.007.027.007.027.007.028.007.027.007.027.008.027.007.028.008.027.008.027.008.028.009.027.008.027.009.027.008.028.01.027.008.027.01.028.009.027.01.027.009.027.01.028.01.027.01.027.01.028.01.027.011.027.01.027.012.028.01.027.012.027.011.028.012.027.011.027.012.027.012.028.012.027.012.027.012.028.013.027.012.027.013.027.013.028.013.027.013.027.013.027.013v-1.16l-.027-.006-.027-.007-.027-.006-.028-.006-.027-.006-.027-.006-.027-.006-.028-.006-.027-.006-.027-.006-.028-.006-.027-.005-.027-.006-.027-.005-.028-.006-.027-.005-.027-.006-.028-.005-.027-.005-.027-.006-.027-.005-.028-.005-.027-.005-.027-.005-.028-.005-.027-.005-.027-.005-.027-.005-.028-.005-.027-.004-.027-.005-.028-.005-.027-.004-.027-.005-.027-.004-.028-.005-.027-.004-.027-.004-.028-.004-.027-.005-.027-.004-.027-.004-.028-.004-.027-.004-.027-.004-.028-.004-.027-.003-.027-.004-.027-.004-.028-.003-.027-.004-.027-.004-.028-.003-.027-.003-.027-.004-.028-.003-.027-.003-.027-.003-.027-.003-.028-.003-.027-.003-.027-.003-.028-.003-.027-.002-.027-.003-.027-.002-.028-.003-.027-.002-.027-.003-.028-.002-.027-.002-.027-.002-.027-.002-.028-.002-.027-.002-.027-.002-.028-.001-.027-.002-.027-.001-.027-.002h-.028l-.014-.001-.013-.001-.027-.001-.028-.001-.027-.001-.027-.001-.027-.001-.028-.001h-.027l-.027-.002h-.055l-.027-.001-.027-.001h-.055l-.027-.001h-.055l-.027-.001h-.219l-.027.001h-.027l-.027.001h-.028l-.027.001-.027.001-.028.001h-.027l-.027.002h-.027l-.028.002-.027.001-.027.001-.028.002h-.027l-.027.002-.027.002-.028.001-.027.002-.027.002-.028.002-.027.002-.027.002-.027.002-.028.002-.027.002-.027.003-.028.002-.027.003-.027.002-.027.003-.028.003-.027.003-.027.003-.028.003-.027.003-.027.003-.027.003-.028.004-.027.003-.027.004-.028.004-.027.004-.027.004-.027.004-.028.004-.027.004-.027.005-.028.004-.027.005-.027.005-.028.005-.027.005-.027.005-.027.005-.028.005-.027.006-.027.006-.028.005-.027.006-.027.006-.027.006-.028.007-.027.006-.027.007-.028.007-.027.006-.027.007-.027.008-.028.007-.027.008-.027.007-.028.008-.027.008-.027.008-.027.009-.028.008-.027.01-.027.008-.028.01-.027.008-.027.01-.027.01-.028.01-.027.01-.027.01-.028.01-.027.011-.027.011-.027.012-.028.011-.027.012-.027.012-.028.012-.027.013-.027.013-.027.013-.028.013-.027.014c-.01.004-.018.01-.027.014l-.028.014-.027.015-.027.015-.027.015a3.232 3.232 0 0 0-.055.032l-.027.016-.028.017-.027.017-.027.018-.027.018a3.22 3.22 0 0 0-.055.038l-.027.019a2.869 2.869 0 0 0-.082.062z"/>
7
+ </g>
8
+ </svg>
Binary file
@@ -0,0 +1,13 @@
1
+ <svg width="183" height="41" viewBox="0 0 183 41" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M59.9271 13.5459L59.6934 14.8161L59.4353 14.8952C58.9642 14.5821 58.4531 14.336 57.9161 14.1637C57.407 14.0014 56.877 13.9165 56.3434 13.9116C55.6782 13.8949 55.0202 14.0551 54.4347 14.3762C53.9199 14.6525 53.4889 15.066 53.1882 15.5723C52.9169 16.0185 52.7689 16.5307 52.7598 17.055C52.7549 17.5739 52.9269 18.0786 53.2467 18.4834C53.5684 18.8954 53.959 19.2468 54.4006 19.5214C54.9997 19.89 55.6209 20.2202 56.2607 20.5099C57.1468 20.9975 57.8723 21.4061 58.4371 21.7356C59.0095 22.1004 59.5058 22.5756 59.8979 23.1344C60.3046 23.7445 60.5123 24.4689 60.4919 25.2053C60.4951 26.0234 60.2652 26.825 59.8297 27.5134C59.3741 28.2417 58.7263 28.8256 57.96 29.1988C57.1174 29.6212 56.1875 29.833 55.2479 29.8167C54.5109 29.8138 53.7774 29.7124 53.0665 29.5152C52.3453 29.3369 51.6556 29.0468 51.0215 28.6552L51.1773 27.2614L51.3575 27.1823C51.9273 27.6891 52.5888 28.0785 53.3051 28.329C53.9623 28.5726 54.6554 28.7013 55.355 28.7095C56.0526 28.7201 56.7414 28.55 57.3562 28.2153C57.8969 27.9263 58.3535 27.4986 58.6806 26.9747C58.9908 26.4975 59.1598 25.9401 59.1675 25.3684C59.175 24.8219 59.0037 24.2882 58.6806 23.851C58.3614 23.4231 57.9648 23.0607 57.512 22.7834C57.0543 22.5034 56.4181 22.1607 55.6033 21.7554C54.8562 21.3992 54.128 21.0032 53.422 20.5692C52.8663 20.2161 52.3889 19.7499 52.0197 19.2001C51.6288 18.5984 51.4299 17.8892 51.45 17.1687C51.4433 16.3791 51.6633 15.6046 52.083 14.9396C52.5137 14.2534 53.1194 13.6984 53.8358 13.3333C54.657 12.9267 55.5614 12.7234 56.4749 12.7402C57.6691 12.7552 58.8463 13.0299 59.9271 13.5459Z" fill="#38C88D"/>
3
+ <path d="M67.9807 24.5134L68.0343 29.708H66.6807L66.7586 24.5924L66.6807 12.8391H68.0586L67.9807 24.5134Z" fill="#38C88D"/>
4
+ <path d="M91.6447 29.708H90.3982L89.9551 24.5677L88.9423 15.2313H88.7865L83.7226 27.6667H82.5005L77.6314 15.2214H77.4756L76.4628 24.4788L75.9759 29.6981H74.7781L76.5504 12.8391H78.0842L79.0191 15.4241L83.0994 25.838H83.2357L87.5498 15.2115L88.4311 12.8391H89.9648L91.6447 29.708Z" fill="#38C88D"/>
5
+ <path d="M106.422 14.0847C107.269 14.92 107.698 16.1111 107.698 17.6581C107.698 19.4869 107.182 20.9153 106.15 21.9433C105.117 22.9713 103.668 23.4854 101.801 23.4854H99.6687V24.5134L99.7223 29.708H98.3687L98.4466 24.5925L98.3687 12.8392L102.785 12.8145C104.359 12.8309 105.572 13.2543 106.422 14.0847ZM105.356 20.9004C106.036 20.0042 106.381 18.8921 106.33 17.7619C106.364 17.2593 106.298 16.7548 106.135 16.279C105.972 15.8032 105.715 15.366 105.38 14.9941C104.626 14.3176 103.644 13.9634 102.639 14.0056L99.7563 14.06L99.7077 22.2843L102.59 22.3387C103.662 22.2468 104.656 21.7301 105.356 20.9004Z" fill="#38C88D"/>
6
+ <path d="M121.643 28.6799L121.487 29.708H113.721L113.799 24.5924L113.721 12.8391H115.099L115.021 24.4936L115.075 28.502H121.516L121.643 28.6799Z" fill="#38C88D"/>
7
+ <path d="M135.593 28.6255L135.462 29.708H126.697L126.775 24.5924L126.707 12.8391H135.437L135.54 12.9973L135.384 14.0797L131.488 14.0253H128.08L128.031 20.4259H131.274H134.054L134.162 20.5593L134.03 21.6368H128.031V24.5134L128.085 28.5218L131.435 28.5465L135.515 28.4674L135.593 28.6255Z" fill="#38C88D"/>
8
+ <path d="M156.009 12.9429L155.785 15.6069L152.645 15.4488H151.608L151.476 24.2564L151.647 29.6437H148.112L148.297 24.5826L148.165 15.4587H147.128L143.934 15.6168L143.7 15.3252L143.934 12.6661H155.785L156.009 12.9429Z" fill="#343750"/>
9
+ <path d="M168.815 26.6782L169.024 26.9649L168.791 29.6437H158.298L158.478 24.5826L158.298 12.6661H168.893L169.102 12.9528L168.839 15.6168L164.842 15.4834L161.828 15.513L161.75 19.6005L164.633 19.6499L167.359 19.5708L167.569 19.8377L167.335 22.4968L164.375 22.4177L161.696 22.4474L161.672 24.2663L161.75 26.8215L164.672 26.8512L168.815 26.6782Z" fill="#343750"/>
10
+ <path d="M182.035 26.6782L182.244 26.9649L182.01 29.6437H171.517L171.697 24.5826L171.517 12.6661H182.113L182.322 12.9528L182.078 15.6069L178.076 15.4735L175.062 15.5031L174.984 19.5906L177.867 19.64L180.598 19.561L180.803 19.8279L180.569 22.4869L177.609 22.4079L174.935 22.4375L174.906 24.2564L174.984 26.8117L177.906 26.8413L182.035 26.6782Z" fill="#343750"/>
11
+ <path d="M20.1415 39.7264C16.1147 39.7264 9.80434 39.2322 9.74104 39.2322C9.54682 39.2157 9.36667 39.1227 9.23924 38.973C9.1118 38.8233 9.04723 38.6289 9.05937 38.4315C9.05937 38.3425 9.62418 29.6091 9.54628 24.0685C9.51706 21.7801 9.36125 18.7355 9.23465 16.541L8.98633 17.0353C8.93517 17.1378 8.86166 17.2271 8.77138 17.2965C8.6811 17.3659 8.57644 17.4134 8.46533 17.4356H8.31926C8.1406 17.4359 7.9678 17.371 7.83235 17.2527C6.82443 16.3622 5.75361 15.5478 4.62848 14.8161C3.59266 14.2497 2.52068 13.7544 1.41973 13.3333C1.31928 13.2957 1.22806 13.2365 1.15235 13.1596C1.07665 13.0828 1.01827 12.9902 0.981234 12.8882C0.944203 12.7863 0.929404 12.6774 0.937858 12.5691C0.946313 12.4607 0.977819 12.3555 1.0302 12.2608L5.70455 3.65583C5.75571 3.56346 5.82554 3.48311 5.90945 3.42008C5.99337 3.35704 6.08948 3.31274 6.19146 3.29008L14.7027 1.26365C14.7576 1.2564 14.8133 1.2564 14.8682 1.26365C14.992 1.26384 15.114 1.29436 15.2237 1.35261C16.0758 1.84686 18.632 3.03307 20.1463 3.03307C21.6606 3.03307 24.212 1.82215 25.069 1.35261C25.1767 1.29381 25.2972 1.26323 25.4196 1.26365C25.4762 1.25636 25.5334 1.25636 25.59 1.26365L34.1012 3.29008C34.2034 3.31214 34.2998 3.35621 34.3838 3.4193C34.4678 3.4824 34.5374 3.56306 34.5881 3.65583L39.2673 12.2608C39.3186 12.3561 39.349 12.4615 39.3566 12.5698C39.3642 12.6781 39.3487 12.7868 39.3111 12.8885C39.2738 12.9894 39.2159 13.0812 39.1412 13.1578C39.0666 13.2345 38.9768 13.2943 38.8778 13.3333C37.7747 13.753 36.701 14.2484 35.6642 14.8161C34.5315 15.5562 33.4556 16.3824 32.4457 17.2873C32.3098 17.4048 32.1373 17.4696 31.9588 17.4702C31.9119 17.4753 31.8645 17.4753 31.8176 17.4702C31.7062 17.4488 31.6012 17.4015 31.5109 17.332C31.4205 17.2626 31.3472 17.1728 31.2966 17.0699L31.0483 16.5756C30.9168 18.7701 30.7659 21.8147 30.7318 24.1031C30.6587 29.6437 31.2187 38.3771 31.2187 38.4661C31.2308 38.6635 31.1663 38.8579 31.0388 39.0076C30.9114 39.1573 30.7312 39.2503 30.537 39.2668C30.4737 39.2223 24.1633 39.7264 20.1415 39.7264Z" fill="#38C88D"/>
12
+ <path d="M25.4149 2.02486L33.9261 4.0513L38.6004 12.6562C37.4617 13.0871 36.3524 13.594 35.2797 14.1736C34.1103 14.9315 32.9987 15.7774 31.9541 16.7042L30.4934 13.6695C30.4934 13.6695 30.0551 19.986 30.0064 24.0488C29.9334 29.6832 30.4934 38.4711 30.4934 38.4711C30.4934 38.4711 24.1976 38.9653 20.1562 38.9653C16.1149 38.9653 9.81424 38.4711 9.81424 38.4711C9.81424 38.4711 10.3839 29.6832 10.3012 24.0488C10.2476 19.9909 9.81424 13.6695 9.81424 13.6695L8.35351 16.7042C7.30997 15.7782 6.19999 14.9323 5.03278 14.1736C3.94911 13.5924 2.82833 13.0855 1.67796 12.6562L6.35717 4.0513L14.8635 2.02486C14.8635 2.02486 18.1015 3.79923 20.1416 3.79923C22.1818 3.79923 25.4149 2.02486 25.4149 2.02486ZM25.4149 0.5421C25.1687 0.541694 24.9262 0.602802 24.7088 0.720031C23.5841 1.33785 21.3443 2.31153 20.1416 2.31153C18.939 2.31153 16.6943 1.32302 15.5695 0.720031C15.3521 0.602802 15.1097 0.541694 14.8635 0.5421C14.7503 0.540596 14.6374 0.553886 14.5275 0.58164L6.01634 2.58336C5.81104 2.62859 5.61778 2.71824 5.44972 2.84618C5.28166 2.97412 5.14277 3.13736 5.04251 3.32474L0.377907 11.9297C0.27146 12.1181 0.207092 12.328 0.189354 12.5444C0.171616 12.7609 0.200942 12.9786 0.275259 13.1823C0.349575 13.386 0.467067 13.5706 0.619425 13.7231C0.771784 13.8756 0.955289 13.9923 1.15696 14.0649C2.21748 14.4694 3.25179 14.9416 4.25372 15.4784C5.34227 16.1869 6.37738 16.9766 7.35047 17.841C7.61928 18.0816 7.96588 18.2135 8.32429 18.2116C8.41179 18.219 8.49973 18.219 8.58723 18.2116C8.68948 20.1293 8.78686 22.3337 8.8112 24.0883C8.88424 29.5992 8.32429 38.308 8.32429 38.392C8.30837 38.5884 8.33118 38.786 8.39138 38.9734C8.45158 39.1607 8.54796 39.334 8.6749 39.4831C8.80183 39.6322 8.95677 39.7541 9.13066 39.8417C9.30455 39.9293 9.4939 39.9809 9.68764 39.9934C9.95058 39.9934 16.0905 40.4876 20.1465 40.4876C24.2025 40.4876 30.3424 39.9934 30.6005 39.9934C30.7942 39.9809 30.9836 39.9293 31.1575 39.8417C31.3313 39.7541 31.4863 39.6322 31.6132 39.4831C31.7402 39.334 31.8365 39.1607 31.8967 38.9734C31.9569 38.786 31.9797 38.5884 31.9638 38.392C31.9638 38.308 31.4039 29.5992 31.4769 24.0883C31.4769 22.3337 31.5986 20.1343 31.696 18.2116C31.7835 18.219 31.8715 18.219 31.959 18.2116C32.3169 18.2108 32.6626 18.0792 32.9328 17.841C33.8976 16.9769 34.9246 16.1872 36.0052 15.4784C37.0071 14.9416 38.0414 14.4694 39.1019 14.0649C39.3053 13.9944 39.4908 13.8793 39.6453 13.7277C39.7998 13.5761 39.9195 13.3918 39.9957 13.1878C40.072 12.9839 40.103 12.7654 40.0865 12.548C40.0701 12.3305 40.0065 12.1194 39.9005 11.9297L35.2261 3.32474C35.1241 3.13874 34.9847 2.9766 34.8169 2.84888C34.6492 2.72115 34.4568 2.63068 34.2523 2.58336L25.7801 0.56187C25.6685 0.534123 25.554 0.520837 25.4392 0.52233L25.4149 0.5421Z" fill="#343750"/>
13
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="36" height="24" viewBox="0 0 36 24">
2
+ <g fill="none" fill-rule="evenodd">
3
+ <rect width="36" height="24" fill="#FFF" rx="4"/>
4
+ <g fill-rule="nonzero">
5
+ <path fill="#000" d="M13.52 21.396v-1.18a.703.703 0 0 0-.198-.538.683.683 0 0 0-.53-.206.715.715 0 0 0-.651.334.678.678 0 0 0-.613-.334.61.61 0 0 0-.542.28v-.232h-.404v1.876h.407v-1.04a.442.442 0 0 1 .11-.358.43.43 0 0 1 .344-.14c.268 0 .403.176.403.495v1.043h.407v-1.04a.446.446 0 0 1 .112-.357.433.433 0 0 1 .342-.142c.275 0 .407.177.407.496v1.043h.405zm2.268-.937v-.938h-.407v.228a.698.698 0 0 0-.582-.275c-.535 0-.97.44-.97.983 0 .542.435.982.97.982a.698.698 0 0 0 .582-.275v.228h.403l.004-.933zm-1.499 0a.563.563 0 0 1 .58-.534.565.565 0 0 1 .54.576.564.564 0 0 1-.972.385.566.566 0 0 1-.152-.427h.004zm10.115-.983c.133 0 .264.025.388.075a.968.968 0 0 1 .525.52c.101.252.101.535 0 .786a.95.95 0 0 1-.525.521c-.256.1-.54.1-.795 0a.957.957 0 0 1-.522-.52 1.056 1.056 0 0 1 0-.786.96.96 0 0 1 .522-.521c.127-.054.265-.081.403-.08l.004.005zm0 .393a.594.594 0 0 0-.23.043.544.544 0 0 0-.307.32.69.69 0 0 0 0 .488.542.542 0 0 0 .306.32.622.622 0 0 0 .653-.124.57.57 0 0 0 .123-.196.69.69 0 0 0 0-.487.57.57 0 0 0-.123-.197.554.554 0 0 0-.193-.124.594.594 0 0 0-.233-.055l.004.012zm-6.425.59c0-.59-.36-.983-.879-.983a.976.976 0 0 0-.955.996.976.976 0 0 0 .983.969c.276.01.545-.084.758-.263l-.194-.303a.875.875 0 0 1-.54.197.516.516 0 0 1-.554-.46h1.375c.006-.05.006-.098.006-.153zm-1.379-.165a.48.48 0 0 1 .487-.454.456.456 0 0 1 .328.13.469.469 0 0 1 .141.326l-.956-.002zm3.075-.295a1.18 1.18 0 0 0-.582-.161c-.22 0-.352.082-.352.22 0 .137.14.16.314.184l.194.028c.403.059.647.232.647.562 0 .33-.31.613-.843.613a1.323 1.323 0 0 1-.801-.244l.194-.318a.978.978 0 0 0 .616.196c.276 0 .423-.082.423-.227 0-.107-.105-.166-.326-.197l-.193-.027c-.415-.06-.64-.248-.64-.554 0-.374.302-.602.775-.602.265-.009.527.06.754.197l-.18.33zm1.939-.106h-.657v.847c0 .196.066.314.267.314a.737.737 0 0 0 .357-.106l.116.35a.937.937 0 0 1-.504.145c-.477 0-.644-.26-.644-.696v-.854h-.376v-.373h.376v-.57h.408v.57h.657v.373zm1.394-.42a.85.85 0 0 1 .287.05l-.124.393a.648.648 0 0 0-.252-.047c-.264 0-.388.173-.388.484v1.05h-.403v-1.876h.399v.228a.545.545 0 0 1 .489-.275l-.008-.008zm2.788 1.65a.192.192 0 0 1 .134.053.185.185 0 0 1-.06.303.18.18 0 0 1-.074.015.194.194 0 0 1-.175-.114.187.187 0 0 1 .041-.204.194.194 0 0 1 .124-.053h.01zm0 .332a.136.136 0 0 0 .1-.044.147.147 0 0 0-.044-.235.138.138 0 0 0-.112 0 .141.141 0 0 0-.047.031.147.147 0 0 0 0 .197.143.143 0 0 0 .103.043v.008zm.011-.234c.019-.001.036.005.05.016a.05.05 0 0 1 .018.04.047.047 0 0 1-.013.036.067.067 0 0 1-.041.018l.056.065h-.044l-.053-.065h-.017v.065h-.037v-.181l.081.006zm-.042.033v.047h.042a.04.04 0 0 0 .024 0 .02.02 0 0 0 0-.017.02.02 0 0 0 0-.018.04.04 0 0 0-.024 0l-.042-.012z"/>
6
+ <path fill="#7673C0" d="M14.925 5.205h6.107v11.122h-6.107z"/>
7
+ <path fill="#EB001B" d="M15.313 10.767a7.096 7.096 0 0 1 2.666-5.562 6.914 6.914 0 0 0-9.44.763c-2.47 2.71-2.47 6.887 0 9.596a6.914 6.914 0 0 0 9.44.763 7.096 7.096 0 0 1-2.666-5.56z"/>
8
+ <path fill="#00A1DF" d="M29.27 10.767c0 2.707-1.526 5.177-3.929 6.36a6.905 6.905 0 0 1-7.362-.8 7.107 7.107 0 0 0 2.667-5.56c0-2.17-.984-4.22-2.667-5.562a6.905 6.905 0 0 1 7.363-.801c2.404 1.183 3.93 3.653 3.93 6.361l-.002.002z"/>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,23 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="36" height="24" viewBox="0 0 36 24">
2
+ <defs>
3
+ <path id="a" d="M.75.27h20.787v2.676H.75z"/>
4
+ <path id="c" d="M.397 17.428h22.157V.005H.397z"/>
5
+ </defs>
6
+ <g fill="none" fill-rule="evenodd">
7
+ <rect width="36" height="24" fill="#FFF" rx="4"/>
8
+ <g transform="translate(7 4)">
9
+ <g transform="translate(.793 14.483)">
10
+ <mask id="b" fill="#fff">
11
+ <use xlink:href="#a"/>
12
+ </mask>
13
+ <path fill="#231F20" d="M4.39 1.928c0-.323.21-.589.552-.589.327 0 .548.254.548.589 0 .334-.22.588-.548.588-.342 0-.551-.265-.551-.588zm1.473 0v-.919h-.396v.223a.687.687 0 0 0-.574-.27c-.51 0-.91.405-.91.966 0 .561.4.965.91.965a.687.687 0 0 0 .574-.27v.224h.396v-.92zm13.359 0c0-.323.208-.589.55-.589.328 0 .549.254.549.589 0 .334-.221.588-.548.588-.343 0-.551-.265-.551-.588zm2.142.75c.021 0 .038.004.049.015.012.01.017.022.017.039a.047.047 0 0 1-.013.034.072.072 0 0 1-.04.017l.055.064h-.043l-.05-.063h-.017v.063h-.036v-.17h.078zm-.011.228a.136.136 0 0 0 .128-.088.14.14 0 0 0 0-.11.137.137 0 0 0-.03-.046.14.14 0 0 0-.098-.04.13.13 0 0 0-.056.01.135.135 0 0 0-.045.03.137.137 0 0 0-.03.046.128.128 0 0 0-.01.055c0 .02.003.039.01.055a.137.137 0 0 0 .13.088zm0-.326a.185.185 0 0 1 .184.183.186.186 0 0 1-.316.13.183.183 0 0 1 .132-.313zm-.66-.652V.27h-.395v.96a.688.688 0 0 0-.574-.269c-.51 0-.91.405-.91.966 0 .561.4.965.91.965a.688.688 0 0 0 .574-.27v.224h.396v-.92zM10.77 1.32c.255 0 .418.162.46.447h-.943c.042-.266.202-.447.483-.447zm.008-.358c-.533 0-.905.393-.905.966 0 .584.388.965.932.965.273 0 .525-.069.745-.257l-.194-.297a.856.856 0 0 1-.528.192c-.256 0-.487-.119-.544-.45h1.35c.003-.049.007-.1.007-.153-.004-.573-.353-.966-.863-.966zm4.773.966c0-.323.21-.589.552-.589.328 0 .548.254.548.589 0 .334-.22.588-.548.588-.342 0-.552-.265-.552-.588zm1.473 0v-.919h-.396v.223a.689.689 0 0 0-.575-.27c-.509 0-.909.405-.909.966 0 .561.4.965.91.965.259 0 .448-.104.574-.27v.224h.396v-.92zm-3.705 0c0 .558.384.965.97.965a.948.948 0 0 0 .654-.219l-.19-.323a.794.794 0 0 1-.475.165c-.316-.004-.548-.235-.548-.588 0-.354.232-.585.548-.589a.79.79 0 0 1 .475.166l.19-.323a.945.945 0 0 0-.654-.22c-.586 0-.97.409-.97.966zm5.097-.966a.535.535 0 0 0-.479.27v-.223h-.393v1.838h.396v-1.03c0-.305.13-.474.389-.474a.64.64 0 0 1 .246.047l.123-.377a.84.84 0 0 0-.282-.05zm-10.597.193c-.19-.127-.453-.193-.742-.193-.46 0-.757.223-.757.589 0 .3.22.485.628.542l.186.027c.217.03.32.088.32.193 0 .141-.145.222-.415.222a.961.961 0 0 1-.605-.192l-.187.312c.218.161.491.238.788.238.525 0 .83-.25.83-.6 0-.323-.24-.492-.636-.55l-.186-.027c-.171-.023-.309-.058-.309-.18 0-.135.13-.216.347-.216.232 0 .456.089.566.158l.172-.323zm5.1-.193a.537.537 0 0 0-.479.27v-.223h-.392v1.838h.396v-1.03c0-.305.13-.474.388-.474a.64.64 0 0 1 .247.047l.122-.377a.84.84 0 0 0-.282-.05zm-3.373.047h-.647V.451h-.4v.558H8.13v.366h.37v.837c0 .427.163.681.631.681a.915.915 0 0 0 .494-.143L9.51 2.41a.723.723 0 0 1-.35.103c-.197 0-.262-.122-.262-.308v-.83h.647V1.01zM3.633 2.847V1.693c0-.434-.273-.727-.714-.73-.233-.005-.472.07-.64.327a.666.666 0 0 0-.6-.328.599.599 0 0 0-.533.274v-.227H.75v1.838h.4v-1.02c0-.319.174-.488.445-.488.262 0 .396.173.396.485v1.023h.399v-1.02c0-.319.182-.488.444-.488.27 0 .4.173.4.485v1.023h.4z" mask="url(#b)"/>
14
+ </g>
15
+ <mask id="d" fill="#fff">
16
+ <use xlink:href="#c"/>
17
+ </mask>
18
+ <path fill="#FF5F00" d="M8.48 12.37h5.991V1.484H8.479z" mask="url(#d)"/>
19
+ <path fill="#EB001B" d="M8.86 6.927a6.938 6.938 0 0 1 2.615-5.442A6.774 6.774 0 0 0 7.243.005C3.462.005.397 3.105.397 6.927c0 3.823 3.065 6.922 6.846 6.922a6.774 6.774 0 0 0 4.232-1.48A6.938 6.938 0 0 1 8.86 6.927" mask="url(#d)"/>
20
+ <path fill="#F79E1B" d="M22.554 6.927c0 3.823-3.065 6.922-6.847 6.922a6.77 6.77 0 0 1-4.232-1.48 6.938 6.938 0 0 0 2.616-5.442 6.938 6.938 0 0 0-2.616-5.442 6.77 6.77 0 0 1 4.232-1.48c3.782 0 6.847 3.1 6.847 6.922M22.491 11.283v-.335h-.088l-.1.23-.101-.23h-.087v.335h.061v-.253l.095.218h.064l.094-.218v.253h.062zm-.554 0v-.278h.112v-.057h-.286v.057h.113v.278h.061z" mask="url(#d)"/>
21
+ </g>
22
+ </g>
23
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg width="134" height="268" viewBox="0 0 134 268" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g opacity="0.2">
3
+ <path d="M91.381 132.805C91.381 132.72 91.381 132.635 91.381 132.55C91.381 131.418 91.5172 130.277 91.4491 129.145C91.2023 125.043 90.598 120.941 90.6831 116.847C90.928 109.764 89.8455 102.698 87.4916 96.0133C87.2805 95.492 87.1791 94.9329 87.1937 94.3707C87.6796 87.0324 86.7314 79.6698 84.4022 72.694C83.8977 70.9721 83.6117 69.1936 83.5511 67.4003C83.2873 62.1663 82.8192 57.0598 80.4447 52.3619C78.4362 48.3619 75.4575 45.3832 70.9979 44.3874C68.4132 43.8034 65.9525 42.7661 63.7297 41.3236C61.7127 40.047 59.6872 38.7704 57.568 37.6555C56.5188 37.1709 55.5983 36.4461 54.8812 35.5398C54.1641 34.6334 53.6705 33.571 53.4403 32.4384C54.1821 31.6523 54.82 30.7742 55.3382 29.8256C56.0304 28.0384 56.663 26.2313 57.2361 24.4043C60.5382 23.6724 61.3127 18.0809 59.6701 16.5489C59.4311 16.2461 59.0888 16.0422 58.7087 15.9763C58.3286 15.9103 57.9376 15.9869 57.6105 16.1915C58.2495 14.4034 58.5636 12.5156 58.5382 10.617C58.4109 8.24965 57.5747 5.97529 56.1382 4.08928C55.6821 3.52098 55.1043 3.0623 54.4474 2.74708C53.7904 2.43186 53.0711 2.26814 52.3424 2.26799C52.3424 2.26799 51.2275 0.404149 46.2403 0.0381889C41.253 -0.327771 35.2955 1.94458 33.6614 6.50632C32.5131 9.62259 32.4085 13.0277 33.3636 16.2085C33.2017 16.0806 33.0162 15.986 32.8176 15.93C32.6191 15.874 32.4114 15.8578 32.2066 15.8823C32.0018 15.9068 31.8038 15.9716 31.6241 16.0728C31.4444 16.1741 31.2864 16.3099 31.1593 16.4723C29.5082 18.0213 30.3082 23.7235 33.7125 24.3532C34.0921 25.5701 34.5498 26.7613 35.0827 27.9192C35.6615 29.2214 36.3764 30.4724 37.0232 31.7235C37.1934 32.0554 37.5253 32.4554 37.4487 32.7278C36.9551 34.4299 36.3508 36.0214 34.6232 36.9831C31.8402 38.6001 29.1933 40.447 26.4103 42.0895C25.1467 42.9053 23.7539 43.501 22.2912 43.8512C15.4826 45.1193 11.7634 49.4938 9.7549 55.7662C8.53469 59.967 7.96074 64.329 8.05276 68.7025C8.05185 69.6309 7.90244 70.5532 7.61021 71.4344C4.94026 78.7374 3.82988 86.5188 4.35061 94.2771C4.36627 94.8923 4.25322 95.5039 4.0187 96.0729C2.41697 100.366 1.43407 104.865 1.09953 109.435C0.725056 115.656 0.469735 121.886 0.16335 128.116C0.103775 129.256 -0.0153743 130.397 0.00164709 131.52V132.448H0.112286L0.0186685 136.311C0.0186685 136.311 0.129308 143.971 0.614417 146.056C1.14304 147.833 1.86809 149.546 2.77613 151.163C3.65262 152.324 4.64811 153.391 5.74637 154.346C6.80169 155.043 8.39319 155.903 7.95915 154.346C7.5251 152.788 5.12509 150.941 4.62295 149.614L7.55063 150.729C8.12085 150.95 8.14638 150.226 8.14638 150.226C7.70383 148.839 5.457 147.469 3.97614 146.695C3.7797 145.472 3.82597 144.223 4.11231 143.018C4.78466 140.346 5.55913 139.214 6.80169 139.273C8.04425 139.333 8.39319 141.826 9.8315 142.72C11.2698 143.614 11.6528 142.286 11.6528 142.286C10.3081 140.89 10.8017 137.494 10.3592 135.477C10.0736 134.311 9.43451 133.262 8.52936 132.473C8.50321 131.785 8.59239 131.098 8.7932 130.439C11.0485 123.043 13.3975 115.656 15.2443 108.15C16.0218 104.391 16.3786 100.557 16.3081 96.7197C16.25 95.2432 16.4399 93.7674 16.8698 92.3537C18.0954 88.8728 19.2273 85.3664 20.4018 81.8685C20.5294 81.5111 20.6741 81.1621 20.8103 80.8047H21.3124C21.8741 88.3622 22.5635 95.9197 22.9635 103.486C23.1693 107.22 23.0811 110.965 22.6997 114.686C21.789 123.196 20.2486 131.579 19.6188 140.065C18.8188 150.984 20.555 161.792 22.8273 172.405C24.2797 178.828 25.0049 185.395 24.989 191.98C24.8493 193.934 24.5447 195.873 24.0784 197.776C23.738 199.614 23.2273 201.418 22.9635 203.265C22.1124 210.508 23.1763 217.623 25.0486 224.542C26.6401 230.448 28.7082 236.227 30.6827 242.023C31.7498 244.731 32.4482 247.571 32.7593 250.465C32.151 252.048 31.7422 253.701 31.5423 255.385C31.4146 257.504 24.8869 262.108 23.9933 264.602C23.0997 267.095 24.5039 267.64 24.5039 267.64H40.6743C42.3338 267.64 43.2275 266.397 43.2275 264.346C43.2275 262.295 41.4317 251.18 41.287 250.261C40.5381 240.636 40.2743 231.018 41.6104 221.41C42.6402 214.091 41.8317 206.882 40.2317 199.733C39.6079 196.88 39.7756 193.911 40.7168 191.146C41.4834 188.841 41.9887 186.457 42.2232 184.039C43.2956 171.444 44.2147 158.839 45.1934 146.235C45.3126 144.686 45.4488 143.137 45.5764 141.588C45.6967 141.671 45.7957 141.782 45.8652 141.91C45.9347 142.039 45.9728 142.182 45.9764 142.329C46.9552 155.188 47.8913 168.048 48.9211 180.907C49.1935 184.312 49.1679 187.716 50.6233 191.001C51.7862 193.81 51.9926 196.923 51.2105 199.861C49.6616 206.797 48.8701 213.801 49.7977 220.925C50.1813 223.278 50.4342 225.65 50.5552 228.031C50.6913 235.427 50.9892 242.823 50.2403 250.159C50.2403 250.159 48.2913 262.27 48.2913 264.312C48.2913 266.355 49.1424 267.606 50.8445 267.606H67.0149C67.0149 267.606 68.4191 267.07 67.5255 264.568C66.6319 262.065 60.0957 257.47 59.968 255.351C59.7703 253.667 59.3644 252.015 58.7595 250.431H58.7425C58.976 247.529 59.7042 244.688 60.8957 242.031C63.5864 235.437 65.6937 228.619 67.1936 221.657C68.6149 214.848 69.5596 207.903 68.2489 200.916C67.7808 198.431 66.7425 195.997 66.6234 193.503C66.2829 186.32 67.3212 179.282 68.717 172.176C71.0915 160.167 73.2532 148.039 71.4319 135.656C70.666 130.456 70.1553 125.231 69.6021 120.005C69.1425 115.75 68.4532 111.426 68.4787 107.145C68.4787 101.435 69.0915 95.7239 69.5596 90.0218C69.7893 87.1366 70.2915 84.2685 70.6745 81.3919C72.4447 85.6473 73.9085 89.9622 75.3553 94.2346C75.4196 94.5365 75.4368 94.8465 75.4064 95.1537C75.4745 98.3623 75.1936 101.613 75.6617 104.754C76.9809 113.579 79.8575 122.005 82.7001 130.422C82.9349 131.13 83.0499 131.872 83.0405 132.618C82.0825 133.424 81.4133 134.521 81.1341 135.741C80.7001 137.733 81.1767 141.128 79.832 142.55C79.832 142.55 80.215 143.843 81.6618 142.984C83.1086 142.124 83.432 139.58 84.6831 139.58C85.9341 139.58 86.7001 140.652 87.3724 143.324C87.6584 144.535 87.7075 145.789 87.5171 147.018C86.0277 147.792 83.7809 149.154 83.3384 150.541C83.3384 150.541 83.3384 151.265 83.9341 151.043L86.8703 149.929C86.3597 151.273 83.9426 153.18 83.5341 154.66C83.1256 156.141 84.6831 155.358 85.7384 154.66C86.8408 153.707 87.8392 152.641 88.7171 151.478C89.6214 149.859 90.3462 148.147 90.8789 146.371C91.3554 144.269 91.4661 136.626 91.4661 136.626L91.381 132.805Z" fill="#6E6E82"/>
4
+ </g>
5
+ <path d="M109.774 3L104 11L115.547 11L109.774 3ZM108.774 10L108.773 165.5H110.773L110.774 10H108.774Z" fill="#6E6E82"/>
6
+ <path d="M109.773 265.5L115.547 255.5L104 255.5L109.773 265.5ZM110.773 256.5L110.773 204L108.773 204L108.773 256.5L110.773 256.5Z" fill="#6E6E82"/>
7
+ <path d="M86.7429 180.04V178.878H89.3749V189H88.0869V180.04H86.7429ZM97.7933 179.872L93.9013 189H92.6133L96.5613 179.998H91.1573V178.906H97.7933V179.872ZM105.66 179.984H100.746V183.176C100.961 182.877 101.278 182.635 101.698 182.448C102.118 182.252 102.571 182.154 103.056 182.154C103.831 182.154 104.461 182.317 104.946 182.644C105.431 182.961 105.777 183.377 105.982 183.89C106.197 184.394 106.304 184.931 106.304 185.5C106.304 186.172 106.178 186.774 105.926 187.306C105.674 187.838 105.287 188.258 104.764 188.566C104.251 188.874 103.611 189.028 102.846 189.028C101.866 189.028 101.073 188.776 100.466 188.272C99.8592 187.768 99.4906 187.096 99.3599 186.256H100.606C100.727 186.788 100.984 187.203 101.376 187.502C101.768 187.801 102.263 187.95 102.86 187.95C103.597 187.95 104.153 187.731 104.526 187.292C104.899 186.844 105.086 186.256 105.086 185.528C105.086 184.8 104.899 184.24 104.526 183.848C104.153 183.447 103.602 183.246 102.874 183.246C102.379 183.246 101.945 183.367 101.572 183.61C101.208 183.843 100.942 184.165 100.774 184.576H99.5699V178.864H105.66V179.984ZM111.463 185.15C111.463 184.357 111.622 183.666 111.939 183.078C112.257 182.481 112.695 182.019 113.255 181.692C113.825 181.365 114.473 181.202 115.201 181.202C116.144 181.202 116.919 181.431 117.525 181.888C118.141 182.345 118.547 182.98 118.743 183.792H117.371C117.241 183.325 116.984 182.957 116.601 182.686C116.228 182.415 115.761 182.28 115.201 182.28C114.473 182.28 113.885 182.532 113.437 183.036C112.989 183.531 112.765 184.235 112.765 185.15C112.765 186.074 112.989 186.788 113.437 187.292C113.885 187.796 114.473 188.048 115.201 188.048C115.761 188.048 116.228 187.917 116.601 187.656C116.975 187.395 117.231 187.021 117.371 186.536H118.743C118.538 187.32 118.127 187.95 117.511 188.426C116.895 188.893 116.125 189.126 115.201 189.126C114.473 189.126 113.825 188.963 113.255 188.636C112.695 188.309 112.257 187.847 111.939 187.25C111.622 186.653 111.463 185.953 111.463 185.15ZM129.669 181.188C130.267 181.188 130.799 181.314 131.265 181.566C131.732 181.809 132.101 182.177 132.371 182.672C132.642 183.167 132.777 183.769 132.777 184.478V189H131.517V184.66C131.517 183.895 131.326 183.311 130.943 182.91C130.57 182.499 130.061 182.294 129.417 182.294C128.755 182.294 128.227 182.509 127.835 182.938C127.443 183.358 127.247 183.969 127.247 184.772V189H125.987V184.66C125.987 183.895 125.796 183.311 125.413 182.91C125.04 182.499 124.531 182.294 123.887 182.294C123.225 182.294 122.697 182.509 122.305 182.938C121.913 183.358 121.717 183.969 121.717 184.772V189H120.443V181.328H121.717V182.434C121.969 182.033 122.305 181.725 122.725 181.51C123.155 181.295 123.626 181.188 124.139 181.188C124.783 181.188 125.353 181.333 125.847 181.622C126.342 181.911 126.711 182.336 126.953 182.896C127.168 182.355 127.523 181.935 128.017 181.636C128.512 181.337 129.063 181.188 129.669 181.188Z" fill="#6E6E82"/>
8
+ <path d="M34.182 64.872L30.29 74H29.002L32.95 64.998H27.546V63.906H34.182V64.872ZM42.0486 64.984H37.1346V68.176C37.3492 67.8773 37.6666 67.6347 38.0866 67.448C38.5066 67.252 38.9592 67.154 39.4446 67.154C40.2192 67.154 40.8492 67.3173 41.3346 67.644C41.8199 67.9613 42.1652 68.3767 42.3706 68.89C42.5852 69.394 42.6926 69.9307 42.6926 70.5C42.6926 71.172 42.5666 71.774 42.3146 72.306C42.0626 72.838 41.6752 73.258 41.1526 73.566C40.6392 73.874 39.9999 74.028 39.2346 74.028C38.2546 74.028 37.4612 73.776 36.8546 73.272C36.2479 72.768 35.8792 72.096 35.7486 71.256H36.9946C37.1159 71.788 37.3726 72.2033 37.7646 72.502C38.1566 72.8007 38.6512 72.95 39.2486 72.95C39.9859 72.95 40.5412 72.7307 40.9146 72.292C41.2879 71.844 41.4746 71.256 41.4746 70.528C41.4746 69.8 41.2879 69.24 40.9146 68.848C40.5412 68.4467 39.9906 68.246 39.2626 68.246C38.7679 68.246 38.3339 68.3673 37.9606 68.61C37.5966 68.8433 37.3306 69.1653 37.1626 69.576H35.9586V63.864H42.0486V64.984ZM52.612 74L49.602 70.612V74H48.328V63.64H49.602V69.73L52.556 66.328H54.334L50.722 70.15L54.348 74H52.612ZM58.6971 66.202C59.3597 66.202 59.9384 66.3467 60.4331 66.636C60.9371 66.9253 61.3104 67.2893 61.5531 67.728V66.328H62.8411V74.168C62.8411 74.868 62.6917 75.4887 62.3931 76.03C62.0944 76.5807 61.6651 77.01 61.1051 77.318C60.5544 77.626 59.9104 77.78 59.1731 77.78C58.1651 77.78 57.3251 77.542 56.6531 77.066C55.9811 76.59 55.5844 75.9413 55.4631 75.12H56.7231C56.8631 75.5867 57.1524 75.96 57.5911 76.24C58.0297 76.5293 58.5571 76.674 59.1731 76.674C59.8731 76.674 60.4424 76.4547 60.8811 76.016C61.3291 75.5773 61.5531 74.9613 61.5531 74.168V72.558C61.3011 73.006 60.9277 73.3793 60.4331 73.678C59.9384 73.9767 59.3597 74.126 58.6971 74.126C58.0157 74.126 57.3951 73.958 56.8351 73.622C56.2844 73.286 55.8504 72.8147 55.5331 72.208C55.2157 71.6013 55.0571 70.9107 55.0571 70.136C55.0571 69.352 55.2157 68.666 55.5331 68.078C55.8504 67.4807 56.2844 67.0187 56.8351 66.692C57.3951 66.3653 58.0157 66.202 58.6971 66.202ZM61.5531 70.15C61.5531 69.5713 61.4364 69.0673 61.2031 68.638C60.9697 68.2087 60.6524 67.882 60.2511 67.658C59.8591 67.4247 59.4251 67.308 58.9491 67.308C58.4731 67.308 58.0391 67.42 57.6471 67.644C57.2551 67.868 56.9424 68.1947 56.7091 68.624C56.4757 69.0533 56.3591 69.5573 56.3591 70.136C56.3591 70.724 56.4757 71.2373 56.7091 71.676C56.9424 72.1053 57.2551 72.4367 57.6471 72.67C58.0391 72.894 58.4731 73.006 58.9491 73.006C59.4251 73.006 59.8591 72.894 60.2511 72.67C60.6524 72.4367 60.9697 72.1053 61.2031 71.676C61.4364 71.2373 61.5531 70.7287 61.5531 70.15Z" fill="#6E6E82"/>
9
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M20.5276 43.0571H17.7568C17.2502 43.0571 16.8389 42.6462 16.8389 42.1392C16.8389 41.6325 17.2502 41.2212 17.7568 41.2212H20.5276C21.0346 41.2212 21.4456 41.6325 21.4456 42.1392C21.4456 42.6462 21.0346 43.0571 20.5276 43.0571Z" fill="#6E6E82"/>
3
+ <path d="M14.2856 43.0571C14.0443 43.0571 13.8073 42.9596 13.6366 42.7878C13.4659 42.6171 13.3677 42.3805 13.3677 42.1392C13.3677 41.8975 13.4659 41.6608 13.6366 41.4901C13.8073 41.3194 14.0443 41.2212 14.2856 41.2212C14.528 41.2212 14.764 41.3191 14.9347 41.4901C15.1064 41.6608 15.2036 41.8975 15.2036 42.1392C15.2036 42.3805 15.1064 42.6171 14.9347 42.7878C14.764 42.9596 14.528 43.0571 14.2856 43.0571Z" fill="#6E6E82"/>
4
+ <path d="M20.5276 20.4751H17.7568C17.2502 20.4751 16.8389 20.0642 16.8389 19.5571C16.8389 19.0505 17.2502 18.6392 17.7568 18.6392H20.5276C21.0346 18.6392 21.4456 19.0505 21.4456 19.5571C21.4456 20.0642 21.0346 20.4751 20.5276 20.4751Z" fill="#6E6E82"/>
5
+ <path d="M14.2856 20.4751C14.0443 20.4751 13.8084 20.3776 13.6366 20.2058C13.4659 20.0351 13.3677 19.7985 13.3677 19.5571C13.3677 19.3154 13.4659 19.0788 13.6366 18.9081C13.8073 18.7374 14.0443 18.6392 14.2856 18.6392C14.528 18.6392 14.764 18.7371 14.9347 18.9081C15.1064 19.0795 15.2036 19.3154 15.2036 19.5571C15.2036 19.7985 15.1064 20.0351 14.9347 20.2058C14.764 20.3776 14.527 20.4751 14.2856 20.4751Z" fill="#6E6E82"/>
6
+ <path d="M45.2461 10.4453H26.3359C26.0139 10.4453 25.7052 10.5013 25.418 10.6031V4.75391C25.418 3.23531 24.1827 2 22.6641 2H3.75391C2.23531 2 1 3.23531 1 4.75391V23.6641C1 24.369 1.26643 25.0123 1.70354 25.5C1.26643 25.9877 1 26.631 1 27.3359V46.2461C1 47.7647 2.23531 49 3.75391 49H22.6641C23.369 49 24.0123 48.7336 24.5 48.2965C24.9877 48.7336 25.631 49 26.3359 49H45.2461C46.7647 49 48 47.7647 48 46.2461V13.1992C48 11.6806 46.7647 10.4453 45.2461 10.4453ZM15.8568 3.83594V11.5081H10.5612V3.83594H15.8568ZM23.582 46.2461C23.582 46.7524 23.1704 47.1641 22.6641 47.1641H3.75391C3.24759 47.1641 2.83594 46.7524 2.83594 46.2461V27.3359C2.83594 26.8296 3.24759 26.418 3.75391 26.418H8.72528V35.0081C8.72528 35.5152 9.13657 35.9261 9.64325 35.9261H16.7747C17.2818 35.9261 17.6927 35.5152 17.6927 35.0081V26.418H22.6641C23.1704 26.418 23.582 26.8296 23.582 27.3359V46.2461ZM10.5612 26.418H15.8568V34.0902H10.5612V26.418ZM23.582 13.1992V23.6641C23.582 24.1704 23.1704 24.582 22.6641 24.582H3.75391C3.24759 24.582 2.83594 24.1704 2.83594 23.6641V4.75391C2.83594 4.24759 3.24759 3.83594 3.75391 3.83594H8.72528V12.4261C8.72528 12.9332 9.13657 13.3441 9.64325 13.3441H16.7747C17.2818 13.3441 17.6927 12.9332 17.6927 12.4261V3.83594H22.6641C23.1704 3.83594 23.582 4.24759 23.582 4.75391V13.1992ZM38.4388 12.2812V19.9535H33.1432V12.2812H38.4388ZM46.1641 46.2461C46.1641 46.7524 45.7524 47.1641 45.2461 47.1641H26.3359C25.8296 47.1641 25.418 46.7524 25.418 46.2461V13.1992C25.418 12.6929 25.8296 12.2812 26.3359 12.2812H31.3073V20.8714C31.3073 21.3785 31.7186 21.7894 32.2253 21.7894H39.3568C39.8638 21.7894 40.2747 21.3785 40.2747 20.8714V12.2812H45.2461C45.7524 12.2812 46.1641 12.6929 46.1641 13.1992V46.2461Z" fill="#6E6E82"/>
7
+ <path d="M43.1096 43.0571H40.3389C39.8322 43.0571 39.4209 42.6462 39.4209 42.1392C39.4209 41.6325 39.8322 41.2212 40.3389 41.2212H43.1096C43.6167 41.2212 44.0276 41.6325 44.0276 42.1392C44.0276 42.6462 43.6167 43.0571 43.1096 43.0571Z" fill="#6E6E82"/>
8
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M43.1557 32.8341V29.4392C43.1557 28.889 42.7094 28.4431 42.1596 28.4431C41.6094 28.4431 41.1631 28.889 41.1631 29.4392V32.2446L23.8283 41.7631V22.8109L41.1631 13.2923V21.8677C41.1631 22.4179 41.6094 22.8638 42.1596 22.8638C42.7094 22.8638 43.1557 22.4179 43.1557 21.8677V11.6087C43.1557 11.2453 42.9577 10.9106 42.639 10.7356L23.3116 0.122858C23.0132 -0.0409527 22.6513 -0.0409527 22.3525 0.122858L3.02551 10.7356C2.70684 10.9106 2.50879 11.2453 2.50879 11.6087V19.1444C2.50879 19.6946 2.9547 20.1405 3.50488 20.1405C4.05507 20.1405 4.50137 19.6946 4.50137 19.1444V13.2923L9.78573 16.1942V22.3249C9.78573 22.6864 9.98145 23.0194 10.297 23.1953L15.0705 25.8556C15.2215 25.9396 15.3884 25.9816 15.5553 25.9816C15.73 25.9816 15.9043 25.9357 16.06 25.8443C16.3646 25.6653 16.5518 25.3385 16.5518 24.9856V19.9094L21.8358 22.8109V41.7631L4.50137 32.2446V26.9816C4.50137 26.4314 4.05507 25.9855 3.50488 25.9855C2.9547 25.9855 2.50879 26.4314 2.50879 26.9816V32.8341C2.50879 33.1975 2.70684 33.5321 3.02551 33.7072L22.3525 44.3199C22.5019 44.402 22.6673 44.4429 22.8323 44.4429C22.9972 44.4429 23.1622 44.402 23.3116 44.3199L42.639 33.7072C42.9577 33.5321 43.1557 33.1975 43.1557 32.8341ZM30.3991 6.28776L32.8045 7.64493L15.5884 17.1075L13.6402 16.0374L12.8293 15.5798L30.0676 6.10527L30.3991 6.28776ZM34.9072 8.76282L40.0896 11.6087L22.8323 21.0848L17.658 18.2436L34.9072 8.76282ZM22.8323 2.13256L27.9979 4.9691L10.7488 14.4499L5.5749 11.6087L22.8323 2.13256ZM11.7783 21.7397V17.288L12.6705 17.7783L14.5592 18.844V23.2895L11.7783 21.7397Z" fill="#6E6E82"/>
3
+ <path d="M45.0042 36.6722L43.0104 36.0142C42.4879 35.8415 41.9245 36.1255 41.7521 36.6481C41.598 37.1142 41.8081 37.6122 42.2264 37.8368L27.6854 45.8211C27.6826 45.3954 27.4056 45.0032 26.9768 44.874C26.45 44.7149 25.894 45.0133 25.7352 45.5398L25.1286 47.5502C24.9698 48.0771 25.2679 48.6327 25.7947 48.7915L27.8048 49.3981C27.9009 49.4272 27.9978 49.4409 28.0931 49.4409C28.5212 49.4409 28.9165 49.1631 29.0464 48.7323C29.1811 48.2856 28.9865 47.8187 28.6033 47.5903L43.0396 39.6632C43.0602 40.0616 43.3198 40.4254 43.7217 40.5581C43.8252 40.5924 43.9307 40.6087 44.0342 40.6087C44.4524 40.6087 44.8419 40.3433 44.9801 39.9243L45.638 37.9305C45.7209 37.6796 45.7007 37.406 45.582 37.1702C45.4629 36.934 45.2552 36.7551 45.0042 36.6722Z" fill="#6E6E82"/>
4
+ <path d="M19.9527 45.5399C19.7936 45.013 19.2375 44.715 18.7111 44.8737C18.2823 45.0033 18.0053 45.3955 18.0025 45.8212L3.46188 37.8369C3.87978 37.6123 4.08989 37.1143 3.93581 36.6482C3.76344 36.1256 3.19963 35.8419 2.67785 36.0143L0.683712 36.6723C0.678264 36.6742 0.674763 36.6766 0.670482 36.6789C0.445194 36.7567 0.246753 36.9143 0.12263 37.1396C-0.0151115 37.3906 -0.032621 37.6742 0.04909 37.9263C0.0494791 37.9279 0.0494791 37.9291 0.0498682 37.9306L0.707836 39.9244C0.846355 40.3434 1.23546 40.6088 1.65374 40.6088C1.75724 40.6088 1.86268 40.5925 1.96618 40.5582C2.36812 40.4255 2.62765 40.0617 2.64828 39.6633L17.0847 47.5904C16.7014 47.8192 16.5068 48.2857 16.6415 48.7324C16.7714 49.1632 17.1671 49.441 17.5948 49.441C17.6901 49.441 17.787 49.4274 17.8831 49.3982L19.864 48.8005C19.8652 48.8001 19.8663 48.7997 19.8675 48.7993L19.8932 48.7916C19.8955 48.7912 19.8971 48.7896 19.899 48.7888C20.1379 48.7153 20.3496 48.5538 20.4796 48.3176C20.615 48.0713 20.6344 47.7927 20.5574 47.5437L19.9527 45.5399Z" fill="#6E6E82"/>
5
+ <path d="M48.4774 29.9324V14.6057C48.6288 14.691 48.7968 14.7345 48.9657 14.7345C49.221 14.7345 49.4758 14.6373 49.6704 14.4427C50.0595 14.0536 50.0595 13.4229 49.6704 13.0338L48.1856 11.549C47.7965 11.1603 47.1657 11.1603 46.7766 11.549L45.2918 13.0338C44.9027 13.4229 44.9027 14.0536 45.2918 14.4427C45.6152 14.7661 46.105 14.8198 46.4848 14.6057V29.9324C46.105 29.718 45.6152 29.7717 45.2918 30.095C44.9027 30.4841 44.9027 31.1152 45.2918 31.504L46.7766 32.9888C46.9712 33.1833 47.226 33.2806 47.4809 33.2806C47.7362 33.2806 47.991 33.1833 48.1856 32.9888L49.6704 31.504C50.0591 31.1152 50.0591 30.4841 49.6704 30.095C49.347 29.7721 48.8572 29.7184 48.4774 29.9324Z" fill="#6E6E82"/>
6
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M49.1593 40.0014H42.4937V30.0028C42.4937 29.5427 42.1206 29.1696 41.6604 29.1696C41.2003 29.1696 40.8272 29.5427 40.8272 30.0028V40.0014H39.1608V20.0043C39.4358 20.0043 39.7109 20.0462 39.994 20.0462C40.2772 20.0462 40.5522 20.0462 40.8272 20.0043V26.2534C40.8272 26.7135 41.2003 27.0866 41.6604 27.0866C42.1206 27.0866 42.4937 26.7135 42.4937 26.2534V19.6797C47.3688 18.4209 50.5475 13.7333 49.9128 8.73852C49.2785 3.74374 45.0291 0 39.994 0C34.9594 0 30.7095 3.74374 30.0753 8.73852C29.441 13.7333 32.6192 18.4209 37.4944 19.6797V40.0014H28.3291V31.0444C28.3291 30.5842 27.956 30.2111 27.4959 30.2111C27.0358 30.2111 26.6627 30.5842 26.6627 31.0444V40.0014H6.66567V20.0043H12.4981V27.5032C12.4994 27.8173 12.6763 28.1037 12.9566 28.2449C13.2386 28.3881 13.5775 28.3592 13.8314 28.17L16.6642 26.0451L19.497 28.17C19.6414 28.2782 19.8168 28.3364 19.997 28.3364C20.128 28.3389 20.257 28.3071 20.3721 28.2449C20.652 28.1037 20.8294 27.8173 20.8302 27.5032V20.0043H26.6627V27.5032C26.6627 27.9634 27.0358 28.3364 27.4959 28.3364C27.956 28.3364 28.3291 27.9634 28.3291 27.5032V19.1711C28.3291 18.711 27.956 18.3379 27.4959 18.3379H5.83246C5.37233 18.3379 4.99925 18.711 4.99925 19.1711V40.0014H0.833209C0.373073 40.0014 0 40.3744 0 40.8346V42.501C0 44.8021 1.86536 46.667 4.16604 46.667V47.5002C4.16604 48.8811 5.28526 49.9999 6.66567 49.9999C8.04608 49.9999 9.1653 48.8811 9.1653 47.5002V46.667H40.8272V47.5002C40.8272 48.8811 41.9465 49.9999 43.3269 49.9999C44.7073 49.9999 45.8265 48.8811 45.8265 47.5002V46.667C48.1276 46.667 49.9925 44.8021 49.9925 42.501V40.8346C49.9925 40.3744 49.6195 40.0014 49.1593 40.0014ZM31.6619 10.839H33.3284C33.7885 10.839 34.1616 10.466 34.1616 10.0058C34.1616 9.54569 33.7885 9.17262 33.3284 9.17262H31.6619C32.0615 5.2161 35.2019 2.09319 39.1608 1.71565V3.34016C39.1608 3.8003 39.5339 4.17337 39.994 4.17337C40.4542 4.17337 40.8272 3.8003 40.8272 3.34016V1.71565C44.8004 2.09645 47.9453 5.24132 48.3261 9.21453H46.6597C46.1996 9.21453 45.8265 9.5876 45.8265 10.0477C45.8265 10.5079 46.1996 10.8809 46.6597 10.8809H48.3261C47.9453 14.8537 44.8004 17.9986 40.8272 18.3798V16.6715C40.8272 16.2114 40.4542 15.8383 39.994 15.8383C39.5339 15.8383 39.1608 16.2114 39.1608 16.6715V18.3379C35.2039 17.9384 32.0814 14.798 31.7038 10.839H31.6619ZM19.1638 25.8368L17.1642 24.3372C16.868 24.1151 16.4608 24.1151 16.1642 24.3372L14.1646 25.8368V20.0043H19.1638V25.8368ZM7.49888 47.5002C7.49888 47.9604 7.12581 48.3334 6.66567 48.3334C6.20554 48.3334 5.83246 47.9604 5.83246 47.5002V46.667H7.49888V47.5002ZM44.1601 47.5002C44.1601 47.9604 43.787 48.3334 43.3269 48.3334C42.8667 48.3334 42.4937 47.9604 42.4937 47.5002V46.667H44.1601V47.5002ZM48.3261 42.501C48.3261 43.8818 47.2069 45.0006 45.8265 45.0006H4.16604C2.78564 45.0006 1.66642 43.8818 1.66642 42.501V41.6678H48.3261V42.501Z" fill="#6E6E82"/>
3
+ <path d="M39.9943 12.5055C40.7343 12.503 41.4353 12.1723 41.908 11.6031C42.3808 11.0335 42.5773 10.2841 42.4438 9.5559L44.7437 8.23122C45.144 8.00136 45.282 7.48996 45.0521 7.08963C44.8218 6.6893 44.3108 6.55138 43.9105 6.78165L41.6106 8.11446C40.7701 7.38825 39.5508 7.30403 38.6183 7.90779C37.6854 8.51154 37.2631 9.65842 37.5817 10.7227C37.9007 11.787 38.8832 12.5136 39.9943 12.5055ZM39.5777 9.28128C39.7697 9.1698 39.9983 9.1397 40.2127 9.19788C40.4267 9.25565 40.6094 9.39641 40.7192 9.58926C40.9467 9.98837 40.8083 10.4965 40.4096 10.7247C40.0109 10.9534 39.5028 10.8163 39.2733 10.418C39.0439 10.0201 39.1802 9.51155 39.5777 9.28128Z" fill="#6E6E82"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="205" height="78" viewBox="0 0 205 78" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="5.44049" y="18.9549" width="190.822" height="53.3224" transform="rotate(-4.06052 5.44049 18.9549)" stroke="#FB3D01" stroke-width="4.1939"/>
3
+ <rect x="0.640049" y="14.7896" width="199.809" height="62.3094" transform="rotate(-4.06052 0.640049 14.7896)" stroke="#FB3D01" stroke-width="1.19826"/>
4
+ <path d="M44.1162 40.7156C44.2431 42.503 43.8123 43.9229 42.8239 44.9756C41.8423 46.0204 40.3812 46.6117 38.4407 46.7495L37.226 46.8357L37.6028 52.143L33.2803 52.4498L32.1446 36.4514L37.6817 36.0583C39.7025 35.9149 41.2512 36.2485 42.3279 37.0593C43.4046 37.87 44.0007 39.0888 44.1162 40.7156ZM36.9759 43.3121L37.7638 43.2562C38.413 43.2101 38.9144 42.9912 39.2679 42.5995C39.6286 42.2073 39.7862 41.6902 39.7406 41.0482C39.664 39.9685 39.0274 39.4712 37.831 39.5561L36.7149 39.6353L36.9759 43.3121ZM56.8079 50.7797L55.8071 47.8372L50.6093 48.2062L50.0124 51.2621L45.2632 51.5992L49.3425 35.1646L55.1094 34.7552L61.5352 50.4441L56.8079 50.7797ZM54.6581 44.3555L53.7823 41.7781C53.5804 41.2059 53.3298 40.4648 53.0306 39.5549C52.7387 38.6445 52.542 37.9912 52.4406 37.5952C52.4013 37.9719 52.3135 38.594 52.1771 39.4615C52.048 40.3285 51.7406 42.0404 51.2549 44.5971L54.6581 44.3555ZM62.8269 50.3524L61.6912 34.354L66.0355 34.0456L67.1712 50.044L62.8269 50.3524ZM83.1799 40.5271C83.3695 43.1971 82.7787 45.3067 81.4076 46.8558C80.0438 48.4043 78.0305 49.2731 75.3678 49.4621L70.1918 49.8295L69.0561 33.8311L74.5932 33.4381C77.1611 33.2558 79.1884 33.7717 80.675 34.986C82.1689 36.1997 83.0039 38.0467 83.1799 40.5271ZM78.7043 40.9988C78.6002 39.5324 78.2312 38.4662 77.5973 37.8C76.9708 37.1332 76.0666 36.8418 74.8848 36.9257L73.6263 37.0151L74.2626 45.9772L75.2255 45.9089C76.5387 45.8157 77.4747 45.3679 78.0336 44.5657C78.5921 43.7562 78.8156 42.5673 78.7043 40.9988ZM91.575 48.3116L90.4393 32.3132L94.7836 32.0048L95.9193 48.0032L91.575 48.3116ZM114.172 46.7074L108.504 47.1098L101.86 36.2535L101.762 36.2605C102.026 38.0234 102.192 39.3718 102.258 40.3056L102.77 47.5169L98.94 47.7888L97.8042 31.7903L103.451 31.3895L110.062 42.0942L110.127 42.0895C109.911 40.4845 109.768 39.1932 109.698 38.2157L109.185 30.9825L113.037 30.709L114.172 46.7074ZM126.812 45.8102L122.555 46.1123L121.42 30.1139L130.874 29.4428L131.121 32.9116L125.923 33.2806L126.14 36.3337L130.932 35.9934L131.179 39.4623L126.386 39.8025L126.812 45.8102ZM146.654 28.3226L147.338 37.9523C147.487 40.046 147.007 41.7114 145.9 42.9484C144.799 44.1777 143.133 44.8715 140.901 45.03C138.719 45.1848 137.002 44.7459 135.748 43.7131C134.502 42.6798 133.804 41.1163 133.655 39.0225L132.965 29.2944L137.309 28.986L137.976 38.3749C138.056 39.5057 138.326 40.3114 138.785 40.792C139.245 41.2726 139.886 41.4837 140.711 41.4252C141.593 41.3625 142.214 41.0655 142.572 40.5342C142.937 39.995 143.079 39.1491 142.997 37.9965L142.332 28.6294L146.654 28.3226ZM150.701 44.1143L149.566 28.1159L153.888 27.8091L154.776 40.3167L160.937 39.8794L161.185 43.3701L150.701 44.1143ZM163.297 43.2202L162.161 27.2218L166.484 26.9149L167.372 39.4226L173.532 38.9852L173.78 42.476L163.297 43.2202Z" fill="#FB3D01"/>
5
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="36" height="24" viewBox="0 0 36 24">
2
+ <g fill="none" fill-rule="evenodd">
3
+ <rect width="36" height="24" fill="#FFF" rx="4"/>
4
+ <g fill-rule="nonzero">
5
+ <path fill="#283B82" d="M6.595 7.701h-2.33a.327.327 0 0 0-.32.28l-.943 6.137a.198.198 0 0 0 .193.23h1.112c.16 0 .295-.118.32-.28l.254-1.656a.326.326 0 0 1 .32-.28h.737c1.535 0 2.421-.763 2.653-2.275.104-.661.004-1.181-.297-1.545-.332-.4-.919-.611-1.699-.611zm.269 2.241c-.128.859-.766.859-1.384.859h-.352l.247-1.604a.196.196 0 0 1 .192-.168h.16c.422 0 .819 0 1.024.246.122.147.16.366.113.667zM13.56 9.915h-1.115a.196.196 0 0 0-.192.168l-.05.32-.078-.116c-.241-.36-.78-.48-1.318-.48-1.233 0-2.286.959-2.491 2.304-.107.672.045 1.313.416 1.76.34.412.826.584 1.405.584.994 0 1.545-.656 1.545-.656l-.05.318a.198.198 0 0 0 .191.231h1.006c.16 0 .294-.119.32-.28l.603-3.923a.197.197 0 0 0-.192-.23zm-1.555 2.23c-.108.655-.614 1.094-1.259 1.094-.324 0-.583-.106-.75-.309-.164-.2-.227-.486-.174-.805.1-.649.615-1.103 1.25-1.103.317 0 .575.108.744.312.17.206.238.494.189.811zM19.503 9.915h-1.121a.323.323 0 0 0-.268.146l-1.547 2.34-.655-2.25a.326.326 0 0 0-.31-.236h-1.103a.199.199 0 0 0-.184.263l1.235 3.723-1.161 1.683c-.092.133 0 .315.158.315h1.12a.32.32 0 0 0 .266-.142l3.73-5.53c.09-.131-.003-.312-.16-.312"/>
6
+ <path fill="#469BDB" d="M23.216 7.701h-2.33a.327.327 0 0 0-.32.28l-.943 6.137a.198.198 0 0 0 .192.23h1.196a.228.228 0 0 0 .223-.196l.268-1.74a.326.326 0 0 1 .32-.28h.737c1.535 0 2.42-.763 2.652-2.275.105-.661.004-1.181-.297-1.545-.331-.4-.918-.611-1.698-.611zm.269 2.241c-.127.859-.766.859-1.384.859h-.352l.247-1.604a.195.195 0 0 1 .192-.168h.161c.42 0 .818 0 1.023.246.122.147.16.366.113.667zM30.181 9.915h-1.115a.195.195 0 0 0-.192.168l-.05.32-.077-.116c-.242-.36-.78-.48-1.318-.48-1.233 0-2.286.959-2.491 2.304-.106.672.045 1.313.415 1.76.341.412.827.584 1.406.584.993 0 1.544-.656 1.544-.656l-.05.318a.198.198 0 0 0 .193.231h1.004c.16 0 .295-.119.32-.28l.604-3.923a.198.198 0 0 0-.193-.23zm-1.555 2.23c-.107.655-.614 1.094-1.26 1.094-.323 0-.582-.106-.749-.309-.165-.2-.227-.486-.175-.805.101-.649.615-1.103 1.25-1.103.318 0 .575.108.745.312.17.206.238.494.189.811zM31.497 7.87l-.957 6.248a.198.198 0 0 0 .192.23h.961c.16 0 .296-.118.32-.28l.943-6.137a.198.198 0 0 0-.191-.23h-1.077a.196.196 0 0 0-.191.168"/>
7
+ </g>
8
+ </g>
9
+ </svg>
Binary file
@@ -0,0 +1,5 @@
1
+ <svg width="29" height="48" viewBox="0 0 29 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0.509644 16.6185L3.30763 17.2162L5.4319 15.2996L8.35294 15.8643L10.6003 13.9147L13.3983 14.5125L15.5225 12.5958L18.4436 13.1606L20.6909 11.211L28.7363 41.2367C28.882 41.7804 28.5593 42.3393 28.0156 42.485L9.80325 47.3649C9.25956 47.5106 8.7007 47.188 8.55502 46.6443L0.509644 16.6185Z" fill="#B0B0BA"/>
3
+ <path d="M17.7011 37.1304C17.9965 37.0513 18.2023 37.2051 18.2925 37.5418L18.4919 38.286L17.5764 38.5313L17.3801 37.7989C17.2899 37.4622 17.4058 37.2096 17.7011 37.1304ZM16.0919 37.6693C16.3754 37.5933 16.5721 37.7368 16.6608 38.0676L16.838 38.7292L15.9697 38.9618L15.7925 38.3003C15.7038 37.9695 15.8083 37.7452 16.0919 37.6693ZM17.5632 36.0722C17.0906 36.1988 16.7492 36.6258 16.7786 37.1371C16.5528 36.7671 16.1473 36.5529 15.6452 36.6874C14.9895 36.8631 14.7047 37.4775 14.931 38.3222L15.4312 40.1887L19.5777 39.0776L19.0601 37.1461C18.8259 36.272 18.2483 35.8886 17.5632 36.0722ZM16.7339 34.5839C16.1669 34.7359 15.9271 34.5026 15.7989 34.0241L15.7245 33.7465L14.6554 34.033C14.7741 34.476 15.1069 34.773 15.5171 34.91L14.9678 35.0572L15.2384 36.0672L18.5344 35.1841L18.2637 34.174L16.7339 34.5839ZM16.2573 33.3015C17.2969 33.023 17.786 32.2019 17.5707 31.3986C17.4393 30.9083 17.1215 30.62 16.783 30.5144L17.2496 30.3894L16.979 29.3793L13.6831 30.2625L13.9537 31.2725L14.4203 31.1475C14.1784 31.4023 14.0473 31.8109 14.1787 32.3011C14.3955 33.1104 15.2178 33.5801 16.2573 33.3015ZM15.6017 30.831C16.1274 30.6901 16.507 30.9492 16.6099 31.3332C16.7112 31.7112 16.5076 32.1329 15.9819 32.2738C15.4563 32.4146 15.0809 32.148 14.9796 31.77C14.8768 31.3861 15.076 30.9718 15.6017 30.831ZM16.1739 26.3745L15.9048 25.3704L13.9792 25.8864C13.0932 26.1238 12.7095 26.771 12.9137 27.533C13.0324 27.976 13.3223 28.2782 13.6537 28.4046L13.2166 28.5217L13.4873 29.5318L16.7832 28.6486L16.5126 27.6386L14.7228 28.1181C14.2739 28.2384 13.9594 28.0568 13.8565 27.6729C13.7536 27.2889 13.9352 26.9744 14.3841 26.8541L16.1739 26.3745ZM14.1167 25.3125C15.1563 25.0339 15.6453 24.2128 15.4285 23.4036C15.2987 22.9193 14.9868 22.6293 14.6365 22.527L15.109 22.4003L14.8383 21.3903L10.4674 22.5615L10.738 23.5715L12.2679 23.1616C12.0204 23.4432 11.9209 23.875 12.038 24.3121C12.2548 25.1213 13.0771 25.591 14.1167 25.3125ZM13.461 22.8419C13.9867 22.701 14.3664 22.9602 14.4692 23.3441C14.5705 23.7221 14.367 24.1439 13.8413 24.2847C13.3156 24.4256 12.9403 24.159 12.839 23.7809C12.7361 23.397 12.9353 22.9828 13.461 22.8419Z" fill="#F9F9FC"/>
4
+ <path d="M20.8932 10.1918L18.3452 11.7206L15.7973 10.1918L13.122 11.7206L10.4466 10.1918L7.89866 11.7206L5.35071 10.1918L2.67537 11.7206L2.46619e-05 10.1918L2.386e-05 1.01922C2.38108e-05 0.456345 0.456325 4.27946e-05 1.0192 4.27454e-05L19.874 4.10971e-05C20.4369 4.10479e-05 20.8932 0.456343 20.8932 1.01922L20.8932 10.1918Z" fill="#B0B0BA"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="41" height="41" viewBox="0 0 41 41" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M20.1272 39.7597C16.1035 39.7597 9.79788 39.2651 9.73463 39.2651C9.54056 39.2486 9.36055 39.1555 9.23321 39.0057C9.10587 38.8559 9.04134 38.6613 9.05347 38.4637C9.05347 38.3746 9.61786 29.6336 9.54001 24.0882C9.51082 21.7979 9.35513 18.7506 9.22863 16.5543L8.98049 17.0489C8.92937 17.1516 8.85591 17.241 8.7657 17.3104C8.6755 17.3798 8.57091 17.4275 8.45989 17.4496H8.31393C8.13541 17.4499 7.96273 17.385 7.82738 17.2666C6.82023 16.3753 5.75021 15.5602 4.62593 14.8278C3.59089 14.261 2.51973 13.7652 1.41961 13.3438C1.31923 13.3062 1.22808 13.2469 1.15243 13.17C1.07678 13.0931 1.01845 13.0004 0.981444 12.8983C0.944441 12.7963 0.929653 12.6873 0.938101 12.5789C0.946549 12.4704 0.978031 12.3652 1.03038 12.2703L5.70119 3.65793C5.75231 3.56547 5.82209 3.48506 5.90594 3.42197C5.98979 3.35888 6.08583 3.31454 6.18773 3.29186L14.6925 1.26367C14.7474 1.25642 14.803 1.25642 14.8579 1.26367C14.9816 1.26386 15.1035 1.29441 15.2131 1.35272C16.0646 1.8474 18.6189 3.03463 20.1321 3.03463C21.6452 3.03463 24.1947 1.82266 25.051 1.35272C25.1587 1.29387 25.2791 1.26326 25.4013 1.26367C25.4579 1.25638 25.5151 1.25638 25.5716 1.26367L34.0764 3.29186C34.1785 3.31394 34.2748 3.35805 34.3587 3.4212C34.4427 3.48435 34.5123 3.56508 34.5629 3.65793L39.2386 12.2703C39.2898 12.3657 39.3203 12.4712 39.3278 12.5796C39.3354 12.688 39.3199 12.7968 39.2824 12.8986C39.2451 12.9996 39.1872 13.0914 39.1126 13.1682C39.038 13.2449 38.9483 13.3047 38.8494 13.3438C37.7471 13.7639 36.6743 14.2597 35.6382 14.8278C34.5064 15.5686 33.4313 16.3955 32.4221 17.3012C32.2863 17.4188 32.114 17.4837 31.9356 17.4843C31.8887 17.4894 31.8414 17.4894 31.7945 17.4843C31.6832 17.4628 31.5783 17.4155 31.488 17.3459C31.3977 17.2764 31.3244 17.1866 31.2739 17.0836L31.0258 16.5889C30.8944 18.7853 30.7436 21.8325 30.7095 24.1229C30.6365 29.6682 31.196 38.4093 31.196 38.4983C31.2082 38.6959 31.1437 38.8905 31.0163 39.0403C30.889 39.1901 30.709 39.2832 30.5149 39.2997C30.4516 39.2552 24.146 39.7597 20.1272 39.7597Z" fill="#38C88D"/>
3
+ <path d="M25.3959 2.02613L33.9007 4.05432L38.5715 12.6667C37.4337 13.0979 36.3252 13.6053 35.2533 14.1854C34.0848 14.9439 32.974 15.7905 31.9302 16.7181L30.4706 13.6808C30.4706 13.6808 30.0327 20.0028 29.984 24.0691C29.9111 29.7085 30.4706 38.5039 30.4706 38.5039C30.4706 38.5039 24.1796 38.9986 20.1413 38.9986C16.103 38.9986 9.80709 38.5039 9.80709 38.5039C9.80709 38.5039 10.3763 29.7085 10.2936 24.0691C10.2401 20.0078 9.80709 13.6808 9.80709 13.6808L8.34746 16.7181C7.30471 15.7914 6.19557 14.9448 5.02924 14.1854C3.94639 13.6037 2.82646 13.0963 1.67695 12.6667L6.35263 4.05432L14.8525 2.02613C14.8525 2.02613 18.0881 3.80203 20.1267 3.80203C22.1653 3.80203 25.3959 2.02613 25.3959 2.02613ZM25.3959 0.542087C25.15 0.541681 24.9077 0.602842 24.6904 0.720172C23.5665 1.33852 21.3284 2.31304 20.1267 2.31304C18.9249 2.31304 16.6819 1.32368 15.558 0.720172C15.3408 0.602842 15.0985 0.541681 14.8525 0.542087C14.7394 0.540582 14.6266 0.553883 14.5168 0.581661L6.01205 2.58512C5.80692 2.63039 5.6138 2.72011 5.44587 2.84816C5.27794 2.97622 5.13915 3.13959 5.03897 3.32714L0.377883 11.9395C0.271516 12.1281 0.207196 12.3381 0.189472 12.5548C0.171748 12.7714 0.201052 12.9894 0.275312 13.1932C0.349572 13.3971 0.466975 13.5819 0.619219 13.7345C0.771463 13.8871 0.954829 14.0039 1.15635 14.0766C2.21607 14.4815 3.2496 14.954 4.25077 15.4913C5.3385 16.2004 6.37283 16.9908 7.34518 17.8559C7.61379 18.0968 7.96012 18.2288 8.31827 18.2269C8.4057 18.2342 8.49357 18.2342 8.581 18.2269C8.68317 20.1463 8.78048 22.3526 8.80481 24.1087C8.87779 29.6244 8.31827 38.3406 8.31827 38.4247C8.30236 38.6213 8.32515 38.8191 8.3853 39.0066C8.44545 39.1941 8.54177 39.3676 8.6686 39.5168C8.79544 39.666 8.95027 39.788 9.12403 39.8757C9.29778 39.9634 9.48699 40.015 9.68059 40.0275C9.94332 40.0275 16.0786 40.5222 20.1315 40.5222C24.1844 40.5222 30.3197 40.0275 30.5776 40.0275C30.7712 40.015 30.9604 39.9634 31.1342 39.8757C31.3079 39.788 31.4628 39.666 31.5896 39.5168C31.7164 39.3676 31.8127 39.1941 31.8729 39.0066C31.9331 38.8191 31.9558 38.6213 31.9399 38.4247C31.9399 38.3406 31.3804 29.6244 31.4534 24.1087C31.4534 22.3526 31.575 20.1512 31.6723 18.2269C31.7598 18.2342 31.8476 18.2342 31.9351 18.2269C32.2927 18.2261 32.6382 18.0944 32.9082 17.8559C33.8722 16.9911 34.8984 16.2008 35.9782 15.4913C36.9794 14.954 38.0129 14.4815 39.0727 14.0766C39.2759 14.006 39.4613 13.8908 39.6156 13.7391C39.77 13.5874 39.8896 13.4029 39.9658 13.1988C40.042 12.9947 40.073 12.776 40.0565 12.5583C40.0401 12.3407 39.9766 12.1294 39.8706 11.9395L35.1998 3.32714C35.0979 3.14097 34.9585 2.9787 34.7909 2.85086C34.6232 2.72302 34.431 2.63248 34.2267 2.58512L25.7608 0.561874C25.6494 0.534103 25.535 0.520805 25.4203 0.5223L25.3959 0.542087Z" fill="#343750"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="41" height="74" viewBox="0 0 41 74" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="41" height="74" rx="2" fill="#343750"/>
3
+ <path d="M20.52 57.0279C20.676 56.2959 21.042 55.7079 21.618 55.2639C22.182 54.8199 22.83 54.5979 23.562 54.5979C24.618 54.5979 25.458 54.9699 26.082 55.7139C26.694 56.4459 27 57.4719 27 58.7919L27 64.6779L14.364 64.6779L14.364 58.9899C14.364 57.7059 14.658 56.7039 15.246 55.9839C15.834 55.2519 16.632 54.8859 17.64 54.8859C18.384 54.8859 19.002 55.0839 19.494 55.4799C19.986 55.8639 20.328 56.3799 20.52 57.0279ZM19.476 61.5999L19.476 59.5839C19.476 59.0799 19.368 58.6959 19.152 58.4319C18.924 58.1559 18.594 58.0179 18.162 58.0179C17.73 58.0179 17.4 58.1559 17.172 58.4319C16.944 58.6959 16.83 59.0799 16.83 59.5839L16.83 61.5999L19.476 61.5999ZM24.516 59.3319C24.516 58.8159 24.402 58.4199 24.174 58.1439C23.934 57.8559 23.592 57.7119 23.148 57.7119C22.704 57.7119 22.356 57.8619 22.104 58.1619C21.852 58.4499 21.726 58.8519 21.726 59.3679L21.726 61.5999L24.516 61.5999L24.516 59.3319ZM18.63 49.7347C18.078 49.3747 17.646 48.9247 17.334 48.3847C17.01 47.8447 16.848 47.2447 16.848 46.5847L20.106 46.5847L20.106 47.4307C20.106 48.1987 20.274 48.7747 20.61 49.1587C20.934 49.5427 21.51 49.7347 22.338 49.7347L27 49.7347L27 52.8127L16.956 52.8127L16.956 49.7347L18.63 49.7347ZM21.96 45.7255C20.928 45.7255 20.022 45.5335 19.242 45.1495C18.462 44.7535 17.862 44.2195 17.442 43.5475C17.022 42.8755 16.812 42.1255 16.812 41.2975C16.812 40.5895 16.956 39.9715 17.244 39.4435C17.532 38.9035 17.91 38.4895 18.378 38.2015L16.956 38.2015L16.956 35.1235L27 35.1235L27 38.2015L25.578 38.2015C26.046 38.5015 26.424 38.9215 26.712 39.4615C27 39.9895 27.144 40.6075 27.144 41.3155C27.144 42.1315 26.934 42.8755 26.514 43.5475C26.082 44.2195 25.476 44.7535 24.696 45.1495C23.904 45.5335 22.992 45.7255 21.96 45.7255ZM21.978 38.2015C21.21 38.2015 20.604 38.4175 20.16 38.8495C19.716 39.2695 19.494 39.7855 19.494 40.3975C19.494 41.0095 19.716 41.5315 20.16 41.9635C20.592 42.3835 21.192 42.5935 21.96 42.5935C22.728 42.5935 23.34 42.3835 23.796 41.9635C24.24 41.5315 24.462 41.0095 24.462 40.3975C24.462 39.7855 24.24 39.2695 23.796 38.8495C23.352 38.4175 22.746 38.2015 21.978 38.2015ZM16.848 26.7767C16.848 25.6007 17.232 24.6647 18 23.9687C18.756 23.2607 19.8 22.9067 21.132 22.9067L27 22.9067L27 25.9667L21.546 25.9667C20.874 25.9667 20.352 26.1407 19.98 26.4887C19.608 26.8367 19.422 27.3047 19.422 27.8927C19.422 28.4807 19.608 28.9487 19.98 29.2967C20.352 29.6447 20.874 29.8187 21.546 29.8187L27 29.8187L27 32.8967L16.956 32.8967L16.956 29.8187L18.288 29.8187C17.844 29.5067 17.496 29.0867 17.244 28.5587C16.98 28.0307 16.848 27.4367 16.848 26.7767ZM21.96 21.3798C20.928 21.3798 20.022 21.1878 19.242 20.8038C18.462 20.4078 17.862 19.8738 17.442 19.2018C17.022 18.5298 16.812 17.7798 16.812 16.9518C16.812 16.2918 16.95 15.6918 17.226 15.1518C17.502 14.5998 17.874 14.1678 18.342 13.8558L13.68 13.8558L13.68 10.7778L27 10.7778L27 13.8558L25.56 13.8558C26.04 14.1438 26.424 14.5578 26.712 15.0978C27 15.6258 27.144 16.2438 27.144 16.9518C27.144 17.7798 26.934 18.5298 26.514 19.2018C26.082 19.8738 25.476 20.4078 24.696 20.8038C23.904 21.1878 22.992 21.3798 21.96 21.3798ZM21.978 13.8558C21.21 13.8558 20.604 14.0718 20.16 14.5038C19.716 14.9238 19.494 15.4398 19.494 16.0518C19.494 16.6638 19.716 17.1858 20.16 17.6178C20.592 18.0378 21.192 18.2478 21.96 18.2478C22.728 18.2478 23.34 18.0378 23.796 17.6178C24.24 17.1858 24.462 16.6638 24.462 16.0518C24.462 15.4398 24.24 14.9238 23.796 14.5038C23.352 14.0718 22.746 13.8558 21.978 13.8558Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="41" height="74" viewBox="0 0 41 74" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="41" height="74" rx="2" fill="#343750"/>
3
+ <path d="M32.365 40.0857V61.2935H27.199V48.5748L22.456 61.2935H18.2869L13.5137 48.5446V61.2935H8.34766V40.0857H14.4502L20.4017 54.768L26.2927 40.0857H32.365Z" fill="white"/>
4
+ <rect x="8.63281" y="26.1172" width="23.7368" height="2.17647" fill="white"/>
5
+ <rect x="8.63281" y="30.4702" width="23.7368" height="2.17647" fill="white"/>
6
+ <rect x="8.63281" y="21.7642" width="23.7368" height="2.17647" fill="white"/>
7
+ <rect x="8.63281" y="15.2349" width="23.7368" height="4.35294" fill="white"/>
8
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg width="275" height="275" viewBox="0 0 275 275" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M173 20L167.227 30H178.774L173 20ZM172 29V130.5H174V29H172ZM172 130.5L172 176.75H174L174 130.5H172Z" fill="#575872"/>
3
+ <path d="M173 259.5L178.773 249.5L167.226 249.5L173 259.5ZM174 250.5L174 208L172 208L172 250.5L174 250.5Z" fill="#575872"/>
4
+ <path d="M70 152.773L80 158.547L80 147L70 152.773ZM79 153.773L109.5 153.773L109.5 151.773L79 151.773L79 153.773Z" fill="#575872"/>
5
+ <path d="M205.5 152.774L195.5 147L195.5 158.547L205.5 152.774ZM196.5 151.774L166 151.773L166 153.773L196.5 153.774L196.5 151.774Z" fill="#575872"/>
6
+ <path d="M55.4737 113.861C54.9735 114.245 54.3984 114.513 53.7882 114.648H52.8466H52.845C51.8111 114.65 50.8089 114.275 50.0211 113.589C42.7712 107.192 35.0688 101.341 26.9757 96.0834L26.9437 96.0626L26.9103 96.0443C19.4573 91.9743 11.7441 88.4143 3.82228 85.3879L3.8154 85.3854C3.23346 85.1679 2.70387 84.8247 2.26363 84.3784C1.82335 83.932 1.48295 83.3933 1.26679 82.7988C1.05062 82.2043 0.964101 81.5689 1.01351 80.9366C1.06291 80.3043 1.24699 79.691 1.55245 79.1391L1.55596 79.1326L35.0072 17.6251C35.0078 17.624 35.0085 17.6228 35.0091 17.6217C35.3072 17.0852 35.713 16.6196 36.1993 16.2548C36.6866 15.8892 37.2438 15.6328 37.8342 15.5018L37.8416 15.5002L37.8489 15.4985L98.7121 1.02456C99.0032 0.990253 99.2974 0.99224 99.5881 1.03052L99.6524 1.03898L99.7171 1.03908C100.434 1.04018 101.141 1.21524 101.778 1.55026C104.885 3.34808 111.022 6.36716 117.744 8.94055C124.449 11.5077 131.88 13.6883 137.495 13.6883C143.114 13.6883 150.538 11.4612 157.236 8.87319C163.966 6.27269 170.104 3.25086 173.206 1.55311C173.83 1.21309 174.527 1.0367 175.233 1.03907L175.299 1.03929L175.364 1.0309C175.668 0.991814 175.975 0.989808 176.279 1.02488L237.141 15.4985L237.152 15.5009L237.162 15.5031C237.752 15.6303 238.309 15.8844 238.795 16.2492C239.281 16.6141 239.686 17.0813 239.98 17.6199L273.467 79.1291C273.767 79.685 273.945 80.3004 273.989 80.9336C274.033 81.5667 273.943 82.2019 273.723 82.7956C273.504 83.3863 273.165 83.9224 272.729 84.3695C272.294 84.8154 271.773 85.1626 271.199 85.3895C263.263 88.4059 255.539 91.9658 248.079 96.0446L248.045 96.0633L248.013 96.0846C239.866 101.402 232.128 107.336 224.864 113.837C224.072 114.518 223.07 114.892 222.036 114.896L221.983 114.896L221.931 114.902C221.68 114.929 221.428 114.93 221.177 114.906C220.548 114.778 219.955 114.508 219.442 114.115C218.918 113.712 218.492 113.192 218.197 112.593L218.193 112.584L216.416 109.051L214.746 105.733L214.524 109.441C213.583 125.133 212.501 146.916 212.257 163.298L212.257 163.299C211.995 183.134 212.868 208.669 213.805 229.311C214.273 239.635 214.758 248.74 215.126 255.304C215.309 258.586 215.464 261.233 215.573 263.079L215.626 263.981C215.655 264.484 215.68 264.901 215.699 265.225C215.708 265.386 215.716 265.524 215.723 265.638C215.726 265.702 215.729 265.758 215.732 265.807C215.741 265.965 215.742 266.006 215.742 265.99V266.021L215.744 266.052C215.815 267.206 215.437 268.341 214.694 269.213C213.977 270.053 212.978 270.584 211.898 270.706C211.835 270.7 211.772 270.697 211.717 270.696C211.592 270.693 211.431 270.694 211.245 270.699C210.868 270.708 210.335 270.731 209.666 270.765C208.325 270.834 206.406 270.949 204.033 271.095C202.984 271.16 201.847 271.231 200.63 271.307C196.333 271.575 191.05 271.904 185.229 272.239C170.284 273.101 151.822 274 137.46 274C123.081 274 104.61 273.118 89.6627 272.235C82.1921 271.794 75.6071 271.352 70.8613 271.021C68.4885 270.856 66.5755 270.718 65.2412 270.621L64.7793 270.588C64.3287 270.555 63.9625 270.529 63.6877 270.509C63.4289 270.49 63.2096 270.475 63.0924 270.469C61.9726 270.371 60.9316 269.833 60.1921 268.965C59.4491 268.094 59.0707 266.959 59.1418 265.804L59.1437 265.773V265.743C59.1437 265.751 59.144 265.744 59.1455 265.714C59.147 265.686 59.1495 265.637 59.1537 265.56C59.1613 265.424 59.1725 265.229 59.1872 264.979C59.2167 264.477 59.2598 263.755 59.3145 262.832C59.424 260.986 59.5798 258.339 59.765 255.057C60.1354 248.493 60.6235 239.388 61.0942 229.064C62.0352 208.422 62.9077 182.888 62.6285 163.052C62.4191 146.669 61.3027 124.884 60.3966 109.196L60.1815 105.471L58.5049 108.804L56.7276 112.337L56.7263 112.34C56.4275 112.938 55.9988 113.458 55.4737 113.861Z" stroke="#6E6E82" stroke-width="2"/>
7
+ <path d="M151.754 193.964H155.17V195H150.48V185.242H151.754V193.964ZM163.523 190.87C163.523 191.113 163.509 191.369 163.481 191.64H157.349C157.396 192.396 157.653 192.989 158.119 193.418C158.595 193.838 159.169 194.048 159.841 194.048C160.392 194.048 160.849 193.922 161.213 193.67C161.587 193.409 161.848 193.063 161.997 192.634H163.369C163.164 193.371 162.753 193.973 162.137 194.44C161.521 194.897 160.756 195.126 159.841 195.126C159.113 195.126 158.46 194.963 157.881 194.636C157.312 194.309 156.864 193.847 156.537 193.25C156.211 192.643 156.047 191.943 156.047 191.15C156.047 190.357 156.206 189.661 156.523 189.064C156.841 188.467 157.284 188.009 157.853 187.692C158.432 187.365 159.095 187.202 159.841 187.202C160.569 187.202 161.213 187.361 161.773 187.678C162.333 187.995 162.763 188.434 163.061 188.994C163.369 189.545 163.523 190.17 163.523 190.87ZM162.207 190.604C162.207 190.119 162.1 189.703 161.885 189.358C161.671 189.003 161.377 188.737 161.003 188.56C160.639 188.373 160.233 188.28 159.785 188.28C159.141 188.28 158.591 188.485 158.133 188.896C157.685 189.307 157.429 189.876 157.363 190.604H162.207ZM168.943 187.188C169.876 187.188 170.632 187.473 171.211 188.042C171.79 188.602 172.079 189.414 172.079 190.478V195H170.819V190.66C170.819 189.895 170.628 189.311 170.245 188.91C169.862 188.499 169.34 188.294 168.677 188.294C168.005 188.294 167.468 188.504 167.067 188.924C166.675 189.344 166.479 189.955 166.479 190.758V195H165.205V187.328H166.479V188.42C166.731 188.028 167.072 187.725 167.501 187.51C167.94 187.295 168.42 187.188 168.943 187.188ZM177.324 187.202C177.987 187.202 178.565 187.347 179.06 187.636C179.564 187.925 179.937 188.289 180.18 188.728V187.328H181.468V195.168C181.468 195.868 181.319 196.489 181.02 197.03C180.721 197.581 180.292 198.01 179.732 198.318C179.181 198.626 178.537 198.78 177.8 198.78C176.792 198.78 175.952 198.542 175.28 198.066C174.608 197.59 174.211 196.941 174.09 196.12H175.35C175.49 196.587 175.779 196.96 176.218 197.24C176.657 197.529 177.184 197.674 177.8 197.674C178.5 197.674 179.069 197.455 179.508 197.016C179.956 196.577 180.18 195.961 180.18 195.168V193.558C179.928 194.006 179.555 194.379 179.06 194.678C178.565 194.977 177.987 195.126 177.324 195.126C176.643 195.126 176.022 194.958 175.462 194.622C174.911 194.286 174.477 193.815 174.16 193.208C173.843 192.601 173.684 191.911 173.684 191.136C173.684 190.352 173.843 189.666 174.16 189.078C174.477 188.481 174.911 188.019 175.462 187.692C176.022 187.365 176.643 187.202 177.324 187.202ZM180.18 191.15C180.18 190.571 180.063 190.067 179.83 189.638C179.597 189.209 179.279 188.882 178.878 188.658C178.486 188.425 178.052 188.308 177.576 188.308C177.1 188.308 176.666 188.42 176.274 188.644C175.882 188.868 175.569 189.195 175.336 189.624C175.103 190.053 174.986 190.557 174.986 191.136C174.986 191.724 175.103 192.237 175.336 192.676C175.569 193.105 175.882 193.437 176.274 193.67C176.666 193.894 177.1 194.006 177.576 194.006C178.052 194.006 178.486 193.894 178.878 193.67C179.279 193.437 179.597 193.105 179.83 192.676C180.063 192.237 180.18 191.729 180.18 191.15ZM185.175 188.378V192.9C185.175 193.273 185.254 193.539 185.413 193.698C185.572 193.847 185.847 193.922 186.239 193.922H187.177V195H186.029C185.32 195 184.788 194.837 184.433 194.51C184.078 194.183 183.901 193.647 183.901 192.9V188.378H182.907V187.328H183.901V185.396H185.175V187.328H187.177V188.378H185.175ZM192.529 187.188C193.107 187.188 193.63 187.314 194.097 187.566C194.563 187.809 194.927 188.177 195.189 188.672C195.459 189.167 195.595 189.769 195.595 190.478V195H194.335V190.66C194.335 189.895 194.143 189.311 193.761 188.91C193.378 188.499 192.855 188.294 192.193 188.294C191.521 188.294 190.984 188.504 190.583 188.924C190.191 189.344 189.995 189.955 189.995 190.758V195H188.721V184.64H189.995V188.42C190.247 188.028 190.592 187.725 191.031 187.51C191.479 187.295 191.978 187.188 192.529 187.188Z" fill="#6E6E82"/>
8
+ <path d="M131.032 147.242L128.204 157H126.776L124.508 149.146L122.156 157L120.742 157.014L118.012 147.242H119.37L121.498 155.516L123.85 147.242H125.278L127.518 155.488L129.66 147.242H131.032ZM133.085 148.082C132.842 148.082 132.637 147.998 132.469 147.83C132.301 147.662 132.217 147.457 132.217 147.214C132.217 146.971 132.301 146.766 132.469 146.598C132.637 146.43 132.842 146.346 133.085 146.346C133.318 146.346 133.514 146.43 133.673 146.598C133.841 146.766 133.925 146.971 133.925 147.214C133.925 147.457 133.841 147.662 133.673 147.83C133.514 147.998 133.318 148.082 133.085 148.082ZM133.701 149.328V157H132.427V149.328H133.701ZM135.396 153.136C135.396 152.352 135.555 151.666 135.872 151.078C136.189 150.481 136.623 150.019 137.174 149.692C137.734 149.365 138.359 149.202 139.05 149.202C139.647 149.202 140.203 149.342 140.716 149.622C141.229 149.893 141.621 150.252 141.892 150.7V146.64H143.18V157H141.892V155.558C141.64 156.015 141.267 156.393 140.772 156.692C140.277 156.981 139.699 157.126 139.036 157.126C138.355 157.126 137.734 156.958 137.174 156.622C136.623 156.286 136.189 155.815 135.872 155.208C135.555 154.601 135.396 153.911 135.396 153.136ZM141.892 153.15C141.892 152.571 141.775 152.067 141.542 151.638C141.309 151.209 140.991 150.882 140.59 150.658C140.198 150.425 139.764 150.308 139.288 150.308C138.812 150.308 138.378 150.42 137.986 150.644C137.594 150.868 137.281 151.195 137.048 151.624C136.815 152.053 136.698 152.557 136.698 153.136C136.698 153.724 136.815 154.237 137.048 154.676C137.281 155.105 137.594 155.437 137.986 155.67C138.378 155.894 138.812 156.006 139.288 156.006C139.764 156.006 140.198 155.894 140.59 155.67C140.991 155.437 141.309 155.105 141.542 154.676C141.775 154.237 141.892 153.729 141.892 153.15ZM146.887 150.378V154.9C146.887 155.273 146.966 155.539 147.125 155.698C147.284 155.847 147.559 155.922 147.951 155.922H148.889V157H147.741C147.032 157 146.5 156.837 146.145 156.51C145.79 156.183 145.613 155.647 145.613 154.9V150.378H144.619V149.328H145.613V147.396H146.887V149.328H148.889V150.378H146.887ZM154.24 149.188C154.819 149.188 155.342 149.314 155.808 149.566C156.275 149.809 156.639 150.177 156.9 150.672C157.171 151.167 157.306 151.769 157.306 152.478V157H156.046V152.66C156.046 151.895 155.855 151.311 155.472 150.91C155.09 150.499 154.567 150.294 153.904 150.294C153.232 150.294 152.696 150.504 152.294 150.924C151.902 151.344 151.706 151.955 151.706 152.758V157H150.432V146.64H151.706V150.42C151.958 150.028 152.304 149.725 152.742 149.51C153.19 149.295 153.69 149.188 154.24 149.188Z" fill="#6E6E82"/>
9
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="148" height="105" viewBox="0 0 148 105" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="66.2832" y="5.30347" width="17.2515" height="31.0979" rx="1.81595" fill="#343750"/>
3
+ <path d="M79.8997 22.2698V31.1934H77.7261V25.8418L75.7303 31.1934H73.9761L71.9677 25.829V31.1934H69.794V22.2698H72.3617L74.8659 28.4476L77.3447 22.2698H79.8997Z" fill="white"/>
4
+ <rect x="69.9141" y="16.2788" width="9.98773" height="0.914645" fill="white"/>
5
+ <rect x="69.9141" y="18.1079" width="9.98773" height="0.914645" fill="white"/>
6
+ <rect x="69.9141" y="14.45" width="9.98773" height="0.914645" fill="white"/>
7
+ <rect x="69.9141" y="11.7056" width="9.98773" height="1.82929" fill="white"/>
8
+ <path d="M74.2764 54.3146C127.883 54.3146 133.434 21.3906 133.434 19.8599L148 28.111V105H0V28.111L15.1506 19.8599C15.1506 21.9457 20.6701 54.3146 74.2764 54.3146Z" fill="#EFF1F2"/>
9
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M16.5896 19.2708C16.5896 19.2708 51.6062 6.79774 74.8573 6.89419C97.6632 6.9888 131.96 19.2708 131.96 19.2708V13.3772C131.96 13.3772 97.6632 1.09516 74.8573 1.00056C51.6062 0.904106 16.5896 13.3772 16.5896 13.3772V19.2708ZM16.5768 14.3018V19.9768C16.5768 22.5348 27.0779 48.7384 74.2747 48.7384C121.472 48.7384 131.983 22.5348 131.983 20.0112V14.2883C131.983 14.2883 133.432 20.495 133.432 21.356C133.432 22.8868 127.881 55.8108 74.2747 55.8108C20.6684 55.8108 15.1489 23.4418 15.1489 21.356C15.1489 19.8596 16.5768 14.3018 16.5768 14.3018Z" fill="#EFF1F2"/>
10
+ <path d="M74.8573 6.89419L74.8564 7.12118L74.8573 6.89419ZM16.5896 19.2708H16.3626C16.3626 19.3446 16.3985 19.4138 16.4588 19.4563C16.5191 19.4988 16.5963 19.5094 16.6658 19.4847L16.5896 19.2708ZM131.96 19.2708L131.883 19.4845C131.953 19.5094 132.03 19.4989 132.09 19.4564C132.151 19.4139 132.187 19.3447 132.187 19.2708H131.96ZM131.96 13.3772H132.187C132.187 13.2813 132.126 13.1958 132.036 13.1635L131.96 13.3772ZM74.8573 1.00056L74.8564 1.22755L74.8573 1.00056ZM16.5896 13.3772L16.5134 13.1634C16.423 13.1956 16.3626 13.2812 16.3626 13.3772H16.5896ZM16.5768 14.3018H16.8038C16.8038 14.1875 16.7187 14.091 16.6053 14.0766C16.4918 14.0623 16.3854 14.1346 16.3569 14.2453L16.5768 14.3018ZM131.983 14.2883L132.204 14.2366C132.177 14.1244 132.071 14.0496 131.957 14.0628C131.842 14.076 131.756 14.173 131.756 14.2883H131.983ZM74.8583 6.6672C63.201 6.61884 48.6097 9.71991 36.9459 12.827C31.1112 14.3813 26.0038 15.9385 22.355 17.1072C20.5306 17.6916 19.0706 18.1789 18.0666 18.5201C17.5646 18.6908 17.1765 18.8249 16.9139 18.9164C16.7825 18.9622 16.6825 18.9973 16.6153 19.021C16.5817 19.0328 16.5563 19.0418 16.5393 19.0478C16.5307 19.0508 16.5243 19.0531 16.52 19.0547C16.5178 19.0554 16.5162 19.056 16.5151 19.0564C16.5146 19.0566 16.5142 19.0567 16.5139 19.0568C16.5136 19.0569 16.5134 19.057 16.5896 19.2708C16.6658 19.4847 16.6659 19.4846 16.6661 19.4845C16.6664 19.4844 16.6668 19.4843 16.6673 19.4841C16.6683 19.4838 16.6699 19.4832 16.672 19.4825C16.6762 19.481 16.6825 19.4787 16.6909 19.4757C16.7077 19.4698 16.7328 19.4609 16.7662 19.4491C16.8329 19.4256 16.9324 19.3907 17.0632 19.3451C17.3248 19.254 17.7118 19.1202 18.2127 18.95C19.2144 18.6095 20.6718 18.1231 22.4935 17.5396C26.1369 16.3726 31.2369 14.8176 37.0627 13.2657C48.72 10.1603 63.2626 7.07309 74.8564 7.12118L74.8583 6.6672ZM131.96 19.2708C132.036 19.0571 132.036 19.0571 132.036 19.057C132.036 19.0569 132.035 19.0567 132.035 19.0565C132.033 19.0561 132.032 19.0556 132.03 19.0548C132.026 19.0533 132.019 19.0511 132.011 19.0481C131.994 19.0421 131.969 19.0333 131.936 19.0216C131.871 18.9983 131.773 18.9637 131.644 18.9186C131.387 18.8285 131.007 18.6963 130.515 18.5281C129.531 18.1917 128.101 17.7112 126.314 17.1343C122.74 15.9805 117.737 14.4412 112.02 12.8988C100.592 9.81563 86.2923 6.71463 74.8583 6.6672L74.8564 7.12118C86.2282 7.16836 100.48 10.2557 111.902 13.3371C117.61 14.8771 122.606 16.4142 126.175 17.5663C127.959 18.1423 129.387 18.622 130.368 18.9577C130.859 19.1255 131.238 19.2573 131.494 19.3471C131.622 19.392 131.719 19.4264 131.785 19.4495C131.817 19.4611 131.842 19.4699 131.859 19.4758C131.867 19.4787 131.873 19.4809 131.877 19.4824C131.879 19.4831 131.881 19.4836 131.882 19.484C131.882 19.4842 131.883 19.4843 131.883 19.4844C131.883 19.4845 131.883 19.4845 131.96 19.2708ZM131.733 13.3772V19.2708H132.187V13.3772H131.733ZM74.8564 1.22755C86.2282 1.27472 100.48 4.36204 111.902 7.44351C117.61 8.9835 122.606 10.5206 126.175 11.6727C127.959 12.2487 129.387 12.7284 130.368 13.064C130.859 13.2319 131.238 13.3637 131.494 13.4535C131.622 13.4984 131.719 13.5328 131.785 13.5559C131.817 13.5675 131.842 13.5763 131.859 13.5821C131.867 13.585 131.873 13.5873 131.877 13.5887C131.879 13.5895 131.881 13.59 131.882 13.5904C131.882 13.5905 131.883 13.5907 131.883 13.5908C131.883 13.5909 131.883 13.5909 131.96 13.3772C132.036 13.1635 132.036 13.1634 132.036 13.1633C132.036 13.1632 132.035 13.1631 132.035 13.1629C132.033 13.1625 132.032 13.1619 132.03 13.1612C132.026 13.1597 132.019 13.1574 132.011 13.1545C131.994 13.1485 131.969 13.1397 131.936 13.128C131.871 13.1047 131.773 13.0701 131.644 13.025C131.387 12.9349 131.007 12.8027 130.515 12.6345C129.531 12.2981 128.101 11.8175 126.314 11.2406C122.74 10.0869 117.737 8.54753 112.02 7.00519C100.592 3.92199 86.2923 0.820996 74.8583 0.773565L74.8564 1.22755ZM16.5896 13.3772C16.6658 13.591 16.6659 13.591 16.6661 13.5909C16.6664 13.5908 16.6668 13.5907 16.6673 13.5905C16.6683 13.5901 16.6699 13.5896 16.672 13.5888C16.6762 13.5873 16.6825 13.5851 16.6909 13.5821C16.7077 13.5762 16.7328 13.5673 16.7662 13.5555C16.8329 13.532 16.9324 13.4971 17.0632 13.4515C17.3248 13.3603 17.7118 13.2266 18.2127 13.0563C19.2144 12.7159 20.6718 12.2294 22.4935 11.646C26.1369 10.479 31.2369 8.92397 37.0627 7.37205C48.72 4.2667 63.2626 1.17945 74.8564 1.22755L74.8583 0.773565C63.201 0.725208 48.6097 3.82628 36.9459 6.93336C31.1112 8.48765 26.0038 10.0449 22.355 11.2136C20.5306 11.798 19.0706 12.2852 18.0666 12.6265C17.5646 12.7971 17.1765 12.9313 16.9139 13.0228C16.7825 13.0685 16.6825 13.1036 16.6153 13.1273C16.5817 13.1392 16.5563 13.1482 16.5393 13.1542C16.5307 13.1572 16.5243 13.1595 16.52 13.161C16.5178 13.1618 16.5162 13.1624 16.5151 13.1628C16.5146 13.163 16.5142 13.1631 16.5139 13.1632C16.5136 13.1633 16.5134 13.1634 16.5896 13.3772ZM16.8166 19.2708V13.3772H16.3626V19.2708H16.8166ZM16.8038 19.9768V14.3018H16.3498V19.9768H16.8038ZM74.2747 48.5114C50.7206 48.5114 36.3484 41.9738 27.8694 35.1401C23.6283 31.722 20.8577 28.2268 19.1487 25.4315C18.294 24.0337 17.7055 22.812 17.3313 21.8637C17.1442 21.3895 17.0114 20.9853 16.9256 20.663C16.8387 20.3362 16.8038 20.1067 16.8038 19.9768H16.3498C16.3498 20.1666 16.3969 20.4416 16.4869 20.7797C16.578 21.1222 16.7168 21.5433 16.909 22.0304C17.2935 23.0047 17.8941 24.2499 18.7614 25.6683C20.4962 28.5057 23.3007 32.041 27.5845 35.4936C36.1552 42.4012 50.632 48.9654 74.2747 48.9654V48.5114ZM131.756 20.0112C131.756 20.1387 131.721 20.366 131.634 20.691C131.548 21.0114 131.415 21.4139 131.228 21.8865C130.853 22.8315 130.264 24.0504 129.409 25.4458C127.699 28.2363 124.927 31.7283 120.685 35.1443C112.204 41.9738 97.8288 48.5114 74.2747 48.5114V48.9654C97.9175 48.9654 112.397 42.4012 120.97 35.4979C125.255 32.0476 128.061 28.5155 129.796 25.6831C130.664 24.267 131.265 23.0248 131.65 22.0537C131.842 21.5683 131.981 21.149 132.072 20.8084C132.162 20.4723 132.21 20.1991 132.21 20.0112H131.756ZM131.756 14.2883V20.0112H132.21V14.2883H131.756ZM133.659 21.356C133.659 21.2282 133.634 21.0204 133.594 20.7699C133.554 20.514 133.497 20.198 133.429 19.8454C133.292 19.1397 133.111 18.2811 132.929 17.4508C132.748 16.6202 132.566 15.8168 132.43 15.221C132.362 14.9231 132.306 14.6771 132.266 14.5055C132.246 14.4197 132.231 14.3525 132.22 14.3068C132.215 14.2839 132.21 14.2664 132.208 14.2546C132.206 14.2487 132.205 14.2442 132.205 14.2412C132.204 14.2397 132.204 14.2386 132.204 14.2378C132.204 14.2374 132.204 14.2371 132.204 14.2369C132.204 14.2368 132.204 14.2368 132.204 14.2367C132.204 14.2367 132.204 14.2366 131.983 14.2883C131.761 14.3399 131.761 14.3399 131.761 14.34C131.761 14.34 131.762 14.3401 131.762 14.3402C131.762 14.3404 131.762 14.3406 131.762 14.341C131.762 14.3418 131.762 14.3429 131.763 14.3444C131.763 14.3473 131.764 14.3518 131.766 14.3576C131.768 14.3694 131.772 14.3868 131.778 14.4096C131.788 14.4552 131.804 14.5222 131.824 14.6078C131.863 14.779 131.92 15.0246 131.988 15.3221C132.124 15.917 132.305 16.719 132.486 17.5477C132.667 18.3767 132.848 19.2312 132.983 19.9315C133.051 20.2818 133.107 20.592 133.146 20.8404C133.186 21.0941 133.205 21.2686 133.205 21.356H133.659ZM74.2747 56.0378C101.128 56.0378 115.981 47.7894 124.12 39.3147C128.186 35.08 130.57 30.7959 131.937 27.4717C132.621 25.8097 133.051 24.3872 133.31 23.33C133.567 22.2808 133.659 21.5765 133.659 21.356H133.205C133.205 21.5183 133.125 22.1777 132.869 23.222C132.615 24.2583 132.192 25.6592 131.517 27.299C130.169 30.5786 127.814 34.8125 123.792 39.0002C115.754 47.3701 101.028 55.5838 74.2747 55.5838V56.0378ZM14.9219 21.356C14.9219 21.9174 15.2775 24.362 16.6387 27.7051C18.0031 31.056 20.3831 35.3232 24.4463 39.5234C32.5779 47.929 47.4228 56.0378 74.2747 56.0378V55.5838C47.5203 55.5838 32.8024 47.5081 24.7726 39.2077C20.7552 35.0549 18.4049 30.8389 17.0592 27.5339C15.7103 24.2213 15.3759 21.8375 15.3759 21.356H14.9219ZM16.5768 14.3018C16.3569 14.2453 16.3569 14.2454 16.3569 14.2454C16.3569 14.2455 16.3569 14.2455 16.3569 14.2456C16.3568 14.2458 16.3567 14.2461 16.3567 14.2464C16.3565 14.2471 16.3562 14.2481 16.3559 14.2495C16.3552 14.2522 16.3541 14.2562 16.3528 14.2616C16.3501 14.2722 16.346 14.288 16.3408 14.3086C16.3303 14.3498 16.3149 14.4104 16.2953 14.4881C16.2562 14.6433 16.2003 14.8667 16.1333 15.1394C15.9992 15.6847 15.8203 16.4276 15.6415 17.2176C15.4627 18.0073 15.2834 18.8458 15.1487 19.5816C15.0152 20.3116 14.9219 20.9586 14.9219 21.356H15.3759C15.3759 21.0053 15.4612 20.3964 15.5953 19.6634C15.7284 18.9363 15.9061 18.1047 16.0842 17.3179C16.2623 16.5314 16.4405 15.7913 16.5741 15.2478C16.6409 14.9761 16.6966 14.7536 16.7355 14.599C16.755 14.5218 16.7703 14.4615 16.7807 14.4206C16.7859 14.4002 16.7899 14.3845 16.7926 14.3741C16.7939 14.3688 16.795 14.3649 16.7956 14.3622C16.796 14.3609 16.7962 14.3599 16.7964 14.3593C16.7965 14.3589 16.7965 14.3587 16.7966 14.3585C16.7966 14.3584 16.7966 14.3584 16.7966 14.3584C16.7966 14.3583 16.7966 14.3583 16.5768 14.3018Z" fill="#E0E0E0"/>
11
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg width="289" height="202" viewBox="0 0 289 202" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="131.752" y="36.042" width="30.4799" height="55.0125" rx="2" transform="rotate(-15 131.752 36.042)" fill="#343750"/>
3
+ <path d="M162.827 59.0507L166.908 74.2796L163.198 75.2736L160.751 66.1406L159.792 76.1862L156.798 76.9884L150.918 68.7521L153.371 77.9068L149.661 78.9008L145.581 63.6719L149.963 62.4977L157.061 71.8957L158.467 60.2191L162.827 59.0507Z" fill="white"/>
4
+ <rect x="142.976" y="53.1354" width="17.6462" height="1.61801" transform="rotate(-15 142.976 53.1354)" fill="white"/>
5
+ <rect x="143.814" y="56.2607" width="17.6462" height="1.61801" transform="rotate(-15 143.814 56.2607)" fill="white"/>
6
+ <rect x="142.138" y="50.009" width="17.6462" height="1.61801" transform="rotate(-15 142.138 50.009)" fill="white"/>
7
+ <rect x="140.881" y="45.3206" width="17.6462" height="3.23603" transform="rotate(-15 140.881 45.3206)" fill="white"/>
8
+ <rect x="128.238" y="28" width="30.4799" height="55.0125" rx="2" transform="rotate(15 128.238 28)" fill="#343750"/>
9
+ <path d="M132.128 72.9331C132.381 72.4374 132.757 72.0856 133.256 71.8776C133.747 71.6673 134.255 71.6326 134.78 71.7734C135.539 71.9766 136.07 72.4054 136.375 73.0597C136.674 73.7031 136.696 74.4987 136.442 75.4466L135.31 79.6732L126.236 77.2419L127.33 73.1575C127.577 72.2355 127.981 71.5725 128.542 71.1686C129.105 70.7561 129.749 70.6468 130.472 70.8408C131.007 70.984 131.412 71.245 131.689 71.6241C131.969 71.9945 132.115 72.4308 132.128 72.9331ZM130.499 76.0153L130.887 74.5676C130.984 74.2057 130.98 73.9092 130.876 73.678C130.765 73.436 130.555 73.2734 130.245 73.1903C129.934 73.1071 129.671 73.1427 129.454 73.2971C129.24 73.4428 129.084 73.6966 128.987 74.0585L128.599 75.5061L130.499 76.0153ZM134.554 75.3564C134.654 74.9859 134.648 74.6796 134.537 74.4375C134.421 74.1845 134.203 74.0153 133.884 73.9299C133.565 73.8445 133.286 73.8852 133.048 74.0521C132.811 74.2105 132.643 74.4749 132.544 74.8454L132.115 76.4482L134.118 76.985L134.554 75.3564ZM132.174 67.3323C131.847 66.9676 131.624 66.5613 131.504 66.1135C131.375 65.6634 131.374 65.2014 131.501 64.7275L133.84 65.3543L133.678 65.9618C133.53 66.5133 133.54 66.9592 133.707 67.2996C133.866 67.6377 134.243 67.8864 134.837 68.0457L138.185 68.9427L137.593 71.153L130.38 69.2204L130.972 67.0102L132.174 67.3323ZM135.337 65.0941C134.596 64.8955 133.982 64.5833 133.496 64.1575C133.012 63.723 132.684 63.2241 132.512 62.6608C132.34 62.0974 132.333 61.5184 132.492 60.9239C132.629 60.4155 132.851 59.9994 133.159 59.6757C133.47 59.3433 133.821 59.1188 134.213 59.002L133.191 58.7284L133.784 56.5182L140.996 58.4507L140.404 60.661L139.383 60.3874C139.661 60.6928 139.852 61.0672 139.955 61.5103C140.06 61.9449 140.044 62.4164 139.908 62.9248C139.751 63.5107 139.457 64.0046 139.026 64.4063C138.587 64.8057 138.049 65.0726 137.413 65.2069C136.77 65.3302 136.078 65.2926 135.337 65.0941ZM136.798 59.6947C136.246 59.5469 135.769 59.5854 135.368 59.8102C134.968 60.0264 134.709 60.3542 134.591 60.7936C134.474 61.2331 134.533 61.6507 134.768 62.0463C134.998 62.431 135.388 62.6973 135.94 62.845C136.491 62.9928 136.971 62.9598 137.379 62.7459C137.781 62.5211 138.041 62.189 138.159 61.7495C138.277 61.3101 138.216 60.8968 137.978 60.5098C137.743 60.1142 137.349 59.8425 136.798 59.6947ZM135.312 50.5037C135.538 49.6592 135.994 49.061 136.68 48.709C137.359 48.346 138.177 48.2927 139.133 48.549L143.347 49.6781L142.758 51.8754L138.842 50.826C138.359 50.6967 137.951 50.7212 137.617 50.8995C137.283 51.0778 137.059 51.3781 136.946 51.8003C136.833 52.2226 136.876 52.5944 137.076 52.9159C137.276 53.2374 137.618 53.4627 138.1 53.592L142.017 54.6414L141.425 56.8517L134.212 54.9191L134.804 52.7089L135.761 52.9652C135.502 52.6557 135.333 52.2872 135.254 51.8595C135.166 51.4296 135.185 50.9776 135.312 50.5037ZM140.021 47.6119C139.28 47.4133 138.667 47.1011 138.18 46.6753C137.697 46.2409 137.368 45.742 137.196 45.1786C137.024 44.6152 137.017 44.0363 137.177 43.4417C137.304 42.9678 137.518 42.5635 137.82 42.2288C138.125 41.8855 138.475 41.6469 138.871 41.5129L135.523 40.6159L136.116 38.4056L145.68 40.9685L145.088 43.1788L144.054 42.9017C144.343 43.2009 144.54 43.5721 144.642 44.0152C144.748 44.4498 144.732 44.9213 144.596 45.4297C144.437 46.0242 144.142 46.5224 143.711 46.9241C143.271 47.3236 142.733 47.5904 142.097 47.7247C141.454 47.8481 140.762 47.8105 140.021 47.6119ZM141.482 42.2125C140.931 42.0647 140.454 42.1032 140.052 42.328C139.652 42.5442 139.394 42.872 139.276 43.3115C139.158 43.7509 139.217 44.1685 139.453 44.5641C139.682 44.9488 140.073 45.2151 140.624 45.3629C141.176 45.5106 141.655 45.4776 142.064 45.2637C142.466 45.0389 142.725 44.7068 142.843 44.2674C142.961 43.8279 142.901 43.4146 142.663 43.0276C142.427 42.632 142.034 42.3603 141.482 42.2125Z" fill="white"/>
10
+ <path d="M145.478 114.084C238.203 114.084 247 57.625 247 55L288 69.1492V201H1V69.1492L44 55C44 58.5768 52.7537 114.084 145.478 114.084Z" fill="#EFF1F2"/>
11
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M46.1307 53.587C46.1307 53.587 106.433 32.2636 146.474 32.4285C185.749 32.5902 244.811 53.587 244.811 53.587V43.5115C244.811 43.5115 185.749 22.5147 146.474 22.353C106.433 22.1881 46.1307 43.5115 46.1307 43.5115V53.587ZM46.1098 45.0922V54.7939C46.1098 59.1669 64.1939 103.963 145.472 103.963C226.75 103.963 244.852 59.1669 244.852 54.8527V45.0691C244.852 45.0691 247.348 55.6798 247.348 57.1518C247.348 59.7687 237.788 116.054 145.472 116.054C53.1561 116.054 43.6509 60.7175 43.6509 57.1518C43.6509 54.5936 46.1098 45.0922 46.1098 45.0922Z" fill="#EFF1F2"/>
12
+ <path d="M146.474 32.4285L146.475 32.1785L146.474 32.4285ZM46.1307 53.587H45.8807C45.8807 53.6682 45.9201 53.7443 45.9864 53.7912C46.0526 53.838 46.1375 53.8498 46.2141 53.8227L46.1307 53.587ZM244.811 53.587L244.727 53.8226C244.804 53.8498 244.889 53.8381 244.955 53.7913C245.022 53.7444 245.061 53.6683 245.061 53.587H244.811ZM244.811 43.5115H245.061C245.061 43.4057 244.994 43.3114 244.895 43.276L244.811 43.5115ZM146.474 22.353L146.473 22.603L146.474 22.353ZM46.1307 43.5115L46.0474 43.2758C45.9475 43.3112 45.8807 43.4056 45.8807 43.5115H46.1307ZM46.1098 45.0922H46.3598C46.3598 44.9664 46.2662 44.8601 46.1414 44.8442C46.0165 44.8283 45.8993 44.9077 45.8678 45.0296L46.1098 45.0922ZM244.852 45.0691L245.095 45.0118C245.066 44.8883 244.949 44.8061 244.823 44.8207C244.697 44.8354 244.602 44.9421 244.602 45.0691H244.852ZM146.475 32.1785C126.42 32.0959 101.308 37.393 81.2232 42.7042C71.178 45.3606 62.3848 48.0221 56.1029 50.0196C52.9618 51.0183 50.4485 51.8511 48.7201 52.4342C47.8559 52.7258 47.188 52.955 46.736 53.1113C46.51 53.1895 46.338 53.2494 46.2224 53.2899C46.1646 53.3101 46.1209 53.3254 46.0916 53.3357C46.077 53.3409 46.066 53.3448 46.0586 53.3474C46.0549 53.3487 46.0521 53.3497 46.0502 53.3503C46.0493 53.3507 46.0486 53.3509 46.0481 53.3511C46.0476 53.3512 46.0474 53.3513 46.1307 53.587C46.2141 53.8227 46.2143 53.8227 46.2147 53.8225C46.2151 53.8223 46.2158 53.8221 46.2167 53.8218C46.2185 53.8211 46.2212 53.8202 46.2249 53.8189C46.2321 53.8164 46.243 53.8125 46.2575 53.8074C46.2865 53.7972 46.3299 53.782 46.3875 53.7618C46.5025 53.7216 46.674 53.6618 46.8994 53.5839C47.3503 53.4279 48.017 53.1991 48.88 52.908C50.6058 52.3257 53.1164 51.4938 56.2544 50.4961C62.5305 48.5005 71.3155 45.8415 81.351 43.1876C101.428 37.8783 126.487 32.5962 146.473 32.6785L146.475 32.1785ZM244.811 53.587C244.895 53.3515 244.895 53.3514 244.894 53.3512C244.894 53.351 244.893 53.3508 244.892 53.3505C244.89 53.3498 244.887 53.3489 244.884 53.3476C244.877 53.345 244.866 53.3412 244.851 53.3361C244.823 53.326 244.78 53.3109 244.723 53.291C244.61 53.2511 244.442 53.1921 244.22 53.1151C243.778 52.961 243.123 52.7352 242.277 52.4478C240.584 51.8729 238.122 51.0516 235.045 50.0657C228.892 48.0938 220.277 45.4629 210.435 42.8269C190.757 37.5566 166.147 32.2595 146.475 32.1785L146.473 32.6785C166.076 32.7592 190.635 38.0414 210.306 43.3099C220.139 45.9433 228.745 48.5718 234.893 50.5418C237.966 51.5268 240.426 52.3472 242.116 52.9212C242.961 53.2082 243.614 53.4337 244.056 53.5873C244.277 53.6641 244.445 53.723 244.557 53.7626C244.614 53.7824 244.656 53.7975 244.685 53.8075C244.699 53.8125 244.71 53.8163 244.717 53.8188C244.72 53.8201 244.723 53.821 244.725 53.8217C244.726 53.822 244.726 53.8222 244.727 53.8224C244.727 53.8225 244.727 53.8226 244.811 53.587ZM244.561 43.5115V53.587H245.061V43.5115H244.561ZM146.473 22.603C166.076 22.6837 190.635 27.9659 210.306 33.2344C220.139 35.8678 228.745 38.4963 234.893 40.4663C237.966 41.4513 240.426 42.2717 242.116 42.8457C242.961 43.1328 243.614 43.3582 244.056 43.5118C244.277 43.5886 244.445 43.6475 244.557 43.6871C244.614 43.7069 244.656 43.722 244.685 43.732C244.699 43.737 244.71 43.7408 244.717 43.7433C244.72 43.7446 244.723 43.7455 244.725 43.7462C244.726 43.7465 244.726 43.7467 244.727 43.7469C244.727 43.747 244.727 43.7471 244.811 43.5115C244.895 43.276 244.895 43.2759 244.894 43.2757C244.894 43.2756 244.893 43.2753 244.892 43.275C244.89 43.2743 244.887 43.2734 244.884 43.2721C244.877 43.2695 244.866 43.2657 244.851 43.2606C244.823 43.2505 244.78 43.2354 244.723 43.2155C244.61 43.1756 244.442 43.1166 244.22 43.0396C243.778 42.8856 243.123 42.6597 242.277 42.3723C240.584 41.7974 238.122 40.9762 235.045 39.9902C228.892 38.0183 220.277 35.3874 210.435 32.7514C190.757 27.4811 166.147 22.184 146.475 22.103L146.473 22.603ZM46.1307 43.5115C46.2141 43.7472 46.2143 43.7472 46.2147 43.747C46.2151 43.7468 46.2158 43.7466 46.2167 43.7463C46.2185 43.7457 46.2212 43.7447 46.2249 43.7434C46.2321 43.7409 46.243 43.737 46.2575 43.7319C46.2865 43.7217 46.3299 43.7065 46.3875 43.6863C46.5025 43.6461 46.674 43.5863 46.8994 43.5084C47.3503 43.3524 48.017 43.1237 48.88 42.8325C50.6058 42.2502 53.1164 41.4183 56.2544 40.4206C62.5305 38.425 71.3155 35.766 81.351 33.1121C101.428 27.8028 126.487 22.5207 146.473 22.603L146.475 22.103C126.42 22.0204 101.308 27.3176 81.2232 32.6287C71.178 35.2852 62.3848 37.9467 56.1029 39.9441C52.9618 40.9428 50.4485 41.7756 48.7201 42.3587C47.8559 42.6503 47.188 42.8795 46.736 43.0358C46.51 43.114 46.338 43.174 46.2224 43.2144C46.1646 43.2346 46.1209 43.2499 46.0916 43.2602C46.077 43.2654 46.066 43.2693 46.0586 43.2719C46.0549 43.2732 46.0521 43.2742 46.0502 43.2748C46.0493 43.2752 46.0486 43.2754 46.0481 43.2756C46.0476 43.2757 46.0474 43.2758 46.1307 43.5115ZM46.3807 53.587V43.5115H45.8807V53.587H46.3807ZM46.3598 54.7939V45.0922H45.8598V54.7939H46.3598ZM145.472 103.713C104.881 103.713 80.0982 92.5287 65.4678 80.8233C58.151 74.9693 53.3693 68.9818 50.4183 64.1904C48.9426 61.7944 47.9254 59.6988 47.2779 58.0698C46.9541 57.2552 46.7235 56.5591 46.5742 56.002C46.4236 55.44 46.3598 55.034 46.3598 54.7939H45.8598C45.8598 55.1004 45.9373 55.5568 46.0913 56.1314C46.2466 56.7109 46.4839 57.4257 46.8133 58.2545C47.4723 59.9124 48.5029 62.0339 49.9926 64.4526C52.9722 69.2904 57.7915 75.322 65.1555 81.2137C79.8867 92.9999 104.785 104.213 145.472 104.213V103.713ZM244.602 54.8527C244.602 55.0888 244.538 55.4911 244.387 56.0501C244.238 56.604 244.007 57.2971 243.683 58.1089C243.035 59.7323 242.017 61.8232 240.541 64.215C237.588 68.9982 232.804 74.9802 225.485 80.8306C210.85 92.5287 186.063 103.713 145.472 103.713V104.213C186.16 104.213 211.062 92.9999 225.797 81.2212C233.163 75.3332 237.985 69.3071 240.966 64.4776C242.456 62.0631 243.488 59.9464 244.147 58.2942C244.477 57.4683 244.714 56.7566 244.87 56.1803C245.024 55.6091 245.102 55.1558 245.102 54.8527H244.602ZM244.602 45.0691V54.8527H245.102V45.0691H244.602ZM247.598 57.1518C247.598 56.9454 247.556 56.6001 247.488 56.1709C247.419 55.7357 247.321 55.1973 247.204 54.5951C246.969 53.3904 246.656 51.9238 246.344 50.5047C246.032 49.0853 245.719 47.7122 245.485 46.694C245.368 46.1848 245.271 45.7643 245.202 45.4711C245.168 45.3245 245.141 45.2097 245.123 45.1316C245.114 45.0925 245.107 45.0626 245.102 45.0424C245.1 45.0323 245.098 45.0247 245.097 45.0196C245.096 45.017 245.096 45.0151 245.095 45.0138C245.095 45.0131 245.095 45.0126 245.095 45.0123C245.095 45.0121 245.095 45.012 245.095 45.0119C245.095 45.0118 245.095 45.0118 244.852 45.0691C244.608 45.1263 244.608 45.1264 244.608 45.1264C244.608 45.1265 244.608 45.1266 244.608 45.1268C244.608 45.1271 244.608 45.1276 244.609 45.1282C244.609 45.1295 244.609 45.1314 244.61 45.134C244.611 45.139 244.613 45.1466 244.615 45.1567C244.62 45.1768 244.627 45.2066 244.636 45.2456C244.654 45.3236 244.681 45.4382 244.715 45.5846C244.784 45.8774 244.881 46.2974 244.998 46.806C245.232 47.8233 245.544 49.1948 245.856 50.6122C246.168 52.0298 246.479 53.4918 246.713 54.6907C246.83 55.2902 246.926 55.8222 246.994 56.2491C247.063 56.6819 247.098 56.9902 247.098 57.1518H247.598ZM145.472 116.304C191.685 116.304 217.223 102.214 231.208 87.7581C238.198 80.5331 242.294 73.2244 244.643 67.555C245.818 64.7204 246.555 62.295 247 60.494C247.442 58.7018 247.598 57.5112 247.598 57.1518H247.098C247.098 57.4466 246.956 58.5874 246.515 60.3742C246.076 62.1521 245.345 64.5534 244.181 67.3636C241.853 72.9837 237.789 80.237 230.849 87.4104C216.975 101.751 191.576 115.804 145.472 115.804V116.304ZM43.4009 57.1518C43.4009 58.0876 44.0067 62.2484 46.3472 67.9544C48.6912 73.6691 52.7807 80.9486 59.764 88.1145C73.7359 102.452 99.261 116.304 145.472 116.304V115.804C99.3673 115.804 73.9817 101.988 60.122 87.7656C53.1895 80.6517 49.1329 73.4285 46.8098 67.7647C44.4832 62.0923 43.9009 57.9989 43.9009 57.1518H43.4009ZM46.1098 45.0922C45.8678 45.0296 45.8678 45.0296 45.8678 45.0297C45.8677 45.0298 45.8677 45.0299 45.8677 45.03C45.8676 45.0303 45.8675 45.0308 45.8673 45.0314C45.867 45.0325 45.8666 45.0343 45.866 45.0366C45.8648 45.0412 45.863 45.0481 45.8607 45.0572C45.856 45.0753 45.8491 45.1022 45.84 45.1374C45.822 45.2078 45.7955 45.3113 45.7618 45.4439C45.6945 45.7092 45.5983 46.0908 45.4829 46.5567C45.2522 47.4884 44.9444 48.7576 44.6366 50.1071C44.3289 51.4562 44.0207 52.8875 43.7892 54.1429C43.559 55.3917 43.4009 56.4863 43.4009 57.1518H43.9009C43.9009 56.5381 44.0501 55.4858 44.2809 54.2335C44.5106 52.9879 44.8171 51.5642 45.1241 50.2183C45.431 48.8727 45.738 47.6066 45.9683 46.6769C46.0834 46.2121 46.1793 45.8314 46.2465 45.567C46.28 45.4348 46.3064 45.3317 46.3244 45.2617C46.3333 45.2266 46.3402 45.1999 46.3449 45.1819C46.3472 45.173 46.3489 45.1662 46.3501 45.1616C46.3507 45.1594 46.3511 45.1577 46.3514 45.1565C46.3516 45.156 46.3517 45.1555 46.3517 45.1553C46.3518 45.1551 46.3518 45.155 46.3518 45.1549C46.3518 45.1549 46.3518 45.1549 46.1098 45.0922Z" fill="#E0E0E0"/>
13
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="148" height="105" viewBox="0 0 148 105" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M74.2764 54.3146C127.883 54.3146 133.434 21.3906 133.434 19.8599L148 28.111V105H0V28.111L15.1506 19.8599C15.1506 21.9457 20.6701 54.3146 74.2764 54.3146Z" fill="#EFF1F2"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M16.59 19.2708C16.59 19.2708 51.6067 6.79775 74.8578 6.8942C97.6637 6.9888 131.96 19.2708 131.96 19.2708V13.3772C131.96 13.3772 97.6637 1.09516 74.8578 1.00056C51.6067 0.904106 16.59 13.3772 16.59 13.3772V19.2708ZM16.5768 14.3017V19.9767C16.5768 22.5347 27.0779 48.7383 74.2747 48.7383C121.472 48.7383 131.983 22.5347 131.983 20.0111V14.2882C131.983 14.2882 133.432 20.4949 133.432 21.3559C133.432 22.8867 127.881 55.8107 74.2747 55.8107C20.6684 55.8107 15.1489 23.4417 15.1489 21.3559C15.1489 19.8595 16.5768 14.3017 16.5768 14.3017Z" fill="#EFF1F2"/>
4
+ <path d="M74.8578 6.8942L74.8567 7.1442L74.8578 6.8942ZM16.59 19.2708H16.34C16.34 19.3521 16.3795 19.4283 16.4459 19.4751C16.5124 19.522 16.5974 19.5336 16.6739 19.5064L16.59 19.2708ZM131.96 19.2708L131.876 19.5062C131.952 19.5336 132.038 19.5221 132.104 19.4753C132.171 19.4284 132.21 19.3522 132.21 19.2708H131.96ZM131.96 13.3772H132.21C132.21 13.2716 132.144 13.1774 132.044 13.1418L131.96 13.3772ZM74.8578 1.00056L74.8567 1.25055L74.8578 1.00056ZM16.59 13.3772L16.5062 13.1417C16.4066 13.1772 16.34 13.2715 16.34 13.3772H16.59ZM16.5768 14.3017H16.8268C16.8268 14.1758 16.7331 14.0695 16.6081 14.0537C16.4832 14.0379 16.366 14.1175 16.3346 14.2395L16.5768 14.3017ZM131.983 14.2882L132.226 14.2313C132.197 14.1076 132.08 14.0253 131.954 14.0398C131.828 14.0543 131.733 14.1612 131.733 14.2882H131.983ZM74.8588 6.6442C63.1983 6.59583 48.6045 9.69761 36.9404 12.8048C31.1052 14.3592 25.9975 15.9166 22.3484 17.0853C20.5238 17.6698 19.0638 18.1571 18.0596 18.4984C17.5575 18.669 17.1694 18.8032 16.9067 18.8947C16.7754 18.9405 16.6754 18.9756 16.6081 18.9993C16.5745 19.0111 16.5491 19.0201 16.532 19.0262C16.5235 19.0292 16.5171 19.0315 16.5127 19.033C16.5106 19.0338 16.509 19.0343 16.5079 19.0347C16.5073 19.0349 16.5069 19.0351 16.5066 19.0352C16.5063 19.0353 16.5062 19.0353 16.59 19.2708C16.6739 19.5064 16.674 19.5063 16.6743 19.5062C16.6745 19.5061 16.6749 19.506 16.6754 19.5058C16.6765 19.5055 16.678 19.5049 16.6801 19.5042C16.6843 19.5027 16.6906 19.5004 16.699 19.4975C16.7158 19.4915 16.7409 19.4826 16.7743 19.4709C16.841 19.4474 16.9404 19.4124 17.0712 19.3669C17.3328 19.2757 17.7197 19.142 18.2205 18.9718C19.2222 18.6313 20.6794 18.1449 22.5009 17.5615C26.1441 16.3946 31.2437 14.8397 37.0691 13.2879C48.726 10.1827 63.2661 7.09612 74.8567 7.1442L74.8588 6.6442ZM131.96 19.2708C132.044 19.0355 132.044 19.0354 132.044 19.0353C132.044 19.0352 132.043 19.0351 132.043 19.0349C132.042 19.0345 132.04 19.0339 132.038 19.0332C132.034 19.0317 132.027 19.0294 132.019 19.0264C132.002 19.0205 131.977 19.0116 131.945 19C131.879 18.9766 131.781 18.942 131.652 18.897C131.395 18.8068 131.015 18.6746 130.523 18.5064C129.539 18.1699 128.109 17.6893 126.322 17.1124C122.747 15.9585 117.743 14.4191 112.026 12.8766C100.598 9.79334 86.296 6.69165 74.8588 6.6442L74.8567 7.1442C86.2254 7.19136 100.475 10.278 111.896 13.3594C117.604 14.8992 122.599 16.4362 126.168 17.5882C127.952 18.1642 129.38 18.6439 130.361 18.9795C130.852 19.1473 131.231 19.279 131.487 19.3688C131.615 19.4137 131.712 19.4481 131.778 19.4713C131.81 19.4828 131.835 19.4916 131.851 19.4974C131.859 19.5004 131.866 19.5026 131.87 19.504C131.872 19.5048 131.873 19.5053 131.874 19.5057C131.875 19.5059 131.875 19.506 131.875 19.5061C131.876 19.5062 131.876 19.5062 131.96 19.2708ZM131.71 13.3772V19.2708H132.21V13.3772H131.71ZM74.8567 1.25055C86.2254 1.29771 100.475 4.38434 111.896 7.46573C117.604 9.0056 122.599 10.5426 126.168 11.6946C127.952 12.2705 129.38 12.7502 130.361 13.0858C130.852 13.2536 131.231 13.3854 131.487 13.4752C131.615 13.5201 131.712 13.5545 131.778 13.5776C131.81 13.5892 131.835 13.5979 131.851 13.6038C131.859 13.6067 131.866 13.6089 131.87 13.6104C131.872 13.6111 131.873 13.6117 131.874 13.612C131.875 13.6122 131.875 13.6124 131.875 13.6124C131.876 13.6125 131.876 13.6126 131.96 13.3772C132.044 13.1418 132.044 13.1418 132.044 13.1417C132.044 13.1416 132.043 13.1414 132.043 13.1412C132.042 13.1409 132.04 13.1403 132.038 13.1395C132.034 13.138 132.027 13.1358 132.019 13.1328C132.002 13.1269 131.977 13.118 131.945 13.1063C131.879 13.083 131.781 13.0484 131.652 13.0033C131.395 12.9131 131.015 12.781 130.523 12.6127C129.539 12.2763 128.109 11.7957 126.322 11.2187C122.747 10.0649 117.743 8.52545 112.026 6.98299C100.598 3.8997 86.296 0.798003 74.8588 0.750559L74.8567 1.25055ZM16.59 13.3772C16.6739 13.6127 16.674 13.6127 16.6743 13.6126C16.6745 13.6125 16.6749 13.6124 16.6754 13.6122C16.6765 13.6118 16.678 13.6113 16.6801 13.6105C16.6843 13.609 16.6906 13.6068 16.699 13.6038C16.7158 13.5979 16.7409 13.589 16.7743 13.5772C16.841 13.5537 16.9404 13.5188 17.0712 13.4732C17.3328 13.3821 17.7197 13.2484 18.2205 13.0781C19.2222 12.7377 20.6794 12.2513 22.5009 11.6679C26.1441 10.501 31.2437 8.94609 37.0691 7.39429C48.726 4.28902 63.2661 1.20247 74.8567 1.25055L74.8588 0.750559C63.1983 0.702188 48.6045 3.80396 36.9404 6.91114C31.1052 8.46555 25.9975 10.0229 22.3484 11.1917C20.5238 11.7761 19.0638 12.2634 18.0596 12.6047C17.5575 12.7754 17.1694 12.9095 16.9067 13.0011C16.7754 13.0468 16.6754 13.0819 16.6081 13.1056C16.5745 13.1175 16.5491 13.1265 16.532 13.1325C16.5235 13.1355 16.5171 13.1378 16.5127 13.1394C16.5106 13.1401 16.509 13.1407 16.5079 13.1411C16.5073 13.1413 16.5069 13.1414 16.5066 13.1415C16.5063 13.1416 16.5062 13.1417 16.59 13.3772ZM16.84 19.2708V13.3772H16.34V19.2708H16.84ZM16.8268 19.9767V14.3017H16.3268V19.9767H16.8268ZM74.2747 48.4883C50.7251 48.4883 36.3582 41.9521 27.8838 35.1221C23.6449 31.7057 20.8761 28.2125 19.1683 25.4194C18.3143 24.0226 17.7264 22.8021 17.3527 21.8552C17.1659 21.3816 17.0333 20.9783 16.9478 20.657C16.8611 20.3308 16.8268 20.1036 16.8268 19.9767H16.3268C16.3268 20.1695 16.3745 20.4468 16.4646 20.7855C16.556 21.1291 16.6952 21.551 16.8876 22.0387C17.2726 23.0144 17.8738 24.2607 18.7417 25.6802C20.4778 28.5197 23.2841 32.0571 27.5701 35.5114C36.1454 42.4227 50.6275 48.9883 74.2747 48.9883V48.4883ZM131.733 20.0111C131.733 20.1356 131.698 20.3605 131.611 20.6849C131.526 21.0044 131.393 21.4059 131.206 21.8779C130.832 22.8216 130.244 24.0393 129.39 25.4337C127.681 28.2221 124.911 31.7121 120.671 35.1263C112.194 41.9521 97.8243 48.4883 74.2747 48.4883V48.9883C97.922 48.9883 112.406 42.4227 120.984 35.5158C125.271 32.0637 128.079 28.5296 129.816 25.695C130.684 24.2779 131.286 23.0345 131.671 22.0621C131.864 21.576 132.003 21.1559 132.094 20.8142C132.185 20.4776 132.233 20.2021 132.233 20.0111H131.733ZM131.733 14.2882V20.0111H132.233V14.2882H131.733ZM133.682 21.3559C133.682 21.226 133.656 21.0165 133.617 20.7662C133.577 20.51 133.52 20.1937 133.451 19.8409C133.315 19.135 133.133 18.2762 132.952 17.4458C132.77 16.6151 132.589 15.8116 132.453 15.2158C132.385 14.9178 132.328 14.6718 132.288 14.5002C132.269 14.4144 132.253 14.3472 132.242 14.3015C132.237 14.2786 132.233 14.2611 132.23 14.2492C132.229 14.2433 132.228 14.2389 132.227 14.2359C132.227 14.2344 132.226 14.2332 132.226 14.2325C132.226 14.2321 132.226 14.2318 132.226 14.2316C132.226 14.2315 132.226 14.2314 132.226 14.2314C132.226 14.2313 132.226 14.2313 131.983 14.2882C131.739 14.345 131.739 14.3451 131.739 14.3451C131.739 14.3451 131.739 14.3452 131.739 14.3453C131.739 14.3455 131.739 14.3458 131.739 14.3461C131.739 14.3469 131.74 14.348 131.74 14.3495C131.741 14.3524 131.742 14.3569 131.743 14.3627C131.746 14.3745 131.75 14.3919 131.755 14.4147C131.766 14.4603 131.781 14.5273 131.801 14.6129C131.841 14.7841 131.897 15.0297 131.965 15.3271C132.101 15.9219 132.282 16.7239 132.463 17.5525C132.644 18.3815 132.825 19.2358 132.96 19.9358C133.028 20.286 133.084 20.5959 133.123 20.8439C133.163 21.0978 133.182 21.2706 133.182 21.3559H133.682ZM74.2747 56.0607C101.133 56.0607 115.992 47.8106 124.136 39.3305C128.205 35.0935 130.59 30.8068 131.959 27.4804C132.643 25.8172 133.073 24.3936 133.332 23.3354C133.589 22.286 133.682 21.5793 133.682 21.3559H133.182C133.182 21.5152 133.102 22.1723 132.846 23.2164C132.593 24.2517 132.17 25.6514 131.496 27.2902C130.148 30.5675 127.795 34.7988 123.776 38.9842C115.742 47.3488 101.023 55.5607 74.2747 55.5607V56.0607ZM14.8989 21.3559C14.8989 21.9214 15.2555 24.369 16.6174 27.7137C17.9828 31.0669 20.3642 35.3368 24.4298 39.5393C32.5665 47.9502 47.4179 56.0607 74.2747 56.0607V55.5607C47.5253 55.5607 32.8138 47.4867 24.7891 39.1917C20.774 35.0412 18.4252 30.8278 17.0805 27.5252C15.7323 24.214 15.3989 21.8334 15.3989 21.3559H14.8989ZM16.5768 14.3017C16.3346 14.2395 16.3346 14.2395 16.3346 14.2396C16.3346 14.2396 16.3346 14.2397 16.3346 14.2398C16.3345 14.24 16.3345 14.2402 16.3344 14.2406C16.3342 14.2413 16.3339 14.2423 16.3336 14.2437C16.3329 14.2464 16.3318 14.2504 16.3305 14.2557C16.3278 14.2664 16.3237 14.2822 16.3185 14.3028C16.308 14.3441 16.2926 14.4047 16.273 14.4823C16.2339 14.6376 16.178 14.8611 16.1109 15.1338C15.9768 15.6792 15.798 16.4223 15.619 17.2125C15.4402 18.0023 15.2609 18.8411 15.1261 19.5774C14.9926 20.3072 14.8989 20.9561 14.8989 21.3559H15.3989C15.3989 21.0075 15.4838 20.4006 15.6179 19.6674C15.7509 18.9408 15.9286 18.1096 16.1067 17.3229C16.2847 16.5366 16.4628 15.7966 16.5965 15.2532C16.6633 14.9815 16.7189 14.759 16.7578 14.6045C16.7773 14.5273 16.7926 14.4671 16.803 14.4262C16.8082 14.4057 16.8122 14.3901 16.8149 14.3797C16.8162 14.3744 16.8172 14.3705 16.8179 14.3678C16.8183 14.3665 16.8185 14.3655 16.8187 14.3649C16.8188 14.3645 16.8188 14.3643 16.8189 14.3641C16.8189 14.3641 16.8189 14.364 16.8189 14.364C16.8189 14.3639 16.8189 14.3639 16.5768 14.3017Z" fill="#E0E0E0"/>
5
+ </svg>
Binary file