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,756 @@
|
|
|
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, _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 SvgGiraffe(props) {
|
|
32
|
+
return /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
33
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
34
|
+
width: 120,
|
|
35
|
+
height: 120.004,
|
|
36
|
+
viewBox: "0 0 120 120.004"
|
|
37
|
+
}, props), _defs || (_defs = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
38
|
+
id: "giraffe_svg__a"
|
|
39
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
40
|
+
"data-name": "Rectangle 1710",
|
|
41
|
+
fill: "none",
|
|
42
|
+
d: "M0 0h119.936v119.969H0z"
|
|
43
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
44
|
+
id: "giraffe_svg__b"
|
|
45
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
46
|
+
"data-name": "Rectangle 1696",
|
|
47
|
+
transform: "translate(9.42 9.344)",
|
|
48
|
+
fill: "none",
|
|
49
|
+
d: "M0 0h97.136v99.766H0z"
|
|
50
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
51
|
+
id: "giraffe_svg__c"
|
|
52
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
53
|
+
"data-name": "Rectangle 1697",
|
|
54
|
+
transform: "translate(77.953 38.826)",
|
|
55
|
+
fill: "none",
|
|
56
|
+
d: "M0 0h13.345v23.084H0z"
|
|
57
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
58
|
+
id: "giraffe_svg__d"
|
|
59
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
60
|
+
"data-name": "Rectangle 1698",
|
|
61
|
+
transform: "translate(84.496 76.058)",
|
|
62
|
+
fill: "none",
|
|
63
|
+
d: "M0 0h1.263v5.738H0z"
|
|
64
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
65
|
+
id: "giraffe_svg__e"
|
|
66
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
67
|
+
"data-name": "Rectangle 1700",
|
|
68
|
+
transform: "translate(10.419 32.252)",
|
|
69
|
+
fill: "none",
|
|
70
|
+
d: "M0 0h27.503v36.348H0z"
|
|
71
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
72
|
+
id: "giraffe_svg__f"
|
|
73
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
74
|
+
"data-name": "Path 2422",
|
|
75
|
+
d: "M12.55 32.252s6.507 12.292 10.385 16.959a45.813 45.813 0 005.588 6l7.557 6.871 1.842 3.821-1.553 2.697a8.764 8.764 0 00-3.769-1.773c-1.84-.2-10.977-1.61-12.489-1.742s-7.954-.427-9.071-4.009-.559-18.307.394-23.434a46.332 46.332 0 011.118-5.39",
|
|
76
|
+
fill: "none"
|
|
77
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
78
|
+
id: "giraffe_svg__h"
|
|
79
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
80
|
+
"data-name": "Rectangle 1701",
|
|
81
|
+
transform: "translate(12.452 32.252)",
|
|
82
|
+
fill: "none",
|
|
83
|
+
d: "M0 0h24.311v31.251H0z"
|
|
84
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
85
|
+
id: "giraffe_svg__i"
|
|
86
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
87
|
+
"data-name": "Rectangle 1702",
|
|
88
|
+
transform: "translate(38.275 33.656)",
|
|
89
|
+
fill: "none",
|
|
90
|
+
d: "M0 0h3.979v14.963H0z"
|
|
91
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
92
|
+
id: "giraffe_svg__j"
|
|
93
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
94
|
+
"data-name": "Rectangle 1703",
|
|
95
|
+
transform: "translate(63.973 9.72)",
|
|
96
|
+
fill: "none",
|
|
97
|
+
d: "M0 0h40.094v36.012H0z"
|
|
98
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
99
|
+
id: "giraffe_svg__k"
|
|
100
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
101
|
+
"data-name": "Rectangle 1704",
|
|
102
|
+
transform: "translate(51.61 28.308)",
|
|
103
|
+
fill: "none",
|
|
104
|
+
d: "M0 0h6.431v12.646H0z"
|
|
105
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
106
|
+
id: "giraffe_svg__l"
|
|
107
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
108
|
+
"data-name": "Rectangle 1705",
|
|
109
|
+
transform: "translate(64.8 98.189)",
|
|
110
|
+
fill: "none",
|
|
111
|
+
d: "M0 0h42.052v19.536H0z"
|
|
112
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
113
|
+
id: "giraffe_svg__m"
|
|
114
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
115
|
+
"data-name": "Rectangle 1706",
|
|
116
|
+
transform: "translate(71.468 44.566)",
|
|
117
|
+
fill: "none",
|
|
118
|
+
d: "M0 0h37.764v66.91H0z"
|
|
119
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
120
|
+
id: "giraffe_svg__n"
|
|
121
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
122
|
+
"data-name": "Rectangle 1707",
|
|
123
|
+
transform: "translate(47.101 42.386)",
|
|
124
|
+
fill: "none",
|
|
125
|
+
d: "M0 0h33.738v48.757H0z"
|
|
126
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
127
|
+
id: "giraffe_svg__o"
|
|
128
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
129
|
+
"data-name": "Rectangle 1708",
|
|
130
|
+
transform: "translate(35.073 55.215)",
|
|
131
|
+
fill: "none",
|
|
132
|
+
d: "M0 0h21.47v49.431H0z"
|
|
133
|
+
})), /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
134
|
+
id: "giraffe_svg__p"
|
|
135
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
136
|
+
"data-name": "Rectangle 1709",
|
|
137
|
+
transform: "translate(85.333 59.661)",
|
|
138
|
+
fill: "none",
|
|
139
|
+
d: "M0 0h5.965v3.342H0z"
|
|
140
|
+
})), /*#__PURE__*/React__namespace.createElement("linearGradient", {
|
|
141
|
+
id: "giraffe_svg__g",
|
|
142
|
+
x1: -0.354,
|
|
143
|
+
y1: 2.413,
|
|
144
|
+
x2: -0.319,
|
|
145
|
+
y2: 2.413,
|
|
146
|
+
gradientUnits: "objectBoundingBox"
|
|
147
|
+
}, /*#__PURE__*/React__namespace.createElement("stop", {
|
|
148
|
+
offset: 0,
|
|
149
|
+
stopColor: "#fff"
|
|
150
|
+
}), /*#__PURE__*/React__namespace.createElement("stop", {
|
|
151
|
+
offset: 1,
|
|
152
|
+
stopColor: "#1d1d1b"
|
|
153
|
+
})))), _g || (_g = /*#__PURE__*/React__namespace.createElement("g", {
|
|
154
|
+
"data-name": "Group 1911",
|
|
155
|
+
clipPath: "url(#giraffe_svg__a)"
|
|
156
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
157
|
+
"data-name": "Group 1872"
|
|
158
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
159
|
+
"data-name": "Group 1871",
|
|
160
|
+
opacity: 0.3
|
|
161
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
162
|
+
"data-name": "Group 1870",
|
|
163
|
+
clipPath: "url(#giraffe_svg__b)"
|
|
164
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
165
|
+
"data-name": "Path 2399",
|
|
166
|
+
d: "M19.109 69.085c1.512.131 10.649 1.545 12.489 1.742a8.747 8.747 0 013.77 1.773c-.007.463-.017.946-.032 1.455q-.012.463-.03.949c0 .1-.007.2-.011.3q-.03.833-.069 1.709v.034c-.026.594-.056 1.2-.088 1.814 0 .07-.007.14-.011.211-.026.5-.054 1.01-.083 1.518l-.049.84-.021.362-.05.825-.021.33-.058.907-.015.235c-.05.767-.1 1.518-.151 2.243 0 .069-.009.136-.014.2l-.06.851-.022.3-.051.715-.022.293-.05.668-.02.271-.058.757-.006.08-.055.705-.015.181-.052.65c0 .049-.008.093-.011.141l-.038.451c0 .069-.011.132-.016.2l-.027.318-.015.169-.021.233c0 .045-.008.092-.012.132l-.015.156-.009.091-.014.12a.327.327 0 00.042.16c0 .011.017.028.023.04a2.139 2.139 0 00.132.23 33.363 33.363 0 004.6 5.015c.188.17.377.335.565.5l.04.033c.177.154.354.3.531.447.067.054.133.111.2.164.174.141.347.273.52.4.068.052.137.108.205.158.175.129.345.246.516.363.063.043.128.092.191.133.23.152.457.293.676.417l.392.217c1.771.981 4.685 2.487 7.244 3.792a997.43 997.43 0 005.073 2.564l.035-.043.046-.054.074-.085.061-.069.024-.027.106-.119.064-.071.065-.072c1.193-1.307 4.475-4.6 7.763-5.157a3.1 3.1 0 01.641-.023 3.578 3.578 0 01.486.059c.1.018.205.033.309.059.167.042.336.1.506.159.1.038.206.074.309.118.173.073.347.157.521.247a9.813 9.813 0 01.833.486c.1.065.2.131.3.2q.265.183.527.383c.1.074.193.149.289.226.175.14.349.283.521.431.092.079.183.16.274.241.171.153.341.307.507.465.087.082.172.165.258.248.164.161.327.321.485.483.081.082.159.164.237.247.156.162.31.325.457.485l.217.24c.142.159.284.317.417.47a.28.28 0 01.057.091c.259.3.494.583.71.847a50.616 50.616 0 0023.5-13.234l-12-9.8s-.1-.079-.254-.207c.047-.024.092-.048.137-.075a2.784 2.784 0 001.211-2.118c.015-.108.026-.214.034-.321v-.043c.007-.1.011-.2.013-.3v-.056V82.611q-.006-.125-.015-.243c0-.028-.006-.056-.008-.084a9.483 9.483 0 00-.022-.207c0-.031-.009-.059-.013-.09a3.417 3.417 0 00-.026-.17c0-.033-.011-.061-.017-.092l-.024-.128c-.008-.039-.016-.066-.024-.1l-.019-.078a1.54 1.54 0 00-.039-.121 1.445 1.445 0 00-.14-.253c-.019-.03-.042-.061-.064-.093s-.058-.086-.093-.133l-.066-.084-.058-.074-.057-.071-.085-.1-.088-.1-.047-.054-.071-.08c-.048-.055-.1-.106-.14-.156l-.079-.086-.121-.114c.024-.108.046-.231.069-.355.012-.066.024-.127.035-.2q.054-.327.094-.719c0-.032.009-.057.011-.089a19.31 19.31 0 00.032-3.045 14.264 14.264 0 00-.773-3.767 5.741 5.741 0 00.434-1.145c.01-.037.018-.078.027-.116.026-.109.05-.22.069-.335.01-.055.016-.112.024-.169.014-.1.026-.21.034-.319 0-.066.006-.133.009-.2v-.321c0-.073-.007-.146-.013-.22a4.927 4.927 0 00-.041-.332c-.012-.077-.023-.153-.04-.23a4.31 4.31 0 00-.09-.351c-.022-.077-.041-.153-.067-.23-.045-.13-.1-.263-.16-.395-.03-.067-.053-.132-.086-.2l-.021-.046A13.673 13.673 0 0084.366 67c.06-.008.119-.019.179-.027l.252-.039q.258-.04.514-.09c.081-.015.161-.03.242-.047q.267-.053.529-.113l.264-.061.408-.1.231-.059q.285-.075.555-.152l.229-.066.345-.1.226-.069c.129-.04.252-.079.371-.118l.155-.05.055-.019c.114-.038.224-.074.327-.11l.184-.064.036-.012.177-.063.113-.04.129-.048.043-.015.085-.032.073-.028.1-.036.031-.012.033-.013.048-.017v-.732c0-2.545-.047-11-.658-13.567-.724-3.032-4.01-8.274-4.01-8.274L81.9 48.556l-4.709 7.23a65.114 65.114 0 00-2.741-2.671 29.032 29.032 0 00-3.817-4.407l.111-.226.029-.058c.013-.025.035-.066.049-.1a22.67 22.67 0 011.436-2.396l.041-.058c.175-.255.361-.518.564-.789.038-.051.084-.1.123-.157.184-.241.371-.484.576-.733a22.185 22.185 0 011.528-1.663c.125-.123.256-.244.387-.365q.246-.229.5-.455c.132-.115.265-.229.4-.341.21-.173.43-.341.652-.507.11-.082.216-.168.329-.248q.5-.354 1.037-.678c.107-.064.22-.123.329-.185.273-.155.55-.305.837-.445q.207-.1.419-.195.429-.193.878-.361l.4-.15a13.665 13.665 0 011.345-.389 25.342 25.342 0 014.12-.556l.213-.011c.275-.015.553-.023.831-.032.153-.005.3-.014.458-.018H89.939c.444.007.889.019 1.331.038l.169.008c.166.007.329.018.494.027.279.014.559.027.836.046l.149.01c.306.021.607.046.909.071.123.01.249.018.372.029l.159.014c.368.033.729.07 1.086.107l.162.016.161.017q.61.066 1.195.14l.18.022c.259.032.5.066.754.1l.356.047.183.026c.333.047.651.094.961.142l.064.009.165.025c.323.051.63.1.931.151a51.152 51.152 0 015.991 1.524 50.72 50.72 0 00-7.708-12.576 10.684 10.684 0 01-2.258-.7 13.212 13.212 0 01-2.037-1.329c-3.855-2.805-8.565-4.644-12.821-6.792a50.21 50.21 0 00-15.957-4.943c-.237-.032-.469-.078-.707-.107-.6.366-1.309.838-2.1 1.406l-.068.05a7.876 7.876 0 00-.233-.484 3.425 3.425 0 01-.148-.32c-.019-.047-.035-.1-.053-.151-.026-.073-.053-.143-.077-.22s-.039-.139-.059-.21-.038-.132-.055-.2-.04-.173-.059-.26c-.013-.06-.028-.118-.04-.18-.021-.1-.039-.207-.058-.312l-.027-.148q-.03-.183-.057-.369c0-.033-.01-.065-.014-.1a20.67 20.67 0 01-.055-.426l-.005-.041a32.72 32.72 0 01-.179-2.366h-.14l-.315 1.449a2.519 2.519 0 01-.41-.557 5.158 5.158 0 01-.388-.92c-.189 0-.375-.014-.565-.014-.258 0-.513.015-.771.019.08 1.043.356 2.235.644 3.839a9.73 9.73 0 01-.393 4.8l-.075.071c-.222.2-.446.416-.672.632a36.178 36.178 0 00-1.555-3.467 84.11 84.11 0 01-1.6-3.45A16.3 16.3 0 0154.8 9.6q-2.481.254-4.888.745a10.128 10.128 0 00-.59 3.49c.01.1.021.183.031.267 0 .036.008.069.013.1l.02.162.021.161c0 .036.009.071.013.107l.013.11.01.089.011.112c.004.037 0 .057.007.085s0 .08.008.121v.603c0 .051 0 .1-.008.155 0 .037-.005.076-.008.114 0 .055-.009.11-.014.168l-.014.14-.019.181v.034c-.018.154-.039.319-.065.5s-.053.369-.085.577l-.022.14-.09.557-.03.184-.141.826c-.61 3.51 1.038 6.023 2.711 7.98-.06.094-.12.187-.179.282-.157.251-.311.51-.466.767q-.369.617-.73 1.261c-.175.312-.349.624-.52.946q-.416.778-.817 1.6c-.14.287-.279.575-.417.87-.05.107-.1.208-.146.328a56.275 56.275 0 00-2.689 7.118 5.952 5.952 0 01-.428-.372 22.978 22.978 0 01-2.636-3.683l-.087-.147c-.073-.125-.14-.241-.191-.333-.138-.251-.268-.427-.373-.615a1.174 1.174 0 01-.05-.092 1.241 1.241 0 01-.06-.144 1.516 1.516 0 01-.039-.108 1.82 1.82 0 01-.061-.309 2.72 2.72 0 01-.016-.217v-.182c0-.087 0-.178.012-.279 0-.043.009-.093.013-.138a9.125 9.125 0 00.159-1.115c.025-.137.05-.281.071-.432.023-.136.046-.266.068-.408v-.034c.021-.144.038-.3.058-.451.025-.19.049-.377.07-.578.017-.159.03-.326.044-.491.019-.213.036-.426.05-.65a28.425 28.425 0 00.043-1.251v-.562c0-.257-.011-.519-.022-.786a30.117 30.117 0 00-.029-.585 27.657 27.657 0 00-.075-.87c-.019-.193-.036-.383-.06-.581a25.78 25.78 0 00-.149-1.006c-.028-.172-.05-.34-.082-.514-.1-.518-.207-1.044-.343-1.581a13.825 13.825 0 00-4.031-7.274c-.022-.025-.04-.056-.061-.081a50.818 50.818 0 00-11.73 8.051c0 .157-.007.311 0 .475v.081c0 .074.008.156.01.231a24.674 24.674 0 00.103 1.591l.032.337c.036.347.077.71.127 1.1a6.854 6.854 0 002.656 4.234 23.209 23.209 0 003.742 2.427 22.1 22.1 0 011.152.693c.067.043.134.084.2.128q.542.357 1.05.762c.065.051.128.1.191.154a11.825 11.825 0 001.08 1.029 5.822 5.822 0 011.145 1.796c.1.273.2.566.3.874l.017.058c.09.3.176.61.258.935.137.541.265 1.111.378 1.715 0 .019.007.04.011.059.251 1.347.445 2.824.575 4.334a48.439 48.439 0 01.067 5.6l-.037.039-.056.057a16.52 16.52 0 00-.749.865q-.215.262-.421.542c-.052.07-.1.139-.156.21q-.269.375-.521.773c-.033.052-.063.108-.1.161q-.2.334-.394.687a22.3 22.3 0 00-.14.266q-.185.36-.353.738c-.027.061-.057.12-.083.182-.133.31-.256.631-.371.96-.029.084-.056.172-.084.258q-.127.39-.237.8c-.027.1-.055.2-.08.306-.088.359-.169.724-.233 1.1V59.605c0 .41.011 1.123.034 2.057a174.531 174.531 0 00.072 2.194c.012.315.027.641.043.973 0 .087.008.175.013.264q.021.414.045.84c0 .055.005.107.008.163l-7.557-6.872a45.734 45.734 0 01-5.588-6 66.294 66.294 0 01-4.955-7.359l-.523-.874-.044-.075-.454-.771a10.355 10.355 0 01-.083-.141c-.137-.235-.273-.467-.407-.7l-.087-.151c-.32-.552-.63-1.093-.924-1.612l-.03-.053c-.138-.242-.272-.48-.4-.712l-.053-.094a114.66 114.66 0 01-.363-.648l-.046-.083a2.062 2.062 0 01-.045-.08 50.262 50.262 0 00-4.1 17.365 34.214 34.214 0 00.618 7.85c1.117 3.583 7.559 3.879 9.071 4.01"
|
|
167
|
+
})))), /*#__PURE__*/React__namespace.createElement("path", {
|
|
168
|
+
"data-name": "Path 2400",
|
|
169
|
+
d: "M77.953 52.147l8.677-13.322s3.286 5.242 4.009 8.274.658 14.3.658 14.3-5.982 2.39-9.137 1.543-4.207-10.794-4.207-10.794",
|
|
170
|
+
fill: "#fffb8a"
|
|
171
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
172
|
+
"data-name": "Path 2401",
|
|
173
|
+
d: "M90.64 47.1c-.724-3.032-4.01-8.274-4.01-8.274l-3.73 5.731c.553 2.36 1.485 6.43 1.625 7.591.16 1.318.807 7.224.845 10.856A29.277 29.277 0 0091.3 61.4s.066-11.267-.657-14.3",
|
|
174
|
+
fill: "#c28344"
|
|
175
|
+
}), /*#__PURE__*/React__namespace.createElement("g", {
|
|
176
|
+
"data-name": "Group 1875"
|
|
177
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
178
|
+
"data-name": "Group 1874",
|
|
179
|
+
opacity: 0.5
|
|
180
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
181
|
+
"data-name": "Group 1873",
|
|
182
|
+
clipPath: "url(#giraffe_svg__c)"
|
|
183
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
184
|
+
"data-name": "Path 2402",
|
|
185
|
+
d: "M91.3 61.4s.066-11.267-.657-14.3-4.01-8.274-4.01-8.274l-8.68 13.322s.033.307.1.811L86.5 41.718a39.7 39.7 0 012.892 8.108c.525 2.821.505 9.515.475 12.084.869-.287 1.431-.511 1.431-.511",
|
|
186
|
+
fill: "#fff"
|
|
187
|
+
})))), /*#__PURE__*/React__namespace.createElement("path", {
|
|
188
|
+
"data-name": "Path 2403",
|
|
189
|
+
d: "M85.512 44.566A6.056 6.056 0 0187.1 41.63a6.048 6.048 0 01-1.585 2.936",
|
|
190
|
+
fill: "#d6ac7b"
|
|
191
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
192
|
+
"data-name": "Path 2404",
|
|
193
|
+
d: "M87.4 55.768a6.059 6.059 0 013.325-.277 6.037 6.037 0 01-3.325.277",
|
|
194
|
+
fill: "#d6ac7b"
|
|
195
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
196
|
+
"data-name": "Path 2405",
|
|
197
|
+
d: "M85.118 47.962c.923-1.014 1.9-1.975 2.765-3.047a4.272 4.272 0 01-2.765 3.047",
|
|
198
|
+
fill: "#d6ac7b"
|
|
199
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
200
|
+
"data-name": "Path 2406",
|
|
201
|
+
d: "M87.122 51.586c1.106-.811 2.257-1.558 3.315-2.438a4.268 4.268 0 01-3.315 2.438",
|
|
202
|
+
fill: "#d6ac7b"
|
|
203
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
204
|
+
"data-name": "Path 2407",
|
|
205
|
+
d: "M86.282 57.435c1.355.209 2.7.494 4.068.62a4.271 4.271 0 01-4.068-.62",
|
|
206
|
+
fill: "#d6ac7b"
|
|
207
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
208
|
+
"data-name": "Path 2408",
|
|
209
|
+
d: "M85.849 59.8c1.015.128 1.907.283 2.93.35a3.084 3.084 0 01-2.93-.35",
|
|
210
|
+
fill: "#d6ac7b"
|
|
211
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
212
|
+
"data-name": "Path 2409",
|
|
213
|
+
d: "M85.118 50.406c1.515-1.272 3.292-2.226 4.557-3.767-.638 1.953-2.757 3.052-4.557 3.767",
|
|
214
|
+
fill: "#d6ac7b"
|
|
215
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
216
|
+
"data-name": "Path 2410",
|
|
217
|
+
d: "M85.6 55.353c1.515-1.272 3.292-2.226 4.557-3.767-.638 1.953-2.757 3.052-4.557 3.767",
|
|
218
|
+
fill: "#d6ac7b"
|
|
219
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
220
|
+
"data-name": "Path 2411",
|
|
221
|
+
d: "M79.366 58.545a10.779 10.779 0 014.305 4.01 5.172 5.172 0 01-.164 5.85l-5.686-.132-1.512-9.4z",
|
|
222
|
+
fill: "#bf7f43"
|
|
223
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
224
|
+
"data-name": "Path 2412",
|
|
225
|
+
d: "M75.192 48.883s4.733 4.273 5.127 5.653S79 62.358 77.756 63.41s-5-12.292-2.564-14.527",
|
|
226
|
+
fill: "#2b295a"
|
|
227
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
228
|
+
"data-name": "Path 2413",
|
|
229
|
+
d: "M84.231 75.668a8.759 8.759 0 011.315 1.632c.2.5.788 3.955-1.512 4.711s-5.39-1.742-5.39-1.742l.887-6.123s2.6.8 4.7 1.522",
|
|
230
|
+
fill: "#fffb8a"
|
|
231
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
232
|
+
"data-name": "Path 2414",
|
|
233
|
+
d: "M78.695 76.945l-.051-.055z",
|
|
234
|
+
fill: "#2b295a"
|
|
235
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
236
|
+
"data-name": "Path 2415",
|
|
237
|
+
d: "M85.248 76.822a13.922 13.922 0 00-1.017-1.153c-2.1-.723-4.7-1.522-4.7-1.522l-.458 3.161a5.116 5.116 0 003.679 1.549 3.618 3.618 0 002.5-2.035",
|
|
238
|
+
fill: "#2b295a"
|
|
239
|
+
}), /*#__PURE__*/React__namespace.createElement("g", {
|
|
240
|
+
"data-name": "Group 1878"
|
|
241
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
242
|
+
"data-name": "Group 1877",
|
|
243
|
+
opacity: 0.5
|
|
244
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
245
|
+
"data-name": "Group 1876",
|
|
246
|
+
clipPath: "url(#giraffe_svg__d)"
|
|
247
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
248
|
+
"data-name": "Path 2416",
|
|
249
|
+
d: "M84.6 76.058c-.093.6-.154 1.4.136 1.681.463.443.427 2.769-.239 4.057 1.746-1.042 1.231-4.029 1.048-4.495a5.8 5.8 0 00-.945-1.243",
|
|
250
|
+
fill: "#fff"
|
|
251
|
+
})))), /*#__PURE__*/React__namespace.createElement("path", {
|
|
252
|
+
"data-name": "Path 2417",
|
|
253
|
+
d: "M78.315 66.729a3 3 0 012.629-2.136c2.137-.2 3.55 3.8 3.747 6.9s-.3 5.006-.592 5.4a4.157 4.157 0 01-4.242-.135c-1.641-1.117-3.35-6.179-3.35-6.179z",
|
|
254
|
+
fill: "#fff"
|
|
255
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
256
|
+
"data-name": "Path 2418",
|
|
257
|
+
d: "M84.66 74.535a6.158 6.158 0 01-2.73 1.373 4.965 4.965 0 01-3.139-.357 4.384 4.384 0 001.065 1.2 4.159 4.159 0 004.243.135 5.911 5.911 0 00.561-2.353",
|
|
258
|
+
fill: "#f5f5f5"
|
|
259
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
260
|
+
"data-name": "Path 2419",
|
|
261
|
+
d: "M77.953 69a1.375 1.375 0 011.019-.164 1.5 1.5 0 011.183 1.249c.066.624.029 3.1-.478 3.713a1.282 1.282 0 01-1.4.241z",
|
|
262
|
+
fill: "#1d0605"
|
|
263
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
264
|
+
"data-name": "Path 2420",
|
|
265
|
+
d: "M78.9 71.06a.969.969 0 00.083.407.384.384 0 00.331.221.39.39 0 00.319-.237 1.123 1.123 0 00.082-.407c.023-.306.088-1.024-.385-1.033-.455-.009-.442.741-.43 1.049",
|
|
266
|
+
fill: "#fff"
|
|
267
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
268
|
+
"data-name": "Path 2421",
|
|
269
|
+
d: "M12.55 32.252s6.507 12.292 10.386 16.959a45.7 45.7 0 005.587 6l7.558 6.872 1.842 3.821-1.554 2.696a8.755 8.755 0 00-3.769-1.773c-1.84-.2-10.977-1.61-12.489-1.742s-7.953-.427-9.071-4.009-.559-18.307.395-23.434a46.724 46.724 0 011.117-5.39",
|
|
270
|
+
fill: "#642b33"
|
|
271
|
+
}), /*#__PURE__*/React__namespace.createElement("g", {
|
|
272
|
+
"data-name": "Group 1883"
|
|
273
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
274
|
+
"data-name": "Group 1882"
|
|
275
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
276
|
+
"data-name": "Group 1881"
|
|
277
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
278
|
+
"data-name": "Group 1880",
|
|
279
|
+
clipPath: "url(#giraffe_svg__e)"
|
|
280
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
281
|
+
"data-name": "Group 1879",
|
|
282
|
+
clipPath: "url(#giraffe_svg__f)"
|
|
283
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
284
|
+
"data-name": "Rectangle 1699",
|
|
285
|
+
transform: "translate(9.921 32.252)",
|
|
286
|
+
fill: "url(#giraffe_svg__g)",
|
|
287
|
+
d: "M0 0h28.001v36.349H0z"
|
|
288
|
+
})))))), /*#__PURE__*/React__namespace.createElement("path", {
|
|
289
|
+
"data-name": "Path 2423",
|
|
290
|
+
d: "M13.339 48.159a38.9 38.9 0 005.456 14.4c.46.72 18.514 4.416 18.514 4.416l.614-1.063-1.842-3.821-7.558-6.872a45.7 45.7 0 01-5.587-6C19.058 44.544 12.55 32.252 12.55 32.252a55.277 55.277 0 00.789 15.907",
|
|
291
|
+
fill: "#fef999"
|
|
292
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
293
|
+
"data-name": "Path 2424",
|
|
294
|
+
d: "M18.071 48.291c-.141-1.446-.131-4.2-.091-6.438-2.867-4.76-5.43-9.6-5.43-9.6a55.232 55.232 0 00.788 15.908 39.527 39.527 0 005.338 14.218c-.307-5.464-.444-12.438-.605-14.087",
|
|
295
|
+
fill: "#c28344"
|
|
296
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
297
|
+
"data-name": "Path 2425",
|
|
298
|
+
d: "M14.653 50.679a90.951 90.951 0 013.068 5.149 8.046 8.046 0 01-3.068-5.149",
|
|
299
|
+
fill: "#d6ac7b"
|
|
300
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
301
|
+
"data-name": "Path 2426",
|
|
302
|
+
d: "M13.689 43.4a178.96 178.96 0 002.8 5.017c-1.8-.966-2.461-3.144-2.8-5.017",
|
|
303
|
+
fill: "#d6ac7b"
|
|
304
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
305
|
+
"data-name": "Path 2427",
|
|
306
|
+
d: "M13.689 37.6a37.271 37.271 0 002.235 4.557 5.588 5.588 0 01-2.235-4.557",
|
|
307
|
+
fill: "#d6ac7b"
|
|
308
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
309
|
+
"data-name": "Path 2428",
|
|
310
|
+
d: "M15.091 42.156c.607.588 1.074 1.105 1.709 1.665a2.131 2.131 0 01-1.709-1.665",
|
|
311
|
+
fill: "#d6ac7b"
|
|
312
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
313
|
+
"data-name": "Path 2429",
|
|
314
|
+
d: "M15.946 44.772c.607.588 1.074 1.1 1.709 1.665a2.131 2.131 0 01-1.709-1.665",
|
|
315
|
+
fill: "#d6ac7b"
|
|
316
|
+
}), /*#__PURE__*/React__namespace.createElement("g", {
|
|
317
|
+
"data-name": "Group 1886"
|
|
318
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
319
|
+
"data-name": "Group 1885",
|
|
320
|
+
opacity: 0.5
|
|
321
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
322
|
+
"data-name": "Group 1884",
|
|
323
|
+
clipPath: "url(#giraffe_svg__h)"
|
|
324
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
325
|
+
"data-name": "Path 2430",
|
|
326
|
+
d: "M36.08 62.086l-7.558-6.872a45.7 45.7 0 01-5.587-6c-3.878-4.667-10.386-16.959-10.386-16.959-.028.431-.063.886-.1 1.373 1.523 2.97 5.925 11.22 10.286 16.2 3.844 4.384 10.512 10.513 14.028 13.672z",
|
|
327
|
+
fill: "#fff"
|
|
328
|
+
})))), /*#__PURE__*/React__namespace.createElement("path", {
|
|
329
|
+
"data-name": "Path 2431",
|
|
330
|
+
d: "M39.807 48.62a54.5 54.5 0 000-6.946 32.185 32.185 0 00-1.534-7.974c-.745-1.972-2.936-3.506-4.82-4.558s-5.96-3.2-6.4-6.66a16.487 16.487 0 01.263-7.362 5.758 5.758 0 00.57 1.972 9.178 9.178 0 01.438-4.558 7.779 7.779 0 00.876 1.709 18.6 18.6 0 01-.263-4.031 14.55 14.55 0 00-1.314-5.785 10.087 10.087 0 013.5 3.637s-.263-3.856 1.8-6a11.294 11.294 0 001.187 5.079c1.227 2.06 1.622 2.673 1.622 2.673a11.269 11.269 0 01.568-3.549 8.067 8.067 0 00.7 2.278 8.315 8.315 0 01.263-2.41s.088 3.2 1.315 4.558a13.831 13.831 0 014.032 7.274 25.435 25.435 0 01.35 10.78c-.438 2.366-.044 2.366.416 3.2a24.714 24.714 0 002.915 4.163 54.3 54.3 0 008.457 5.565c1.753.745-14.943 6.946-14.943 6.946",
|
|
331
|
+
fill: "#e0c865"
|
|
332
|
+
}), /*#__PURE__*/React__namespace.createElement("g", {
|
|
333
|
+
"data-name": "Group 1889"
|
|
334
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
335
|
+
"data-name": "Group 1888",
|
|
336
|
+
opacity: 0.3
|
|
337
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
338
|
+
"data-name": "Group 1887",
|
|
339
|
+
clipPath: "url(#giraffe_svg__i)"
|
|
340
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
341
|
+
"data-name": "Path 2432",
|
|
342
|
+
d: "M42.254 47.691l-2.635-13.28a1.055 1.055 0 00-1.344-.7 32.206 32.206 0 011.532 7.968 54.5 54.5 0 010 6.946s.984-.366 2.447-.929",
|
|
343
|
+
fill: "#1d1d1b"
|
|
344
|
+
})))), /*#__PURE__*/React__namespace.createElement("path", {
|
|
345
|
+
"data-name": "Path 2433",
|
|
346
|
+
d: "M37.694 32.153c-.494.069-1.455-1.129-1.719-1.342a17.524 17.524 0 00-2.523-1.67c-1.884-1.052-5.959-3.2-6.4-6.661a16.5 16.5 0 01.263-7.362 5.758 5.758 0 00.57 1.972 9.191 9.191 0 01.438-4.558 7.75 7.75 0 00.877 1.709 18.533 18.533 0 01-.263-4.031 14.551 14.551 0 00-1.315-5.785 10.091 10.091 0 013.508 3.638s-.263-3.857 1.8-6a11.292 11.292 0 001.18 5.079c1.227 2.06 1.621 2.673 1.621 2.673a11.279 11.279 0 01.57-3.549A8.048 8.048 0 0037 8.545a8.284 8.284 0 01.263-2.411s.087 3.2 1.314 4.558a13.829 13.829 0 014.032 7.274 25.438 25.438 0 01.351 10.78c-.111.6.028 1.4-.657 1.649a2.452 2.452 0 01-.806.1l-1.8.019a2.123 2.123 0 00-1.283.289 1.062 1.062 0 00-.394.618c-.031.143-.031.292-.067.433-.049.194-.14.283-.259.3",
|
|
347
|
+
fill: "#cc6c2c"
|
|
348
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
349
|
+
"data-name": "Path 2434",
|
|
350
|
+
d: "M32.927 2.059c-2.06 2.147-1.8 6-1.8 6a10.084 10.084 0 00-3.5-3.638 6.814 6.814 0 01.66 1.708 41.64 41.64 0 014.248 6.4s-1.118-6.551.394-10.473",
|
|
351
|
+
fill: "#954113"
|
|
352
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
353
|
+
"data-name": "Path 2435",
|
|
354
|
+
d: "M43.378 31.946c-.46-.833-.855-.833-.416-3.2l.075-.429c-2.708-1.766-5.115-5.991-5.115-5.991l1.122 5.451c-.842-.707-2.234-1.711-4.671-3.479a12.654 12.654 0 01-5.318-10.251 9.619 9.619 0 01-.73-1.515 9.191 9.191 0 00-.438 4.558 5.781 5.781 0 01-.57-1.972 16.489 16.489 0 00-.262 7.362c.438 3.461 4.513 5.609 6.4 6.66s4.076 2.586 4.821 4.558a17.565 17.565 0 01.57 1.868c.546.282.941.326.92-.159A17.308 17.308 0 0038.58 31.2s2.234 3.418 2.892 3.089-.066-3.023-.066-3.023.657 1.051 1.249 1.972 1.094-.658 1.094-.658a20.11 20.11 0 01-.371-.635",
|
|
355
|
+
fill: "#954113"
|
|
356
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
357
|
+
"data-name": "Path 2436",
|
|
358
|
+
d: "M29 12.7c.026.27.054.517.082.73A4.142 4.142 0 0029 12.7",
|
|
359
|
+
fill: "#954113"
|
|
360
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
361
|
+
"data-name": "Path 2437",
|
|
362
|
+
d: "M37.594 29.754c-.723-.92-1.183-.526-5.916-4.415A12.229 12.229 0 0127 16.463a18.345 18.345 0 00.05 6.02c.438 3.462 4.514 5.609 6.4 6.66s4.075 2.586 4.82 4.558a17.557 17.557 0 01.571 1.868c.545.282.94.326.919-.159a9.4 9.4 0 00-.44-2.115 20.1 20.1 0 00-1.729-3.538",
|
|
363
|
+
fill: "#742f0d"
|
|
364
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
365
|
+
"data-name": "Path 2438",
|
|
366
|
+
d: "M42.491 27.925a58.244 58.244 0 01-4.568-5.225 11.069 11.069 0 01-2.323-7.363s.066 5.281 6.891 12.588",
|
|
367
|
+
fill: "#fffe8c"
|
|
368
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
369
|
+
"data-name": "Path 2439",
|
|
370
|
+
d: "M30.844 16.755l.023.029-.023-.029",
|
|
371
|
+
fill: "#fffe8c"
|
|
372
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
373
|
+
"data-name": "Path 2440",
|
|
374
|
+
d: "M30.844 16.755a6.118 6.118 0 01-1.244-3.322c-.087-1.952-.221-4.826-.9-5.646a9.741 9.741 0 01.243 2.424 18.6 18.6 0 00.263 4.031 7.779 7.779 0 01-.876-1.709 8.463 8.463 0 001.27 2.805c.656.693 1.14 1.284 1.248 1.417",
|
|
375
|
+
fill: "#fffe8c"
|
|
376
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
377
|
+
"data-name": "Path 2441",
|
|
378
|
+
d: "M35.863 11.832c.028.277-.067-.938-.157-2.056-.1-.162-.541-.863-1.6-2.633A9.685 9.685 0 0133 3.358a7.134 7.134 0 00-.381 2.076A8.343 8.343 0 0034 9.159a16.307 16.307 0 011.866 2.673",
|
|
379
|
+
fill: "#e8a543"
|
|
380
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
381
|
+
"data-name": "Path 2442",
|
|
382
|
+
d: "M35.863 23.488a20.7 20.7 0 00-1.227-5.171C33.847 16.871 32.168 7.7 33.1 4.069a13.145 13.145 0 01-.169-2.009c-.034.035-.062.074-.094.11a25.447 25.447 0 00-.3 10.533c1.095 6.229 1.577 5.527 2.059 6.886s1.271 3.9 1.271 3.9",
|
|
383
|
+
fill: "#fffe8c"
|
|
384
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
385
|
+
"data-name": "Path 2443",
|
|
386
|
+
d: "M41.91 21.631a15.966 15.966 0 00.351 4.223 9.77 9.77 0 00.84 2.052 25.419 25.419 0 00-.49-9.94 13.834 13.834 0 00-4.031-7.274 3.425 3.425 0 01-.541-.852 29.723 29.723 0 002.338 5.495 12.774 12.774 0 011.534 6.294",
|
|
387
|
+
fill: "#fffe8c"
|
|
388
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
389
|
+
"data-name": "Path 2444",
|
|
390
|
+
d: "M54.75 41.674a54.356 54.356 0 01-8.458-5.565 24.743 24.743 0 01-2.914-4.163 2.742 2.742 0 01-.514-2.613 68.293 68.293 0 01-2.108 1.169 7.74 7.74 0 00.278 3.2s1.711 3.724 3.288 5.127a83.334 83.334 0 007.491 4.906c2.124-1 3.507-1.816 2.937-2.058",
|
|
391
|
+
fill: "#fffb8a"
|
|
392
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
393
|
+
"data-name": "Path 2445",
|
|
394
|
+
d: "M66.067 9.72c-4.385 2.694-14.676 10.58-19.585 27.5-6.335 21.837 25.1 7.58 25.1 7.58s3.882-8.713 12.024-10.588c6.914-1.593 17.438.279 20.456.88a50.706 50.706 0 00-38-25.374",
|
|
395
|
+
fill: "#fffb8a"
|
|
396
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
397
|
+
"data-name": "Path 2446",
|
|
398
|
+
d: "M74.564 40.189c-1.348-.9-2.833-1.637-3.46-3.126a5.791 5.791 0 01-.359-2.153 16.858 16.858 0 011.082-6.218l-6.241-4.363a3.057 3.057 0 01-.873-.8 3.456 3.456 0 01-.284-2.1 15.6 15.6 0 00-1.442-8.489c-.133-.24-.272-.492-.42-.745A46.568 46.568 0 0049.4 29.358a14.068 14.068 0 005.333 5.828 1.068 1.068 0 00.553.2 1.122 1.122 0 00.665-.357l4.638-4.081a1.586 1.586 0 01.943-.5 1.482 1.482 0 01.816.329 15.439 15.439 0 012.995 2.655 12.881 12.881 0 00-2.376 7.861 20.425 20.425 0 001.139 6.269 67.672 67.672 0 007.481-2.762 22.443 22.443 0 012.977-4.613",
|
|
399
|
+
fill: "#c69a39"
|
|
400
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
401
|
+
"data-name": "Path 2447",
|
|
402
|
+
d: "M77.628 12.53a50.21 50.21 0 00-10.853-2.7c-.005.05-.015.1-.019.15a31.649 31.649 0 001.094 10.871 6.443 6.443 0 001.183 2.538 6.757 6.757 0 001.713 1.283l5.054 3a41.147 41.147 0 004.9-5.635l-3.126-3.693a2.453 2.453 0 01-.533-.843 2.456 2.456 0 01-.037-.925 37.124 37.124 0 01.62-4.051",
|
|
403
|
+
fill: "#c69a39"
|
|
404
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
405
|
+
"data-name": "Path 2448",
|
|
406
|
+
d: "M88.375 18.083a50.669 50.669 0 00-5.643-3.313c-.117.536-.218 1.019-.324 1.348a.91.91 0 00-.065.438.867.867 0 00.383.485l3.016 2.324a19.567 19.567 0 002.633-1.282",
|
|
407
|
+
fill: "#c69a39"
|
|
408
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
409
|
+
"data-name": "Path 2449",
|
|
410
|
+
d: "M91.037 20.031a5.782 5.782 0 00-1.006.313 9.933 9.933 0 00-5.5 5.873 3.941 3.941 0 00-.255 1.474 4.841 4.841 0 00.555 1.729q1 2.152 2.011 4.3c.294-.026.59-.047.888-.065l.214-.011c.426-.023.855-.041 1.288-.05h.2q.656-.01 1.317 0h.2q.667.01 1.332.038l.17.008c.445.019.889.043 1.328.073l.152.01q.646.045 1.278.1l.159.014q.635.057 1.248.123l.161.017c.408.044.805.091 1.195.139l.18.022c.381.048.75.1 1.11.148l.186.026c.354.05.694.1 1.023.151l.167.026c.322.05.628.1.922.148l.164.028c.289.048.56.1.815.141l.124.022c.26.046.5.091.718.132l.071.013.6.117h.017a50.978 50.978 0 00-13.03-15.064",
|
|
411
|
+
fill: "#c69a39"
|
|
412
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
413
|
+
"data-name": "Path 2450",
|
|
414
|
+
d: "M83.61 34.214c.364-.084.741-.155 1.124-.22l-.072-.331a39.885 39.885 0 00-1.709-5.595c-.394-1.017-1.146-2.2-2.18-2a1.922 1.922 0 00-.96.613c-.6.622-1.036 1.39-1.589 2.056-1.345 1.619-3.4 2.7-4.108 4.707a8.393 8.393 0 00-.348 2.389 1.918 1.918 0 00.141 1.031 1.8 1.8 0 00.494.505L76 38.619a15.953 15.953 0 017.614-4.4",
|
|
415
|
+
fill: "#c69a39"
|
|
416
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
417
|
+
"data-name": "Path 2451",
|
|
418
|
+
d: "M74.011 14.291a4.345 4.345 0 011.973 4.409 32.5 32.5 0 00-1.973-4.409",
|
|
419
|
+
fill: "#b28a51"
|
|
420
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
421
|
+
"data-name": "Path 2452",
|
|
422
|
+
d: "M87.368 26a4.346 4.346 0 011.972 4.409A32.62 32.62 0 0087.368 26",
|
|
423
|
+
fill: "#b28a51"
|
|
424
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
425
|
+
"data-name": "Path 2453",
|
|
426
|
+
d: "M71.531 21.3a3.585 3.585 0 012.228 3.507c-.811-1.239-1.373-2.3-2.228-3.507",
|
|
427
|
+
fill: "#b28a51"
|
|
428
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
429
|
+
"data-name": "Path 2454",
|
|
430
|
+
d: "M67.952 11.194a1.849 1.849 0 01-.31 3.288 3.668 3.668 0 00.31-3.288",
|
|
431
|
+
fill: "#b28a51"
|
|
432
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
433
|
+
"data-name": "Path 2455",
|
|
434
|
+
d: "M80.963 26.612a3.678 3.678 0 01.646 4.153c-.252-1.474-.352-2.69-.646-4.153",
|
|
435
|
+
fill: "#b28a51"
|
|
436
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
437
|
+
"data-name": "Path 2456",
|
|
438
|
+
d: "M61.19 27.184a6.465 6.465 0 014.335 3.008 40.88 40.88 0 01-4.335-3.008",
|
|
439
|
+
fill: "#b28a51"
|
|
440
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
441
|
+
"data-name": "Path 2457",
|
|
442
|
+
d: "M65.475 32.876a6.465 6.465 0 014.335 3.008 40.88 40.88 0 01-4.335-3.008",
|
|
443
|
+
fill: "#b28a51"
|
|
444
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
445
|
+
"data-name": "Path 2458",
|
|
446
|
+
d: "M95.426 26.68a4.393 4.393 0 01-1.1 4.727 33.715 33.715 0 001.1-4.727",
|
|
447
|
+
fill: "#b28a51"
|
|
448
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
449
|
+
"data-name": "Path 2459",
|
|
450
|
+
d: "M51.61 39.877s4.678-4.207 5.333-8.414-1.648-5.24-3.52-7.309-4.151-4.785-3.45-8.817.526-3.895.35-5.5A14.3 14.3 0 0154.878 0a27.361 27.361 0 001.664 7.786c1.406 3.257 3.072 6.149 3.335 7.551a9.829 9.829 0 00.964-6.137c-.614-3.418-1.207-5 .141-7.143 0 0 .122 3.55 1.349 4.777l.438-2.016s.052 4.294.9 5.872 2.866 7.5 1.99 10.939-2.542 3.708-2.542 3.708-1.139.588-.788 2.567a34.3 34.3 0 010 6.712c-.088 1.4-.472 3.623 2.875 8.3s-10.931.49-10.931.49z",
|
|
451
|
+
fill: "#e0c865"
|
|
452
|
+
}), /*#__PURE__*/React__namespace.createElement("g", {
|
|
453
|
+
"data-name": "Group 1892"
|
|
454
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
455
|
+
"data-name": "Group 1891",
|
|
456
|
+
opacity: 0.3
|
|
457
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
458
|
+
"data-name": "Group 1890",
|
|
459
|
+
clipPath: "url(#giraffe_svg__j)"
|
|
460
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
461
|
+
"data-name": "Path 2460",
|
|
462
|
+
d: "M83.61 34.214c6.914-1.592 17.438.28 20.457.881a50.71 50.71 0 00-38-25.375c-.6.367-1.308.838-2.094 1.406.064.014 20.393 4.525 29.108 16.437 0 0 2.036 3.8-9.306 2.842s-18.1 13.781-18.1 13.781l3.674 1.546c1.382-.544 2.236-.929 2.236-.929s3.882-8.714 12.024-10.589",
|
|
463
|
+
fill: "#1d1d1b"
|
|
464
|
+
})))), /*#__PURE__*/React__namespace.createElement("path", {
|
|
465
|
+
"data-name": "Path 2461",
|
|
466
|
+
d: "M65.206 42.916c-3.347-4.674-2.963-6.9-2.876-8.3a34.148 34.148 0 000-6.712c-.35-1.979.789-2.567.789-2.567a1.626 1.626 0 00.567-.264c-1.044-.365-2.9-.934-3.249-.514-.495.592-.823 6.442-.823 6.442a28.391 28.391 0 010 3.628 37.2 37.2 0 001.814 10.34c2.961.386 5.374.173 3.778-2.056",
|
|
467
|
+
fill: "#fffb8a"
|
|
468
|
+
}), /*#__PURE__*/React__namespace.createElement("g", {
|
|
469
|
+
"data-name": "Group 1895"
|
|
470
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
471
|
+
"data-name": "Group 1894",
|
|
472
|
+
opacity: 0.3
|
|
473
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
474
|
+
"data-name": "Group 1893",
|
|
475
|
+
clipPath: "url(#giraffe_svg__k)"
|
|
476
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
477
|
+
"data-name": "Path 2462",
|
|
478
|
+
d: "M57.576 28.308h-.787a6.632 6.632 0 01.154 3.155c-.655 4.207-5.333 8.414-5.333 8.414l.813 1.077A15.568 15.568 0 0056.543 36c2.593-4.336 1.033-7.691 1.033-7.691",
|
|
479
|
+
fill: "#1d1d1b"
|
|
480
|
+
})))), /*#__PURE__*/React__namespace.createElement("path", {
|
|
481
|
+
"data-name": "Path 2463",
|
|
482
|
+
d: "M62.769 4.82l-.438 2.016c-1.231-1.227-1.348-4.777-1.348-4.777-1.349 2.147-.756 3.725-.142 7.143a9.829 9.829 0 01-.964 6.135c-.263-1.4-1.928-4.294-3.334-7.551A27.323 27.323 0 0154.879 0a14.294 14.294 0 00-4.555 9.84c.175 1.6.35 1.466-.351 5.5s1.578 6.749 3.45 8.817c1.646 1.819 3.623 2.84 3.632 5.918.593.7 1.236 1.17 1.7-.193a3.266 3.266 0 00.988 2.588 11.822 11.822 0 001.58-4.57 12.744 12.744 0 011.162 1.561 12.39 12.39 0 00-.154-1.559c-.351-1.979.789-2.567.789-2.567s1.665-.274 2.541-3.708-1.139-9.361-1.989-10.939-.9-5.872-.9-5.872",
|
|
483
|
+
fill: "#cc6c2c"
|
|
484
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
485
|
+
"data-name": "Path 2464",
|
|
486
|
+
d: "M62.915 7.3s-.378 1.975.757 6.137c1.045 3.835.818 9.7.173 11.527a5.9 5.9 0 001.816-3.328c.877-3.435-1.139-9.362-1.989-10.939a10.453 10.453 0 01-.757-3.4",
|
|
487
|
+
fill: "#fffe8c"
|
|
488
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
489
|
+
"data-name": "Path 2465",
|
|
490
|
+
d: "M55.016 1.447A26.845 26.845 0 0154.879 0a14.3 14.3 0 00-4.555 9.84 10.143 10.143 0 01-.129 4.183 22.147 22.147 0 001.729 4.85 23.962 23.962 0 010-9.627 19.942 19.942 0 013.092-7.8",
|
|
491
|
+
fill: "#954113"
|
|
492
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
493
|
+
"data-name": "Path 2466",
|
|
494
|
+
d: "M52.646 20.815c-1.315-2.169-2.238-8.282-2.238-8.282-.073.632-.207 1.5-.434 2.805-.7 4.032 1.577 6.749 3.45 8.818a25.871 25.871 0 012.827 3.044c-.452-2.19-2.543-4.629-3.6-6.382",
|
|
495
|
+
fill: "#9b511e"
|
|
496
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
497
|
+
"data-name": "Path 2467",
|
|
498
|
+
d: "M55.21 8.194c2.038 5.521 1.751 5.061 2.65 6.442a39.443 39.443 0 013.726 8.852s-1.019-5.645-1.615-8.33a5.127 5.127 0 01-.094.179c-.263-1.4-1.928-4.3-3.334-7.551A27.333 27.333 0 0154.879 0s-1.707 2.674.331 8.2",
|
|
499
|
+
fill: "#fffe8c"
|
|
500
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
501
|
+
"data-name": "Path 2468",
|
|
502
|
+
d: "M59.747 32.467a11.79 11.79 0 001.085-2.4A57.726 57.726 0 0056.9 16.754c-2.146-4.747-3.329-6.391-3.263-7.968a12.777 12.777 0 00.577 9.465 69.376 69.376 0 014.252 12.232 2.139 2.139 0 00.3-.6 3.266 3.266 0 00.989 2.588",
|
|
503
|
+
fill: "#954113"
|
|
504
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
505
|
+
"data-name": "Path 2469",
|
|
506
|
+
d: "M54.826 12.27s1.633 5.723 2.487 7.594A96.6 96.6 0 0160.8 30.169a11.841 11.841 0 00.392-1.482c-.011-.063-1.32-7.479-2.236-8.823s-4.131-7.594-4.131-7.594",
|
|
507
|
+
fill: "#eaa842"
|
|
508
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
509
|
+
"data-name": "Path 2470",
|
|
510
|
+
d: "M63.361 17.923a17.827 17.827 0 01-.506 3.708c.348-2.207-1.269-8.2-1.269-8.2.958 5.363-.531 8.2-.531 8.2-.425 1.52.238 4.724.8 6.935.221.292.433.59.629.9a12.188 12.188 0 00-.154-1.559c-.35-1.979.789-2.567.789-2.567a2.686 2.686 0 001.555-1.315 50.337 50.337 0 00-1.314-6.1",
|
|
511
|
+
fill: "#954113"
|
|
512
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
513
|
+
"data-name": "Path 2471",
|
|
514
|
+
d: "M47.519 42.419s-9.991 2.98-11.656 12.8c0 0 0 4.995.438 9.9s-1.14 24.365-1.227 24.891 4.82 6.135 8.238 8.063 12.708 6.573 12.708 6.573 4.12-4.995 8.239-5.7 10.079 7.712 10.079 7.712a8.652 8.652 0 015.346 2.542c2.191 2.366 2.016 2.541 3.067 3.5s12.27 8.064 24.19 3.506l.964-3.681 2.1-.263-9.465-10.78 2.016-4.732-18.139-14.804S80.911 79.141 80.385 78s-1.753-2.892-1.928-8.238.175-13.936.175-13.936a4.445 4.445 0 00-.526-2.454c-.7-1.49-4.469-7.011-6.836-8.939s-12.971-5-23.751-2.016",
|
|
515
|
+
fill: "#fffb8a"
|
|
516
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
517
|
+
"data-name": "Path 2472",
|
|
518
|
+
d: "M79.677 76.511a18.385 18.385 0 01-1.22-6.748c-.063-1.926-.058-4.272-.025-6.486-5.767-2.893-10.245-1.583-10.245-1.583L64.018 63.8s-1.512-.92-.854 1.249-1.249 15.973-1.249 15.973l10.494-4.162c6.681.045 7.268-.352 7.268-.352",
|
|
519
|
+
fill: "#5f4f73"
|
|
520
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
521
|
+
"data-name": "Path 2473",
|
|
522
|
+
d: "M72.409 76.863a31.133 31.133 0 01-2.454-6.4c-.621-2.587-1.181-5.964-1.77-8.769L64.018 63.8s-1.511-.92-.854 1.249-1.249 15.973-1.249 15.973z",
|
|
523
|
+
fill: "#4f405c"
|
|
524
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
525
|
+
"data-name": "Path 2474",
|
|
526
|
+
d: "M88.887 103.047s10.78 10.648 11.218 10.648c.207 0 3.839-.2 7.613-.42l.187-.716 2.1-.263-9.466-10.78 2.016-4.733-9.132-7.456c-4.277-1.036-9.282-1.605-12.594.1a13.514 13.514 0 00-2.227 1.438z",
|
|
527
|
+
fill: "#a26d4d"
|
|
528
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
529
|
+
"data-name": "Path 2475",
|
|
530
|
+
d: "M79.684 109.23c2.191 2.366 2.016 2.542 3.068 3.506s12.269 8.063 24.189 3.5l.964-3.681 1.967-.245-.718-.818c-4.36.429-11.24-1.832-11.24-1.832l-6.135-9.553v-4.552a29.333 29.333 0 00-3.594-1.315c-1.4-.351-4.294-.7-4.294-.7s-.527-.7-3.153-4.061c-6.741 3.534-7.892 11.26-8.2 13.179a11.767 11.767 0 00-.133 1.607 35.554 35.554 0 011.93 2.424 8.658 8.658 0 015.346 2.542",
|
|
531
|
+
fill: "#915b39"
|
|
532
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
533
|
+
"data-name": "Path 2476",
|
|
534
|
+
d: "M107.872 112.488l.033-.127 2.1-.263-.038-.042c-2.026 0-5.036-.074-9.515-.312-13.234-.7-26.118-12.708-26.118-12.708s9.29 9.9 19.544 12.358a48.94 48.94 0 0013.99 1.094",
|
|
535
|
+
fill: "#553224"
|
|
536
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
537
|
+
"data-name": "Path 2477",
|
|
538
|
+
d: "M83.891 93.538s-.527-.7-3.152-4.06a13.459 13.459 0 00-2.469 1.664l13.509 8.969v-4.557a29.512 29.512 0 00-3.594-1.315c-1.4-.35-4.294-.7-4.294-.7",
|
|
539
|
+
fill: "#804e2e"
|
|
540
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
541
|
+
"data-name": "Path 2478",
|
|
542
|
+
d: "M100.543 101.515l2.016-4.733s-9.713-.785-10.78-1.23v4.558s5.609 1.583 8.764 1.4",
|
|
543
|
+
fill: "#925d39"
|
|
544
|
+
}), /*#__PURE__*/React__namespace.createElement("g", {
|
|
545
|
+
"data-name": "Group 1898"
|
|
546
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
547
|
+
"data-name": "Group 1897",
|
|
548
|
+
opacity: 0.3
|
|
549
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
550
|
+
"data-name": "Group 1896",
|
|
551
|
+
clipPath: "url(#giraffe_svg__l)"
|
|
552
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
553
|
+
"data-name": "Path 2479",
|
|
554
|
+
d: "M106.854 116.245c-.2.014-.386.026-.59.042-11.018.862-21.24-3.7-21.24-3.7a8.433 8.433 0 01-2.184-2.153c-1.4-1.753-3.156-4.12-5-4.62a8.99 8.99 0 01-3.505-1.866c-.525-.438-3.156-3.856-4.733-5.171s-4.733 0-4.733 0l-.072.14c4.081.047 9.538 7.748 9.538 7.748a8.652 8.652 0 015.346 2.542c2.191 2.366 2.016 2.541 3.067 3.5s12.215 8.026 24.1 3.537",
|
|
555
|
+
fill: "#1d1d1b"
|
|
556
|
+
})))), /*#__PURE__*/React__namespace.createElement("g", {
|
|
557
|
+
"data-name": "Group 1901"
|
|
558
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
559
|
+
"data-name": "Group 1900",
|
|
560
|
+
opacity: 0.5
|
|
561
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
562
|
+
"data-name": "Group 1899",
|
|
563
|
+
clipPath: "url(#giraffe_svg__m)"
|
|
564
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
565
|
+
"data-name": "Path 2480",
|
|
566
|
+
d: "M107.751 111.476l1.481-.183-8.492-9.672 2.016-4.732-18.142-14.812s-3.506-2.8-4.031-3.944-1.753-2.892-1.929-8.238.176-13.935.176-13.935a4.444 4.444 0 00-.526-2.454c-.7-1.49-4.47-7.012-6.836-8.94 0 0 6.047 8.414 6.222 9.465s-.526 7.362-.613 8.852S77.427 73.8 79 77.019a10.3 10.3 0 003.6 4.357l17.091 14.11-3.064.667 4.739.446-2.2 4.864z",
|
|
567
|
+
fill: "#fff"
|
|
568
|
+
})))), /*#__PURE__*/React__namespace.createElement("path", {
|
|
569
|
+
"data-name": "Path 2481",
|
|
570
|
+
d: "M45.35 64s2.958-2.695-.712-3.318-8.668-.86-8.669-.86c.029.711.065 1.474.111 2.263 1.117.452 8.241 2.264 8.241 2.264z",
|
|
571
|
+
fill: "#4f405c"
|
|
572
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
573
|
+
"data-name": "Path 2482",
|
|
574
|
+
d: "M36.134 74.9c2.09.45 12.042 3.691 12.042 3.691s1.972-1.841-.328-3.024S36.3 71.212 36.3 71.212a247.53 247.53 0 01-.166 3.688z",
|
|
575
|
+
fill: "#4f405c"
|
|
576
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
577
|
+
"data-name": "Path 2483",
|
|
578
|
+
d: "M50.872 46.582s-6.55 8.388-6.55 17.768 3.724 15.887 6.878 17.53 6.639 3.09 10.714-.394 2.17-19.586 1.118-23.532-1.117-3.944-1.643-4.667c0 0-8.434-9.872-10.517-6.7",
|
|
579
|
+
fill: "#2b295a"
|
|
580
|
+
}), /*#__PURE__*/React__namespace.createElement("g", {
|
|
581
|
+
"data-name": "Group 1904"
|
|
582
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
583
|
+
"data-name": "Group 1903",
|
|
584
|
+
opacity: 0.3
|
|
585
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
586
|
+
"data-name": "Group 1902",
|
|
587
|
+
clipPath: "url(#giraffe_svg__n)"
|
|
588
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
589
|
+
"data-name": "Path 2484",
|
|
590
|
+
d: "M80.838 89.423c.023-.036-.249-.335-.282-.378l-.325-.414-.707-.9-.892-1.136c-4.469-5.7-7.625-11.745-8.676-16.127s-1.928-11.043-3.068-13.321-8.063-11.394-11.043-13.41-8.736-1.174-8.744-1.172c3.175.317 3.771 4.021 3.771 4.021-1.552 5.628 3.072 13.079 3.072 13.079l7.642 18.36L78.27 91.142c.01.008.41-.335.45-.366q.238-.185.483-.358.505-.358 1.041-.668c.1-.055.191-.109.288-.161a1.792 1.792 0 01.272-.147.074.074 0 00.034-.019",
|
|
591
|
+
fill: "#1d1d1b"
|
|
592
|
+
})))), /*#__PURE__*/React__namespace.createElement("path", {
|
|
593
|
+
"data-name": "Path 2485",
|
|
594
|
+
d: "M52.909 59.86s-4.638-.078-5.521 7.954 5.192 10.78 5.192 10.78l8.48-3.024s2.169-16.63-8.151-15.71",
|
|
595
|
+
fill: "#bf7f43"
|
|
596
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
597
|
+
"data-name": "Path 2486",
|
|
598
|
+
d: "M52.909 59.86a2.131 2.131 0 00-.262.02l1.717.9a4.606 4.606 0 011.569.619 28.109 28.109 0 015.306 9.923c-.117-4.86-1.434-12.077-8.33-11.462",
|
|
599
|
+
fill: "#e9c96e"
|
|
600
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
601
|
+
"data-name": "Path 2487",
|
|
602
|
+
d: "M57.867 66.529a5.348 5.348 0 00-6.267-1.738c-3.981 1.517-3.373 9.273-1.566 11.325s7.838-9.587 7.838-9.587",
|
|
603
|
+
fill: "#493127"
|
|
604
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
605
|
+
"data-name": "Path 2488",
|
|
606
|
+
d: "M53.106 65.572s-3.681.926-3.681 6.711 3.352 8.282 6.179 8.282c2.637 0 5.146-1.03 5.584-5.544.032-.325.052-.667.062-1.029.138-5.39-4.463-9.938-8.144-8.42",
|
|
607
|
+
fill: "#fff"
|
|
608
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
609
|
+
"data-name": "Path 2489",
|
|
610
|
+
d: "M54.618 70.373s-1.006.239-1.052 1.779-.657 3.615 1.052 3.747 1.775-1.118 1.84-1.972.789-3.821-1.84-3.554",
|
|
611
|
+
fill: "#1d0605"
|
|
612
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
613
|
+
"data-name": "Path 2490",
|
|
614
|
+
d: "M55.126 72.949a.5.5 0 00.263.4.374.374 0 00.372-.095.813.813 0 00.2-.347 1.418 1.418 0 00-.174-1.325.217.217 0 00-.148-.1.226.226 0 00-.168.1 1.7 1.7 0 00-.343 1.355",
|
|
615
|
+
fill: "#fff"
|
|
616
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
617
|
+
"data-name": "Path 2491",
|
|
618
|
+
d: "M61.215 74.681c-.565 1.527-1.75 3.622-4.077 4.044-3.046.552-6.193-2.024-7.593-4.69.605 4.535 3.538 6.53 6.059 6.53 2.637 0 5.147-1.03 5.584-5.544.011-.11.019-.225.027-.34",
|
|
619
|
+
fill: "#eeeceb"
|
|
620
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
621
|
+
"data-name": "Path 2492",
|
|
622
|
+
d: "M36.134 76.358c-.027 0-.052 0-.079-.005-.369 6.562-.93 13.349-.981 13.656a.926.926 0 00.2.43 18.371 18.371 0 006.64-4.023c.789-1.052.639-4.733.639-4.733a13.027 13.027 0 00-6.415-5.325",
|
|
623
|
+
fill: "#a1722d"
|
|
624
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
625
|
+
"data-name": "Path 2493",
|
|
626
|
+
d: "M39.719 85.868a5.482 5.482 0 011.643-1.994 3.341 3.341 0 01-1.643 1.994",
|
|
627
|
+
fill: "#b28a51"
|
|
628
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
629
|
+
"data-name": "Path 2494",
|
|
630
|
+
d: "M38.426 85.627a10.742 10.742 0 011.994-2.761 5.559 5.559 0 01-1.994 2.761",
|
|
631
|
+
fill: "#b28a51"
|
|
632
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
633
|
+
"data-name": "Path 2495",
|
|
634
|
+
d: "M37.134 83.874A5.251 5.251 0 0139.71 81.3a11.329 11.329 0 01-2.576 2.577",
|
|
635
|
+
fill: "#b28a51"
|
|
636
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
637
|
+
"data-name": "Path 2496",
|
|
638
|
+
d: "M36.317 87.394a5.254 5.254 0 011.971-3.065 11.3 11.3 0 01-1.971 3.065",
|
|
639
|
+
fill: "#b28a51"
|
|
640
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
641
|
+
"data-name": "Path 2497",
|
|
642
|
+
d: "M36.652 81.047a2.558 2.558 0 011.95-1.753 16.6 16.6 0 01-1.95 1.753",
|
|
643
|
+
fill: "#b28a51"
|
|
644
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
645
|
+
"data-name": "Path 2498",
|
|
646
|
+
d: "M43.312 98.072c3.418 1.928 12.708 6.573 12.708 6.573s.2-.245.561-.633a44.519 44.519 0 00-1.481-5.823 10.794 10.794 0 00-3.374-4.236c-1.227-.7-5.084-1.052-6.661-.7s-4.631 2.7-4.631 2.7a18.654 18.654 0 002.879 2.119",
|
|
647
|
+
fill: "#a1722d"
|
|
648
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
649
|
+
"data-name": "Path 2499",
|
|
650
|
+
d: "M46.073 96.056a2.182 2.182 0 011.709-1.534c-.558.558-1.1 1.016-1.709 1.534",
|
|
651
|
+
fill: "#b28a51"
|
|
652
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
653
|
+
"data-name": "Path 2500",
|
|
654
|
+
d: "M52.418 96.676a2.183 2.183 0 01-.431 2.255c.1-.782.261-1.474.431-2.255",
|
|
655
|
+
fill: "#b28a51"
|
|
656
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
657
|
+
"data-name": "Path 2501",
|
|
658
|
+
d: "M48.127 97.212a3.758 3.758 0 01-2.054 2.088 6.343 6.343 0 012.054-2.087",
|
|
659
|
+
fill: "#b28a51"
|
|
660
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
661
|
+
"data-name": "Path 2502",
|
|
662
|
+
d: "M44.912 95.15a4.593 4.593 0 01-2.479 1.558 9.48 9.48 0 012.479-1.558",
|
|
663
|
+
fill: "#b28a51"
|
|
664
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
665
|
+
"data-name": "Path 2503",
|
|
666
|
+
d: "M50 101.229a3.754 3.754 0 01.425-2.9 6.335 6.335 0 01-.425 2.9",
|
|
667
|
+
fill: "#b28a51"
|
|
668
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
669
|
+
"data-name": "Path 2504",
|
|
670
|
+
d: "M53.189 102.838c-.355-1.228-.358-2.939.755-3.786-.722 1.152-.6 2.479-.755 3.786",
|
|
671
|
+
fill: "#b28a51"
|
|
672
|
+
}), /*#__PURE__*/React__namespace.createElement("g", {
|
|
673
|
+
"data-name": "Group 1907"
|
|
674
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
675
|
+
"data-name": "Group 1906",
|
|
676
|
+
opacity: 0.3
|
|
677
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
678
|
+
"data-name": "Group 1905",
|
|
679
|
+
clipPath: "url(#giraffe_svg__o)"
|
|
680
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
681
|
+
"data-name": "Path 2505",
|
|
682
|
+
d: "M35.074 90.009c-.088.526 4.82 6.135 8.238 8.063s12.709 6.573 12.709 6.573.188-.228.522-.591c-3.163-2.043-11.072-7.167-13.231-8.7-2.716-1.928-5.346-6.661-5.346-6.661s.351-8.413 0-16.263a147.033 147.033 0 00-2.1-17.216s0 4.995.438 9.9-1.139 24.365-1.227 24.891",
|
|
683
|
+
fill: "#1d1d1b"
|
|
684
|
+
})))), /*#__PURE__*/React__namespace.createElement("path", {
|
|
685
|
+
"data-name": "Path 2506",
|
|
686
|
+
d: "M45.153 48.466c.72-2.688.6-4.208.007-5.061-3.061 1.536-8.151 5.053-9.3 11.81v.385c.036.068.066.138.1.205a6.432 6.432 0 003.837 1.863s4.031-4.294 5.346-9.2",
|
|
687
|
+
fill: "#a1722d"
|
|
688
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
689
|
+
"data-name": "Path 2507",
|
|
690
|
+
d: "M59.137 86.328a4.9 4.9 0 001.013 1.883 9.265 9.265 0 004.45 3.007c1.019.314 2.3.375 2.977-.447a2.369 2.369 0 00.1-2.462 5.684 5.684 0 00-2.377-2.426 16.978 16.978 0 00-3.184-1.306c-1.663-.553-3.578-.711-2.981 1.751",
|
|
691
|
+
fill: "#a1722d"
|
|
692
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
693
|
+
"data-name": "Path 2508",
|
|
694
|
+
d: "M74.657 48.2a28.054 28.054 0 00-2.97-3.4h-.011a57.038 57.038 0 00-6.47-1.88 1.557 1.557 0 00-1.031 0c-.61.3-.571 1.18-.375 1.832a10.569 10.569 0 001.764 3.43 3.282 3.282 0 00.748.749 3.515 3.515 0 00.983.4 10.4 10.4 0 003.89.453 5.569 5.569 0 003.472-1.584",
|
|
695
|
+
fill: "#a1722d"
|
|
696
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
697
|
+
"data-name": "Path 2509",
|
|
698
|
+
d: "M65.251 44.363a17.058 17.058 0 012.382 3.155 5.63 5.63 0 01-2.382-3.155",
|
|
699
|
+
fill: "#b28a51"
|
|
700
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
701
|
+
"data-name": "Path 2510",
|
|
702
|
+
d: "M68.126 45.58c1.008.641 2.162 1.736 1.988 3.04a35.351 35.351 0 00-1.988-3.04",
|
|
703
|
+
fill: "#b28a51"
|
|
704
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
705
|
+
"data-name": "Path 2511",
|
|
706
|
+
d: "M69.983 45.317a11.4 11.4 0 012.334 2.646 6.487 6.487 0 01-2.334-2.646",
|
|
707
|
+
fill: "#b28a51"
|
|
708
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
709
|
+
"data-name": "Path 2512",
|
|
710
|
+
d: "M39.089 54.9a2.808 2.808 0 012.153-1.265 14.005 14.005 0 01-2.153 1.265",
|
|
711
|
+
fill: "#b28a51"
|
|
712
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
713
|
+
"data-name": "Path 2513",
|
|
714
|
+
d: "M39.336 52.991a5.079 5.079 0 012.9-2.837 33.52 33.52 0 01-2.9 2.837",
|
|
715
|
+
fill: "#b28a51"
|
|
716
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
717
|
+
"data-name": "Path 2514",
|
|
718
|
+
d: "M38.262 52.147a6.875 6.875 0 011.475-2.267l.607-.669a11.454 11.454 0 01-2.082 2.936",
|
|
719
|
+
fill: "#b28a51"
|
|
720
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
721
|
+
"data-name": "Path 2515",
|
|
722
|
+
d: "M61.915 85.333c-.381.9-.9 1.6-1.262 2.5a2.921 2.921 0 011.262-2.5",
|
|
723
|
+
fill: "#b28a51"
|
|
724
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
725
|
+
"data-name": "Path 2516",
|
|
726
|
+
d: "M63.339 87.423c-.127.966-.436 1.78-.546 2.748a2.92 2.92 0 01.546-2.748",
|
|
727
|
+
fill: "#b28a51"
|
|
728
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
729
|
+
"data-name": "Path 2517",
|
|
730
|
+
d: "M64.84 90.524a31.679 31.679 0 00.7-3.422 4.018 4.018 0 01-.7 3.422",
|
|
731
|
+
fill: "#b28a51"
|
|
732
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
733
|
+
"data-name": "Path 2518",
|
|
734
|
+
d: "M83.672 62.555a11.843 11.843 0 00-3.657-3.662 1.657 1.657 0 00.009 1.427 7.926 7.926 0 002.2 2.235c.65.367 1.928 1.155 2 4.436a4.907 4.907 0 00-.557-4.436",
|
|
735
|
+
fill: "#e9c96e"
|
|
736
|
+
}), /*#__PURE__*/React__namespace.createElement("g", {
|
|
737
|
+
"data-name": "Group 1910"
|
|
738
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
739
|
+
"data-name": "Group 1909",
|
|
740
|
+
opacity: 0.3
|
|
741
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
742
|
+
"data-name": "Group 1908",
|
|
743
|
+
clipPath: "url(#giraffe_svg__p)"
|
|
744
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
745
|
+
"data-name": "Path 2519",
|
|
746
|
+
d: "M87.524 61.488c-.561.109-1.14.077-1.708.143a3.488 3.488 0 00-.483.093c.017.447.029.878.033 1.279A29.255 29.255 0 0091.3 61.4v-1.738c-.684.4-1.375.79-2.079 1.156a6.392 6.392 0 01-1.693.671",
|
|
747
|
+
fill: "#1d1d1b"
|
|
748
|
+
})))))), _path || (_path = /*#__PURE__*/React__namespace.createElement("path", {
|
|
749
|
+
"data-name": "Rectangle 1662",
|
|
750
|
+
fill: "none",
|
|
751
|
+
d: "M0 0h120v120.004H0z"
|
|
752
|
+
})));
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
module.exports = SvgGiraffe;
|
|
756
|
+
//# sourceMappingURL=giraffe.svg.js.map
|