@helpdice/ui 2.5.4 → 2.5.8

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 (141) hide show
  1. package/dist/auto-complete/index.js +1273 -404
  2. package/dist/avatar/index.js +88 -49
  3. package/dist/badge/index.js +69 -27
  4. package/dist/breadcrumbs/index.js +107 -56
  5. package/dist/button/button.icon.d.ts +3 -16
  6. package/dist/button/button.small.d.ts +3 -16
  7. package/dist/button/index.js +143 -157
  8. package/dist/button-dropdown/index.js +96 -83
  9. package/dist/button-group/index.js +61 -21
  10. package/dist/capacity/index.js +61 -22
  11. package/dist/card/index.js +147 -123
  12. package/dist/carousal/index.js +349 -330
  13. package/dist/checkbox/index.js +72 -67
  14. package/dist/circular-progress/CircularProgress.d.ts +17 -0
  15. package/dist/circular-progress/index.d.ts +3 -4
  16. package/dist/circular-progress/index.js +713 -336
  17. package/dist/circular-progress/useCircularProgress.d.ts +12 -0
  18. package/dist/code/index.js +70 -26
  19. package/dist/col/index.js +61 -24
  20. package/dist/collapse/index.js +102 -52
  21. package/dist/container/index.js +187 -190
  22. package/dist/copy-to-clipboard/index.js +158 -210
  23. package/dist/description/index.js +64 -23
  24. package/dist/display/index.js +64 -23
  25. package/dist/divider/index.js +62 -22
  26. package/dist/dot/index.js +63 -23
  27. package/dist/drawer/index.js +74 -61
  28. package/dist/fieldset/index.js +127 -63
  29. package/dist/form/index.js +15 -40
  30. package/dist/grid/index.js +74 -29
  31. package/dist/html-renderer/index.js +3 -2
  32. package/dist/image/index.js +163 -104
  33. package/dist/index.d.ts +2 -1
  34. package/dist/index.js +5240 -4755
  35. package/dist/input/index.js +1183 -277
  36. package/dist/keyboard/index.js +73 -29
  37. package/dist/linear-progress/index.js +27 -24
  38. package/dist/link/index.js +78 -36
  39. package/dist/list/index.js +118 -63
  40. package/dist/loadable/index.js +76 -27
  41. package/dist/loading/index.js +70 -29
  42. package/dist/menu/index.js +53 -47
  43. package/dist/modal/index.js +225 -178
  44. package/dist/note/index.js +64 -23
  45. package/dist/notetip/index.js +54 -45
  46. package/dist/notetip/note-tip.d.ts +2 -0
  47. package/dist/page/index.js +102 -51
  48. package/dist/pagination/index.js +181 -124
  49. package/dist/placeholder/index.js +554 -538
  50. package/dist/popover/index.js +94 -81
  51. package/dist/progress/index.js +66 -27
  52. package/dist/radio/index.js +94 -48
  53. package/dist/rating/index.js +78 -38
  54. package/dist/row/index.js +62 -25
  55. package/dist/search-bar/index.js +172 -162
  56. package/dist/select/index.js +1098 -163
  57. package/dist/select/select.d.ts +2 -0
  58. package/dist/slider/index.js +91 -47
  59. package/dist/snippet/index.js +39 -39
  60. package/dist/spacer/index.js +58 -19
  61. package/dist/spinner/index.js +69 -28
  62. package/dist/swipe/index.js +28 -13
  63. package/dist/table/index.js +4162 -3863
  64. package/dist/table/table-body.d.ts +4 -3
  65. package/dist/table/table-cell.d.ts +4 -2
  66. package/dist/table/table-types.d.ts +2 -0
  67. package/dist/table/table.d.ts +5 -1
  68. package/dist/tabs/index.js +61 -59
  69. package/dist/tag/index.js +16 -20
  70. package/dist/text/index.js +187 -184
  71. package/dist/text/text.d.ts +3 -0
  72. package/dist/textarea/index.js +916 -36
  73. package/dist/textarea/textarea.d.ts +3 -0
  74. package/dist/toggle/index.js +75 -33
  75. package/dist/tooltip/index.d.ts +1 -2
  76. package/dist/tooltip/index.js +59 -53
  77. package/dist/tooltip/tooltip-content.d.ts +1 -1
  78. package/dist/tooltip/tooltip-small.d.ts +2 -5
  79. package/dist/tooltip/tooltip.d.ts +2 -1
  80. package/dist/tree/index.js +176 -115
  81. package/dist/use-scale/index.js +50 -13
  82. package/dist/user/index.js +152 -100
  83. package/esm/avatar/avatar.js +8 -6
  84. package/esm/button/button.icon.d.ts +3 -16
  85. package/esm/button/button.icon.js +22 -22
  86. package/esm/button/button.js +5 -5
  87. package/esm/button/button.small.d.ts +3 -16
  88. package/esm/button/button.small.js +20 -23
  89. package/esm/circular-progress/CircularProgress.d.ts +17 -0
  90. package/esm/circular-progress/CircularProgress.js +110 -0
  91. package/esm/circular-progress/index.d.ts +3 -4
  92. package/esm/circular-progress/index.js +3 -4
  93. package/esm/circular-progress/useCircularProgress.d.ts +12 -0
  94. package/esm/circular-progress/useCircularProgress.js +35 -0
  95. package/esm/index.d.ts +2 -1
  96. package/esm/index.js +1 -1
  97. package/esm/input/input-field.js +11 -9
  98. package/esm/list/list-item.js +11 -11
  99. package/esm/notetip/note-tip.d.ts +2 -0
  100. package/esm/notetip/note-tip.js +8 -5
  101. package/esm/pagination/pagination-item.js +6 -6
  102. package/esm/select/select.d.ts +2 -0
  103. package/esm/select/select.js +15 -2
  104. package/esm/skeleton/index.js +9 -4
  105. package/esm/table/table-body.d.ts +4 -3
  106. package/esm/table/table-body.js +25 -15
  107. package/esm/table/table-cell.d.ts +4 -2
  108. package/esm/table/table-cell.js +19 -3
  109. package/esm/table/table-types.d.ts +2 -0
  110. package/esm/table/table.d.ts +5 -1
  111. package/esm/table/table.js +52 -25
  112. package/esm/text/text.d.ts +3 -0
  113. package/esm/text/text.js +9 -2
  114. package/esm/textarea/textarea.d.ts +3 -0
  115. package/esm/textarea/textarea.js +19 -2
  116. package/esm/tooltip/index.d.ts +1 -2
  117. package/esm/tooltip/tooltip-content.d.ts +1 -1
  118. package/esm/tooltip/tooltip-content.js +5 -5
  119. package/esm/tooltip/tooltip-small.d.ts +2 -5
  120. package/esm/tooltip/tooltip-small.js +0 -1
  121. package/esm/tooltip/tooltip.d.ts +2 -1
  122. package/esm/tooltip/tooltip.js +6 -5
  123. package/package.json +3 -3
  124. package/dist/circular-progress/CircularProgressbar.d.ts +0 -10
  125. package/dist/circular-progress/CircularProgressbarWithChildren.d.ts +0 -7
  126. package/dist/circular-progress/Path.d.ts +0 -9
  127. package/dist/circular-progress/buildStyles.d.ts +0 -12
  128. package/dist/circular-progress/constants.d.ts +0 -5
  129. package/dist/circular-progress/types.d.ts +0 -50
  130. package/esm/circular-progress/CircularProgressbar.d.ts +0 -10
  131. package/esm/circular-progress/CircularProgressbar.js +0 -118
  132. package/esm/circular-progress/CircularProgressbarWithChildren.d.ts +0 -7
  133. package/esm/circular-progress/CircularProgressbarWithChildren.js +0 -32
  134. package/esm/circular-progress/Path.d.ts +0 -9
  135. package/esm/circular-progress/Path.js +0 -52
  136. package/esm/circular-progress/buildStyles.d.ts +0 -12
  137. package/esm/circular-progress/buildStyles.js +0 -45
  138. package/esm/circular-progress/constants.d.ts +0 -5
  139. package/esm/circular-progress/constants.js +0 -5
  140. package/esm/circular-progress/types.d.ts +0 -50
  141. package/esm/circular-progress/types.js +0 -1
@@ -3,6 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var React = require('react');
6
+ var jsxRuntime = require('react/jsx-runtime');
6
7
  var theme = require('@helpdice/theme');
7
8
 
8
9
  function _arrayLikeToArray(r, a) {
@@ -69,15 +70,6 @@ function _defineProperty(e, r, t) {
69
70
  writable: true
70
71
  }) : e[r] = t, e;
71
72
  }
72
- function _extends() {
73
- return _extends = Object.assign ? Object.assign.bind() : function (n) {
74
- for (var e = 1; e < arguments.length; e++) {
75
- var t = arguments[e];
76
- for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
77
- }
78
- return n;
79
- }, _extends.apply(null, arguments);
80
- }
81
73
  function _iterableToArrayLimit(r, l) {
82
74
  var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
83
75
  if (null != t) {
@@ -179,304 +171,310 @@ function _unsupportedIterableToArray(r, a) {
179
171
 
180
172
  var Empty = function Empty(_ref) {
181
173
  _objectDestructuringEmpty(_ref);
182
- return /*#__PURE__*/React.createElement("svg", {
174
+ return /*#__PURE__*/jsxRuntime.jsxs("svg", {
183
175
  xmlns: "http://www.w3.org/2000/svg",
184
176
  width: "10em",
185
177
  height: "10em",
186
178
  "data-name": "Layer 1",
187
- viewBox: "0 0 1009.54 789.93"
188
- }, /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
189
- id: "07c62293-c0d3-4921-8e06-4e39241449cd",
190
- x1: "318.22",
191
- x2: "630.35",
192
- y1: "488.45",
193
- y2: "488.45",
194
- gradientUnits: "userSpaceOnUse"
195
- }, /*#__PURE__*/React.createElement("stop", {
196
- offset: "0",
197
- stopColor: "gray",
198
- stopOpacity: "0.25"
199
- }), /*#__PURE__*/React.createElement("stop", {
200
- offset: "0.54",
201
- stopColor: "gray",
202
- stopOpacity: "0.12"
203
- }), /*#__PURE__*/React.createElement("stop", {
204
- offset: "1",
205
- stopColor: "gray",
206
- stopOpacity: "0.1"
207
- }))), /*#__PURE__*/React.createElement("ellipse", {
208
- cx: "354.13",
209
- cy: "741.27",
210
- fill: "#1976d2",
211
- opacity: "0.1",
212
- rx: "176.1",
213
- ry: "33.36"
214
- }), /*#__PURE__*/React.createElement("path", {
215
- fill: "#1976d2",
216
- d: "M681.78 166.43c-64.72-2.24-126.36-23.14-185.22-46S379.4 72.25 316.23 60.14c-40.63-7.79-87.1-8.9-119.83 12.86-31.51 21-41.69 57.15-47.16 90.72-4.12 25.26-6.54 51.85 4.74 75.5 7.84 16.42 21.74 30.22 31.36 45.95 33.47 54.72 9.81 122.2-26.45 175.63-17 25.06-36.75 49-49.88 75.65s-19.2 57.29-7.71 84.55c11.38 27 38.51 47.24 67.9 61.49 59.69 28.95 130 37.23 198.61 41.93 151.83 10.38 304.46 5.89 456.69 1.38 56.34-1.66 112.92-3.35 168.34-12.06 30.78-4.84 62.55-12.52 84.9-31.06 28.36-23.53 35.39-63.37 16.38-92.87-31.88-49.5-120-61.79-142.31-114.9-12.26-29.24.33-61.8 18.16-88.91 38.24-58.17 102.33-109.2 105.7-175.68 2.32-45.66-28.49-91.39-76.13-113-49.93-22.65-119.18-19.8-156 17.69-37.95 38.56-104.61 53.41-161.76 51.42z",
217
- opacity: "0.1",
218
- transform: "translate(-95.23 -55.03)"
219
- }), /*#__PURE__*/React.createElement("path", {
220
- fill: "url(#07c62293-c0d3-4921-8e06-4e39241449cd)",
221
- d: "M630.35 416.77l-30.63-20.65 15.45-23-80.9-6.45-29.07 22.48-36.39-20.4-30.35 3.65-.36-8a225.78 225.78 0 00-2.51-24.9c.13-2.5.22-5.37.21-8.49 0-13.15-1.78-30.58-9.6-42.2l1.8-16.18-14.6-17.25a110.37 110.37 0 018-13.46c.5-.72 1-1.42 1.54-2.1 18.95-1.37 33.9-16.95 33.9-36 0-.88 0-1.76-.1-2.63 0-.35-.07-.71-.11-1.06 1.85 1 3.72 2 5.59 3 .35.5.75 1 1.19 1.59l.09.11.56.69.18.21c.2.24.41.47.62.71l.14.16c.53.59 1.09 1.19 1.69 1.78a1.8 1.8 0 01.2.19l.75.7.21.19c.64.57 1.32 1.12 2 1.64l.22.16.86.59.28.18c.33.2.67.41 1 .6l.12.07c.39.21.79.41 1.19.6l.2.08q.51.22 1 .42l.31.11c.35.12.69.23 1.05.33l.22.06c.44.11.88.2 1.33.27h.05a10.88 10.88 0 001.28.13h.29a11 11 0 001.15 0h.25a11.85 11.85 0 001.43-.17 15.78 15.78 0 006.3-2.26 5.5 5.5 0 001.28-1.19c2-2.62-.2-5.49-.2-5.49-.78-1.86-5.84-3.17-5.84-3.17s-16-6.68-16-12-4-32.92-45.29-39.23c0 0-26.86-1.51-34.41 12.87l-.16 1.68c-2.22 1.39-4.06 4.18-6.25 5a10.21 10.21 0 00-2.71 1v-.19a2.58 2.58 0 00-.61.79 8 8 0 00-.83 3 11.3 11.3 0 01-1.31 3.63 8.07 8.07 0 01-.6.92l-.17.27a7.3 7.3 0 003.4-.55 16.93 16.93 0 01-1 4 3.32 3.32 0 003.08-1.84v-.08l.13-.18a8.44 8.44 0 00.62-1.45l-.11.12c.2-.65.38-1.31.6-1.95a3.06 3.06 0 01.49-1 2.42 2.42 0 012.07-.69l-.41 8.67h.18a11.83 11.83 0 01-.88 1.82c-1.42 2.3-4 3.87-4.95 6.39a9.4 9.4 0 00-.46 3.78c0 .75.09 1.51.15 2.26v-.06c.14 2 .18 3.9-.9 5.51-.74 1.1-1.93 1.93-2.34 3.18a3.1 3.1 0 00-.15 1.08 12.13 12.13 0 00.68 3.21.14.14 0 000-.06 4.88 4.88 0 01.17 2.36c-.45 2-2.88 3.67-2.76 5.58a2.15 2.15 0 00.11.74 4.05 4.05 0 002.26 2 8.8 8.8 0 005.08 1.12 6.68 6.68 0 001.9-.65c-.7 1.61-1.42 3.2-2.15 4.71-.11.24-.23.48-.35.72 0 0-6.18-4.13-9.69 4.29a18.68 18.68 0 00-2.17 5.64 13.42 13.42 0 01-.74 2.32 14.93 14.93 0 01-6.68 6c-7.16 3.28-36.08 39.35-36.59 48.69a54.49 54.49 0 01-1.84 10.78 64.15 64.15 0 00-1.72 25.49 48.77 48.77 0 001.77 8.13c3.07 9.33 5.12 26.74 5.12 26.74l3.32 30.22a86 86 0 00.54 12.49c-3.39 3.87-17 20-11.8 24.39 4 3.46 11 2.89 14.93 2.18-3.31 8.19-8.52 22.43-9.21 32.21-1 14.47 1.71 33.64 6 41s18.59 26.24 18.59 26.24-.67 25.9 4.44 35.31 7.17 28.93 7.17 28.93 4.77 16.48 2.38 22.54 4.43 11.1-2.73 15.13-16.32 94.86-16.32 94.86-3.69 59.53 0 62.56a3.75 3.75 0 00.63.37v20s-2.56 4.2 7.85 5.05c7.13.57 27.34 1.86 39.33 2.61l9.29.58s22 4.38 31.72 0 26.95-4.28 24.39-15.85a32.92 32.92 0 00-1.36-4.63c-2.81-7.18-7.58-8-16.37-10-.51-.11-1-.21-1.45-.29-9.26-1.61-12.3 2.7-17.49-2.91-4.51-4.85-18.87-10.28-23.76-12 .12-.36.27-.71.39-1.08a7.32 7.32 0 01-3.71-1.81l13.25.84 7.89.49s18.7 3.73 27 0 22.9-3.63 20.72-13.46a28.21 28.21 0 00-1.15-3.94c-2.39-6.1-6.45-6.77-13.92-8.46-.43-.09-.83-.18-1.23-.25-7.87-1.37-10.45 2.29-14.86-2.47-3.78-4.06-15.71-8.61-20-10.16 0-2.22-3-5.38-4.89-8.55-2.22-3.7 1.88-16.65 1.88-16.65l2.34-53.73a10.38 10.38 0 012.8-.8s10.58-10.1 8.19-20.86a69.13 69.13 0 01-.76-9.83c3.48-3.23 8.27-8 9.63-10.94 2.22-4.79 0-28 0-28v-88.75l17.7 1.79 16.06 1.65 4.89.5 16.06 1.62 36.91 3.73 33.26-6.3 14.39-2.72 29.59-5.6v-72.4zM386.74 176.86l-2.06-.22c.68.03 1.4.16 2.06.22z",
222
- transform: "translate(-95.23 -55.03)"
223
- }), /*#__PURE__*/React.createElement("path", {
224
- fill: "#efb7b9",
225
- d: "M558.56 463.78c-10 14.31-45.95 6.73-45.95 6.73l-27.86-26.07-3.75-3.53 6.29-13.36s2 .55 5.43 1.53c18.01 5.23 74.28 22.67 65.84 34.7z",
226
- transform: "translate(-95.23 -55.03)"
227
- }), /*#__PURE__*/React.createElement("path", {
228
- d: "M492.7 429.08c-1.23 4.28-4.6 10.69-7.95 15.36l-3.75-3.53 6.29-13.36s2.02.55 5.41 1.53z",
229
- opacity: "0.1",
230
- transform: "translate(-95.23 -55.03)"
231
- }), /*#__PURE__*/React.createElement("path", {
232
- fill: "#dce6f2",
233
- d: "M397.15 278.42s-25.68 11.39-24.42 39.36a461.14 461.14 0 005.88 53.76s-5.25 42.09 16.61 52.94 42.09 19.77 42.09 19.77 34.2 3.68 38.45 5.2 17.53-21.72 15.08-25.34S457 412.9 453 406.86s-13.25-9.77-13.25-9.77-9.55-5.78-10.2-11 1.87-9.11 2.51-11.4 2.26-24.4 2.26-24.4 10.78-78.7-37.17-71.87z",
234
- transform: "translate(-95.23 -55.03)"
235
- }), /*#__PURE__*/React.createElement("path", {
236
- d: "M414.1 370.39s-35.23 5.9-31.82 18.23c0 0 12.79-13.31 31.82-18.23zM414.37 375.38S395 391.19 398.79 392s15.58-16.62 15.58-16.62zM423.68 380.89s-5.19 10.63-2 9.91 2-9.91 2-9.91z",
237
- opacity: "0.1",
238
- transform: "translate(-95.23 -55.03)"
239
- }), /*#__PURE__*/React.createElement("path", {
240
- d: "M494 430.21l-2.14-.61c.61-2 .78-3.62.28-4.37-2.45-3.62-33.82-11.2-37.81-17.25s-13.25-9.77-13.25-9.77-9.55-5.78-10.2-11 1.87-9.11 2.51-11.4 2.26-24.41 2.26-24.41 10.75-78.69-37.2-71.86c0 0-25.68 11.4-24.43 39.37a459.85 459.85 0 005.89 53.76s-5.25 42.09 16.61 52.94 42.09 19.77 42.09 19.77 34.19 3.67 38.45 5.2c1.61.58 4.52-2.41 7.37-6.52l1.62 1.51 27.86 26.06s35.95 7.59 45.95-6.72c8.45-12.04-47.81-29.48-65.86-34.7z",
241
- opacity: "0.1",
242
- transform: "translate(-95.23 -55.03)"
243
- }), /*#__PURE__*/React.createElement("path", {
244
- fill: "#965d7b",
245
- d: "M382.37 173.44a8.5 8.5 0 00-2.77 1.07c-1 .83-1 2.25-1.25 3.49a11.48 11.48 0 01-2 4.78 7.19 7.19 0 003.33-.55 17.14 17.14 0 01-1 4 3.24 3.24 0 003-1.83 19.26 19.26 0 001.25-3.51 2.89 2.89 0 01.48-1c.92-1.09 2.63-.6 4.05-.46a6.65 6.65 0 006.08-2.92c1.51-2.29 1.6-8.15-2-8.77-3.76-.62-6.1 4.56-9.17 5.7z",
246
- transform: "translate(-95.23 -55.03)"
247
- }), /*#__PURE__*/React.createElement("g", {
248
- opacity: "0.1"
249
- }, /*#__PURE__*/React.createElement("path", {
250
- d: "M379.5 175.74c.09-.49.15-1 .26-1.49-.95.83-1 2.24-1.25 3.49a11 11 0 01-.59 2.11 11.46 11.46 0 001.58-4.11zM379.82 184a16.63 16.63 0 001-4 7.16 7.16 0 01-3.17.55 11.57 11.57 0 01-1.15 2 7.12 7.12 0 003.32-.54 16.63 16.63 0 01-1 4 3.25 3.25 0 003-1.83 7.46 7.46 0 00.6-1.43 3 3 0 01-2.6 1.25zM388.6 177.2c-1.42-.14-3.14-.63-4.06.46a3.09 3.09 0 00-.48 1c-.09.26-.17.53-.24.8.95-.75 2.49-.35 3.78-.22a6.68 6.68 0 006.08-2.92 5.54 5.54 0 00.67-1.57 6.66 6.66 0 01-5.75 2.45z",
251
- transform: "translate(-95.23 -55.03)"
252
- })), /*#__PURE__*/React.createElement("path", {
253
- fill: "#dce6f2",
254
- d: "M317.24 201L332.49 219.34 330.5 237.85 312.07 209 317.24 201z"
255
- }), /*#__PURE__*/React.createElement("path", {
256
- d: "M332.48 219.34L330.61 236.75 330.49 237.85 313.86 211.81 312.07 209 312.59 208.19 317.23 201 318.26 202.24 332.48 219.34z",
257
- opacity: "0.1"
258
- }), /*#__PURE__*/React.createElement("path", {
259
- fill: "#efb7b9",
260
- d: "M435.63 231.2c-5.16 1.48-10.09 6.56-14.38 12.73a108.65 108.65 0 00-7.76 13.34c-1.41 2.82-2.65 5.53-3.68 7.89l-.72 1.68c-1.74 4.11-2.71 6.86-2.71 6.86s-39.5-29.7-33.25-31.7c2.1-.67 4.86-5.17 7.59-10.84l.34-.72c1.73-3.64 3.43-7.7 4.94-11.52 3.09-7.85 5.38-14.67 5.38-14.67s60 22.45 44.25 26.95z",
261
- transform: "translate(-95.23 -55.03)"
262
- }), /*#__PURE__*/React.createElement("path", {
263
- fill: "#444053",
264
- d: "M459.26 202.58s9.12 16.5 21.37 14.25 7.21-8.86 7.21-8.86z",
265
- transform: "translate(-95.23 -55.03)"
266
- }), /*#__PURE__*/React.createElement("path", {
267
- fill: "#a36468",
268
- d: "M441.59 773.73c-8.08 3.69-26.35 0-26.35 0l-7.7-.48c-10-.64-26.74-1.72-32.66-2.2-8.64-.71-6.52-4.25-6.52-4.25v-21.39l41.92-10.62s16.57 5.67 21.11 10.62c4.31 4.72 6.83 1.09 14.52 2.45.38.07.78.15 1.2.25 7.3 1.67 11.26 2.33 13.6 8.38a28.1 28.1 0 011.13 3.9c2.16 9.74-12.18 9.67-20.25 13.34z",
269
- transform: "translate(-95.23 -55.03)"
270
- }), /*#__PURE__*/React.createElement("path", {
271
- d: "M460.71 756.49a31.34 31.34 0 01-4.72 2.42c-5.5 2.51-10.73 5.57-16.29 7.94s-11.55 4.06-17.57 3.61c-3.15-.23-6.37-1-9.38-.1a21.66 21.66 0 00-5.21 2.89c-10-.64-26.74-1.72-32.66-2.2-8.64-.71-6.52-4.25-6.52-4.25v-2.5c.31 0 .66-.09 1.06-.12a18.88 18.88 0 016.1.91c4.34 1.18 8.66 2.34 13 3.5a10.27 10.27 0 015-6.38 15.94 15.94 0 018.06-1.85c6.73.09 13.1 3.28 19.82 3.6a10.92 10.92 0 005.49-.92c.92-.46 1.73-1.13 2.63-1.64a19.2 19.2 0 014.53-1.53 99.76 99.76 0 0012.95-4.18c1.2-.47 2.6-1.32 2.44-2.6-.21-1.7-2.88-1.9-3.58-3.46a2 2 0 01.08-1.77c.38.07.78.15 1.2.25 7.27 1.67 11.23 2.33 13.57 8.38z",
272
- opacity: "0.1",
273
- transform: "translate(-95.23 -55.03)"
274
- }), /*#__PURE__*/React.createElement("path", {
275
- fill: "#a36468",
276
- d: "M433.05 820.53c-9.5 4.34-31 0-31 0L393 820c-11.72-.75-31.46-2-38.43-2.59-10.17-.84-7.67-5-7.67-5V787.2l49.33-12.5s19.5 6.67 24.84 12.5c5.07 5.55 8 1.28 17.09 2.88.45.08.92.18 1.41.29 8.59 2 13.25 2.75 16 9.87a32.1 32.1 0 011.33 4.59c2.48 11.46-14.35 11.37-23.85 15.7z",
277
- transform: "translate(-95.23 -55.03)"
278
- }), /*#__PURE__*/React.createElement("path", {
279
- d: "M455.55 800.24a37.23 37.23 0 01-5.55 2.85c-6.47 2.95-12.63 6.55-19.17 9.34s-13.59 4.77-20.68 4.25c-3.7-.27-7.49-1.2-11-.12A25.5 25.5 0 00393 820c-11.72-.75-31.46-2-38.43-2.59-10.17-.84-7.67-5-7.67-5v-2.94a12.5 12.5 0 011.25-.14 21.94 21.94 0 017.18 1.07l15.29 4.12a12.1 12.1 0 015.93-7.51 18.66 18.66 0 019.49-2.18c7.92.11 15.41 3.86 23.32 4.24a12.91 12.91 0 006.44-1.07c1.09-.55 2-1.34 3.1-1.93a21.75 21.75 0 015.33-1.8 119.69 119.69 0 0015.16-4.92c1.41-.56 3.06-1.56 2.87-3.06-.25-2-3.39-2.24-4.22-4.08a2.41 2.41 0 01.1-2.08c.45.08.92.18 1.41.29 8.59 1.92 13.25 2.7 16 9.82z",
280
- opacity: "0.1",
281
- transform: "translate(-95.23 -55.03)"
282
- }), /*#__PURE__*/React.createElement("path", {
283
- fill: "#444053",
284
- d: "M411.55 647.54l-2.67 62.83s-4 12.83-1.83 16.5 5.83 7.33 4.5 9.5S394.22 762 389.05 753s-10.27-48-10.27-48l4.77-48.17zM423.13 491l7.42 9.92v86.28s2.17 23 0 27.75-13.17 14.25-13.17 14.25l-9.25-47.5 2-50.25z",
285
- transform: "translate(-95.23 -55.03)"
286
- }), /*#__PURE__*/React.createElement("path", {
287
- d: "M411.55 647.54l-2.67 62.83s-4 12.83-1.83 16.5 5.83 7.33 4.5 9.5S394.22 762 389.05 753s-10.27-48-10.27-48l4.77-48.17zM423.13 491l7.42 9.92v86.28s2.17 23 0 27.75-13.17 14.25-13.17 14.25l-9.25-47.5 2-50.25z",
288
- opacity: "0.1",
289
- transform: "translate(-95.23 -55.03)"
290
- }), /*#__PURE__*/React.createElement("path", {
291
- fill: "#444053",
292
- d: "M430.55 454.2v46.67l-8.33 36.33s-2.67 87.67-.34 98.33-8 20.67-8 20.67-6 .67-6 5.33-10 18-10 18l.33 26s4.34 48.67-2.33 58 2.33 10.67 2.33 10.67c-8.33 27.33-48.33 21-51.94 18s0-62 0-62 8.94-90 15.94-94 .34-9 2.67-15-2.33-22.33-2.33-22.33-2-19.34-7-28.67-4.34-35-4.34-35-14-18.67-18.16-26-6.84-26.33-5.84-40.67c.68-9.69 5.77-23.8 9-31.92 1.55-3.89 2.67-6.41 2.67-6.41l.95.25 54.62 14.3z",
293
- transform: "translate(-95.23 -55.03)"
294
- }), /*#__PURE__*/React.createElement("path", {
295
- d: "M435.63 231.2c-5.16 1.48-10.09 6.56-14.38 12.73h-1.12a35.72 35.72 0 01-31-17.93 35.18 35.18 0 01-3.14-7.15c3.09-7.85 5.38-14.67 5.38-14.67s60.01 22.52 44.26 27.02z",
296
- opacity: "0.1",
297
- transform: "translate(-95.23 -55.03)"
298
- }), /*#__PURE__*/React.createElement("path", {
299
- fill: "#efb7b9",
300
- d: "M455.88 206.2A35.75 35.75 0 11389 188.68a34.93 34.93 0 013.78-5.46A36.18 36.18 0 01401 176a35.75 35.75 0 0154.83 27.58c.02.88.05 1.75.05 2.62z",
301
- transform: "translate(-95.23 -55.03)"
302
- }), /*#__PURE__*/React.createElement("path", {
303
- d: "M425.84 291.78l-.12 1.1-16.63-26c-1.74 4.11-2.71 6.86-2.71 6.86S366.88 244 373.13 242c2.1-.67 4.86-5.17 7.59-10.84l.34-.72c2.9 8.64 19.75 25.91 26.76 32.83.81.8 1.48 1.46 2 1.94l1.07 1 .56.56c2.55 2.63 13.31 14.23 14.39 25.01z",
304
- opacity: "0.1",
305
- transform: "translate(-95.23 -55.03)"
306
- }), /*#__PURE__*/React.createElement("path", {
307
- fill: "#dce6f2",
308
- d: "M438.27 380l-1.82 58.57-.32 10.43s-21.56-2-41.68-4.2c-16.2-1.77-31.47-3.68-33.82-4.8-3-1.41-9.43-2.5-14.5-3.19-3.92-.53-7-.81-7-.81s-1.15.34-2.92.66c-3.86.7-10.64 1.27-14.59-2.16-5.05-4.39 8.22-20.34 11.53-24.17l.73-.83-1.25-11.55-3.25-29.95s-2-17.25-5-26.5a48.88 48.88 0 01-1.73-8.05 64.48 64.48 0 011.68-25.26 55.08 55.08 0 001.8-10.69c.5-9.25 28.75-45 35.75-48.25a14.84 14.84 0 007.16-7.14 13.64 13.64 0 001.09-3.11c3-13 10.59-7.84 10.59-7.84 1.83 10.17 30.16 37.09 30.16 37.09l.56.56c2.81 2.88 15.33 16.4 14.44 27.94a33.87 33.87 0 001.89 12.64 213.75 213.75 0 019.85 56z",
309
- transform: "translate(-95.23 -55.03)"
310
- }), /*#__PURE__*/React.createElement("path", {
311
- d: "M398.13 310.45s-7 17-12.25 19.75 14.75 5.8 12.25-19.75zM403.38 342.2s-16 2-16 5 16-5 16-5zM420.13 361.7s-23.25 49.5-29.75 51 29.75-51 29.75-51zM410.44 270.76l-19.23 8.36L368 244.06a13.64 13.64 0 001.09-3.11c3-13 10.59-7.84 10.59-7.84 1.83 10.17 30.16 37.09 30.16 37.09z",
312
- opacity: "0.1",
313
- transform: "translate(-95.23 -55.03)"
314
- }), /*#__PURE__*/React.createElement("path", {
315
- fill: "#dce6f2",
316
- d: "M411.44 268.76l-19.23 8.36L369 242.06a13.64 13.64 0 001.09-3.11c3-13 10.59-7.84 10.59-7.84 1.83 10.17 30.16 37.09 30.16 37.09z",
317
- transform: "translate(-95.23 -55.03)"
318
- }), /*#__PURE__*/React.createElement("path", {
319
- d: "M436.13 449s-21.56-2-41.68-4.2l36.1 9.45v11c-1.58 1.43-2.95 2.17-3.84 1.79-4.16-1.75-38.11-7.25-38.11-7.25s-19.72-10-41-22a16.43 16.43 0 01-1.5-.94 23.64 23.64 0 01-6.3-6.31c-3.93-5.69-5.85-13-6.68-20.17a87.22 87.22 0 01-.52-12.38 101.51 101.51 0 011.28-13.99 460.08 460.08 0 01-3-54c.25-28 26.5-38 26.5-38 48.25-4.25 33.29 73.75 33.29 73.75s-2.79 22-3.55 24.25-3.49 6-3.12 11.25 9.59 11.53 9.59 11.53 9 4.22 12.71 10.47c2.7 4.61 20.24 10.86 30.15 15.32zM452.29 184a11.32 11.32 0 01-1 4.78 29.55 29.55 0 01-1.78 3.56 16.4 16.4 0 01-4.38 5.44c-2.31 1.65-5.23 2.11-8 2.78s-5.65 1.74-7.23 4.1a14.34 14.34 0 00-1.69 4.9 10.54 10.54 0 01-2 4.74 3.93 3.93 0 01-4.68 1.12 4.73 4.73 0 01-1.81-2.33c-1.14-2.57-1.43-5.42-1.89-8.19s-1.11-5.62-2.81-7.85-4.71-3.7-7.38-2.83a7.11 7.11 0 00-4 3.88 22.24 22.24 0 00-1.51 5.52q-1.86 10.18-4.39 20.24a1.86 1.86 0 01-.33.76 1.44 1.44 0 01-1 .42c-2.24.3-4.39-1.27-6.65-1.1a3.82 3.82 0 00-.69.11 35.73 35.73 0 013.61-40.8l.18-.05a10.78 10.78 0 004-2.52 42.22 42.22 0 004-4.63l.8-1a45.61 45.61 0 017.8-7.41 8 8 0 012.66-1.44 7.88 7.88 0 012.52-.08 63.57 63.57 0 0010.41.39 66.79 66.79 0 017.31-.74c6.33.18 11.73 4.65 15.73 9.55 2.15 2.51 4.07 5.4 4.2 8.68z",
320
- opacity: "0.1",
321
- transform: "translate(-95.23 -55.03)"
322
- }), /*#__PURE__*/React.createElement("path", {
323
- fill: "#965d7b",
324
- d: "M384.33 189.63c-1.39 2.28-3.9 3.83-4.84 6.33-1.38 3.63.95 8.15-1.19 11.39-.71 1.09-1.88 1.9-2.28 3.15-.68 2.11 1.18 4.36.7 6.53s-3.34 4-2.58 6.12a4 4 0 002.2 2 8.6 8.6 0 005 1.11c2.73-.45 4.76-3.13 7.53-3.33 2.25-.16 4.4 1.4 6.64 1.11a1.5 1.5 0 001-.43 1.73 1.73 0 00.33-.76q2.52-10.05 4.4-20.24a21.8 21.8 0 011.5-5.52 7.17 7.17 0 014-3.88c2.67-.86 5.67.6 7.38 2.83s2.36 5.08 2.82 7.85.75 5.62 1.88 8.19a4.78 4.78 0 001.82 2.34c1.5.87 3.52.18 4.67-1.12a10.43 10.43 0 002-4.75 14.28 14.28 0 011.69-4.89c1.58-2.36 4.47-3.43 7.23-4.1s5.67-1.14 8-2.79a16.46 16.46 0 004.38-5.43c1.48-2.58 2.86-5.38 2.74-8.35-.13-3.24-2.05-6.13-4.1-8.65-4-4.9-9.41-9.37-15.74-9.54a62.2 62.2 0 00-7.31.74 62.57 62.57 0 01-10.41-.4 8.18 8.18 0 00-2.52.09 7.54 7.54 0 00-2.65 1.44 45.63 45.63 0 00-7.81 7.4 57.31 57.31 0 01-4.82 5.6 10.85 10.85 0 01-4 2.53c-1 .28-2 .08-2.95.39-2.95.93-3.34 4.78-4.71 7.04z",
325
- transform: "translate(-95.23 -55.03)"
326
- }), /*#__PURE__*/React.createElement("path", {
327
- d: "M480.63 216.82c-8 1.47-14.63-5-18.3-9.72a39.22 39.22 0 01-3.07-4.52l27.46 5.18 1.11.21s5.05 6.61-7.2 8.85z",
328
- opacity: "0.1",
329
- transform: "translate(-95.23 -55.03)"
330
- }), /*#__PURE__*/React.createElement("g", {
331
- opacity: "0.1"
332
- }, /*#__PURE__*/React.createElement("path", {
333
- d: "M376.72 214.17a8.33 8.33 0 00-.58-3.84c0 .1-.09.2-.12.3-.43 1.34.15 2.73.52 4.12a3 3 0 00.18-.58zM379.1 197.8a22.22 22.22 0 00.08 4.15 22.28 22.28 0 00-.08-4.15zM448.55 188.45a16.4 16.4 0 01-4.38 5.44c-2.31 1.65-5.22 2.11-8 2.78s-5.65 1.74-7.23 4.1a14.41 14.41 0 00-1.69 4.9 10.47 10.47 0 01-2 4.75c-1.15 1.3-3.17 2-4.67 1.12a4.78 4.78 0 01-1.82-2.34c-1.13-2.57-1.43-5.41-1.88-8.19s-1.12-5.62-2.82-7.85-4.71-3.7-7.38-2.83a7.14 7.14 0 00-4 3.88 21.8 21.8 0 00-1.5 5.52q-1.87 10.19-4.4 20.24a1.73 1.73 0 01-.33.76 1.5 1.5 0 01-1 .43c-2.24.29-4.39-1.27-6.64-1.11-2.77.2-4.8 2.88-7.53 3.32a8.45 8.45 0 01-5-1.11 5.35 5.35 0 01-1.83-1.3 2.7 2.7 0 00-.37 2.33 3.9 3.9 0 002.2 2 8.45 8.45 0 005 1.11c2.73-.44 4.76-3.12 7.53-3.32 2.25-.16 4.4 1.4 6.64 1.11a1.5 1.5 0 001-.43 1.73 1.73 0 00.33-.76q2.52-10 4.4-20.24a21.8 21.8 0 011.5-5.52 7.14 7.14 0 014-3.88c2.67-.87 5.67.6 7.38 2.83s2.36 5.08 2.82 7.85.75 5.62 1.88 8.19a4.78 4.78 0 001.82 2.34c1.5.87 3.52.18 4.67-1.12a10.47 10.47 0 002-4.75 14.41 14.41 0 011.69-4.9c1.58-2.36 4.47-3.42 7.23-4.1s5.67-1.13 8-2.78a16.4 16.4 0 004.38-5.44c1.48-2.57 2.86-5.37 2.74-8.34a10.74 10.74 0 00-.12-1.14 19.65 19.65 0 01-2.62 6.45z",
334
- transform: "translate(-95.23 -55.03)"
335
- })), /*#__PURE__*/React.createElement("path", {
336
- d: "M451.33 188.75a35.33 35.33 0 014.45 14.85c-8.91-5-17.29-10.49-21.52-12.4-7.37-3.33-34.93-2.83-45.29-2.52a34.93 34.93 0 013.78-5.46A36.18 36.18 0 01401 176a35.77 35.77 0 0150.38 12.73zM483.13 212.58c-4.81 1.48-12.66-1.38-20.8-5.48a39.22 39.22 0 01-3.07-4.52l27.46 5.18c1.82 1.24 2.28 3.01-3.59 4.82z",
337
- opacity: "0.1",
338
- transform: "translate(-95.23 -55.03)"
339
- }), /*#__PURE__*/React.createElement("path", {
340
- fill: "#444053",
341
- d: "M422.26 154.08s-26.25-1.5-33.63 12.75l-1.19 12.63-2-.22-.4 8.59s40.12-1.75 49.25 2.37 37.5 24.88 48.87 21.38-1-6.75-1-6.75-15.65-6.63-15.65-11.83-3.88-32.67-44.25-38.92z",
342
- transform: "translate(-95.23 -55.03)"
343
- }), /*#__PURE__*/React.createElement("path", {
344
- d: "M371.63 622.28s16.75 16.25 24 15c0 0-20.5-1.75-24-15zM368.13 629.81s1.5 8.36 5.5 7.54-5.5-7.54-5.5-7.54zM394.38 769.53s-23.78 18.5-19.77 19 19.77-19 19.77-19z",
345
- opacity: "0.1",
346
- transform: "translate(-95.23 -55.03)"
347
- }), /*#__PURE__*/React.createElement("path", {
348
- fill: "#1976d2",
349
- d: "M330.96 347.33L407.96 334.8 407.96 407.7 334.8 403.87 330.96 347.33z"
350
- }), /*#__PURE__*/React.createElement("path", {
351
- d: "M330.96 347.33L407.96 334.8 407.96 407.7 334.8 403.87 330.96 347.33z",
352
- opacity: "0.05"
353
- }), /*#__PURE__*/React.createElement("path", {
354
- fill: "#1976d2",
355
- d: "M407.96 334.8L500.3 341.71 495.19 405.15 407.96 407.7 407.96 334.8z"
356
- }), /*#__PURE__*/React.createElement("path", {
357
- d: "M407.96 334.8L500.3 341.71 495.19 405.15 407.96 407.7 407.96 334.8z",
358
- opacity: "0.1"
359
- }), /*#__PURE__*/React.createElement("path", {
360
- fill: "#1976d2",
361
- d: "M436.35 312.55L407.96 334.8 500.3 341.71 515.39 318.94 436.35 312.55z"
362
- }), /*#__PURE__*/React.createElement("path", {
363
- fill: "#1976d2",
364
- d: "M303.08 323.03L372.4 314.59 407.96 334.8 330.96 347.33 303.08 323.03z"
365
- }), /*#__PURE__*/React.createElement("path", {
366
- fill: "#1976d2",
367
- d: "M424.84 353.73L424.84 453.4 388.77 449.7 373.08 448.1 368.3 447.6 352.62 445.99 330.96 443.77 330.96 347.33 407.95 352.57 424.84 353.73z"
368
- }), /*#__PURE__*/React.createElement("path", {
369
- fill: "#1976d2",
370
- d: "M500.3 341.71L500.3 438.91 471.39 444.46 457.33 447.16 424.84 453.4 424.84 353.73 500.3 341.71z"
371
- }), /*#__PURE__*/React.createElement("path", {
372
- d: "M500.3 341.71L500.3 438.91 471.39 444.46 457.33 447.16 424.84 453.4 424.84 353.73 500.3 341.71z",
373
- opacity: "0.05"
374
- }), /*#__PURE__*/React.createElement("path", {
375
- fill: "#1976d2",
376
- d: "M303.08 368.31L330.96 347.33 424.84 353.73 411.02 377.01 303.08 368.31z"
377
- }), /*#__PURE__*/React.createElement("path", {
378
- fill: "#fff",
379
- d: "M303.08 368.31L330.96 347.33 424.84 353.73 411.02 377.01 303.08 368.31z",
380
- opacity: "0.1"
381
- }), /*#__PURE__*/React.createElement("path", {
382
- fill: "#1976d2",
383
- d: "M500.3 341.71L424.84 353.73 449.4 375.73 530.23 362.17 500.3 341.71z"
384
- }), /*#__PURE__*/React.createElement("path", {
385
- fill: "#fff",
386
- d: "M500.3 341.71L424.84 353.73 449.4 375.73 530.23 362.17 500.3 341.71z",
387
- opacity: "0.1"
388
- }), /*#__PURE__*/React.createElement("path", {
389
- fill: "#fff",
390
- d: "M471.39 444.46L457.33 447.16 457.33 426.39 470.5 423.07 471.39 444.46z",
391
- opacity: "0.1"
392
- }), /*#__PURE__*/React.createElement("path", {
393
- fill: "#fff",
394
- d: "M388.77 435.96L388.77 449.7 373.08 448.1 373.08 435.96 388.77 435.96z",
395
- opacity: "0.1"
396
- }), /*#__PURE__*/React.createElement("path", {
397
- fill: "#fff",
398
- d: "M368.3 440.29L368.3 447.6 352.62 445.99 352.62 440.29 368.3 440.29z",
399
- opacity: "0.1"
400
- }), /*#__PURE__*/React.createElement("path", {
401
- d: "M510.63 483.7c-10.75 13.75-46.25 4.25-46.25 4.25L438 460.43l-3.58-3.73 7-13s2 .66 5.34 1.82c17.68 6.18 72.92 26.61 63.87 38.18z",
402
- opacity: "0.1",
403
- transform: "translate(-95.23 -55.03)"
404
- }), /*#__PURE__*/React.createElement("path", {
405
- fill: "#efb7b9",
406
- d: "M509.63 481.7c-10.75 13.75-46.25 4.25-46.25 4.25L437 458.43l-3.58-3.73 7-13s2 .66 5.34 1.82c17.68 6.18 72.92 26.61 63.87 38.18z",
407
- transform: "translate(-95.23 -55.03)"
408
- }), /*#__PURE__*/React.createElement("path", {
409
- d: "M445.72 443.52c-1.46 4.2-5.17 10.42-8.76 14.91l-3.58-3.73 7-13s2.01.66 5.34 1.82z",
410
- opacity: "0.1",
411
- transform: "translate(-95.23 -55.03)"
412
- }), /*#__PURE__*/React.createElement("path", {
413
- fill: "#dce6f2",
414
- d: "M358.38 288s-26.25 10-26.5 38a460.08 460.08 0 003 54s-7.5 41.75 13.75 53.75 41 22 41 22 33.95 5.5 38.12 7.25 18.66-20.75 16.41-24.5-33.16-13-36.83-19.25-12.71-10.46-12.71-10.46-9.22-6.29-9.59-11.54 2.35-9 3.12-11.25 3.56-24.25 3.56-24.25 14.92-78.05-33.33-73.75z",
415
- transform: "translate(-95.23 -55.03)"
416
- }), /*#__PURE__*/React.createElement("path", {
417
- d: "M370.38 380.7s-35.5 4-32.75 16.5c0 0 13.49-12.61 32.75-16.5zM370.38 385.7s-20.15 14.75-16.45 15.75 16.45-15.75 16.45-15.75zM379.38 391.7s-5.75 10.34-2.5 9.8 2.5-9.8 2.5-9.8z",
418
- opacity: "0.1",
419
- transform: "translate(-95.23 -55.03)"
420
- }), /*#__PURE__*/React.createElement("path", {
421
- fill: "#1976d2",
422
- d: "M749 167.42s-38-2.29-33.56 24.37c0 0-.89 4.71 3.38 6.85 0 0 .07-2 3.9-1.31a17.51 17.51 0 004.13.2 8.57 8.57 0 005.06-2.09s10.69-4.41 14.85-21.89c0 0 3.08-3.82 3-4.8l-6.42 2.75s2.19 4.63.46 8.48c0 0-.2-8.31-1.44-8.12-.25 0-3.33 1.61-3.33 1.61s3.77 8.06.92 13.93c0 0 1.08-9.94-2.1-13.35l-4.52 2.64s4.41 8.33 1.42 15.13c0 0 .77-10.43-2.37-14.49l-4.1 3.19s4.15 8.22 1.62 13.86c0 0-.33-12.14-2.51-13.06 0 0-3.58 3.16-4.12 4.46 0 0 2.83 6 1.07 9.11 0 0-1.08-8.09-2-8.13 0 0-3.57 5.36-3.94 9a19.46 19.46 0 013.07-9.54 10.71 10.71 0 00-5.46 2.83s.55-3.79 6.34-4.12c0 0 3-4.07 3.74-4.32 0 0-5.76-.48-9.25 1.07 0 0 3.07-3.57 10.31-2l4-3.3s-7.58-1-10.8.11c0 0 3.7-3.16 11.89-.86l4.4-2.63s-6.46-1.4-10.31-.89c0 0 4.06-2.19 11.6.18l3.15-1.41s-4.74-.93-6.12-1.08-1.46-.53-1.46-.53a16.36 16.36 0 018.89 1s6.75-2.43 6.61-2.85z",
423
- transform: "translate(-95.23 -55.03)"
424
- }), /*#__PURE__*/React.createElement("path", {
425
- fill: "#1976d2",
426
- d: "M864.46 300.76s-38-2.29-33.56 24.37c0 0-.89 4.71 3.38 6.85 0 0 .07-2 3.91-1.31a17.51 17.51 0 004.13.2 8.56 8.56 0 005-2.08s10.7-4.42 14.86-21.9c0 0 3.07-3.81 2.95-4.79l-6.42 2.74s2.19 4.63.47 8.48c0 0-.21-8.31-1.44-8.12-.25 0-3.34 1.61-3.34 1.61s3.78 8.07.93 13.93c0 0 1.08-9.94-2.11-13.35l-4.47 2.61s4.41 8.33 1.42 15.13c0 0 .77-10.43-2.37-14.49l-4.09 3.2s4.14 8.21 1.62 13.85c0 0-.33-12.14-2.51-13.06 0 0-3.58 3.16-4.13 4.46 0 0 2.84 6 1.08 9.11 0 0-1.08-8.09-2-8.13 0 0-3.57 5.36-3.94 9a19.52 19.52 0 013.08-9.54 10.76 10.76 0 00-5.47 2.83s.56-3.79 6.35-4.12c0 0 2.95-4.07 3.74-4.32 0 0-5.76-.48-9.25 1.07 0 0 3.07-3.57 10.3-1.95l4-3.3s-7.59-1-10.8.11c0 0 3.7-3.16 11.89-.86l4.4-2.63s-6.47-1.39-10.32-.89c0 0 4.07-2.19 11.61.18l3.15-1.41s-4.74-.93-6.13-1.08-1.46-.53-1.46-.53a16.39 16.39 0 018.9 1s6.76-2.45 6.64-2.87zM633.61 277.09s8.75-37.09-18.29-37.22c0 0-4.49-1.68-7.32 2.16 0 0 1.93.41.62 4.07a17.8 17.8 0 00-.9 4 8.59 8.59 0 001.19 5.33s2.53 11.3 19 18.38c0 0 3.24 3.68 4.22 3.72l-1.6-6.79s-4.94 1.37-8.44-1c0 0 8.23 1.21 8.24 0 0-.25-1-3.56-1-3.56s-8.59 2.34-13.89-1.47c0 0 9.61 2.76 13.52.21l-1.8-4.92s-9 2.93-15.16-1.18c0 0 10.15 2.54 14.69.14l-2.45-4.58s-8.8 2.68-13.93-.77c0 0 12 1.74 13.3-.24 0 0-2.5-4.07-3.69-4.83 0 0-6.36 1.78-9.16-.49 0 0 8.15.31 8.34-.55 0 0-4.67-4.43-8.23-5.43a19.6 19.6 0 018.89 4.66 10.79 10.79 0 00-1.86-5.87s3.64 1.2 3 7c0 0 3.5 3.6 3.61 4.42 0 0 1.45-5.59.52-9.3 0 0 3 3.64.17 10.49l2.56 4.55s2.32-7.3 1.73-10.66c0 0 2.49 4.18-1.18 11.86l1.85 4.79s2.47-6.14 2.63-10c0 0 1.47 4.38-2.16 11.41l.86 3.34s1.72-4.51 2.1-5.85.77-1.35.77-1.35a16.38 16.38 0 01-2.49 8.6s1.31 6.98 1.74 6.93zM550.39 289.73s-30.52-22.83-41.43 1.9c0 0-3.33 3.45-.94 7.58 0 0 1.14-1.61 4 1.06a17.51 17.51 0 003.34 2.44 8.58 8.58 0 005.37 1s11.36 2.19 24.44-10.12c0 0 4.67-1.5 5.11-2.38l-6.89-1.21s-.72 5.07-4.27 7.34c0 0 4.39-7.06 3.25-7.57-.23-.11-3.67-.5-3.67-.5s-1.28 8.82-6.88 12.15c0 0 6.37-7.71 5.58-12.31l-5.23-.28s-.89 9.39-7.13 13.43c0 0 6.37-8.29 6-13.41l-5.18.42s-1.05 9.13-6.26 12.45c0 0 6.39-10.32 5.08-12.28 0 0-4.73.67-5.9 1.45 0 0-.91 6.54-4.11 8.2 0 0 3.55-7.35 2.83-7.86 0 0-5.93 2.51-8.26 5.37a19.53 19.53 0 017.82-6.28 10.77 10.77 0 00-6.12-.64s2.54-2.86 7.56.05c0 0 4.7-1.77 5.5-1.55 0 0-4.55-3.57-8.32-4.19 0 0 4.54-1.3 9.69 4l5.19-.53s-5.77-5-9.08-5.84c0 0 4.83-.61 10.4 5.81l5.12.23s-4.63-4.72-8.12-6.42c0 0 4.59.4 9.59 6.53l3.41.55s-3.45-3.38-4.53-4.26-.93-1.25-.93-1.25a16.43 16.43 0 016.89 5.72s6.95 1.61 7.08 1.2zM652 77.62s-30.52-22.84-41.43 1.9c0 0-3.33 3.45-.94 7.58 0 0 1.14-1.61 4 1.06a17.79 17.79 0 003.35 2.43 8.57 8.57 0 005.37 1s11.36 2.19 24.44-10.13c0 0 4.67-1.49 5.1-2.38L645 77.89s-.71 5.07-4.27 7.34c0 0 4.4-7.06 3.26-7.57-.23-.11-3.67-.5-3.67-.5S639 86 633.4 89.31c0 0 6.36-7.71 5.58-12.31l-5.23-.28s-.9 9.39-7.13 13.42c0 0 6.37-8.29 6-13.41l-5.17.42s-1.06 9.14-6.27 12.46c0 0 6.4-10.32 5.09-12.28 0 0-4.73.67-5.9 1.45 0 0-.91 6.54-4.11 8.2 0 0 3.55-7.35 2.83-7.87 0 0-5.93 2.52-8.26 5.38a19.44 19.44 0 017.82-6.28 10.7 10.7 0 00-6.13-.64s2.55-2.86 7.57.05c0 0 4.7-1.78 5.5-1.55 0 0-4.55-3.57-8.32-4.2 0 0 4.53-1.29 9.68 4l5.19-.53s-5.76-5-9.08-5.85c0 0 4.83-.6 10.41 5.82l5.12.22s-4.63-4.72-8.13-6.41c0 0 4.6.4 9.6 6.53l3.4.55s-3.46-3.34-4.54-4.2-.93-1.24-.93-1.24a16.4 16.4 0 016.89 5.72s6.95 1.52 7.12 1.14zM768.62 106.55s-12.2-36.11-35.21-21.92c0 0-4.7 1-5.07 5.71 0 0 1.85-.68 2.67 3.12a18 18 0 001.37 3.91 8.66 8.66 0 003.84 3.89s8.12 8.25 25.88 5.52c0 0 4.69 1.42 5.55.93l-5-4.91s-3.46 3.77-7.68 3.62c0 0 7.63-3.32 7-4.39-.13-.21-2.74-2.48-2.74-2.48s-6.06 6.53-12.56 6.1c0 0 9.61-2.74 11.57-7l-4.14-3.19s-6.06 7.22-13.49 7c0 0 10-3.21 12.53-7.65l-4.5-2.59s-6 6.93-12.22 6.71c0 0 11.12-4.87 11.15-7.23 0 0-4.27-2.13-5.68-2.15 0 0-4.46 4.87-8 4.43 0 0 7.08-4.05 6.78-4.88 0 0-6.3-1.29-9.85-.25a19.49 19.49 0 0110-.75 10.79 10.79 0 00-4.69-4s3.72-.91 6.21 4.33c0 0 4.88 1.21 5.4 1.84 0 0-1.72-5.51-4.47-8.17 0 0 4.47 1.51 5.69 8.82l4.58 2.5s-1.89-7.41-4.17-10c0 0 4.33 2.24 5.27 10.69l4.1 3.09s-1.14-6.52-3.06-9.9c0 0 3.56 2.94 4.2 10.83l2.49 2.38s-.92-4.74-1.3-6.08S761 93 761 93a16.49 16.49 0 012.43 8.62s4.84 5.19 5.19 4.93zM689 108.33s-37.9-4.22-34.77 22.67c0 0-1.13 4.66 3 7 0 0 .17-2 4-1.1a18.4 18.4 0 004.12.41 8.6 8.6 0 005.15-1.83s10.91-3.87 16-21.12c0 0 3.26-3.65 3.19-4.64l-6.55 2.42s2 4.73 0 8.49c0 0 .21-8.31-1-8.18-.25 0-3.41 1.44-3.41 1.44s3.36 8.25.22 14c0 0 1.58-9.88-1.43-13.44l-4.65 2.4s4 8.55.65 15.19c0 0 1.3-10.38-1.63-14.59l-4.25 3s3.72 8.41.91 13.92c0 0 .29-12.14-1.84-13.17 0 0-3.74 3-4.35 4.24 0 0 2.53 6.1.62 9.15 0 0-.67-8.13-1.55-8.21 0 0-3.84 5.17-4.4 8.82a19.47 19.47 0 013.56-9.38 10.76 10.76 0 00-5.6 2.55s.74-3.75 6.54-3.79c0 0 3.15-3.91 4-4.12 0 0-5.73-.77-9.3.6 0 0 3.25-3.42 10.39-1.43l4.21-3.09S663.22 115 660 116c0 0 3.86-3 11.92-.25l4.53-2.41s-6.39-1.72-10.26-1.41c0 0 4.17-2 11.58.77l3.22-1.25s-4.69-1.17-6.07-1.39-1.43-.6-1.43-.6a16.45 16.45 0 018.84 1.44s6.74-2.15 6.67-2.57zM1020.6 402.5s-37.88-4.22-34.75 22.64c0 0-1.13 4.66 3 7 0 0 .17-2 4-1.11a17.3 17.3 0 004.12.41 8.53 8.53 0 005.15-1.83s10.91-3.87 15.95-21.11c0 0 3.26-3.66 3.19-4.64l-6.55 2.41s2 4.74 0 8.5c0 0 .21-8.32-1-8.18-.25 0-3.41 1.43-3.41 1.43s3.36 8.25.22 14c0 0 1.58-9.87-1.43-13.44l-4.65 2.41s4 8.55.66 15.19c0 0 1.29-10.38-1.64-14.6l-4.25 3s3.72 8.41.91 13.91c0 0 .29-12.14-1.84-13.16 0 0-3.73 3-4.35 4.24 0 0 2.54 6.1.62 9.15 0 0-.67-8.13-1.55-8.21 0 0-3.84 5.17-4.4 8.82a19.47 19.47 0 013.56-9.38 10.67 10.67 0 00-5.6 2.55s.74-3.76 6.54-3.8c0 0 3.16-3.91 4-4.11 0 0-5.73-.78-9.3.59 0 0 3.25-3.41 10.4-1.42l4.2-3.09s-7.52-1.42-10.79-.44c0 0 3.86-3 11.92-.26l4.53-2.4s-6.39-1.72-10.26-1.41c0 0 4.17-2 11.58.77l3.22-1.26s-4.69-1.17-6.07-1.38-1.43-.6-1.43-.6a16.39 16.39 0 018.84 1.43s6.76-2.19 6.66-2.62zM1078.51 437.88s-37.88-4.21-34.75 22.64c0 0-1.12 4.66 3 7 0 0 .17-2 4-1.1a17.65 17.65 0 004.11.4A8.64 8.64 0 001060 465s10.9-3.87 15.94-21.12c0 0 3.27-3.65 3.19-4.64l-6.55 2.41s2 4.74 0 8.5c0 0 .21-8.31-1-8.18-.25 0-3.41 1.43-3.41 1.43s3.36 8.25.22 14c0 0 1.58-9.87-1.43-13.43l-4.65 2.4s4 8.55.66 15.19c0 0 1.29-10.38-1.64-14.59l-4.25 3s3.72 8.41.92 13.92c0 0 .28-12.15-1.85-13.17 0 0-3.73 3-4.35 4.24 0 0 2.54 6.1.62 9.15 0 0-.67-8.13-1.55-8.21 0 0-3.84 5.17-4.39 8.82a19.52 19.52 0 013.55-9.38 10.76 10.76 0 00-5.6 2.55s.75-3.76 6.55-3.79c0 0 3.15-3.91 4-4.12 0 0-5.73-.77-9.3.6 0 0 3.25-3.42 10.4-1.43l4.2-3.09s-7.52-1.42-10.79-.44c0 0 3.86-3 11.92-.25l4.53-2.41s-6.39-1.72-10.26-1.41c0 0 4.17-2 11.58.77l3.22-1.25s-4.69-1.17-6.06-1.39-1.44-.6-1.44-.6a16.45 16.45 0 018.84 1.44s6.79-2.21 6.69-2.64zM949.94 139.87s-30.52-22.83-41.43 1.9c0 0-3.33 3.45-.94 7.58 0 0 1.14-1.61 4 1.06a17.51 17.51 0 003.34 2.44 8.59 8.59 0 005.37 1s11.36 2.19 24.45-10.12c0 0 4.66-1.5 5.1-2.38l-6.87-1.24s-.72 5.07-4.27 7.34c0 0 4.39-7.06 3.25-7.57-.23-.11-3.66-.5-3.66-.5s-1.29 8.82-6.89 12.15c0 0 6.37-7.71 5.58-12.31l-5.23-.28s-.89 9.39-7.13 13.43c0 0 6.38-8.29 6-13.41l-5.18.42s-1 9.13-6.26 12.45c0 0 6.4-10.32 5.08-12.28 0 0-4.73.67-5.9 1.45 0 0-.9 6.54-4.1 8.2 0 0 3.54-7.35 2.82-7.86 0 0-5.93 2.51-8.26 5.37a19.53 19.53 0 017.82-6.28 10.77 10.77 0 00-6.12-.64s2.55-2.86 7.57.05c0 0 4.69-1.77 5.49-1.55 0 0-4.55-3.57-8.32-4.19 0 0 4.54-1.3 9.69 4l5.19-.53s-5.76-5-9.08-5.84c0 0 4.83-.61 10.4 5.81l5.13.23s-4.64-4.72-8.13-6.42c0 0 4.6.4 9.59 6.53l3.41.55s-3.45-3.38-4.53-4.26S936 133 936 133a16.44 16.44 0 016.88 5.72s6.93 1.56 7.06 1.15zM973.52 304.69s-10.52-36.63-34.18-23.48c0 0-4.74.73-5.33 5.47 0 0 1.88-.59 2.53 3.24a17.73 17.73 0 001.2 4 8.59 8.59 0 003.66 4.08s7.74 8.6 25.6 6.68c0 0 4.62 1.62 5.5 1.18l-4.73-5.14s-3.63 3.62-7.83 3.28c0 0 7.76-3 7.16-4.07-.12-.22-2.62-2.61-2.62-2.61s-6.34 6.26-12.82 5.53c0 0 9.73-2.3 11.87-6.44l-4-3.38s-6.38 6.94-13.79 6.4c0 0 10.08-2.77 12.86-7.08l-4.38-2.79s-6.35 6.65-12.51 6.15c0 0 11.33-4.37 11.47-6.72 0 0-4.18-2.32-5.59-2.4 0 0-4.67 4.66-8.22 4.06 0 0 7.26-3.73 7-4.57 0 0-6.24-1.57-9.83-.7a19.51 19.51 0 0110-.29 10.73 10.73 0 00-4.5-4.2s3.76-.75 6 4.6c0 0 4.81 1.42 5.31 2.08 0 0-1.47-5.59-4.1-8.36 0 0 4.4 1.7 5.29 9.06l4.46 2.71s-1.56-7.5-3.72-10.14c0 0 4.22 2.43 4.79 10.91l4 3.27s-.85-6.56-2.61-10c0 0 3.43 3.1 3.71 11l2.38 2.5s-.7-4.78-1-6.14 0-1.55 0-1.55a16.39 16.39 0 012.05 8.72s4.56 5.38 4.92 5.14zM739.1 387.23s-20.43-32.18-39.4-12.92c0 0-4.34 2-3.58 6.75 0 0 1.65-1.1 3.35 2.4a17.12 17.12 0 002.26 3.46 8.54 8.54 0 004.65 2.88s9.85 6.08 26.45-.8c0 0 4.89.26 5.61-.41l-6-3.6s-2.47 4.5-6.6 5.35c0 0 6.62-5 5.73-5.92-.17-.18-3.25-1.76-3.25-1.76s-4.33 7.78-10.75 8.91c0 0 8.69-4.95 9.59-9.53l-4.79-2.11s-4.17 8.45-11.43 10c0 0 8.9-5.49 10.35-10.41l-5-1.44s-4.22 8.17-10.27 9.42c0 0 9.64-7.38 9.11-9.68 0 0-4.66-1.05-6-.73 0 0-3.17 5.79-6.75 6.21 0 0 5.92-5.62 5.43-6.36 0 0-6.43.25-9.63 2.1a19.46 19.46 0 019.54-3.1 10.73 10.73 0 00-5.49-2.77s3.39-1.77 7 2.73c0 0 5 0 5.69.5 0 0-3-5-6.29-6.87 0 0 4.7.4 7.62 7.21l5.05 1.34s-3.61-6.75-6.42-8.68c0 0 4.73 1.14 7.66 9.13l4.72 2s-2.66-6.05-5.33-8.88c0 0 4.16 2 6.65 9.51l3 1.73s-2-4.39-2.71-5.6-.43-1.49-.43-1.49a16.4 16.4 0 014.41 7.79s5.98 3.98 6.25 3.64z",
427
- opacity: "0.1",
428
- transform: "translate(-95.23 -55.03)"
429
- }), /*#__PURE__*/React.createElement("path", {
430
- fill: "#1976d2",
431
- d: "M873.37 222.81s-19.43-32.79-39-14.13c0 0-4.4 1.9-3.78 6.64 0 0 1.67-1.06 3.27 2.49a17.28 17.28 0 002.15 3.54 8.49 8.49 0 004.56 3s9.65 6.38 26.46 0c0 0 4.88.41 5.62-.24l-5.87-3.78s-2.6 4.41-6.76 5.14c0 0 6.77-4.83 5.92-5.74-.18-.19-3.2-1.87-3.2-1.87s-4.57 7.65-11 8.58c0 0 8.84-4.68 9.87-9.22l-4.72-2.22s-4.43 8.33-11.74 9.66c0 0 9.07-5.21 10.67-10.08l-4.94-1.6s-4.48 8-10.56 9.1c0 0 9.86-7.08 9.4-9.39 0 0-4.62-1.2-6-.92 0 0-3.35 5.69-6.94 6 0 0 6.09-5.42 5.63-6.18 0 0-6.44.05-9.69 1.8a19.52 19.52 0 019.63-2.8 10.75 10.75 0 00-5.41-2.94s3.45-1.67 7 2.94c0 0 5 .17 5.67.68 0 0-2.83-5-6.07-7.06 0 0 4.68.54 7.39 7.44l5 1.5s-3.39-6.86-6.15-8.88c0 0 4.7 1.29 7.38 9.36l4.65 2.17s-2.47-6.13-5-9c0 0 4.09 2.13 6.36 9.71l2.93 1.82s-1.88-4.45-2.54-5.68-.38-1.5-.38-1.5a16.43 16.43 0 014.17 7.92s5.73 4.07 6.02 3.74zM750.44 291.76s1-38.1-25.47-32.73c0 0-4.74-.73-6.74 3.61 0 0 2 0 1.44 3.85a17.56 17.56 0 00-.06 4.14 8.55 8.55 0 002.25 5s4.77 10.54 22.38 14.12c0 0 3.91 2.95 4.89 2.79l-3-6.32s-4.55 2.34-8.46.75c0 0 8.3-.49 8.07-1.71 0-.25-1.72-3.29-1.72-3.29s-7.94 4.05-13.89 1.39c0 0 10 .75 13.27-2.54l-2.79-4.43s-8.18 4.68-15.08 1.92c0 0 10.45.42 14.41-2.85l-3.33-4s-8.07 4.42-13.79 2.08c0 0 12.12-.73 13-2.94 0 0-3.28-3.47-4.6-4 0 0-5.86 3-9.06 1.38 0 0 8-1.34 8.05-2.23 0 0-5.47-3.39-9.16-3.64a19.47 19.47 0 019.65 2.76 10.75 10.75 0 00-3-5.37s3.81.43 4.33 6.2c0 0 4.17 2.82 4.44 3.6 0 0 .29-5.77-1.38-9.21 0 0 3.68 2.95 2.3 10.23l3.43 3.94s.78-7.62-.47-10.79c0 0 3.28 3.59 1.26 11.85l2.77 4.31s1.18-6.51.55-10.34c0 0 2.32 4 .2 11.61l1.52 3.1s.77-4.77.87-6.16.48-1.48.48-1.48a16.42 16.42 0 01-.69 8.93s2.69 6.6 3.13 6.47z",
432
- transform: "translate(-95.23 -55.03)"
433
- }), /*#__PURE__*/React.createElement("ellipse", {
434
- cx: "698.97",
435
- cy: "716.3",
436
- fill: "#1976d2",
437
- opacity: "0.1",
438
- rx: "26.93",
439
- ry: "4.55"
440
- }), /*#__PURE__*/React.createElement("ellipse", {
441
- cx: "600.8",
442
- cy: "785.38",
443
- fill: "#1976d2",
444
- opacity: "0.1",
445
- rx: "26.93",
446
- ry: "4.55"
447
- }), /*#__PURE__*/React.createElement("ellipse", {
448
- cx: "93.14",
449
- cy: "749.99",
450
- fill: "#1976d2",
451
- opacity: "0.1",
452
- rx: "26.93",
453
- ry: "4.55"
454
- }), /*#__PURE__*/React.createElement("ellipse", {
455
- cx: "805.06",
456
- cy: "780.83",
457
- fill: "#1976d2",
458
- opacity: "0.1",
459
- rx: "26.93",
460
- ry: "4.55"
461
- }), /*#__PURE__*/React.createElement("ellipse", {
462
- cx: "833.1",
463
- cy: "723.1",
464
- fill: "#1976d2",
465
- rx: "40.21",
466
- ry: "6.8"
467
- }), /*#__PURE__*/React.createElement("path", {
468
- fill: "#1976d2",
469
- d: "M945 767a11.61 11.61 0 003.83-5.78c.5-2.3-.48-5.05-2.67-5.89-2.46-.94-5.09.76-7.09 2.48s-4.27 3.69-6.88 3.33a10.5 10.5 0 003.24-9.81 4.11 4.11 0 00-.9-2c-1.37-1.46-3.84-.83-5.48.32-5.2 3.66-6.65 10.72-6.68 17.08-.52-2.29-.08-4.68-.09-7s-.66-5-2.65-6.22a7.91 7.91 0 00-4-1c-2.34-.08-4.95.15-6.54 1.86-2 2.12-1.47 5.69.25 8s4.35 3.8 6.77 5.42a15.13 15.13 0 014.84 4.61 4.7 4.7 0 01.35.82h14.66A40.44 40.44 0 00945 767z",
470
- transform: "translate(-95.23 -55.03)"
471
- }), /*#__PURE__*/React.createElement("path", {
472
- fill: "#a8a8a8",
473
- d: "M170.29 783.87s15.35-.47 20-3.77 23.63-7.23 24.78-1.94 23.08 26.29 5.74 26.43-40.29-2.7-44.91-5.52-5.61-15.2-5.61-15.2z",
474
- transform: "translate(-95.23 -55.03)"
475
- }), /*#__PURE__*/React.createElement("path", {
476
- d: "M221.1 802.75c-17.34.14-40.29-2.7-44.91-5.52-3.52-2.14-4.92-9.83-5.39-13.38h-.51s1 12.39 5.59 15.2 27.57 5.66 44.91 5.52c5 0 6.73-1.82 6.64-4.46-.7 1.61-2.61 2.61-6.33 2.64z",
477
- opacity: "0.2",
478
- transform: "translate(-95.23 -55.03)"
479
- }));
179
+ viewBox: "0 0 1009.54 789.93",
180
+ children: [/*#__PURE__*/jsxRuntime.jsx("defs", {
181
+ children: /*#__PURE__*/jsxRuntime.jsxs("linearGradient", {
182
+ id: "07c62293-c0d3-4921-8e06-4e39241449cd",
183
+ x1: "318.22",
184
+ x2: "630.35",
185
+ y1: "488.45",
186
+ y2: "488.45",
187
+ gradientUnits: "userSpaceOnUse",
188
+ children: [/*#__PURE__*/jsxRuntime.jsx("stop", {
189
+ offset: "0",
190
+ stopColor: "gray",
191
+ stopOpacity: "0.25"
192
+ }), /*#__PURE__*/jsxRuntime.jsx("stop", {
193
+ offset: "0.54",
194
+ stopColor: "gray",
195
+ stopOpacity: "0.12"
196
+ }), /*#__PURE__*/jsxRuntime.jsx("stop", {
197
+ offset: "1",
198
+ stopColor: "gray",
199
+ stopOpacity: "0.1"
200
+ })]
201
+ })
202
+ }), /*#__PURE__*/jsxRuntime.jsx("ellipse", {
203
+ cx: "354.13",
204
+ cy: "741.27",
205
+ fill: "#1976d2",
206
+ opacity: "0.1",
207
+ rx: "176.1",
208
+ ry: "33.36"
209
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
210
+ fill: "#1976d2",
211
+ d: "M681.78 166.43c-64.72-2.24-126.36-23.14-185.22-46S379.4 72.25 316.23 60.14c-40.63-7.79-87.1-8.9-119.83 12.86-31.51 21-41.69 57.15-47.16 90.72-4.12 25.26-6.54 51.85 4.74 75.5 7.84 16.42 21.74 30.22 31.36 45.95 33.47 54.72 9.81 122.2-26.45 175.63-17 25.06-36.75 49-49.88 75.65s-19.2 57.29-7.71 84.55c11.38 27 38.51 47.24 67.9 61.49 59.69 28.95 130 37.23 198.61 41.93 151.83 10.38 304.46 5.89 456.69 1.38 56.34-1.66 112.92-3.35 168.34-12.06 30.78-4.84 62.55-12.52 84.9-31.06 28.36-23.53 35.39-63.37 16.38-92.87-31.88-49.5-120-61.79-142.31-114.9-12.26-29.24.33-61.8 18.16-88.91 38.24-58.17 102.33-109.2 105.7-175.68 2.32-45.66-28.49-91.39-76.13-113-49.93-22.65-119.18-19.8-156 17.69-37.95 38.56-104.61 53.41-161.76 51.42z",
212
+ opacity: "0.1",
213
+ transform: "translate(-95.23 -55.03)"
214
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
215
+ fill: "url(#07c62293-c0d3-4921-8e06-4e39241449cd)",
216
+ d: "M630.35 416.77l-30.63-20.65 15.45-23-80.9-6.45-29.07 22.48-36.39-20.4-30.35 3.65-.36-8a225.78 225.78 0 00-2.51-24.9c.13-2.5.22-5.37.21-8.49 0-13.15-1.78-30.58-9.6-42.2l1.8-16.18-14.6-17.25a110.37 110.37 0 018-13.46c.5-.72 1-1.42 1.54-2.1 18.95-1.37 33.9-16.95 33.9-36 0-.88 0-1.76-.1-2.63 0-.35-.07-.71-.11-1.06 1.85 1 3.72 2 5.59 3 .35.5.75 1 1.19 1.59l.09.11.56.69.18.21c.2.24.41.47.62.71l.14.16c.53.59 1.09 1.19 1.69 1.78a1.8 1.8 0 01.2.19l.75.7.21.19c.64.57 1.32 1.12 2 1.64l.22.16.86.59.28.18c.33.2.67.41 1 .6l.12.07c.39.21.79.41 1.19.6l.2.08q.51.22 1 .42l.31.11c.35.12.69.23 1.05.33l.22.06c.44.11.88.2 1.33.27h.05a10.88 10.88 0 001.28.13h.29a11 11 0 001.15 0h.25a11.85 11.85 0 001.43-.17 15.78 15.78 0 006.3-2.26 5.5 5.5 0 001.28-1.19c2-2.62-.2-5.49-.2-5.49-.78-1.86-5.84-3.17-5.84-3.17s-16-6.68-16-12-4-32.92-45.29-39.23c0 0-26.86-1.51-34.41 12.87l-.16 1.68c-2.22 1.39-4.06 4.18-6.25 5a10.21 10.21 0 00-2.71 1v-.19a2.58 2.58 0 00-.61.79 8 8 0 00-.83 3 11.3 11.3 0 01-1.31 3.63 8.07 8.07 0 01-.6.92l-.17.27a7.3 7.3 0 003.4-.55 16.93 16.93 0 01-1 4 3.32 3.32 0 003.08-1.84v-.08l.13-.18a8.44 8.44 0 00.62-1.45l-.11.12c.2-.65.38-1.31.6-1.95a3.06 3.06 0 01.49-1 2.42 2.42 0 012.07-.69l-.41 8.67h.18a11.83 11.83 0 01-.88 1.82c-1.42 2.3-4 3.87-4.95 6.39a9.4 9.4 0 00-.46 3.78c0 .75.09 1.51.15 2.26v-.06c.14 2 .18 3.9-.9 5.51-.74 1.1-1.93 1.93-2.34 3.18a3.1 3.1 0 00-.15 1.08 12.13 12.13 0 00.68 3.21.14.14 0 000-.06 4.88 4.88 0 01.17 2.36c-.45 2-2.88 3.67-2.76 5.58a2.15 2.15 0 00.11.74 4.05 4.05 0 002.26 2 8.8 8.8 0 005.08 1.12 6.68 6.68 0 001.9-.65c-.7 1.61-1.42 3.2-2.15 4.71-.11.24-.23.48-.35.72 0 0-6.18-4.13-9.69 4.29a18.68 18.68 0 00-2.17 5.64 13.42 13.42 0 01-.74 2.32 14.93 14.93 0 01-6.68 6c-7.16 3.28-36.08 39.35-36.59 48.69a54.49 54.49 0 01-1.84 10.78 64.15 64.15 0 00-1.72 25.49 48.77 48.77 0 001.77 8.13c3.07 9.33 5.12 26.74 5.12 26.74l3.32 30.22a86 86 0 00.54 12.49c-3.39 3.87-17 20-11.8 24.39 4 3.46 11 2.89 14.93 2.18-3.31 8.19-8.52 22.43-9.21 32.21-1 14.47 1.71 33.64 6 41s18.59 26.24 18.59 26.24-.67 25.9 4.44 35.31 7.17 28.93 7.17 28.93 4.77 16.48 2.38 22.54 4.43 11.1-2.73 15.13-16.32 94.86-16.32 94.86-3.69 59.53 0 62.56a3.75 3.75 0 00.63.37v20s-2.56 4.2 7.85 5.05c7.13.57 27.34 1.86 39.33 2.61l9.29.58s22 4.38 31.72 0 26.95-4.28 24.39-15.85a32.92 32.92 0 00-1.36-4.63c-2.81-7.18-7.58-8-16.37-10-.51-.11-1-.21-1.45-.29-9.26-1.61-12.3 2.7-17.49-2.91-4.51-4.85-18.87-10.28-23.76-12 .12-.36.27-.71.39-1.08a7.32 7.32 0 01-3.71-1.81l13.25.84 7.89.49s18.7 3.73 27 0 22.9-3.63 20.72-13.46a28.21 28.21 0 00-1.15-3.94c-2.39-6.1-6.45-6.77-13.92-8.46-.43-.09-.83-.18-1.23-.25-7.87-1.37-10.45 2.29-14.86-2.47-3.78-4.06-15.71-8.61-20-10.16 0-2.22-3-5.38-4.89-8.55-2.22-3.7 1.88-16.65 1.88-16.65l2.34-53.73a10.38 10.38 0 012.8-.8s10.58-10.1 8.19-20.86a69.13 69.13 0 01-.76-9.83c3.48-3.23 8.27-8 9.63-10.94 2.22-4.79 0-28 0-28v-88.75l17.7 1.79 16.06 1.65 4.89.5 16.06 1.62 36.91 3.73 33.26-6.3 14.39-2.72 29.59-5.6v-72.4zM386.74 176.86l-2.06-.22c.68.03 1.4.16 2.06.22z",
217
+ transform: "translate(-95.23 -55.03)"
218
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
219
+ fill: "#efb7b9",
220
+ d: "M558.56 463.78c-10 14.31-45.95 6.73-45.95 6.73l-27.86-26.07-3.75-3.53 6.29-13.36s2 .55 5.43 1.53c18.01 5.23 74.28 22.67 65.84 34.7z",
221
+ transform: "translate(-95.23 -55.03)"
222
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
223
+ d: "M492.7 429.08c-1.23 4.28-4.6 10.69-7.95 15.36l-3.75-3.53 6.29-13.36s2.02.55 5.41 1.53z",
224
+ opacity: "0.1",
225
+ transform: "translate(-95.23 -55.03)"
226
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
227
+ fill: "#dce6f2",
228
+ d: "M397.15 278.42s-25.68 11.39-24.42 39.36a461.14 461.14 0 005.88 53.76s-5.25 42.09 16.61 52.94 42.09 19.77 42.09 19.77 34.2 3.68 38.45 5.2 17.53-21.72 15.08-25.34S457 412.9 453 406.86s-13.25-9.77-13.25-9.77-9.55-5.78-10.2-11 1.87-9.11 2.51-11.4 2.26-24.4 2.26-24.4 10.78-78.7-37.17-71.87z",
229
+ transform: "translate(-95.23 -55.03)"
230
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
231
+ d: "M414.1 370.39s-35.23 5.9-31.82 18.23c0 0 12.79-13.31 31.82-18.23zM414.37 375.38S395 391.19 398.79 392s15.58-16.62 15.58-16.62zM423.68 380.89s-5.19 10.63-2 9.91 2-9.91 2-9.91z",
232
+ opacity: "0.1",
233
+ transform: "translate(-95.23 -55.03)"
234
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
235
+ d: "M494 430.21l-2.14-.61c.61-2 .78-3.62.28-4.37-2.45-3.62-33.82-11.2-37.81-17.25s-13.25-9.77-13.25-9.77-9.55-5.78-10.2-11 1.87-9.11 2.51-11.4 2.26-24.41 2.26-24.41 10.75-78.69-37.2-71.86c0 0-25.68 11.4-24.43 39.37a459.85 459.85 0 005.89 53.76s-5.25 42.09 16.61 52.94 42.09 19.77 42.09 19.77 34.19 3.67 38.45 5.2c1.61.58 4.52-2.41 7.37-6.52l1.62 1.51 27.86 26.06s35.95 7.59 45.95-6.72c8.45-12.04-47.81-29.48-65.86-34.7z",
236
+ opacity: "0.1",
237
+ transform: "translate(-95.23 -55.03)"
238
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
239
+ fill: "#965d7b",
240
+ d: "M382.37 173.44a8.5 8.5 0 00-2.77 1.07c-1 .83-1 2.25-1.25 3.49a11.48 11.48 0 01-2 4.78 7.19 7.19 0 003.33-.55 17.14 17.14 0 01-1 4 3.24 3.24 0 003-1.83 19.26 19.26 0 001.25-3.51 2.89 2.89 0 01.48-1c.92-1.09 2.63-.6 4.05-.46a6.65 6.65 0 006.08-2.92c1.51-2.29 1.6-8.15-2-8.77-3.76-.62-6.1 4.56-9.17 5.7z",
241
+ transform: "translate(-95.23 -55.03)"
242
+ }), /*#__PURE__*/jsxRuntime.jsx("g", {
243
+ opacity: "0.1",
244
+ children: /*#__PURE__*/jsxRuntime.jsx("path", {
245
+ d: "M379.5 175.74c.09-.49.15-1 .26-1.49-.95.83-1 2.24-1.25 3.49a11 11 0 01-.59 2.11 11.46 11.46 0 001.58-4.11zM379.82 184a16.63 16.63 0 001-4 7.16 7.16 0 01-3.17.55 11.57 11.57 0 01-1.15 2 7.12 7.12 0 003.32-.54 16.63 16.63 0 01-1 4 3.25 3.25 0 003-1.83 7.46 7.46 0 00.6-1.43 3 3 0 01-2.6 1.25zM388.6 177.2c-1.42-.14-3.14-.63-4.06.46a3.09 3.09 0 00-.48 1c-.09.26-.17.53-.24.8.95-.75 2.49-.35 3.78-.22a6.68 6.68 0 006.08-2.92 5.54 5.54 0 00.67-1.57 6.66 6.66 0 01-5.75 2.45z",
246
+ transform: "translate(-95.23 -55.03)"
247
+ })
248
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
249
+ fill: "#dce6f2",
250
+ d: "M317.24 201L332.49 219.34 330.5 237.85 312.07 209 317.24 201z"
251
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
252
+ d: "M332.48 219.34L330.61 236.75 330.49 237.85 313.86 211.81 312.07 209 312.59 208.19 317.23 201 318.26 202.24 332.48 219.34z",
253
+ opacity: "0.1"
254
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
255
+ fill: "#efb7b9",
256
+ d: "M435.63 231.2c-5.16 1.48-10.09 6.56-14.38 12.73a108.65 108.65 0 00-7.76 13.34c-1.41 2.82-2.65 5.53-3.68 7.89l-.72 1.68c-1.74 4.11-2.71 6.86-2.71 6.86s-39.5-29.7-33.25-31.7c2.1-.67 4.86-5.17 7.59-10.84l.34-.72c1.73-3.64 3.43-7.7 4.94-11.52 3.09-7.85 5.38-14.67 5.38-14.67s60 22.45 44.25 26.95z",
257
+ transform: "translate(-95.23 -55.03)"
258
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
259
+ fill: "#444053",
260
+ d: "M459.26 202.58s9.12 16.5 21.37 14.25 7.21-8.86 7.21-8.86z",
261
+ transform: "translate(-95.23 -55.03)"
262
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
263
+ fill: "#a36468",
264
+ d: "M441.59 773.73c-8.08 3.69-26.35 0-26.35 0l-7.7-.48c-10-.64-26.74-1.72-32.66-2.2-8.64-.71-6.52-4.25-6.52-4.25v-21.39l41.92-10.62s16.57 5.67 21.11 10.62c4.31 4.72 6.83 1.09 14.52 2.45.38.07.78.15 1.2.25 7.3 1.67 11.26 2.33 13.6 8.38a28.1 28.1 0 011.13 3.9c2.16 9.74-12.18 9.67-20.25 13.34z",
265
+ transform: "translate(-95.23 -55.03)"
266
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
267
+ d: "M460.71 756.49a31.34 31.34 0 01-4.72 2.42c-5.5 2.51-10.73 5.57-16.29 7.94s-11.55 4.06-17.57 3.61c-3.15-.23-6.37-1-9.38-.1a21.66 21.66 0 00-5.21 2.89c-10-.64-26.74-1.72-32.66-2.2-8.64-.71-6.52-4.25-6.52-4.25v-2.5c.31 0 .66-.09 1.06-.12a18.88 18.88 0 016.1.91c4.34 1.18 8.66 2.34 13 3.5a10.27 10.27 0 015-6.38 15.94 15.94 0 018.06-1.85c6.73.09 13.1 3.28 19.82 3.6a10.92 10.92 0 005.49-.92c.92-.46 1.73-1.13 2.63-1.64a19.2 19.2 0 014.53-1.53 99.76 99.76 0 0012.95-4.18c1.2-.47 2.6-1.32 2.44-2.6-.21-1.7-2.88-1.9-3.58-3.46a2 2 0 01.08-1.77c.38.07.78.15 1.2.25 7.27 1.67 11.23 2.33 13.57 8.38z",
268
+ opacity: "0.1",
269
+ transform: "translate(-95.23 -55.03)"
270
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
271
+ fill: "#a36468",
272
+ d: "M433.05 820.53c-9.5 4.34-31 0-31 0L393 820c-11.72-.75-31.46-2-38.43-2.59-10.17-.84-7.67-5-7.67-5V787.2l49.33-12.5s19.5 6.67 24.84 12.5c5.07 5.55 8 1.28 17.09 2.88.45.08.92.18 1.41.29 8.59 2 13.25 2.75 16 9.87a32.1 32.1 0 011.33 4.59c2.48 11.46-14.35 11.37-23.85 15.7z",
273
+ transform: "translate(-95.23 -55.03)"
274
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
275
+ d: "M455.55 800.24a37.23 37.23 0 01-5.55 2.85c-6.47 2.95-12.63 6.55-19.17 9.34s-13.59 4.77-20.68 4.25c-3.7-.27-7.49-1.2-11-.12A25.5 25.5 0 00393 820c-11.72-.75-31.46-2-38.43-2.59-10.17-.84-7.67-5-7.67-5v-2.94a12.5 12.5 0 011.25-.14 21.94 21.94 0 017.18 1.07l15.29 4.12a12.1 12.1 0 015.93-7.51 18.66 18.66 0 019.49-2.18c7.92.11 15.41 3.86 23.32 4.24a12.91 12.91 0 006.44-1.07c1.09-.55 2-1.34 3.1-1.93a21.75 21.75 0 015.33-1.8 119.69 119.69 0 0015.16-4.92c1.41-.56 3.06-1.56 2.87-3.06-.25-2-3.39-2.24-4.22-4.08a2.41 2.41 0 01.1-2.08c.45.08.92.18 1.41.29 8.59 1.92 13.25 2.7 16 9.82z",
276
+ opacity: "0.1",
277
+ transform: "translate(-95.23 -55.03)"
278
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
279
+ fill: "#444053",
280
+ d: "M411.55 647.54l-2.67 62.83s-4 12.83-1.83 16.5 5.83 7.33 4.5 9.5S394.22 762 389.05 753s-10.27-48-10.27-48l4.77-48.17zM423.13 491l7.42 9.92v86.28s2.17 23 0 27.75-13.17 14.25-13.17 14.25l-9.25-47.5 2-50.25z",
281
+ transform: "translate(-95.23 -55.03)"
282
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
283
+ d: "M411.55 647.54l-2.67 62.83s-4 12.83-1.83 16.5 5.83 7.33 4.5 9.5S394.22 762 389.05 753s-10.27-48-10.27-48l4.77-48.17zM423.13 491l7.42 9.92v86.28s2.17 23 0 27.75-13.17 14.25-13.17 14.25l-9.25-47.5 2-50.25z",
284
+ opacity: "0.1",
285
+ transform: "translate(-95.23 -55.03)"
286
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
287
+ fill: "#444053",
288
+ d: "M430.55 454.2v46.67l-8.33 36.33s-2.67 87.67-.34 98.33-8 20.67-8 20.67-6 .67-6 5.33-10 18-10 18l.33 26s4.34 48.67-2.33 58 2.33 10.67 2.33 10.67c-8.33 27.33-48.33 21-51.94 18s0-62 0-62 8.94-90 15.94-94 .34-9 2.67-15-2.33-22.33-2.33-22.33-2-19.34-7-28.67-4.34-35-4.34-35-14-18.67-18.16-26-6.84-26.33-5.84-40.67c.68-9.69 5.77-23.8 9-31.92 1.55-3.89 2.67-6.41 2.67-6.41l.95.25 54.62 14.3z",
289
+ transform: "translate(-95.23 -55.03)"
290
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
291
+ d: "M435.63 231.2c-5.16 1.48-10.09 6.56-14.38 12.73h-1.12a35.72 35.72 0 01-31-17.93 35.18 35.18 0 01-3.14-7.15c3.09-7.85 5.38-14.67 5.38-14.67s60.01 22.52 44.26 27.02z",
292
+ opacity: "0.1",
293
+ transform: "translate(-95.23 -55.03)"
294
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
295
+ fill: "#efb7b9",
296
+ d: "M455.88 206.2A35.75 35.75 0 11389 188.68a34.93 34.93 0 013.78-5.46A36.18 36.18 0 01401 176a35.75 35.75 0 0154.83 27.58c.02.88.05 1.75.05 2.62z",
297
+ transform: "translate(-95.23 -55.03)"
298
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
299
+ d: "M425.84 291.78l-.12 1.1-16.63-26c-1.74 4.11-2.71 6.86-2.71 6.86S366.88 244 373.13 242c2.1-.67 4.86-5.17 7.59-10.84l.34-.72c2.9 8.64 19.75 25.91 26.76 32.83.81.8 1.48 1.46 2 1.94l1.07 1 .56.56c2.55 2.63 13.31 14.23 14.39 25.01z",
300
+ opacity: "0.1",
301
+ transform: "translate(-95.23 -55.03)"
302
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
303
+ fill: "#dce6f2",
304
+ d: "M438.27 380l-1.82 58.57-.32 10.43s-21.56-2-41.68-4.2c-16.2-1.77-31.47-3.68-33.82-4.8-3-1.41-9.43-2.5-14.5-3.19-3.92-.53-7-.81-7-.81s-1.15.34-2.92.66c-3.86.7-10.64 1.27-14.59-2.16-5.05-4.39 8.22-20.34 11.53-24.17l.73-.83-1.25-11.55-3.25-29.95s-2-17.25-5-26.5a48.88 48.88 0 01-1.73-8.05 64.48 64.48 0 011.68-25.26 55.08 55.08 0 001.8-10.69c.5-9.25 28.75-45 35.75-48.25a14.84 14.84 0 007.16-7.14 13.64 13.64 0 001.09-3.11c3-13 10.59-7.84 10.59-7.84 1.83 10.17 30.16 37.09 30.16 37.09l.56.56c2.81 2.88 15.33 16.4 14.44 27.94a33.87 33.87 0 001.89 12.64 213.75 213.75 0 019.85 56z",
305
+ transform: "translate(-95.23 -55.03)"
306
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
307
+ d: "M398.13 310.45s-7 17-12.25 19.75 14.75 5.8 12.25-19.75zM403.38 342.2s-16 2-16 5 16-5 16-5zM420.13 361.7s-23.25 49.5-29.75 51 29.75-51 29.75-51zM410.44 270.76l-19.23 8.36L368 244.06a13.64 13.64 0 001.09-3.11c3-13 10.59-7.84 10.59-7.84 1.83 10.17 30.16 37.09 30.16 37.09z",
308
+ opacity: "0.1",
309
+ transform: "translate(-95.23 -55.03)"
310
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
311
+ fill: "#dce6f2",
312
+ d: "M411.44 268.76l-19.23 8.36L369 242.06a13.64 13.64 0 001.09-3.11c3-13 10.59-7.84 10.59-7.84 1.83 10.17 30.16 37.09 30.16 37.09z",
313
+ transform: "translate(-95.23 -55.03)"
314
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
315
+ d: "M436.13 449s-21.56-2-41.68-4.2l36.1 9.45v11c-1.58 1.43-2.95 2.17-3.84 1.79-4.16-1.75-38.11-7.25-38.11-7.25s-19.72-10-41-22a16.43 16.43 0 01-1.5-.94 23.64 23.64 0 01-6.3-6.31c-3.93-5.69-5.85-13-6.68-20.17a87.22 87.22 0 01-.52-12.38 101.51 101.51 0 011.28-13.99 460.08 460.08 0 01-3-54c.25-28 26.5-38 26.5-38 48.25-4.25 33.29 73.75 33.29 73.75s-2.79 22-3.55 24.25-3.49 6-3.12 11.25 9.59 11.53 9.59 11.53 9 4.22 12.71 10.47c2.7 4.61 20.24 10.86 30.15 15.32zM452.29 184a11.32 11.32 0 01-1 4.78 29.55 29.55 0 01-1.78 3.56 16.4 16.4 0 01-4.38 5.44c-2.31 1.65-5.23 2.11-8 2.78s-5.65 1.74-7.23 4.1a14.34 14.34 0 00-1.69 4.9 10.54 10.54 0 01-2 4.74 3.93 3.93 0 01-4.68 1.12 4.73 4.73 0 01-1.81-2.33c-1.14-2.57-1.43-5.42-1.89-8.19s-1.11-5.62-2.81-7.85-4.71-3.7-7.38-2.83a7.11 7.11 0 00-4 3.88 22.24 22.24 0 00-1.51 5.52q-1.86 10.18-4.39 20.24a1.86 1.86 0 01-.33.76 1.44 1.44 0 01-1 .42c-2.24.3-4.39-1.27-6.65-1.1a3.82 3.82 0 00-.69.11 35.73 35.73 0 013.61-40.8l.18-.05a10.78 10.78 0 004-2.52 42.22 42.22 0 004-4.63l.8-1a45.61 45.61 0 017.8-7.41 8 8 0 012.66-1.44 7.88 7.88 0 012.52-.08 63.57 63.57 0 0010.41.39 66.79 66.79 0 017.31-.74c6.33.18 11.73 4.65 15.73 9.55 2.15 2.51 4.07 5.4 4.2 8.68z",
316
+ opacity: "0.1",
317
+ transform: "translate(-95.23 -55.03)"
318
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
319
+ fill: "#965d7b",
320
+ d: "M384.33 189.63c-1.39 2.28-3.9 3.83-4.84 6.33-1.38 3.63.95 8.15-1.19 11.39-.71 1.09-1.88 1.9-2.28 3.15-.68 2.11 1.18 4.36.7 6.53s-3.34 4-2.58 6.12a4 4 0 002.2 2 8.6 8.6 0 005 1.11c2.73-.45 4.76-3.13 7.53-3.33 2.25-.16 4.4 1.4 6.64 1.11a1.5 1.5 0 001-.43 1.73 1.73 0 00.33-.76q2.52-10.05 4.4-20.24a21.8 21.8 0 011.5-5.52 7.17 7.17 0 014-3.88c2.67-.86 5.67.6 7.38 2.83s2.36 5.08 2.82 7.85.75 5.62 1.88 8.19a4.78 4.78 0 001.82 2.34c1.5.87 3.52.18 4.67-1.12a10.43 10.43 0 002-4.75 14.28 14.28 0 011.69-4.89c1.58-2.36 4.47-3.43 7.23-4.1s5.67-1.14 8-2.79a16.46 16.46 0 004.38-5.43c1.48-2.58 2.86-5.38 2.74-8.35-.13-3.24-2.05-6.13-4.1-8.65-4-4.9-9.41-9.37-15.74-9.54a62.2 62.2 0 00-7.31.74 62.57 62.57 0 01-10.41-.4 8.18 8.18 0 00-2.52.09 7.54 7.54 0 00-2.65 1.44 45.63 45.63 0 00-7.81 7.4 57.31 57.31 0 01-4.82 5.6 10.85 10.85 0 01-4 2.53c-1 .28-2 .08-2.95.39-2.95.93-3.34 4.78-4.71 7.04z",
321
+ transform: "translate(-95.23 -55.03)"
322
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
323
+ d: "M480.63 216.82c-8 1.47-14.63-5-18.3-9.72a39.22 39.22 0 01-3.07-4.52l27.46 5.18 1.11.21s5.05 6.61-7.2 8.85z",
324
+ opacity: "0.1",
325
+ transform: "translate(-95.23 -55.03)"
326
+ }), /*#__PURE__*/jsxRuntime.jsx("g", {
327
+ opacity: "0.1",
328
+ children: /*#__PURE__*/jsxRuntime.jsx("path", {
329
+ d: "M376.72 214.17a8.33 8.33 0 00-.58-3.84c0 .1-.09.2-.12.3-.43 1.34.15 2.73.52 4.12a3 3 0 00.18-.58zM379.1 197.8a22.22 22.22 0 00.08 4.15 22.28 22.28 0 00-.08-4.15zM448.55 188.45a16.4 16.4 0 01-4.38 5.44c-2.31 1.65-5.22 2.11-8 2.78s-5.65 1.74-7.23 4.1a14.41 14.41 0 00-1.69 4.9 10.47 10.47 0 01-2 4.75c-1.15 1.3-3.17 2-4.67 1.12a4.78 4.78 0 01-1.82-2.34c-1.13-2.57-1.43-5.41-1.88-8.19s-1.12-5.62-2.82-7.85-4.71-3.7-7.38-2.83a7.14 7.14 0 00-4 3.88 21.8 21.8 0 00-1.5 5.52q-1.87 10.19-4.4 20.24a1.73 1.73 0 01-.33.76 1.5 1.5 0 01-1 .43c-2.24.29-4.39-1.27-6.64-1.11-2.77.2-4.8 2.88-7.53 3.32a8.45 8.45 0 01-5-1.11 5.35 5.35 0 01-1.83-1.3 2.7 2.7 0 00-.37 2.33 3.9 3.9 0 002.2 2 8.45 8.45 0 005 1.11c2.73-.44 4.76-3.12 7.53-3.32 2.25-.16 4.4 1.4 6.64 1.11a1.5 1.5 0 001-.43 1.73 1.73 0 00.33-.76q2.52-10 4.4-20.24a21.8 21.8 0 011.5-5.52 7.14 7.14 0 014-3.88c2.67-.87 5.67.6 7.38 2.83s2.36 5.08 2.82 7.85.75 5.62 1.88 8.19a4.78 4.78 0 001.82 2.34c1.5.87 3.52.18 4.67-1.12a10.47 10.47 0 002-4.75 14.41 14.41 0 011.69-4.9c1.58-2.36 4.47-3.42 7.23-4.1s5.67-1.13 8-2.78a16.4 16.4 0 004.38-5.44c1.48-2.57 2.86-5.37 2.74-8.34a10.74 10.74 0 00-.12-1.14 19.65 19.65 0 01-2.62 6.45z",
330
+ transform: "translate(-95.23 -55.03)"
331
+ })
332
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
333
+ d: "M451.33 188.75a35.33 35.33 0 014.45 14.85c-8.91-5-17.29-10.49-21.52-12.4-7.37-3.33-34.93-2.83-45.29-2.52a34.93 34.93 0 013.78-5.46A36.18 36.18 0 01401 176a35.77 35.77 0 0150.38 12.73zM483.13 212.58c-4.81 1.48-12.66-1.38-20.8-5.48a39.22 39.22 0 01-3.07-4.52l27.46 5.18c1.82 1.24 2.28 3.01-3.59 4.82z",
334
+ opacity: "0.1",
335
+ transform: "translate(-95.23 -55.03)"
336
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
337
+ fill: "#444053",
338
+ d: "M422.26 154.08s-26.25-1.5-33.63 12.75l-1.19 12.63-2-.22-.4 8.59s40.12-1.75 49.25 2.37 37.5 24.88 48.87 21.38-1-6.75-1-6.75-15.65-6.63-15.65-11.83-3.88-32.67-44.25-38.92z",
339
+ transform: "translate(-95.23 -55.03)"
340
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
341
+ d: "M371.63 622.28s16.75 16.25 24 15c0 0-20.5-1.75-24-15zM368.13 629.81s1.5 8.36 5.5 7.54-5.5-7.54-5.5-7.54zM394.38 769.53s-23.78 18.5-19.77 19 19.77-19 19.77-19z",
342
+ opacity: "0.1",
343
+ transform: "translate(-95.23 -55.03)"
344
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
345
+ fill: "#1976d2",
346
+ d: "M330.96 347.33L407.96 334.8 407.96 407.7 334.8 403.87 330.96 347.33z"
347
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
348
+ d: "M330.96 347.33L407.96 334.8 407.96 407.7 334.8 403.87 330.96 347.33z",
349
+ opacity: "0.05"
350
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
351
+ fill: "#1976d2",
352
+ d: "M407.96 334.8L500.3 341.71 495.19 405.15 407.96 407.7 407.96 334.8z"
353
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
354
+ d: "M407.96 334.8L500.3 341.71 495.19 405.15 407.96 407.7 407.96 334.8z",
355
+ opacity: "0.1"
356
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
357
+ fill: "#1976d2",
358
+ d: "M436.35 312.55L407.96 334.8 500.3 341.71 515.39 318.94 436.35 312.55z"
359
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
360
+ fill: "#1976d2",
361
+ d: "M303.08 323.03L372.4 314.59 407.96 334.8 330.96 347.33 303.08 323.03z"
362
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
363
+ fill: "#1976d2",
364
+ d: "M424.84 353.73L424.84 453.4 388.77 449.7 373.08 448.1 368.3 447.6 352.62 445.99 330.96 443.77 330.96 347.33 407.95 352.57 424.84 353.73z"
365
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
366
+ fill: "#1976d2",
367
+ d: "M500.3 341.71L500.3 438.91 471.39 444.46 457.33 447.16 424.84 453.4 424.84 353.73 500.3 341.71z"
368
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
369
+ d: "M500.3 341.71L500.3 438.91 471.39 444.46 457.33 447.16 424.84 453.4 424.84 353.73 500.3 341.71z",
370
+ opacity: "0.05"
371
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
372
+ fill: "#1976d2",
373
+ d: "M303.08 368.31L330.96 347.33 424.84 353.73 411.02 377.01 303.08 368.31z"
374
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
375
+ fill: "#fff",
376
+ d: "M303.08 368.31L330.96 347.33 424.84 353.73 411.02 377.01 303.08 368.31z",
377
+ opacity: "0.1"
378
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
379
+ fill: "#1976d2",
380
+ d: "M500.3 341.71L424.84 353.73 449.4 375.73 530.23 362.17 500.3 341.71z"
381
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
382
+ fill: "#fff",
383
+ d: "M500.3 341.71L424.84 353.73 449.4 375.73 530.23 362.17 500.3 341.71z",
384
+ opacity: "0.1"
385
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
386
+ fill: "#fff",
387
+ d: "M471.39 444.46L457.33 447.16 457.33 426.39 470.5 423.07 471.39 444.46z",
388
+ opacity: "0.1"
389
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
390
+ fill: "#fff",
391
+ d: "M388.77 435.96L388.77 449.7 373.08 448.1 373.08 435.96 388.77 435.96z",
392
+ opacity: "0.1"
393
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
394
+ fill: "#fff",
395
+ d: "M368.3 440.29L368.3 447.6 352.62 445.99 352.62 440.29 368.3 440.29z",
396
+ opacity: "0.1"
397
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
398
+ d: "M510.63 483.7c-10.75 13.75-46.25 4.25-46.25 4.25L438 460.43l-3.58-3.73 7-13s2 .66 5.34 1.82c17.68 6.18 72.92 26.61 63.87 38.18z",
399
+ opacity: "0.1",
400
+ transform: "translate(-95.23 -55.03)"
401
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
402
+ fill: "#efb7b9",
403
+ d: "M509.63 481.7c-10.75 13.75-46.25 4.25-46.25 4.25L437 458.43l-3.58-3.73 7-13s2 .66 5.34 1.82c17.68 6.18 72.92 26.61 63.87 38.18z",
404
+ transform: "translate(-95.23 -55.03)"
405
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
406
+ d: "M445.72 443.52c-1.46 4.2-5.17 10.42-8.76 14.91l-3.58-3.73 7-13s2.01.66 5.34 1.82z",
407
+ opacity: "0.1",
408
+ transform: "translate(-95.23 -55.03)"
409
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
410
+ fill: "#dce6f2",
411
+ d: "M358.38 288s-26.25 10-26.5 38a460.08 460.08 0 003 54s-7.5 41.75 13.75 53.75 41 22 41 22 33.95 5.5 38.12 7.25 18.66-20.75 16.41-24.5-33.16-13-36.83-19.25-12.71-10.46-12.71-10.46-9.22-6.29-9.59-11.54 2.35-9 3.12-11.25 3.56-24.25 3.56-24.25 14.92-78.05-33.33-73.75z",
412
+ transform: "translate(-95.23 -55.03)"
413
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
414
+ d: "M370.38 380.7s-35.5 4-32.75 16.5c0 0 13.49-12.61 32.75-16.5zM370.38 385.7s-20.15 14.75-16.45 15.75 16.45-15.75 16.45-15.75zM379.38 391.7s-5.75 10.34-2.5 9.8 2.5-9.8 2.5-9.8z",
415
+ opacity: "0.1",
416
+ transform: "translate(-95.23 -55.03)"
417
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
418
+ fill: "#1976d2",
419
+ d: "M749 167.42s-38-2.29-33.56 24.37c0 0-.89 4.71 3.38 6.85 0 0 .07-2 3.9-1.31a17.51 17.51 0 004.13.2 8.57 8.57 0 005.06-2.09s10.69-4.41 14.85-21.89c0 0 3.08-3.82 3-4.8l-6.42 2.75s2.19 4.63.46 8.48c0 0-.2-8.31-1.44-8.12-.25 0-3.33 1.61-3.33 1.61s3.77 8.06.92 13.93c0 0 1.08-9.94-2.1-13.35l-4.52 2.64s4.41 8.33 1.42 15.13c0 0 .77-10.43-2.37-14.49l-4.1 3.19s4.15 8.22 1.62 13.86c0 0-.33-12.14-2.51-13.06 0 0-3.58 3.16-4.12 4.46 0 0 2.83 6 1.07 9.11 0 0-1.08-8.09-2-8.13 0 0-3.57 5.36-3.94 9a19.46 19.46 0 013.07-9.54 10.71 10.71 0 00-5.46 2.83s.55-3.79 6.34-4.12c0 0 3-4.07 3.74-4.32 0 0-5.76-.48-9.25 1.07 0 0 3.07-3.57 10.31-2l4-3.3s-7.58-1-10.8.11c0 0 3.7-3.16 11.89-.86l4.4-2.63s-6.46-1.4-10.31-.89c0 0 4.06-2.19 11.6.18l3.15-1.41s-4.74-.93-6.12-1.08-1.46-.53-1.46-.53a16.36 16.36 0 018.89 1s6.75-2.43 6.61-2.85z",
420
+ transform: "translate(-95.23 -55.03)"
421
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
422
+ fill: "#1976d2",
423
+ d: "M864.46 300.76s-38-2.29-33.56 24.37c0 0-.89 4.71 3.38 6.85 0 0 .07-2 3.91-1.31a17.51 17.51 0 004.13.2 8.56 8.56 0 005-2.08s10.7-4.42 14.86-21.9c0 0 3.07-3.81 2.95-4.79l-6.42 2.74s2.19 4.63.47 8.48c0 0-.21-8.31-1.44-8.12-.25 0-3.34 1.61-3.34 1.61s3.78 8.07.93 13.93c0 0 1.08-9.94-2.11-13.35l-4.47 2.61s4.41 8.33 1.42 15.13c0 0 .77-10.43-2.37-14.49l-4.09 3.2s4.14 8.21 1.62 13.85c0 0-.33-12.14-2.51-13.06 0 0-3.58 3.16-4.13 4.46 0 0 2.84 6 1.08 9.11 0 0-1.08-8.09-2-8.13 0 0-3.57 5.36-3.94 9a19.52 19.52 0 013.08-9.54 10.76 10.76 0 00-5.47 2.83s.56-3.79 6.35-4.12c0 0 2.95-4.07 3.74-4.32 0 0-5.76-.48-9.25 1.07 0 0 3.07-3.57 10.3-1.95l4-3.3s-7.59-1-10.8.11c0 0 3.7-3.16 11.89-.86l4.4-2.63s-6.47-1.39-10.32-.89c0 0 4.07-2.19 11.61.18l3.15-1.41s-4.74-.93-6.13-1.08-1.46-.53-1.46-.53a16.39 16.39 0 018.9 1s6.76-2.45 6.64-2.87zM633.61 277.09s8.75-37.09-18.29-37.22c0 0-4.49-1.68-7.32 2.16 0 0 1.93.41.62 4.07a17.8 17.8 0 00-.9 4 8.59 8.59 0 001.19 5.33s2.53 11.3 19 18.38c0 0 3.24 3.68 4.22 3.72l-1.6-6.79s-4.94 1.37-8.44-1c0 0 8.23 1.21 8.24 0 0-.25-1-3.56-1-3.56s-8.59 2.34-13.89-1.47c0 0 9.61 2.76 13.52.21l-1.8-4.92s-9 2.93-15.16-1.18c0 0 10.15 2.54 14.69.14l-2.45-4.58s-8.8 2.68-13.93-.77c0 0 12 1.74 13.3-.24 0 0-2.5-4.07-3.69-4.83 0 0-6.36 1.78-9.16-.49 0 0 8.15.31 8.34-.55 0 0-4.67-4.43-8.23-5.43a19.6 19.6 0 018.89 4.66 10.79 10.79 0 00-1.86-5.87s3.64 1.2 3 7c0 0 3.5 3.6 3.61 4.42 0 0 1.45-5.59.52-9.3 0 0 3 3.64.17 10.49l2.56 4.55s2.32-7.3 1.73-10.66c0 0 2.49 4.18-1.18 11.86l1.85 4.79s2.47-6.14 2.63-10c0 0 1.47 4.38-2.16 11.41l.86 3.34s1.72-4.51 2.1-5.85.77-1.35.77-1.35a16.38 16.38 0 01-2.49 8.6s1.31 6.98 1.74 6.93zM550.39 289.73s-30.52-22.83-41.43 1.9c0 0-3.33 3.45-.94 7.58 0 0 1.14-1.61 4 1.06a17.51 17.51 0 003.34 2.44 8.58 8.58 0 005.37 1s11.36 2.19 24.44-10.12c0 0 4.67-1.5 5.11-2.38l-6.89-1.21s-.72 5.07-4.27 7.34c0 0 4.39-7.06 3.25-7.57-.23-.11-3.67-.5-3.67-.5s-1.28 8.82-6.88 12.15c0 0 6.37-7.71 5.58-12.31l-5.23-.28s-.89 9.39-7.13 13.43c0 0 6.37-8.29 6-13.41l-5.18.42s-1.05 9.13-6.26 12.45c0 0 6.39-10.32 5.08-12.28 0 0-4.73.67-5.9 1.45 0 0-.91 6.54-4.11 8.2 0 0 3.55-7.35 2.83-7.86 0 0-5.93 2.51-8.26 5.37a19.53 19.53 0 017.82-6.28 10.77 10.77 0 00-6.12-.64s2.54-2.86 7.56.05c0 0 4.7-1.77 5.5-1.55 0 0-4.55-3.57-8.32-4.19 0 0 4.54-1.3 9.69 4l5.19-.53s-5.77-5-9.08-5.84c0 0 4.83-.61 10.4 5.81l5.12.23s-4.63-4.72-8.12-6.42c0 0 4.59.4 9.59 6.53l3.41.55s-3.45-3.38-4.53-4.26-.93-1.25-.93-1.25a16.43 16.43 0 016.89 5.72s6.95 1.61 7.08 1.2zM652 77.62s-30.52-22.84-41.43 1.9c0 0-3.33 3.45-.94 7.58 0 0 1.14-1.61 4 1.06a17.79 17.79 0 003.35 2.43 8.57 8.57 0 005.37 1s11.36 2.19 24.44-10.13c0 0 4.67-1.49 5.1-2.38L645 77.89s-.71 5.07-4.27 7.34c0 0 4.4-7.06 3.26-7.57-.23-.11-3.67-.5-3.67-.5S639 86 633.4 89.31c0 0 6.36-7.71 5.58-12.31l-5.23-.28s-.9 9.39-7.13 13.42c0 0 6.37-8.29 6-13.41l-5.17.42s-1.06 9.14-6.27 12.46c0 0 6.4-10.32 5.09-12.28 0 0-4.73.67-5.9 1.45 0 0-.91 6.54-4.11 8.2 0 0 3.55-7.35 2.83-7.87 0 0-5.93 2.52-8.26 5.38a19.44 19.44 0 017.82-6.28 10.7 10.7 0 00-6.13-.64s2.55-2.86 7.57.05c0 0 4.7-1.78 5.5-1.55 0 0-4.55-3.57-8.32-4.2 0 0 4.53-1.29 9.68 4l5.19-.53s-5.76-5-9.08-5.85c0 0 4.83-.6 10.41 5.82l5.12.22s-4.63-4.72-8.13-6.41c0 0 4.6.4 9.6 6.53l3.4.55s-3.46-3.34-4.54-4.2-.93-1.24-.93-1.24a16.4 16.4 0 016.89 5.72s6.95 1.52 7.12 1.14zM768.62 106.55s-12.2-36.11-35.21-21.92c0 0-4.7 1-5.07 5.71 0 0 1.85-.68 2.67 3.12a18 18 0 001.37 3.91 8.66 8.66 0 003.84 3.89s8.12 8.25 25.88 5.52c0 0 4.69 1.42 5.55.93l-5-4.91s-3.46 3.77-7.68 3.62c0 0 7.63-3.32 7-4.39-.13-.21-2.74-2.48-2.74-2.48s-6.06 6.53-12.56 6.1c0 0 9.61-2.74 11.57-7l-4.14-3.19s-6.06 7.22-13.49 7c0 0 10-3.21 12.53-7.65l-4.5-2.59s-6 6.93-12.22 6.71c0 0 11.12-4.87 11.15-7.23 0 0-4.27-2.13-5.68-2.15 0 0-4.46 4.87-8 4.43 0 0 7.08-4.05 6.78-4.88 0 0-6.3-1.29-9.85-.25a19.49 19.49 0 0110-.75 10.79 10.79 0 00-4.69-4s3.72-.91 6.21 4.33c0 0 4.88 1.21 5.4 1.84 0 0-1.72-5.51-4.47-8.17 0 0 4.47 1.51 5.69 8.82l4.58 2.5s-1.89-7.41-4.17-10c0 0 4.33 2.24 5.27 10.69l4.1 3.09s-1.14-6.52-3.06-9.9c0 0 3.56 2.94 4.2 10.83l2.49 2.38s-.92-4.74-1.3-6.08S761 93 761 93a16.49 16.49 0 012.43 8.62s4.84 5.19 5.19 4.93zM689 108.33s-37.9-4.22-34.77 22.67c0 0-1.13 4.66 3 7 0 0 .17-2 4-1.1a18.4 18.4 0 004.12.41 8.6 8.6 0 005.15-1.83s10.91-3.87 16-21.12c0 0 3.26-3.65 3.19-4.64l-6.55 2.42s2 4.73 0 8.49c0 0 .21-8.31-1-8.18-.25 0-3.41 1.44-3.41 1.44s3.36 8.25.22 14c0 0 1.58-9.88-1.43-13.44l-4.65 2.4s4 8.55.65 15.19c0 0 1.3-10.38-1.63-14.59l-4.25 3s3.72 8.41.91 13.92c0 0 .29-12.14-1.84-13.17 0 0-3.74 3-4.35 4.24 0 0 2.53 6.1.62 9.15 0 0-.67-8.13-1.55-8.21 0 0-3.84 5.17-4.4 8.82a19.47 19.47 0 013.56-9.38 10.76 10.76 0 00-5.6 2.55s.74-3.75 6.54-3.79c0 0 3.15-3.91 4-4.12 0 0-5.73-.77-9.3.6 0 0 3.25-3.42 10.39-1.43l4.21-3.09S663.22 115 660 116c0 0 3.86-3 11.92-.25l4.53-2.41s-6.39-1.72-10.26-1.41c0 0 4.17-2 11.58.77l3.22-1.25s-4.69-1.17-6.07-1.39-1.43-.6-1.43-.6a16.45 16.45 0 018.84 1.44s6.74-2.15 6.67-2.57zM1020.6 402.5s-37.88-4.22-34.75 22.64c0 0-1.13 4.66 3 7 0 0 .17-2 4-1.11a17.3 17.3 0 004.12.41 8.53 8.53 0 005.15-1.83s10.91-3.87 15.95-21.11c0 0 3.26-3.66 3.19-4.64l-6.55 2.41s2 4.74 0 8.5c0 0 .21-8.32-1-8.18-.25 0-3.41 1.43-3.41 1.43s3.36 8.25.22 14c0 0 1.58-9.87-1.43-13.44l-4.65 2.41s4 8.55.66 15.19c0 0 1.29-10.38-1.64-14.6l-4.25 3s3.72 8.41.91 13.91c0 0 .29-12.14-1.84-13.16 0 0-3.73 3-4.35 4.24 0 0 2.54 6.1.62 9.15 0 0-.67-8.13-1.55-8.21 0 0-3.84 5.17-4.4 8.82a19.47 19.47 0 013.56-9.38 10.67 10.67 0 00-5.6 2.55s.74-3.76 6.54-3.8c0 0 3.16-3.91 4-4.11 0 0-5.73-.78-9.3.59 0 0 3.25-3.41 10.4-1.42l4.2-3.09s-7.52-1.42-10.79-.44c0 0 3.86-3 11.92-.26l4.53-2.4s-6.39-1.72-10.26-1.41c0 0 4.17-2 11.58.77l3.22-1.26s-4.69-1.17-6.07-1.38-1.43-.6-1.43-.6a16.39 16.39 0 018.84 1.43s6.76-2.19 6.66-2.62zM1078.51 437.88s-37.88-4.21-34.75 22.64c0 0-1.12 4.66 3 7 0 0 .17-2 4-1.1a17.65 17.65 0 004.11.4A8.64 8.64 0 001060 465s10.9-3.87 15.94-21.12c0 0 3.27-3.65 3.19-4.64l-6.55 2.41s2 4.74 0 8.5c0 0 .21-8.31-1-8.18-.25 0-3.41 1.43-3.41 1.43s3.36 8.25.22 14c0 0 1.58-9.87-1.43-13.43l-4.65 2.4s4 8.55.66 15.19c0 0 1.29-10.38-1.64-14.59l-4.25 3s3.72 8.41.92 13.92c0 0 .28-12.15-1.85-13.17 0 0-3.73 3-4.35 4.24 0 0 2.54 6.1.62 9.15 0 0-.67-8.13-1.55-8.21 0 0-3.84 5.17-4.39 8.82a19.52 19.52 0 013.55-9.38 10.76 10.76 0 00-5.6 2.55s.75-3.76 6.55-3.79c0 0 3.15-3.91 4-4.12 0 0-5.73-.77-9.3.6 0 0 3.25-3.42 10.4-1.43l4.2-3.09s-7.52-1.42-10.79-.44c0 0 3.86-3 11.92-.25l4.53-2.41s-6.39-1.72-10.26-1.41c0 0 4.17-2 11.58.77l3.22-1.25s-4.69-1.17-6.06-1.39-1.44-.6-1.44-.6a16.45 16.45 0 018.84 1.44s6.79-2.21 6.69-2.64zM949.94 139.87s-30.52-22.83-41.43 1.9c0 0-3.33 3.45-.94 7.58 0 0 1.14-1.61 4 1.06a17.51 17.51 0 003.34 2.44 8.59 8.59 0 005.37 1s11.36 2.19 24.45-10.12c0 0 4.66-1.5 5.1-2.38l-6.87-1.24s-.72 5.07-4.27 7.34c0 0 4.39-7.06 3.25-7.57-.23-.11-3.66-.5-3.66-.5s-1.29 8.82-6.89 12.15c0 0 6.37-7.71 5.58-12.31l-5.23-.28s-.89 9.39-7.13 13.43c0 0 6.38-8.29 6-13.41l-5.18.42s-1 9.13-6.26 12.45c0 0 6.4-10.32 5.08-12.28 0 0-4.73.67-5.9 1.45 0 0-.9 6.54-4.1 8.2 0 0 3.54-7.35 2.82-7.86 0 0-5.93 2.51-8.26 5.37a19.53 19.53 0 017.82-6.28 10.77 10.77 0 00-6.12-.64s2.55-2.86 7.57.05c0 0 4.69-1.77 5.49-1.55 0 0-4.55-3.57-8.32-4.19 0 0 4.54-1.3 9.69 4l5.19-.53s-5.76-5-9.08-5.84c0 0 4.83-.61 10.4 5.81l5.13.23s-4.64-4.72-8.13-6.42c0 0 4.6.4 9.59 6.53l3.41.55s-3.45-3.38-4.53-4.26S936 133 936 133a16.44 16.44 0 016.88 5.72s6.93 1.56 7.06 1.15zM973.52 304.69s-10.52-36.63-34.18-23.48c0 0-4.74.73-5.33 5.47 0 0 1.88-.59 2.53 3.24a17.73 17.73 0 001.2 4 8.59 8.59 0 003.66 4.08s7.74 8.6 25.6 6.68c0 0 4.62 1.62 5.5 1.18l-4.73-5.14s-3.63 3.62-7.83 3.28c0 0 7.76-3 7.16-4.07-.12-.22-2.62-2.61-2.62-2.61s-6.34 6.26-12.82 5.53c0 0 9.73-2.3 11.87-6.44l-4-3.38s-6.38 6.94-13.79 6.4c0 0 10.08-2.77 12.86-7.08l-4.38-2.79s-6.35 6.65-12.51 6.15c0 0 11.33-4.37 11.47-6.72 0 0-4.18-2.32-5.59-2.4 0 0-4.67 4.66-8.22 4.06 0 0 7.26-3.73 7-4.57 0 0-6.24-1.57-9.83-.7a19.51 19.51 0 0110-.29 10.73 10.73 0 00-4.5-4.2s3.76-.75 6 4.6c0 0 4.81 1.42 5.31 2.08 0 0-1.47-5.59-4.1-8.36 0 0 4.4 1.7 5.29 9.06l4.46 2.71s-1.56-7.5-3.72-10.14c0 0 4.22 2.43 4.79 10.91l4 3.27s-.85-6.56-2.61-10c0 0 3.43 3.1 3.71 11l2.38 2.5s-.7-4.78-1-6.14 0-1.55 0-1.55a16.39 16.39 0 012.05 8.72s4.56 5.38 4.92 5.14zM739.1 387.23s-20.43-32.18-39.4-12.92c0 0-4.34 2-3.58 6.75 0 0 1.65-1.1 3.35 2.4a17.12 17.12 0 002.26 3.46 8.54 8.54 0 004.65 2.88s9.85 6.08 26.45-.8c0 0 4.89.26 5.61-.41l-6-3.6s-2.47 4.5-6.6 5.35c0 0 6.62-5 5.73-5.92-.17-.18-3.25-1.76-3.25-1.76s-4.33 7.78-10.75 8.91c0 0 8.69-4.95 9.59-9.53l-4.79-2.11s-4.17 8.45-11.43 10c0 0 8.9-5.49 10.35-10.41l-5-1.44s-4.22 8.17-10.27 9.42c0 0 9.64-7.38 9.11-9.68 0 0-4.66-1.05-6-.73 0 0-3.17 5.79-6.75 6.21 0 0 5.92-5.62 5.43-6.36 0 0-6.43.25-9.63 2.1a19.46 19.46 0 019.54-3.1 10.73 10.73 0 00-5.49-2.77s3.39-1.77 7 2.73c0 0 5 0 5.69.5 0 0-3-5-6.29-6.87 0 0 4.7.4 7.62 7.21l5.05 1.34s-3.61-6.75-6.42-8.68c0 0 4.73 1.14 7.66 9.13l4.72 2s-2.66-6.05-5.33-8.88c0 0 4.16 2 6.65 9.51l3 1.73s-2-4.39-2.71-5.6-.43-1.49-.43-1.49a16.4 16.4 0 014.41 7.79s5.98 3.98 6.25 3.64z",
424
+ opacity: "0.1",
425
+ transform: "translate(-95.23 -55.03)"
426
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
427
+ fill: "#1976d2",
428
+ d: "M873.37 222.81s-19.43-32.79-39-14.13c0 0-4.4 1.9-3.78 6.64 0 0 1.67-1.06 3.27 2.49a17.28 17.28 0 002.15 3.54 8.49 8.49 0 004.56 3s9.65 6.38 26.46 0c0 0 4.88.41 5.62-.24l-5.87-3.78s-2.6 4.41-6.76 5.14c0 0 6.77-4.83 5.92-5.74-.18-.19-3.2-1.87-3.2-1.87s-4.57 7.65-11 8.58c0 0 8.84-4.68 9.87-9.22l-4.72-2.22s-4.43 8.33-11.74 9.66c0 0 9.07-5.21 10.67-10.08l-4.94-1.6s-4.48 8-10.56 9.1c0 0 9.86-7.08 9.4-9.39 0 0-4.62-1.2-6-.92 0 0-3.35 5.69-6.94 6 0 0 6.09-5.42 5.63-6.18 0 0-6.44.05-9.69 1.8a19.52 19.52 0 019.63-2.8 10.75 10.75 0 00-5.41-2.94s3.45-1.67 7 2.94c0 0 5 .17 5.67.68 0 0-2.83-5-6.07-7.06 0 0 4.68.54 7.39 7.44l5 1.5s-3.39-6.86-6.15-8.88c0 0 4.7 1.29 7.38 9.36l4.65 2.17s-2.47-6.13-5-9c0 0 4.09 2.13 6.36 9.71l2.93 1.82s-1.88-4.45-2.54-5.68-.38-1.5-.38-1.5a16.43 16.43 0 014.17 7.92s5.73 4.07 6.02 3.74zM750.44 291.76s1-38.1-25.47-32.73c0 0-4.74-.73-6.74 3.61 0 0 2 0 1.44 3.85a17.56 17.56 0 00-.06 4.14 8.55 8.55 0 002.25 5s4.77 10.54 22.38 14.12c0 0 3.91 2.95 4.89 2.79l-3-6.32s-4.55 2.34-8.46.75c0 0 8.3-.49 8.07-1.71 0-.25-1.72-3.29-1.72-3.29s-7.94 4.05-13.89 1.39c0 0 10 .75 13.27-2.54l-2.79-4.43s-8.18 4.68-15.08 1.92c0 0 10.45.42 14.41-2.85l-3.33-4s-8.07 4.42-13.79 2.08c0 0 12.12-.73 13-2.94 0 0-3.28-3.47-4.6-4 0 0-5.86 3-9.06 1.38 0 0 8-1.34 8.05-2.23 0 0-5.47-3.39-9.16-3.64a19.47 19.47 0 019.65 2.76 10.75 10.75 0 00-3-5.37s3.81.43 4.33 6.2c0 0 4.17 2.82 4.44 3.6 0 0 .29-5.77-1.38-9.21 0 0 3.68 2.95 2.3 10.23l3.43 3.94s.78-7.62-.47-10.79c0 0 3.28 3.59 1.26 11.85l2.77 4.31s1.18-6.51.55-10.34c0 0 2.32 4 .2 11.61l1.52 3.1s.77-4.77.87-6.16.48-1.48.48-1.48a16.42 16.42 0 01-.69 8.93s2.69 6.6 3.13 6.47z",
429
+ transform: "translate(-95.23 -55.03)"
430
+ }), /*#__PURE__*/jsxRuntime.jsx("ellipse", {
431
+ cx: "698.97",
432
+ cy: "716.3",
433
+ fill: "#1976d2",
434
+ opacity: "0.1",
435
+ rx: "26.93",
436
+ ry: "4.55"
437
+ }), /*#__PURE__*/jsxRuntime.jsx("ellipse", {
438
+ cx: "600.8",
439
+ cy: "785.38",
440
+ fill: "#1976d2",
441
+ opacity: "0.1",
442
+ rx: "26.93",
443
+ ry: "4.55"
444
+ }), /*#__PURE__*/jsxRuntime.jsx("ellipse", {
445
+ cx: "93.14",
446
+ cy: "749.99",
447
+ fill: "#1976d2",
448
+ opacity: "0.1",
449
+ rx: "26.93",
450
+ ry: "4.55"
451
+ }), /*#__PURE__*/jsxRuntime.jsx("ellipse", {
452
+ cx: "805.06",
453
+ cy: "780.83",
454
+ fill: "#1976d2",
455
+ opacity: "0.1",
456
+ rx: "26.93",
457
+ ry: "4.55"
458
+ }), /*#__PURE__*/jsxRuntime.jsx("ellipse", {
459
+ cx: "833.1",
460
+ cy: "723.1",
461
+ fill: "#1976d2",
462
+ rx: "40.21",
463
+ ry: "6.8"
464
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
465
+ fill: "#1976d2",
466
+ d: "M945 767a11.61 11.61 0 003.83-5.78c.5-2.3-.48-5.05-2.67-5.89-2.46-.94-5.09.76-7.09 2.48s-4.27 3.69-6.88 3.33a10.5 10.5 0 003.24-9.81 4.11 4.11 0 00-.9-2c-1.37-1.46-3.84-.83-5.48.32-5.2 3.66-6.65 10.72-6.68 17.08-.52-2.29-.08-4.68-.09-7s-.66-5-2.65-6.22a7.91 7.91 0 00-4-1c-2.34-.08-4.95.15-6.54 1.86-2 2.12-1.47 5.69.25 8s4.35 3.8 6.77 5.42a15.13 15.13 0 014.84 4.61 4.7 4.7 0 01.35.82h14.66A40.44 40.44 0 00945 767z",
467
+ transform: "translate(-95.23 -55.03)"
468
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
469
+ fill: "#a8a8a8",
470
+ d: "M170.29 783.87s15.35-.47 20-3.77 23.63-7.23 24.78-1.94 23.08 26.29 5.74 26.43-40.29-2.7-44.91-5.52-5.61-15.2-5.61-15.2z",
471
+ transform: "translate(-95.23 -55.03)"
472
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
473
+ d: "M221.1 802.75c-17.34.14-40.29-2.7-44.91-5.52-3.52-2.14-4.92-9.83-5.39-13.38h-.51s1 12.39 5.59 15.2 27.57 5.66 44.91 5.52c5 0 6.73-1.82 6.64-4.46-.7 1.61-2.61 2.61-6.33 2.64z",
474
+ opacity: "0.2",
475
+ transform: "translate(-95.23 -55.03)"
476
+ })]
477
+ });
480
478
  };
481
479
 
482
480
  function getDefaultExportFromCjs (x) {
@@ -1194,11 +1192,13 @@ var withScale = function withScale(Render) {
1194
1192
  getScaleProps: generateGetScaleProps(props),
1195
1193
  getAllScaleProps: generateGetAllScaleProps(props)
1196
1194
  };
1197
- return /*#__PURE__*/React.createElement(ScaleContext.Provider, {
1198
- value: value
1199
- }, /*#__PURE__*/React.createElement(Render, _extends({}, props, {
1200
- ref: ref
1201
- }), children));
1195
+ return /*#__PURE__*/jsxRuntime.jsx(ScaleContext.Provider, {
1196
+ value: value,
1197
+ children: /*#__PURE__*/jsxRuntime.jsx(Render, _objectSpread2(_objectSpread2({}, props), {}, {
1198
+ ref: ref,
1199
+ children: children
1200
+ }))
1201
+ });
1202
1202
  });
1203
1203
  ScaleFC.displayName = "Scale".concat(Render.displayName || 'Wrapper');
1204
1204
  return ScaleFC;
@@ -1259,12 +1259,14 @@ var TextChild = function TextChild(_ref) {
1259
1259
  }, '');
1260
1260
  return "".concat(scaleClassNames, " ").concat(className).trim();
1261
1261
  }, [mx, my, px, py, font, className]);
1262
- return /*#__PURE__*/React.createElement(Component, _extends({}, props, {
1263
- className: _JSXStyle.dynamic([["2277774325", [tag, _color, SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.font(1, 'inherit'), SCALES.ml(0, 'revert'), SCALES.mr(0, 'revert'), SCALES.mt(0, 'revert'), SCALES.mb(0, 'revert'), SCALES.pl(0, 'revert'), SCALES.pr(0, 'revert'), SCALES.pt(0, 'revert'), SCALES.pb(0, 'revert')]]]) + " " + (props && props.className != null && props.className || classNames || "")
1264
- }), children, /*#__PURE__*/React.createElement(_JSXStyle, {
1265
- id: "2277774325",
1266
- dynamic: [tag, _color, SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.font(1, 'inherit'), SCALES.ml(0, 'revert'), SCALES.mr(0, 'revert'), SCALES.mt(0, 'revert'), SCALES.mb(0, 'revert'), SCALES.pl(0, 'revert'), SCALES.pr(0, 'revert'), SCALES.pt(0, 'revert'), SCALES.pb(0, 'revert')]
1267
- }, "".concat(tag, ".__jsx-style-dynamic-selector{color:").concat(_color, ";width:").concat(SCALES.width(1, 'auto'), ";height:").concat(SCALES.height(1, 'auto'), ";}.font.__jsx-style-dynamic-selector{font-size:").concat(SCALES.font(1, 'inherit'), ";}.mx.__jsx-style-dynamic-selector{margin-left:").concat(SCALES.ml(0, 'revert'), ";margin-right:").concat(SCALES.mr(0, 'revert'), ";}.my.__jsx-style-dynamic-selector{margin-top:").concat(SCALES.mt(0, 'revert'), ";margin-bottom:").concat(SCALES.mb(0, 'revert'), ";}.px.__jsx-style-dynamic-selector{padding-left:").concat(SCALES.pl(0, 'revert'), ";padding-right:").concat(SCALES.pr(0, 'revert'), ";}.py.__jsx-style-dynamic-selector{padding-top:").concat(SCALES.pt(0, 'revert'), ";padding-bottom:").concat(SCALES.pb(0, 'revert'), ";}.no-wrap.__jsx-style-dynamic-selector{white-space:nowrap;}")));
1262
+ return /*#__PURE__*/jsxRuntime.jsxs(Component, _objectSpread2(_objectSpread2({}, props), {}, {
1263
+ className: _JSXStyle.dynamic([["2277774325", [tag, _color, SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.font(1, 'inherit'), SCALES.ml(0, 'revert'), SCALES.mr(0, 'revert'), SCALES.mt(0, 'revert'), SCALES.mb(0, 'revert'), SCALES.pl(0, 'revert'), SCALES.pr(0, 'revert'), SCALES.pt(0, 'revert'), SCALES.pb(0, 'revert')]]]) + " " + (props && props.className != null && props.className || classNames || ""),
1264
+ children: [children, /*#__PURE__*/jsxRuntime.jsx(_JSXStyle, {
1265
+ id: "2277774325",
1266
+ dynamic: [tag, _color, SCALES.width(1, 'auto'), SCALES.height(1, 'auto'), SCALES.font(1, 'inherit'), SCALES.ml(0, 'revert'), SCALES.mr(0, 'revert'), SCALES.mt(0, 'revert'), SCALES.mb(0, 'revert'), SCALES.pl(0, 'revert'), SCALES.pr(0, 'revert'), SCALES.pt(0, 'revert'), SCALES.pb(0, 'revert')],
1267
+ children: "".concat(tag, ".__jsx-style-dynamic-selector{color:").concat(_color, ";width:").concat(SCALES.width(1, 'auto'), ";height:").concat(SCALES.height(1, 'auto'), ";}.font.__jsx-style-dynamic-selector{font-size:").concat(SCALES.font(1, 'inherit'), ";}.mx.__jsx-style-dynamic-selector{margin-left:").concat(SCALES.ml(0, 'revert'), ";margin-right:").concat(SCALES.mr(0, 'revert'), ";}.my.__jsx-style-dynamic-selector{margin-top:").concat(SCALES.mt(0, 'revert'), ";margin-bottom:").concat(SCALES.mb(0, 'revert'), ";}.px.__jsx-style-dynamic-selector{padding-left:").concat(SCALES.pl(0, 'revert'), ";padding-right:").concat(SCALES.pr(0, 'revert'), ";}.py.__jsx-style-dynamic-selector{padding-top:").concat(SCALES.pt(0, 'revert'), ";padding-bottom:").concat(SCALES.pb(0, 'revert'), ";}.no-wrap.__jsx-style-dynamic-selector{white-space:nowrap;}")
1268
+ })]
1269
+ }));
1268
1270
  };
1269
1271
  TextChild.displayName = 'TextChild';
1270
1272
 
@@ -1290,35 +1292,40 @@ var ButtonDrip = function ButtonDrip(_ref) {
1290
1292
  dripRef.current.removeEventListener('animationend', onCompleted);
1291
1293
  };
1292
1294
  });
1293
- return /*#__PURE__*/React.createElement("div", {
1295
+ return /*#__PURE__*/jsxRuntime.jsxs("div", {
1294
1296
  ref: dripRef,
1295
- className: "jsx-3424889537" + " " + "drip"
1296
- }, /*#__PURE__*/React.createElement("svg", {
1297
- width: "20",
1298
- height: "20",
1299
- viewBox: "0 0 20 20",
1300
- style: {
1301
- top: top,
1302
- left: left
1303
- },
1304
- className: "jsx-3424889537"
1305
- }, /*#__PURE__*/React.createElement("g", {
1306
- stroke: "none",
1307
- strokeWidth: "1",
1308
- fill: "none",
1309
- fillRule: "evenodd",
1310
- className: "jsx-3424889537"
1311
- }, /*#__PURE__*/React.createElement("g", {
1312
- fill: color,
1313
- className: "jsx-3424889537"
1314
- }, /*#__PURE__*/React.createElement("rect", {
1315
- width: "100%",
1316
- height: "100%",
1317
- rx: "10",
1318
- className: "jsx-3424889537"
1319
- })))), /*#__PURE__*/React.createElement(_JSXStyle, {
1320
- id: "3424889537"
1321
- }, ".drip.jsx-3424889537{position:absolute;left:0;right:0;top:0;bottom:0;}svg.jsx-3424889537{position:absolute;-webkit-animation:350ms ease-in expand-jsx-3424889537;animation:350ms ease-in expand-jsx-3424889537;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;width:1rem;height:1rem;}@-webkit-keyframes expand-jsx-3424889537{0%{opacity:0;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);}30%{opacity:1;}80%{opacity:0.5;}100%{-webkit-transform:scale(28);-ms-transform:scale(28);transform:scale(28);opacity:0;}}@keyframes expand-jsx-3424889537{0%{opacity:0;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);}30%{opacity:1;}80%{opacity:0.5;}100%{-webkit-transform:scale(28);-ms-transform:scale(28);transform:scale(28);opacity:0;}}"));
1297
+ className: "jsx-3424889537" + " " + "drip",
1298
+ children: [/*#__PURE__*/jsxRuntime.jsx("svg", {
1299
+ width: "20",
1300
+ height: "20",
1301
+ viewBox: "0 0 20 20",
1302
+ style: {
1303
+ top: top,
1304
+ left: left
1305
+ },
1306
+ className: "jsx-3424889537",
1307
+ children: /*#__PURE__*/jsxRuntime.jsx("g", {
1308
+ stroke: "none",
1309
+ strokeWidth: "1",
1310
+ fill: "none",
1311
+ fillRule: "evenodd",
1312
+ className: "jsx-3424889537",
1313
+ children: /*#__PURE__*/jsxRuntime.jsx("g", {
1314
+ fill: color,
1315
+ className: "jsx-3424889537",
1316
+ children: /*#__PURE__*/jsxRuntime.jsx("rect", {
1317
+ width: "100%",
1318
+ height: "100%",
1319
+ rx: "10",
1320
+ className: "jsx-3424889537"
1321
+ })
1322
+ })
1323
+ })
1324
+ }), /*#__PURE__*/jsxRuntime.jsx(_JSXStyle, {
1325
+ id: "3424889537",
1326
+ children: ".drip.jsx-3424889537{position:absolute;left:0;right:0;top:0;bottom:0;}svg.jsx-3424889537{position:absolute;-webkit-animation:350ms ease-in expand-jsx-3424889537;animation:350ms ease-in expand-jsx-3424889537;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;width:1rem;height:1rem;}@-webkit-keyframes expand-jsx-3424889537{0%{opacity:0;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);}30%{opacity:1;}80%{opacity:0.5;}100%{-webkit-transform:scale(28);-ms-transform:scale(28);transform:scale(28);opacity:0;}}@keyframes expand-jsx-3424889537{0%{opacity:0;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);}30%{opacity:1;}80%{opacity:0.5;}100%{-webkit-transform:scale(28);-ms-transform:scale(28);transform:scale(28);opacity:0;}}"
1327
+ })]
1328
+ });
1322
1329
  };
1323
1330
  ButtonDrip.displayName = 'ButtonDrip';
1324
1331
 
@@ -1350,35 +1357,41 @@ var LoadingComponent = function LoadingComponent(_ref) {
1350
1357
  var bgColor = React.useMemo(function () {
1351
1358
  return getIconBgColor(type, theme$1.palette, color);
1352
1359
  }, [type, theme$1.palette, color]);
1353
- return /*#__PURE__*/React.createElement("div", _extends({}, props, {
1354
- className: _JSXStyle.dynamic([["2201634259", [SCALES.font(1), SCALES.width(1, '100%'), SCALES.height(1, '100%'), SCALES.pt(0), SCALES.pr(0), SCALES.pb(0), SCALES.pl(0), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.palette.accents_5, bgColor, spaceRatio]]]) + " " + (props && props.className != null && props.className || classes || "")
1355
- }), /*#__PURE__*/React.createElement("span", {
1356
- className: _JSXStyle.dynamic([["2201634259", [SCALES.font(1), SCALES.width(1, '100%'), SCALES.height(1, '100%'), SCALES.pt(0), SCALES.pr(0), SCALES.pb(0), SCALES.pl(0), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.palette.accents_5, bgColor, spaceRatio]]]) + " " + "loading"
1357
- }, children && /*#__PURE__*/React.createElement("label", {
1358
- className: _JSXStyle.dynamic([["2201634259", [SCALES.font(1), SCALES.width(1, '100%'), SCALES.height(1, '100%'), SCALES.pt(0), SCALES.pr(0), SCALES.pb(0), SCALES.pl(0), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.palette.accents_5, bgColor, spaceRatio]]])
1359
- }, children), /*#__PURE__*/React.createElement("i", {
1360
- className: _JSXStyle.dynamic([["2201634259", [SCALES.font(1), SCALES.width(1, '100%'), SCALES.height(1, '100%'), SCALES.pt(0), SCALES.pr(0), SCALES.pb(0), SCALES.pl(0), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.palette.accents_5, bgColor, spaceRatio]]])
1361
- }), /*#__PURE__*/React.createElement("i", {
1362
- className: _JSXStyle.dynamic([["2201634259", [SCALES.font(1), SCALES.width(1, '100%'), SCALES.height(1, '100%'), SCALES.pt(0), SCALES.pr(0), SCALES.pb(0), SCALES.pl(0), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.palette.accents_5, bgColor, spaceRatio]]])
1363
- }), /*#__PURE__*/React.createElement("i", {
1364
- className: _JSXStyle.dynamic([["2201634259", [SCALES.font(1), SCALES.width(1, '100%'), SCALES.height(1, '100%'), SCALES.pt(0), SCALES.pr(0), SCALES.pb(0), SCALES.pl(0), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.palette.accents_5, bgColor, spaceRatio]]])
1365
- })), /*#__PURE__*/React.createElement(_JSXStyle, {
1366
- id: "2201634259",
1367
- dynamic: [SCALES.font(1), SCALES.width(1, '100%'), SCALES.height(1, '100%'), SCALES.pt(0), SCALES.pr(0), SCALES.pb(0), SCALES.pl(0), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.palette.accents_5, bgColor, spaceRatio]
1368
- }, ".loading-container.__jsx-style-dynamic-selector{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;font-size:".concat(SCALES.font(1), ";width:").concat(SCALES.width(1, '100%'), ";height:").concat(SCALES.height(1, '100%'), ";min-height:1em;padding:").concat(SCALES.pt(0), " ").concat(SCALES.pr(0), " ").concat(SCALES.pb(0), " ").concat(SCALES.pl(0), ";margin:").concat(SCALES.mt(0), " ").concat(SCALES.mr(0), " ").concat(SCALES.mb(0), " ").concat(SCALES.ml(0), ";}label.__jsx-style-dynamic-selector{margin-right:0.5em;color:").concat(theme$1.palette.accents_5, ";line-height:1;}label.__jsx-style-dynamic-selector *{margin:0;}.loading.__jsx-style-dynamic-selector{position:absolute;top:50%;left:50%;width:100%;height:100%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:transparent;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}i.__jsx-style-dynamic-selector{width:0.25em;height:0.25em;border-radius:50%;background-color:").concat(bgColor, ";margin:0 calc(0.25em / 2 * ").concat(spaceRatio, ");display:inline-block;-webkit-animation:loading-blink-__jsx-style-dynamic-selector 1.4s infinite both;animation:loading-blink-__jsx-style-dynamic-selector 1.4s infinite both;}i.__jsx-style-dynamic-selector:nth-child(2){-webkit-animation-delay:0.2s;animation-delay:0.2s;}i.__jsx-style-dynamic-selector:nth-child(3){-webkit-animation-delay:0.4s;animation-delay:0.4s;}@-webkit-keyframes loading-blink-__jsx-style-dynamic-selector{0%{opacity:0.2;}20%{opacity:1;}100%{opacity:0.2;}}@keyframes loading-blink-__jsx-style-dynamic-selector{0%{opacity:0.2;}20%{opacity:1;}100%{opacity:0.2;}}")));
1360
+ return /*#__PURE__*/jsxRuntime.jsxs("div", _objectSpread2(_objectSpread2({}, props), {}, {
1361
+ className: _JSXStyle.dynamic([["2201634259", [SCALES.font(1), SCALES.width(1, '100%'), SCALES.height(1, '100%'), SCALES.pt(0), SCALES.pr(0), SCALES.pb(0), SCALES.pl(0), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.palette.accents_5, bgColor, spaceRatio]]]) + " " + (props && props.className != null && props.className || classes || ""),
1362
+ children: [/*#__PURE__*/jsxRuntime.jsxs("span", {
1363
+ className: _JSXStyle.dynamic([["2201634259", [SCALES.font(1), SCALES.width(1, '100%'), SCALES.height(1, '100%'), SCALES.pt(0), SCALES.pr(0), SCALES.pb(0), SCALES.pl(0), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.palette.accents_5, bgColor, spaceRatio]]]) + " " + "loading",
1364
+ children: [children && /*#__PURE__*/jsxRuntime.jsx("label", {
1365
+ className: _JSXStyle.dynamic([["2201634259", [SCALES.font(1), SCALES.width(1, '100%'), SCALES.height(1, '100%'), SCALES.pt(0), SCALES.pr(0), SCALES.pb(0), SCALES.pl(0), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.palette.accents_5, bgColor, spaceRatio]]]),
1366
+ children: children
1367
+ }), /*#__PURE__*/jsxRuntime.jsx("i", {
1368
+ className: _JSXStyle.dynamic([["2201634259", [SCALES.font(1), SCALES.width(1, '100%'), SCALES.height(1, '100%'), SCALES.pt(0), SCALES.pr(0), SCALES.pb(0), SCALES.pl(0), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.palette.accents_5, bgColor, spaceRatio]]])
1369
+ }), /*#__PURE__*/jsxRuntime.jsx("i", {
1370
+ className: _JSXStyle.dynamic([["2201634259", [SCALES.font(1), SCALES.width(1, '100%'), SCALES.height(1, '100%'), SCALES.pt(0), SCALES.pr(0), SCALES.pb(0), SCALES.pl(0), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.palette.accents_5, bgColor, spaceRatio]]])
1371
+ }), /*#__PURE__*/jsxRuntime.jsx("i", {
1372
+ className: _JSXStyle.dynamic([["2201634259", [SCALES.font(1), SCALES.width(1, '100%'), SCALES.height(1, '100%'), SCALES.pt(0), SCALES.pr(0), SCALES.pb(0), SCALES.pl(0), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.palette.accents_5, bgColor, spaceRatio]]])
1373
+ })]
1374
+ }), /*#__PURE__*/jsxRuntime.jsx(_JSXStyle, {
1375
+ id: "2201634259",
1376
+ dynamic: [SCALES.font(1), SCALES.width(1, '100%'), SCALES.height(1, '100%'), SCALES.pt(0), SCALES.pr(0), SCALES.pb(0), SCALES.pl(0), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), theme$1.palette.accents_5, bgColor, spaceRatio],
1377
+ children: ".loading-container.__jsx-style-dynamic-selector{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;font-size:".concat(SCALES.font(1), ";width:").concat(SCALES.width(1, '100%'), ";height:").concat(SCALES.height(1, '100%'), ";min-height:1em;padding:").concat(SCALES.pt(0), " ").concat(SCALES.pr(0), " ").concat(SCALES.pb(0), " ").concat(SCALES.pl(0), ";margin:").concat(SCALES.mt(0), " ").concat(SCALES.mr(0), " ").concat(SCALES.mb(0), " ").concat(SCALES.ml(0), ";}label.__jsx-style-dynamic-selector{margin-right:0.5em;color:").concat(theme$1.palette.accents_5, ";line-height:1;}label.__jsx-style-dynamic-selector *{margin:0;}.loading.__jsx-style-dynamic-selector{position:absolute;top:50%;left:50%;width:100%;height:100%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:transparent;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}i.__jsx-style-dynamic-selector{width:0.25em;height:0.25em;border-radius:50%;background-color:").concat(bgColor, ";margin:0 calc(0.25em / 2 * ").concat(spaceRatio, ");display:inline-block;-webkit-animation:loading-blink-__jsx-style-dynamic-selector 1.4s infinite both;animation:loading-blink-__jsx-style-dynamic-selector 1.4s infinite both;}i.__jsx-style-dynamic-selector:nth-child(2){-webkit-animation-delay:0.2s;animation-delay:0.2s;}i.__jsx-style-dynamic-selector:nth-child(3){-webkit-animation-delay:0.4s;animation-delay:0.4s;}@-webkit-keyframes loading-blink-__jsx-style-dynamic-selector{0%{opacity:0.2;}20%{opacity:1;}100%{opacity:0.2;}}@keyframes loading-blink-__jsx-style-dynamic-selector{0%{opacity:0.2;}20%{opacity:1;}100%{opacity:0.2;}}")
1378
+ })]
1379
+ }));
1369
1380
  };
1370
1381
  LoadingComponent.displayName = 'Loading';
1371
1382
  var Loading = withScale(LoadingComponent);
1372
1383
 
1373
1384
  var ButtonLoading = function ButtonLoading(_ref) {
1374
1385
  var color = _ref.color;
1375
- return /*#__PURE__*/React.createElement("div", {
1376
- className: "jsx-212623367" + " " + "btn-loading"
1377
- }, /*#__PURE__*/React.createElement(Loading, {
1378
- color: color
1379
- }), /*#__PURE__*/React.createElement(_JSXStyle, {
1380
- id: "212623367"
1381
- }, ".btn-loading.jsx-212623367{position:absolute;top:0;left:0;right:0;bottom:0;z-index:2;background-color:var(--helpdice-ui-button-bg);}"));
1386
+ return /*#__PURE__*/jsxRuntime.jsxs("div", {
1387
+ className: "jsx-212623367" + " " + "btn-loading",
1388
+ children: [/*#__PURE__*/jsxRuntime.jsx(Loading, {
1389
+ color: color
1390
+ }), /*#__PURE__*/jsxRuntime.jsx(_JSXStyle, {
1391
+ id: "212623367",
1392
+ children: ".btn-loading.jsx-212623367{position:absolute;top:0;left:0;right:0;bottom:0;z-index:2;background-color:var(--helpdice-ui-button-bg);}"
1393
+ })]
1394
+ });
1382
1395
  };
1383
1396
  ButtonLoading.displayName = 'ButtonLoading';
1384
1397
 
@@ -1395,11 +1408,13 @@ var ButtonIcon = function ButtonIcon(_ref) {
1395
1408
  right: isRight,
1396
1409
  single: isSingle
1397
1410
  }, className);
1398
- return /*#__PURE__*/React.createElement("span", _extends({}, props, {
1399
- className: "jsx-2467502931" + " " + (props && props.className != null && props.className || classes || "")
1400
- }), children, /*#__PURE__*/React.createElement(_JSXStyle, {
1401
- id: "2467502931"
1402
- }, ".icon.jsx-2467502931{position:absolute;left:var(--helpdice-ui-button-icon-padding);right:auto;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:var(--helpdice-ui-button-color);z-index:1;}.right.jsx-2467502931{right:var(--helpdice-ui-button-icon-padding);left:auto;}.icon.jsx-2467502931 svg{background:transparent;height:calc(var(--helpdice-ui-button-height) / 2.35);width:calc(var(--helpdice-ui-button-height) / 2.35);}.single.jsx-2467502931{position:static;-webkit-transform:none;-ms-transform:none;transform:none;}"));
1411
+ return /*#__PURE__*/jsxRuntime.jsxs("span", _objectSpread2(_objectSpread2({}, props), {}, {
1412
+ className: "jsx-2467502931" + " " + (props && props.className != null && props.className || classes || ""),
1413
+ children: [children, /*#__PURE__*/jsxRuntime.jsx(_JSXStyle, {
1414
+ id: "2467502931",
1415
+ children: ".icon.jsx-2467502931{position:absolute;left:var(--helpdice-ui-button-icon-padding);right:auto;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:var(--helpdice-ui-button-color);z-index:1;}.right.jsx-2467502931{right:var(--helpdice-ui-button-icon-padding);left:auto;}.icon.jsx-2467502931 svg{background:transparent;height:calc(var(--helpdice-ui-button-height) / 2.35);width:calc(var(--helpdice-ui-button-height) / 2.35);}.single.jsx-2467502931{position:static;-webkit-transform:none;-ms-transform:none;transform:none;}"
1416
+ })]
1417
+ }));
1403
1418
  };
1404
1419
  ButtonIcon.displayName = 'ButtonIcon';
1405
1420
 
@@ -1410,23 +1425,30 @@ var getButtonChildrenWithIcon = function getButtonChildrenWithIcon(auto, childre
1410
1425
  var isRight = Boolean(iconRight);
1411
1426
  var paddingForAutoMode = auto ? "calc(var(--helpdice-ui-button-height) / 2 + var(--helpdice-ui-button-icon-padding) * .5)" : 0;
1412
1427
  var classes = theme.useClasses('text', isRight ? 'right' : 'left');
1413
- if (!hasIcon) return /*#__PURE__*/React.createElement("div", {
1414
- className: "text"
1415
- }, children);
1428
+ if (!hasIcon) return /*#__PURE__*/jsxRuntime.jsx("div", {
1429
+ className: "text",
1430
+ children: children
1431
+ });
1416
1432
  if (React.Children.count(children) === 0) {
1417
- return /*#__PURE__*/React.createElement(ButtonIcon, {
1433
+ return /*#__PURE__*/jsxRuntime.jsx(ButtonIcon, {
1418
1434
  isRight: isRight,
1419
- isSingle: true
1420
- }, hasIcon);
1435
+ isSingle: true,
1436
+ children: hasIcon
1437
+ });
1421
1438
  }
1422
- return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(ButtonIcon, {
1423
- isRight: isRight
1424
- }, hasIcon), /*#__PURE__*/React.createElement("div", {
1425
- className: _JSXStyle.dynamic([["3568181479", [paddingForAutoMode, paddingForAutoMode]]]) + " " + (classes || "")
1426
- }, children, /*#__PURE__*/React.createElement(_JSXStyle, {
1427
- id: "3568181479",
1428
- dynamic: [paddingForAutoMode, paddingForAutoMode]
1429
- }, ".left.__jsx-style-dynamic-selector{padding-left:".concat(paddingForAutoMode, ";}.right.__jsx-style-dynamic-selector{padding-right:").concat(paddingForAutoMode, ";}"))));
1439
+ return /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
1440
+ children: [/*#__PURE__*/jsxRuntime.jsx(ButtonIcon, {
1441
+ isRight: isRight,
1442
+ children: hasIcon
1443
+ }), /*#__PURE__*/jsxRuntime.jsxs("div", {
1444
+ className: _JSXStyle.dynamic([["3568181479", [paddingForAutoMode, paddingForAutoMode]]]) + " " + (classes || ""),
1445
+ children: [children, /*#__PURE__*/jsxRuntime.jsx(_JSXStyle, {
1446
+ id: "3568181479",
1447
+ dynamic: [paddingForAutoMode, paddingForAutoMode],
1448
+ children: ".left.__jsx-style-dynamic-selector{padding-left:".concat(paddingForAutoMode, ";}.right.__jsx-style-dynamic-selector{padding-right:").concat(paddingForAutoMode, ";}")
1449
+ })]
1450
+ })]
1451
+ });
1430
1452
  };
1431
1453
  var filterPropsWithGroup = function filterPropsWithGroup(props, config) {
1432
1454
  if (!config.isButtonGroup) return props;
@@ -1830,89 +1852,61 @@ var ButtonComponent = /*#__PURE__*/React.forwardRef(function (btnProps, ref) {
1830
1852
 
1831
1853
  // If shadow provided is string then value other default
1832
1854
  var btnShadow = typeof shadow === 'string' ? shadow : shadow ? theme$1.shadows.level.z2 : 'none';
1833
- return /*#__PURE__*/React.createElement(React.Fragment, null, to ? /*#__PURE__*/React.createElement("a", _extends({
1834
- href: to
1835
- }, props, {
1836
- className: _JSXStyle.dynamic([["3965326317", [SCALES.height(2.5), round ? '50%' : theme$1.layout.radius, SCALES.font(0.875), color, bg, shadow ? 'transparent' : border, cursor, events, shadow ? btnShadow : 'none', SCALES.pl(0.727), SCALES.height(2.5), color, bg, auto ? 'min-content' : SCALES.width(10.5), auto ? 'auto' : 'initial', SCALES.height(2.5), SCALES.pt(0), paddingRight, SCALES.pb(0), paddingLeft, SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), hover.color, hover.color, hover.bg, hover.border, cursor, events, btnShadow, shadow ? '-1px' : '0px']]]) + " " + (props && props.className != null && props.className || theme.useClasses('btn', 'btn-link', className) || "")
1837
- }), loading && /*#__PURE__*/React.createElement(ButtonLoading, {
1838
- color: color
1839
- }), childrenWithIcon) : /*#__PURE__*/React.createElement("button", _extends({
1840
- ref: buttonRef,
1841
- type: type,
1842
- disabled: disabled,
1843
- onClick: clickHandler
1844
- }, props, {
1845
- className: _JSXStyle.dynamic([["3965326317", [SCALES.height(2.5), round ? '50%' : theme$1.layout.radius, SCALES.font(0.875), color, bg, shadow ? 'transparent' : border, cursor, events, shadow ? btnShadow : 'none', SCALES.pl(0.727), SCALES.height(2.5), color, bg, auto ? 'min-content' : SCALES.width(10.5), auto ? 'auto' : 'initial', SCALES.height(2.5), SCALES.pt(0), paddingRight, SCALES.pb(0), paddingLeft, SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), hover.color, hover.color, hover.bg, hover.border, cursor, events, btnShadow, shadow ? '-1px' : '0px']]]) + " " + (props && props.className != null && props.className || theme.useClasses('btn', className) || "")
1846
- }), loading && /*#__PURE__*/React.createElement(ButtonLoading, {
1847
- color: color
1848
- }), childrenWithIcon, dripShow && /*#__PURE__*/React.createElement(ButtonDrip, {
1849
- x: dripX,
1850
- y: dripY,
1851
- color: dripColor,
1852
- onCompleted: dripCompletedHandle
1853
- })), /*#__PURE__*/React.createElement(_JSXStyle, {
1854
- id: "3965326317",
1855
- dynamic: [SCALES.height(2.5), round ? '50%' : theme$1.layout.radius, SCALES.font(0.875), color, bg, shadow ? 'transparent' : border, cursor, events, shadow ? btnShadow : 'none', SCALES.pl(0.727), SCALES.height(2.5), color, bg, auto ? 'min-content' : SCALES.width(10.5), auto ? 'auto' : 'initial', SCALES.height(2.5), SCALES.pt(0), paddingRight, SCALES.pb(0), paddingLeft, SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), hover.color, hover.color, hover.bg, hover.border, cursor, events, btnShadow, shadow ? '-1px' : '0px']
1856
- }, ".btn.__jsx-style-dynamic-selector{box-sizing:border-box;display:inline-block;line-height:".concat(SCALES.height(2.5), ";border-radius:").concat(round ? '50%' : theme$1.layout.radius, ";font-weight:400;font-size:").concat(SCALES.font(0.875), ";-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;outline:none;text-transform:capitalize;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;white-space:nowrap;-webkit-transition:background-color 200ms ease 0ms,box-shadow 200ms ease 0ms, border 200ms ease 0ms,color 200ms ease 0ms;transition:background-color 200ms ease 0ms,box-shadow 200ms ease 0ms, border 200ms ease 0ms,color 200ms ease 0ms;position:relative;overflow:hidden;color:").concat(color, ";background-color:").concat(bg, ";border:1px solid ").concat(shadow ? 'transparent' : border, ";cursor:").concat(cursor, ";pointer-events:").concat(events, ";box-shadow:").concat(shadow ? btnShadow : 'none', ";--helpdice-ui-button-icon-padding:").concat(SCALES.pl(0.727), ";--helpdice-ui-button-height:").concat(SCALES.height(2.5), ";--helpdice-ui-button-color:").concat(color, ";--helpdice-ui-button-bg:").concat(bg, ";min-width:").concat(auto ? 'min-content' : SCALES.width(10.5), ";width:").concat(auto ? 'auto' : 'initial', ";height:").concat(SCALES.height(2.5), ";padding:").concat(SCALES.pt(0), " ").concat(paddingRight, " ").concat(SCALES.pb(0), " ").concat(paddingLeft, ";margin:").concat(SCALES.mt(0), " ").concat(SCALES.mr(0), " ").concat(SCALES.mb(0), " ").concat(SCALES.ml(0), ";}.btn.__jsx-style-dynamic-selector:hover,.btn.__jsx-style-dynamic-selector:focus{color:").concat(hover.color, ";--helpdice-ui-button-color:").concat(hover.color, ";background-color:").concat(hover.bg, ";border-color:").concat(hover.border, ";cursor:").concat(cursor, ";pointer-events:").concat(events, ";box-shadow:").concat(btnShadow, ";}.btn-link.__jsx-style-dynamic-selector{display:-webkit-box !important;display:-webkit-flex !important;display:-ms-flexbox !important;display:flex !important;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.btn.__jsx-style-dynamic-selector .text{position:relative;z-index:1;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;line-height:inherit;top:-1px;}.btn.__jsx-style-dynamic-selector .text p,.btn.__jsx-style-dynamic-selector .text pre,.btn.__jsx-style-dynamic-selector .text div{margin:0;}.ripple.__jsx-style-dynamic-selector{position:absolute;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-animation:ripple-animation-__jsx-style-dynamic-selector 600ms ease-out;animation:ripple-animation-__jsx-style-dynamic-selector 600ms ease-out;background-color:rgba(0,0,0,0.3);pointer-events:none;z-index:1;}@-webkit-keyframes ripple-animation-__jsx-style-dynamic-selector{to{-webkit-transform:scale(2.5);-ms-transform:scale(2.5);transform:scale(2.5);opacity:0;}}@keyframes ripple-animation-__jsx-style-dynamic-selector{to{-webkit-transform:scale(2.5);-ms-transform:scale(2.5);transform:scale(2.5);opacity:0;}}")));
1855
+ return /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
1856
+ children: [to ? /*#__PURE__*/jsxRuntime.jsxs("a", _objectSpread2(_objectSpread2({
1857
+ href: to
1858
+ }, props), {}, {
1859
+ className: _JSXStyle.dynamic([["612376042", [SCALES.height(2.5), round ? '50%' : theme$1.layout.radius, SCALES.font(0.875), color, bg, shadow ? 'transparent' : border, cursor !== null && cursor !== void 0 ? cursor : 'pointer', events, shadow ? btnShadow : 'none', SCALES.pl(0.727), SCALES.height(2.5), color, bg, auto ? 'min-content' : SCALES.width(10.5), auto ? 'auto' : 'initial', SCALES.height(2.5), SCALES.pt(0), paddingRight, SCALES.pb(0), paddingLeft, SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), hover.color, hover.color, hover.bg, hover.border, cursor, events, btnShadow, shadow ? '-1px' : '0px']]]) + " " + (props && props.className != null && props.className || theme.useClasses('btn', 'btn-link', className) || ""),
1860
+ children: [loading && /*#__PURE__*/jsxRuntime.jsx(ButtonLoading, {
1861
+ color: color
1862
+ }), childrenWithIcon]
1863
+ })) : /*#__PURE__*/jsxRuntime.jsxs("button", _objectSpread2(_objectSpread2({
1864
+ ref: buttonRef,
1865
+ type: type,
1866
+ disabled: disabled,
1867
+ onClick: clickHandler
1868
+ }, props), {}, {
1869
+ className: _JSXStyle.dynamic([["612376042", [SCALES.height(2.5), round ? '50%' : theme$1.layout.radius, SCALES.font(0.875), color, bg, shadow ? 'transparent' : border, cursor !== null && cursor !== void 0 ? cursor : 'pointer', events, shadow ? btnShadow : 'none', SCALES.pl(0.727), SCALES.height(2.5), color, bg, auto ? 'min-content' : SCALES.width(10.5), auto ? 'auto' : 'initial', SCALES.height(2.5), SCALES.pt(0), paddingRight, SCALES.pb(0), paddingLeft, SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), hover.color, hover.color, hover.bg, hover.border, cursor, events, btnShadow, shadow ? '-1px' : '0px']]]) + " " + (props && props.className != null && props.className || theme.useClasses('btn', className) || ""),
1870
+ children: [loading && /*#__PURE__*/jsxRuntime.jsx(ButtonLoading, {
1871
+ color: color
1872
+ }), childrenWithIcon, dripShow && /*#__PURE__*/jsxRuntime.jsx(ButtonDrip, {
1873
+ x: dripX,
1874
+ y: dripY,
1875
+ color: dripColor,
1876
+ onCompleted: dripCompletedHandle
1877
+ })]
1878
+ })), /*#__PURE__*/jsxRuntime.jsx(_JSXStyle, {
1879
+ id: "612376042",
1880
+ dynamic: [SCALES.height(2.5), round ? '50%' : theme$1.layout.radius, SCALES.font(0.875), color, bg, shadow ? 'transparent' : border, cursor !== null && cursor !== void 0 ? cursor : 'pointer', events, shadow ? btnShadow : 'none', SCALES.pl(0.727), SCALES.height(2.5), color, bg, auto ? 'min-content' : SCALES.width(10.5), auto ? 'auto' : 'initial', SCALES.height(2.5), SCALES.pt(0), paddingRight, SCALES.pb(0), paddingLeft, SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0), hover.color, hover.color, hover.bg, hover.border, cursor, events, btnShadow, shadow ? '-1px' : '0px'],
1881
+ children: ".btn.__jsx-style-dynamic-selector{box-sizing:border-box;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;line-height:".concat(SCALES.height(2.5), ";border-radius:").concat(round ? '50%' : theme$1.layout.radius, ";font-weight:400;font-size:").concat(SCALES.font(0.875), ";-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;outline:none;text-transform:capitalize;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;white-space:nowrap;-webkit-transition:background-color 200ms ease 0ms,box-shadow 200ms ease 0ms, border 200ms ease 0ms,color 200ms ease 0ms;transition:background-color 200ms ease 0ms,box-shadow 200ms ease 0ms, border 200ms ease 0ms,color 200ms ease 0ms;position:relative;overflow:hidden;color:").concat(color, ";background-color:").concat(bg, ";border:1px solid ").concat(shadow ? 'transparent' : border, ";cursor:").concat(cursor !== null && cursor !== void 0 ? cursor : 'pointer', ";pointer-events:").concat(events, ";box-shadow:").concat(shadow ? btnShadow : 'none', ";--helpdice-ui-button-icon-padding:").concat(SCALES.pl(0.727), ";--helpdice-ui-button-height:").concat(SCALES.height(2.5), ";--helpdice-ui-button-color:").concat(color, ";--helpdice-ui-button-bg:").concat(bg, ";min-width:").concat(auto ? 'min-content' : SCALES.width(10.5), ";width:").concat(auto ? 'auto' : 'initial', ";height:").concat(SCALES.height(2.5), ";padding:").concat(SCALES.pt(0), " ").concat(paddingRight, " ").concat(SCALES.pb(0), " ").concat(paddingLeft, ";margin:").concat(SCALES.mt(0), " ").concat(SCALES.mr(0), " ").concat(SCALES.mb(0), " ").concat(SCALES.ml(0), ";}.btn.__jsx-style-dynamic-selector:hover,.btn.__jsx-style-dynamic-selector:focus{color:").concat(hover.color, ";--helpdice-ui-button-color:").concat(hover.color, ";background-color:").concat(hover.bg, ";border-color:").concat(hover.border, ";cursor:").concat(cursor, ";pointer-events:").concat(events, ";box-shadow:").concat(btnShadow, ";}.btn-link.__jsx-style-dynamic-selector{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.btn.__jsx-style-dynamic-selector .text{position:relative;z-index:1;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;line-height:inherit;top:-1px;}.btn.__jsx-style-dynamic-selector .text p,.btn.__jsx-style-dynamic-selector .text pre,.btn.__jsx-style-dynamic-selector .text div{margin:0;}.ripple.__jsx-style-dynamic-selector{position:absolute;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-animation:ripple-animation-__jsx-style-dynamic-selector 600ms ease-out;animation:ripple-animation-__jsx-style-dynamic-selector 600ms ease-out;background-color:rgba(0,0,0,0.3);pointer-events:none;z-index:1;}@-webkit-keyframes ripple-animation-__jsx-style-dynamic-selector{to{-webkit-transform:scale(2.5);-ms-transform:scale(2.5);transform:scale(2.5);opacity:0;}}@keyframes ripple-animation-__jsx-style-dynamic-selector{to{-webkit-transform:scale(2.5);-ms-transform:scale(2.5);transform:scale(2.5);opacity:0;}}")
1882
+ })]
1883
+ });
1857
1884
  });
1858
1885
  ButtonComponent.displayName = 'Button';
1859
1886
  var Button = withScale(ButtonComponent);
1860
1887
 
1861
- // import { useTheme } from '@helpdice/theme';
1862
-
1863
- var CompactButton = function CompactButton(_ref) {
1864
- _ref.color;
1865
- var children = _ref.children,
1866
- iconRight = _ref.iconRight,
1867
- icon = _ref.icon,
1868
- _ref$scale = _ref.scale,
1869
- scale = _ref$scale === void 0 ? 2 / 3 : _ref$scale,
1870
- type = _ref.type,
1871
- style = _ref.style,
1872
- onClick = _ref.onClick,
1873
- to = _ref.to;
1888
+ var CompactButton = function CompactButton(props) {
1874
1889
  // const theme = useTheme();
1875
- return /*#__PURE__*/React.createElement(Button, {
1876
- to: to,
1877
- icon: icon,
1878
- style: style,
1879
- type: type,
1880
- onClick: onClick,
1881
- auto: true,
1882
- scale: scale,
1883
- px: 0.6,
1884
- iconRight: iconRight
1885
- }, children);
1890
+ return /*#__PURE__*/jsxRuntime.jsx(Button, _objectSpread2(_objectSpread2({
1891
+ scale: 2 / 3,
1892
+ px: 0.6
1893
+ }, _objectSpread2({
1894
+ auto: true
1895
+ }, props)), {}, {
1896
+ children: props.children
1897
+ }));
1886
1898
  };
1887
1899
  var IconButton = /*#__PURE__*/React.memo(CompactButton);
1888
1900
 
1889
- // import { useTheme } from '@helpdice/theme';
1890
-
1891
- var SmallButton = function SmallButton(_ref) {
1892
- _ref.color;
1893
- var children = _ref.children,
1894
- iconRight = _ref.iconRight,
1895
- icon = _ref.icon,
1896
- _ref$scale = _ref.scale,
1897
- scale = _ref$scale === void 0 ? 2 / 3 : _ref$scale,
1898
- type = _ref.type,
1899
- style = _ref.style,
1900
- onClick = _ref.onClick,
1901
- to = _ref.to,
1902
- a = _ref.a;
1901
+ var SmallButton = function SmallButton(props) {
1903
1902
  // const theme = useTheme();
1904
- return /*#__PURE__*/React.createElement(Button, {
1905
- to: to,
1906
- a: a,
1907
- icon: icon,
1908
- style: style,
1909
- type: type,
1910
- onClick: onClick,
1903
+ return /*#__PURE__*/jsxRuntime.jsx(Button, _objectSpread2(_objectSpread2({
1911
1904
  auto: true,
1912
- scale: scale,
1913
- py: 0.6,
1914
- iconRight: iconRight
1915
- }, children);
1905
+ scale: 2 / 3,
1906
+ px: 0.6
1907
+ }, props), {}, {
1908
+ children: props.children
1909
+ }));
1916
1910
  };
1917
1911
  var SmallButton$1 = /*#__PURE__*/React.memo(SmallButton);
1918
1912
 
@@ -1921,13 +1915,14 @@ var SmallButton$1 = /*#__PURE__*/React.memo(SmallButton);
1921
1915
  Button.Icon = IconButton;
1922
1916
  Button.Small = SmallButton$1;
1923
1917
 
1924
- var _excluded = ["h1", "h2", "h3", "h4", "h5", "h6", "p", "b", "small", "i", "span", "del", "em", "blockquote", "noWrap", "collapse", "children", "className"];
1918
+ var _excluded = ["h1", "h2", "h3", "h4", "h5", "h6", "p", "b", "small", "i", "span", "del", "em", "blockquote", "noWrap", "collapse", "children", "className", "display", "alignItems", "justify"];
1925
1919
  var _getModifierChild = function getModifierChild(tags, children) {
1926
1920
  if (!tags.length) return children;
1927
1921
  var nextTag = tags.slice(1, tags.length);
1928
- return /*#__PURE__*/React.createElement(TextChild, {
1929
- tag: tags[0]
1930
- }, _getModifierChild(nextTag, children));
1922
+ return /*#__PURE__*/jsxRuntime.jsx(TextChild, {
1923
+ tag: tags[0],
1924
+ children: _getModifierChild(nextTag, children)
1925
+ });
1931
1926
  };
1932
1927
  var TextComponent = function TextComponent(_ref) {
1933
1928
  var _ref$h = _ref.h1,
@@ -1965,6 +1960,10 @@ var TextComponent = function TextComponent(_ref) {
1965
1960
  children = _ref.children,
1966
1961
  _ref$className = _ref.className,
1967
1962
  className = _ref$className === void 0 ? '' : _ref$className,
1963
+ _ref$display = _ref.display,
1964
+ display = _ref$display === void 0 ? 'block' : _ref$display,
1965
+ alignItems = _ref.alignItems,
1966
+ justify = _ref.justify,
1968
1967
  props = _objectWithoutProperties(_ref, _excluded);
1969
1968
  var elements = {
1970
1969
  h1: h1,
@@ -2017,27 +2016,37 @@ var TextComponent = function TextComponent(_ref) {
2017
2016
  if (!renderableChildElements.length) return children;
2018
2017
  return _getModifierChild(renderableChildElements, children);
2019
2018
  }, [renderableChildElements, children]);
2020
- return /*#__PURE__*/React.createElement(TextChild, _extends({
2019
+ return /*#__PURE__*/jsxRuntime.jsx(TextChild, _objectSpread2(_objectSpread2({
2021
2020
  style: {
2022
- textAlign: props.align
2021
+ textAlign: props.align,
2022
+ display: display,
2023
+ alignItems: alignItems,
2024
+ justifyContent: justify
2023
2025
  },
2024
2026
  className: "".concat(className, " ").concat(noWrap ? 'no-wrap' : ''),
2025
2027
  tag: tag
2026
- }, props), typeof children === 'string' && collapse > 50 ? /*#__PURE__*/React.createElement(React.Fragment, null, expand ? modifers : (modifers === null || modifers === void 0 ? void 0 : modifers.toString().substring(0, collapse)) + '...', /*#__PURE__*/React.createElement(Button, {
2027
- margin: 0,
2028
- onClick: function onClick() {
2029
- return setExpand(!expand);
2030
- },
2031
- style: {
2032
- textTransform: 'lowercase'
2033
- },
2034
- effect: false,
2035
- color: "abort",
2036
- scale: 2 / 3,
2037
- px: 0.2,
2038
- py: 0,
2039
- auto: true
2040
- }, /*#__PURE__*/React.createElement("b", null, expand ? 'less' : 'more'))) : modifers);
2028
+ }, props), {}, {
2029
+ children: typeof children === 'string' && collapse > 50 ? /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
2030
+ children: [expand ? modifers : (modifers === null || modifers === void 0 ? void 0 : modifers.toString().substring(0, collapse)) + '...', /*#__PURE__*/jsxRuntime.jsx(Button, {
2031
+ margin: 0,
2032
+ onClick: function onClick() {
2033
+ return setExpand(!expand);
2034
+ },
2035
+ style: {
2036
+ textTransform: 'lowercase'
2037
+ },
2038
+ effect: false,
2039
+ color: "abort",
2040
+ scale: 2 / 3,
2041
+ px: 0.2,
2042
+ py: 0,
2043
+ auto: true,
2044
+ children: /*#__PURE__*/jsxRuntime.jsx("b", {
2045
+ children: expand ? 'less' : 'more'
2046
+ })
2047
+ })]
2048
+ }) : modifers
2049
+ }));
2041
2050
  };
2042
2051
  TextComponent.displayName = 'Text';
2043
2052
  var Text = withScale(TextComponent);
@@ -2056,9 +2065,11 @@ function Placeholder(_ref) {
2056
2065
  hide = _ref$hide === void 0 ? false : _ref$hide;
2057
2066
  msg = access_denied ? 'Access Denied!' : msg;
2058
2067
  if (dataLength !== undefined && dataLength > 0 || hide) {
2059
- return /*#__PURE__*/React.createElement(React.Fragment, null, children);
2068
+ return /*#__PURE__*/jsxRuntime.jsx(React.Fragment, {
2069
+ children: children
2070
+ });
2060
2071
  }
2061
- return /*#__PURE__*/React.createElement("div", {
2072
+ return /*#__PURE__*/jsxRuntime.jsxs("div", {
2062
2073
  style: _objectSpread2({
2063
2074
  display: 'flex',
2064
2075
  alignItems: 'center',
@@ -2070,64 +2081,69 @@ function Placeholder(_ref) {
2070
2081
  width: width,
2071
2082
  minWidth: 200,
2072
2083
  margin: 'auto'
2073
- }, style)
2074
- }, !textOnly && /*#__PURE__*/React.createElement(React.Fragment, null, access_denied ? /*#__PURE__*/React.createElement(React.Fragment, null) : empty ? /*#__PURE__*/React.createElement(Empty, null) : /*#__PURE__*/React.createElement("svg", {
2075
- xmlns: "http://www.w3.org/2000/svg",
2076
- width: "6em",
2077
- height: "6em",
2078
- "data-name": "Layer 1",
2079
- viewBox: "0 0 650.636 640.174"
2080
- }, /*#__PURE__*/React.createElement("path", {
2081
- fill: "#f2f2f2",
2082
- d: "M687.328 276.087h-174.51a15.018 15.018 0 00-15 15v387.85l-2 .61-42.81 13.11a8.007 8.007 0 01-9.99-5.31l-127.34-415.95a8.003 8.003 0 015.31-9.99l65.97-20.2 191.25-58.54 65.97-20.2a7.99 7.99 0 019.99 5.3l32.55 106.32z",
2083
- transform: "translate(-276.182 -133.913)"
2084
- }), /*#__PURE__*/React.createElement("path", {
2085
- fill: "#3f3d56",
2086
- d: "M725.408 274.087l-39.23-128.14a16.994 16.994 0 00-21.23-11.28l-92.75 28.39-191.24 58.55-92.75 28.4a17.015 17.015 0 00-11.28 21.23l134.08 437.93a17.027 17.027 0 0016.26 12.03 16.79 16.79 0 004.97-.75l63.58-19.46 2-.62v-2.09l-2 .61-64.17 19.65a15.015 15.015 0 01-18.73-9.95l-134.07-437.94a14.98 14.98 0 019.95-18.73l92.75-28.4 191.24-58.54 92.75-28.4a15.156 15.156 0 014.41-.66 15.015 15.015 0 0114.32 10.61l39.05 127.56.62 2h2.08z",
2087
- transform: "translate(-276.182 -133.913)"
2088
- }), /*#__PURE__*/React.createElement("path", {
2089
- fill: "#1976d2",
2090
- d: "M398.863 261.734a9.016 9.016 0 01-8.612-6.367l-12.88-42.072a8.999 8.999 0 015.971-11.24l175.94-53.864a9.009 9.009 0 0111.24 5.971l12.88 42.072a9.01 9.01 0 01-5.97 11.241l-175.94 53.864a8.976 8.976 0 01-2.63.395z",
2091
- transform: "translate(-276.182 -133.913)"
2092
- }), /*#__PURE__*/React.createElement("circle", {
2093
- cx: "190.154",
2094
- cy: "24.955",
2095
- r: "20",
2096
- fill: "#1976d2"
2097
- }), /*#__PURE__*/React.createElement("circle", {
2098
- cx: "190.154",
2099
- cy: "24.955",
2100
- r: "12.665",
2101
- fill: "#fff"
2102
- }), /*#__PURE__*/React.createElement("path", {
2103
- fill: "#e6e6e6",
2104
- d: "M878.818 716.087h-338a8.51 8.51 0 01-8.5-8.5v-405a8.51 8.51 0 018.5-8.5h338a8.51 8.51 0 018.5 8.5v405a8.51 8.51 0 01-8.5 8.5z",
2105
- transform: "translate(-276.182 -133.913)"
2106
- }), /*#__PURE__*/React.createElement("path", {
2107
- fill: "#3f3d56",
2108
- d: "M723.318 274.087h-210.5a17.024 17.024 0 00-17 17v407.8l2-.61v-407.19a15.018 15.018 0 0115-15h211.12zm183.5 0h-394a17.024 17.024 0 00-17 17v458a17.024 17.024 0 0017 17h394a17.024 17.024 0 0017-17v-458a17.024 17.024 0 00-17-17zm15 475a15.018 15.018 0 01-15 15h-394a15.018 15.018 0 01-15-15v-458a15.018 15.018 0 0115-15h394a15.018 15.018 0 0115 15z",
2109
- transform: "translate(-276.182 -133.913)"
2110
- }), /*#__PURE__*/React.createElement("path", {
2111
- fill: "#1976d2",
2112
- d: "M801.818 318.087h-184a9.01 9.01 0 01-9-9v-44a9.01 9.01 0 019-9h184a9.01 9.01 0 019 9v44a9.01 9.01 0 01-9 9z",
2113
- transform: "translate(-276.182 -133.913)"
2114
- }), /*#__PURE__*/React.createElement("circle", {
2115
- cx: "433.636",
2116
- cy: "105.174",
2117
- r: "20",
2118
- fill: "#1976d2"
2119
- }), /*#__PURE__*/React.createElement("circle", {
2120
- cx: "433.636",
2121
- cy: "105.174",
2122
- r: "12.182",
2123
- fill: "#fff"
2124
- }))), /*#__PURE__*/React.createElement(Text, {
2125
- type: access_denied ? 'error' : 'default',
2126
- style: {
2127
- color: 'gray',
2128
- textAlign: 'center'
2129
- }
2130
- }, msg));
2084
+ }, style),
2085
+ children: [!textOnly && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
2086
+ children: access_denied ? /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {}) : empty ? /*#__PURE__*/jsxRuntime.jsx(Empty, {}) : /*#__PURE__*/jsxRuntime.jsxs("svg", {
2087
+ xmlns: "http://www.w3.org/2000/svg",
2088
+ width: "6em",
2089
+ height: "6em",
2090
+ "data-name": "Layer 1",
2091
+ viewBox: "0 0 650.636 640.174",
2092
+ children: [/*#__PURE__*/jsxRuntime.jsx("path", {
2093
+ fill: "#f2f2f2",
2094
+ d: "M687.328 276.087h-174.51a15.018 15.018 0 00-15 15v387.85l-2 .61-42.81 13.11a8.007 8.007 0 01-9.99-5.31l-127.34-415.95a8.003 8.003 0 015.31-9.99l65.97-20.2 191.25-58.54 65.97-20.2a7.99 7.99 0 019.99 5.3l32.55 106.32z",
2095
+ transform: "translate(-276.182 -133.913)"
2096
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
2097
+ fill: "#3f3d56",
2098
+ d: "M725.408 274.087l-39.23-128.14a16.994 16.994 0 00-21.23-11.28l-92.75 28.39-191.24 58.55-92.75 28.4a17.015 17.015 0 00-11.28 21.23l134.08 437.93a17.027 17.027 0 0016.26 12.03 16.79 16.79 0 004.97-.75l63.58-19.46 2-.62v-2.09l-2 .61-64.17 19.65a15.015 15.015 0 01-18.73-9.95l-134.07-437.94a14.98 14.98 0 019.95-18.73l92.75-28.4 191.24-58.54 92.75-28.4a15.156 15.156 0 014.41-.66 15.015 15.015 0 0114.32 10.61l39.05 127.56.62 2h2.08z",
2099
+ transform: "translate(-276.182 -133.913)"
2100
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
2101
+ fill: "#1976d2",
2102
+ d: "M398.863 261.734a9.016 9.016 0 01-8.612-6.367l-12.88-42.072a8.999 8.999 0 015.971-11.24l175.94-53.864a9.009 9.009 0 0111.24 5.971l12.88 42.072a9.01 9.01 0 01-5.97 11.241l-175.94 53.864a8.976 8.976 0 01-2.63.395z",
2103
+ transform: "translate(-276.182 -133.913)"
2104
+ }), /*#__PURE__*/jsxRuntime.jsx("circle", {
2105
+ cx: "190.154",
2106
+ cy: "24.955",
2107
+ r: "20",
2108
+ fill: "#1976d2"
2109
+ }), /*#__PURE__*/jsxRuntime.jsx("circle", {
2110
+ cx: "190.154",
2111
+ cy: "24.955",
2112
+ r: "12.665",
2113
+ fill: "#fff"
2114
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
2115
+ fill: "#e6e6e6",
2116
+ d: "M878.818 716.087h-338a8.51 8.51 0 01-8.5-8.5v-405a8.51 8.51 0 018.5-8.5h338a8.51 8.51 0 018.5 8.5v405a8.51 8.51 0 01-8.5 8.5z",
2117
+ transform: "translate(-276.182 -133.913)"
2118
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
2119
+ fill: "#3f3d56",
2120
+ d: "M723.318 274.087h-210.5a17.024 17.024 0 00-17 17v407.8l2-.61v-407.19a15.018 15.018 0 0115-15h211.12zm183.5 0h-394a17.024 17.024 0 00-17 17v458a17.024 17.024 0 0017 17h394a17.024 17.024 0 0017-17v-458a17.024 17.024 0 00-17-17zm15 475a15.018 15.018 0 01-15 15h-394a15.018 15.018 0 01-15-15v-458a15.018 15.018 0 0115-15h394a15.018 15.018 0 0115 15z",
2121
+ transform: "translate(-276.182 -133.913)"
2122
+ }), /*#__PURE__*/jsxRuntime.jsx("path", {
2123
+ fill: "#1976d2",
2124
+ d: "M801.818 318.087h-184a9.01 9.01 0 01-9-9v-44a9.01 9.01 0 019-9h184a9.01 9.01 0 019 9v44a9.01 9.01 0 01-9 9z",
2125
+ transform: "translate(-276.182 -133.913)"
2126
+ }), /*#__PURE__*/jsxRuntime.jsx("circle", {
2127
+ cx: "433.636",
2128
+ cy: "105.174",
2129
+ r: "20",
2130
+ fill: "#1976d2"
2131
+ }), /*#__PURE__*/jsxRuntime.jsx("circle", {
2132
+ cx: "433.636",
2133
+ cy: "105.174",
2134
+ r: "12.182",
2135
+ fill: "#fff"
2136
+ })]
2137
+ })
2138
+ }), /*#__PURE__*/jsxRuntime.jsx(Text, {
2139
+ type: access_denied ? 'error' : 'default',
2140
+ style: {
2141
+ color: 'gray',
2142
+ textAlign: 'center'
2143
+ },
2144
+ children: msg
2145
+ })]
2146
+ });
2131
2147
  }
2132
2148
 
2133
2149
  exports.default = Placeholder;