@rio-cloud/rio-uikit 0.16.2-beta.8 → 0.16.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (270) hide show
  1. package/.DS_Store +0 -0
  2. package/AspectRatioPlaceholder.js +2 -0
  3. package/AspectRatioPlaceholder.ts +5 -0
  4. package/Map.d.ts +2 -1
  5. package/ResponsiveColumnStripe.d.ts +5 -0
  6. package/ResponsiveColumnStripe.js +2 -0
  7. package/RuleConnector.d.ts +2 -1
  8. package/RuleContainer.d.ts +3 -2
  9. package/RulesWrapper.d.ts +2 -1
  10. package/components/activity/Activity.js +6 -4
  11. package/components/animatedNumber/AnimatedNumber.js +6 -4
  12. package/components/applicationHeader/AppMenu.js +6 -3
  13. package/components/applicationHeader/AppMenuDropdown.js +6 -2
  14. package/components/applicationHeader/ApplicationHeader.js +16 -8
  15. package/components/applicationHeader/MobileAppMenu.js +8 -4
  16. package/components/applicationLayout/ApplicationLayout.js +8 -8
  17. package/components/applicationLayout/ApplicationLayoutBody.js +6 -3
  18. package/components/applicationLayout/ApplicationLayoutBodyBanner.js +4 -3
  19. package/components/applicationLayout/ApplicationLayoutBodyBottomBar.js +6 -4
  20. package/components/applicationLayout/ApplicationLayoutBodyNavigation.js +6 -4
  21. package/components/applicationLayout/ApplicationLayoutHeader.js +9 -7
  22. package/components/aspectRatioPlaceholder/AspectRatioPlaceholder.js +25 -0
  23. package/components/assetTree/AssetTree.js +6 -3
  24. package/components/assetTree/TypeCounter.js +6 -4
  25. package/components/clearableInput/ClearableInput.js +2 -1
  26. package/components/datepicker/DatePicker.js +8 -4
  27. package/components/dialog/MediaDialog.js +5 -1
  28. package/components/dialog/SaveDialog.js +5 -2
  29. package/components/fade/Fade.js +5 -0
  30. package/components/filepicker/FilePicker.js +1 -1
  31. package/components/map/assets/icon_map_settings_bounding_box_active.svg +1 -1
  32. package/components/map/assets/icon_map_settings_bounding_box_inactive.svg +1 -1
  33. package/components/map/assets/icon_map_settings_construction_active.svg +1 -1
  34. package/components/map/assets/icon_map_settings_construction_inactive.svg +1 -1
  35. package/components/map/assets/icon_map_settings_layer_active.svg +1 -1
  36. package/components/map/assets/icon_map_settings_layer_inactive.svg +1 -1
  37. package/components/map/assets/icon_map_settings_maptype_flat_active.svg +1 -1
  38. package/components/map/assets/icon_map_settings_maptype_flat_inactive.svg +1 -1
  39. package/components/map/assets/icon_map_settings_maptype_flat_truck_active.svg +1 -1
  40. package/components/map/assets/icon_map_settings_maptype_flat_truck_inactive.svg +1 -1
  41. package/components/map/assets/icon_map_settings_maptype_night_active.svg +1 -12
  42. package/components/map/assets/icon_map_settings_maptype_night_inactive.svg +1 -12
  43. package/components/map/assets/icon_map_settings_maptype_satelite_active.svg +1 -1
  44. package/components/map/assets/icon_map_settings_maptype_satelite_inactive.svg +1 -1
  45. package/components/map/assets/icon_map_settings_maptype_terrain_active.svg +1 -1
  46. package/components/map/assets/icon_map_settings_maptype_terrain_inactive.svg +1 -1
  47. package/components/map/assets/icon_map_settings_road_restrictions_active.svg +1 -1
  48. package/components/map/assets/icon_map_settings_road_restrictions_inactive.svg +1 -1
  49. package/components/map/assets/icon_map_settings_system_pois_active.svg +1 -1
  50. package/components/map/assets/icon_map_settings_system_pois_inactive.svg +1 -1
  51. package/components/map/assets/icon_map_settings_workshop_pois_active.svg +1 -1
  52. package/components/map/assets/icon_map_settings_workshop_pois_inactive.svg +1 -1
  53. package/components/map/components/Map.js +47 -36
  54. package/components/map/components/features/ContextMenu.js +1 -1
  55. package/components/map/components/features/Route.js +1 -10
  56. package/components/map/components/features/basics/Circle.js +11 -6
  57. package/components/map/components/features/basics/MapLayerGroup.js +8 -5
  58. package/components/map/components/features/basics/Polygon.js +6 -5
  59. package/components/map/components/features/basics/Polyline.js +42 -40
  60. package/components/map/components/features/basics/marker/DomMarker.js +9 -3
  61. package/components/map/components/features/basics/marker/Marker.js +101 -121
  62. package/components/map/components/features/basics/marker/TextMarker.js +15 -43
  63. package/components/map/components/features/layers/Layer.js +1 -1
  64. package/components/map/components/features/layers/MarkerLayer.js +7 -4
  65. package/components/map/components/features/layers/RoadRestrictionLayer.js +1 -2
  66. package/components/map/components/features/layers/TrafficLayer.js +2 -2
  67. package/components/map/components/features/layers/baselayers/DefaultRasterLayer.js +2 -1
  68. package/components/map/components/features/layers/baselayers/useBaseLayer.js +4 -1
  69. package/components/map/components/features/layers/clustering/ClusterLayer.js +25 -9
  70. package/components/map/components/features/settings/builtinSettings/MapTypeSettings.js +18 -3
  71. package/components/map/icons/MapIcon.js +46 -66
  72. package/components/map/utils/hooks.js +3 -3
  73. package/components/mapMarker/ClusterMapMarker.js +16 -20
  74. package/components/mapMarker/SingleMapMarker.js +16 -30
  75. package/components/numberControl/NumberControl.js +13 -7
  76. package/components/numberInput/NumberInput.js +30 -12
  77. package/components/responsiveColumnStripe/ResponsiveColumnStripe.js +255 -0
  78. package/components/rules/RuleContainer.js +4 -0
  79. package/components/rules/RulesWrapper.js +3 -3
  80. package/hooks/useDarkMode.js +3 -2
  81. package/hooks/useMutationObserver.js +13 -4
  82. package/hooks/useScrollPosition.js +6 -7
  83. package/index.d.ts +29 -29
  84. package/index.js +4 -0
  85. package/lib/es/AspectRatioPlaceholder.js +13 -0
  86. package/lib/es/AspectRatioPlaceholder.ts +5 -0
  87. package/lib/es/Map.d.ts +2 -1
  88. package/lib/es/ResponsiveColumnStripe.d.ts +5 -0
  89. package/lib/es/ResponsiveColumnStripe.js +13 -0
  90. package/lib/es/RuleConnector.d.ts +2 -1
  91. package/lib/es/RuleContainer.d.ts +3 -2
  92. package/lib/es/RulesWrapper.d.ts +2 -1
  93. package/lib/es/components/activity/Activity.js +9 -4
  94. package/lib/es/components/animatedNumber/AnimatedNumber.js +5 -3
  95. package/lib/es/components/applicationHeader/AppMenu.js +6 -3
  96. package/lib/es/components/applicationHeader/AppMenuDropdown.js +6 -2
  97. package/lib/es/components/applicationHeader/ApplicationHeader.js +15 -7
  98. package/lib/es/components/applicationHeader/MobileAppMenu.js +8 -4
  99. package/lib/es/components/applicationLayout/ApplicationLayout.js +11 -8
  100. package/lib/es/components/applicationLayout/ApplicationLayoutBody.js +5 -2
  101. package/lib/es/components/applicationLayout/ApplicationLayoutBodyBanner.js +7 -3
  102. package/lib/es/components/applicationLayout/ApplicationLayoutBodyBottomBar.js +9 -4
  103. package/lib/es/components/applicationLayout/ApplicationLayoutBodyNavigation.js +9 -4
  104. package/lib/es/components/applicationLayout/ApplicationLayoutHeader.js +12 -7
  105. package/lib/es/components/aspectRatioPlaceholder/AspectRatioPlaceholder.js +33 -0
  106. package/lib/es/components/assetTree/AssetTree.js +5 -2
  107. package/lib/es/components/assetTree/TypeCounter.js +9 -4
  108. package/lib/es/components/clearableInput/ClearableInput.js +2 -1
  109. package/lib/es/components/datepicker/DatePicker.js +7 -3
  110. package/lib/es/components/dialog/MediaDialog.js +5 -1
  111. package/lib/es/components/dialog/SaveDialog.js +5 -2
  112. package/lib/es/components/fade/Fade.js +5 -0
  113. package/lib/es/components/filepicker/FilePicker.js +1 -1
  114. package/lib/es/components/map/assets/icon_map_settings_bounding_box_active.svg +1 -1
  115. package/lib/es/components/map/assets/icon_map_settings_bounding_box_inactive.svg +1 -1
  116. package/lib/es/components/map/assets/icon_map_settings_construction_active.svg +1 -1
  117. package/lib/es/components/map/assets/icon_map_settings_construction_inactive.svg +1 -1
  118. package/lib/es/components/map/assets/icon_map_settings_layer_active.svg +1 -1
  119. package/lib/es/components/map/assets/icon_map_settings_layer_inactive.svg +1 -1
  120. package/lib/es/components/map/assets/icon_map_settings_maptype_flat_active.svg +1 -1
  121. package/lib/es/components/map/assets/icon_map_settings_maptype_flat_inactive.svg +1 -1
  122. package/lib/es/components/map/assets/icon_map_settings_maptype_flat_truck_active.svg +1 -1
  123. package/lib/es/components/map/assets/icon_map_settings_maptype_flat_truck_inactive.svg +1 -1
  124. package/lib/es/components/map/assets/icon_map_settings_maptype_night_active.svg +1 -12
  125. package/lib/es/components/map/assets/icon_map_settings_maptype_night_inactive.svg +1 -12
  126. package/lib/es/components/map/assets/icon_map_settings_maptype_satelite_active.svg +1 -1
  127. package/lib/es/components/map/assets/icon_map_settings_maptype_satelite_inactive.svg +1 -1
  128. package/lib/es/components/map/assets/icon_map_settings_maptype_terrain_active.svg +1 -1
  129. package/lib/es/components/map/assets/icon_map_settings_maptype_terrain_inactive.svg +1 -1
  130. package/lib/es/components/map/assets/icon_map_settings_road_restrictions_active.svg +1 -1
  131. package/lib/es/components/map/assets/icon_map_settings_road_restrictions_inactive.svg +1 -1
  132. package/lib/es/components/map/assets/icon_map_settings_system_pois_active.svg +1 -1
  133. package/lib/es/components/map/assets/icon_map_settings_system_pois_inactive.svg +1 -1
  134. package/lib/es/components/map/assets/icon_map_settings_workshop_pois_active.svg +1 -1
  135. package/lib/es/components/map/assets/icon_map_settings_workshop_pois_inactive.svg +1 -1
  136. package/lib/es/components/map/components/Map.js +47 -36
  137. package/lib/es/components/map/components/features/ContextMenu.js +1 -1
  138. package/lib/es/components/map/components/features/Route.js +1 -10
  139. package/lib/es/components/map/components/features/basics/Circle.js +10 -5
  140. package/lib/es/components/map/components/features/basics/MapLayerGroup.js +8 -5
  141. package/lib/es/components/map/components/features/basics/Polygon.js +6 -5
  142. package/lib/es/components/map/components/features/basics/Polyline.js +42 -42
  143. package/lib/es/components/map/components/features/basics/marker/DomMarker.js +8 -3
  144. package/lib/es/components/map/components/features/basics/marker/Marker.js +105 -120
  145. package/lib/es/components/map/components/features/basics/marker/TextMarker.js +15 -42
  146. package/lib/es/components/map/components/features/layers/Layer.js +1 -1
  147. package/lib/es/components/map/components/features/layers/MarkerLayer.js +7 -4
  148. package/lib/es/components/map/components/features/layers/RoadRestrictionLayer.js +1 -2
  149. package/lib/es/components/map/components/features/layers/TrafficLayer.js +2 -2
  150. package/lib/es/components/map/components/features/layers/baselayers/DefaultRasterLayer.js +2 -1
  151. package/lib/es/components/map/components/features/layers/baselayers/useBaseLayer.js +4 -1
  152. package/lib/es/components/map/components/features/layers/clustering/ClusterLayer.js +25 -9
  153. package/lib/es/components/map/components/features/settings/builtinSettings/MapTypeSettings.js +18 -3
  154. package/lib/es/components/map/icons/MapIcon.js +46 -66
  155. package/lib/es/components/map/utils/hooks.js +3 -3
  156. package/lib/es/components/mapMarker/ClusterMapMarker.js +16 -20
  157. package/lib/es/components/mapMarker/SingleMapMarker.js +16 -30
  158. package/lib/es/components/numberControl/NumberControl.js +13 -7
  159. package/lib/es/components/numberInput/NumberInput.js +31 -12
  160. package/lib/es/components/responsiveColumnStripe/ResponsiveColumnStripe.js +266 -0
  161. package/lib/es/components/rules/RuleContainer.js +4 -0
  162. package/lib/es/components/rules/RulesWrapper.js +3 -3
  163. package/lib/es/hooks/useDarkMode.js +4 -3
  164. package/lib/es/hooks/useMutationObserver.js +15 -4
  165. package/lib/es/hooks/useScrollPosition.js +6 -7
  166. package/lib/es/index.d.ts +29 -29
  167. package/lib/es/index.js +24 -0
  168. package/lib/es/styles/components/Dialog.less +13 -10
  169. package/lib/es/styles/components/MapMarker.less +224 -14
  170. package/lib/es/styles/components/MapSettings.less +45 -29
  171. package/lib/es/styles/components/Notification.less +1 -1
  172. package/lib/es/styles/design/alerts.less +7 -9
  173. package/lib/es/styles/design/aspect-ratio.less +1 -0
  174. package/lib/es/styles/design/blur.less +7 -0
  175. package/lib/es/styles/design/border.less +51 -14
  176. package/lib/es/styles/design/callouts.less +12 -11
  177. package/lib/es/styles/design/colors.less +15 -6
  178. package/lib/es/styles/design/cols.less +19 -18
  179. package/lib/es/styles/design/divide.less +165 -0
  180. package/lib/es/styles/design/divider.less +90 -0
  181. package/lib/es/styles/design/responsive/_imports.less +1 -0
  182. package/lib/es/styles/design/responsive/gap.less +0 -8
  183. package/lib/es/styles/design/responsive/spacing.less +25 -0
  184. package/lib/es/styles/design/text.less +16 -2
  185. package/lib/es/styles/mapping/color-map.less +10 -0
  186. package/lib/es/styles/mapping/spacings-map.less +5 -0
  187. package/lib/es/styles/rio-uikit-core.less +2 -0
  188. package/lib/es/styles/variables/colors.json +6 -0
  189. package/lib/es/styles/variables/concated_css_variables.less +6 -0
  190. package/lib/es/styles/variables/dark_colors.less +7 -0
  191. package/lib/es/styles/variables/dark_css_variables_map.less +7 -0
  192. package/lib/es/styles/variables/light_colors.less +7 -0
  193. package/lib/es/styles/variables/light_css_variables_map.less +7 -0
  194. package/lib/es/themes/Volkswagen/components/applicationHeader/VolkswagenApplicationHeader.js +14 -5
  195. package/lib/es/types.ts +69 -23
  196. package/lib/es/useDarkMode.d.ts +4 -0
  197. package/lib/es/useDarkMode.js +13 -0
  198. package/lib/es/useMutationObserver.d.ts +4 -0
  199. package/lib/es/useMutationObserver.js +13 -0
  200. package/lib/es/version.json +1 -1
  201. package/package.json +2 -2
  202. package/styles/components/Dialog.less +13 -10
  203. package/styles/components/MapMarker.less +224 -14
  204. package/styles/components/MapSettings.less +45 -29
  205. package/styles/components/Notification.less +1 -1
  206. package/styles/design/alerts.less +7 -9
  207. package/styles/design/aspect-ratio.less +1 -0
  208. package/styles/design/blur.less +7 -0
  209. package/styles/design/border.less +51 -14
  210. package/styles/design/callouts.less +12 -11
  211. package/styles/design/colors.less +15 -6
  212. package/styles/design/cols.less +19 -18
  213. package/styles/design/divide.less +165 -0
  214. package/styles/design/divider.less +90 -0
  215. package/styles/design/responsive/_imports.less +1 -0
  216. package/styles/design/responsive/gap.less +0 -8
  217. package/styles/design/responsive/spacing.less +25 -0
  218. package/styles/design/text.less +16 -2
  219. package/styles/mapping/color-map.less +10 -0
  220. package/styles/mapping/spacings-map.less +5 -0
  221. package/styles/rio-uikit-core.less +2 -0
  222. package/styles/variables/colors.json +6 -0
  223. package/styles/variables/concated_css_variables.less +6 -0
  224. package/styles/variables/dark_colors.less +7 -0
  225. package/styles/variables/dark_css_variables_map.less +7 -0
  226. package/styles/variables/light_colors.less +7 -0
  227. package/styles/variables/light_css_variables_map.less +7 -0
  228. package/themes/Volkswagen/components/applicationHeader/VolkswagenApplicationHeader.js +15 -6
  229. package/types.ts +69 -23
  230. package/useDarkMode.d.ts +4 -0
  231. package/useDarkMode.js +2 -0
  232. package/useMutationObserver.d.ts +4 -0
  233. package/useMutationObserver.js +2 -0
  234. package/version.json +1 -1
  235. package/components/.DS_Store +0 -0
  236. package/components/map/.DS_Store +0 -0
  237. package/components/map/components/.DS_Store +0 -0
  238. package/components/map/components/features/layers/TruckLayer.js +0 -20
  239. package/components/map/components/features/layers/baselayers/BaseLayer.js +0 -33
  240. package/components/map/components/features/layers/baselayers/DefaultLayer.js +0 -23
  241. package/hooks/useHereMap.ts +0 -23
  242. package/hooks/useScripts.ts +0 -52
  243. package/lib/.DS_Store +0 -0
  244. package/lib/es/.DS_Store +0 -0
  245. package/lib/es/components/.DS_Store +0 -0
  246. package/lib/es/components/map/components/features/layers/TruckLayer.js +0 -28
  247. package/lib/es/components/map/components/features/layers/baselayers/BaseLayer.js +0 -41
  248. package/lib/es/components/map/components/features/layers/baselayers/DefaultLayer.js +0 -30
  249. package/lib/es/hooks/useHereMap.ts +0 -23
  250. package/lib/es/hooks/useScripts.ts +0 -52
  251. package/lib/es/styles/.DS_Store +0 -0
  252. package/lib/es/styles/mixins/_mixins.less +0 -13
  253. package/lib/es/styles/mixins/alerts.less +0 -13
  254. package/lib/es/styles/shared/colors.json +0 -56
  255. package/lib/es/styles/shared/colors.less +0 -73
  256. package/lib/es/styles/shared/screens.less +0 -7
  257. package/lib/es/styles/shared/text.less +0 -23
  258. package/lib/es/styles/variables.less +0 -186
  259. package/lib/es/themes/.DS_Store +0 -0
  260. package/styles/.DS_Store +0 -0
  261. package/styles/mixins/_mixins.less +0 -13
  262. package/styles/mixins/alerts.less +0 -13
  263. package/styles/shared/colors.json +0 -56
  264. package/styles/shared/colors.less +0 -73
  265. package/styles/shared/screens.less +0 -7
  266. package/styles/shared/text.less +0 -23
  267. package/styles/variables.less +0 -186
  268. package/themes/.DS_Store +0 -0
  269. package/themes/Volkswagen/.DS_Store +0 -0
  270. package/themes/Website/.DS_Store +0 -0
@@ -7,7 +7,7 @@ import _assertThisInitialized from "@babel/runtime/helpers/assertThisInitialized
7
7
  import _inherits from "@babel/runtime/helpers/inherits";
8
8
  import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn";
9
9
  import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
10
- var _excluded = ["show", "onClose", "className", "media"];
10
+ var _excluded = ["show", "onClose", "className", "media", "previousButtonText", "nextButtonText", "previousButtonCallback", "nextButtonCallback"];
11
11
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
12
12
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
13
13
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
@@ -158,6 +158,10 @@ var MediaDialog = /*#__PURE__*/function (_Component) {
158
158
  className = _this$props.className,
159
159
  _this$props$media = _this$props.media,
160
160
  media = _this$props$media === void 0 ? [] : _this$props$media,
161
+ previousButtonText = _this$props.previousButtonText,
162
+ nextButtonText = _this$props.nextButtonText,
163
+ previousButtonCallback = _this$props.previousButtonCallback,
164
+ nextButtonCallback = _this$props.nextButtonCallback,
161
165
  remainingProps = _objectWithoutProperties(_this$props, _excluded);
162
166
  var currentMediaIndex = this.state.currentMediaIndex;
163
167
  if (!show) {
@@ -1,5 +1,7 @@
1
1
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
2
  import _extends from "@babel/runtime/helpers/extends";
3
+ import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
4
+ var _excluded = ["content", "onClickDiscard", "discardButtonText", "onClickCancel", "cancelButtonText", "onClickConfirm", "confirmButtonText"];
3
5
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
4
6
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
5
7
  import React from 'react';
@@ -17,7 +19,8 @@ var SaveDialog = function SaveDialog(props) {
17
19
  onClickCancel = props.onClickCancel,
18
20
  cancelButtonText = props.cancelButtonText,
19
21
  onClickConfirm = props.onClickConfirm,
20
- confirmButtonText = props.confirmButtonText;
22
+ confirmButtonText = props.confirmButtonText,
23
+ remainingProps = _objectWithoutProperties(props, _excluded);
21
24
  var footer = /*#__PURE__*/React.createElement("div", {
22
25
  className: "display-flex justify-content-end btn-toolbar"
23
26
  }, /*#__PURE__*/React.createElement("button", {
@@ -33,7 +36,7 @@ var SaveDialog = function SaveDialog(props) {
33
36
  className: "ConfirmationButton btn btn-primary",
34
37
  onClick: onClickConfirm
35
38
  }, confirmButtonText));
36
- return /*#__PURE__*/React.createElement(Dialog, _extends({}, props, {
39
+ return /*#__PURE__*/React.createElement(Dialog, _extends({}, remainingProps, {
37
40
  body: content,
38
41
  footer: footer,
39
42
  onHide: onClickCancel,
@@ -194,6 +194,11 @@ var Fade = function Fade(props) {
194
194
  variants: pageTransitionVariants
195
195
  } : null;
196
196
  var animationProps = animations[animationStyle];
197
+
198
+ // Disable initial animation
199
+ if (!initial) {
200
+ animationProps.initial = false;
201
+ }
197
202
  return /*#__PURE__*/React.createElement(AnimatePresence, _extends({
198
203
  initial: initial,
199
204
  exitBeforeEnter: exitBeforeEnter,
@@ -22,7 +22,7 @@ var FilePicker = function FilePicker(props) {
22
22
  var showButton = isButton || isFull;
23
23
  var showDropzone = isDropzone || isFull;
24
24
  var handleDrop = useCallback(function (acceptedFiles, rejectedFiles) {
25
- var hasImagesType = Object.keys(accept).some(function (mimeType) {
25
+ var hasImagesType = accept && Object.keys(accept).some(function (mimeType) {
26
26
  return mimeType.startsWith('image');
27
27
  });
28
28
  var files = hasImagesType ? acceptedFiles.map(function (file) {
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" d="M31.978 14.928a13.695 13.695 0 0 0-.546-1.137 13.17 13.17 0 0 0-4.12-4.554l-.045-.029a7.494 7.494 0 0 0-.526-.325c-.36-.217-.728-.417-1.106-.6C23.99 7.472 22.052 7 20.004 7 12.822 7 7 12.82 7 20s5.822 13 13.004 13c2.048 0 3.985-.473 5.708-1.316l-.077.034c.38-.182.748-.383 1.106-.601a56 56 0 0 0 .526-.325 13.165 13.165 0 0 0 4.13-4.516l.035-.067c.2-.368.381-.747.546-1.137.646-1.494 1.022-3.233 1.022-5.06a13.01 13.01 0 0 0-1.054-5.146l.032.085v-.023zm-11.983-4.69a9.751 9.751 0 0 1 8.554 5.069l.025.05c-.03.363-.038.728-.025 1.092v-.016c.038.702-.625 1.326-1.561 1.833-.937.507-.898.65-.39 2.106.507 1.456-1.951 5.268-2.852 5.85-.9.582-.936-1.872-.936-1.872v-1.24c0-.117-.195-1.482-.195-1.482l-.325-1.21-.995-1.134a24.88 24.88 0 0 0-2.729-.964l-.197-.05c-.897-.195-.65-1.833.325-2.3.976-.469 1.3.584 1.132-1.21-.17-1.794-1.704-1.212-2.432-1.212s-.813.569-1.245 2.574c-.234 1.092-.858.325-1.014.04-.157-.287-.274-2.185-.274-2.185l-.78 1.365s-.117.546-1.443 1.014c-1.21.426-.933-.975-.621-1.95 1.783-2.528 4.689-4.16 7.977-4.166l.001-.002zM10.53 22.313c.107-.848.377-2.49.845-2.119.625.494.898.494 1.444 1.04.546.546 2.887.858 2.107 1.56-.78.702-.898.77-1.249 1.486-.325.65-.813 2.057-.887 2.275a9.72 9.72 0 0 1-2.261-4.158l-.015-.067.016-.017zM3 31l6 6H3v-6zm34 0v6h-6l6-6zm0-28v6l-6-6h6zM9 3L3 9V3h6z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" d="M31.978 14.928a13.695 13.695 0 0 0-.546-1.137 13.17 13.17 0 0 0-4.12-4.554l-.045-.029a7.494 7.494 0 0 0-.526-.325c-.36-.217-.728-.417-1.106-.6C23.99 7.472 22.052 7 20.004 7 12.822 7 7 12.82 7 20s5.822 13 13.004 13c2.048 0 3.985-.473 5.708-1.316l-.077.034c.38-.182.748-.383 1.106-.601a56 56 0 0 0 .526-.325 13.165 13.165 0 0 0 4.13-4.516l.035-.067c.2-.368.381-.747.546-1.137.646-1.494 1.022-3.233 1.022-5.06a13.01 13.01 0 0 0-1.054-5.146l.032.085v-.023zm-11.983-4.69a9.751 9.751 0 0 1 8.554 5.069l.025.05c-.03.363-.038.728-.025 1.092v-.016c.038.702-.625 1.326-1.561 1.833-.937.507-.898.65-.39 2.106.507 1.456-1.951 5.268-2.852 5.85-.9.582-.936-1.872-.936-1.872v-1.24c0-.117-.195-1.482-.195-1.482l-.325-1.21-.995-1.134a24.88 24.88 0 0 0-2.729-.964l-.197-.05c-.897-.195-.65-1.833.325-2.3.976-.469 1.3.584 1.132-1.21-.17-1.794-1.704-1.212-2.432-1.212s-.813.569-1.245 2.574c-.234 1.092-.858.325-1.014.04-.157-.287-.274-2.185-.274-2.185l-.78 1.365s-.117.546-1.443 1.014c-1.21.426-.933-.975-.621-1.95 1.783-2.528 4.689-4.16 7.977-4.166l.001-.002zM10.53 22.313c.107-.848.377-2.49.845-2.119.625.494.898.494 1.444 1.04.546.546 2.887.858 2.107 1.56-.78.702-.898.77-1.249 1.486-.325.65-.813 2.057-.887 2.275a9.72 9.72 0 0 1-2.261-4.158l-.015-.067.016-.017zM3 31l6 6H3v-6zm34 0v6h-6l6-6zm0-28v6l-6-6h6zM9 3 3 9V3h6z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#A7AFBB" d="M31.978 14.928a13.695 13.695 0 0 0-.546-1.137 13.17 13.17 0 0 0-4.12-4.554l-.045-.029a7.494 7.494 0 0 0-.526-.325c-.36-.217-.728-.417-1.106-.6C23.99 7.472 22.052 7 20.004 7 12.822 7 7 12.82 7 20s5.822 13 13.004 13c2.048 0 3.985-.473 5.708-1.316l-.077.034c.38-.182.748-.383 1.106-.601a56 56 0 0 0 .526-.325 13.165 13.165 0 0 0 4.13-4.516l.035-.067c.2-.368.381-.747.546-1.137.646-1.494 1.022-3.233 1.022-5.06a13.01 13.01 0 0 0-1.054-5.146l.032.085v-.023zm-11.983-4.69a9.751 9.751 0 0 1 8.554 5.069l.025.05c-.03.363-.038.728-.025 1.092v-.016c.038.702-.625 1.326-1.561 1.833-.937.507-.898.65-.39 2.106.507 1.456-1.951 5.268-2.852 5.85-.9.582-.936-1.872-.936-1.872v-1.24c0-.117-.195-1.482-.195-1.482l-.325-1.21-.995-1.134a24.88 24.88 0 0 0-2.729-.964l-.197-.05c-.897-.195-.65-1.833.325-2.3.976-.469 1.3.584 1.132-1.21-.17-1.794-1.704-1.212-2.432-1.212s-.813.569-1.245 2.574c-.234 1.092-.858.325-1.014.04-.157-.287-.274-2.185-.274-2.185l-.78 1.365s-.117.546-1.443 1.014c-1.21.426-.933-.975-.621-1.95 1.783-2.528 4.689-4.16 7.977-4.166l.001-.002zM10.53 22.313c.107-.848.377-2.49.845-2.119.625.494.898.494 1.444 1.04.546.546 2.887.858 2.107 1.56-.78.702-.898.77-1.249 1.486-.325.65-.813 2.057-.887 2.275a9.72 9.72 0 0 1-2.261-4.158l-.015-.067.016-.017zM3 31l6 6H3v-6zm34 0v6h-6l6-6zm0-28v6l-6-6h6zM9 3L3 9V3h6z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#A7AFBB" d="M31.978 14.928a13.695 13.695 0 0 0-.546-1.137 13.17 13.17 0 0 0-4.12-4.554l-.045-.029a7.494 7.494 0 0 0-.526-.325c-.36-.217-.728-.417-1.106-.6C23.99 7.472 22.052 7 20.004 7 12.822 7 7 12.82 7 20s5.822 13 13.004 13c2.048 0 3.985-.473 5.708-1.316l-.077.034c.38-.182.748-.383 1.106-.601a56 56 0 0 0 .526-.325 13.165 13.165 0 0 0 4.13-4.516l.035-.067c.2-.368.381-.747.546-1.137.646-1.494 1.022-3.233 1.022-5.06a13.01 13.01 0 0 0-1.054-5.146l.032.085v-.023zm-11.983-4.69a9.751 9.751 0 0 1 8.554 5.069l.025.05c-.03.363-.038.728-.025 1.092v-.016c.038.702-.625 1.326-1.561 1.833-.937.507-.898.65-.39 2.106.507 1.456-1.951 5.268-2.852 5.85-.9.582-.936-1.872-.936-1.872v-1.24c0-.117-.195-1.482-.195-1.482l-.325-1.21-.995-1.134a24.88 24.88 0 0 0-2.729-.964l-.197-.05c-.897-.195-.65-1.833.325-2.3.976-.469 1.3.584 1.132-1.21-.17-1.794-1.704-1.212-2.432-1.212s-.813.569-1.245 2.574c-.234 1.092-.858.325-1.014.04-.157-.287-.274-2.185-.274-2.185l-.78 1.365s-.117.546-1.443 1.014c-1.21.426-.933-.975-.621-1.95 1.783-2.528 4.689-4.16 7.977-4.166l.001-.002zM10.53 22.313c.107-.848.377-2.49.845-2.119.625.494.898.494 1.444 1.04.546.546 2.887.858 2.107 1.56-.78.702-.898.77-1.249 1.486-.325.65-.813 2.057-.887 2.275a9.72 9.72 0 0 1-2.261-4.158l-.015-.067.016-.017zM3 31l6 6H3v-6zm34 0v6h-6l6-6zm0-28v6l-6-6h6zM9 3 3 9V3h6z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" d="M19.961 8.418L33.5 32.4h-27L19.961 8.418zM20 30l.249-3.276-1.326-1.026-3.099-1.824L12.2 30h1.2l3.225-4.176L18.8 27.15V30H20zm1.761-13.701h-.012a1.5 1.5 0 0 0 0 3 1.5 1.5 0 0 0 .012-3zM13.748 21.3l9.231 5.4L21.2 30H29l-3-5.4-2.172 1.2-.636-.36-1.374-4.941h-.078c-1.29 0-2.37-.905-2.64-2.133l-3.255.816-.858 1.458-.639-.375-.6 1.035zm5.877 2.043l1.089-1.692 1.302 3.093-2.391-1.401zm-3.843-2.25l.819-.867 1.599-.201-1.188 1.791-1.23-.723z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" d="M19.961 8.418 33.5 32.4h-27L19.961 8.418zM20 30l.249-3.276-1.326-1.026-3.099-1.824L12.2 30h1.2l3.225-4.176L18.8 27.15V30H20zm1.761-13.701h-.012a1.5 1.5 0 0 0 0 3 1.5 1.5 0 0 0 .012-3zM13.748 21.3l9.231 5.4L21.2 30H29l-3-5.4-2.172 1.2-.636-.36-1.374-4.941h-.078c-1.29 0-2.37-.905-2.64-2.133l-3.255.816-.858 1.458-.639-.375-.6 1.035zm5.877 2.043 1.089-1.692 1.302 3.093-2.391-1.401zm-3.843-2.25.819-.867 1.599-.201-1.188 1.791-1.23-.723z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#A7AFBB" d="M19.961 8.418L33.5 32.4h-27L19.961 8.418zM20 30l.249-3.276-1.326-1.026-3.099-1.824L12.2 30h1.2l3.225-4.176L18.8 27.15V30H20zm1.761-13.701h-.012a1.5 1.5 0 0 0 0 3 1.5 1.5 0 0 0 .012-3zM13.748 21.3l9.231 5.4L21.2 30H29l-3-5.4-2.172 1.2-.636-.36-1.374-4.941h-.078c-1.29 0-2.37-.905-2.64-2.133l-3.255.816-.858 1.458-.639-.375-.6 1.035zm5.877 2.043l1.089-1.692 1.302 3.093-2.391-1.401zm-3.843-2.25l.819-.867 1.599-.201-1.188 1.791-1.23-.723z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#A7AFBB" d="M19.961 8.418 33.5 32.4h-27L19.961 8.418zM20 30l.249-3.276-1.326-1.026-3.099-1.824L12.2 30h1.2l3.225-4.176L18.8 27.15V30H20zm1.761-13.701h-.012a1.5 1.5 0 0 0 0 3 1.5 1.5 0 0 0 .012-3zM13.748 21.3l9.231 5.4L21.2 30H29l-3-5.4-2.172 1.2-.636-.36-1.374-4.941h-.078c-1.29 0-2.37-.905-2.64-2.133l-3.255.816-.858 1.458-.639-.375-.6 1.035zm5.877 2.043 1.089-1.692 1.302 3.093-2.391-1.401zm-3.843-2.25.819-.867 1.599-.201-1.188 1.791-1.23-.723z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" fill-rule="evenodd" d="M20 9.003l14 7.992-14 6.924-14-6.924 14-7.992zM22 17l-3 1.607L22 20l3-1.393L22 17zm-8-2l-3 1.607L14 18l3-1.393L14 15zm8-3l-3 1.607L22 15l3-1.393L22 12zm-2 13.04l-8.35-4.124L6 24.123l14 6.874 14-6.924-5.651-3.207L20 25.039z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" fill-rule="evenodd" d="m20 9.003 14 7.992-14 6.924-14-6.924 14-7.992zM22 17l-3 1.607L22 20l3-1.393L22 17zm-8-2-3 1.607L14 18l3-1.393L14 15zm8-3-3 1.607L22 15l3-1.393L22 12zm-2 13.04-8.35-4.124L6 24.123l14 6.874 14-6.924-5.651-3.207L20 25.039z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#A7AFBB" fill-rule="evenodd" d="M20 9.003l14 7.992-14 6.924-14-6.924 14-7.992zM22 17l-3 1.607L22 20l3-1.393L22 17zm-8-2l-3 1.607L14 18l3-1.393L14 15zm8-3l-3 1.607L22 15l3-1.393L22 12zm-2 13.04l-8.35-4.124L6 24.123l14 6.874 14-6.924-5.651-3.207L20 25.039z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#A7AFBB" fill-rule="evenodd" d="m20 9.003 14 7.992-14 6.924-14-6.924 14-7.992zM22 17l-3 1.607L22 20l3-1.393L22 17zm-8-2-3 1.607L14 18l3-1.393L14 15zm8-3-3 1.607L22 15l3-1.393L22 12zm-2 13.04-8.35-4.124L6 24.123l14 6.874 14-6.924-5.651-3.207L20 25.039z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" fill-rule="evenodd" d="M.02 20.2L20 31.522 39.98 20.2 20 8.878.02 20.2zm5.363 1.856S2.03 20.132 2.03 20.134l3.353-1.902 3.354 1.9-3.354 1.924zM9 24.118l-3.354-1.923L9 20.295l3.353 1.899L9 24.118zm3.634 2.037s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zM9.13 20.006s-3.353-1.924-3.353-1.922l3.353-1.902 3.354 1.9-3.354 1.924zm3.617 2.062l-3.354-1.923 3.354-1.9 3.353 1.899-3.353 1.924zm3.634 2.037l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.637 2.075L20.3 26.297l3.353-1.9 3.354 1.899-3.354 1.924h.001zM12.78 17.916s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.616 2.062l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zM16.387 15.842l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zm3.616 2.062L16.65 15.98l3.353-1.9 3.354 1.899-3.354 1.924v.001zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm-10.83-10.343s-3.354-1.925-3.354-1.923l3.353-1.901 3.353 1.9-3.353 1.924h.001zm3.615 2.061s-3.353-1.924-3.353-1.922l3.353-1.901 3.354 1.899-3.354 1.924zm3.635 2.037s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.9-3.353 1.923zm3.637 2.075s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.899-3.353 1.924z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="none" fill-rule="evenodd"><path fill="#30B4C0" d="m20 12.451 19.98 11.322L20 35.095.02 23.773l11.052-6.262a4.85 4.85 0 0 0 1.13.484l-2.775 1.572c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-2.446-1.384c.16-.005.32-.019.478-.04l2.222 1.274 3.354-1.924-2.296-1.3c.07-.097.138-.197.202-.3l2.235 1.28.147.085.052.03 3.352-1.924-3.353-1.9-1.854 1.052c.095-.38.142-.762.144-1.139l1.63-.924Zm-.093 17.57-3.353 1.9 3.353 1.922 3.354-1.924-3.354-1.899Zm3.746-2.05-3.353 1.9 3.354 1.922 3.353-1.924-3.354-1.899Zm-7.383-.026-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm-3.636-2.04-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.925-3.353-1.898Zm7.383-.01-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm7.287-.015-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899ZM9 23.868l-3.354 1.9L9 27.691l3.353-1.924L9 23.868Zm7.381-.013-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm14.53-.049-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.925-3.353-1.898Zm-7.244 0-3.353 1.9 3.353 1.922 3.353-1.924-3.353-1.899Zm-10.92-1.988-3.354 1.9 3.354 1.923 3.353-1.924-3.353-1.899Zm-7.364-.013L2.03 23.707c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm14.648-.04-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.924-3.353-1.9Zm7.243-.034-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm7.33-.055-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.899ZM9.13 19.756l-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm7.266-.028-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm7.242-.038-3.353 1.901c0-.002 3.353 1.923 3.353 1.923l3.353-1.924-3.353-1.9Zm7.329-.089-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.353-1.923-3.353-1.9Zm-10.964-1.948-3.353 1.9 3.353 1.924 3.354-1.925-3.354-1.899Zm7.328-.093-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm-3.635-2.036-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.899Z"/><path fill="#97D9DF" d="M8.403 15.762c.15.282.05.632-.227.792l-1.392.74a.584.584 0 0 1-.45.044.593.593 0 0 1-.105-1.09l1.39-.74a.592.592 0 0 1 .784.254ZM14.7 9.09a4.15 4.15 0 1 1-2.427 7.939 4.15 4.15 0 0 1 2.427-7.94Zm-6.333 1.784a.593.593 0 1 1-.347 1.134l-2.269-.693a.602.602 0 0 1-.393-.74c.1-.31.428-.485.74-.394l2.269.693ZM20.99 9.07a.593.593 0 0 1-.245.801l-1.392.74a.587.587 0 0 1-.452.044.564.564 0 0 1-.35-.289.586.586 0 0 1 .245-.801l1.392-.74a.593.593 0 0 1 .802.245ZM9.95 5.497c.153.05.279.16.35.304l.74 1.392a.588.588 0 0 1-.246.802.564.564 0 0 1-.451.044.587.587 0 0 1-.35-.29l-.74-1.392a.595.595 0 0 1 .235-.82.595.595 0 0 1 .462-.04Zm6.023-.566a.593.593 0 0 1 .393.74l-.693 2.269a.593.593 0 1 1-1.134-.347l.693-2.268a.593.593 0 0 1 .74-.394Zm13.598 4.536a.791.791 0 0 0-.4.1.88.88 0 0 0 .067-.35c0-.55-.4-1-.89-1-.2 0-.355.075-.51.175-.222-.975-1-1.675-1.934-1.675-1.11 0-2 1-2 2.25 0 .1 0 .2.022.275-.088-.025-.155-.025-.244-.025-.622 0-1.111.55-1.111 1.25s.489 1.25 1.111 1.25h5.889c.555 0 1-.5 1-1.125s-.445-1.125-1-1.125Zm.875 5.45c.117 0 .233.02.35.08a.652.652 0 0 1-.058-.28c0-.44.35-.8.777-.8a.85.85 0 0 1 .448.14c.194-.78.875-1.34 1.691-1.34.973 0 1.75.8 1.75 1.8 0 .08 0 .16-.019.22.078-.02.136-.02.214-.02.544 0 .972.44.972 1s-.428 1-.972 1h-5.153a.884.884 0 0 1-.875-.9c0-.462.331-.838.765-.893l.11-.007Z"/></g></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#939BA8" fill-rule="evenodd" d="M.02 20.2L20 31.522 39.98 20.2 20 8.878.02 20.2zm5.363 1.856S2.03 20.132 2.03 20.134l3.353-1.902 3.354 1.9-3.354 1.924zM9 24.118l-3.354-1.923L9 20.295l3.353 1.899L9 24.118zm3.634 2.037s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zM9.13 20.006s-3.353-1.924-3.353-1.922l3.353-1.902 3.354 1.9-3.354 1.924zm3.617 2.062l-3.354-1.923 3.354-1.9 3.353 1.899-3.353 1.924zm3.634 2.037l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.637 2.075L20.3 26.297l3.353-1.9 3.354 1.899-3.354 1.924h.001zM12.78 17.916s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.616 2.062l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zM16.387 15.842l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zm3.616 2.062L16.65 15.98l3.353-1.9 3.354 1.899-3.354 1.924v.001zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm-10.83-10.343s-3.354-1.925-3.354-1.923l3.353-1.901 3.353 1.9-3.353 1.924h.001zm3.615 2.061s-3.353-1.924-3.353-1.922l3.353-1.901 3.354 1.899-3.354 1.924zm3.635 2.037s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.9-3.353 1.923zm3.637 2.075s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.899-3.353 1.924z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="none" fill-rule="evenodd"><path fill="#939BA8" d="m20 12.451 19.98 11.322L20 35.095.02 23.773l11.052-6.262a4.85 4.85 0 0 0 1.13.484l-2.775 1.572c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-2.446-1.384c.16-.005.32-.019.478-.04l2.222 1.274 3.354-1.924-2.296-1.3c.07-.097.138-.197.202-.3l2.235 1.28.147.085.052.03 3.352-1.924-3.353-1.9-1.854 1.052c.095-.38.142-.762.144-1.139l1.63-.924Zm-.093 17.57-3.353 1.9 3.353 1.922 3.354-1.924-3.354-1.899Zm3.746-2.05-3.353 1.9 3.354 1.922 3.353-1.924-3.354-1.899Zm-7.383-.026-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm-3.636-2.04-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.925-3.353-1.898Zm7.383-.01-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm7.287-.015-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899ZM9 23.868l-3.354 1.9L9 27.691l3.353-1.924L9 23.868Zm7.381-.013-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm14.53-.049-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.925-3.353-1.898Zm-7.244 0-3.353 1.9 3.353 1.922 3.353-1.924-3.353-1.899Zm-10.92-1.988-3.354 1.9 3.354 1.923 3.353-1.924-3.353-1.899Zm-7.364-.013L2.03 23.707c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm14.648-.04-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.924-3.353-1.9Zm7.243-.034-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm7.33-.055-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.899ZM9.13 19.756l-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm7.266-.028-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm7.242-.038-3.353 1.901c0-.002 3.353 1.923 3.353 1.923l3.353-1.924-3.353-1.9Zm7.329-.089-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.353-1.923-3.353-1.9Zm-10.964-1.948-3.353 1.9 3.353 1.924 3.354-1.925-3.354-1.899Zm7.328-.093-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm-3.635-2.036-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.899Z"/><path fill="#C9CDD3" d="M8.403 15.762c.15.282.05.632-.227.792l-1.392.74a.584.584 0 0 1-.45.044.593.593 0 0 1-.105-1.09l1.39-.74a.592.592 0 0 1 .784.254ZM14.7 9.09a4.15 4.15 0 1 1-2.427 7.939 4.15 4.15 0 0 1 2.427-7.94Zm-6.333 1.784a.593.593 0 1 1-.347 1.134l-2.269-.693a.602.602 0 0 1-.393-.74c.1-.31.428-.485.74-.394l2.269.693ZM20.99 9.07a.593.593 0 0 1-.245.801l-1.392.74a.587.587 0 0 1-.452.044.564.564 0 0 1-.35-.289.586.586 0 0 1 .245-.801l1.392-.74a.593.593 0 0 1 .802.245ZM9.95 5.497c.153.05.279.16.35.304l.74 1.392a.588.588 0 0 1-.246.802.564.564 0 0 1-.451.044.587.587 0 0 1-.35-.29l-.74-1.392a.595.595 0 0 1 .235-.82.595.595 0 0 1 .462-.04Zm6.023-.566a.593.593 0 0 1 .393.74l-.693 2.269a.593.593 0 1 1-1.134-.347l.693-2.268a.593.593 0 0 1 .74-.394Zm13.598 4.536a.791.791 0 0 0-.4.1.88.88 0 0 0 .067-.35c0-.55-.4-1-.89-1-.2 0-.355.075-.51.175-.222-.975-1-1.675-1.934-1.675-1.11 0-2 1-2 2.25 0 .1 0 .2.022.275-.088-.025-.155-.025-.244-.025-.622 0-1.111.55-1.111 1.25s.489 1.25 1.111 1.25h5.889c.555 0 1-.5 1-1.125s-.445-1.125-1-1.125Zm.875 5.45c.117 0 .233.02.35.08a.652.652 0 0 1-.058-.28c0-.44.35-.8.777-.8a.85.85 0 0 1 .448.14c.194-.78.875-1.34 1.691-1.34.973 0 1.75.8 1.75 1.8 0 .08 0 .16-.019.22.078-.02.136-.02.214-.02.544 0 .972.44.972 1s-.428 1-.972 1h-5.153a.884.884 0 0 1-.875-.9c0-.462.331-.838.765-.893l.11-.007Z"/></g></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="none"><path fill="#30B4C0" d="M.02 20.2L20 31.522 39.98 20.2 20 8.878.02 20.2zm5.363 1.856S2.03 20.132 2.03 20.134l3.353-1.902 3.354 1.9-3.354 1.924zM9 24.118l-3.354-1.923L9 20.295l3.353 1.899L9 24.118zm3.634 2.037s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zM9.13 20.006s-3.353-1.924-3.353-1.922l3.353-1.902 3.354 1.9-3.354 1.924zm3.617 2.062l-3.354-1.923 3.354-1.9 3.353 1.899-3.353 1.924zm3.634 2.037l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.637 2.075L20.3 26.297l3.353-1.9 3.354 1.899-3.354 1.924h.001zM12.78 17.916s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.616 2.062l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zM16.387 15.842l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zm3.616 2.062L16.65 15.98l3.353-1.9 3.354 1.899-3.354 1.924v.001zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm-10.83-10.343s-3.354-1.925-3.354-1.923l3.353-1.901 3.353 1.9-3.353 1.924h.001zm3.615 2.061s-3.353-1.924-3.353-1.922l3.353-1.901 3.354 1.899-3.354 1.924zm3.635 2.037s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.9-3.353 1.923zm3.637 2.075s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.899-3.353 1.924z"/><path fill="#FFF" d="M11.385 21.704v-5.7c0-.078.174-1.564.522-4.46l4.418-2.412 5.953 3.492v1.168l4.912 2.864v2.615l-.387.182-9.347 5.58-6.07-3.329h-.001z"/><path fill="#30B4C0" d="M22.495 19.058l4.642-2.433-4.642-2.767z"/><path fill="#30B4C0" fill-opacity=".5" d="M11.426 15.832l5.848 3.3.431-3.969-5.824-3.436z"/><path fill="#30B4C0" d="M17.794 15.046l4.423-2.493-5.94-3.41-4.364 2.439 5.881 3.464zm-.505 4.267l-5.88-3.337v5.738l5.88 3.302v-5.703zm9.661.134l.229-.138v-2.528l-4.856 2.537V12.65l-4.454 2.507-.437 4.185v5.728l.402-.24v-.126l-.002-.011c-.002-.005-.005-.01-.005-.015l-.034-.29.001-.01v-.01l.033-.36.002-.008.001-.009.11-.376c0-.003.002-.004.003-.007s0-.005.002-.008l.176-.36.224-.35c.008-.01.009-.014.01-.016l.27-.274.004-.002.28-.227.012-.006c.004-.002.006-.006.011-.007l.277-.111c.004-.002.008-.002.012-.002l.01-.004.269-.034h.017l.021.004.22.077.015.008.015.009.176.154.013.016.01.014.11.25c.003.003.002.007.003.011.002.005.004.009.004.013l.042.317v.023l-.042.351-.002.008-.001.008 4.616-2.71-.035-.08-.002-.01-.005-.013-.041-.308v-.023l.041-.351.003-.007.11-.376.173-.38.234-.347a.019.019 0 0 1 .005-.005l.004-.006.26-.274c.007-.005.008-.007.01-.01l.285-.222.012-.006c.004-.002.006-.005.01-.006l.278-.111c.003-.002.007-.002.01-.002l.011-.004.26-.034h.019l.02.004.228.077c.006.002.01.006.016.009.004.003.01.004.015.009l.176.153c.006.006.01.01.013.016l.01.014.11.25c.003.004.003.009.003.013l.004.013.034.317v.019l-.034.35-.004.01v.008z"/><path fill="#30B4C0" d="M18.098 24.861l.15.138.183.064.234-.022.257-.118.262-.187.259-.279.21-.322.17-.356.04-.138h.001v-.001l.065-.216.04-.33-.039-.293-.096-.218-.148-.129-.184-.064-.237.03-.254.102-.264.21-.258.264-.21.33-.171.348-.105.36-.032.342.031.267.062.142.034.076zm6.849-4.021l.14.136.19.065.229-.03.265-.112.261-.185.25-.28.22-.322.17-.356.04-.138v-.001l.065-.214.031-.332-.03-.293-.096-.217-.148-.13-.19-.064-.23.03-.256.102-.271.212-.25.263-.219.321-.162.355-.105.355-.04.331.04.284.062.143.034.077z"/></g></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="none"><path fill="#30B4C0" d="M.02 20.2 20 31.522 39.98 20.2 20 8.878.02 20.2zm5.363 1.856S2.03 20.132 2.03 20.134l3.353-1.902 3.354 1.9-3.354 1.924zM9 24.118l-3.354-1.923L9 20.295l3.353 1.899L9 24.118zm3.634 2.037s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm3.636 2.04-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zM9.13 20.006s-3.353-1.924-3.353-1.922l3.353-1.902 3.354 1.9-3.354 1.924zm3.617 2.062-3.354-1.923 3.354-1.9 3.353 1.899-3.353 1.924zm3.634 2.037-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.637 2.075L20.3 26.297l3.353-1.9 3.354 1.899-3.354 1.924h.001zM12.78 17.916s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.616 2.062-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zM16.387 15.842l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zm3.616 2.062L16.65 15.98l3.353-1.9 3.354 1.899-3.354 1.924v.001zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm-10.83-10.343s-3.354-1.925-3.354-1.923l3.353-1.901 3.353 1.9-3.353 1.924h.001zm3.615 2.061s-3.353-1.924-3.353-1.922l3.353-1.901 3.354 1.899-3.354 1.924zm3.635 2.037s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.9-3.353 1.923zm3.637 2.075s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.899-3.353 1.924z"/><path fill="#FFF" d="M11.385 21.704v-5.7c0-.078.174-1.564.522-4.46l4.418-2.412 5.953 3.492v1.168l4.912 2.864v2.615l-.387.182-9.347 5.58-6.07-3.329h-.001z"/><path fill="#30B4C0" d="m22.495 19.058 4.642-2.433-4.642-2.767z"/><path fill="#30B4C0" fill-opacity=".5" d="m11.426 15.832 5.848 3.3.431-3.969-5.824-3.436z"/><path fill="#30B4C0" d="m17.794 15.046 4.423-2.493-5.94-3.41-4.364 2.439 5.881 3.464zm-.505 4.267-5.88-3.337v5.738l5.88 3.302v-5.703zm9.661.134.229-.138v-2.528l-4.856 2.537V12.65l-4.454 2.507-.437 4.185v5.728l.402-.24v-.126l-.002-.011c-.002-.005-.005-.01-.005-.015l-.034-.29.001-.01v-.01l.033-.36.002-.008.001-.009.11-.376c0-.003.002-.004.003-.007s0-.005.002-.008l.176-.36.224-.35c.008-.01.009-.014.01-.016l.27-.274.004-.002.28-.227.012-.006c.004-.002.006-.006.011-.007l.277-.111c.004-.002.008-.002.012-.002l.01-.004.269-.034h.017l.021.004.22.077.015.008.015.009.176.154.013.016.01.014.11.25c.003.003.002.007.003.011.002.005.004.009.004.013l.042.317v.023l-.042.351-.002.008-.001.008 4.616-2.71-.035-.08-.002-.01-.005-.013-.041-.308v-.023l.041-.351.003-.007.11-.376.173-.38.234-.347a.019.019 0 0 1 .005-.005l.004-.006.26-.274c.007-.005.008-.007.01-.01l.285-.222.012-.006c.004-.002.006-.005.01-.006l.278-.111c.003-.002.007-.002.01-.002l.011-.004.26-.034h.019l.02.004.228.077c.006.002.01.006.016.009.004.003.01.004.015.009l.176.153c.006.006.01.01.013.016l.01.014.11.25c.003.004.003.009.003.013l.004.013.034.317v.019l-.034.35-.004.01v.008z"/><path fill="#30B4C0" d="m18.098 24.861.15.138.183.064.234-.022.257-.118.262-.187.259-.279.21-.322.17-.356.04-.138h.001v-.001l.065-.216.04-.33-.039-.293-.096-.218-.148-.129-.184-.064-.237.03-.254.102-.264.21-.258.264-.21.33-.171.348-.105.36-.032.342.031.267.062.142.034.076zm6.849-4.021.14.136.19.065.229-.03.265-.112.261-.185.25-.28.22-.322.17-.356.04-.138v-.001l.065-.214.031-.332-.03-.293-.096-.217-.148-.13-.19-.064-.23.03-.256.102-.271.212-.25.263-.219.321-.162.355-.105.355-.04.331.04.284.062.143.034.077z"/></g></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="none"><path fill="#939BA8" d="M.02 20.2L20 31.522 39.98 20.2 20 8.878.02 20.2zm5.363 1.856S2.03 20.132 2.03 20.134l3.353-1.902 3.354 1.9-3.354 1.924zM9 24.118l-3.354-1.923L9 20.295l3.353 1.899L9 24.118zm3.634 2.037s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zM9.13 20.006s-3.353-1.924-3.353-1.922l3.353-1.902 3.354 1.9-3.354 1.924zm3.617 2.062l-3.354-1.923 3.354-1.9 3.353 1.899-3.353 1.924zm3.634 2.037l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.637 2.075L20.3 26.297l3.353-1.9 3.354 1.899-3.354 1.924h.001zM12.78 17.916s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.616 2.062l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zM16.387 15.842l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zm3.616 2.062L16.65 15.98l3.353-1.9 3.354 1.899-3.354 1.924v.001zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm-10.83-10.343s-3.354-1.925-3.354-1.923l3.353-1.901 3.353 1.9-3.353 1.924h.001zm3.615 2.061s-3.353-1.924-3.353-1.922l3.353-1.901 3.354 1.899-3.354 1.924zm3.635 2.037s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.9-3.353 1.923zm3.637 2.075s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.899-3.353 1.924z"/><path fill="#FFF" d="M11.385 21.704v-5.7c0-.078.174-1.564.522-4.46l4.418-2.412 5.953 3.492v1.168l4.912 2.864v2.615l-.387.182-9.347 5.58-6.07-3.329h-.001z"/><path fill="#939BA8" d="M22.495 19.058l4.642-2.433-4.642-2.767z"/><path fill="#939BA8" fill-opacity=".5" d="M11.426 15.832l5.848 3.3.431-3.969-5.824-3.436z"/><path fill="#939BA8" d="M17.794 15.046l4.423-2.493-5.94-3.41-4.364 2.439 5.881 3.464zm-.505 4.267l-5.88-3.337v5.738l5.88 3.302v-5.703zm9.661.134l.229-.138v-2.528l-4.856 2.537V12.65l-4.454 2.507-.437 4.185v5.728l.402-.24v-.126l-.002-.011c-.002-.005-.005-.01-.005-.015l-.034-.29.001-.01v-.01l.033-.36.002-.008.001-.009.11-.376c0-.003.002-.004.003-.007s0-.005.002-.008l.176-.36.224-.35c.008-.01.009-.014.01-.016l.27-.274.004-.002.28-.227.012-.006c.004-.002.006-.006.011-.007l.277-.111c.004-.002.008-.002.012-.002l.01-.004.269-.034h.017l.021.004.22.077.015.008.015.009.176.154.013.016.01.014.11.25c.003.003.002.007.003.011.002.005.004.009.004.013l.042.317v.023l-.042.351-.002.008-.001.008 4.616-2.71-.035-.08-.002-.01-.005-.013-.041-.308v-.023l.041-.351.003-.007.11-.376.173-.38.234-.347a.019.019 0 0 1 .005-.005l.004-.006.26-.274c.007-.005.008-.007.01-.01l.285-.222.012-.006c.004-.002.006-.005.01-.006l.278-.111c.003-.002.007-.002.01-.002l.011-.004.26-.034h.019l.02.004.228.077c.006.002.01.006.016.009.004.003.01.004.015.009l.176.153c.006.006.01.01.013.016l.01.014.11.25c.003.004.003.009.003.013l.004.013.034.317v.019l-.034.35-.004.01v.008z"/><path fill="#939BA8" d="M18.098 24.861l.15.138.183.064.234-.022.257-.118.262-.187.259-.279.21-.322.17-.356.04-.138h.001v-.001l.065-.216.04-.33-.039-.293-.096-.218-.148-.129-.184-.064-.237.03-.254.102-.264.21-.258.264-.21.33-.171.348-.105.36-.032.342.031.267.062.142.034.076zm6.849-4.021l.14.136.19.065.229-.03.265-.112.261-.185.25-.28.22-.322.17-.356.04-.138v-.001l.065-.214.031-.332-.03-.293-.096-.217-.148-.13-.19-.064-.23.03-.256.102-.271.212-.25.263-.219.321-.162.355-.105.355-.04.331.04.284.062.143.034.077z"/></g></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="none"><path fill="#939BA8" d="M.02 20.2 20 31.522 39.98 20.2 20 8.878.02 20.2zm5.363 1.856S2.03 20.132 2.03 20.134l3.353-1.902 3.354 1.9-3.354 1.924zM9 24.118l-3.354-1.923L9 20.295l3.353 1.899L9 24.118zm3.634 2.037s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm3.636 2.04-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zM9.13 20.006s-3.353-1.924-3.353-1.922l3.353-1.902 3.354 1.9-3.354 1.924zm3.617 2.062-3.354-1.923 3.354-1.9 3.353 1.899-3.353 1.924zm3.634 2.037-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.637 2.075L20.3 26.297l3.353-1.9 3.354 1.899-3.354 1.924h.001zM12.78 17.916s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.616 2.062-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zM16.387 15.842l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zm3.616 2.062L16.65 15.98l3.353-1.9 3.354 1.899-3.354 1.924v.001zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm-10.83-10.343s-3.354-1.925-3.354-1.923l3.353-1.901 3.353 1.9-3.353 1.924h.001zm3.615 2.061s-3.353-1.924-3.353-1.922l3.353-1.901 3.354 1.899-3.354 1.924zm3.635 2.037s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.9-3.353 1.923zm3.637 2.075s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.899-3.353 1.924z"/><path fill="#FFF" d="M11.385 21.704v-5.7c0-.078.174-1.564.522-4.46l4.418-2.412 5.953 3.492v1.168l4.912 2.864v2.615l-.387.182-9.347 5.58-6.07-3.329h-.001z"/><path fill="#939BA8" d="m22.495 19.058 4.642-2.433-4.642-2.767z"/><path fill="#939BA8" fill-opacity=".5" d="m11.426 15.832 5.848 3.3.431-3.969-5.824-3.436z"/><path fill="#939BA8" d="m17.794 15.046 4.423-2.493-5.94-3.41-4.364 2.439 5.881 3.464zm-.505 4.267-5.88-3.337v5.738l5.88 3.302v-5.703zm9.661.134.229-.138v-2.528l-4.856 2.537V12.65l-4.454 2.507-.437 4.185v5.728l.402-.24v-.126l-.002-.011c-.002-.005-.005-.01-.005-.015l-.034-.29.001-.01v-.01l.033-.36.002-.008.001-.009.11-.376c0-.003.002-.004.003-.007s0-.005.002-.008l.176-.36.224-.35c.008-.01.009-.014.01-.016l.27-.274.004-.002.28-.227.012-.006c.004-.002.006-.006.011-.007l.277-.111c.004-.002.008-.002.012-.002l.01-.004.269-.034h.017l.021.004.22.077.015.008.015.009.176.154.013.016.01.014.11.25c.003.003.002.007.003.011.002.005.004.009.004.013l.042.317v.023l-.042.351-.002.008-.001.008 4.616-2.71-.035-.08-.002-.01-.005-.013-.041-.308v-.023l.041-.351.003-.007.11-.376.173-.38.234-.347a.019.019 0 0 1 .005-.005l.004-.006.26-.274c.007-.005.008-.007.01-.01l.285-.222.012-.006c.004-.002.006-.005.01-.006l.278-.111c.003-.002.007-.002.01-.002l.011-.004.26-.034h.019l.02.004.228.077c.006.002.01.006.016.009.004.003.01.004.015.009l.176.153c.006.006.01.01.013.016l.01.014.11.25c.003.004.003.009.003.013l.004.013.034.317v.019l-.034.35-.004.01v.008z"/><path fill="#939BA8" d="m18.098 24.861.15.138.183.064.234-.022.257-.118.262-.187.259-.279.21-.322.17-.356.04-.138h.001v-.001l.065-.216.04-.33-.039-.293-.096-.218-.148-.129-.184-.064-.237.03-.254.102-.264.21-.258.264-.21.33-.171.348-.105.36-.032.342.031.267.062.142.034.076zm6.849-4.021.14.136.19.065.229-.03.265-.112.261-.185.25-.28.22-.322.17-.356.04-.138v-.001l.065-.214.031-.332-.03-.293-.096-.217-.148-.13-.19-.064-.23.03-.256.102-.271.212-.25.263-.219.321-.162.355-.105.355-.04.331.04.284.062.143.034.077z"/></g></svg>
@@ -1,12 +1 @@
1
- <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M0 20.322L19.98 31.644L39.96 20.322L19.98 9L0 20.322ZM5.363 22.178C5.363 22.178 2.01 20.254 2.01 20.256L5.363 18.354L8.717 20.254L5.363 22.178V22.178ZM8.98 24.24L5.626 22.317L8.98 20.417L12.333 22.316L8.98 24.24ZM12.614 26.277C12.614 26.277 9.261 24.352 9.261 24.354L12.614 22.454L15.967 24.352L12.614 26.277V26.277ZM16.25 28.317L12.897 26.394L16.25 24.494L19.603 26.393L16.25 28.317V28.317ZM19.887 30.392L16.534 28.469L19.887 26.569L23.241 28.468L19.887 30.392ZM9.11 20.128C9.11 20.128 5.757 18.204 5.757 18.206L9.11 16.304L12.464 18.204L9.11 20.128V20.128ZM12.727 22.19L9.373 20.267L12.727 18.367L16.08 20.266L12.727 22.19V22.19ZM16.361 24.227L13.008 22.304L16.361 20.404L19.714 22.303L16.361 24.227V24.227ZM19.997 26.267C19.997 26.267 16.644 24.343 16.644 24.345L19.997 22.443L23.35 24.343L19.997 26.267V26.267ZM23.634 28.342L20.28 26.419L23.633 24.519L26.987 26.418L23.633 28.342H23.634V28.342ZM12.76 18.038C12.76 18.038 9.407 16.114 9.407 16.116L12.76 14.214L16.113 16.114L12.76 18.038ZM16.376 20.1L13.023 18.177L16.376 16.277L19.729 18.176L16.376 20.1ZM20.011 22.137C20.011 22.137 16.658 20.212 16.658 20.214L20.011 18.313L23.364 20.213L20.011 22.137V22.137ZM23.647 24.177L20.294 22.254L23.647 20.354L27 22.253L23.647 24.177ZM27.284 26.252L23.931 24.329L27.284 22.429L30.637 24.328L27.284 26.252V26.252ZM16.367 15.964L13.014 14.041L16.367 12.141L19.721 14.04L16.367 15.964V15.964ZM19.983 18.026L16.63 16.102L19.983 14.202L23.337 16.101L19.983 18.025V18.026ZM23.618 20.063C23.618 20.063 20.265 18.138 20.265 18.14L23.618 16.239L26.971 18.139L23.618 20.063ZM27.254 22.103L23.901 20.18L27.254 18.28L30.607 20.179L27.254 22.103V22.103ZM30.891 24.178C30.891 24.178 27.538 22.253 27.538 22.255L30.891 20.355L34.244 22.253L30.891 24.178V24.178ZM20.061 13.835C20.061 13.835 16.707 11.91 16.707 11.912L20.06 10.011L23.413 11.911L20.06 13.835H20.061V13.835ZM23.676 15.896C23.676 15.896 20.323 13.972 20.323 13.974L23.676 12.073L27.03 13.972L23.676 15.896ZM27.311 17.933C27.311 17.933 23.958 16.009 23.958 16.011L27.311 14.109L30.664 16.009L27.311 17.933ZM30.947 19.973C30.947 19.973 27.594 18.049 27.594 18.051L30.947 16.15L34.3 18.05L30.947 19.973V19.973ZM34.584 22.048C34.584 22.048 31.231 20.124 31.231 20.126L34.584 18.225L37.937 20.124L34.584 22.048Z" fill="#30B4C0"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M12.352 3.14533C12.4221 3.2154 12.4698 3.3047 12.489 3.40192C12.5082 3.49913 12.4981 3.59987 12.46 3.69133C12.1552 4.42281 11.9989 5.20757 12 6C12 7.5913 12.6321 9.11742 13.7574 10.2426C14.8826 11.3679 16.4087 12 18 12C18.7924 12.0011 19.5772 11.8448 20.3087 11.54C20.4001 11.5019 20.5007 11.4919 20.5978 11.5111C20.695 11.5303 20.7842 11.5779 20.8543 11.6478C20.9243 11.7178 20.972 11.807 20.9913 11.9041C21.0106 12.0012 21.0006 12.1019 20.9627 12.1933C20.4307 13.4688 19.5332 14.5584 18.3831 15.3248C17.2331 16.0911 15.882 16.5 14.5 16.5C10.634 16.5 7.5 13.366 7.5 9.5C7.5 6.588 9.278 4.092 11.8067 3.03733C11.898 2.99935 11.9986 2.98933 12.0957 3.00856C12.1928 3.02778 12.282 3.07538 12.352 3.14533V3.14533Z" fill="#30B4C0"/>
4
- <g clip-path="url(#clip0_1_2)">
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M25.5 4.25C25.5815 4.25002 25.6607 4.27657 25.7258 4.32565C25.7908 4.37473 25.8381 4.44365 25.8605 4.522L26.267 5.945C26.3545 6.25146 26.5187 6.53055 26.7441 6.75591C26.9695 6.98128 27.2485 7.14548 27.555 7.233L28.978 7.6395C29.0563 7.66193 29.1252 7.70924 29.1742 7.77428C29.2232 7.83932 29.2497 7.91855 29.2497 8C29.2497 8.08145 29.2232 8.16068 29.1742 8.22572C29.1252 8.29076 29.0563 8.33807 28.978 8.3605L27.555 8.767C27.2485 8.85452 26.9695 9.01872 26.7441 9.24409C26.5187 9.46945 26.3545 9.74854 26.267 10.055L25.8605 11.478C25.8381 11.5563 25.7908 11.6252 25.7257 11.6742C25.6607 11.7232 25.5815 11.7497 25.5 11.7497C25.4186 11.7497 25.3393 11.7232 25.2743 11.6742C25.2092 11.6252 25.1619 11.5563 25.1395 11.478L24.733 10.055C24.6455 9.74854 24.4813 9.46945 24.2559 9.24409C24.0306 9.01872 23.7515 8.85452 23.445 8.767L22.022 8.3605C21.9437 8.33807 21.8748 8.29076 21.8258 8.22572C21.7768 8.16068 21.7503 8.08145 21.7503 8C21.7503 7.91855 21.7768 7.83932 21.8258 7.77428C21.8748 7.70924 21.9437 7.66193 22.022 7.6395L23.445 7.233C23.7515 7.14548 24.0306 6.98128 24.2559 6.75591C24.4813 6.53055 24.6455 6.25146 24.733 5.945L25.1395 4.522C25.1619 4.44365 25.2092 4.37473 25.2742 4.32565C25.3393 4.27657 25.4185 4.25002 25.5 4.25ZM30 2.75C30.0837 2.74995 30.1649 2.77788 30.2309 2.82934C30.2968 2.8808 30.3437 2.95284 30.364 3.034L30.493 3.552C30.611 4.022 30.978 4.389 31.448 4.507L31.966 4.636C32.0473 4.65614 32.1195 4.70293 32.1712 4.7689C32.2228 4.83487 32.2508 4.91623 32.2508 5C32.2508 5.08377 32.2228 5.16513 32.1712 5.2311C32.1195 5.29707 32.0473 5.34386 31.966 5.364L31.448 5.493C30.978 5.611 30.611 5.978 30.493 6.448L30.364 6.966C30.3439 7.04731 30.2971 7.11954 30.2311 7.17117C30.1651 7.22279 30.0838 7.25084 30 7.25084C29.9162 7.25084 29.8349 7.22279 29.7689 7.17117C29.7029 7.11954 29.6561 7.04731 29.636 6.966L29.507 6.448C29.4493 6.21721 29.33 6.00645 29.1618 5.83824C28.9936 5.67003 28.7828 5.55069 28.552 5.493L28.034 5.364C27.9527 5.34386 27.8805 5.29707 27.8288 5.2311C27.7772 5.16513 27.7492 5.08377 27.7492 5C27.7492 4.91623 27.7772 4.83487 27.8288 4.7689C27.8805 4.70293 27.9527 4.65614 28.034 4.636L28.552 4.507C28.7828 4.44931 28.9936 4.32997 29.1618 4.16176C29.33 3.99355 29.4493 3.78279 29.507 3.552L29.636 3.034C29.6563 2.95284 29.7032 2.8808 29.7691 2.82934C29.8351 2.77788 29.9163 2.74995 30 2.75V2.75ZM29.25 9.5C29.3288 9.49995 29.4055 9.52471 29.4694 9.57075C29.5333 9.61679 29.5811 9.68178 29.606 9.7565L29.803 10.348C29.878 10.5715 30.053 10.7475 30.277 10.822L30.8685 11.0195C30.943 11.0445 31.0077 11.0923 31.0536 11.1561C31.0995 11.2198 31.1242 11.2964 31.1242 11.375C31.1242 11.4536 31.0995 11.5302 31.0536 11.5939C31.0077 11.6577 30.943 11.7055 30.8685 11.7305L30.277 11.928C30.0535 12.003 29.8775 12.178 29.803 12.402L29.6055 12.9935C29.5805 13.068 29.5327 13.1327 29.4689 13.1786C29.4052 13.2245 29.3286 13.2491 29.25 13.2491C29.1714 13.2491 29.0949 13.2245 29.0311 13.1786C28.9673 13.1327 28.9195 13.068 28.8945 12.9935L28.697 12.402C28.6602 12.2916 28.5982 12.1914 28.5159 12.1091C28.4336 12.0268 28.3334 11.9648 28.223 11.928L27.6315 11.7305C27.557 11.7055 27.4923 11.6577 27.4464 11.5939C27.4005 11.5302 27.3759 11.4536 27.3759 11.375C27.3759 11.2964 27.4005 11.2198 27.4464 11.1561C27.4923 11.0923 27.557 11.0445 27.6315 11.0195L28.223 10.822C28.4465 10.747 28.6225 10.572 28.697 10.348L28.8945 9.7565C28.9194 9.68186 28.9671 9.61693 29.0309 9.57089C29.0947 9.52486 29.1713 9.50006 29.25 9.5V9.5Z" fill="#30B4C0"/>
6
- </g>
7
- <defs>
8
- <clipPath id="clip0_1_2">
9
- <rect width="12" height="12" fill="white" transform="translate(21 2)"/>
10
- </clipPath>
11
- </defs>
12
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="none" fill-rule="evenodd"><path fill="#30B4C0" d="m21.11 13.38 18.87 10.69L20 35.394.02 24.07l9.826-5.566a9 9 0 0 0 1.374.344l-1.793 1.016c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-1.815-1.028c.134-.023.266-.05.398-.08l1.671.958 3.354-1.924-1.373-.777c.1-.079.198-.16.294-.243.497.286.965.555 1.22.7l.147.085.052.03 3.352-1.924-2.68-1.52a9.068 9.068 0 0 0 .357-.76Zm-1.203 16.938-3.353 1.9 3.353 1.923 3.354-1.924-3.354-1.9Zm3.746-2.05-3.353 1.9 3.353 1.923 3.354-1.924-3.354-1.9Zm-7.383-.025-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm-3.636-2.04-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.925-3.353-1.898Zm7.383-.011-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm7.287-.014-3.353 1.9L27.304 30l3.353-1.924-3.353-1.9ZM9 24.166l-3.354 1.9L9 27.989l3.353-1.924L9 24.165Zm7.381-.013-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm14.53-.05-3.353 1.9 3.353 1.924 3.353-1.925-3.353-1.898Zm-7.244 0-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm-10.92-1.987-3.354 1.9 3.354 1.923 3.353-1.924-3.353-1.9Zm-7.364-.013L2.03 24.005c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm14.648-.041-3.353 1.9 3.353 1.924 3.353-1.924-3.353-1.9Zm7.243-.033-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm7.33-.055-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9ZM9.13 20.053l-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm7.266-.027-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm7.242-.038-3.353 1.9 3.353 1.924 3.353-1.924-3.353-1.9Zm7.329-.09L27.614 21.8c0-.002 3.353 1.922 3.353 1.922l3.353-1.923-3.353-1.9Zm-10.964-1.947-3.353 1.9 3.353 1.924 3.354-1.925-3.354-1.9Zm7.328-.093-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm-3.635-2.036-3.353 1.9 3.353 1.923 3.354-1.924-3.354-1.9Z"/><path fill="#97D9DF" d="M11.11 4.753a.5.5 0 0 1 .108.546 6 6 0 0 0 7.849 7.849.5.5 0 0 1 .654.653 7.002 7.002 0 0 1-13.463-2.693 7.001 7.001 0 0 1 4.307-6.463.5.5 0 0 1 .545.108ZM24 6.37a.375.375 0 0 1 .36.273l.407 1.423a1.874 1.874 0 0 0 1.288 1.288l1.423.406a.375.375 0 0 1 0 .721l-1.423.407a1.875 1.875 0 0 0-1.288 1.288l-.407 1.423a.374.374 0 0 1-.72 0l-.407-1.423a1.874 1.874 0 0 0-1.288-1.288l-1.423-.407a.375.375 0 0 1 0-.72l1.423-.407a1.874 1.874 0 0 0 1.288-1.288l.406-1.423A.375.375 0 0 1 24 6.37Zm4.5-1.5a.375.375 0 0 1 .364.285l.129.518c.118.47.485.837.955.955l.518.129a.375.375 0 0 1 0 .728l-.518.129c-.47.118-.837.485-.955.955l-.129.518a.375.375 0 0 1-.728 0l-.129-.518a1.313 1.313 0 0 0-.955-.955l-.518-.13a.375.375 0 0 1 0-.727l.518-.13a1.312 1.312 0 0 0 .955-.954l.129-.518a.375.375 0 0 1 .364-.284Zm-.75 6.75a.375.375 0 0 1 .356.257l.197.592c.075.223.25.4.474.474l.591.197a.375.375 0 0 1 0 .711l-.591.198a.75.75 0 0 0-.474.474l-.198.591a.375.375 0 0 1-.71 0l-.198-.591a.75.75 0 0 0-.474-.474l-.591-.198a.375.375 0 0 1 0-.71l.591-.198a.75.75 0 0 0 .474-.474l.198-.592a.375.375 0 0 1 .355-.256Z"/></g></svg>
@@ -1,12 +1 @@
1
- <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M0.0199966 20.2L20 31.522L39.98 20.2L20 8.878L0.0199966 20.2ZM5.383 22.056C5.383 22.056 2.03 20.132 2.03 20.134L5.383 18.232L8.737 20.132L5.383 22.056V22.056ZM9 24.118L5.646 22.195L9 20.295L12.353 22.194L9 24.118ZM12.634 26.155C12.634 26.155 9.281 24.23 9.281 24.232L12.634 22.332L15.987 24.23L12.634 26.155V26.155ZM16.27 28.195L12.917 26.272L16.27 24.372L19.623 26.271L16.27 28.195V28.195ZM19.907 30.27L16.554 28.347L19.907 26.447L23.261 28.346L19.907 30.27ZM9.13 20.006C9.13 20.006 5.777 18.082 5.777 18.084L9.13 16.182L12.484 18.082L9.13 20.006V20.006ZM12.747 22.068L9.393 20.145L12.747 18.245L16.1 20.144L12.747 22.068V22.068ZM16.381 24.105L13.028 22.182L16.381 20.282L19.734 22.181L16.381 24.105V24.105ZM20.017 26.145C20.017 26.145 16.664 24.221 16.664 24.223L20.017 22.321L23.37 24.221L20.017 26.145V26.145ZM23.654 28.22L20.3 26.297L23.653 24.397L27.007 26.296L23.653 28.22H23.654V28.22ZM12.78 17.916C12.78 17.916 9.427 15.992 9.427 15.994L12.78 14.092L16.133 15.992L12.78 17.916ZM16.396 19.978L13.043 18.055L16.396 16.155L19.749 18.054L16.396 19.978ZM20.031 22.015C20.031 22.015 16.678 20.09 16.678 20.092L20.031 18.191L23.384 20.091L20.031 22.015V22.015ZM23.667 24.055L20.314 22.132L23.667 20.232L27.02 22.131L23.667 24.055ZM27.304 26.13L23.951 24.207L27.304 22.307L30.657 24.206L27.304 26.13V26.13ZM16.387 15.842L13.034 13.919L16.387 12.019L19.741 13.918L16.387 15.842V15.842ZM20.003 17.904L16.65 15.98L20.003 14.08L23.357 15.979L20.003 17.903V17.904ZM23.638 19.941C23.638 19.941 20.285 18.016 20.285 18.018L23.638 16.117L26.991 18.017L23.638 19.941ZM27.274 21.981L23.921 20.058L27.274 18.158L30.627 20.057L27.274 21.981V21.981ZM30.911 24.056C30.911 24.056 27.558 22.131 27.558 22.133L30.911 20.233L34.264 22.131L30.911 24.056V24.056ZM20.081 13.713C20.081 13.713 16.727 11.788 16.727 11.79L20.08 9.889L23.433 11.789L20.08 13.713H20.081V13.713ZM23.696 15.774C23.696 15.774 20.343 13.85 20.343 13.852L23.696 11.951L27.05 13.85L23.696 15.774ZM27.331 17.811C27.331 17.811 23.978 15.887 23.978 15.889L27.331 13.987L30.684 15.887L27.331 17.811ZM30.967 19.851C30.967 19.851 27.614 17.927 27.614 17.929L30.967 16.028L34.32 17.928L30.967 19.851V19.851ZM34.604 21.926C34.604 21.926 31.251 20.002 31.251 20.004L34.604 18.103L37.957 20.002L34.604 21.926Z" fill="#939BA8"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M12.352 3.14533C12.4221 3.2154 12.4698 3.3047 12.489 3.40192C12.5082 3.49913 12.4981 3.59987 12.46 3.69133C12.1552 4.42281 11.9989 5.20757 12 6C12 7.5913 12.6321 9.11742 13.7574 10.2426C14.8826 11.3679 16.4087 12 18 12C18.7924 12.0011 19.5772 11.8448 20.3087 11.54C20.4001 11.5019 20.5007 11.4919 20.5978 11.5111C20.695 11.5303 20.7842 11.5779 20.8543 11.6478C20.9243 11.7178 20.972 11.807 20.9913 11.9041C21.0106 12.0012 21.0006 12.1019 20.9627 12.1933C20.4307 13.4688 19.5332 14.5584 18.3831 15.3248C17.2331 16.0911 15.882 16.5 14.5 16.5C10.634 16.5 7.5 13.366 7.5 9.5C7.5 6.588 9.278 4.092 11.8067 3.03733C11.898 2.99935 11.9986 2.98933 12.0957 3.00856C12.1928 3.02778 12.282 3.07538 12.352 3.14533V3.14533Z" fill="#939BA8"/>
4
- <g clip-path="url(#clip0_1_4)">
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M25.5 4.25C25.5815 4.25002 25.6607 4.27657 25.7258 4.32565C25.7908 4.37473 25.8381 4.44365 25.8605 4.522L26.267 5.945C26.3545 6.25146 26.5187 6.53055 26.7441 6.75591C26.9694 6.98128 27.2485 7.14548 27.555 7.233L28.978 7.6395C29.0563 7.66193 29.1252 7.70924 29.1742 7.77428C29.2232 7.83932 29.2497 7.91855 29.2497 8C29.2497 8.08145 29.2232 8.16068 29.1742 8.22572C29.1252 8.29076 29.0563 8.33807 28.978 8.3605L27.555 8.767C27.2485 8.85452 26.9694 9.01872 26.7441 9.24409C26.5187 9.46945 26.3545 9.74854 26.267 10.055L25.8605 11.478C25.8381 11.5563 25.7908 11.6252 25.7257 11.6742C25.6607 11.7232 25.5814 11.7497 25.5 11.7497C25.4185 11.7497 25.3393 11.7232 25.2743 11.6742C25.2092 11.6252 25.1619 11.5563 25.1395 11.478L24.733 10.055C24.6455 9.74854 24.4813 9.46945 24.2559 9.24409C24.0305 9.01872 23.7515 8.85452 23.445 8.767L22.022 8.3605C21.9437 8.33807 21.8748 8.29076 21.8258 8.22572C21.7768 8.16068 21.7503 8.08145 21.7503 8C21.7503 7.91855 21.7768 7.83932 21.8258 7.77428C21.8748 7.70924 21.9437 7.66193 22.022 7.6395L23.445 7.233C23.7515 7.14548 24.0305 6.98128 24.2559 6.75591C24.4813 6.53055 24.6455 6.25146 24.733 5.945L25.1395 4.522C25.1619 4.44365 25.2092 4.37473 25.2742 4.32565C25.3393 4.27657 25.4185 4.25002 25.5 4.25ZM30 2.75C30.0837 2.74995 30.1649 2.77788 30.2309 2.82934C30.2968 2.8808 30.3437 2.95284 30.364 3.034L30.493 3.552C30.611 4.022 30.978 4.389 31.448 4.507L31.966 4.636C32.0473 4.65614 32.1195 4.70293 32.1712 4.7689C32.2228 4.83487 32.2508 4.91623 32.2508 5C32.2508 5.08377 32.2228 5.16513 32.1712 5.2311C32.1195 5.29707 32.0473 5.34386 31.966 5.364L31.448 5.493C30.978 5.611 30.611 5.978 30.493 6.448L30.364 6.966C30.3439 7.04731 30.2971 7.11954 30.2311 7.17117C30.1651 7.22279 30.0838 7.25084 30 7.25084C29.9162 7.25084 29.8349 7.22279 29.7689 7.17117C29.7029 7.11954 29.6561 7.04731 29.636 6.966L29.507 6.448C29.4493 6.21721 29.33 6.00645 29.1618 5.83824C28.9935 5.67003 28.7828 5.55069 28.552 5.493L28.034 5.364C27.9527 5.34386 27.8805 5.29707 27.8288 5.2311C27.7772 5.16513 27.7492 5.08377 27.7492 5C27.7492 4.91623 27.7772 4.83487 27.8288 4.7689C27.8805 4.70293 27.9527 4.65614 28.034 4.636L28.552 4.507C28.7828 4.44931 28.9935 4.32997 29.1618 4.16176C29.33 3.99355 29.4493 3.78279 29.507 3.552L29.636 3.034C29.6563 2.95284 29.7032 2.8808 29.7691 2.82934C29.8351 2.77788 29.9163 2.74995 30 2.75V2.75ZM29.25 9.5C29.3288 9.49995 29.4055 9.52471 29.4694 9.57075C29.5333 9.61679 29.5811 9.68178 29.606 9.7565L29.803 10.348C29.878 10.5715 30.053 10.7475 30.277 10.822L30.8685 11.0195C30.943 11.0445 31.0077 11.0923 31.0536 11.1561C31.0995 11.2198 31.1241 11.2964 31.1241 11.375C31.1241 11.4536 31.0995 11.5302 31.0536 11.5939C31.0077 11.6577 30.943 11.7055 30.8685 11.7305L30.277 11.928C30.0535 12.003 29.8775 12.178 29.803 12.402L29.6055 12.9935C29.5805 13.068 29.5327 13.1327 29.4689 13.1786C29.4051 13.2245 29.3286 13.2491 29.25 13.2491C29.1714 13.2491 29.0948 13.2245 29.0311 13.1786C28.9673 13.1327 28.9195 13.068 28.8945 12.9935L28.697 12.402C28.6602 12.2916 28.5982 12.1914 28.5159 12.1091C28.4336 12.0268 28.3334 11.9648 28.223 11.928L27.6315 11.7305C27.557 11.7055 27.4923 11.6577 27.4464 11.5939C27.4005 11.5302 27.3758 11.4536 27.3758 11.375C27.3758 11.2964 27.4005 11.2198 27.4464 11.1561C27.4923 11.0923 27.557 11.0445 27.6315 11.0195L28.223 10.822C28.4465 10.747 28.6225 10.572 28.697 10.348L28.8945 9.7565C28.9194 9.68186 28.9671 9.61693 29.0309 9.57089C29.0947 9.52486 29.1713 9.50006 29.25 9.5V9.5Z" fill="#939BA8"/>
6
- </g>
7
- <defs>
8
- <clipPath id="clip0_1_4">
9
- <rect width="12" height="12" fill="white" transform="translate(21 2)"/>
10
- </clipPath>
11
- </defs>
12
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="none" fill-rule="evenodd"><path fill="#939BA8" d="M21.11 13.379 39.98 24.07 20 35.393.02 24.07l9.825-5.567a9 9 0 0 0 1.375.345l-1.793 1.016c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-1.815-1.028c.134-.023.266-.05.398-.08l1.671.958 3.354-1.924-1.373-.777c.1-.079.198-.16.294-.243.497.286.965.555 1.22.7l.147.085.052.03 3.352-1.924-2.68-1.52a9.068 9.068 0 0 0 .358-.761Zm-1.203 16.939-3.353 1.9 3.353 1.923 3.354-1.924-3.354-1.9Zm3.746-2.05-3.353 1.9 3.353 1.923 3.354-1.924-3.354-1.9Zm-7.383-.025-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm-3.636-2.04-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.925-3.353-1.898Zm7.383-.011-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm7.287-.014-3.353 1.9L27.304 30l3.353-1.924-3.353-1.9ZM9 24.166l-3.354 1.9L9 27.989l3.353-1.924L9 24.165Zm7.381-.013-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm14.53-.05-3.353 1.9 3.353 1.924 3.353-1.925-3.353-1.898Zm-7.244 0-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm-10.92-1.987-3.354 1.9 3.354 1.923 3.353-1.924-3.353-1.9Zm-7.364-.013L2.03 24.005c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm14.648-.041-3.353 1.9 3.353 1.924 3.353-1.924-3.353-1.9Zm7.243-.033-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm7.33-.055-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9ZM9.13 20.053l-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm7.266-.027-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm7.242-.038-3.353 1.9 3.353 1.924 3.353-1.924-3.353-1.9Zm7.329-.09L27.614 21.8c0-.002 3.353 1.922 3.353 1.922l3.353-1.923-3.353-1.9Zm-10.964-1.947-3.353 1.9 3.353 1.924 3.354-1.925-3.354-1.9Zm7.328-.093-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm-3.635-2.036-3.353 1.9 3.353 1.923 3.354-1.924-3.354-1.9Z"/><path fill="#C9CDD3" d="M11.11 4.753a.5.5 0 0 1 .108.546 6 6 0 0 0 7.849 7.849.5.5 0 0 1 .654.653 7.002 7.002 0 0 1-13.463-2.693 7.001 7.001 0 0 1 4.307-6.463.5.5 0 0 1 .545.108ZM24 6.37a.375.375 0 0 1 .36.273l.407 1.423a1.874 1.874 0 0 0 1.288 1.288l1.423.406a.375.375 0 0 1 0 .721l-1.423.407a1.875 1.875 0 0 0-1.288 1.288l-.407 1.423a.374.374 0 0 1-.72 0l-.407-1.423a1.874 1.874 0 0 0-1.288-1.288l-1.423-.407a.375.375 0 0 1 0-.72l1.423-.407a1.874 1.874 0 0 0 1.288-1.288l.406-1.423A.375.375 0 0 1 24 6.37Zm4.5-1.5a.375.375 0 0 1 .364.285l.129.518c.118.47.485.837.955.955l.518.129a.375.375 0 0 1 0 .728l-.518.129c-.47.118-.837.485-.955.955l-.129.518a.375.375 0 0 1-.728 0l-.129-.518a1.313 1.313 0 0 0-.955-.955l-.518-.13a.375.375 0 0 1 0-.727l.518-.13a1.312 1.312 0 0 0 .955-.954l.129-.518a.375.375 0 0 1 .364-.284Zm-.75 6.75a.375.375 0 0 1 .356.257l.197.592c.075.223.25.4.474.474l.591.197a.375.375 0 0 1 0 .711l-.591.198a.75.75 0 0 0-.474.474l-.198.591a.375.375 0 0 1-.71 0l-.198-.591a.75.75 0 0 0-.474-.474l-.591-.198a.375.375 0 0 1 0-.71l.591-.198a.75.75 0 0 0 .474-.474l.198-.592a.375.375 0 0 1 .355-.256Z"/></g></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="#30B4C0" fill-rule="evenodd"><path d="M34.754 19.386l5.206 2.95-19.98 11.322L0 22.336l4.948-2.804-.462.742h1.115l-.336.473-2.805 1.59 2.98 1.688c.778-.443 1.594-.91 2.415-1.4h.156v.259c-.767.46-1.53.9-2.263 1.316l3.44 1.95c1.227-.71 2.136-1.291 3.013-2.049-.344-.163-.688-.322-1.03-.48-.44-.205-.882-.41-1.32-.62v-.336c.482.233.968.459 1.455.684.378.176.76.353 1.143.536.403-.367.806-.776 1.236-1.26h.331l-.157-.198a26.9 26.9 0 0 0 .427-.504c.196-.238.388-.477.582-.716.325-.404.658-.812 1.006-1.215a19.65 19.65 0 0 0-.656.049c-.363.031-.775.066-1.226.08-.286.01-.57-.007-.852-.044l-.196-.33c.341.057.688.086 1.04.074.443-.013.833-.047 1.209-.079.336-.03.65-.055.954-.061.17-.189.342-.374.52-.553.473-.481.948-.88 1.49-1.157-.212.02-.426.03-.639.031a5.36 5.36 0 0 1-1.258-.156c-.69.332-1.381.678-2.04 1.065-.44.254-.872.523-1.299.798l-.156-.263c.425-.275.857-.54 1.294-.796a28.137 28.137 0 0 1 1.752-.925c-.587-.18-1.142-.42-1.676-.685l.711.002c.373.164.756.31 1.159.427.077.024.147.04.22.058.34-.162.68-.322 1.017-.478l.714.002-.42.195-.831.386c.684.115 1.208.062 1.829-.001.087-.01.177-.018.27-.027v.418c-.73.237-1.309.697-1.92 1.316-.112.113-.22.233-.328.35.889.045 1.728.342 2.804 1.383.215.207.42.423.62.641.2-.218.405-.434.62-.641 1.076-1.041 1.915-1.34 2.803-1.385-.104-.112-.208-.227-.316-.335-.614-.625-1.196-1.09-1.93-1.328v-.419l.268.027c.623.063 1.145.115 1.827.001-.425-.201-.851-.4-1.279-.594h.725c.345.16.692.324 1.04.49.072-.02.142-.037.22-.059a9.43 9.43 0 0 0 1.164-.43h.708c-.536.266-1.092.506-1.68.686.59.29 1.18.593 1.75.925a34.77 34.77 0 0 1 1.603.995 7.72 7.72 0 0 0 .822-.26h.775c-.41.185-.834.349-1.27.475.338.223.674.448 1.006.671.527.356 1.055.711 1.59 1.055.268.173.542.341.814.51 1-.523 1.99-1.064 2.97-1.624l-1.915-1.086h2.46-.001zm-5.981-3.39l-.62 1.044-1.133-.643c-.284.16-.572.32-.865.475l-.19-.245c.25-.13.497-.267.745-.406l-1.892-1.073-.827-1.066h1.394l-.005-.008 3.393 1.922zm-14.142-1.95l-.023.036h1.395l-.823 1.045-1.93 1.092c.25.141.498.279.748.41l-.191.243a30.88 30.88 0 0 1-.866-.475l-1.489.844-.62-1.043 3.799-2.153v.001zm22.87 8.29l-2.983-1.69c-.973.552-1.968 1.108-2.979 1.637 1.01.616 2.023 1.198 2.98 1.742l2.982-1.689zm-11.757-3.427a29.093 29.093 0 0 0-2.04-1.061 5.36 5.36 0 0 1-1.259.156c-.211 0-.416-.013-.623-.03.535.275 1.003.674 1.49 1.168.173.176.34.357.504.539.304.006.62.033.956.061.377.032.764.065 1.208.079.373.014.741-.019 1.105-.085a33.47 33.47 0 0 0-1.34-.827h-.001zm-11.22 3.202a18.949 18.949 0 0 1-1.783 1.914c.644.31 1.287.638 1.909.998a35.03 35.03 0 0 1 1.558.967c.244-.216.482-.437.711-.675.593-.614 1.136-1.29 1.661-1.943.385-.478.78-.962 1.197-1.434a14.496 14.496 0 0 0-.631-.655c-1.113-1.075-1.903-1.31-2.854-1.306-.406.462-.8.935-1.184 1.416-.194.24-.388.481-.585.718h.001zm2.618 3.412a11.06 11.06 0 0 1-.671.64c.373.245.743.493 1.107.737.53.358 1.06.715 1.598 1.061.264.171.535.336.804.503.27-.167.54-.332.804-.503.538-.347 1.068-.704 1.599-1.061.363-.244.733-.492 1.106-.737a12.127 12.127 0 0 1-.67-.64c-.601-.624-1.15-1.305-1.68-1.964a41.762 41.762 0 0 0-1.159-1.391c-.403.457-.786.928-1.16 1.391-.528.659-1.076 1.34-1.678 1.964zm5.9-.206c.228.237.468.459.71.674.51-.333 1.03-.66 1.558-.967.622-.36 1.266-.688 1.91-1a19.294 19.294 0 0 1-1.775-1.903c-.2-.242-.397-.486-.594-.73-.38-.47-.77-.95-1.18-1.413-.952-.003-1.742.231-2.855 1.307-.218.21-.427.43-.63.655.416.47.811.956 1.196 1.434.525.654 1.068 1.328 1.66 1.943zm2.64-3.386c.661.798 1.246 1.42 1.832 1.95.381-.18.761-.358 1.137-.532.505-.235 1.01-.467 1.51-.711.255-.123.508-.253.76-.382-.221-.138-.445-.275-.665-.417-.538-.345-1.066-.702-1.597-1.06-.402-.271-.812-.545-1.226-.817a5.73 5.73 0 0 1-1.466.16 21.788 21.788 0 0 1-1.225-.081c-.232-.02-.449-.038-.657-.05.346.4.68.81 1.004 1.212.197.243.394.487.593.728zm-13.183 2.312c-.895.786-1.811 1.385-3.003 2.078l3.444 1.953c.993-.576 2.05-1.247 3.031-2.077a33.171 33.171 0 0 0-1.476-.914 28.18 28.18 0 0 0-1.996-1.04zm3.735 2.127c-.967.83-2.007 1.5-2.992 2.075l3.449 1.954a112.11 112.11 0 0 0 3.003-1.756 41.95 41.95 0 0 1-.687-.43 96.77 96.77 0 0 1-1.604-1.063c-.384-.258-.775-.52-1.169-.78zm3.746 2.452c-1.009.62-2.02 1.206-2.982 1.753l2.982 1.69 2.982-1.692a103.44 103.44 0 0 1-2.982-1.75v-.001zm.285-.177c1.02.622 2.042 1.208 3.005 1.756l3.448-1.955c-.985-.575-2.022-1.245-2.991-2.075-.396.26-.787.52-1.171.78-.532.359-1.064.717-1.604 1.064-.227.147-.458.287-.687.43zm3.724-2.448c.984.832 2.04 1.5 3.034 2.077l3.443-1.951c-1.195-.695-2.11-1.293-3.005-2.079-.674.324-1.348.664-1.995 1.04-.5.292-.992.596-1.477.913zm3.774-2.097c.887.764 1.803 1.352 3.006 2.051l3.442-1.95a102.96 102.96 0 0 1-2.989-1.757c-.306.158-.613.315-.922.466-.502.243-1.01.478-1.516.712-.338.156-.679.316-1.021.478z"/><path d="M5.094 21.941l1.545-2.026h-.858l3.192-5.32 3.158 5.32h-.858l1.58 2.025H9.591v2.78H8.354v-2.78H5.093h.001v.001zm10.038-5.759l1.93-2.531H15.99L19.98 7l3.948 6.651h-1.072l1.974 2.531h-4.076v3.475h-1.548v-3.475H15.13h.002zm13.034 2.656l1.158-1.519h-.644l2.395-3.99 2.368 3.99H32.8l1.184 1.519h-2.445v2.085h-.929v-2.085h-2.445.001z"/></g></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="none" fill-rule="evenodd"><path fill="#30B4C0" d="m34.754 19.386 5.206 2.95-19.98 11.322L0 22.336l4.948-2.804-.462.742h1.115l-.336.473-2.805 1.59 2.98 1.688c.778-.443 1.594-.91 2.415-1.4h.156v.259c-.767.46-1.53.9-2.263 1.316l3.44 1.95c1.227-.71 2.136-1.291 3.013-2.049-.344-.163-.688-.322-1.03-.48-.44-.205-.882-.41-1.32-.62v-.336c.482.233.968.459 1.455.684.378.176.76.353 1.143.536.403-.367.806-.776 1.236-1.26h.331l-.157-.198a26.9 26.9 0 0 0 .427-.504c.196-.238.388-.477.582-.716.325-.404.658-.812 1.006-1.215a19.65 19.65 0 0 0-.656.049c-.363.031-.775.066-1.226.08-.286.01-.57-.007-.852-.044l-.196-.33c.341.057.688.086 1.04.074.443-.013.833-.047 1.209-.079.336-.03.65-.055.954-.061.17-.189.342-.374.52-.553.473-.481.948-.88 1.49-1.157-.212.02-.426.03-.639.031a5.36 5.36 0 0 1-1.258-.156c-.69.332-1.381.678-2.04 1.065-.44.254-.872.523-1.299.798l-.156-.263c.425-.275.857-.54 1.294-.796a28.137 28.137 0 0 1 1.752-.925c-.587-.18-1.142-.42-1.676-.685l.711.002c.373.164.756.31 1.159.427.077.024.147.04.22.058.34-.162.68-.322 1.017-.478l.714.002-.42.195-.831.386c.684.115 1.208.062 1.829-.001.087-.01.177-.018.27-.027v.418c-.73.237-1.309.697-1.92 1.316-.112.113-.22.233-.328.35.889.045 1.728.342 2.804 1.383.215.207.42.423.62.641.2-.218.405-.434.62-.641 1.076-1.041 1.915-1.34 2.803-1.385-.104-.112-.208-.227-.316-.335-.614-.625-1.196-1.09-1.93-1.328v-.419l.268.027c.623.063 1.145.115 1.827.001-.425-.201-.851-.4-1.279-.594h.725c.345.16.692.324 1.04.49.072-.02.142-.037.22-.059a9.43 9.43 0 0 0 1.164-.43h.708c-.536.266-1.092.506-1.68.686.59.29 1.18.593 1.75.925a34.77 34.77 0 0 1 1.603.995 7.72 7.72 0 0 0 .822-.26h.775c-.41.185-.834.349-1.27.475.338.223.674.448 1.006.671.527.356 1.055.711 1.59 1.055.268.173.542.341.814.51 1-.523 1.99-1.064 2.97-1.624l-1.915-1.086h2.46-.001Zm-5.981-3.39-.62 1.044-1.133-.643c-.284.16-.572.32-.865.475l-.19-.245c.25-.13.497-.267.745-.406l-1.892-1.073-.827-1.066h1.394l-.005-.008 3.393 1.922Zm-14.142-1.95-.023.036h1.395l-.823 1.045-1.93 1.092c.25.141.498.279.748.41l-.191.243a30.88 30.88 0 0 1-.866-.475l-1.489.844-.62-1.043 3.799-2.153v.001Zm22.87 8.29-2.983-1.69c-.973.552-1.968 1.108-2.979 1.637 1.01.616 2.023 1.198 2.98 1.742l2.982-1.689Zm-11.757-3.427a29.093 29.093 0 0 0-2.04-1.061 5.36 5.36 0 0 1-1.259.156c-.211 0-.416-.013-.623-.03.535.275 1.003.674 1.49 1.168.173.176.34.357.504.539.304.006.62.033.956.061.377.032.764.065 1.208.079.373.014.741-.019 1.105-.085-.44-.286-.887-.562-1.34-.827h-.001Zm-11.22 3.202a18.949 18.949 0 0 1-1.783 1.914c.644.31 1.287.638 1.909.998a35.03 35.03 0 0 1 1.558.967c.244-.216.482-.437.711-.675.593-.614 1.136-1.29 1.661-1.943.385-.478.78-.962 1.197-1.434a14.496 14.496 0 0 0-.631-.655c-1.113-1.075-1.903-1.31-2.854-1.306-.406.462-.8.935-1.184 1.416-.194.24-.388.481-.585.718h.001Zm2.618 3.412a11.06 11.06 0 0 1-.671.64c.373.245.743.493 1.107.737.53.358 1.06.715 1.598 1.061.264.171.535.336.804.503.27-.167.54-.332.804-.503.538-.347 1.068-.704 1.599-1.061.363-.244.733-.492 1.106-.737a12.127 12.127 0 0 1-.67-.64c-.601-.624-1.15-1.305-1.68-1.964a41.762 41.762 0 0 0-1.159-1.391c-.403.457-.786.928-1.16 1.391-.528.659-1.076 1.34-1.678 1.964Zm5.9-.206c.228.237.468.459.71.674.51-.333 1.03-.66 1.558-.967.622-.36 1.266-.688 1.91-1a19.294 19.294 0 0 1-1.775-1.903c-.2-.242-.397-.486-.594-.73-.38-.47-.77-.95-1.18-1.413-.952-.003-1.742.231-2.855 1.307-.218.21-.427.43-.63.655.416.47.811.956 1.196 1.434.525.654 1.068 1.328 1.66 1.943Zm2.64-3.386c.661.798 1.246 1.42 1.832 1.95.381-.18.761-.358 1.137-.532.505-.235 1.01-.467 1.51-.711.255-.123.508-.253.76-.382-.221-.138-.445-.275-.665-.417-.538-.345-1.066-.702-1.597-1.06-.402-.271-.812-.545-1.226-.817a5.73 5.73 0 0 1-1.466.16 21.788 21.788 0 0 1-1.225-.081c-.232-.02-.449-.038-.657-.05.346.4.68.81 1.004 1.212.197.243.394.487.593.728Zm-13.183 2.312c-.895.786-1.811 1.385-3.003 2.078l3.444 1.953c.993-.576 2.05-1.247 3.031-2.077a33.171 33.171 0 0 0-1.476-.914 28.18 28.18 0 0 0-1.996-1.04Zm3.735 2.127c-.967.83-2.007 1.5-2.992 2.075l3.449 1.954a112.11 112.11 0 0 0 3.003-1.756 41.95 41.95 0 0 1-.687-.43 96.77 96.77 0 0 1-1.604-1.063c-.384-.258-.775-.52-1.169-.78Zm3.746 2.452c-1.009.62-2.02 1.206-2.982 1.753l2.982 1.69 2.982-1.692a103.44 103.44 0 0 1-2.982-1.75v-.001Zm.285-.177c1.02.622 2.042 1.208 3.005 1.756l3.448-1.955c-.985-.575-2.022-1.245-2.991-2.075-.396.26-.787.52-1.171.78-.532.359-1.064.717-1.604 1.064-.227.147-.458.287-.687.43Zm3.724-2.448c.984.832 2.04 1.5 3.034 2.077l3.443-1.951c-1.195-.695-2.11-1.293-3.005-2.079-.674.324-1.348.664-1.995 1.04-.5.292-.992.596-1.477.913Zm3.774-2.097c.887.764 1.803 1.352 3.006 2.051l3.442-1.95a102.96 102.96 0 0 1-2.989-1.757c-.306.158-.613.315-.922.466-.502.243-1.01.478-1.516.712-.338.156-.679.316-1.021.478Z"/><path fill="#97D9DF" d="m5.094 21.941 1.545-2.026h-.858l3.192-5.32 3.158 5.32h-.858l1.58 2.025H9.591v2.78H8.354v-2.78H5.093h.001v.001Zm10.038-5.759 1.93-2.531H15.99L19.98 7l3.948 6.651h-1.072l1.974 2.531h-4.076v3.475h-1.548v-3.475H15.13h.002Zm13.034 2.656 1.158-1.519h-.644l2.395-3.99 2.368 3.99H32.8l1.184 1.519h-2.445v2.085h-.929v-2.085h-2.445.001Z"/></g></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="#939BA8" fill-rule="evenodd"><path d="M34.855 19.215l5.206 2.95-19.98 11.322L.101 22.165l4.948-2.804-.462.742h1.115l-.336.473-2.805 1.59 2.98 1.688c.778-.443 1.594-.91 2.415-1.4h.156v.259c-.767.46-1.53.9-2.263 1.316l3.44 1.95c1.227-.71 2.136-1.291 3.013-2.049-.344-.163-.688-.322-1.03-.48-.44-.205-.882-.41-1.32-.62v-.336c.482.233.968.459 1.455.684.378.176.76.353 1.143.536.403-.367.806-.776 1.236-1.26h.331l-.157-.198a26.9 26.9 0 0 0 .427-.504c.196-.238.388-.477.582-.716.325-.404.658-.812 1.006-1.215a19.65 19.65 0 0 0-.656.049c-.363.031-.775.066-1.226.08-.286.01-.57-.007-.852-.044l-.196-.33c.341.057.688.086 1.04.074.443-.013.833-.047 1.209-.079.336-.03.65-.055.954-.061.17-.189.342-.374.52-.553.473-.481.948-.88 1.49-1.157-.212.02-.426.03-.639.031a5.36 5.36 0 0 1-1.258-.156c-.69.332-1.381.678-2.04 1.065-.44.254-.872.523-1.299.798l-.156-.263c.425-.275.857-.54 1.294-.796a28.137 28.137 0 0 1 1.752-.925c-.587-.18-1.142-.42-1.676-.685l.711.002c.373.164.756.31 1.159.427.077.024.147.04.22.058.34-.162.68-.322 1.017-.478l.714.002-.42.195-.831.386c.684.115 1.208.062 1.829-.001.087-.01.177-.018.27-.027v.418c-.73.237-1.309.697-1.92 1.316-.112.113-.22.233-.328.35.889.045 1.728.342 2.804 1.383.215.207.42.423.62.641.2-.218.405-.434.62-.641 1.076-1.041 1.915-1.34 2.803-1.385-.104-.112-.208-.227-.316-.335-.614-.625-1.196-1.09-1.93-1.328v-.419l.268.027c.623.063 1.145.115 1.827.001-.425-.201-.851-.4-1.279-.594h.725c.345.16.692.324 1.04.49.072-.02.142-.037.22-.059a9.43 9.43 0 0 0 1.164-.43h.708c-.536.266-1.092.506-1.68.686.59.29 1.18.593 1.75.925a34.77 34.77 0 0 1 1.603.995 7.72 7.72 0 0 0 .822-.26h.775c-.41.185-.834.349-1.27.475.338.223.674.448 1.006.671.527.356 1.055.711 1.59 1.055.268.173.542.341.814.51 1-.523 1.99-1.064 2.97-1.624l-1.915-1.086h2.46-.001zm-5.981-3.39l-.62 1.044-1.133-.643c-.284.16-.572.32-.865.475l-.19-.245c.25-.13.497-.267.745-.406l-1.892-1.073-.827-1.066h1.394l-.005-.008 3.393 1.922zm-14.142-1.95l-.023.036h1.395l-.823 1.045-1.93 1.092c.25.141.498.279.748.41l-.191.243c-.291-.154-.58-.312-.866-.475l-1.489.844-.62-1.043 3.799-2.153v.001zm22.87 8.29l-2.983-1.69c-.973.552-1.968 1.108-2.979 1.637 1.01.616 2.023 1.198 2.98 1.742l2.982-1.689zm-11.757-3.427a29.093 29.093 0 0 0-2.04-1.061 5.36 5.36 0 0 1-1.259.156c-.211 0-.416-.013-.623-.03.535.275 1.003.674 1.49 1.168.173.176.34.357.504.539.304.006.62.033.956.061.377.032.764.065 1.208.079.373.014.741-.019 1.105-.085a33.47 33.47 0 0 0-1.34-.827h-.001zm-11.22 3.202a18.949 18.949 0 0 1-1.783 1.914c.644.31 1.287.638 1.909.998a35.03 35.03 0 0 1 1.558.967c.244-.216.482-.437.711-.675.593-.614 1.136-1.29 1.661-1.943.385-.478.78-.962 1.197-1.434a14.496 14.496 0 0 0-.631-.655c-1.113-1.075-1.903-1.31-2.854-1.306-.406.462-.8.935-1.184 1.416-.194.24-.388.481-.585.718h.001zm2.618 3.412a11.06 11.06 0 0 1-.671.64c.373.245.743.493 1.107.737.53.358 1.06.715 1.598 1.061.264.171.535.336.804.503.27-.167.54-.332.804-.503.538-.347 1.068-.704 1.599-1.061.363-.244.733-.492 1.106-.737a12.127 12.127 0 0 1-.67-.64c-.601-.624-1.15-1.305-1.68-1.964a41.762 41.762 0 0 0-1.159-1.391c-.403.457-.786.928-1.16 1.391-.528.659-1.076 1.34-1.678 1.964zm5.9-.206c.228.237.468.459.71.674.51-.333 1.03-.66 1.558-.967.622-.36 1.266-.688 1.91-1a19.294 19.294 0 0 1-1.775-1.903c-.2-.242-.397-.486-.594-.73-.38-.47-.77-.95-1.18-1.413-.952-.003-1.742.231-2.855 1.307-.218.21-.427.43-.63.655.416.47.811.956 1.196 1.434.525.654 1.068 1.328 1.66 1.943zm2.64-3.386c.661.798 1.246 1.42 1.832 1.95.381-.18.761-.358 1.137-.532.505-.235 1.01-.467 1.51-.711.255-.123.508-.253.76-.382-.221-.138-.445-.275-.665-.417-.538-.345-1.066-.702-1.597-1.06-.402-.271-.812-.545-1.226-.817a5.73 5.73 0 0 1-1.466.16 21.788 21.788 0 0 1-1.225-.081c-.232-.02-.449-.038-.657-.05.346.4.68.81 1.004 1.212.197.243.394.487.593.728zM12.6 24.072c-.895.786-1.811 1.385-3.003 2.078l3.444 1.953c.993-.576 2.05-1.247 3.031-2.077a33.171 33.171 0 0 0-1.476-.914 28.18 28.18 0 0 0-1.996-1.04zm3.735 2.127c-.967.83-2.007 1.5-2.992 2.075l3.449 1.954a112.11 112.11 0 0 0 3.003-1.756 41.95 41.95 0 0 1-.687-.43 96.77 96.77 0 0 1-1.604-1.063c-.384-.258-.775-.52-1.169-.78zm3.746 2.452c-1.009.62-2.02 1.206-2.982 1.753l2.982 1.69 2.982-1.692a103.44 103.44 0 0 1-2.982-1.75v-.001zm.285-.177c1.02.622 2.042 1.208 3.005 1.756l3.448-1.955c-.985-.575-2.022-1.245-2.991-2.075-.396.26-.787.52-1.171.78-.532.359-1.064.717-1.604 1.064-.227.147-.458.287-.687.43zm3.724-2.448c.984.832 2.04 1.5 3.034 2.077l3.443-1.951c-1.195-.695-2.11-1.293-3.005-2.079-.674.324-1.348.664-1.995 1.04-.5.292-.992.596-1.477.913zm3.774-2.097c.887.764 1.803 1.352 3.006 2.051l3.442-1.95a102.96 102.96 0 0 1-2.989-1.757c-.306.158-.613.315-.922.466-.502.243-1.01.478-1.516.712-.338.156-.679.316-1.021.478z"/><path d="M5.195 21.77l1.545-2.026h-.858l3.192-5.32 3.158 5.32h-.858l1.58 2.025H9.692v2.78H8.455v-2.78H5.194h.001v.001zm10.038-5.759l1.93-2.531h-1.072l3.99-6.651 3.948 6.651h-1.072l1.974 2.531h-4.076v3.475h-1.548v-3.475h-4.076.002zm13.034 2.656l1.158-1.519h-.644l2.395-3.99 2.368 3.99h-.643l1.184 1.519H31.64v2.085h-.929v-2.085h-2.445.001z"/></g></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><g fill="none" fill-rule="evenodd"><path fill="#939BA8" d="m34.855 19.215 5.206 2.95-19.98 11.322L.101 22.165l4.948-2.804-.462.742h1.115l-.336.473-2.805 1.59 2.98 1.688c.778-.443 1.594-.91 2.415-1.4h.156v.259c-.767.46-1.53.9-2.263 1.316l3.44 1.95c1.227-.71 2.136-1.291 3.013-2.049-.344-.163-.688-.322-1.03-.48-.44-.205-.882-.41-1.32-.62v-.336c.482.233.968.459 1.455.684.378.176.76.353 1.143.536.403-.367.806-.776 1.236-1.26h.331l-.157-.198a26.9 26.9 0 0 0 .427-.504c.196-.238.388-.477.582-.716.325-.404.658-.812 1.006-1.215a19.65 19.65 0 0 0-.656.049c-.363.031-.775.066-1.226.08-.286.01-.57-.007-.852-.044l-.196-.33c.341.057.688.086 1.04.074.443-.013.833-.047 1.209-.079.336-.03.65-.055.954-.061.17-.189.342-.374.52-.553.473-.481.948-.88 1.49-1.157-.212.02-.426.03-.639.031a5.36 5.36 0 0 1-1.258-.156c-.69.332-1.381.678-2.04 1.065-.44.254-.872.523-1.299.798l-.156-.263c.425-.275.857-.54 1.294-.796a28.137 28.137 0 0 1 1.752-.925c-.587-.18-1.142-.42-1.676-.685l.711.002c.373.164.756.31 1.159.427.077.024.147.04.22.058.34-.162.68-.322 1.017-.478l.714.002-.42.195-.831.386c.684.115 1.208.062 1.829-.001.087-.01.177-.018.27-.027v.418c-.73.237-1.309.697-1.92 1.316-.112.113-.22.233-.328.35.889.045 1.728.342 2.804 1.383.215.207.42.423.62.641.2-.218.405-.434.62-.641 1.076-1.041 1.915-1.34 2.803-1.385-.104-.112-.208-.227-.316-.335-.614-.625-1.196-1.09-1.93-1.328v-.419l.268.027c.623.063 1.145.115 1.827.001-.425-.201-.851-.4-1.279-.594h.725c.345.16.692.324 1.04.49.072-.02.142-.037.22-.059a9.43 9.43 0 0 0 1.164-.43h.708c-.536.266-1.092.506-1.68.686.59.29 1.18.593 1.75.925a34.77 34.77 0 0 1 1.603.995 7.72 7.72 0 0 0 .822-.26h.775c-.41.185-.834.349-1.27.475.338.223.674.448 1.006.671.527.356 1.055.711 1.59 1.055.268.173.542.341.814.51 1-.523 1.99-1.064 2.97-1.624l-1.915-1.086h2.46-.001Zm-5.981-3.39-.62 1.044-1.133-.643c-.284.16-.572.32-.865.475l-.19-.245c.25-.13.497-.267.745-.406l-1.892-1.073-.827-1.066h1.394l-.005-.008 3.393 1.922Zm-14.142-1.95-.023.036h1.395l-.823 1.045-1.93 1.092c.25.141.498.279.748.41l-.191.243a30.88 30.88 0 0 1-.866-.475l-1.489.844-.62-1.043 3.799-2.153v.001Zm22.87 8.29-2.983-1.69c-.973.552-1.968 1.108-2.979 1.637 1.01.616 2.023 1.198 2.98 1.742l2.982-1.689Zm-11.757-3.427a29.093 29.093 0 0 0-2.04-1.061 5.36 5.36 0 0 1-1.259.156c-.211 0-.416-.013-.623-.03.535.275 1.003.674 1.49 1.168.173.176.34.357.504.539.304.006.62.033.956.061.377.032.764.065 1.208.079.373.014.741-.019 1.105-.085-.44-.286-.887-.562-1.34-.827h-.001Zm-11.22 3.202a18.949 18.949 0 0 1-1.783 1.914c.644.31 1.287.638 1.909.998a35.03 35.03 0 0 1 1.558.967c.244-.216.482-.437.711-.675.593-.614 1.136-1.29 1.661-1.943.385-.478.78-.962 1.197-1.434a14.496 14.496 0 0 0-.631-.655c-1.113-1.075-1.903-1.31-2.854-1.306-.406.462-.8.935-1.184 1.416-.194.24-.388.481-.585.718h.001Zm2.618 3.412a11.06 11.06 0 0 1-.671.64c.373.245.743.493 1.107.737.53.358 1.06.715 1.598 1.061.264.171.535.336.804.503.27-.167.54-.332.804-.503.538-.347 1.068-.704 1.599-1.061.363-.244.733-.492 1.106-.737a12.127 12.127 0 0 1-.67-.64c-.601-.624-1.15-1.305-1.68-1.964a41.762 41.762 0 0 0-1.159-1.391c-.403.457-.786.928-1.16 1.391-.528.659-1.076 1.34-1.678 1.964Zm5.9-.206c.228.237.468.459.71.674.51-.333 1.03-.66 1.558-.967.622-.36 1.266-.688 1.91-1a19.294 19.294 0 0 1-1.775-1.903c-.2-.242-.397-.486-.594-.73-.38-.47-.77-.95-1.18-1.413-.952-.003-1.742.231-2.855 1.307-.218.21-.427.43-.63.655.416.47.811.956 1.196 1.434.525.654 1.068 1.328 1.66 1.943Zm2.64-3.386c.661.798 1.246 1.42 1.832 1.95.381-.18.761-.358 1.137-.532.505-.235 1.01-.467 1.51-.711.255-.123.508-.253.76-.382-.221-.138-.445-.275-.665-.417-.538-.345-1.066-.702-1.597-1.06-.402-.271-.812-.545-1.226-.817a5.73 5.73 0 0 1-1.466.16 21.788 21.788 0 0 1-1.225-.081c-.232-.02-.449-.038-.657-.05.346.4.68.81 1.004 1.212.197.243.394.487.593.728ZM12.6 24.072c-.895.786-1.811 1.385-3.003 2.078l3.444 1.953c.993-.576 2.05-1.247 3.031-2.077a33.171 33.171 0 0 0-1.476-.914 28.18 28.18 0 0 0-1.996-1.04Zm3.735 2.127c-.967.83-2.007 1.5-2.992 2.075l3.449 1.954a112.11 112.11 0 0 0 3.003-1.756 41.95 41.95 0 0 1-.687-.43 96.77 96.77 0 0 1-1.604-1.063c-.384-.258-.775-.52-1.169-.78Zm3.746 2.452c-1.009.62-2.02 1.206-2.982 1.753l2.982 1.69 2.982-1.692a103.44 103.44 0 0 1-2.982-1.75v-.001Zm.285-.177c1.02.622 2.042 1.208 3.005 1.756l3.448-1.955c-.985-.575-2.022-1.245-2.991-2.075-.396.26-.787.52-1.171.78-.532.359-1.064.717-1.604 1.064-.227.147-.458.287-.687.43Zm3.724-2.448c.984.832 2.04 1.5 3.034 2.077l3.443-1.951c-1.195-.695-2.11-1.293-3.005-2.079-.674.324-1.348.664-1.995 1.04-.5.292-.992.596-1.477.913Zm3.774-2.097c.887.764 1.803 1.352 3.006 2.051l3.442-1.95a102.96 102.96 0 0 1-2.989-1.757c-.306.158-.613.315-.922.466-.502.243-1.01.478-1.516.712-.338.156-.679.316-1.021.478Z"/><path fill="#C9CDD3" d="m5.195 21.77 1.545-2.026h-.858l3.192-5.32 3.158 5.32h-.858l1.58 2.025H9.692v2.78H8.455v-2.78H5.194h.001v.001Zm10.038-5.759 1.93-2.531h-1.072l3.99-6.651 3.948 6.651h-1.072l1.974 2.531h-4.076v3.475h-1.548v-3.475h-4.076.002Zm13.034 2.656 1.158-1.519h-.644l2.395-3.99 2.368 3.99h-.643l1.184 1.519H31.64v2.085h-.929v-2.085h-2.445.001Z"/></g></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" fill-rule="evenodd" d="M0 20.2l20 11.333L40 20.2 20 8.867 0 20.2zm26.737-6.121c-.891.5-1.763.96-2.756 1.25-.073.02-.146.039-.22.057-.397-.188-.793-.374-1.186-.557a81.547 81.547 0 0 1-1.507-.71c-.245-.119-.487-.245-.733-.37a98.714 98.714 0 0 0 2.957-1.623l3.445 1.953zm3.755 2.129c-.924.518-1.918 1.035-2.961 1.298a35.637 35.637 0 0 0-1.605-.996 27.1 27.1 0 0 0-1.752-.925c1.037-.318 1.973-.82 2.873-1.33l3.445 1.953zm3.753 2.126a91.698 91.698 0 0 1-2.974 1.625c-.273-.168-.547-.336-.814-.51-.536-.344-1.065-.7-1.592-1.055-.332-.224-.669-.449-1.007-.672 1.063-.309 2.06-.84 2.943-1.34l3.444 1.952zm3.293 1.866l-2.984 1.69a108.786 108.786 0 0 1-2.983-1.743c1.003-.53 1.997-1.076 2.982-1.639l2.985 1.692zm-32.09-1.692a98.34 98.34 0 0 0 2.982 1.639c-1.01.616-2.027 1.199-2.984 1.743L2.463 20.2l2.985-1.692zM9.2 16.383c.882.497 1.88 1.03 2.942 1.34-.339.224-.674.449-1.004.67-.529.356-1.058.713-1.593 1.058-.268.173-.542.342-.815.51-1.008-.523-2-1.075-2.974-1.626L9.2 16.383zm7.508-4.255c.966.547 1.954 1.1 2.956 1.624-.244.124-.487.25-.733.37-.5.242-1.003.476-1.508.71-.391.18-.787.366-1.183.555-.073-.02-.143-.035-.22-.059-.993-.29-1.866-.747-2.758-1.25l3.446-1.95zm9.061 4.642c.454.262.9.543 1.342.827a5.05 5.05 0 0 1-1.106.085c-.444-.014-.832-.047-1.21-.078a15.38 15.38 0 0 0-.956-.062 16.057 16.057 0 0 0-.505-.54c-.488-.494-.956-.893-1.491-1.169.207.018.412.03.623.03a5.37 5.37 0 0 0 1.26-.155c.69.33 1.38.676 2.043 1.062zm-9.494-1.064c.477.113.883.156 1.26.156.218 0 .428-.014.64-.032-.544.279-1.019.677-1.493 1.158-.178.18-.35.365-.52.554-.319.01-.637.03-.955.062-.377.031-.766.066-1.21.078a5.32 5.32 0 0 1-1.105-.085c.44-.284.887-.563 1.34-.826.66-.387 1.352-.733 2.043-1.065zm3.734-.003c1.358.012 2.193.587 3.1 1.509.108.108.212.223.316.335-.888.046-1.728.345-2.806 1.386-.214.208-.42.424-.62.642-.2-.218-.406-.434-.62-.642-1.078-1.041-1.918-1.339-2.808-1.384.11-.117.217-.236.329-.35.907-.919 1.743-1.488 3.109-1.496zm-6.004 2.28c.41-.015.82-.042 1.228-.08.23-.02.447-.038.655-.05-.342.4-.678.806-1.006 1.217-.194.24-.387.479-.582.716-.669.81-1.254 1.432-1.84 1.964-.383-.182-.766-.36-1.144-.536a87.688 87.688 0 0 1-1.509-.71c-.255-.124-.506-.255-.76-.382.223-.139.448-.276.666-.418.537-.347 1.07-.7 1.598-1.06.402-.27.811-.545 1.225-.815.48.108.972.17 1.468.154h.001zm.532 1.992c.197-.237.391-.478.585-.719.382-.472.773-.954 1.185-1.418.952-.003 1.742.232 2.857 1.308.218.21.426.431.631.656-.416.472-.812.957-1.197 1.435-.526.653-1.07 1.33-1.663 1.945-.229.238-.468.46-.712.675-.511-.333-1.03-.66-1.56-.967-.622-.36-1.266-.69-1.91-1a18.968 18.968 0 0 0 1.784-1.915zm2.621 3.415c.603-.625 1.151-1.306 1.68-1.966.374-.464.757-.934 1.161-1.392.402.458.787.928 1.16 1.392.531.66 1.08 1.341 1.68 1.966.217.225.443.436.673.64-.374.246-.744.495-1.108.738-.53.358-1.061.715-1.6 1.063-.265.171-.536.336-.805.503-.27-.167-.54-.332-.805-.503a82.344 82.344 0 0 1-1.6-1.063c-.364-.243-.734-.492-1.108-.738.23-.203.456-.413.672-.64zm5.906-.206c-.593-.615-1.136-1.29-1.662-1.945a39.25 39.25 0 0 0-1.198-1.435c.204-.225.414-.446.632-.657 1.114-1.076 1.905-1.31 2.857-1.307.41.462.802.944 1.182 1.414.197.244.394.488.594.73a19.38 19.38 0 0 0 1.777 1.906c-.645.312-1.29.64-1.911 1.001a35.08 35.08 0 0 0-1.56.968c-.245-.216-.482-.44-.71-.675h-.001zm2.643-3.39c-.2-.24-.396-.484-.594-.728a46.52 46.52 0 0 0-1.005-1.214c.209.013.425.03.658.05.363.032.774.067 1.226.081a5.73 5.73 0 0 0 1.467-.159c.415.272.826.546 1.228.818.53.358 1.06.715 1.598 1.06.22.143.445.28.666.418-.252.129-.505.26-.76.382-.502.244-1.007.477-1.512.712-.377.174-.757.352-1.138.533-.587-.532-1.172-1.153-1.834-1.953zm-4.262-4.304a15.1 15.1 0 0 0-1.268-.09h-.003c-.013 0-.024.005-.035.007-.044-.002-.082-.008-.127-.008h-.003c-.045 0-.087.006-.132.008a.171.171 0 0 0-.057-.007c-.49.01-.903.052-1.269.09-.622.063-1.146.117-1.83.002.278-.13.556-.26.832-.387.505-.235 1.011-.47 1.513-.713.313-.151.622-.31.931-.47a45.06 45.06 0 0 0 2.444 1.181c.276.128.555.257.833.389-.683.113-1.205.061-1.829-.002zm-8.492-1.235c.901.51 1.836 1.012 2.873 1.33-.592.29-1.182.593-1.754.925a37.06 37.06 0 0 0-1.603.996c-1.045-.263-2.04-.779-2.963-1.298l3.447-1.953zm-4.208 6.052c.306.157.614.315.923.466.502.244 1.008.478 1.513.712.342.16.687.318 1.031.482-.878.758-1.787 1.34-3.015 2.05l-3.444-1.95c.965-.55 1.982-1.139 2.992-1.76zm3.766 1.802c.674.324 1.35.664 1.997 1.041.5.29.993.598 1.478.915-.982.83-2.04 1.502-3.035 2.078L9.506 24.19c1.192-.694 2.11-1.294 3.006-2.08l-.001-.001zm3.738 2.129c.395.26.786.522 1.17.78.533.36 1.065.716 1.605 1.066.227.144.457.288.688.43-1.02.622-2.042 1.21-3.006 1.757l-3.452-1.956c.986-.576 2.027-1.246 2.995-2.077zM20 26.693c1.01.62 2.025 1.207 2.985 1.753L20 30.139l-2.985-1.692c.962-.547 1.975-1.134 2.985-1.754zm.286-.178c.229-.143.46-.283.687-.43.54-.347 1.073-.706 1.605-1.065.385-.26.776-.52 1.172-.78.97.83 2.009 1.5 2.995 2.077l-3.452 1.956a112.097 112.097 0 0 1-3.007-1.758zm3.727-2.45c.486-.315.98-.625 1.478-.915.652-.373 1.319-.72 1.998-1.04.894.787 1.812 1.385 3.007 2.08l-3.446 1.954c-.994-.578-2.053-1.247-3.037-2.08v.001zm3.777-2.1c.343-.162.685-.322 1.023-.478.508-.233 1.014-.47 1.517-.713.31-.15.617-.308.923-.465 1.01.621 2.027 1.208 2.992 1.757L30.8 24.02c-1.205-.7-2.122-1.289-3.01-2.053v-.002zM20 13.584a94.01 94.01 0 0 1-2.983-1.63L20 10.26l2.984 1.69A89.36 89.36 0 0 1 20 13.583v.001z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" fill-rule="evenodd" d="m0 20.2 20 11.333L40 20.2 20 8.867 0 20.2zm26.737-6.121c-.891.5-1.763.96-2.756 1.25-.073.02-.146.039-.22.057-.397-.188-.793-.374-1.186-.557a81.547 81.547 0 0 1-1.507-.71c-.245-.119-.487-.245-.733-.37a98.714 98.714 0 0 0 2.957-1.623l3.445 1.953zm3.755 2.129c-.924.518-1.918 1.035-2.961 1.298a35.637 35.637 0 0 0-1.605-.996 27.1 27.1 0 0 0-1.752-.925c1.037-.318 1.973-.82 2.873-1.33l3.445 1.953zm3.753 2.126a91.698 91.698 0 0 1-2.974 1.625c-.273-.168-.547-.336-.814-.51-.536-.344-1.065-.7-1.592-1.055-.332-.224-.669-.449-1.007-.672 1.063-.309 2.06-.84 2.943-1.34l3.444 1.952zm3.293 1.866-2.984 1.69a108.786 108.786 0 0 1-2.983-1.743c1.003-.53 1.997-1.076 2.982-1.639l2.985 1.692zm-32.09-1.692a98.34 98.34 0 0 0 2.982 1.639c-1.01.616-2.027 1.199-2.984 1.743L2.463 20.2l2.985-1.692zM9.2 16.383c.882.497 1.88 1.03 2.942 1.34-.339.224-.674.449-1.004.67-.529.356-1.058.713-1.593 1.058-.268.173-.542.342-.815.51-1.008-.523-2-1.075-2.974-1.626L9.2 16.383zm7.508-4.255c.966.547 1.954 1.1 2.956 1.624-.244.124-.487.25-.733.37-.5.242-1.003.476-1.508.71-.391.18-.787.366-1.183.555-.073-.02-.143-.035-.22-.059-.993-.29-1.866-.747-2.758-1.25l3.446-1.95zm9.061 4.642c.454.262.9.543 1.342.827a5.05 5.05 0 0 1-1.106.085c-.444-.014-.832-.047-1.21-.078a15.38 15.38 0 0 0-.956-.062 16.057 16.057 0 0 0-.505-.54c-.488-.494-.956-.893-1.491-1.169.207.018.412.03.623.03a5.37 5.37 0 0 0 1.26-.155c.69.33 1.38.676 2.043 1.062zm-9.494-1.064c.477.113.883.156 1.26.156.218 0 .428-.014.64-.032-.544.279-1.019.677-1.493 1.158-.178.18-.35.365-.52.554-.319.01-.637.03-.955.062-.377.031-.766.066-1.21.078a5.32 5.32 0 0 1-1.105-.085c.44-.284.887-.563 1.34-.826.66-.387 1.352-.733 2.043-1.065zm3.734-.003c1.358.012 2.193.587 3.1 1.509.108.108.212.223.316.335-.888.046-1.728.345-2.806 1.386-.214.208-.42.424-.62.642-.2-.218-.406-.434-.62-.642-1.078-1.041-1.918-1.339-2.808-1.384.11-.117.217-.236.329-.35.907-.919 1.743-1.488 3.109-1.496zm-6.004 2.28c.41-.015.82-.042 1.228-.08.23-.02.447-.038.655-.05-.342.4-.678.806-1.006 1.217-.194.24-.387.479-.582.716-.669.81-1.254 1.432-1.84 1.964-.383-.182-.766-.36-1.144-.536a87.688 87.688 0 0 1-1.509-.71c-.255-.124-.506-.255-.76-.382.223-.139.448-.276.666-.418.537-.347 1.07-.7 1.598-1.06.402-.27.811-.545 1.225-.815.48.108.972.17 1.468.154h.001zm.532 1.992c.197-.237.391-.478.585-.719.382-.472.773-.954 1.185-1.418.952-.003 1.742.232 2.857 1.308.218.21.426.431.631.656-.416.472-.812.957-1.197 1.435-.526.653-1.07 1.33-1.663 1.945-.229.238-.468.46-.712.675-.511-.333-1.03-.66-1.56-.967-.622-.36-1.266-.69-1.91-1a18.968 18.968 0 0 0 1.784-1.915zm2.621 3.415c.603-.625 1.151-1.306 1.68-1.966.374-.464.757-.934 1.161-1.392.402.458.787.928 1.16 1.392.531.66 1.08 1.341 1.68 1.966.217.225.443.436.673.64-.374.246-.744.495-1.108.738-.53.358-1.061.715-1.6 1.063-.265.171-.536.336-.805.503-.27-.167-.54-.332-.805-.503a82.344 82.344 0 0 1-1.6-1.063c-.364-.243-.734-.492-1.108-.738.23-.203.456-.413.672-.64zm5.906-.206c-.593-.615-1.136-1.29-1.662-1.945a39.25 39.25 0 0 0-1.198-1.435c.204-.225.414-.446.632-.657 1.114-1.076 1.905-1.31 2.857-1.307.41.462.802.944 1.182 1.414.197.244.394.488.594.73a19.38 19.38 0 0 0 1.777 1.906c-.645.312-1.29.64-1.911 1.001a35.08 35.08 0 0 0-1.56.968c-.245-.216-.482-.44-.71-.675h-.001zm2.643-3.39c-.2-.24-.396-.484-.594-.728a46.52 46.52 0 0 0-1.005-1.214c.209.013.425.03.658.05.363.032.774.067 1.226.081a5.73 5.73 0 0 0 1.467-.159c.415.272.826.546 1.228.818.53.358 1.06.715 1.598 1.06.22.143.445.28.666.418-.252.129-.505.26-.76.382-.502.244-1.007.477-1.512.712-.377.174-.757.352-1.138.533-.587-.532-1.172-1.153-1.834-1.953zm-4.262-4.304a15.1 15.1 0 0 0-1.268-.09h-.003c-.013 0-.024.005-.035.007-.044-.002-.082-.008-.127-.008h-.003c-.045 0-.087.006-.132.008a.171.171 0 0 0-.057-.007c-.49.01-.903.052-1.269.09-.622.063-1.146.117-1.83.002.278-.13.556-.26.832-.387.505-.235 1.011-.47 1.513-.713.313-.151.622-.31.931-.47a45.06 45.06 0 0 0 2.444 1.181c.276.128.555.257.833.389-.683.113-1.205.061-1.829-.002zm-8.492-1.235c.901.51 1.836 1.012 2.873 1.33-.592.29-1.182.593-1.754.925a37.06 37.06 0 0 0-1.603.996c-1.045-.263-2.04-.779-2.963-1.298l3.447-1.953zm-4.208 6.052c.306.157.614.315.923.466.502.244 1.008.478 1.513.712.342.16.687.318 1.031.482-.878.758-1.787 1.34-3.015 2.05l-3.444-1.95c.965-.55 1.982-1.139 2.992-1.76zm3.766 1.802c.674.324 1.35.664 1.997 1.041.5.29.993.598 1.478.915-.982.83-2.04 1.502-3.035 2.078L9.506 24.19c1.192-.694 2.11-1.294 3.006-2.08l-.001-.001zm3.738 2.129c.395.26.786.522 1.17.78.533.36 1.065.716 1.605 1.066.227.144.457.288.688.43-1.02.622-2.042 1.21-3.006 1.757l-3.452-1.956c.986-.576 2.027-1.246 2.995-2.077zM20 26.693c1.01.62 2.025 1.207 2.985 1.753L20 30.139l-2.985-1.692c.962-.547 1.975-1.134 2.985-1.754zm.286-.178c.229-.143.46-.283.687-.43.54-.347 1.073-.706 1.605-1.065.385-.26.776-.52 1.172-.78.97.83 2.009 1.5 2.995 2.077l-3.452 1.956a112.097 112.097 0 0 1-3.007-1.758zm3.727-2.45c.486-.315.98-.625 1.478-.915.652-.373 1.319-.72 1.998-1.04.894.787 1.812 1.385 3.007 2.08l-3.446 1.954c-.994-.578-2.053-1.247-3.037-2.08v.001zm3.777-2.1c.343-.162.685-.322 1.023-.478.508-.233 1.014-.47 1.517-.713.31-.15.617-.308.923-.465 1.01.621 2.027 1.208 2.992 1.757L30.8 24.02c-1.205-.7-2.122-1.289-3.01-2.053v-.002zM20 13.584a94.01 94.01 0 0 1-2.983-1.63L20 10.26l2.984 1.69A89.36 89.36 0 0 1 20 13.583v.001z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#939BA8" fill-rule="evenodd" d="M0 20.2l20 11.333L40 20.2 20 8.867 0 20.2zm26.737-6.121c-.891.5-1.763.96-2.756 1.25-.073.02-.146.039-.22.057-.397-.188-.793-.374-1.186-.557a81.547 81.547 0 0 1-1.507-.71c-.245-.119-.487-.245-.733-.37a98.714 98.714 0 0 0 2.957-1.623l3.445 1.953zm3.755 2.129c-.924.518-1.918 1.035-2.961 1.298a35.637 35.637 0 0 0-1.605-.996 27.1 27.1 0 0 0-1.752-.925c1.037-.318 1.973-.82 2.873-1.33l3.445 1.953zm3.753 2.126a91.698 91.698 0 0 1-2.974 1.625c-.273-.168-.547-.336-.814-.51-.536-.344-1.065-.7-1.592-1.055-.332-.224-.669-.449-1.007-.672 1.063-.309 2.06-.84 2.943-1.34l3.444 1.952zm3.293 1.866l-2.984 1.69a108.786 108.786 0 0 1-2.983-1.743c1.003-.53 1.997-1.076 2.982-1.639l2.985 1.692zm-32.09-1.692a98.34 98.34 0 0 0 2.982 1.639c-1.01.616-2.027 1.199-2.984 1.743L2.463 20.2l2.985-1.692zM9.2 16.383c.882.497 1.88 1.03 2.942 1.34-.339.224-.674.449-1.004.67-.529.356-1.058.713-1.593 1.058-.268.173-.542.342-.815.51-1.008-.523-2-1.075-2.974-1.626L9.2 16.383zm7.508-4.255c.966.547 1.954 1.1 2.956 1.624-.244.124-.487.25-.733.37-.5.242-1.003.476-1.508.71-.391.18-.787.366-1.183.555-.073-.02-.143-.035-.22-.059-.993-.29-1.866-.747-2.758-1.25l3.446-1.95zm9.061 4.642c.454.262.9.543 1.342.827a5.05 5.05 0 0 1-1.106.085c-.444-.014-.832-.047-1.21-.078a15.38 15.38 0 0 0-.956-.062 16.057 16.057 0 0 0-.505-.54c-.488-.494-.956-.893-1.491-1.169.207.018.412.03.623.03a5.37 5.37 0 0 0 1.26-.155c.69.33 1.38.676 2.043 1.062zm-9.494-1.064c.477.113.883.156 1.26.156.218 0 .428-.014.64-.032-.544.279-1.019.677-1.493 1.158-.178.18-.35.365-.52.554-.319.01-.637.03-.955.062-.377.031-.766.066-1.21.078a5.32 5.32 0 0 1-1.105-.085c.44-.284.887-.563 1.34-.826.66-.387 1.352-.733 2.043-1.065zm3.734-.003c1.358.012 2.193.587 3.1 1.509.108.108.212.223.316.335-.888.046-1.728.345-2.806 1.386-.214.208-.42.424-.62.642-.2-.218-.406-.434-.62-.642-1.078-1.041-1.918-1.339-2.808-1.384.11-.117.217-.236.329-.35.907-.919 1.743-1.488 3.109-1.496zm-6.004 2.28c.41-.015.82-.042 1.228-.08.23-.02.447-.038.655-.05-.342.4-.678.806-1.006 1.217-.194.24-.387.479-.582.716-.669.81-1.254 1.432-1.84 1.964-.383-.182-.766-.36-1.144-.536a87.688 87.688 0 0 1-1.509-.71c-.255-.124-.506-.255-.76-.382.223-.139.448-.276.666-.418.537-.347 1.07-.7 1.598-1.06.402-.27.811-.545 1.225-.815.48.108.972.17 1.468.154h.001zm.532 1.992c.197-.237.391-.478.585-.719.382-.472.773-.954 1.185-1.418.952-.003 1.742.232 2.857 1.308.218.21.426.431.631.656-.416.472-.812.957-1.197 1.435-.526.653-1.07 1.33-1.663 1.945-.229.238-.468.46-.712.675-.511-.333-1.03-.66-1.56-.967-.622-.36-1.266-.69-1.91-1a18.968 18.968 0 0 0 1.784-1.915zm2.621 3.415c.603-.625 1.151-1.306 1.68-1.966.374-.464.757-.934 1.161-1.392.402.458.787.928 1.16 1.392.531.66 1.08 1.341 1.68 1.966.217.225.443.436.673.64-.374.246-.744.495-1.108.738-.53.358-1.061.715-1.6 1.063-.265.171-.536.336-.805.503-.27-.167-.54-.332-.805-.503a82.344 82.344 0 0 1-1.6-1.063c-.364-.243-.734-.492-1.108-.738.23-.203.456-.413.672-.64zm5.906-.206c-.593-.615-1.136-1.29-1.662-1.945a39.25 39.25 0 0 0-1.198-1.435c.204-.225.414-.446.632-.657 1.114-1.076 1.905-1.31 2.857-1.307.41.462.802.944 1.182 1.414.197.244.394.488.594.73a19.38 19.38 0 0 0 1.777 1.906c-.645.312-1.29.64-1.911 1.001a35.08 35.08 0 0 0-1.56.968c-.245-.216-.482-.44-.71-.675h-.001zm2.643-3.39c-.2-.24-.396-.484-.594-.728a46.52 46.52 0 0 0-1.005-1.214c.209.013.425.03.658.05.363.032.774.067 1.226.081a5.73 5.73 0 0 0 1.467-.159c.415.272.826.546 1.228.818.53.358 1.06.715 1.598 1.06.22.143.445.28.666.418-.252.129-.505.26-.76.382-.502.244-1.007.477-1.512.712-.377.174-.757.352-1.138.533-.587-.532-1.172-1.153-1.834-1.953zm-4.262-4.304a15.1 15.1 0 0 0-1.268-.09h-.003c-.013 0-.024.005-.035.007-.044-.002-.082-.008-.127-.008h-.003c-.045 0-.087.006-.132.008a.171.171 0 0 0-.057-.007c-.49.01-.903.052-1.269.09-.622.063-1.146.117-1.83.002.278-.13.556-.26.832-.387.505-.235 1.011-.47 1.513-.713.313-.151.622-.31.931-.47a45.06 45.06 0 0 0 2.444 1.181c.276.128.555.257.833.389-.683.113-1.205.061-1.829-.002zm-8.492-1.235c.901.51 1.836 1.012 2.873 1.33-.592.29-1.182.593-1.754.925a37.06 37.06 0 0 0-1.603.996c-1.045-.263-2.04-.779-2.963-1.298l3.447-1.953zm-4.208 6.052c.306.157.614.315.923.466.502.244 1.008.478 1.513.712.342.16.687.318 1.031.482-.878.758-1.787 1.34-3.015 2.05l-3.444-1.95c.965-.55 1.982-1.139 2.992-1.76zm3.766 1.802c.674.324 1.35.664 1.997 1.041.5.29.993.598 1.478.915-.982.83-2.04 1.502-3.035 2.078L9.506 24.19c1.192-.694 2.11-1.294 3.006-2.08l-.001-.001zm3.738 2.129c.395.26.786.522 1.17.78.533.36 1.065.716 1.605 1.066.227.144.457.288.688.43-1.02.622-2.042 1.21-3.006 1.757l-3.452-1.956c.986-.576 2.027-1.246 2.995-2.077zM20 26.693c1.01.62 2.025 1.207 2.985 1.753L20 30.139l-2.985-1.692c.962-.547 1.975-1.134 2.985-1.754zm.286-.178c.229-.143.46-.283.687-.43.54-.347 1.073-.706 1.605-1.065.385-.26.776-.52 1.172-.78.97.83 2.009 1.5 2.995 2.077l-3.452 1.956a112.097 112.097 0 0 1-3.007-1.758zm3.727-2.45c.486-.315.98-.625 1.478-.915.652-.373 1.319-.72 1.998-1.04.894.787 1.812 1.385 3.007 2.08l-3.446 1.954c-.994-.578-2.053-1.247-3.037-2.08v.001zm3.777-2.1c.343-.162.685-.322 1.023-.478.508-.233 1.014-.47 1.517-.713.31-.15.617-.308.923-.465 1.01.621 2.027 1.208 2.992 1.757L30.8 24.02c-1.205-.7-2.122-1.289-3.01-2.053v-.002zM20 13.584a94.01 94.01 0 0 1-2.983-1.63L20 10.26l2.984 1.69A89.36 89.36 0 0 1 20 13.583v.001z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#939BA8" fill-rule="evenodd" d="m0 20.2 20 11.333L40 20.2 20 8.867 0 20.2zm26.737-6.121c-.891.5-1.763.96-2.756 1.25-.073.02-.146.039-.22.057-.397-.188-.793-.374-1.186-.557a81.547 81.547 0 0 1-1.507-.71c-.245-.119-.487-.245-.733-.37a98.714 98.714 0 0 0 2.957-1.623l3.445 1.953zm3.755 2.129c-.924.518-1.918 1.035-2.961 1.298a35.637 35.637 0 0 0-1.605-.996 27.1 27.1 0 0 0-1.752-.925c1.037-.318 1.973-.82 2.873-1.33l3.445 1.953zm3.753 2.126a91.698 91.698 0 0 1-2.974 1.625c-.273-.168-.547-.336-.814-.51-.536-.344-1.065-.7-1.592-1.055-.332-.224-.669-.449-1.007-.672 1.063-.309 2.06-.84 2.943-1.34l3.444 1.952zm3.293 1.866-2.984 1.69a108.786 108.786 0 0 1-2.983-1.743c1.003-.53 1.997-1.076 2.982-1.639l2.985 1.692zm-32.09-1.692a98.34 98.34 0 0 0 2.982 1.639c-1.01.616-2.027 1.199-2.984 1.743L2.463 20.2l2.985-1.692zM9.2 16.383c.882.497 1.88 1.03 2.942 1.34-.339.224-.674.449-1.004.67-.529.356-1.058.713-1.593 1.058-.268.173-.542.342-.815.51-1.008-.523-2-1.075-2.974-1.626L9.2 16.383zm7.508-4.255c.966.547 1.954 1.1 2.956 1.624-.244.124-.487.25-.733.37-.5.242-1.003.476-1.508.71-.391.18-.787.366-1.183.555-.073-.02-.143-.035-.22-.059-.993-.29-1.866-.747-2.758-1.25l3.446-1.95zm9.061 4.642c.454.262.9.543 1.342.827a5.05 5.05 0 0 1-1.106.085c-.444-.014-.832-.047-1.21-.078a15.38 15.38 0 0 0-.956-.062 16.057 16.057 0 0 0-.505-.54c-.488-.494-.956-.893-1.491-1.169.207.018.412.03.623.03a5.37 5.37 0 0 0 1.26-.155c.69.33 1.38.676 2.043 1.062zm-9.494-1.064c.477.113.883.156 1.26.156.218 0 .428-.014.64-.032-.544.279-1.019.677-1.493 1.158-.178.18-.35.365-.52.554-.319.01-.637.03-.955.062-.377.031-.766.066-1.21.078a5.32 5.32 0 0 1-1.105-.085c.44-.284.887-.563 1.34-.826.66-.387 1.352-.733 2.043-1.065zm3.734-.003c1.358.012 2.193.587 3.1 1.509.108.108.212.223.316.335-.888.046-1.728.345-2.806 1.386-.214.208-.42.424-.62.642-.2-.218-.406-.434-.62-.642-1.078-1.041-1.918-1.339-2.808-1.384.11-.117.217-.236.329-.35.907-.919 1.743-1.488 3.109-1.496zm-6.004 2.28c.41-.015.82-.042 1.228-.08.23-.02.447-.038.655-.05-.342.4-.678.806-1.006 1.217-.194.24-.387.479-.582.716-.669.81-1.254 1.432-1.84 1.964-.383-.182-.766-.36-1.144-.536a87.688 87.688 0 0 1-1.509-.71c-.255-.124-.506-.255-.76-.382.223-.139.448-.276.666-.418.537-.347 1.07-.7 1.598-1.06.402-.27.811-.545 1.225-.815.48.108.972.17 1.468.154h.001zm.532 1.992c.197-.237.391-.478.585-.719.382-.472.773-.954 1.185-1.418.952-.003 1.742.232 2.857 1.308.218.21.426.431.631.656-.416.472-.812.957-1.197 1.435-.526.653-1.07 1.33-1.663 1.945-.229.238-.468.46-.712.675-.511-.333-1.03-.66-1.56-.967-.622-.36-1.266-.69-1.91-1a18.968 18.968 0 0 0 1.784-1.915zm2.621 3.415c.603-.625 1.151-1.306 1.68-1.966.374-.464.757-.934 1.161-1.392.402.458.787.928 1.16 1.392.531.66 1.08 1.341 1.68 1.966.217.225.443.436.673.64-.374.246-.744.495-1.108.738-.53.358-1.061.715-1.6 1.063-.265.171-.536.336-.805.503-.27-.167-.54-.332-.805-.503a82.344 82.344 0 0 1-1.6-1.063c-.364-.243-.734-.492-1.108-.738.23-.203.456-.413.672-.64zm5.906-.206c-.593-.615-1.136-1.29-1.662-1.945a39.25 39.25 0 0 0-1.198-1.435c.204-.225.414-.446.632-.657 1.114-1.076 1.905-1.31 2.857-1.307.41.462.802.944 1.182 1.414.197.244.394.488.594.73a19.38 19.38 0 0 0 1.777 1.906c-.645.312-1.29.64-1.911 1.001a35.08 35.08 0 0 0-1.56.968c-.245-.216-.482-.44-.71-.675h-.001zm2.643-3.39c-.2-.24-.396-.484-.594-.728a46.52 46.52 0 0 0-1.005-1.214c.209.013.425.03.658.05.363.032.774.067 1.226.081a5.73 5.73 0 0 0 1.467-.159c.415.272.826.546 1.228.818.53.358 1.06.715 1.598 1.06.22.143.445.28.666.418-.252.129-.505.26-.76.382-.502.244-1.007.477-1.512.712-.377.174-.757.352-1.138.533-.587-.532-1.172-1.153-1.834-1.953zm-4.262-4.304a15.1 15.1 0 0 0-1.268-.09h-.003c-.013 0-.024.005-.035.007-.044-.002-.082-.008-.127-.008h-.003c-.045 0-.087.006-.132.008a.171.171 0 0 0-.057-.007c-.49.01-.903.052-1.269.09-.622.063-1.146.117-1.83.002.278-.13.556-.26.832-.387.505-.235 1.011-.47 1.513-.713.313-.151.622-.31.931-.47a45.06 45.06 0 0 0 2.444 1.181c.276.128.555.257.833.389-.683.113-1.205.061-1.829-.002zm-8.492-1.235c.901.51 1.836 1.012 2.873 1.33-.592.29-1.182.593-1.754.925a37.06 37.06 0 0 0-1.603.996c-1.045-.263-2.04-.779-2.963-1.298l3.447-1.953zm-4.208 6.052c.306.157.614.315.923.466.502.244 1.008.478 1.513.712.342.16.687.318 1.031.482-.878.758-1.787 1.34-3.015 2.05l-3.444-1.95c.965-.55 1.982-1.139 2.992-1.76zm3.766 1.802c.674.324 1.35.664 1.997 1.041.5.29.993.598 1.478.915-.982.83-2.04 1.502-3.035 2.078L9.506 24.19c1.192-.694 2.11-1.294 3.006-2.08l-.001-.001zm3.738 2.129c.395.26.786.522 1.17.78.533.36 1.065.716 1.605 1.066.227.144.457.288.688.43-1.02.622-2.042 1.21-3.006 1.757l-3.452-1.956c.986-.576 2.027-1.246 2.995-2.077zM20 26.693c1.01.62 2.025 1.207 2.985 1.753L20 30.139l-2.985-1.692c.962-.547 1.975-1.134 2.985-1.754zm.286-.178c.229-.143.46-.283.687-.43.54-.347 1.073-.706 1.605-1.065.385-.26.776-.52 1.172-.78.97.83 2.009 1.5 2.995 2.077l-3.452 1.956a112.097 112.097 0 0 1-3.007-1.758zm3.727-2.45c.486-.315.98-.625 1.478-.915.652-.373 1.319-.72 1.998-1.04.894.787 1.812 1.385 3.007 2.08l-3.446 1.954c-.994-.578-2.053-1.247-3.037-2.08v.001zm3.777-2.1c.343-.162.685-.322 1.023-.478.508-.233 1.014-.47 1.517-.713.31-.15.617-.308.923-.465 1.01.621 2.027 1.208 2.992 1.757L30.8 24.02c-1.205-.7-2.122-1.289-3.01-2.053v-.002zM20 13.584a94.01 94.01 0 0 1-2.983-1.63L20 10.26l2.984 1.69A89.36 89.36 0 0 1 20 13.583v.001z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" d="M25.114 7l-3.325 5.717c.023.257.04.52.04.783-.001 3.376-2.003 6.289-4.897 7.642l-.052.021L10 33h23V7h-7.886zm-1.971 23.4H19.2l2.583-5.85h2.914l-1.554 5.85zM25.929 20h-2.704l1.751-4.55h2.166L25.929 20zm2.267-8.45h-1.715l1.262-3.25h1.314l-.86 3.25h-.001zM13.5 7c.879 0 1.72.17 2.523.513a6.501 6.501 0 0 1 2.079 1.385 6.501 6.501 0 0 1 1.385 2.079c.342.803.513 1.644.513 2.523 0 .879-.17 1.72-.513 2.523a6.501 6.501 0 0 1-1.385 2.079 6.501 6.501 0 0 1-2.079 1.385A6.383 6.383 0 0 1 13.5 20c-.879 0-1.72-.17-2.523-.513a6.501 6.501 0 0 1-2.079-1.385 6.501 6.501 0 0 1-1.385-2.079A6.383 6.383 0 0 1 7 13.5c0-.879.17-1.72.513-2.523a6.501 6.501 0 0 1 1.385-2.079 6.501 6.501 0 0 1 2.079-1.385A6.383 6.383 0 0 1 13.5 7zm0 1.69a4.74 4.74 0 0 0-2.416.642 4.724 4.724 0 0 0-1.752 1.752A4.74 4.74 0 0 0 8.69 13.5c0 .901.244 1.746.732 2.535l6.613-6.613A4.732 4.732 0 0 0 13.5 8.69zm4.112 2.343l-6.58 6.579a4.745 4.745 0 0 0 2.468.698 4.74 4.74 0 0 0 2.416-.642 4.724 4.724 0 0 0 1.752-1.752 4.74 4.74 0 0 0 .642-2.416c0-.864-.233-1.686-.698-2.467z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" d="m25.114 7-3.325 5.717c.023.257.04.52.04.783-.001 3.376-2.003 6.289-4.897 7.642l-.052.021L10 33h23V7h-7.886zm-1.971 23.4H19.2l2.583-5.85h2.914l-1.554 5.85zM25.929 20h-2.704l1.751-4.55h2.166L25.929 20zm2.267-8.45h-1.715l1.262-3.25h1.314l-.86 3.25h-.001zM13.5 7c.879 0 1.72.17 2.523.513a6.501 6.501 0 0 1 2.079 1.385 6.501 6.501 0 0 1 1.385 2.079c.342.803.513 1.644.513 2.523 0 .879-.17 1.72-.513 2.523a6.501 6.501 0 0 1-1.385 2.079 6.501 6.501 0 0 1-2.079 1.385A6.383 6.383 0 0 1 13.5 20c-.879 0-1.72-.17-2.523-.513a6.501 6.501 0 0 1-2.079-1.385 6.501 6.501 0 0 1-1.385-2.079A6.383 6.383 0 0 1 7 13.5c0-.879.17-1.72.513-2.523a6.501 6.501 0 0 1 1.385-2.079 6.501 6.501 0 0 1 2.079-1.385A6.383 6.383 0 0 1 13.5 7zm0 1.69a4.74 4.74 0 0 0-2.416.642 4.724 4.724 0 0 0-1.752 1.752A4.74 4.74 0 0 0 8.69 13.5c0 .901.244 1.746.732 2.535l6.613-6.613A4.732 4.732 0 0 0 13.5 8.69zm4.112 2.343-6.58 6.579a4.745 4.745 0 0 0 2.468.698 4.74 4.74 0 0 0 2.416-.642 4.724 4.724 0 0 0 1.752-1.752 4.74 4.74 0 0 0 .642-2.416c0-.864-.233-1.686-.698-2.467z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#A7AFBB" d="M25.114 7l-3.325 5.717c.023.257.04.52.04.783-.001 3.376-2.003 6.289-4.897 7.642l-.052.021L10 33h23V7h-7.886zm-1.971 23.4H19.2l2.583-5.85h2.914l-1.554 5.85zM25.929 20h-2.704l1.751-4.55h2.166L25.929 20zm2.267-8.45h-1.715l1.262-3.25h1.314l-.86 3.25h-.001zM13.5 7c.879 0 1.72.17 2.523.513a6.501 6.501 0 0 1 2.079 1.385 6.501 6.501 0 0 1 1.385 2.079c.342.803.513 1.644.513 2.523 0 .879-.17 1.72-.513 2.523a6.501 6.501 0 0 1-1.385 2.079 6.501 6.501 0 0 1-2.079 1.385A6.383 6.383 0 0 1 13.5 20c-.879 0-1.72-.17-2.523-.513a6.501 6.501 0 0 1-2.079-1.385 6.501 6.501 0 0 1-1.385-2.079A6.383 6.383 0 0 1 7 13.5c0-.879.17-1.72.513-2.523a6.501 6.501 0 0 1 1.385-2.079 6.501 6.501 0 0 1 2.079-1.385A6.383 6.383 0 0 1 13.5 7zm0 1.69a4.74 4.74 0 0 0-2.416.642 4.724 4.724 0 0 0-1.752 1.752A4.74 4.74 0 0 0 8.69 13.5c0 .901.244 1.746.732 2.535l6.613-6.613A4.732 4.732 0 0 0 13.5 8.69zm4.112 2.343l-6.58 6.579a4.745 4.745 0 0 0 2.468.698 4.74 4.74 0 0 0 2.416-.642 4.724 4.724 0 0 0 1.752-1.752 4.74 4.74 0 0 0 .642-2.416c0-.864-.233-1.686-.698-2.467z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#A7AFBB" d="m25.114 7-3.325 5.717c.023.257.04.52.04.783-.001 3.376-2.003 6.289-4.897 7.642l-.052.021L10 33h23V7h-7.886zm-1.971 23.4H19.2l2.583-5.85h2.914l-1.554 5.85zM25.929 20h-2.704l1.751-4.55h2.166L25.929 20zm2.267-8.45h-1.715l1.262-3.25h1.314l-.86 3.25h-.001zM13.5 7c.879 0 1.72.17 2.523.513a6.501 6.501 0 0 1 2.079 1.385 6.501 6.501 0 0 1 1.385 2.079c.342.803.513 1.644.513 2.523 0 .879-.17 1.72-.513 2.523a6.501 6.501 0 0 1-1.385 2.079 6.501 6.501 0 0 1-2.079 1.385A6.383 6.383 0 0 1 13.5 20c-.879 0-1.72-.17-2.523-.513a6.501 6.501 0 0 1-2.079-1.385 6.501 6.501 0 0 1-1.385-2.079A6.383 6.383 0 0 1 7 13.5c0-.879.17-1.72.513-2.523a6.501 6.501 0 0 1 1.385-2.079 6.501 6.501 0 0 1 2.079-1.385A6.383 6.383 0 0 1 13.5 7zm0 1.69a4.74 4.74 0 0 0-2.416.642 4.724 4.724 0 0 0-1.752 1.752A4.74 4.74 0 0 0 8.69 13.5c0 .901.244 1.746.732 2.535l6.613-6.613A4.732 4.732 0 0 0 13.5 8.69zm4.112 2.343-6.58 6.579a4.745 4.745 0 0 0 2.468.698 4.74 4.74 0 0 0 2.416-.642 4.724 4.724 0 0 0 1.752-1.752 4.74 4.74 0 0 0 .642-2.416c0-.864-.233-1.686-.698-2.467z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="40" height="40"><defs><path id="a" d="M14.466 22.299l3.235 3.231L8 32l6.466-9.701zM24.836 7l6.27 6.268h-.002L33 15.165l-1.97 1.966-1.893-1.893-3.61 3.61-1.71 10.6-13.265-13.265 10.6-1.71 3.61-3.61L22.87 8.97 24.835 7z"/></defs><use fill="#30B4C0" xlink:href="#a"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="40" height="40"><defs><path id="a" d="m14.466 22.299 3.235 3.231L8 32l6.466-9.701zM24.836 7l6.27 6.268h-.002L33 15.165l-1.97 1.966-1.893-1.893-3.61 3.61-1.71 10.6-13.265-13.265 10.6-1.71 3.61-3.61L22.87 8.97 24.835 7z"/></defs><use xlink:href="#a" fill="#30B4C0"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="40" height="40"><defs><path id="a" d="M14.466 22.299l3.235 3.231L8 32l6.466-9.701zM24.836 7l6.27 6.268h-.002L33 15.165l-1.97 1.966-1.893-1.893-3.61 3.61-1.71 10.6-13.265-13.265 10.6-1.71 3.61-3.61L22.87 8.97 24.835 7z"/></defs><use fill="#A7AFBB" xlink:href="#a"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="40" height="40"><defs><path id="a" d="m14.466 22.299 3.235 3.231L8 32l6.466-9.701zM24.836 7l6.27 6.268h-.002L33 15.165l-1.97 1.966-1.893-1.893-3.61 3.61-1.71 10.6-13.265-13.265 10.6-1.71 3.61-3.61L22.87 8.97 24.835 7z"/></defs><use xlink:href="#a" fill="#A7AFBB"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" fill-rule="evenodd" d="M12.528 9.322a5.362 5.362 0 0 1 6.872 6.872l10.032 10.032 2.101 2.102-3.2 3.2L16.274 19.37a5.362 5.362 0 0 1-6.95-6.85l3.785 3.786 3.202-3.201-1.474-1.474zm3.759 11.837l.948.948 1.263 1.264.948.947-7.19 7.19-3.159-3.16 7.19-7.189zM30.085 9.372l1.263 1.263-1.895 3.16-1.895.631-4.057 4.056-1.263-1.263 4.056-4.056.632-1.896 3.159-1.895z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#30B4C0" fill-rule="evenodd" d="M12.528 9.322a5.362 5.362 0 0 1 6.872 6.872l10.032 10.032 2.101 2.102-3.2 3.2L16.274 19.37a5.362 5.362 0 0 1-6.95-6.85l3.785 3.786 3.202-3.201-1.474-1.474zm3.759 11.837.948.948 1.263 1.264.948.947-7.19 7.19-3.159-3.16 7.19-7.189zM30.085 9.372l1.263 1.263-1.895 3.16-1.895.631-4.057 4.056-1.263-1.263 4.056-4.056.632-1.896 3.159-1.895z"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#A7AFBB" fill-rule="evenodd" d="M12.262 9.055a5.362 5.362 0 0 1 6.871 6.873c.016.015 3.36 3.358 10.032 10.031l2.102 2.102-3.201 3.2-12.057-12.158a5.362 5.362 0 0 1-6.951-6.85l3.785 3.787 3.202-3.202-1.474-1.474zm3.758 11.838l.948.947 1.264 1.264.947.948-7.19 7.19-3.158-3.16 7.19-7.19zM29.818 9.105l1.264 1.264-1.896 3.159-1.895.631-4.056 4.057-1.264-1.264 4.057-4.056.631-1.895 3.16-1.896z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path fill="#A7AFBB" fill-rule="evenodd" d="M12.262 9.055a5.362 5.362 0 0 1 6.871 6.873c.016.015 3.36 3.358 10.032 10.031l2.102 2.102-3.201 3.2-12.057-12.158a5.362 5.362 0 0 1-6.951-6.85l3.785 3.787 3.202-3.202-1.474-1.474zm3.758 11.838.948.947 1.264 1.264.947.948-7.19 7.19-3.158-3.16 7.19-7.19zM29.818 9.105l1.264 1.264-1.896 3.159-1.895.631-4.056 4.057-1.264-1.264 4.057-4.056.631-1.895 3.16-1.896z"/></svg>