nzk-react-components 0.4.2 → 0.4.5
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.
- package/dist/assets/icons/bear.svg +177 -0
- package/dist/assets/icons/bear.svg.js +606 -0
- package/dist/assets/icons/bear.svg.js.map +1 -0
- package/dist/assets/icons/flamingo.svg +85 -0
- package/dist/assets/icons/flamingo.svg.js +287 -0
- package/dist/assets/icons/flamingo.svg.js.map +1 -0
- package/dist/assets/icons/giraffe.svg +259 -0
- package/dist/assets/icons/giraffe.svg.js +756 -0
- package/dist/assets/icons/giraffe.svg.js.map +1 -0
- package/dist/assets/icons/penguin.svg +231 -0
- package/dist/assets/icons/penguin.svg.js +718 -0
- package/dist/assets/icons/penguin.svg.js.map +1 -0
- package/dist/assets/icons/sealion.svg +156 -0
- package/dist/assets/icons/sealion.svg.js +649 -0
- package/dist/assets/icons/sealion.svg.js.map +1 -0
- package/dist/components/DrawingTool/DrawingTool.d.ts +29 -0
- package/dist/components/DrawingTool/DrawingTool.js +277 -0
- package/dist/components/DrawingTool/DrawingTool.js.map +1 -0
- package/dist/components/DrawingTool/DrawingTool.stories.d.ts +6 -0
- package/dist/components/DrawingTool/DrawingTool.styles.d.ts +41 -0
- package/dist/components/DrawingTool/DrawingTool.styles.js +54 -0
- package/dist/components/DrawingTool/DrawingTool.styles.js.map +1 -0
- package/dist/components/DrawingTool/DrawingToolProvider.d.ts +56 -0
- package/dist/components/DrawingTool/DrawingToolProvider.js +182 -0
- package/dist/components/DrawingTool/DrawingToolProvider.js.map +1 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.d.ts +21 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.js +89 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.js.map +1 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.styles.d.ts +9 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.styles.js +18 -0
- package/dist/components/DrawingTool/components/ColourToolbar/ColourToolbar.styles.js.map +1 -0
- package/dist/components/DrawingTool/components/ColourToolbar/index.d.ts +2 -0
- package/dist/components/DrawingTool/components/ColourToolbar/index.js +8 -0
- package/dist/components/DrawingTool/components/ColourToolbar/index.js.map +1 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.d.ts +9 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.js +88 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.js.map +1 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.styles.d.ts +4 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.styles.js +22 -0
- package/dist/components/DrawingTool/components/FileInput/FileInput.styles.js.map +1 -0
- package/dist/components/DrawingTool/components/FileInput/index.d.ts +2 -0
- package/dist/components/DrawingTool/components/FileInput/index.js +8 -0
- package/dist/components/DrawingTool/components/FileInput/index.js.map +1 -0
- package/dist/components/DrawingTool/components/Header/Header.d.ts +9 -0
- package/dist/components/DrawingTool/components/Header/Header.js +38 -0
- package/dist/components/DrawingTool/components/Header/Header.js.map +1 -0
- package/dist/components/DrawingTool/components/Header/index.d.ts +2 -0
- package/dist/components/DrawingTool/components/Header/index.js +8 -0
- package/dist/components/DrawingTool/components/Header/index.js.map +1 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.d.ts +8 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.js +31 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.js.map +1 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.styles.d.ts +9 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.styles.js +18 -0
- package/dist/components/DrawingTool/components/OpacityToggle/OpacityToggle.styles.js.map +1 -0
- package/dist/components/DrawingTool/components/OpacityToggle/index.d.ts +2 -0
- package/dist/components/DrawingTool/components/OpacityToggle/index.js +8 -0
- package/dist/components/DrawingTool/components/OpacityToggle/index.js.map +1 -0
- package/dist/components/DrawingTool/components/Placeable/index.d.ts +9 -0
- package/dist/components/DrawingTool/components/Placeable/index.js +22 -0
- package/dist/components/DrawingTool/components/Placeable/index.js.map +1 -0
- package/dist/components/DrawingTool/index.d.ts +2 -0
- package/dist/components/DrawingTool/lib/Sketch.d.ts +90 -0
- package/dist/components/DrawingTool/lib/Sketch.js +414 -0
- package/dist/components/DrawingTool/lib/Sketch.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchCut.d.ts +22 -0
- package/dist/components/DrawingTool/lib/SketchCut.js +98 -0
- package/dist/components/DrawingTool/lib/SketchCut.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchCutModel.d.ts +6 -0
- package/dist/components/DrawingTool/lib/SketchCutModel.js +20 -0
- package/dist/components/DrawingTool/lib/SketchCutModel.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchLayer.d.ts +27 -0
- package/dist/components/DrawingTool/lib/SketchLayer.js +59 -0
- package/dist/components/DrawingTool/lib/SketchLayer.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchModel.d.ts +65 -0
- package/dist/components/DrawingTool/lib/SketchModel.js +137 -0
- package/dist/components/DrawingTool/lib/SketchModel.js.map +1 -0
- package/dist/components/DrawingTool/lib/SketchStrokeModel.d.ts +33 -0
- package/dist/components/DrawingTool/lib/SketchStrokeModel.js +48 -0
- package/dist/components/DrawingTool/lib/SketchStrokeModel.js.map +1 -0
- package/dist/components/DrawingTool/lib/createInteractionSurface.d.ts +16 -0
- package/dist/components/DrawingTool/lib/createInteractionSurface.js +56 -0
- package/dist/components/DrawingTool/lib/createInteractionSurface.js.map +1 -0
- package/dist/components/DrawingTool/lib/trace.d.ts +3 -0
- package/dist/components/DrawingTool/lib/trace.js +24 -0
- package/dist/components/DrawingTool/lib/trace.js.map +1 -0
- package/dist/components/DrawingTool/lib/trimCanvas.d.ts +2 -0
- package/dist/components/DrawingTool/lib/trimCanvas.js +42 -0
- package/dist/components/DrawingTool/lib/trimCanvas.js.map +1 -0
- package/dist/components/Icon/icons.d.ts +5 -0
- package/dist/components/Icon/icons.js +10 -0
- package/dist/components/Icon/icons.js.map +1 -1
- package/dist/hooks/useCloudinary/index.d.ts +1 -1
- package/dist/hooks/useCloudinary/index.js +8 -9
- package/dist/hooks/useCloudinary/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,649 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
|
|
5
|
+
function _interopNamespace(e) {
|
|
6
|
+
if (e && e.__esModule) return e;
|
|
7
|
+
var n = Object.create(null);
|
|
8
|
+
if (e) {
|
|
9
|
+
Object.keys(e).forEach(function (k) {
|
|
10
|
+
if (k !== 'default') {
|
|
11
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
12
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return e[k];
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
n['default'] = e;
|
|
22
|
+
return Object.freeze(n);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
26
|
+
|
|
27
|
+
var _g;
|
|
28
|
+
|
|
29
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
30
|
+
|
|
31
|
+
function SvgSealion(props) {
|
|
32
|
+
return /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
33
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
34
|
+
width: 227.064,
|
|
35
|
+
height: 227.064,
|
|
36
|
+
viewBox: "0 0 227.064 227.064"
|
|
37
|
+
}, props), _g || (_g = /*#__PURE__*/React__namespace.createElement("g", {
|
|
38
|
+
"data-name": "Group 1996"
|
|
39
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
40
|
+
"data-name": "Path 2946",
|
|
41
|
+
d: "M203.98 145.276l-10.021-6.661-.2-.424-.4-.848c-1.435-3.077-5.224-11.367-8.111-19.157-.212-.57-.413-1.132-.613-1.691l1.742-.568.962-2.325a8.04 8.04 0 00-.767-5c-1.3-2.124-2.3-2.406-2.3-2.406s-.873.244-2.387.683c-.028-.15-.057-.275-.085-.426l-.027-.127c-.121-.649-.242-1.346-.365-2.073l-.1-.589c-.11-.657-.218-1.339-.329-2.049l-.045-.3a348.588 348.588 0 01-.483-3.264c-.1-.674-.193-1.367-.292-2.068a47.14 47.14 0 00-.1-.7c-.116-.846-.231-1.712-.348-2.588l-.155-1.185c-.074-.568-.15-1.144-.223-1.721q-.21-1.624-.42-3.281c-.009-.08-.021-.157-.03-.237-1.857-14.654-3.709-30.649-5.186-34.218-2.041-4.926-6.227-14.755-7.668-18.13.062.042.144.083.2.129a8.488 8.488 0 013.084 3.993s.038-.089.087-.239V37.8l.055-.186.028-.119c.015-.061.03-.117.044-.184a4.47 4.47 0 00.053-.293c.006-.032.008-.066.013-.1.013-.1.025-.2.032-.3 0-.04.006-.081.008-.127.008-.106.011-.216.011-.331v-.186a95.4 95.4 0 00-72-16.881c0 .278-.008.56.009.835.015.314.047.623.087.93l.023.165c.653 4.616 3.838 8.325 5.97 10.3.186.172.362.331.528.475l.064.057c.148.127.286.244.415.346.04.034.072.059.11.089.1.083.2.163.288.229l.161.117c.049.036.1.078.144.1.085.061.151.1.189.125a1.454 1.454 0 00.428.106 10.823 10.823 0 001.142.057c.3 0 .617 0 .941-.011a57.41 57.41 0 001.674-.068 14.348 14.348 0 00.437 4.317l.006.008c.2.233.4.437.6.644a19.727 19.727 0 01-1.85 4.55c-2.134 3.222-17.771 28.86-17.771 28.86L81.176 88.922a86.087 86.087 0 01-5.928-10.389 143.356 143.356 0 0021.688-34.457c-2.5 1.458-9.913 4.018-18.556 6.744-.786.25-1.581.5-2.384.75-1.607.5-3.243 1-4.889 1.5-11.137 3.389-22.6 6.646-27.61 8.052a9.528 9.528 0 00-2.272.638l-.348.1-.021.059a.753.753 0 01-.068.032s-.051.216-.136.589c-3.862 11.519-4.536 28.8-4.589 38.156-.025 1.871-.013 3.754.04 5.64.013.589.025.926.025.926h.006a89.063 89.063 0 002.7 19.764c4.983 18.523 13.081 30.165 17.675 35.65.233.738.471 1.492.727 2.263 1.388 4.215 3.107 8.876 5.231 14.018a69.49 69.49 0 008.73 8.314c.523.428 1.068.867 1.636 1.312a97.674 97.674 0 0050.5 20.365 96.088 96.088 0 0080.647-63.672m-53.836-117.6l4.173 1.013a.977.977 0 00-.1.038 108.287 108.287 0 00-6.327-1.412c1.386.216 2.253.362 2.253.362m-21.264-2.314c-.9.017-1.751.049-2.575.095-.017-.027-.034-.051-.053-.078a46.318 46.318 0 012.628-.017",
|
|
42
|
+
opacity: 0.3
|
|
43
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
44
|
+
"data-name": "Path 2796",
|
|
45
|
+
d: "M21.854 61.95s-9.218 38.078-1.954 65.075 21.145 39.387 21.145 39.387l22.464-74.989s-4.336-1.976-7.536-13.015S30.206 57.773 21.854 61.95",
|
|
46
|
+
fill: "#54121a"
|
|
47
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
48
|
+
"data-name": "Path 2797",
|
|
49
|
+
d: "M17.193 107.262s-1.026-29.055 4.75-45.4c0 0 48.77-13.535 56.059-17.784 0 0-19.626 47.994-60.81 63.186",
|
|
50
|
+
fill: "#721b26"
|
|
51
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
52
|
+
"data-name": "Path 2798",
|
|
53
|
+
d: "M20.836 65.451a21.75 21.75 0 002.595 6.645c.229.381.532.8.975.829s.818-.339 1.111-.682c2.353-2.757 4.707-5.655 7.9-7.376a7.065 7.065 0 013.961-1 13.893 13.893 0 012.732.738 14.868 14.868 0 009.929-.441 29.419 29.419 0 005.138-2.968c7.829-5.248 15.69-10.523 22.667-16.86.028-.025.055-.053.083-.08.045-.11.076-.18.076-.18-7.289 4.249-56.059 17.786-56.059 17.786a51.863 51.863 0 00-1.108 3.59",
|
|
54
|
+
fill: "#a9292b"
|
|
55
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
56
|
+
"data-name": "Path 2799",
|
|
57
|
+
d: "M24.831 66.06a.843.843 0 00-.456.824 1.777 1.777 0 00.371.918 1.225 1.225 0 00.746.574.888.888 0 00.6-.134 1.272 1.272 0 00.439-1.621 1.344 1.344 0 00-1.583-.613",
|
|
58
|
+
fill: "#721b26"
|
|
59
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
60
|
+
"data-name": "Path 2800",
|
|
61
|
+
d: "M28.339 62.143a1.417 1.417 0 00-.636.477.746.746 0 00-.066.763.71.71 0 00.914.24 1.036 1.036 0 00.521-.852.753.753 0 00-.148-.547.4.4 0 00-.523-.078",
|
|
62
|
+
fill: "#721b26"
|
|
63
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
64
|
+
"data-name": "Path 2801",
|
|
65
|
+
d: "M47.594 59.827a.906.906 0 10-.055 1.812 1.109 1.109 0 00.833-.4 1.033 1.033 0 00.21-1.079.7.7 0 00-.969-.316",
|
|
66
|
+
fill: "#721b26"
|
|
67
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
68
|
+
"data-name": "Path 2802",
|
|
69
|
+
d: "M44.633 66.686c-.551-.8-2.126-.3-2.348.559a1.41 1.41 0 00.5 1.392.891.891 0 00.589.235 1.053 1.053 0 00.517-.214 2.172 2.172 0 00.786-.85 1.155 1.155 0 00-.045-1.121",
|
|
70
|
+
fill: "#a9292b"
|
|
71
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
72
|
+
"data-name": "Path 2803",
|
|
73
|
+
d: "M38.09 64.768c-.21-.257-.623-.1-.791.117a2.411 2.411 0 00-.3 1.282c0 .22.08.479.29.541.259.08.483-.193.6-.439a4.466 4.466 0 00.268-.773.836.836 0 00-.066-.733",
|
|
74
|
+
fill: "#a9292b"
|
|
75
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
76
|
+
"data-name": "Path 2804",
|
|
77
|
+
d: "M56.09 78.808s-2.162 7.17 6.367 16.124l1.421-3.509s-7.094-10.548-8.033-14.192.244 1.575.244 1.575",
|
|
78
|
+
fill: "#731925"
|
|
79
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
80
|
+
"data-name": "Path 2805",
|
|
81
|
+
d: "M43.533 178.962s25.208 30.412 70.532 30.488 77.753-34.229 86.239-54.037l-25.278-16.8s-8.53-17.851-11.371-28.551-6.4-52-8.885-58.006-8.173-19.316-8.173-19.316-7.064-4.12-24.678-6.6-27.565 1.713-27.565 1.713-2.133 11.388-4.267 14.609-17.771 28.86-17.771 28.86L59.17 94.288s-24.876 34.939-25.588 36.706-3.639 15.061 9.951 47.968",
|
|
82
|
+
fill: "#8b232c"
|
|
83
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
84
|
+
"data-name": "Path 2806",
|
|
85
|
+
d: "M124.444 173.25c-5.182-5.445-20.139-14.546-26.8-18.9s-26.391-15.104-28.527-15.314-8.15 1.441-15.457 3.59-5.063.085-4.264-5.867c.648-4.824 8.469-34.316 11.415-45.336l-1.642 2.865s-24.882 34.939-25.587 36.705-3.641 15.063 9.951 47.967c0 0 25.208 30.412 70.532 30.488a89.947 89.947 0 0030.573-5.339c-2.314-10.828-15.014-25.416-20.194-30.859",
|
|
86
|
+
fill: "#681720"
|
|
87
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
88
|
+
"data-name": "Path 2807",
|
|
89
|
+
d: "M49.418 124.675l12.017 19.547 1.022-5.188-12.393-19.377z",
|
|
90
|
+
fill: "#681720"
|
|
91
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
92
|
+
"data-name": "Path 2808",
|
|
93
|
+
d: "M166.317 118.185c-1.068-2.88-2.016-5.689-2.662-8.124a36.81 36.81 0 01-.335-1.4c-6.8 1.956-29.364 8.548-45.156 14.484-18.791 7.062-53.84 26.6-53.84 26.6 2.666 4.745 5.33 6.5 5.33 6.5l21.856-9.108s35.318-15.059 41.049-17.458c5.059-2.119 28.364-9.737 33.758-11.494",
|
|
94
|
+
fill: "#681720"
|
|
95
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
96
|
+
"data-name": "Path 2809",
|
|
97
|
+
d: "M175.028 138.614s-8.531-17.847-11.373-28.553c-2.105-7.927-4.6-32.612-6.763-47.339-.006.072-.019.155-.025.227-.559 5.877-1.674 11.951-4.459 17.22-2.293 4.336-5.75 8.077-7.306 12.727-.335 1-.5 2.283.316 2.95a2.2 2.2 0 001.755.324c2.069-.345 3.628-1.992 5.413-3.09s4.5-1.475 5.674.263c1.291 1.92-.449 4.4-2.153 5.968-4.536 4.177-9.618 7.827-13.479 12.636a3.506 3.506 0 00-.918 1.808 2.574 2.574 0 002.022 2.452 8.687 8.687 0 003.423-.028 37.8 37.8 0 0116.964 1.742c.3 3.506-2.206 6.543-4.377 9.315a74.9 74.9 0 00-11.869 21.894 3.238 3.238 0 00-.252 1.606c.286 1.528 2.49 1.816 3.843 1.047s2.274-2.143 3.62-2.921c3.995-2.308 9.777 1.452 13.439-1.352 2.13-1.632 3.573-5.328 6.115-4.468a3.219 3.219 0 011.872 2.74c.341 2.651-1.2 5.209-3.105 7.083s-4.22 3.3-6.081 5.216a16.333 16.333 0 00-4.41 8.859 3.144 3.144 0 00.074 1.651c.634 1.566 2.863 1.371 4.531 1.119 5.383-.807 10.792.752 16.139 1.768a40.793 40.793 0 005.975.733 72.471 72.471 0 0010.669-16.8z",
|
|
98
|
+
fill: "#b53034"
|
|
99
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
100
|
+
"data-name": "Path 2810",
|
|
101
|
+
d: "M142.114 115.04a2.993 2.993 0 001.619 1.164 8.616 8.616 0 003.42-.033 37.791 37.791 0 0116.962 1.744 6.562 6.562 0 01-.008.985l2.206-.719c-.259-.7-.513-1.4-.755-2.09l-.08-.231a98.842 98.842 0 01-.623-1.819c-.083-.25-.157-.49-.237-.738-.136-.428-.278-.861-.4-1.276-.206-.678-.4-1.337-.564-1.971a35.02 35.02 0 01-.333-1.393 941.073 941.073 0 00-21.207 6.375",
|
|
102
|
+
fill: "#8b232c"
|
|
103
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
104
|
+
"data-name": "Path 2811",
|
|
105
|
+
d: "M176.018 162.702a3.622 3.622 0 00.371 3.469 2.253 2.253 0 00.949.833c1.041.434 2.181-.331 2.967-1.14a4.436 4.436 0 001.371-2.355c.5-3.6-4.476-3.431-5.657-.807",
|
|
106
|
+
fill: "#8b232c"
|
|
107
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
108
|
+
"data-name": "Path 2812",
|
|
109
|
+
d: "M170.412 163.229a1.259 1.259 0 00-1.534-.369 2.879 2.879 0 00-.651.435 1.661 1.661 0 00-.5 1.751 1.625 1.625 0 002.344.666 1.805 1.805 0 00.345-2.484",
|
|
110
|
+
fill: "#8b232c"
|
|
111
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
112
|
+
"data-name": "Path 2813",
|
|
113
|
+
d: "M157.578 136.867a1.6 1.6 0 00-.155 1.774.954.954 0 00.293.284 1.357 1.357 0 001.39-.248 5.12 5.12 0 001.181-1.123 1.663 1.663 0 00.4-.907 1.508 1.508 0 00-.21-.75.9.9 0 00-1.392-.417 7.532 7.532 0 00-1.5 1.386",
|
|
114
|
+
fill: "#8b232c"
|
|
115
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
116
|
+
"data-name": "Path 2814",
|
|
117
|
+
d: "M149.264 136.491a1.048 1.048 0 00-.453.511.68.68 0 00.339.746 1.113 1.113 0 00.858.063 3.311 3.311 0 00.79-.394l.6-.369c.263-.163.555-.367.589-.674a.671.671 0 00-.479-.659c-.8-.269-1.636.352-2.242.776",
|
|
118
|
+
fill: "#b53034"
|
|
119
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
120
|
+
"data-name": "Path 2815",
|
|
121
|
+
d: "M177.554 157.613a.726.726 0 00-.057.333.237.237 0 00.223.214.338.338 0 00.22-.146 5.5 5.5 0 001.17-3.02 11.411 11.411 0 00-.25-3.264 2.635 2.635 0 00-.375-1.191 2.385 2.385 0 00-.083 1.07 19.627 19.627 0 01-.038 2.03 16.581 16.581 0 01-.81 3.974",
|
|
122
|
+
fill: "#66171f"
|
|
123
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
124
|
+
"data-name": "Path 2816",
|
|
125
|
+
d: "M182.166 154.425a1.788 1.788 0 00-.144.515.44.44 0 00.25.437.419.419 0 00.456-.191 1.111 1.111 0 00.146-.507 6.641 6.641 0 00-.282-3.321c-.43.14-.214.89-.2 1.221a4.834 4.834 0 01-.225 1.846",
|
|
126
|
+
fill: "#66171f"
|
|
127
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
128
|
+
"data-name": "Path 2817",
|
|
129
|
+
d: "M183.645 148.762c1.072.831 1.488 2.3 2.548 3.143a.592.592 0 00.288.148.239.239 0 00.261-.146.356.356 0 00-.089-.282l-1.626-2.4c-.29-.428-.733-1.178-1.27-1.329-.793-.223-.5.559-.112.863",
|
|
130
|
+
fill: "#66171f"
|
|
131
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
132
|
+
"data-name": "Path 2818",
|
|
133
|
+
d: "M141.168 106.757a1.056 1.056 0 00-.413.914c.1.392.583.536.988.536a3.385 3.385 0 002.632-1.287 1.083 1.083 0 00.265-.583.876.876 0 00-.428-.742c-1.325-.867-2.17.269-3.044 1.162",
|
|
134
|
+
fill: "#b53034"
|
|
135
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
136
|
+
"data-name": "Path 2819",
|
|
137
|
+
d: "M153.525 83.155a.9.9 0 00-.352.343.946.946 0 00-.062.333 1.062 1.062 0 00.231.911 1.02 1.02 0 00.911.053 3.323 3.323 0 001.185-.523 1.338 1.338 0 00.557-1.121c-.134-1.532-1.854-.4-2.469 0",
|
|
138
|
+
fill: "#8b232c"
|
|
139
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
140
|
+
"data-name": "Path 2820",
|
|
141
|
+
d: "M156.406 76.851a2.622 2.622 0 00-.763.432.814.814 0 00-.254.3.612.612 0 00.343.752 1.08 1.08 0 00.884-.051 1.052 1.052 0 00.655-.782c.038-.354-.286-.738-.634-.659",
|
|
142
|
+
fill: "#8b232c"
|
|
143
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
144
|
+
"data-name": "Path 2821",
|
|
145
|
+
d: "M151.575 66.407a.816.816 0 00.721.354 1.511 1.511 0 00.78-.284 2.7 2.7 0 00.837-.894 1.485 1.485 0 00.231-.822 1.077 1.077 0 00-1.768-.695c-.451.422-1.147 1.768-.8 2.34",
|
|
146
|
+
fill: "#b53034"
|
|
147
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
148
|
+
"data-name": "Path 2822",
|
|
149
|
+
d: "M166.674 135.289l-6.844 5.468-13.058 9.463s-7.329 4.466-9.194 5.386-3.732 1.721-3.732 1.721-.445.534 1.42 0 6.087-1.865 14.083-7.374a136.215 136.215 0 0017.326-14.037c1.732-1.91 0-.627 0-.627",
|
|
150
|
+
fill: "#c29ca0"
|
|
151
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
152
|
+
"data-name": "Path 2823",
|
|
153
|
+
d: "M174.344 137.162s-3.137 6.216-4.737 7.772-5.377 6.973-12.4 11.328a112.087 112.087 0 01-18.657 9.417 184.724 184.724 0 00-19.5 9.018c-4.266 2.442-10.44 6.131-10.663 6.619s.356.445 1.068 0a228.389 228.389 0 0122.033-11.328c9.506-4.042 19.5-7.863 25.677-12.04s13.462-11.239 14.66-13.238a65.5 65.5 0 003.016-6.483z",
|
|
154
|
+
fill: "#c29ca0"
|
|
155
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
156
|
+
"data-name": "Path 2824",
|
|
157
|
+
d: "M157.744 86.6s-3.3 7.138-6.093 10.059-2.755 3-2.63 3.171 1.168.083 3.3-2.422a34.811 34.811 0 005.423-8.223c.877-2.3.877-3.132.668-3.506s-.485.53-.668.918",
|
|
158
|
+
fill: "#c29ca0"
|
|
159
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
160
|
+
"data-name": "Path 2825",
|
|
161
|
+
d: "M105.366 107.929s11.727-.668 21.953-4.925 13.415-7.889 13.415-7.889.479-.5.646 0-1.837 2.213-2.8 3.007a48.562 48.562 0 01-15.775 7.471c-8.1 2.045-15.569 3.38-17.949 2.921s.5-.585.5-.585",
|
|
162
|
+
fill: "#c29ca0"
|
|
163
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
164
|
+
"data-name": "Path 2826",
|
|
165
|
+
d: "M176.102 173.776a2.413 2.413 0 00-.589.6.827.827 0 00-.072.8 1.067 1.067 0 00.377.369 1.507 1.507 0 00.345.184 1.076 1.076 0 001.068-.286 1.7 1.7 0 00.452-1.045 1.308 1.308 0 00-.136-.782c-.43-.731-1-.191-1.445.163",
|
|
166
|
+
fill: "#b53034"
|
|
167
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
168
|
+
"data-name": "Path 2827",
|
|
169
|
+
d: "M62.457 124.675c-.754 5.121-2.8 9.807-3.552 14.842-.263 3.65-.451 7.363-.8 11.025-.288 2.957-.613 5.915-1.153 8.872a106.836 106.836 0 01-.757-20.118c.725-5.322 3.359-10.169 6.265-14.62",
|
|
170
|
+
fill: "#a45763"
|
|
171
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
172
|
+
"data-name": "Path 2828",
|
|
173
|
+
d: "M58.104 150.542c.3-3.12.483-6.271.693-9.4-.861.24-1.761.5-2.685.765a104.875 104.875 0 00.837 17.5c.541-2.957.865-5.915 1.155-8.872",
|
|
174
|
+
fill: "#81464e"
|
|
175
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
176
|
+
"data-name": "Path 2829",
|
|
177
|
+
d: "M58.203 132.381a28.8 28.8 0 00-1.456 4.215l2.128 3.455.036-.534a40.936 40.936 0 01.975-4.51z",
|
|
178
|
+
fill: "#81464e"
|
|
179
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
180
|
+
"data-name": "Path 2830",
|
|
181
|
+
d: "M48.997 106.745a9.26 9.26 0 00-4.264 3.982c-1.6 2.931 1.2 6.131 1.2 6.131s12.928 19.433 14.26 22.176 5.464 8.821 5.464 8.821l5.332-3.145s-10-19.191-12.129-22.523-9.197-13.022-9.863-15.442",
|
|
182
|
+
fill: "#2a6aa6"
|
|
183
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
184
|
+
"data-name": "Path 2831",
|
|
185
|
+
d: "M44.256 153.923c-2.361 5.5-1.749 11.443-1.068 17.261l-.293.1c-2.153-5.292-3.563-13.293 1.361-17.362",
|
|
186
|
+
fill: "#81464e"
|
|
187
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
188
|
+
"data-name": "Path 2832",
|
|
189
|
+
d: "M62.457 149.82c.46 5.96-.324 11.773.875 17.614 1.238 5.758 2.779 11.576 3.684 17.568h-.015c-3.2-6.861-6.31-14.052-6.835-21.7a40.255 40.255 0 012.291-13.488",
|
|
190
|
+
fill: "#81464e"
|
|
191
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
192
|
+
"data-name": "Path 2833",
|
|
193
|
+
d: "M71.458 156.935c1.072 5.881.89 11.742 2.685 17.43 1.825 5.6 3.959 11.226 5.475 17.093l-.015.008c-3.887-6.5-7.725-13.327-9.035-20.878a40.3 40.3 0 01.89-13.653",
|
|
194
|
+
fill: "#81464e"
|
|
195
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
196
|
+
"data-name": "Path 2834",
|
|
197
|
+
d: "M68.754 154.741s-3.609 4.567-4.2 5.154-1.545 2.5-.735 5.523 3.459 3.681 5.373 3.681 5.744-.954 5.523-6.4a9.871 9.871 0 00-1.84-4.37c-1.473-1.744-2.724-3.584-2.724-3.584a.843.843 0 00-1.4 0",
|
|
198
|
+
fill: "#e9ea43"
|
|
199
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
200
|
+
"data-name": "Path 2835",
|
|
201
|
+
d: "M68.716 168.4c-2.726-.28-4.124-2.172-4.417-4.86a5.12 5.12 0 012.062-4.9 20.048 20.048 0 002.757-3.268.56.56 0 01-.013-.922 1.1 1.1 0 00-.35.3s-3.609 4.565-4.2 5.154-1.547 2.5-.737 5.523 3.461 3.681 5.375 3.681a5.85 5.85 0 003.622-1.221 9.249 9.249 0 01-4.1.523",
|
|
202
|
+
fill: "#bfa906"
|
|
203
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
204
|
+
"data-name": "Path 2836",
|
|
205
|
+
d: "M70.153 154.741a1.254 1.254 0 00-.172-.163.925.925 0 01-.233 1.011 20.762 20.762 0 001.661 2.465 16.333 16.333 0 012.355 3.313 9.274 9.274 0 01-1.03 6.579l-.011.015c1.187-.914 2.111-2.514 2-5.267a9.846 9.846 0 00-1.84-4.37c-1.473-1.744-2.724-3.584-2.724-3.584",
|
|
206
|
+
fill: "#f9fab4"
|
|
207
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
208
|
+
"data-name": "Path 2837",
|
|
209
|
+
d: "M68.164 158.13c-3.921 2.552-3.3 9.62 2.174 9.2a4.945 4.945 0 01-3.38-.46c-3.077-2.073-2.219-7.516 1.206-8.743",
|
|
210
|
+
fill: "#83851b"
|
|
211
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
212
|
+
"data-name": "Path 2838",
|
|
213
|
+
d: "M67.565 160.891a4.22 4.22 0 00.784 4.381c-1.534-.788-2.109-3.175-.784-4.381",
|
|
214
|
+
fill: "#83851b"
|
|
215
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
216
|
+
"data-name": "Path 2839",
|
|
217
|
+
d: "M70.041 160.264c1.742.884 1.772 3.711.3 4.86a4.2 4.2 0 00-.3-4.86",
|
|
218
|
+
fill: "#83851b"
|
|
219
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
220
|
+
"data-name": "Path 2840",
|
|
221
|
+
d: "M70.041 157.982c2.73 1.583 4.684 5.987 1.952 8.431 2.121-2.8.263-6.346-1.952-8.431",
|
|
222
|
+
fill: "#83851b"
|
|
223
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
224
|
+
"data-name": "Path 2841",
|
|
225
|
+
d: "M82.519 183.546c3.448 7.286 6.534 14.537 11.39 21-6.894-2.889-11.871-13.994-11.39-21",
|
|
226
|
+
fill: "#81464e"
|
|
227
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
228
|
+
"data-name": "Path 2842",
|
|
229
|
+
d: "M96.575 176.297c.937 4.144.894 8.719 2.4 12.572 1.5 3.364 4.12 8.287 5.771 11.684a38.062 38.062 0 01-7.655-10.87c-1.761-4.366-1.34-8.936-.519-13.386",
|
|
230
|
+
fill: "#81464e"
|
|
231
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
232
|
+
"data-name": "Path 2843",
|
|
233
|
+
d: "M100.659 168.566c-2.48-11.879-.006-24.5 5.86-35.019l1.49.685a116.059 116.059 0 00-7.35 34.333",
|
|
234
|
+
fill: "#a45763"
|
|
235
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
236
|
+
"data-name": "Path 2844",
|
|
237
|
+
d: "M105.71 141.086c.712-2.3 1.469-4.582 2.3-6.854l-1.492-.685a54.968 54.968 0 00-3.953 8.88l3.147-1.34",
|
|
238
|
+
fill: "#81464e"
|
|
239
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
240
|
+
"data-name": "Path 2845",
|
|
241
|
+
d: "M99.831 155.763a46.677 46.677 0 00.827 12.8 101.29 101.29 0 011.245-11.47 910.96 910.96 0 01-2.071-1.325",
|
|
242
|
+
fill: "#81464e"
|
|
243
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
244
|
+
"data-name": "Path 2846",
|
|
245
|
+
d: "M85.025 123.431c-2.8 6.7-5.432 13.588-6.072 20.772l-1.893.035c-.454-7.734 3.389-14.923 7.965-20.808",
|
|
246
|
+
fill: "#a45763"
|
|
247
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
248
|
+
"data-name": "Path 2847",
|
|
249
|
+
d: "M76.496 115.002c-1.322 2.9-3.338 5.657-4.216 8.63-.793 3.118-1.543 6.316-2.531 9.486-.466-6.865 1.174-13.7 6.748-18.115",
|
|
250
|
+
fill: "#a45763"
|
|
251
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
252
|
+
"data-name": "Path 2848",
|
|
253
|
+
d: "M64.324 147.855s35.051-19.537 53.842-26.6 47.178-15.059 47.178-15.059 1 .284 2.3 2.408a8.048 8.048 0 01.769 5l-.964 2.325s-29.157 9.461-34.886 11.86-41.051 17.453-41.051 17.453l-21.856 9.107s-2.666-1.749-5.332-6.494",
|
|
254
|
+
fill: "#337bc0"
|
|
255
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
256
|
+
"data-name": "Path 2849",
|
|
257
|
+
d: "M165.342 106.196s-28.387 8-47.178 15.059-53.842 26.6-53.842 26.6 36.651-17.273 43.313-20.6 57.707-21.059 57.707-21.059",
|
|
258
|
+
fill: "#5ec7c5"
|
|
259
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
260
|
+
"data-name": "Path 2850",
|
|
261
|
+
d: "M155.999 116.108c-4.947-.081-22.241 6.079-29.57 8.478s-18.659 9.2-22.506 11.063-4.548 1.2-7.214 1.513-14.794 7.548-13.726 7.68 13.727-4.4 13.727-4.4-20.125 9.598-24.391 11.608c-2.671 1.259-3.993.941-4.606.526a12.891 12.891 0 001.943 1.772l21.856-9.107s35.316-15.058 41.047-17.457 34.89-11.86 34.89-11.86l.382-.924a73.468 73.468 0 01-11.829 1.108",
|
|
262
|
+
fill: "#2a6aa6"
|
|
263
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
264
|
+
"data-name": "Path 2851",
|
|
265
|
+
d: "M98.71 68.849s3.249 7.56 14.418 8.772 19.166-6.6 19.166-6.6l-13.418-11.93s-20.607 2-20.166 9.758",
|
|
266
|
+
fill: "#781a20"
|
|
267
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
268
|
+
"data-name": "Path 2852",
|
|
269
|
+
d: "M97.896 65.675s-1.168 2.312 0 2.757 2.812.4 7.276-2.155a15.049 15.049 0 0110.239-1.647c1.778.248 4.071.07 8.033 3.535s7.165 8.367 11.19 2.23-8.049-16.546-8.049-16.546l-17.634-2.188-6.776 4.1s-6.746 7.132-4.279 9.917",
|
|
270
|
+
fill: "#d58097"
|
|
271
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
272
|
+
"data-name": "Path 2853",
|
|
273
|
+
d: "M120.763 63.808c-1.755-1.518-5.8-1.325-9.974-1.318s-6.943 4.233-6.943 4.233l-.791.678a36.862 36.862 0 002.117-1.121 15.032 15.032 0 0110.239-1.645c1.776.246 4.071.068 8.031 3.533a49.828 49.828 0 011.713 1.592 37.748 37.748 0 00-4.393-5.953",
|
|
274
|
+
fill: "#954250"
|
|
275
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
276
|
+
"data-name": "Path 2854",
|
|
277
|
+
d: "M92.203 32.865s-4.822.367-5.491 0-8.4-6.233-8-14.1c0 0 13.727-10.527 35.184-17.191 0 0 14.925-3.332 38.247 1.732 0 0 4.2.666 4.167 9.2s-.964 11.462-.964 11.462-5.449 5.93-7.872 6.068-17.84-5.399-21.308-5.935-23.606-.4-24.867.534-6.274 1.4-9.1 8.23",
|
|
278
|
+
fill: "#60aa65"
|
|
279
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
280
|
+
"data-name": "Path 2855",
|
|
281
|
+
d: "M85.646 20.334c3.342-2.821 25.413-13.692 25.413-13.692l-6.618 1.333L78.838 21.02c.949 6.706 7.274 11.513 7.874 11.845.666.369 5.489 0 5.489 0a14.421 14.421 0 012.524-4.131l-6.036.983s-6.507-1.261-6.642-3.116.257-3.442 3.6-6.265",
|
|
282
|
+
fill: "#3f8452"
|
|
283
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
284
|
+
"data-name": "Path 2856",
|
|
285
|
+
d: "M116.479 23.79a95.134 95.134 0 019.688.311c3.47.534 18.884 6.072 21.309 5.936s7.874-6.068 7.874-6.068.93-2.933.962-11.462-4.165-9.2-4.165-9.2A124.159 124.159 0 00135.94.875a96.253 96.253 0 018.51 5.767c4.9 3.866 10.23 9.319 10.5 10.124s.269 4.536-.8 4.536-10.422-4.019-19.739-12.661l.583 3.065 5.655 9.8s-17.532-2.628-24.17 2.287",
|
|
286
|
+
fill: "#3f8452"
|
|
287
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
288
|
+
"data-name": "Path 2857",
|
|
289
|
+
d: "M155.409 6.725c-1.225-3.082-3.26-3.416-3.26-3.416C128.827-1.753 113.9 1.577 113.9 1.577 92.443 8.237 78.716 18.77 78.716 18.77a11.7 11.7 0 00.1 2.086c.538-.986 3.3-5.019 14.232-9.417 12.587-5.065 15.1-6.131 15.1-6.131l8.253-3.331s21.08.062 25.3 1.193c2.618.7 9.133 2.38 13.706 3.556",
|
|
290
|
+
fill: "#dcf8bc"
|
|
291
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
292
|
+
"data-name": "Path 2858",
|
|
293
|
+
d: "M102.558 22.413s14.74-4.264 34.678 2.221l11.313 5.084-1.036 2.064-5.809-1.556-10.493-2.546s-17.553-3.019-25.533-2.185-3.12-3.082-3.12-3.082",
|
|
294
|
+
fill: "#4a5d6b"
|
|
295
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
296
|
+
"data-name": "Path 2859",
|
|
297
|
+
d: "M137.236 24.634c-19.933-6.487-34.678-2.221-34.678-2.221a5.828 5.828 0 00-1.266 1.453l6.1-.557a149.087 149.087 0 0119.7 0c6.076.564 15.321 3.925 19.976 5.742z",
|
|
298
|
+
fill: "#283133"
|
|
299
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
300
|
+
"data-name": "Path 2860",
|
|
301
|
+
d: "M130.616 8.819l-3.063 1.289a6.556 6.556 0 00-2.073-1.479h.036l-2.073-5.32-1.447 4.745a5.611 5.611 0 00-2.785 1.282l-3.749-1.788 2.035 4.129c-.044.093-.091.172-.133.267a5.653 5.653 0 00-.381 3.743v.006l-3.542 2.543 5.653.434a6.67 6.67 0 002.921 1.272 6.135 6.135 0 002.643-.246h.023l3.5 2.242-.857-3.954a6.354 6.354 0 001.448-2.751 5.963 5.963 0 00.085-2.666z",
|
|
302
|
+
fill: "#3f8452"
|
|
303
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
304
|
+
"data-name": "Path 2861",
|
|
305
|
+
d: "M130.616 8.819l-4.029.382a6.53 6.53 0 00-2.073-1.477h.038l-1.11-4.413-2.41 3.838a5.6 5.6 0 00-2.785 1.282l-3.749-1.79 2.036 4.132c-.044.091-.091.17-.133.267a5.64 5.64 0 00-.381 3.743l-2.579 3.45 4.683-.471a6.677 6.677 0 002.923 1.272 6.155 6.155 0 002.641-.248l.023.006 3.5 2.242-.854-3.959a6.333 6.333 0 001.448-2.751 5.953 5.953 0 00.083-2.664z",
|
|
306
|
+
fill: "#e8e943"
|
|
307
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
308
|
+
"data-name": "Path 2862",
|
|
309
|
+
d: "M122.831 7.134a5.9 5.9 0 00-6.43 3.91c-2.056 4.8 2.117 7.64 4.65 8a6.061 6.061 0 006.755-4.709c.932-3.732-1.465-6.4-4.976-7.2",
|
|
310
|
+
fill: "#e8e943"
|
|
311
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
312
|
+
"data-name": "Path 2863",
|
|
313
|
+
d: "M117.032 11.784a5.9 5.9 0 016.43-3.91 7.352 7.352 0 013.623 1.93 6.94 6.94 0 00-4.254-2.67 5.9 5.9 0 00-6.43 3.91 5.215 5.215 0 001.051 6.153 5.228 5.228 0 01-.42-5.409",
|
|
314
|
+
fill: "#fffb56"
|
|
315
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
316
|
+
"data-name": "Path 2864",
|
|
317
|
+
d: "M106.7 25.495a10.8 10.8 0 014.09 3.359c2.177 2.666 2.651 6.952 2.651 6.952a12.046 12.046 0 01-3.7-4.89 35.207 35.207 0 00-3.044-5.421",
|
|
318
|
+
fill: "#a2282e"
|
|
319
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
320
|
+
"data-name": "Path 2865",
|
|
321
|
+
d: "M100.609 41.214c-.3-.142-4.834 1.223-9.275-3.946a15.966 15.966 0 012.613-13.166 9.034 9.034 0 017.161-.445c4.353 1.333 7.049 6.664 7.049 6.664l4.972 5.6z",
|
|
322
|
+
fill: "#a2282e"
|
|
323
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
324
|
+
"data-name": "Path 2866",
|
|
325
|
+
d: "M92.712 29.431c.935-5.243 4.148-5.686 4.148-5.686.231-.2.437-.379.63-.557a8.042 8.042 0 00-3.544.911 15.962 15.962 0 00-2.615 13.166 12.034 12.034 0 003.921 3.107 13.085 13.085 0 01-2.54-10.941",
|
|
326
|
+
fill: "#4e2b2e"
|
|
327
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
328
|
+
"data-name": "Path 2867",
|
|
329
|
+
d: "M108.156 30.316a17.11 17.11 0 00-1.467-2.285c-.407-.18-.808-.354-1.233-.555-5.068-2.4-9.77-1.954-10.728 3.732a14.638 14.638 0 001.446 9.552 10.566 10.566 0 004.434.453l12.519-5.3z",
|
|
330
|
+
fill: "#d2748a"
|
|
331
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
332
|
+
"data-name": "Path 2868",
|
|
333
|
+
d: "M108.156 30.32a17.91 17.91 0 00-2.4-3.431c-2.1.551-6.333 2.128-6.983 6.008a7.531 7.531 0 003.4 7.655l10.955-4.636z",
|
|
334
|
+
fill: "#a2282e"
|
|
335
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
336
|
+
"data-name": "Path 2869",
|
|
337
|
+
d: "M99.022 32.045l13.966 3.932.14-.059-4.974-5.6a17.976 17.976 0 00-2.4-3.431c-1.937.507-5.642 1.908-6.729 5.156",
|
|
338
|
+
fill: "#681314"
|
|
339
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
340
|
+
"data-name": "Path 2870",
|
|
341
|
+
d: "M111.058 35.674c-.157-.11-1.742-3.508-5.381-4.508a9.651 9.651 0 00-6.647.854 5.686 5.686 0 00-.182.61c.606 1.091 2.815 4.021 9.306 4.639.517.049 1 .095 1.452.14l2.662-1.127a36.464 36.464 0 01-1.21-.608",
|
|
342
|
+
fill: "#fff"
|
|
343
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
344
|
+
"data-name": "Path 2871",
|
|
345
|
+
d: "M108.658 34.43a2.545 2.545 0 11-5.074 0 2.545 2.545 0 115.074 0",
|
|
346
|
+
fill: "#254d68"
|
|
347
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
348
|
+
"data-name": "Path 2872",
|
|
349
|
+
d: "M107.393 34.43a1.275 1.275 0 11-1.27-1.376 1.327 1.327 0 011.27 1.376"
|
|
350
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
351
|
+
"data-name": "Path 2873",
|
|
352
|
+
d: "M106.058 33.515c-.328.418-.827.576-1.117.35s-.256-.75.074-1.168.827-.576 1.115-.35.256.75-.072 1.168",
|
|
353
|
+
fill: "#fff"
|
|
354
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
355
|
+
"data-name": "Path 2874",
|
|
356
|
+
d: "M97.864 33.108s3.635-2.033 6.261-1.988 4.232.621 7.4 5.108v-.7a8.919 8.919 0 00-4.589-5.337c-3.654-1.732-9.3 1.8-9.075 2.921",
|
|
357
|
+
fill: "#271112"
|
|
358
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
359
|
+
"data-name": "Path 2875",
|
|
360
|
+
d: "M113.901 35.807a18.974 18.974 0 01-4.156-5.841c-.956-2.223-2.463-5.021-3.563-6s-6.208-5.184-12.006-3.02-5.474 6.53-5.474 6.53 2.365-3.243 7.74-3.154 9.862 4.487 10.951 5.907 3.641 5.672 4.875 6.051z",
|
|
361
|
+
fill: "#c1c1c1"
|
|
362
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
363
|
+
"data-name": "Path 2876",
|
|
364
|
+
d: "M105.452 26.565c-2.448-2.289-4.127-3.8-9.934-3.075s-6.82 3.987-6.82 3.987 2.365-3.243 7.74-3.154 9.862 4.485 10.951 5.907 3.641 5.672 4.875 6.051l.445-.131c-2.137-1.253-4.85-7.338-7.257-9.585",
|
|
365
|
+
fill: "#838383"
|
|
366
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
367
|
+
"data-name": "Path 2877",
|
|
368
|
+
d: "M111.405 32.864a18.375 18.375 0 01-1.66-2.9c-.956-2.221-2.463-5.019-3.565-6s-6.206-5.184-12-3.022c-4.972 1.855-5.44 5.326-5.474 6.276a9.321 9.321 0 016.585-5.165 11.569 11.569 0 019.154 2.221c.767.6 5.854 7.579 6.964 8.586",
|
|
369
|
+
fill: "#efeeef"
|
|
370
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
371
|
+
"data-name": "Path 2878",
|
|
372
|
+
d: "M134.154 30.032a10.827 10.827 0 00-4.993 1.759c-2.955 1.763-4.866 5.629-4.866 5.629a12.038 12.038 0 005.144-3.332 35.148 35.148 0 014.714-4.055",
|
|
373
|
+
fill: "#a2282e"
|
|
374
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
375
|
+
"data-name": "Path 2879",
|
|
376
|
+
d: "M134.509 46.886c.333-.03 4.126 2.8 10.065-.54a15.959 15.959 0 002.043-13.266 9.037 9.037 0 00-6.577-2.865c-4.548-.235-8.9 3.855-8.9 3.855l-6.588 3.562z",
|
|
377
|
+
fill: "#a2282e"
|
|
378
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
379
|
+
"data-name": "Path 2880",
|
|
380
|
+
d: "M145.954 38.51c.913-5.246-1.956-6.761-1.956-6.761-.15-.261-.282-.5-.4-.738a8.031 8.031 0 013.018 2.068 15.96 15.96 0 01-2.042 13.266 12 12 0 01-4.747 1.579 13.087 13.087 0 006.127-9.414",
|
|
381
|
+
fill: "#4e2b2e"
|
|
382
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
383
|
+
"data-name": "Path 2881",
|
|
384
|
+
d: "M131.137 34.07a17.074 17.074 0 012.162-1.649c.443-.03.88-.057 1.346-.1 5.583-.524 9.849 1.5 8.808 7.172a14.651 14.651 0 01-4.622 8.482 10.617 10.617 0 01-4.324-1.089l-9.955-9.255z",
|
|
385
|
+
fill: "#d2748a"
|
|
386
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
387
|
+
"data-name": "Path 2882",
|
|
388
|
+
d: "M131.137 34.071a17.994 17.994 0 013.431-2.4c1.787 1.234 5.224 4.162 4.51 8.03a7.531 7.531 0 01-5.811 6.029l-8.711-8.1z",
|
|
389
|
+
fill: "#a2282e"
|
|
390
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
391
|
+
"data-name": "Path 2883",
|
|
392
|
+
d: "M139.131 38.809l-14.469-1.075-.11-.1 6.585-3.563a17.993 17.993 0 013.431-2.4c1.647 1.138 4.652 3.722 4.563 7.143",
|
|
393
|
+
fill: "#681314"
|
|
394
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
395
|
+
"data-name": "Path 2884",
|
|
396
|
+
d: "M126.58 38.109c.186-.051 2.836-2.7 6.6-2.4a9.65 9.65 0 015.954 3.073 5.589 5.589 0 01-.038.636c-.941.818-4.054 2.327-10.364.689-.5-.131-.937.24-1.378.127l-2.118-1.966a35.537 35.537 0 001.344-.159",
|
|
397
|
+
fill: "#fff"
|
|
398
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
399
|
+
"data-name": "Path 2885",
|
|
400
|
+
d: "M132.583 36.039a2.648 2.648 0 00-3.323 1.717 2.814 2.814 0 00.269 2.518 21.283 21.283 0 003.539.53 2.894 2.894 0 00.96-1.316 2.648 2.648 0 00-1.445-3.45",
|
|
401
|
+
fill: "#254d68"
|
|
402
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
403
|
+
"data-name": "Path 2886",
|
|
404
|
+
d: "M130.45 38.192a1.275 1.275 0 101.664-.86 1.328 1.328 0 00-1.664.86"
|
|
405
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
406
|
+
"data-name": "Path 2887",
|
|
407
|
+
d: "M130.378 37.173c-.329.418-.364.941-.078 1.166s.788.074 1.117-.345.365-.941.076-1.168-.788-.072-1.115.346",
|
|
408
|
+
fill: "#fff"
|
|
409
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
410
|
+
"data-name": "Path 2888",
|
|
411
|
+
d: "M138.97 39.518s-7.583.759-11.879-.049 4.75 2.658 4.75 2.658 6.511-.82 7.128-2.609",
|
|
412
|
+
fill: "#a2282e"
|
|
413
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
414
|
+
"data-name": "Path 2889",
|
|
415
|
+
d: "M139.857 40.206a17.678 17.678 0 00-5.078-3.268c-2.482-.854-4.317-1.6-8.83 1.532l.24-.661a9.048 9.048 0 015.994-2.825c4.027-.381 8.264 4.245 7.674 5.222",
|
|
416
|
+
fill: "#271112"
|
|
417
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
418
|
+
"data-name": "Path 2890",
|
|
419
|
+
d: "M123.863 37.259a18.966 18.966 0 005.9-4.071c1.657-1.761 4.031-3.876 5.4-4.419s7.605-2.751 12.314 1.263 2.914 8.007 2.914 8.007-1.113-3.855-6.2-5.608-10.8.848-12.308 1.812-5.362 4.086-6.651 4.02z",
|
|
420
|
+
fill: "#c1c1c1"
|
|
421
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
422
|
+
"data-name": "Path 2891",
|
|
423
|
+
d: "M134.958 31.459c3.082-1.316 5.176-2.158 10.387.5s5.048 6.078 5.048 6.078-1.115-3.857-6.2-5.61-10.8.848-12.31 1.812-5.36 4.086-6.649 4.021l-.373-.275c2.44-.447 7.07-5.239 10.1-6.53",
|
|
424
|
+
fill: "#838383"
|
|
425
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
426
|
+
"data-name": "Path 2892",
|
|
427
|
+
d: "M127.212 35.352a18.262 18.262 0 002.55-2.158c1.659-1.761 4.031-3.876 5.4-4.419s7.605-2.751 12.314 1.263c4.04 3.442 3.294 6.863 3 7.768a9.319 9.319 0 00-4.423-7.1 11.574 11.574 0 00-9.363-1.046c-.924.3-8.092 5.123-9.478 5.691",
|
|
428
|
+
fill: "#efeeef"
|
|
429
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
430
|
+
"data-name": "Path 2893",
|
|
431
|
+
d: "M116.619 28.869c4.764.886 9.546 1.861 14.414 1.649a.136.136 0 01.159.125c-4.7 1.176-9.951-.229-14.683-1.25a.269.269 0 01.11-.524",
|
|
432
|
+
fill: "#4e2b2e"
|
|
433
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
434
|
+
"data-name": "Path 2894",
|
|
435
|
+
d: "M115.333 33.493a13.763 13.763 0 004.139-2.658c-.451 1.66-2.463 2.567-4.006 3.05a.208.208 0 01-.133-.392",
|
|
436
|
+
fill: "#4e2b2e"
|
|
437
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
438
|
+
"data-name": "Path 2895",
|
|
439
|
+
d: "M122.057 36.21c-.791-1.342-1.732-3.537-.882-4.947a12.884 12.884 0 001.24 4.747.208.208 0 01-.362.2",
|
|
440
|
+
fill: "#4e2b2e"
|
|
441
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
442
|
+
"data-name": "Path 2896",
|
|
443
|
+
d: "M88.697 59.747s-.351 9.675 8.164 7.449 5.958-5.561 10.078-8.155 13.234-1.871 14.94-1.611 3.4.42 5.084 6.2 3.987 7.641 7.369 7.2 6.034-4.7 6.757-7.632 2.544-10.002 1.42-10.902-13.146-12.557-19.678-16.467-17.659 2.31-17.659 2.31-11.517 5.968-12.812 7.871a27.212 27.212 0 00-3.664 13.738",
|
|
444
|
+
fill: "#ce97a0"
|
|
445
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
446
|
+
"data-name": "Path 2897",
|
|
447
|
+
d: "M96.86 67.192c8.51-2.23 5.958-5.561 10.078-8.155s13.234-1.871 14.94-1.611 3.4.42 5.084 6.2 3.987 7.641 7.369 7.2a6.579 6.579 0 003.857-2.3c-1.3.345-2.514.2-4.067.748-3.145 1.108-5.3-3.416-5.913-6.081s-1.522-5.722-2.59-6.167-1.085-2.452-9.841-1.846-9.429 2.684-11.654 5.515-5.583 6-10.355 5.426-5.072-6.373-5.072-6.373-.346 9.675 8.164 7.445",
|
|
448
|
+
fill: "#6e1f2a"
|
|
449
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
450
|
+
"data-name": "Path 2898",
|
|
451
|
+
d: "M100.609 41.933c4.016-1.934 16.643-6.715 18.267-7.327-6.28-.612-13.7 3.533-13.7 3.533S93.652 44.105 92.36 46.01a27.322 27.322 0 00-3.656 13.437c.4-1.581.852-3.408 1.3-5.326 1.3-5.627 6.314-10.118 10.608-12.187",
|
|
452
|
+
fill: "#ecc2c8"
|
|
453
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
454
|
+
"data-name": "Path 2899",
|
|
455
|
+
d: "M115.848 37.507a4.163 4.163 0 00-2.976.068 2.23 2.23 0 00-1.274 2.494c.411 1.363 2.191 1.708 3.162 2.749.949 1.017 1 2.545 1.109 3.932a28.018 28.018 0 00.825 4.943 15.71 15.71 0 011.9-6.038 4.679 4.679 0 012.556-2.437c.53-.15 1.091-.134 1.628-.24 1.39-.275 2.63-1.732 2.141-3.06-.437-1.185-1.888-1.594-3.143-1.738a10.046 10.046 0 00-3.008.352c-.986.157-1.865-.708-2.925-1.026",
|
|
456
|
+
fill: "#432918"
|
|
457
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
458
|
+
"data-name": "Path 2900",
|
|
459
|
+
d: "M117.227 42.665c.006.042.011.083.015.125a3.955 3.955 0 01-.153 1.168 18.651 18.651 0 00-.428 3.052 34.612 34.612 0 011.335-3.548 5.818 5.818 0 011.091-1.863c1.108-1.121 2.874-1.153 4.357-1.693a7.758 7.758 0 00-3.908.381 2.871 2.871 0 01-3.041-.208 4.171 4.171 0 00-3.366-.521c.464-.136 1.3.451 1.651.682a14.077 14.077 0 011.575.99 2.443 2.443 0 01.873 1.435",
|
|
460
|
+
fill: "#ca9e67"
|
|
461
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
462
|
+
"data-name": "Path 2901",
|
|
463
|
+
d: "M109.379 43.535c-.447-.316-1.176.206-1.221.7a.8.8 0 00.63.82.838.838 0 00.907-.519.886.886 0 00-.316-1.005",
|
|
464
|
+
fill: "#3e2126"
|
|
465
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
466
|
+
"data-name": "Path 2902",
|
|
467
|
+
d: "M104.261 42.614a.7.7 0 00.839-.341c.3-.6-.388-1.219-.981-1.024-.689.227-.411 1.153.142 1.365",
|
|
468
|
+
fill: "#3e2126"
|
|
469
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
470
|
+
"data-name": "Path 2903",
|
|
471
|
+
d: "M104.79 45.233a.61.61 0 00-.059.216.471.471 0 00.138.339.741.741 0 00.326.182 1.037 1.037 0 00.7-.049.54.54 0 00.216-.157.289.289 0 00.055-.252.491.491 0 00-.081-.134l-.229-.3c-.356-.462-.831-.39-1.07.151",
|
|
472
|
+
fill: "#3e2126"
|
|
473
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
474
|
+
"data-name": "Path 2904",
|
|
475
|
+
d: "M109.574 49.486a.677.677 0 00.191.144.657.657 0 00.538.006.853.853 0 00.4-.373.742.742 0 00-.727-1.117.849.849 0 00-.4 1.34",
|
|
476
|
+
fill: "#3e2126"
|
|
477
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
478
|
+
"data-name": "Path 2905",
|
|
479
|
+
d: "M110.321 53.45a.651.651 0 00.24.256.769.769 0 00.235.072 1.139 1.139 0 00.867-.095.642.642 0 00.061-1.007 2.713 2.713 0 00-.239-.17c-.278-.2-.706-.723-1.06-.337a1.157 1.157 0 00-.1 1.282",
|
|
480
|
+
fill: "#3e2126"
|
|
481
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
482
|
+
"data-name": "Path 2906",
|
|
483
|
+
d: "M106.297 54.154a.818.818 0 00.752.445.534.534 0 00.182-.034.665.665 0 00.328-.339.712.712 0 00.04-.638.866.866 0 00-.3-.288 1.1 1.1 0 00-.428-.191c-.566-.091-.786.621-.576 1.045",
|
|
484
|
+
fill: "#3e2126"
|
|
485
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
486
|
+
"data-name": "Path 2907",
|
|
487
|
+
d: "M102.6 53.194a.827.827 0 01.165-.312.543.543 0 01.716.023 1.172 1.172 0 01.356.905c-.047.235-.286.286-.509.3a.684.684 0 01-.727-.918",
|
|
488
|
+
fill: "#3e2126"
|
|
489
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
490
|
+
"data-name": "Path 2908",
|
|
491
|
+
d: "M99.158 57.553a1.119 1.119 0 00.8.35.675.675 0 00.644-.522.915.915 0 00-.231-.666 1.433 1.433 0 00-.685-.532.738.738 0 00-.867.312 1.059 1.059 0 00.341 1.058",
|
|
492
|
+
fill: "#3e2126"
|
|
493
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
494
|
+
"data-name": "Path 2909",
|
|
495
|
+
d: "M96.685 53.884a.552.552 0 00.559-.047.76.76 0 00.153-.176.7.7 0 00.144-.485 1.127 1.127 0 00-.256-.443 1.869 1.869 0 00-.278-.352c-.35-.3-.731.161-.814.5a.983.983 0 00.492 1.005",
|
|
496
|
+
fill: "#3e2126"
|
|
497
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
498
|
+
"data-name": "Path 2910",
|
|
499
|
+
d: "M97.19 59.919a2.535 2.535 0 00.435.6 1.31 1.31 0 00.458.377.469.469 0 00.545-.106.588.588 0 00.062-.464 1.929 1.929 0 00-.574-1.047.97.97 0 00-.29-.2.644.644 0 00-.659.1c-.161.184-.07.54.021.737",
|
|
500
|
+
fill: "#3e2126"
|
|
501
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
502
|
+
"data-name": "Path 2911",
|
|
503
|
+
d: "M92.816 58.433a.574.574 0 00-.39.292.749.749 0 00.1.757.546.546 0 00.56.259.589.589 0 00.307-.276.836.836 0 00.136-.477.637.637 0 00-.71-.555",
|
|
504
|
+
fill: "#3e2126"
|
|
505
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
506
|
+
"data-name": "Path 2912",
|
|
507
|
+
d: "M92.503 52.238a.413.413 0 00.377.017.565.565 0 00.273-.271.734.734 0 00-.2-.882.368.368 0 00-.11-.061.443.443 0 00-.309.047.611.611 0 00-.254.178.832.832 0 00.222.971",
|
|
508
|
+
fill: "#3e2126"
|
|
509
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
510
|
+
"data-name": "Path 2913",
|
|
511
|
+
d: "M93.691 54.851a.662.662 0 00-.061.235 1.112 1.112 0 00.055.466.521.521 0 00.244.318.433.433 0 00.176.038.64.64 0 00.57-.415.9.9 0 00-.062-.729c-.093-.174-.235-.354-.443-.3a.871.871 0 00-.481.386",
|
|
512
|
+
fill: "#3e2126"
|
|
513
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
514
|
+
"data-name": "Path 2914",
|
|
515
|
+
d: "M120.932 52.301a.6.6 0 00-.157.5.566.566 0 00.169.28 1.1 1.1 0 00.748.3 1.709 1.709 0 00.793-.191 1.1 1.1 0 00.379-.275.526.526 0 00.116-.44.6.6 0 00-.187-.292 1.407 1.407 0 00-1.863.117",
|
|
516
|
+
fill: "#3e2126"
|
|
517
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
518
|
+
"data-name": "Path 2915",
|
|
519
|
+
d: "M122.881 49.247a.759.759 0 00.1.146.8.8 0 00.242.222.75.75 0 00.424.047 3.787 3.787 0 00.524-.087c.771-.182.384-1.142-.182-1.35-.524-.191-1.373.439-1.108 1.022",
|
|
520
|
+
fill: "#3e2126"
|
|
521
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
522
|
+
"data-name": "Path 2916",
|
|
523
|
+
d: "M124.904 45.19a.776.776 0 00.757.354.954.954 0 00.693-.5.758.758 0 00-.824-1c-.47.112-.9.682-.627 1.145",
|
|
524
|
+
fill: "#3e2126"
|
|
525
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
526
|
+
"data-name": "Path 2917",
|
|
527
|
+
d: "M130.241 44.498a.427.427 0 00.2.142.553.553 0 00.43-.091.872.872 0 00.382-.422.516.516 0 00-.678-.666.716.716 0 00-.337 1.038",
|
|
528
|
+
fill: "#3e2126"
|
|
529
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
530
|
+
"data-name": "Path 2918",
|
|
531
|
+
d: "M124.56 55.188a.583.583 0 00.462.237.97.97 0 00.513-.14 1.437 1.437 0 00.339-.265.961.961 0 00.292-.608.583.583 0 00-.32-.564.776.776 0 00-.964.178c-.239.3-.587.774-.322 1.162",
|
|
532
|
+
fill: "#3e2126"
|
|
533
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
534
|
+
"data-name": "Path 2919",
|
|
535
|
+
d: "M127.829 50.15a.608.608 0 01.358.034.627.627 0 01.275.331.546.546 0 01.04.384.529.529 0 01-.337.284.875.875 0 01-1.011-.265c-.254-.411.339-.714.676-.769",
|
|
536
|
+
fill: "#3e2126"
|
|
537
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
538
|
+
"data-name": "Path 2920",
|
|
539
|
+
d: "M134.019 47.549a.917.917 0 00.2.271.479.479 0 00.668-.68.707.707 0 00-.18-.146c-.193-.114-.61-.252-.8-.064s.017.445.114.619",
|
|
540
|
+
fill: "#3e2126"
|
|
541
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
542
|
+
"data-name": "Path 2921",
|
|
543
|
+
d: "M126.686 57.472a.638.638 0 00.008.708.606.606 0 00.475.2 1.352 1.352 0 00.511-.131 2.918 2.918 0 00.28-.133.7.7 0 00.388-.384.777.777 0 00-.223-.636.677.677 0 00-.271-.252.513.513 0 00-.214-.027 1.308 1.308 0 00-.954.655",
|
|
544
|
+
fill: "#3e2126"
|
|
545
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
546
|
+
"data-name": "Path 2922",
|
|
547
|
+
d: "M130.675 59.437a.408.408 0 00-.038.331.46.46 0 00.2.22.8.8 0 00.765.059.6.6 0 00.326-.661.409.409 0 00-.08-.163.7.7 0 00-.506-.18.85.85 0 00-.259.006.815.815 0 00-.409.388",
|
|
548
|
+
fill: "#3e2126"
|
|
549
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
550
|
+
"data-name": "Path 2923",
|
|
551
|
+
d: "M135.558 56.673a.573.573 0 01.2.358.466.466 0 01-.121.384.728.728 0 01-.263.157 2.694 2.694 0 01-.322.112.523.523 0 01-.454-.027.729.729 0 01-.148-.945.886.886 0 011.108-.04",
|
|
552
|
+
fill: "#3e2126"
|
|
553
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
554
|
+
"data-name": "Path 2924",
|
|
555
|
+
d: "M131.508 62.558a.791.791 0 00-.191.731.584.584 0 00.479.335 1.228 1.228 0 00.6-.106 1.653 1.653 0 00.685-.477.941.941 0 00.206-.788c-.261-1.111-1.416-.17-1.776.3",
|
|
556
|
+
fill: "#3e2126"
|
|
557
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
558
|
+
"data-name": "Path 2925",
|
|
559
|
+
d: "M136.735 59.251a.614.614 0 01.2.028.509.509 0 01.271.634.863.863 0 01-.545.5c-.386.138-.926-.03-.886-.526.03-.415.608-.634.956-.636",
|
|
560
|
+
fill: "#3e2126"
|
|
561
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
562
|
+
"data-name": "Path 2926",
|
|
563
|
+
d: "M139.079 56.089a1.022 1.022 0 00-.405.523.571.571 0 00.176.608.686.686 0 00.381.114 1.075 1.075 0 00.587-.14.792.792 0 00.364-.47 1.011 1.011 0 00.025-.239.817.817 0 00-.2-.6c-.309-.3-.666.013-.928.2",
|
|
564
|
+
fill: "#3e2126"
|
|
565
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
566
|
+
"data-name": "Path 2927",
|
|
567
|
+
d: "M102.263 51.642s-6.67 1.032-8.9 3.179-3.094 11.661-3.094 11.661-1.094 7.257-1.386 7.5-.2-5.229-.025-8.342 1.227-8.991 2.1-10.381 5.023-4.182 10.139-4.955c0 0 1.628-.229 1.166 1.34",
|
|
568
|
+
fill: "#e3b3be"
|
|
569
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
570
|
+
"data-name": "Path 2928",
|
|
571
|
+
d: "M101.614 44.728s-6.736.411-9.154 2.344-4.158 11.324-4.158 11.324-1.757 7.127-2.071 7.338.278-5.227.746-8.308 2.05-8.84 3.048-10.143 5.387-3.7 10.551-4c0 0 1.643-.078 1.038 1.443",
|
|
572
|
+
fill: "#fdf8fa"
|
|
573
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
574
|
+
"data-name": "Path 2929",
|
|
575
|
+
d: "M102.075 48.009s-6.7.818-9 2.893-3.463 11.555-3.463 11.555-1.325 7.221-1.624 7.452-.038-5.235.242-8.34 1.511-8.948 2.429-10.307 5.152-4.021 10.29-4.631c0 0 1.634-.176 1.123 1.378",
|
|
576
|
+
fill: "#dea4b1"
|
|
577
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
578
|
+
"data-name": "Path 2930",
|
|
579
|
+
d: "M106.619 46.93s-6.672 1.032-8.9 3.179-3.094 11.661-3.094 11.661-1.094 7.257-1.386 7.5-.2-5.229-.025-8.342 1.227-8.991 2.1-10.381 5.023-4.182 10.139-4.955c0 0 1.628-.229 1.168 1.34",
|
|
580
|
+
fill: "#e5bac5"
|
|
581
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
582
|
+
"data-name": "Path 2931",
|
|
583
|
+
d: "M107.22 51.165s-6.67 1.032-8.9 3.179-3.092 11.659-3.092 11.659-1.094 7.257-1.386 7.5-.2-5.229-.025-8.342 1.227-8.991 2.1-10.381 5.023-4.182 10.139-4.955c0 0 1.628-.229 1.166 1.34",
|
|
584
|
+
fill: "#e0a9b6"
|
|
585
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
586
|
+
"data-name": "Path 2932",
|
|
587
|
+
d: "M105.638 57.722s-6.541 1.66-8.558 4.01-1.971 11.906-1.971 11.906-.4 7.329-.666 7.6-.7-5.188-.818-8.3.367-9.067 1.1-10.533 4.6-4.641 9.622-5.9c0 0 1.6-.382 1.287 1.225",
|
|
588
|
+
fill: "#e8c0c9"
|
|
589
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
590
|
+
"data-name": "Path 2933",
|
|
591
|
+
d: "M104.041 54.98s-6.67 1.034-8.9 3.179-3.094 11.663-3.094 11.663-1.094 7.257-1.386 7.5-.2-5.229-.025-8.342 1.227-8.991 2.1-10.381 5.023-4.182 10.139-4.955c0 0 1.628-.229 1.166 1.339",
|
|
592
|
+
fill: "#fcf8f9"
|
|
593
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
594
|
+
"data-name": "Path 2934",
|
|
595
|
+
d: "M130.706 51.786s6.257 2.531 7.935 5.133.343 12.059.343 12.059-.6 7.316-.369 7.615 1.4-5.044 1.935-8.115.865-9.033.333-10.586-3.931-5.22-8.734-7.145c0 0-1.534-.594-1.443 1.039",
|
|
596
|
+
fill: "#e3b3be"
|
|
597
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
598
|
+
"data-name": "Path 2935",
|
|
599
|
+
d: "M133.01 47.016s6.464 1.943 8.376 4.377 1.454 11.975 1.454 11.975.081 7.34.335 7.619.926-5.152 1.178-8.259.027-9.077-.646-10.572-4.4-4.836-9.357-6.309c0 0-1.581-.451-1.34 1.168",
|
|
600
|
+
fill: "#fdf8fa"
|
|
601
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
602
|
+
"data-name": "Path 2936",
|
|
603
|
+
d: "M132.689 48.872s6.335 2.329 8.1 4.875.725 12.042.725 12.042-.362 7.333-.125 7.624 1.236-5.085 1.674-8.172.577-9.058 0-10.591-4.1-5.093-8.957-6.863c0 0-1.551-.545-1.409 1.085",
|
|
604
|
+
fill: "#dea4b1"
|
|
605
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
606
|
+
"data-name": "Path 2937",
|
|
607
|
+
d: "M127.547 46.201s6.257 2.531 7.935 5.133.343 12.059.343 12.059-.6 7.316-.369 7.615 1.4-5.044 1.935-8.115.865-9.033.333-10.586-3.931-5.22-8.734-7.145c0 0-1.534-.595-1.443 1.039",
|
|
608
|
+
fill: "#e5bac5"
|
|
609
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
610
|
+
"data-name": "Path 2938",
|
|
611
|
+
d: "M125.991 50.184s6.256 2.531 7.933 5.133.343 12.057.343 12.057-.595 7.318-.369 7.617 1.4-5.044 1.935-8.115.867-9.033.335-10.586-3.932-5.22-8.736-7.145c0 0-1.534-.595-1.441 1.039",
|
|
612
|
+
fill: "#e0a9b6"
|
|
613
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
614
|
+
"data-name": "Path 2939",
|
|
615
|
+
d: "M126.962 56.758s5.277 2.743 6.532 5.167-.71 10.608-.71 10.608-1.136 6.369-.96 6.651 1.647-4.309 2.376-6.958 1.515-7.853 1.18-9.258-3.012-4.911-7.066-7c0 0-1.3-.651-1.352.79",
|
|
616
|
+
fill: "#e8c0c9"
|
|
617
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
618
|
+
"data-name": "Path 2940",
|
|
619
|
+
d: "M128.212 54.628s6.257 2.531 7.935 5.133.345 12.059.345 12.059-.6 7.316-.369 7.615 1.4-5.044 1.935-8.115.865-9.033.333-10.586-3.931-5.22-8.734-7.145c0 0-1.534-.595-1.443 1.039",
|
|
620
|
+
fill: "#fcf8f9"
|
|
621
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
622
|
+
"data-name": "Path 2941",
|
|
623
|
+
d: "M58.859 122.188c-.947-1.479-2.863-4.209-4.762-7a14 14 0 00-1.013 3.353c-.254 1.7.646 3.347 1.543 4.82a125.37 125.37 0 0011.124 15.476 21.818 21.818 0 004.364 4.2c-2.478-4.737-9.508-18.119-11.256-20.849",
|
|
624
|
+
fill: "#337bc0"
|
|
625
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
626
|
+
"data-name": "Path 2942",
|
|
627
|
+
d: "M122.725 10.188a.875.875 0 00.689-.114.862.862 0 00.4-.562.848.848 0 00-.115-.682.89.89 0 00-.576-.392.85.85 0 00-1.056.668.883.883 0 00.112.689.855.855 0 00.551.392",
|
|
628
|
+
fill: "#fffb56"
|
|
629
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
630
|
+
"data-name": "Path 2943",
|
|
631
|
+
d: "M123.73 14.872c-.256.066-.413.422-.449.373s-.462-.475-.5-.286c-.028.14.326.629.24 1.091a.975.975 0 01-.108.269.784.784 0 01-.157.174.657.657 0 01-.5.108.865.865 0 01-.755-.831 2.588 2.588 0 010-.4 2.309 2.309 0 01.318-1.026 11.048 11.048 0 01.646-.905 4.235 4.235 0 00.485-.78c.848-1.518.006-1.829-.117-1.865a.238.238 0 00-.159-.121c-.042 0-.062.021-.066.07a.206.206 0 00.006.062v.108a1.832 1.832 0 01-.006.485 1.618 1.618 0 01-.918.954q-1.19.639-1.429.79a3.351 3.351 0 00-.534.441 2.223 2.223 0 00-.566 1.1 1.747 1.747 0 00.28 1.5 2.463 2.463 0 001.5.869 3.746 3.746 0 00.854.1 1.81 1.81 0 001.63-.873c.208-.284.562-1.467.311-1.4m-.678-3.792a.1.1 0 01.076.121.1.1 0 01-.119.076.1.1 0 01-.078-.121.1.1 0 01.121-.076",
|
|
632
|
+
fill: "#fffb56"
|
|
633
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
634
|
+
"data-name": "Path 2944",
|
|
635
|
+
d: "M122.309 10.232a.875.875 0 00.689-.114.862.862 0 00.4-.562.847.847 0 00-.115-.682.89.89 0 00-.576-.392.85.85 0 00-1.056.668.883.883 0 00.112.689.855.855 0 00.551.392",
|
|
636
|
+
fill: "#bfa800"
|
|
637
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
638
|
+
"data-name": "Path 2945",
|
|
639
|
+
d: "M123.314 14.916c-.256.066-.413.422-.449.373s-.462-.475-.5-.286c-.028.14.326.629.24 1.091a.975.975 0 01-.108.269.784.784 0 01-.157.174.658.658 0 01-.5.108.865.865 0 01-.755-.831 2.585 2.585 0 010-.4 2.308 2.308 0 01.314-1.027 11.044 11.044 0 01.646-.905 4.237 4.237 0 00.485-.78c.848-1.518.006-1.829-.117-1.865a.238.238 0 00-.159-.121c-.042 0-.062.021-.066.07a.206.206 0 00.006.062v.108a1.831 1.831 0 01-.006.485 1.617 1.617 0 01-.918.954q-1.19.639-1.429.79a3.35 3.35 0 00-.534.441 2.223 2.223 0 00-.566 1.1 1.747 1.747 0 00.28 1.5 2.463 2.463 0 001.5.869 3.746 3.746 0 00.854.1 1.81 1.81 0 001.624-.877c.208-.284.562-1.467.31-1.4m-.678-3.792a.1.1 0 01.076.121.1.1 0 01-.119.076.1.1 0 01-.078-.121.1.1 0 01.121-.076",
|
|
640
|
+
fill: "#bfa800"
|
|
641
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
642
|
+
"data-name": "Rectangle 1740",
|
|
643
|
+
fill: "none",
|
|
644
|
+
d: "M0 0h227.064v227.064H0z"
|
|
645
|
+
}))));
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
module.exports = SvgSealion;
|
|
649
|
+
//# sourceMappingURL=sealion.svg.js.map
|