nzk-react-components 0.4.3 → 0.4.4
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/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 +4 -0
- package/dist/components/Icon/icons.js +8 -0
- package/dist/components/Icon/icons.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,718 @@
|
|
|
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 _defs, _g, _g2, _g3, _g4, _g5, _g6, _g7, _g8, _g9, _g10, _g11, _path;
|
|
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 SvgPenguin(props) {
|
|
32
|
+
return /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
33
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
34
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
35
|
+
width: 120.001,
|
|
36
|
+
height: 119.936,
|
|
37
|
+
viewBox: "0 0 120.001 119.936"
|
|
38
|
+
}, props), _defs || (_defs = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
39
|
+
id: "penguin_svg__b"
|
|
40
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
41
|
+
"data-name": "Path 2569",
|
|
42
|
+
d: "M48.508 0L14.417 1.257h-2.722l-3.05 1.574-7.79 39.21L0 43.728l5.876 9.06 3.378 1.674.121 5.474a50.618 50.618 0 0094.508 25.223l1.25-1.852a12.34 12.34 0 012.706 4.292 65.514 65.514 0 012.588 18.645L120 99.3V61.422L117.421 15.2 88.429 0z",
|
|
43
|
+
fill: "none"
|
|
44
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
45
|
+
id: "penguin_svg__c"
|
|
46
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
47
|
+
"data-name": "Rectangle 1711",
|
|
48
|
+
transform: "translate(8.608)",
|
|
49
|
+
fill: "none",
|
|
50
|
+
d: "M0 0h108.36v115.502H0z"
|
|
51
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
52
|
+
id: "penguin_svg__d"
|
|
53
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
54
|
+
"data-name": "Path 2570",
|
|
55
|
+
d: "M56.767 33.006s4.835 3.892 6.6 4.482 10.025-2.3 11.558-4.718l2.063-3.244z",
|
|
56
|
+
fill: "none"
|
|
57
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
58
|
+
id: "penguin_svg__f"
|
|
59
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
60
|
+
"data-name": "Path 2571",
|
|
61
|
+
d: "M54.408 30.235l12.117-8.374a15.984 15.984 0 018.536-3.228c2.7-.177 3.185 3.45 3.1 3.847-.84 3.744-6.648 7.164-6.648 7.164S68.5 31.591 62.6 32.063c-.548.044-1.066.063-1.553.063-4.752 0-6.643-1.891-6.643-1.891m8.552-19.66a32.774 32.774 0 00-1.189 6.289s-.114 2.55-1.474 2.323c-.517-.086-.788-.591-.926-1.184l-5.372 12.054a11.477 11.477 0 003.892 3.6c2.123.943 12.5 3.42 18.752-4.011.3-.353.57-.673.831-.975a21.937 21.937 0 003.225-11.748C80.638 10.235 74.633 3.1 74.633 3.1c-.088 0-.177-.006-.265-.006-4.67 0-10.685 5.762-11.408 7.485",
|
|
62
|
+
fill: "none"
|
|
63
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
64
|
+
id: "penguin_svg__g"
|
|
65
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
66
|
+
"data-name": "Path 2572",
|
|
67
|
+
d: "M75.061 18.633a15.984 15.984 0 00-8.536 3.228l-12.117 8.374s2.3 2.3 8.2 1.828 8.905-2.419 8.905-2.419 5.808-3.42 6.648-7.164c.087-.388-.375-3.853-2.907-3.853q-.093 0-.189.006",
|
|
68
|
+
fill: "none"
|
|
69
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
70
|
+
id: "penguin_svg__h"
|
|
71
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
72
|
+
"data-name": "Rectangle 1715",
|
|
73
|
+
transform: "translate(54.408 18.627)",
|
|
74
|
+
fill: "none",
|
|
75
|
+
d: "M0 0h23.836v13.907H0z"
|
|
76
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
77
|
+
id: "penguin_svg__i"
|
|
78
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
79
|
+
"data-name": "Path 2573",
|
|
80
|
+
d: "M56.161 3.946c-.566.567-2.323 4.986-3.4 7.026-.746 1.411-1.219 4.831-1.365 7.292a4.962 4.962 0 001.762.98c2.034.5 4.762-.941 6.123-1.779a8.44 8.44 0 010-1.62s.906-5.156.622-6.46c-.27-1.229-2.858-5.485-3.625-5.485a.158.158 0 00-.117.047",
|
|
81
|
+
fill: "none"
|
|
82
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
83
|
+
id: "penguin_svg__k"
|
|
84
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
85
|
+
"data-name": "Path 2602",
|
|
86
|
+
d: "M73.552 8.916l2.333 1.353c2.684-.35 6.534-2.707 6.534-2.707a5.743 5.743 0 00-.742-.042 44.618 44.618 0 00-8.125 1.4",
|
|
87
|
+
fill: "none"
|
|
88
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
89
|
+
id: "penguin_svg__l"
|
|
90
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
91
|
+
"data-name": "Path 2603",
|
|
92
|
+
d: "M78.5 13.466a14.86 14.86 0 005.064 1.1 18.986 18.986 0 00-7.3-2.848z",
|
|
93
|
+
fill: "none"
|
|
94
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
95
|
+
id: "penguin_svg__m"
|
|
96
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
97
|
+
"data-name": "Path 2604",
|
|
98
|
+
d: "M76.445 14.353a29.556 29.556 0 004.924 2.707 16.416 16.416 0 00-3.29-3.174z",
|
|
99
|
+
fill: "none"
|
|
100
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
101
|
+
id: "penguin_svg__n"
|
|
102
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
103
|
+
"data-name": "Path 2605",
|
|
104
|
+
d: "M73.318 7.468l1.54.094A13.991 13.991 0 0078.4 4.645s-4.27 2.333-5.087 2.823",
|
|
105
|
+
fill: "none"
|
|
106
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
107
|
+
id: "penguin_svg__o"
|
|
108
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
109
|
+
"data-name": "Rectangle 1721",
|
|
110
|
+
transform: "translate(61.918 18.143)",
|
|
111
|
+
fill: "none",
|
|
112
|
+
d: "M0 0h4.28v2.871H0z"
|
|
113
|
+
})), /*#__PURE__*/React__namespace.createElement("radialGradient", {
|
|
114
|
+
id: "penguin_svg__a",
|
|
115
|
+
cx: 0.5,
|
|
116
|
+
cy: 0.467,
|
|
117
|
+
r: 0.431,
|
|
118
|
+
gradientTransform: "matrix(1.271 0 0 -1 .547 6.876)",
|
|
119
|
+
gradientUnits: "objectBoundingBox"
|
|
120
|
+
}, /*#__PURE__*/React__namespace.createElement("stop", {
|
|
121
|
+
offset: 0,
|
|
122
|
+
stopColor: "#fff"
|
|
123
|
+
}), /*#__PURE__*/React__namespace.createElement("stop", {
|
|
124
|
+
offset: 0.549,
|
|
125
|
+
stopColor: "#fff"
|
|
126
|
+
}), /*#__PURE__*/React__namespace.createElement("stop", {
|
|
127
|
+
offset: 1,
|
|
128
|
+
stopColor: "#c6cbd7"
|
|
129
|
+
})), /*#__PURE__*/React__namespace.createElement("radialGradient", {
|
|
130
|
+
id: "penguin_svg__j",
|
|
131
|
+
cx: 0.487,
|
|
132
|
+
cy: 0.488,
|
|
133
|
+
r: 0.394,
|
|
134
|
+
gradientTransform: "matrix(1.803 0 0 -1 4.695 14.651)",
|
|
135
|
+
xlinkHref: "#penguin_svg__a"
|
|
136
|
+
}), /*#__PURE__*/React__namespace.createElement("linearGradient", {
|
|
137
|
+
id: "penguin_svg__e",
|
|
138
|
+
x1: -2.807,
|
|
139
|
+
y1: 10.572,
|
|
140
|
+
x2: -2.757,
|
|
141
|
+
y2: 10.572,
|
|
142
|
+
gradientUnits: "objectBoundingBox"
|
|
143
|
+
}, /*#__PURE__*/React__namespace.createElement("stop", {
|
|
144
|
+
offset: 0,
|
|
145
|
+
stopColor: "#fff"
|
|
146
|
+
}), /*#__PURE__*/React__namespace.createElement("stop", {
|
|
147
|
+
offset: 0.262,
|
|
148
|
+
stopColor: "#fff"
|
|
149
|
+
}), /*#__PURE__*/React__namespace.createElement("stop", {
|
|
150
|
+
offset: 1,
|
|
151
|
+
stopColor: "#adb7d2"
|
|
152
|
+
})))), _g || (_g = /*#__PURE__*/React__namespace.createElement("g", {
|
|
153
|
+
"data-name": "Group 1947"
|
|
154
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
155
|
+
"data-name": "Group 1917",
|
|
156
|
+
clipPath: "url(#penguin_svg__b)"
|
|
157
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
158
|
+
"data-name": "Group 1916"
|
|
159
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
160
|
+
"data-name": "Group 1915",
|
|
161
|
+
opacity: 0.3
|
|
162
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
163
|
+
"data-name": "Group 1914",
|
|
164
|
+
clipPath: "url(#penguin_svg__c)"
|
|
165
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
166
|
+
"data-name": "Path 2520",
|
|
167
|
+
d: "M107.427 106.244a83.217 83.217 0 006.251-10.024c2.123-4.364 6.6-17.573-.826-30.192-4.116-6.991-11.776-10.612-17.793-12.455C93.6 45 88.482 40.963 85.764 39.391c-.612-2.811-1.534-5.77-2.867-7.21l-1.121.1-.115-3.8c1.416-1.756.906-4.476.906-4.476.85 1.076 1.077 3.739 1.077 3.739 1.3-1.3 1.416-4.022 1.416-4.022a19.227 19.227 0 011.587 3.909c3.059-4.079 1.076-8.895-3.173-11.9a13.653 13.653 0 01-1.267-1.041 17.158 17.158 0 001.18-.013 15.372 15.372 0 00-3.169-2.028c-1.054-1.2-2.1-2.535-3.084-3.852.919-.437 1.76-.884 2.378-1.226l.078-.043.264-.148.122-.069.211-.12.081-.047.18-.105.068-.039a8.21 8.21 0 00-1.361-.223c-.238-.02-.481-.032-.727-.038a18.308 18.308 0 00-2.695.165q-.561-.768-1.078-1.469c.344-.326.646-.637.912-.929a13.276 13.276 0 001.226-1.531c-1.2.281-2.291.6-3.293.934A13.405 13.405 0 0072.085 2.3c-.983-.88-3.232-1.212-5.558-1.245H65.609l-.322.009a29.83 29.83 0 00-.679.028l-.324.019a25.298 25.298 0 00-.968.076 28.136 28.136 0 00-1.426.175c-.1.015-.2.029-.291.045-.164.027-.314.056-.463.086-.084.016-.173.032-.252.049a7.068 7.068 0 00-.4.1c-.061.015-.13.031-.186.047a4.023 4.023 0 00-.447.153c-1.87.793-6.743.85-6.743.85a3.627 3.627 0 01-.381 1.065 6.709 6.709 0 00-.546-.642A11.811 11.811 0 0048.609.706a6.4 6.4 0 00-2.627-.7l.536.477.08.071.271.246a49.538 49.538 0 014.413 4.258s-.275-.191-.72-.478l-.051-.033-.385-.247-.1-.064q-.25-.156-.534-.327l-.125-.074q-.237-.141-.49-.286l-.162-.092a31.04 31.04 0 00-.638-.35l-.125-.065q-.275-.144-.554-.281l-.184-.09a13.004 13.004 0 00-.669-.3l-.081-.033c-.2-.082-.389-.156-.579-.224l-.173-.059a6.712 6.712 0 00-.622-.183 12.261 12.261 0 00-3.49-.235 14.212 14.212 0 00-1.665.2l1.281.651 7.523 3.822s-.115-.01-.3-.022l-.1-.006-.118-.007-.323-.014h-.092l-.3-.007h-.655l-.284.007-.235.008c-.1 0-.2.01-.3.016-.08 0-.158.008-.24.014a15.08 15.08 0 00-.761.073c-.121.014-.22.026-.331.042-.094.013-.187.03-.281.045a9.32 9.32 0 00-.839.173c-.089.022-.191.049-.285.076s-.172.053-.257.081-.183.058-.271.091-.181.074-.27.112c-.134.058-.264.12-.389.186-.085.046-.172.09-.252.14s-.132.091-.2.138a.978.978 0 00-.137.1c-.048.039-.1.073-.15.114a12.53 12.53 0 006.625.645s-1.287.517-2.462 1.133a6.949 6.949 0 00-1.692 1.123s.1 0 .279-.013h.04l.15-.01.074-.005a18.28 18.28 0 004.584-.943 38.757 38.757 0 00-4.138 3.1c-.066-.011-.125-.021-.207-.03a41.742 41.742 0 00-10.177.681c-.631.129-1.235.278-1.795.448l.071.074a8.943 8.943 0 00.227.224l.094.089c.085.079.184.169.3.271l.135.12c.15.131.32.275.512.432l.06.05.076.062c.162.13.343.27.533.414l.182.136c.171.128.354.26.546.4l.159.113c.242.168.5.342.776.52.068.045.14.09.211.135q.354.227.743.459c.072.044.141.087.215.13.321.19.657.381 1.011.574.076.042.157.083.234.125q.454.243.944.488l.288.144c.4.2.818.391 1.254.586l.227.1q.513.225 1.058.445c-.311.617-.553 1.075-.645 1.2 0 0 .81-.317 1.764-.763.286.106.573.212.871.316l.173.058c.473.162.963.32 1.466.473l.117.038c-.349 1.43-.8 2.914-.819 2.983-.988.083-1.619.152-1.619.152a4.79 4.79 0 00.706.883 17.006 17.006 0 001.732 1.508l-1.236 8.891-.859.27a7.366 7.366 0 00.708.815s.2.232.6.613a9.244 9.244 0 01-1.48-1.487s-.553 2.81-.91 6.53a56.741 56.741 0 00-.27 7.268s.345.264.938.709v.049a12.646 12.646 0 01-3.723 2.671l-11.289-1.985c-2.575-.452-15.392-4.269-16.909-2.062-.361.526-.532 1.162-.889 1.689a12.228 12.228 0 01-1.012 1.138c-4.135 4.72 2.519 9.826 5.858 12.407 7.369 5.7 14.374 8.87 24.848 8.8-.323 2.048-.63 3.992-.9 5.717a152.451 152.451 0 01-4.056 17.119c-1.1 3.984-6.307 14.252-1.428 17.186a10.253 10.253 0 004.782 1.061q26.74 1.5 53.539 1.353c1.908-.011 4.012-.1 5.4-1.409 2-1.88.951-5.863-1.713-6.517.234-1.964-.859-4.831-1.043-6.906q-.375-4.233-.932-8.448c-1.945-14.86-2.416-17.455-2.416-17.455.114.115.248.233.375.349zM81.95 50.392c.009.414.015.846 0 1.307a5.283 5.283 0 00-.378-.921l.375-.386M46.759 23.079l-.142 1.021c-.427.03-.823.061-1.173.09z"
|
|
168
|
+
})))), /*#__PURE__*/React__namespace.createElement("path", {
|
|
169
|
+
"data-name": "Path 2521",
|
|
170
|
+
d: "M52.157 9.481s-4.6 2.893-6.4 5.4l2.411-.514s-2.925 6.2-3.311 6.719a19.338 19.338 0 004.469-2.379c1.093-1.061-.9 5.5-.9 5.5l2.089-1.769s1.093-12.056 1.64-12.956",
|
|
171
|
+
fill: "#022733"
|
|
172
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
173
|
+
"data-name": "Path 2522",
|
|
174
|
+
d: "M47.229 49.842S44.172 53.71 39.68 53.9s-14.6-2.495-18.343-3.618S0 43.728 0 43.728s11.355 14.786 18.779 20.526 14.475 8.922 25.081 8.8 8.24-29.077 3.369-23.212",
|
|
175
|
+
fill: "#053034"
|
|
176
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
177
|
+
"data-name": "Path 2523",
|
|
178
|
+
d: "M3.369 46.1S15.6 62.694 26.828 68.184s18.529 3.931 19.216 3 1-17.407 1-17.407-4.244 3.988-13.728 2.116S3.369 46.1 3.369 46.1",
|
|
179
|
+
fill: "#fff"
|
|
180
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
181
|
+
"data-name": "Path 2524",
|
|
182
|
+
d: "M47.363 54.114c-6.885 4.7-15.216 1.841-22.427-.237Q13.969 50.511 3.369 46.1c7.22 2.491 14.4 5.112 21.686 7.388 5.385 1.6 11.076 3.488 16.723 2.245a11.432 11.432 0 004.942-2.3z",
|
|
183
|
+
fill: "#bfc9e8"
|
|
184
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
185
|
+
"data-name": "Path 2525",
|
|
186
|
+
d: "M51.216 117.978c6.486-2.064 13.617-2.308 15.917-1.777s7.535-.526 12.253-.113a26.376 26.376 0 006.187.113s-.031-62.439-.62-64.5a10 10 0 00-2.831-3.951S53.228 49.163 52.4 53.172s1.061 39.273 0 46.113-1.187 18.693-1.187 18.693",
|
|
187
|
+
fill: "#fff"
|
|
188
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
189
|
+
"data-name": "Path 2526",
|
|
190
|
+
d: "M49.56 118.58a5.906 5.906 0 01-1.885-.11c-1.989-.408-3.73-1.589-5.657-2.227-1.8-.6-3.766-.72-5.432-1.623-4.89-2.649.652-13.564 1.772-17.6a159.563 159.563 0 004.374-18.257c1.415-9.2 4.01-24.648 4.01-28.776l.59-8.727a16.245 16.245 0 015.66 10.732c.59 6.84 2.949 38.919 1.18 54.958-.411 3.721.032 11.077-4.612 11.628",
|
|
191
|
+
fill: "#053034"
|
|
192
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
193
|
+
"data-name": "Path 2527",
|
|
194
|
+
d: "M52.993 51.994c1.116 11.238 1.881 22.512 2.166 33.806.286 10.913-.042 21.991-2.23 32.728l-.059.262a1.086 1.086 0 01-.044.142c.042.074-.176.014-.134-.013v-.028c0-.024.007-.08.01-.1l.08-.527h.019l.012.529.005.064v.03s0 .011 0 0c.042-.012-.164-.07-.118-.011l.012-.116c.281-5.358.942-10.722 1.346-16.058.854-16.886-.123-33.839-1.068-50.71",
|
|
195
|
+
fill: "#bfc9e8"
|
|
196
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
197
|
+
"data-name": "Path 2528",
|
|
198
|
+
d: "M87.038 38.545s10.171 3.586 11.315 17.344l-11.068-2.782z",
|
|
199
|
+
fill: "#aa301b"
|
|
200
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
201
|
+
"data-name": "Path 2529",
|
|
202
|
+
d: "M88.512 116.016c.076.012.154.022.233.029 2.409.2 4.95.384 7.134-.653 6.071-2.883 2.07-18.053 1.4-23.182-1.947-14.86-2.419-17.454-2.419-17.454s-5.72-26.182-6.133-27.243-2.3-1.769-3.184-.708-.531 2.712-.59 4.894.413 42.693.413 42.693c.057 4.82-2.4 20.72 3.146 21.624",
|
|
203
|
+
fill: "#053034"
|
|
204
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
205
|
+
"data-name": "Path 2530",
|
|
206
|
+
d: "M89.081 62.49s2.477 8.963 5.779 12.265 11.558 7.194 13.327 13.917 2.476 14.034 2.24 17.572c0 0 4.364-17.336 1.062-27.479S89.081 62.49 89.081 62.49",
|
|
207
|
+
fill: "#f2f2f1"
|
|
208
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
209
|
+
"data-name": "Path 2531",
|
|
210
|
+
d: "M89.081 62.49s14.27 9.553 17.219 14.742 5.543 11.086 4.127 29.012a83.217 83.217 0 006.251-10.024c2.123-4.364 6.6-17.573-.826-30.192s-26.417-14.27-26.417-14.27a17.336 17.336 0 00-.354 10.732",
|
|
211
|
+
fill: "#053034"
|
|
212
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
213
|
+
"data-name": "Path 2532",
|
|
214
|
+
d: "M85.712 98.711l8.618-.151s.424 7.167-2.479 11.642c0 0-1.573-.181-1.845-.544a28.549 28.549 0 01-4.294-10.947",
|
|
215
|
+
fill: "#0d3a43"
|
|
216
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
217
|
+
"data-name": "Path 2533",
|
|
218
|
+
d: "M91.151 110.09c.378.074.7.112.7.112 2.9-4.476 2.48-11.643 2.48-11.643l-1.3.023a25.691 25.691 0 01-.213 4.876c-.3 1.526-1.226 5.006-1.668 6.632",
|
|
219
|
+
fill: "#1a4752"
|
|
220
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
221
|
+
"data-name": "Path 2534",
|
|
222
|
+
d: "M67.133 115.129c.038-2.913.825-6.707 3.836-7.906 1.974.476 2.728 2.417 2.85 4.155a13.851 13.851 0 01-.219 3.084l-.076-.012a16.946 16.946 0 00.115-2.036c0-1.837-.689-4.273-2.734-4.661-2.262.923-3.727 4.585-3.772 7.376",
|
|
223
|
+
fill: "#bfc9e8"
|
|
224
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
225
|
+
"data-name": "Path 2535",
|
|
226
|
+
d: "M58.719 119.2c.11-2.373.535-5 2.528-6.6a4.98 4.98 0 011.445 1.311 6.316 6.316 0 011.075 4.822l-.067-.008a7.962 7.962 0 00-.061-1.635 5.233 5.233 0 00-2.5-3.852s.319-.023.313-.02c-1.887 1.276-2.309 3.995-2.73 5.981",
|
|
227
|
+
fill: "#bfc9e8"
|
|
228
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
229
|
+
"data-name": "Path 2536",
|
|
230
|
+
d: "M59.155 109.373c.16-2.675.5-5.8 2.74-7.609a3.328 3.328 0 011.806 2.354 6.213 6.213 0 01-.035 2.629 6.036 6.036 0 00-.317-2.521 2.861 2.861 0 00-1.53-1.679l.338-.041c-2.042 1.478-2.636 4.456-3 6.867",
|
|
231
|
+
fill: "#bfc9e8"
|
|
232
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
233
|
+
"data-name": "Path 2537",
|
|
234
|
+
d: "M64.945 103.28c.216-2.494.313-5.621 2.564-7.223.074-.052.067-.06.168-.039.92.176 1.244.907 1.5 1.63a12.419 12.419 0 01-.1 5.864c.069-2.124.39-4.6-.87-6.419a1 1 0 00-.55-.353l.167-.038c-2.106 1.312-2.473 4.3-2.888 6.578",
|
|
235
|
+
fill: "#bfc9e8"
|
|
236
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
237
|
+
"data-name": "Path 2538",
|
|
238
|
+
d: "M75.481 104.829a7.412 7.412 0 011.41-4.544 2.666 2.666 0 011.552-.915 2.126 2.126 0 011.468 1.358 8.191 8.191 0 01.014 5.174 23.549 23.549 0 00-.169-3.363 6.052 6.052 0 00-.434-1.545 1.655 1.655 0 00-.909-.947h.085c-1.89.506-2.478 3.066-3.017 4.785",
|
|
239
|
+
fill: "#bfc9e8"
|
|
240
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
241
|
+
"data-name": "Path 2539",
|
|
242
|
+
d: "M75.111 93.518c-.023-2.313-.228-5.237 1.765-6.863 1.663.054 2.07 1.982 2.321 3.266a21.074 21.074 0 01.189 3.866 20.972 20.972 0 00-.519-3.8c-.283-.98-.7-2.5-1.823-2.67l.127-.045c-1.817 1.362-1.879 4.134-2.06 6.242",
|
|
243
|
+
fill: "#bfc9e8"
|
|
244
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
245
|
+
"data-name": "Path 2540",
|
|
246
|
+
d: "M66.494 88.267a11.837 11.837 0 011.835-5.7c1.339-1.819 2.713-1.776 3.512.4a17.442 17.442 0 01.476 7.049 24.348 24.348 0 00-.933-6.872c-.169-.562-.759-1.4-1.242-1.387-2.374 1.1-2.927 4.206-3.648 6.509",
|
|
247
|
+
fill: "#bfc9e8"
|
|
248
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
249
|
+
"data-name": "Path 2541",
|
|
250
|
+
d: "M58.92 97.087a21.451 21.451 0 01.561-7.6 3.919 3.919 0 011.657-2.287c1.592.489 1.915 2.27 2.247 3.65a22.911 22.911 0 01.315 4.015 22.759 22.759 0 00-.67-3.931c-.34-1.064-.789-2.528-1.866-2.978l.213-.038a3.268 3.268 0 00-1.384 1.765 21.248 21.248 0 00-1.073 7.4",
|
|
251
|
+
fill: "#bfc9e8"
|
|
252
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
253
|
+
"data-name": "Path 2542",
|
|
254
|
+
d: "M59.216 81.536c-.571-2.2-1.451-6.321 1.1-7.586a2.787 2.787 0 012.784 2.031 7.913 7.913 0 01.459 3.265 12.757 12.757 0 00-.933-3.05c-.33-.851-1.426-1.7-2.08-1.619a1.866 1.866 0 00-1.046 1.235 15.67 15.67 0 00-.285 5.724",
|
|
255
|
+
fill: "#bfc9e8"
|
|
256
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
257
|
+
"data-name": "Path 2543",
|
|
258
|
+
d: "M66.628 77.361a32 32 0 011.206-8.206 5.233 5.233 0 011.492-2.463l.05-.047h.065c1.719.163 2.008 2.513 2.259 3.842a28.381 28.381 0 01.212 4.418c-.048-.735-.078-1.469-.166-2.2-.221-1.742-.417-3.683-1.515-5.1a1.045 1.045 0 00-.693-.4c-2.059 2.186-2.541 6.847-2.91 10.154",
|
|
259
|
+
fill: "#bfc9e8"
|
|
260
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
261
|
+
"data-name": "Path 2544",
|
|
262
|
+
d: "M75.717 78.337c-.889-10.165 4.4-9.174 4.309.166-.37-1.141-.372-2.7-.789-3.942-.334-1.054-.686-2.652-1.842-3-1.575 1.282-1.454 4.654-1.678 6.775",
|
|
263
|
+
fill: "#bfc9e8"
|
|
264
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
265
|
+
"data-name": "Path 2545",
|
|
266
|
+
d: "M89.1 62.455c6.009 3.824 12.1 7.852 16.779 13.31 6.225 8.824 5.64 20.263 4.544 30.479.269-10.549.872-22.589-6.346-31.112-4.405-4.778-10.105-8.612-14.977-12.677",
|
|
267
|
+
fill: "#bfc9e8"
|
|
268
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
269
|
+
"data-name": "Path 2546",
|
|
270
|
+
d: "M84.991 51.7c.377 21.248 1.058 43.309.583 64.5-.73-21.435-.963-43.2-.583-64.5",
|
|
271
|
+
fill: "#bfc9e8"
|
|
272
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
273
|
+
"data-name": "Path 2547",
|
|
274
|
+
d: "M88.131 98.53a6.562 6.562 0 00-.968-1.6 4.114 4.114 0 01-2.751-3.447 3.409 3.409 0 012.449-4.143c.937-.181 2.842.786 3.054 3.387a6.464 6.464 0 01-.816 4.052 17.778 17.778 0 01.967 1.784z",
|
|
275
|
+
fill: "#bcbfca"
|
|
276
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
277
|
+
"data-name": "Path 2548",
|
|
278
|
+
d: "M87.375 90.063s-1.663.7-1.21 3.659 2.147 2.48 2.147 2.48 1.331-.787.877-3.69-1.693-2.54-1.814-2.449",
|
|
279
|
+
fill: "#8f96a6"
|
|
280
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
281
|
+
"data-name": "Path 2549",
|
|
282
|
+
d: "M47.863 36.711s1.556-7.211 2.462-9.251-.113-4.986-.34-6.006-.51-8.442 2.777-12.975S56.1 2.7 56.1 2.7s4.872-.057 6.742-.85S72.933.377 75.086 2.3s7.139 10.425 11.388 13.428 6.233 7.819 3.173 11.9a19.3 19.3 0 00-1.586-3.91s-.114 2.72-1.417 4.023c0 0-.226-2.663-1.076-3.739 0 0 .51 2.719-.907 4.476l.17 5.609S74.349 45.251 64.037 44.345a25.764 25.764 0 01-16.174-7.634",
|
|
283
|
+
fill: "#0a1b27"
|
|
284
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
285
|
+
"data-name": "Path 2550",
|
|
286
|
+
d: "M65.774 21.728s-2.565-1.017-1.946-6.988 7.607-5.086 8.005-4.865 4.865 2.919 1.946 8.89c0 0-2.786.133-6.855 2.963a1.557 1.557 0 01-1.15 0",
|
|
287
|
+
fill: "#3e7582"
|
|
288
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
289
|
+
"data-name": "Path 2551",
|
|
290
|
+
d: "M64.137 21c-1.268-.159-2.219-2.853-2.219-2.853l4.28 1.466A1.859 1.859 0 0164.137 21",
|
|
291
|
+
fill: "#bfd35f"
|
|
292
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
293
|
+
"data-name": "Path 2552",
|
|
294
|
+
d: "M51.345 39.3a35.415 35.415 0 01-.17-4.929c.17-1.417 1.417-5.61 1.417-5.61s-.964-6.572-1.19-8.045.283-7.706 1.359-9.746 2.833-6.459 3.4-7.026 3.456 4.136 3.74 5.44-.624 6.459-.624 6.459-.34 3.116 1.02 3.343 1.473-2.323 1.473-2.323a32.887 32.887 0 011.19-6.29C63.7 8.819 69.929 2.87 74.632 3.1c0 0 6.006 7.14 6.063 13.825S78.088 27.8 76.105 30.86a60.081 60.081 0 00-4.759 9.519c-.283 1.019-14.562 5.042-20-1.077",
|
|
295
|
+
fill: "#fff"
|
|
296
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
297
|
+
"data-name": "Path 2553",
|
|
298
|
+
d: "M88.494 95.99c-.919-1.2-1.76-4.672-1.888-5.217a4.058 4.058 0 00-.44 2.949c.453 2.964 2.147 2.48 2.147 2.48a1.187 1.187 0 00.207-.176c-.01-.012-.016-.023-.026-.036",
|
|
299
|
+
fill: "#565d74"
|
|
300
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
301
|
+
"data-name": "Path 2554",
|
|
302
|
+
d: "M53.9 34.66a2.53 2.53 0 00-.292 1.81l-.305-.229a2.274 2.274 0 001.631-.688 2.552 2.552 0 01-1.581 1.257l-.291.07a2.663 2.663 0 01.838-2.22",
|
|
303
|
+
fill: "#bfc9e8"
|
|
304
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
305
|
+
"data-name": "Path 2555",
|
|
306
|
+
d: "M56.019 36.013c-.94 1.126-2.036 2.531-1.967 4.044l-.352.03c.053-1.662 1.234-3 2.319-4.074",
|
|
307
|
+
fill: "#bfc9e8"
|
|
308
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
309
|
+
"data-name": "Path 2556",
|
|
310
|
+
d: "M55.108 40.328c1.395-1.572 2.042-3.645 3.413-5.228-1.289 1.677-1.814 3.779-3.133 5.445l-.28-.217",
|
|
311
|
+
fill: "#bfc9e8"
|
|
312
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
313
|
+
"data-name": "Path 2557",
|
|
314
|
+
d: "M58.174 35.532a9.106 9.106 0 00-1.2 5.351l-.354.02a9.065 9.065 0 011.555-5.371",
|
|
315
|
+
fill: "#bfc9e8"
|
|
316
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
317
|
+
"data-name": "Path 2558",
|
|
318
|
+
d: "M59.6 41.157a10.145 10.145 0 01.442-3.743 9.981 9.981 0 00-.089 3.716l-.353.027",
|
|
319
|
+
fill: "#bfc9e8"
|
|
320
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
321
|
+
"data-name": "Path 2559",
|
|
322
|
+
d: "M60.026 37.944a5.778 5.778 0 003.03 4.068l-.1-.01c1.36-.826 1-2.845.951-4.232a6.362 6.362 0 01.375 2.419c-.07.856-.324 1.9-1.3 2.173a4.515 4.515 0 01-2.949-4.418",
|
|
323
|
+
fill: "#bfc9e8"
|
|
324
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
325
|
+
"data-name": "Path 2560",
|
|
326
|
+
d: "M64.536 37.37a3.568 3.568 0 001.748 1.954l-.2.066a2.641 2.641 0 00.528-1.474 1.767 1.767 0 01.027.841 2.643 2.643 0 01-.329.956 2.864 2.864 0 01-1.777-2.343",
|
|
327
|
+
fill: "#bfc9e8"
|
|
328
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
329
|
+
"data-name": "Path 2561",
|
|
330
|
+
d: "M74.663 33.669a4.767 4.767 0 012.737-1.061s1.061 4.6.885 5.7-7.032 3.007-7.032 3.007.132-2.255 3.4-7.651",
|
|
331
|
+
fill: "#012b34"
|
|
332
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
333
|
+
"data-name": "Path 2562",
|
|
334
|
+
d: "M45.8 49.635s16.275 12.5 22.29 13.445 17.336-14.388 21.7-17.1c0 0-.944-10.614-3.892-13.8 0 0-10.732 8.609-22.644 9.2s-16.275-5.543-16.275-5.543a70.242 70.242 0 00-1.179 13.8",
|
|
335
|
+
fill: "#b73718"
|
|
336
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
337
|
+
"data-name": "Path 2563",
|
|
338
|
+
d: "M48.132 35.6l-.269 1.115a7.3 7.3 0 01-.708-.816z",
|
|
339
|
+
fill: "#aa301b"
|
|
340
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
341
|
+
"data-name": "Path 2564",
|
|
342
|
+
d: "M77.287 51.05c-13.209 5.9-28.305-9.435-28.305-9.435s8.964 5.425 16.276 5.543c3.656.059 7.731-1.034 10.113-3.2 2.9-2.635 3.08-5.3 2.8-6.945a37.88 37.88 0 01-14.914 4.365c-11.912.59-16.275-5.543-16.275-5.543a70.206 70.206 0 00-1.18 13.8s16.275 12.5 22.29 13.444c11.2-5.425 9.2-12.029 9.2-12.029",
|
|
343
|
+
fill: "#cf4326"
|
|
344
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
345
|
+
"data-name": "Path 2565",
|
|
346
|
+
d: "M80.117 40.8c-10.841 9.538-19.526 7.858-31.226.963l.218-.276a49.093 49.093 0 006.111 4.915c6.283 4.3 14.539 7.656 21.995 4.483a.176.176 0 01.236.093.178.178 0 01-.092.23 16.616 16.616 0 01-3.8 1.193c-6.682 1.093-13.214-1.919-18.6-5.619a45.042 45.042 0 01-6.1-5.047.177.177 0 01.206-.281 57.064 57.064 0 007.654 3.465c9.163 3.644 15.626 1.441 23.166-4.384.16-.15.414.113.235.265",
|
|
347
|
+
fill: "#932c16"
|
|
348
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
349
|
+
"data-name": "Path 2566",
|
|
350
|
+
d: "M85.9 32.18s-.462.37-1.291.956c.122.221 3.757 6.883 4.561 13.277.22-.168.428-.314.622-.435 0 0-.944-10.614-3.892-13.8",
|
|
351
|
+
fill: "#d14427"
|
|
352
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
353
|
+
"data-name": "Path 2567",
|
|
354
|
+
d: "M86.007 32.318c-8.324 6.428-19.145 11.136-29.807 8.913-3.482-.77-6.976-2.327-9.215-5.22a.2.2 0 01.106-.311l1.04-.3.106.337-1.023.351.107-.311c7.475 7.756 20.511 5.806 29.389 1.6a53.555 53.555 0 009.074-5.333z",
|
|
355
|
+
fill: "#ec7723"
|
|
356
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
357
|
+
"data-name": "Path 2568",
|
|
358
|
+
d: "M47.69 36.674a67.062 67.062 0 011.688-7.7c.322-1.25 1.007-2.327.933-3.659a23.2 23.2 0 00-.5-3.823l.345-.077a13.476 13.476 0 01.913 3.884c.14 1.352-.545 2.647-.937 3.9-.741 2.486-1.4 5.024-2.1 7.545z",
|
|
359
|
+
fill: "#36737a"
|
|
360
|
+
})))), _g2 || (_g2 = /*#__PURE__*/React__namespace.createElement("g", {
|
|
361
|
+
"data-name": "Group 1948"
|
|
362
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
363
|
+
"data-name": "Group 1919",
|
|
364
|
+
clipPath: "url(#penguin_svg__d)"
|
|
365
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
366
|
+
"data-name": "Rectangle 1712",
|
|
367
|
+
transform: "translate(56.767 29.526)",
|
|
368
|
+
fill: "url(#penguin_svg__e)",
|
|
369
|
+
d: "M0 0h20.225v8.551H0z"
|
|
370
|
+
})))), _g3 || (_g3 = /*#__PURE__*/React__namespace.createElement("g", {
|
|
371
|
+
"data-name": "Group 1949"
|
|
372
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
373
|
+
"data-name": "Group 1921",
|
|
374
|
+
clipPath: "url(#penguin_svg__f)"
|
|
375
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
376
|
+
"data-name": "Rectangle 1713",
|
|
377
|
+
transform: "translate(53.995 3.089)",
|
|
378
|
+
fill: "url(#penguin_svg__a)",
|
|
379
|
+
d: "M0 0h26.744v33.986H0z"
|
|
380
|
+
})))), _g4 || (_g4 = /*#__PURE__*/React__namespace.createElement("g", {
|
|
381
|
+
"data-name": "Group 1950"
|
|
382
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
383
|
+
"data-name": "Group 1926"
|
|
384
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
385
|
+
"data-name": "Group 1925",
|
|
386
|
+
clipPath: "url(#penguin_svg__g)"
|
|
387
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
388
|
+
"data-name": "Group 1924"
|
|
389
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
390
|
+
"data-name": "Group 1923",
|
|
391
|
+
clipPath: "url(#penguin_svg__h)"
|
|
392
|
+
}, /*#__PURE__*/React__namespace.createElement("image", {
|
|
393
|
+
"data-name": "Rectangle 1714",
|
|
394
|
+
width: 24.24,
|
|
395
|
+
height: 14.16,
|
|
396
|
+
transform: "translate(54.24 18.416)",
|
|
397
|
+
xlinkHref: "data:image/png;base64,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"
|
|
398
|
+
}))))))), _g5 || (_g5 = /*#__PURE__*/React__namespace.createElement("g", {
|
|
399
|
+
"data-name": "Group 1951"
|
|
400
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
401
|
+
"data-name": "Group 1928",
|
|
402
|
+
clipPath: "url(#penguin_svg__i)"
|
|
403
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
404
|
+
"data-name": "Rectangle 1716",
|
|
405
|
+
transform: "translate(51.397 3.899)",
|
|
406
|
+
fill: "url(#penguin_svg__j)",
|
|
407
|
+
d: "M0 0h8.787v15.84H0z"
|
|
408
|
+
})))), _g6 || (_g6 = /*#__PURE__*/React__namespace.createElement("g", {
|
|
409
|
+
"data-name": "Group 1952"
|
|
410
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
411
|
+
"data-name": "Group 1930",
|
|
412
|
+
clipPath: "url(#penguin_svg__b)"
|
|
413
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
414
|
+
"data-name": "Path 2574",
|
|
415
|
+
d: "M66.835 10.186s2.742-4.821 12.958-7.209A16.84 16.84 0 0174.6 7.749S80.109 6.115 83.516 7c0 0-4.994 2.987-7.631 3.267 0 0 6.651 1.12 10.5 4.411a21.093 21.093 0 01-8.191-1.307s3.9 2.217 5.251 4.6c0 0-5.484-2.217-7.561-4.06s-2.66-5.881-9.05-3.724",
|
|
416
|
+
fill: "#a1bf63"
|
|
417
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
418
|
+
"data-name": "Path 2575",
|
|
419
|
+
d: "M53.158 19.244s2.606 4.419 1.417 7.706 5.495-1.643 10.142-1.927-1.927-3.456-3-4.306-6.856-2.663-8.556-1.473",
|
|
420
|
+
fill: "#712329"
|
|
421
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
422
|
+
"data-name": "Path 2576",
|
|
423
|
+
d: "M61.714 20.718a11.084 11.084 0 00-3.065-1.251 12.648 12.648 0 00-1.359 7.926c2.119-.854 5.041-2.223 7.427-2.369 4.646-.283-1.926-3.456-3-4.306",
|
|
424
|
+
fill: "#47171d"
|
|
425
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
426
|
+
"data-name": "Path 2577",
|
|
427
|
+
d: "M67.89 25.874a22.1 22.1 0 00-5.723.453 13.9 13.9 0 00-7.252 4.193s-6.856-4.023-8.1-6.176c0 0 10.425-1.133 13.145.227l3.4-.567a14.054 14.054 0 004.533 1.87",
|
|
428
|
+
fill: "#e77c29"
|
|
429
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
430
|
+
"data-name": "Path 2578",
|
|
431
|
+
d: "M65.436 25.107a20.229 20.229 0 01-2.08-1.1l-3.4.567c-2.721-1.36-13.145-.227-13.145-.227a21.208 21.208 0 008.5 1.926 50.32 50.32 0 0010.124-1.163",
|
|
432
|
+
fill: "#f1a33b"
|
|
433
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
434
|
+
"data-name": "Path 2579",
|
|
435
|
+
d: "M64.184 25.1a17.359 17.359 0 01-1.8-.955l-2.943.491c-2.354-1.177-11.378-.2-11.378-.2a18.375 18.375 0 007.357 1.667 43.584 43.584 0 008.764-1.003",
|
|
436
|
+
fill: "#cd581b"
|
|
437
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
438
|
+
"data-name": "Path 2580",
|
|
439
|
+
d: "M54.915 30.52a12 12 0 011.023-1 89.349 89.349 0 01-9.125-5.173c1.245 2.153 8.1 6.176 8.1 6.176",
|
|
440
|
+
fill: "#d46828"
|
|
441
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
442
|
+
"data-name": "Path 2581",
|
|
443
|
+
d: "M56.1 26.114a6.612 6.612 0 016.005-2.789c4.006.37 2.056 1.764 2.056 1.764a19.441 19.441 0 01-8.061 1.025",
|
|
444
|
+
fill: "#a82e23"
|
|
445
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
446
|
+
"data-name": "Path 2582",
|
|
447
|
+
d: "M62.109 23.325a6.719 6.719 0 00-1.246 0 5.438 5.438 0 011.747 2.228c.952-.247 1.555-.467 1.555-.467s1.95-1.394-2.056-1.764",
|
|
448
|
+
fill: "#741913"
|
|
449
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
450
|
+
"data-name": "Path 2583",
|
|
451
|
+
d: "M58.014 9.592s1.259.851 1.064 3.563-.5 3.563-1.312 4.1-4.574-.124-4.839-1.011a4.654 4.654 0 01.035-2.428c.16-.674.284-3.12 1.56-4.574s3.12-.088 3.492.355",
|
|
452
|
+
fill: "#2d4d53"
|
|
453
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
454
|
+
"data-name": "Path 2584",
|
|
455
|
+
d: "M58.12 15.388c.1-.785-.408-3.634-2.606-3.847s-2.712 2.8-2.712 2.8-.443 2.482.6 3.74 4.219 1.188 4.715-2.694",
|
|
456
|
+
fill: "#fff"
|
|
457
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
458
|
+
"data-name": "Path 2585",
|
|
459
|
+
d: "M51.345 21.794s4.476-2.38 7.932-.34 5.44 3.74 8.613 4.419c0 0 4.759-2.266 6.459-4.589a33.333 33.333 0 01-5.383 1.983s-5.156-1.983-6.686-4.136a45.291 45.291 0 00-2.719-3.853s-2.833 1.983-3.343 1.927a5.656 5.656 0 01-3.343-1.417 27.726 27.726 0 00-4.7-3c-.68-.34-8.046-.34-12.522 1.02 0 0 4.76 5.213 15.695 7.989",
|
|
460
|
+
fill: "#eea740"
|
|
461
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
462
|
+
"data-name": "Path 2586",
|
|
463
|
+
d: "M65.774 21.728s-2.565-1.017-1.946-6.988 7.607-5.086 8.005-4.865 4.865 2.919 1.946 8.89c0 0-2.786.133-6.855 2.963a1.557 1.557 0 01-1.15 0",
|
|
464
|
+
fill: "#3e7582"
|
|
465
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
466
|
+
"data-name": "Path 2587",
|
|
467
|
+
d: "M68.89 9.792a7.7 7.7 0 00-1.781.462c-2.626 1.5-2.795 6.787-2.795 6.787.014 2.413.653 3.854 1.5 4.706a1.605 1.605 0 001.105-.018 17.718 17.718 0 015.69-2.754c.171-.4.351-.833.546-1.315 2.181-5.4-1.388-7.952-4.27-7.868",
|
|
468
|
+
fill: "#2d4d53"
|
|
469
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
470
|
+
"data-name": "Path 2588",
|
|
471
|
+
d: "M70.079 19.9c.054-.069.108-.134.162-.2 1.946-2.565.752-5.439-.575-6.147s-4.069.088-5.042 2.477.752 5.439.752 5.439l.007.013a1.691 1.691 0 00.391.253 1.556 1.556 0 001.15 0 21.109 21.109 0 013.155-1.83",
|
|
472
|
+
fill: "#fff"
|
|
473
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
474
|
+
"data-name": "Path 2589",
|
|
475
|
+
d: "M70.1 19.587c1.065-1.685 1.093-4.168-.413-5.5-1.633-1.079-4.128.289-5.063 1.939a4.15 4.15 0 012.076-2.614C71 11.063 73.2 17 70.382 19.8a.178.178 0 01-.282-.214",
|
|
476
|
+
fill: "#121628"
|
|
477
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
478
|
+
"data-name": "Path 2590",
|
|
479
|
+
d: "M51.4 20.718c-4.136-.85-12.975-6.006-12.975-6.006l-1.3.415a37.319 37.319 0 0014.22 6.673s4.476-2.38 7.933-.34a65.7 65.7 0 006.213 3.64 21.882 21.882 0 01-4.117-2.9C56.9 18.338 51.4 20.718 51.4 20.718",
|
|
480
|
+
fill: "#e87b29"
|
|
481
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
482
|
+
"data-name": "Path 2591",
|
|
483
|
+
d: "M58.257 9.676s-.931-4.369-3.08-6.553S49.877-.1 48.982.007a72.419 72.419 0 015.3 5.049s-3.76-2.614-6.195-3.187a14.062 14.062 0 00-5.157-.035l8.81 4.476s-5.3-.5-7.377 1.361a12.53 12.53 0 006.624.644s-3.294 1.325-4.154 2.256a17.211 17.211 0 006.482-1.54c2.9-1.468 3.868-.5 4.942.645",
|
|
484
|
+
fill: "#a1bf63"
|
|
485
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
486
|
+
"data-name": "Path 2592",
|
|
487
|
+
d: "M66.172 10.76c4.98-4.8 11.273 1.056 10.172 6.811a.091.091 0 01-.177 0 10.033 10.033 0 00-4.809-7.009c-1.658-.657-3.4-.273-5.186.2",
|
|
488
|
+
fill: "#121628"
|
|
489
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
490
|
+
"data-name": "Path 2593",
|
|
491
|
+
d: "M68.419 15.485s-1.007.131-.815 1.857 1.534 1.342 1.726.064-.234-2.092-.911-1.921",
|
|
492
|
+
fill: "#24b8d7"
|
|
493
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
494
|
+
"data-name": "Path 2594",
|
|
495
|
+
d: "M68.437 15.947s-.7.09-.564 1.284 1.061.929 1.194.045-.162-1.447-.63-1.329",
|
|
496
|
+
fill: "#0f1323"
|
|
497
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
498
|
+
"data-name": "Path 2595",
|
|
499
|
+
d: "M68.912 16.167a.27.27 0 01-.087.36c-.111.044-.251-.045-.313-.2a.268.268 0 01.088-.359c.11-.045.25.044.312.2",
|
|
500
|
+
fill: "#fff"
|
|
501
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
502
|
+
"data-name": "Path 2596",
|
|
503
|
+
d: "M56.86 14.469s-.727.094-.588 1.34 1.107.968 1.245.046-.169-1.509-.657-1.386",
|
|
504
|
+
fill: "#24b8d7"
|
|
505
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
506
|
+
"data-name": "Path 2597",
|
|
507
|
+
d: "M56.873 14.8s-.5.065-.407.927.766.67.861.032-.116-1.044-.454-.959",
|
|
508
|
+
fill: "#0f1323"
|
|
509
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
510
|
+
"data-name": "Path 2598",
|
|
511
|
+
d: "M57.216 14.961a.193.193 0 01-.063.259c-.08.033-.181-.031-.225-.143a.193.193 0 01.063-.259c.079-.032.18.032.225.143",
|
|
512
|
+
fill: "#fff"
|
|
513
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
514
|
+
"data-name": "Path 2599",
|
|
515
|
+
d: "M66.526 21.861a14.467 14.467 0 018.5-3.53c2.179-.219 3.4 2.345 3.128 4.149-.265-1.673-1.206-3.682-3.088-3.544a18.048 18.048 0 00-8.543 2.925",
|
|
516
|
+
fill: "#7a8092"
|
|
517
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
518
|
+
"data-name": "Path 2600",
|
|
519
|
+
d: "M52.782 14.339c-.133-3.391 3.71-4.524 5.153-1.369a3.1 3.1 0 01.166 2.413c-.127-1.652-1.394-3.738-3.228-3.378-1.083.272-1.547 1.491-2.091 2.334",
|
|
520
|
+
fill: "#121628"
|
|
521
|
+
})))), _g7 || (_g7 = /*#__PURE__*/React__namespace.createElement("g", {
|
|
522
|
+
"data-name": "Group 1953"
|
|
523
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
524
|
+
"data-name": "Group 1932",
|
|
525
|
+
clipPath: "url(#penguin_svg__k)"
|
|
526
|
+
}, /*#__PURE__*/React__namespace.createElement("image", {
|
|
527
|
+
"data-name": "Rectangle 1717",
|
|
528
|
+
width: 12,
|
|
529
|
+
height: 8,
|
|
530
|
+
transform: "translate(72 4.936)",
|
|
531
|
+
xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAICAYAAADN5B7xAAAAAXNSR0IArs4c6QAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAAADKADAAQAAAABAAAACAAAAADFRH6nAAAAm0lEQVQYGWP8//8/Ay4gOct8yvffDBrf/zCo/8w/KQtSx4iuwWyFmSBQgQZEISNIMZj94w+D2v+ik4xM6KYzMTJ8g2Fmxv9fmRkZwBgo9h2kFkPDifBTP8GKmBi+wjTCaKwawIIQW0AaIDYANYMMYewz/49hA0gD1BnfmJngzgNrBkr9ZwEpQAdMEOeAFT1JPVmJLI8RSsiS2NgAHlhFc+uiVkkAAAAASUVORK5CYII="
|
|
532
|
+
})))), _g8 || (_g8 = /*#__PURE__*/React__namespace.createElement("g", {
|
|
533
|
+
"data-name": "Group 1954"
|
|
534
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
535
|
+
"data-name": "Group 1934",
|
|
536
|
+
clipPath: "url(#penguin_svg__l)"
|
|
537
|
+
}, /*#__PURE__*/React__namespace.createElement("image", {
|
|
538
|
+
"data-name": "Rectangle 1718",
|
|
539
|
+
width: 10,
|
|
540
|
+
height: 8,
|
|
541
|
+
transform: "translate(75 8.936)",
|
|
542
|
+
xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAICAYAAADA+m62AAAAAXNSR0IArs4c6QAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAAACqADAAQAAAABAAAACAAAAABicMmvAAAAbElEQVQYGWP8//8/AzGACZcio2VmqshyjNhMtFxpxvrlN4Px119A/JvR6AuQxmrin38MwlAsBGNjVfgbohCoiFEYxsZQaLHSjBtoCtgkmKK/hSe5MRQCJaHWMYKsB7NBnsJQCHMTTBGID1IIAJTLRXN4zLhbAAAAAElFTkSuQmCC"
|
|
543
|
+
})))), _g9 || (_g9 = /*#__PURE__*/React__namespace.createElement("g", {
|
|
544
|
+
"data-name": "Group 1955"
|
|
545
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
546
|
+
"data-name": "Group 1936",
|
|
547
|
+
clipPath: "url(#penguin_svg__m)"
|
|
548
|
+
}, /*#__PURE__*/React__namespace.createElement("image", {
|
|
549
|
+
"data-name": "Rectangle 1719",
|
|
550
|
+
width: 9,
|
|
551
|
+
height: 9,
|
|
552
|
+
transform: "translate(74 10.936)",
|
|
553
|
+
xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAAXNSR0IArs4c6QAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAAACaADAAQAAAABAAAACQAAAAAMirubAAAAfklEQVQYGWP8//8/AyHAREgBSB6nIqNlZkoaC82CQIoYsVlnusJM7OsvBoNvvxkMvv5mNMAwyWKlGfePPwyqQKzy4w8jEDOoYCj6DpYEK1CFsVEUAd2hjGwCyMTfBSeFUBSBBKEYbM3P/JOyIIczgByOjMVmmM3hnmx2BlkMAEq/UqQ4ZZ1xAAAAAElFTkSuQmCC"
|
|
554
|
+
})))), _g10 || (_g10 = /*#__PURE__*/React__namespace.createElement("g", {
|
|
555
|
+
"data-name": "Group 1956"
|
|
556
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
557
|
+
"data-name": "Group 1938",
|
|
558
|
+
clipPath: "url(#penguin_svg__n)"
|
|
559
|
+
}, /*#__PURE__*/React__namespace.createElement("image", {
|
|
560
|
+
"data-name": "Rectangle 1720",
|
|
561
|
+
width: 9,
|
|
562
|
+
height: 9,
|
|
563
|
+
transform: "translate(71 1.936)",
|
|
564
|
+
xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAAXNSR0IArs4c6QAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAAACaADAAQAAAABAAAACQAAAAAMirubAAAAoElEQVQYGWP8//8/AzIQmWG+4stPBvOffxkU/hedZATJsSAr0Fxk5sPJwnj77z8GwT//GQRhckwwBojmYGG4xcHyH4gZbnMC2Yx95mBrGNGt01tiZv75F4P5l1+MQMxg/uMPgzKKdTDT/gCt+/vvv+Cff4xAzCCIYh1I0amIU+8h1jLcAlkJYjOArMOG9RabGsPEMdwEMg0dYFiHrgDEBwCQy1EiikJZLgAAAABJRU5ErkJggg=="
|
|
565
|
+
})))), _g11 || (_g11 = /*#__PURE__*/React__namespace.createElement("g", {
|
|
566
|
+
"data-name": "Group 1957"
|
|
567
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
568
|
+
"data-name": "Group 1943",
|
|
569
|
+
clipPath: "url(#penguin_svg__b)"
|
|
570
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
571
|
+
"data-name": "Path 2606",
|
|
572
|
+
d: "M78.564 4.512a13.368 13.368 0 001.23-1.535c-10.216 2.388-12.958 7.209-12.958 7.209.111-.038.217-.069.325-.1a25.314 25.314 0 016.764-4.341 31.969 31.969 0 014.639-1.23",
|
|
573
|
+
fill: "#d1e09c"
|
|
574
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
575
|
+
"data-name": "Path 2607",
|
|
576
|
+
d: "M82.512 7.574c.616-.34 1-.573 1-.573-3.407-.886-8.914.747-8.914.747l.108-.067c-.161.074-.322.15-.482.231 0 0 5.705-.759 8.284-.338",
|
|
577
|
+
fill: "#d1e09c"
|
|
578
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
579
|
+
"data-name": "Path 2608",
|
|
580
|
+
d: "M86.387 14.679c-3.851-3.29-10.5-4.411-10.5-4.411.045 0 .092-.012.139-.018-.2 0-.374.008-.513.018a28.407 28.407 0 012.8 1.284c1.15.591 3.78 2.113 5.409 3.064a21.472 21.472 0 002.665.063",
|
|
581
|
+
fill: "#d1e09c"
|
|
582
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
583
|
+
"data-name": "Path 2609",
|
|
584
|
+
d: "M78.288 13.426a4.529 4.529 0 00-1.329-.217 15.736 15.736 0 014.5 3.9c1.148.525 1.99.865 1.99.865-1.23-2.164-4.563-4.192-5.158-4.543",
|
|
585
|
+
fill: "#d1e09c"
|
|
586
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
587
|
+
"data-name": "Path 2610",
|
|
588
|
+
d: "M54.408 30.235c4.64 3 12.3 1.522 17.1-.589-4.464 2.691-12.817 4.222-17.1.589",
|
|
589
|
+
fill: "#fdfdff"
|
|
590
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
591
|
+
"data-name": "Path 2611",
|
|
592
|
+
d: "M66.526 21.861a14.467 14.467 0 018.5-3.53c2.179-.219 3.4 2.345 3.128 4.149-.265-1.673-1.206-3.682-3.088-3.544a18.048 18.048 0 00-8.543 2.925",
|
|
593
|
+
fill: "#7a8092"
|
|
594
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
595
|
+
"data-name": "Path 2612",
|
|
596
|
+
d: "M69.527 1.058a21.828 21.828 0 00-6.68.792l-.078.03a5.759 5.759 0 00-2.3 3.823s-.227 1.473 2.89.849c0 0 2.931-3.924 6.17-5.494",
|
|
597
|
+
fill: "#94a4cb"
|
|
598
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
599
|
+
"data-name": "Path 2613",
|
|
600
|
+
d: "M53.959 4.878l-.4-.3a21.607 21.607 0 00-5.473-2.708 14.073 14.073 0 00-5.157-.036l1.281.651a18.993 18.993 0 016.2 1.39 6.645 6.645 0 003.545 1",
|
|
601
|
+
fill: "#d1e09c"
|
|
602
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
603
|
+
"data-name": "Path 2614",
|
|
604
|
+
d: "M48.982.007s.388.343.955.852a17.559 17.559 0 012.841 1.3A13.337 13.337 0 0156.9 7.133c.313.749.6 1.435.824 2 .182.17.358.354.537.545 0 0-.931-4.369-3.08-6.553S49.877-.1 48.982.007",
|
|
605
|
+
fill: "#d1e09c"
|
|
606
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
607
|
+
"data-name": "Path 2615",
|
|
608
|
+
d: "M51.436 6.288c-1.121-.071-5.089-.2-6.936 1.27 2.152-.009 7.688-.352 7.6-.746-.046-.2-.342-.383-.661-.524",
|
|
609
|
+
fill: "#d1e09c"
|
|
610
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
611
|
+
"data-name": "Path 2616",
|
|
612
|
+
d: "M46.833 10.572s.2 0 .542-.029a21.363 21.363 0 004.937-2.406l-1.325.179s-3.295 1.325-4.154 2.256",
|
|
613
|
+
fill: "#d1e09c"
|
|
614
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
615
|
+
"data-name": "Path 2617",
|
|
616
|
+
d: "M58.767 10.727c-3.946-3.649-4.44-1.115-6.65 2.316a.061.061 0 01-.106-.053c.046-2.256 1.07-5.763 3.947-5.484a3.84 3.84 0 012.809 3.221",
|
|
617
|
+
fill: "#121628"
|
|
618
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
619
|
+
"data-name": "Path 2618",
|
|
620
|
+
d: "M14.185 12.439s2.692-3.268 2.6-5.431-3.225-5.336-3.225-5.336a4.017 4.017 0 00-1.826 1.779 4.128 4.128 0 01-.241-1.3S8.946 4.7 8.994 7.632a5.664 5.664 0 002.306 4.422c-3.557 4.423-3.895 5.765-3.895 5.765 1.969 1.68 10.144 1.2 10.236.4s-2.831-4.819-3.456-5.78",
|
|
621
|
+
fill: "#48a8b5"
|
|
622
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
623
|
+
"data-name": "Path 2619",
|
|
624
|
+
d: "M17.642 18.217c-.034.875-2.353 1.5-5.179 1.386s-5.091-.908-5.057-1.783 2.353-1.5 5.18-1.387 5.09.909 5.056 1.784",
|
|
625
|
+
fill: "#0b222f"
|
|
626
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
627
|
+
"data-name": "Path 2620",
|
|
628
|
+
d: "M9.651 16.6a14.144 14.144 0 012.934-.172c2.827.11 5.091.909 5.057 1.784.091-.8-2.783-4.748-3.439-5.75a3.688 3.688 0 00-1.22.02l2.692 3.749s-3.948-.713-6.024.369",
|
|
629
|
+
fill: "#80cad8"
|
|
630
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
631
|
+
"data-name": "Path 2621",
|
|
632
|
+
d: "M15.345 5.485c.423.733.5 1.48.172 1.67s-.937-.251-1.36-.984-.5-1.48-.172-1.669.937.25 1.36.983",
|
|
633
|
+
fill: "#3c8894"
|
|
634
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
635
|
+
"data-name": "Path 2622",
|
|
636
|
+
d: "M15.5 5.113c.391.677.474 1.361.184 1.528s-.84-.247-1.229-.924-.474-1.361-.186-1.528.839.247 1.231.924",
|
|
637
|
+
fill: "#85cbce"
|
|
638
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
639
|
+
"data-name": "Path 2623",
|
|
640
|
+
d: "M13.583 7a.656.656 0 00-.56.768L12.9 7.58a1.38 1.38 0 001.253 0 1.1 1.1 0 01-.621.328 2.385 2.385 0 01-.9-.016c.07-.481.417-1 .955-.9",
|
|
641
|
+
fill: "#74c1a6"
|
|
642
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
643
|
+
"data-name": "Path 2624",
|
|
644
|
+
d: "M13.483 8.7a1.713 1.713 0 00-.969 1.122l-.13-.223a1.26 1.26 0 001.248-.131 1.4 1.4 0 01-1.326.476l-.228-.019a1.949 1.949 0 011.4-1.225",
|
|
645
|
+
fill: "#74c1a6"
|
|
646
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
647
|
+
"data-name": "Path 2625",
|
|
648
|
+
d: "M14.906 9.69a1.471 1.471 0 00-.766 1.032l-.128-.216a1.021 1.021 0 001.166-.2c.03.18-.319.413-.512.475a2.04 2.04 0 01-.953.049 1.726 1.726 0 011.193-1.14",
|
|
649
|
+
fill: "#74c1a6"
|
|
650
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
651
|
+
"data-name": "Path 2626",
|
|
652
|
+
d: "M11.3 12.055a29.807 29.807 0 00-3.76 5.428 3.593 3.593 0 012.085-.873c.078-.119 2.019-3.079 2.443-3.738s2.116-.432 2.116-.432l.083-.1c.1-.13.294-.376.533-.714-.411.322-1.378.626-3.213-.624-1.913-1.31-1.936-5.414-1.922-6.178a6.386 6.386 0 00-.67 2.809 5.661 5.661 0 002.305 4.422",
|
|
653
|
+
fill: "#3a8d98"
|
|
654
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
655
|
+
"data-name": "Path 2627",
|
|
656
|
+
d: "M14.061 16.556l-4.753 96.326a4.112 4.112 0 01-1.9 1.482c-1.112.324-1.853-1.389-1.853-1.389l2.5-40.343 3.785-56.209a16.312 16.312 0 012.221.133",
|
|
657
|
+
fill: "#508832"
|
|
658
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
659
|
+
"data-name": "Path 2628",
|
|
660
|
+
d: "M13.349 16.479L8.6 112.706a4.112 4.112 0 01-1.9 1.482 1.068 1.068 0 01-.162.03 1.037 1.037 0 00.87.147 4.113 4.113 0 001.9-1.482l4.754-96.326c-.238-.034-.48-.059-.713-.078",
|
|
661
|
+
fill: "#99c55e"
|
|
662
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
663
|
+
"data-name": "Path 2629",
|
|
664
|
+
d: "M74.629 3.155c-4.28.341-7.888 3.429-10.661 6.488-1.579 2.039-1.5 4.792-2.2 7.221.131-2.533-.011-5.56 1.7-7.622A21.021 21.021 0 0169.6 4.331a9.544 9.544 0 015.037-1.294z",
|
|
665
|
+
fill: "#fff"
|
|
666
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
667
|
+
"data-name": "Path 2630",
|
|
668
|
+
d: "M59.277 15.845c.088-1.888.614-4.7.345-6.536a18.094 18.094 0 00-3.1-5.27c-.1-.08-.233-.177-.358-.093.109-.11.286-.034.4.032A13.036 13.036 0 0160.1 9.166c.309 2.269-.333 4.484-.823 6.679",
|
|
669
|
+
fill: "#fff"
|
|
670
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
671
|
+
"data-name": "Path 2631",
|
|
672
|
+
d: "M59.979 15.761a3.239 3.239 0 00-.419-.482s-2.833 1.983-3.343 1.926a5.662 5.662 0 01-3.343-1.416 27.622 27.622 0 00-4.7-3c-.68-.34-8.046-.34-12.522 1.019a13.987 13.987 0 001.4 1.26c2.153-.553 6.075-1.373 8.859-.863 4.023.737 8.952 3.343 9.689 4.25.654.805 3.093-1.07 4.385-2.691",
|
|
673
|
+
fill: "#f9c75d"
|
|
674
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
675
|
+
"data-name": "Path 2632",
|
|
676
|
+
d: "M67.07 19.173l.678-.111s-.163 3.238-3.848 2.647c0 0 2.14.159 3.17-2.536",
|
|
677
|
+
fill: "#467f3a"
|
|
678
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
679
|
+
"data-name": "Path 2633",
|
|
680
|
+
d: "M61.918 17.509s-1.15-1.863-2.5-2.061a4.33 4.33 0 00-2.735.832 9.587 9.587 0 012.1-.159 2.525 2.525 0 012.259 1.863c.713 1.9 1.664 3.448 2.853 3.725a2.585 2.585 0 003.171-2.536zM64.137 21c-1.268-.159-2.219-2.853-2.219-2.853l4.28 1.466A1.859 1.859 0 0164.137 21",
|
|
681
|
+
fill: "#bfd35f"
|
|
682
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
683
|
+
"data-name": "Path 2634",
|
|
684
|
+
d: "M56.687 16.28l-.922.765.522.169 2.063-1.108a8.12 8.12 0 00-1.663.174",
|
|
685
|
+
fill: "#467f3a"
|
|
686
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
687
|
+
"data-name": "Path 2635",
|
|
688
|
+
d: "M53.341 15.311l3.219 1.076-.8.658-.53-.056s.418-.249.45-.53l-2.151-.57-.073.257-.385-.257a4.9 4.9 0 01.265-.578",
|
|
689
|
+
fill: "#bfd35f"
|
|
690
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
691
|
+
"data-name": "Path 2636",
|
|
692
|
+
d: "M67.748 19.062l-.678.111-5.152-1.664s-1.363-2.192-3.457-2.035c0 0 1.839-.215 2.641.606a8.5 8.5 0 011.057 1.233z",
|
|
693
|
+
fill: "#e9e100"
|
|
694
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
695
|
+
"data-name": "Path 2637",
|
|
696
|
+
d: "M62.431 18.318l-.512-.176s.951 2.695 2.219 2.858a2.073 2.073 0 00.406.011 5.769 5.769 0 01-2.113-2.689",
|
|
697
|
+
fill: "#ffec00"
|
|
698
|
+
}), /*#__PURE__*/React__namespace.createElement("g", {
|
|
699
|
+
"data-name": "Group 1942"
|
|
700
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
701
|
+
"data-name": "Group 1941",
|
|
702
|
+
opacity: 0.27
|
|
703
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
704
|
+
"data-name": "Group 1940",
|
|
705
|
+
clipPath: "url(#penguin_svg__o)"
|
|
706
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
707
|
+
"data-name": "Path 2638",
|
|
708
|
+
d: "M64.137 21c-1.268-.159-2.219-2.853-2.219-2.853l4.28 1.466A1.859 1.859 0 0164.137 21",
|
|
709
|
+
fill: "#24b8d7"
|
|
710
|
+
}))))))), _path || (_path = /*#__PURE__*/React__namespace.createElement("path", {
|
|
711
|
+
"data-name": "Rectangle 1723",
|
|
712
|
+
fill: "none",
|
|
713
|
+
d: "M0 0h120v119.936H0z"
|
|
714
|
+
})));
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
module.exports = SvgPenguin;
|
|
718
|
+
//# sourceMappingURL=penguin.svg.js.map
|