@dicebear/big-smile 4.10.0 → 5.0.0-alpha.10
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/README.md +2 -4
- package/dist/index.d.ts +18 -16
- package/dist/index.d.ts.map +1 -0
- package/dist/index.es.js +312 -337
- package/dist/index.es.js.map +1 -0
- package/dist/index.js +316 -344
- package/dist/index.js.map +1 -0
- package/package.json +14 -9
- package/dist/colors/hair.d.ts +0 -2
- package/dist/colors/index.d.ts +0 -2
- package/dist/colors/skin.d.ts +0 -2
- package/dist/components/accessories.d.ts +0 -2
- package/dist/components/eyes.d.ts +0 -2
- package/dist/components/face.d.ts +0 -2
- package/dist/components/hair.d.ts +0 -2
- package/dist/components/index.d.ts +0 -5
- package/dist/components/mouth.d.ts +0 -2
- package/dist/core.d.ts +0 -3
- package/dist/hooks/onPostCreate.d.ts +0 -11
- package/dist/hooks/onPreCreate.d.ts +0 -8
- package/dist/index.umd.js +0 -11
- package/dist/options.d.ts +0 -23
- package/dist/schema.d.ts +0 -2
- package/dist/static-types.d.ts +0 -16
- package/dist/utils/pickColor.d.ts +0 -3
- package/dist/utils/pickComponent.d.ts +0 -3
package/dist/index.es.js
CHANGED
|
@@ -1,371 +1,346 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"items": {
|
|
11
|
-
"type": "string",
|
|
12
|
-
"enum": ["base"]
|
|
13
|
-
},
|
|
14
|
-
"default": ["base"]
|
|
15
|
-
},
|
|
16
|
-
"mouth": {
|
|
17
|
-
"title": "Mouth",
|
|
18
|
-
"type": "array",
|
|
19
|
-
"items": {
|
|
20
|
-
"type": "string",
|
|
21
|
-
"enum": ["openedSmile", "unimpressed", "gapSmile", "openSad", "teethSmile", "awkwardSmile", "braces", "kawaii"]
|
|
22
|
-
},
|
|
23
|
-
"default": ["openedSmile", "unimpressed", "gapSmile", "openSad", "teethSmile", "awkwardSmile", "braces", "kawaii"]
|
|
24
|
-
},
|
|
25
|
-
"eyes": {
|
|
26
|
-
"title": "Eyes",
|
|
27
|
-
"type": "array",
|
|
28
|
-
"items": {
|
|
29
|
-
"type": "string",
|
|
30
|
-
"enum": ["cheery", "normal", "confused", "starstruck", "winking", "sleepy", "sad", "angry"]
|
|
31
|
-
},
|
|
32
|
-
"default": ["cheery", "normal", "confused", "starstruck", "winking", "sleepy", "sad", "angry"]
|
|
33
|
-
},
|
|
34
|
-
"hair": {
|
|
35
|
-
"title": "Hair",
|
|
36
|
-
"type": "array",
|
|
37
|
-
"items": {
|
|
38
|
-
"type": "string",
|
|
39
|
-
"enum": ["shortHair", "mohawk", "wavyBob", "bowlCutHair", "curlyBob", "straightHair", "braids", "shavedHead", "bunHair", "froBun", "bangs", "halfShavedHead", "curlyShortHair"]
|
|
40
|
-
},
|
|
41
|
-
"default": ["shortHair", "mohawk", "wavyBob", "bowlCutHair", "curlyBob", "straightHair", "braids", "shavedHead", "bunHair", "froBun", "bangs", "halfShavedHead", "curlyShortHair"]
|
|
42
|
-
},
|
|
43
|
-
"accessories": {
|
|
44
|
-
"title": "Accessories",
|
|
45
|
-
"type": "array",
|
|
46
|
-
"items": {
|
|
47
|
-
"type": "string",
|
|
48
|
-
"enum": ["catEars", "glasses", "sailormoonCrown", "clownNose", "sleepMask", "sunglasses", "faceMask", "mustache"]
|
|
49
|
-
},
|
|
50
|
-
"default": ["catEars", "glasses", "sailormoonCrown", "clownNose", "sleepMask", "sunglasses", "faceMask", "mustache"]
|
|
51
|
-
},
|
|
52
|
-
"accessoriesProbability": {
|
|
53
|
-
"title": "Accessories Probability",
|
|
54
|
-
"default": 50,
|
|
55
|
-
"type": "integer",
|
|
56
|
-
"minimum": 0,
|
|
57
|
-
"maximum": 100
|
|
58
|
-
},
|
|
59
|
-
"skinColor": {
|
|
60
|
-
"title": "Skin Color",
|
|
61
|
-
"type": "array",
|
|
62
|
-
"items": {
|
|
63
|
-
"anyOf": [{
|
|
64
|
-
"type": "string",
|
|
65
|
-
"enum": ["variant01", "variant02", "variant03", "variant04", "variant05", "variant06", "variant07", "variant08"]
|
|
66
|
-
}, {
|
|
67
|
-
"type": "string",
|
|
68
|
-
"pattern": "^#([a-fA-F0-9]{3}|[a-fA-F0-9]{4}|[a-fA-F0-9]{6}|[a-fA-F0-9]{8})$"
|
|
69
|
-
}]
|
|
70
|
-
},
|
|
71
|
-
"default": ["variant01", "variant02", "variant03", "variant04", "variant05", "variant06", "variant07", "variant08"]
|
|
72
|
-
},
|
|
73
|
-
"hairColor": {
|
|
74
|
-
"title": "Hair Color",
|
|
75
|
-
"type": "array",
|
|
76
|
-
"items": {
|
|
77
|
-
"anyOf": [{
|
|
78
|
-
"type": "string",
|
|
79
|
-
"enum": ["variant01", "variant02", "variant03", "variant04", "variant05", "variant06", "variant07", "variant08"]
|
|
80
|
-
}, {
|
|
81
|
-
"type": "string",
|
|
82
|
-
"pattern": "^#([a-fA-F0-9]{3}|[a-fA-F0-9]{4}|[a-fA-F0-9]{6}|[a-fA-F0-9]{8})$"
|
|
83
|
-
}]
|
|
84
|
-
},
|
|
85
|
-
"default": ["variant01", "variant02", "variant03", "variant04", "variant05", "variant06", "variant07", "variant08"]
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
"additionalProperties": false
|
|
89
|
-
};
|
|
1
|
+
function $parcel$interopDefault(a) {
|
|
2
|
+
return a && a.__esModule ? a.default : a;
|
|
3
|
+
}
|
|
4
|
+
function $parcel$export(e, n, v, s) {
|
|
5
|
+
Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
|
|
6
|
+
}
|
|
7
|
+
var $3b3fedbcfb63cefa$exports = {};
|
|
8
|
+
$3b3fedbcfb63cefa$exports = JSON.parse("{\"title\":\"Options\",\"$schema\":\"http://json-schema.org/draft-07/schema#\",\"properties\":{\"accessories\":{\"type\":\"array\",\"uniqueItems\":true,\"items\":{\"type\":\"string\",\"enum\":[\"catEars\",\"glasses\",\"sailormoonCrown\",\"clownNose\",\"sleepMask\",\"sunglasses\",\"faceMask\",\"mustache\"]},\"default\":[\"catEars\",\"glasses\",\"sailormoonCrown\",\"clownNose\",\"sleepMask\",\"sunglasses\",\"faceMask\",\"mustache\"]},\"accessoriesProbability\":{\"type\":\"integer\",\"minimum\":0,\"maximum\":100,\"default\":50},\"eyes\":{\"type\":\"array\",\"uniqueItems\":true,\"items\":{\"type\":\"string\",\"enum\":[\"cheery\",\"normal\",\"confused\",\"starstruck\",\"winking\",\"sleepy\",\"sad\",\"angry\"]},\"default\":[\"cheery\",\"normal\",\"confused\",\"starstruck\",\"winking\",\"sleepy\",\"sad\",\"angry\"]},\"face\":{\"type\":\"array\",\"uniqueItems\":true,\"items\":{\"type\":\"string\",\"enum\":[\"base\"]},\"default\":[\"base\"]},\"hair\":{\"type\":\"array\",\"uniqueItems\":true,\"items\":{\"type\":\"string\",\"enum\":[\"shortHair\",\"mohawk\",\"wavyBob\",\"bowlCutHair\",\"curlyBob\",\"straightHair\",\"braids\",\"shavedHead\",\"bunHair\",\"froBun\",\"bangs\",\"halfShavedHead\",\"curlyShortHair\"]},\"default\":[\"shortHair\",\"mohawk\",\"wavyBob\",\"bowlCutHair\",\"curlyBob\",\"straightHair\",\"braids\",\"shavedHead\",\"bunHair\",\"froBun\",\"bangs\",\"halfShavedHead\",\"curlyShortHair\"]},\"hairColor\":{\"type\":\"array\",\"uniqueItems\":true,\"items\":{\"anyOf\":[{\"type\":\"string\",\"pattern\":\"^#([a-fA-F0-9]{3}|[a-fA-F0-9]{4}|[a-fA-F0-9]{6}|[a-fA-F0-9]{8})$\"},{\"type\":\"string\",\"enum\":[\"variant01\",\"variant02\",\"variant03\",\"variant04\",\"variant05\",\"variant06\",\"variant07\",\"variant08\"]}]},\"default\":[\"variant01\",\"variant02\",\"variant03\",\"variant04\",\"variant05\",\"variant06\",\"variant07\",\"variant08\"]},\"mouth\":{\"type\":\"array\",\"uniqueItems\":true,\"items\":{\"type\":\"string\",\"enum\":[\"openedSmile\",\"unimpressed\",\"gapSmile\",\"openSad\",\"teethSmile\",\"awkwardSmile\",\"braces\",\"kawaii\"]},\"default\":[\"openedSmile\",\"unimpressed\",\"gapSmile\",\"openSad\",\"teethSmile\",\"awkwardSmile\",\"braces\",\"kawaii\"]},\"skinColor\":{\"type\":\"array\",\"uniqueItems\":true,\"items\":{\"anyOf\":[{\"type\":\"string\",\"pattern\":\"^#([a-fA-F0-9]{3}|[a-fA-F0-9]{4}|[a-fA-F0-9]{6}|[a-fA-F0-9]{8})$\"},{\"type\":\"string\",\"enum\":[\"variant01\",\"variant02\",\"variant03\",\"variant04\",\"variant05\",\"variant06\",\"variant07\",\"variant08\"]}]},\"default\":[\"variant01\",\"variant02\",\"variant03\",\"variant04\",\"variant05\",\"variant06\",\"variant07\",\"variant08\"]}},\"additionalProperties\":false}");
|
|
9
|
+
|
|
90
10
|
|
|
91
|
-
var
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
11
|
+
var $10f448f0912f3034$exports = {};
|
|
12
|
+
|
|
13
|
+
$parcel$export($10f448f0912f3034$exports, "face", function () { return $cd41a553500fb35d$export$cce012181fa841df; });
|
|
14
|
+
$parcel$export($10f448f0912f3034$exports, "mouth", function () { return $89368e934980dcf8$export$4ec1914b3efc3f9a; });
|
|
15
|
+
$parcel$export($10f448f0912f3034$exports, "eyes", function () { return $5f55a0c0252e8889$export$60b896fd2e3e4b2; });
|
|
16
|
+
$parcel$export($10f448f0912f3034$exports, "hair", function () { return $9504680a787a4a47$export$12c365d50e7cb3d6; });
|
|
17
|
+
$parcel$export($10f448f0912f3034$exports, "accessories", function () { return $d9f539bfb3373baa$export$3bb43880931639de; });
|
|
18
|
+
const $cd41a553500fb35d$export$cce012181fa841df = {
|
|
19
|
+
base: (components, colors)=>`<path d="M264 38.6s131.4 20.6 121.4 208.1c0 .7 15.2 10.9 16.4 12a77.1 77.1 0 0 1 23.4 36.3c13.9 51.3-35.7 104.2-75.8 118.2a155 155 0 0 1-46.7 8.3c-103.1 3-239.7-62.7-246.7-191a202.7 202.7 0 0 1 15.1-83.9c0 .1 57.4-142.5 192.9-108Z" fill="${colors.skin.value}"/><path d="M388.7 248.7a57 57 0 0 0-3.2 10.5 40 40 0 0 0 8.5 30.4 42.3 42.3 0 0 0 33 15.7c-3.2-31.7-29-50.7-38.3-56.6ZM203.5 332c24.4-5.2 39.6-31 33.9-57.5-5.7-26.5-30.2-43.7-54.6-38.5-24.4 5.3-39.5 31-33.8 57.6 5.7 26.5 30.1 43.7 54.5 38.5Z" fill="#DC2400" style="mix-blend-mode:multiply" opacity=".1"/><path opacity=".1" d="M323 257.9s20.9-19.9 37-1.2Z" fill="#000"/><path d="M128.7 356.9C59.3 391.7-3.7 304.4 16.5 255.3c12.9-31.4 50.4-33.8 72.1-5.2a185 185 0 0 1 29.1 59.1" fill="${colors.skin.value}"/><path opacity=".1" d="M71.5 279c9 9 16.1 22.5 25 30-1.7-12.5-4.3-26-10.4-37.3-6.2-11.6-17.5-21-29-20.3-14.2 1-25.9 17.6-27.4 32.6 1-9 19-15 25.9-14.2 10.8 20.4 15 60.6 15 60.6 9-22.7 5.4-40.7 1-51.5Z" fill="#000"/>`
|
|
95
20
|
};
|
|
96
21
|
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
return "\n<path d=\"M351.722 357.794c35.705 2.283 57.778 0 64.899 0 29.986-4.491 42.802 48.435 5.16 76.206-11.238 8.291-16.781 7-40.781 7-24.024 0-49.993 8.95-64.5 4.863-41.122-11.585-48.343-41.355-44.653-57.739 4.992-22.164 15.153-34.467 79.875-30.33Z\" fill=\"#fff\"/>\n<mask id=\"mouthAwkwardSmile-a\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"271\" y=\"357\" width=\"174\" height=\"90\">\n<path d=\"M351.722 357.794c35.705 2.283 57.778 0 64.899 0 29.986-4.491 42.802 48.435 5.16 76.206-11.238 8.291-16.781 7-40.781 7-24.024 0-49.993 8.95-64.5 4.863-41.122-11.585-48.343-41.355-44.653-57.739 4.992-22.164 15.153-34.467 79.875-30.33Z\" fill=\"#fff\"/>\n</mask>\n<g mask=\"url(#mouthAwkwardSmile-a)\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m285.823 450.002 17.452-107.372 5.922.962-17.451 107.372-5.923-.962Zm77.403 14.257 4.276-109.584 5.996.234-4.277 109.584-5.995-.234Zm66.811-29.791-13.628-86.344 5.927-.935 13.627 86.343-5.926.936Z\" fill=\"#D1D3D4\"/>\n</g>\n";
|
|
115
|
-
},
|
|
116
|
-
'braces': function braces(components, colors) {
|
|
117
|
-
return "\n<path d=\"M393.348 366.944c3.015 1.731 24.097-24.743 38.134-16.689 4.739 2.719 8.354 7.356 11.069 12.367 5.966 11.023 8.007 24.415 5.604 36.769-3.401 17.468-15.188 31.769-29.053 41.248-37.308 25.5-66.905 20.68-106.724 5.918-31.343-11.617-74.048-35.531-65.201-78.677 15.573-75.95 146.131-.958 146.171-.936Z\" fill=\"#873C41\"/>\n<path d=\"M285.336 362.088c10.139 6.294 22.484 6.943 33.556 4.433 2.118-.482 3.82 1.296 4.347 3.339 5.406 21.004 36.059 31.967 51.431 18.499 1.193-1.046 3.309-1.293 4.559-.108 8.296 7.871 21.589 10.006 31.351 4.682 13.784-7.52 13.717-28.647 9.962-43.36-12.149 3.711-24.903 18.686-27.195 17.366-.03-.019-80.177-46.04-122.373-29.438.895 10.2 5.579 19.135 14.362 24.587Z\" fill=\"#fff\"/>\n<path d=\"M400.293 443.788c-21.923-20.117-48.878-31.353-76.209-39.326-23.378-6.821-49.7-11.241-73.362-4.473 10.965 23.534 39.18 38.231 61.655 46.564 34.833 12.911 61.844 18.215 93.032 2.275-1.699-1.685-3.356-3.424-5.116-5.04Z\" fill=\"#EE7E8B\"/>\n<mask id=\"mouthBraces-a\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"245\" y=\"333\" width=\"205\" height=\"126\">\n<path d=\"M393.348 366.944c3.015 1.731 24.097-24.743 38.134-16.689 4.739 2.719 8.354 7.356 11.069 12.367 5.966 11.023 8.007 24.415 5.604 36.769-3.401 17.468-15.188 31.769-29.053 41.248-37.308 25.5-66.905 20.68-106.724 5.918-31.344-11.617-74.049-35.531-65.201-78.677 15.573-75.95 146.131-.958 146.171-.936Z\" fill=\"#873C41\"/>\n</mask>\n<g mask=\"url(#mouthBraces-a)\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M272.844 332.044a1.5 1.5 0 0 1 2.112-.2c2.284 1.891 6.653 4.45 11.565 7.084 4.421 2.371 9.169 4.742 13.005 6.658l1.145.572c15.445 7.723 39.245 15.91 51.669 20.184l2.149.74c14.464 4.987 32.248 10.41 51.467 10.418 2.765-.164 4.757-.406 6.887-1.006 2.156-.608 4.515-1.6 7.986-3.336a1.501 1.501 0 0 1 1.342 2.684c-3.529 1.764-6.087 2.855-8.514 3.539-2.442.689-4.69.947-7.569 1.116a1.293 1.293 0 0 1-.088.003c-19.765 0-37.964-5.573-52.489-10.582l-2.178-.75c-12.392-4.262-36.369-12.509-52.004-20.326l-1.146-.573c-3.831-1.914-8.617-4.305-13.079-6.697-4.88-2.616-9.511-5.307-12.06-7.416a1.5 1.5 0 0 1-.2-2.112Z\" fill=\"#C4C4C4\"/>\n<rect x=\"399.664\" y=\"372\" width=\"12\" height=\"12\" rx=\"2\" transform=\"rotate(3.17 399.664 372)\" fill=\"#A09E9E\"/>\n<rect x=\"349.106\" y=\"361\" width=\"12\" height=\"12\" rx=\"2\" transform=\"rotate(15 349.106 361)\" fill=\"#A09E9E\"/>\n<rect x=\"297.326\" y=\"340\" width=\"12\" height=\"12\" rx=\"2\" transform=\"rotate(26.352 297.326 340)\" fill=\"#A09E9E\"/>\n</g>\n";
|
|
118
|
-
},
|
|
119
|
-
'kawaii': function kawaii(components, colors) {
|
|
120
|
-
return "\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M386.855 358.003a3.998 3.998 0 0 1 2.92 1.116c4.177 4.022 11.453 9.224 19.483 11.71 7.919 2.451 16.1 2.167 23.139-3.866a4 4 0 1 1 5.206 6.074c-9.761 8.367-21.08 8.416-30.711 5.434-7.751-2.4-14.709-6.822-19.63-10.889-36.527 37.664-82.45 26.485-101.226 15.903a4 4 0 0 1 3.928-6.97c17.423 9.821 60.594 20.081 94.06-17.187a3.997 3.997 0 0 1 2.831-1.325Z\" fill=\"#592125\"/>\n";
|
|
121
|
-
}
|
|
22
|
+
|
|
23
|
+
const $89368e934980dcf8$export$4ec1914b3efc3f9a = {
|
|
24
|
+
openedSmile: (components, colors)=>`<path d="M393.3 367c3 1.7 24.1-24.8 38.2-16.7 4.7 2.7 8.3 7.3 11 12.3 6 11 8 24.4 5.7 36.8a67 67 0 0 1-29 41.2c-37.4 25.5-67 20.7-106.8 6-31.4-11.7-74-35.6-65.2-78.7 15.6-76 146.1-1 146.1-1Z" fill="#873C41"/><path d="M285.3 362c10.2 6.4 22.5 7 33.6 4.5 2.1-.5 3.8 1.3 4.3 3.4 5.4 21 36 32 51.5 18.5 1.2-1 3.3-1.3 4.5-.1 8.3 7.8 21.6 10 31.4 4.6 13.8-7.5 13.7-28.6 10-43.3-12.2 3.7-25 18.7-27.3 17.3 0 0-80.1-46-122.3-29.4a31 31 0 0 0 14.3 24.6Z" fill="#fff"/><path d="M400.3 443.8c-22-20.1-48.9-31.4-76.2-39.3-23.4-6.9-49.7-11.3-73.4-4.5 11 23.5 39.2 38.2 61.7 46.6 34.8 12.9 61.8 18.2 93 2.2-1.7-1.7-3.3-3.4-5.1-5Z" fill="#EE7E8B"/>`
|
|
25
|
+
,
|
|
26
|
+
unimpressed: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M317 384a4 4 0 0 1 4-4h92a4 4 0 0 1 0 8h-92a4 4 0 0 1-4-4Z" fill="#592125"/>`
|
|
27
|
+
,
|
|
28
|
+
gapSmile: (components, colors)=>`<path d="M393.3 367c3 1.7 24.1-24.8 38.2-16.7 4.7 2.7 8.3 7.3 11 12.3 6 11 8 24.4 5.7 36.8a67 67 0 0 1-29 41.2c-37.4 25.5-67 20.7-106.8 6-31.4-11.7-74-35.6-65.2-78.7 15.6-76 146.1-1 146.1-1Z" fill="#873C41"/><path d="M318.9 366.5a44.8 44.8 0 0 1-33.6-4.4 31 31 0 0 1-14.3-24.6c26.3-10.3 67.3 3.6 94.5 15.6l-13 38.9c-12.8-2.1-26-9.4-29.3-22.1-.5-2-2.2-3.9-4.3-3.4ZM420.5 349.6c3.8 14.7-5.7 34.9-19.5 42.4-14 8.7-31.3 7-37.5 1.8l11.2-36.5c11.3 5.4 18.6 9.6 18.6 9.6 2.3 1.4 15-13.6 27.2-17.3Z" fill="#fff"/><path d="M400.3 443.8c-22-20.1-48.9-31.4-76.2-39.3-23.4-6.9-49.7-11.3-73.4-4.5 11 23.5 39.2 38.2 61.7 46.6 34.8 12.9 61.8 18.2 93 2.2-1.7-1.7-3.3-3.4-5.1-5Z" fill="#EE7E8B"/>`
|
|
29
|
+
,
|
|
30
|
+
openSad: (components, colors)=>`<path d="M311.4 362.3C339 346 362.6 345 379.3 344c33.3-2 61.1 8.8 68.5 42.7 6.8 31.2-16.9 49.4-27.8 49-11-.3-13.3-12.2-39.3-12.8-26-.6-63.4 42.9-85.5 26.6-22.2-16.4-18.4-66.6 16.2-87Z" fill="#873C41"/><mask id="mouthOpenSad-a" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="281" y="343" width="169" height="110"><path d="M311.4 362.3c27.7-16.4 51.3-17.4 68-18.4 33.4-2 61.2 8.8 68.6 42.6 6.8 31.1-16.9 49.3-27.8 49-11-.3-13.3-12.3-39.4-12.9-26-.6-63.4 42.9-85.6 26.6-22.2-16.3-18.4-66.5 16.2-87Z" fill="#873C41"/></mask><g mask="url(#mouthOpenSad-a)"><path d="M430.6 428.3c-26.2-16.8-55.9-23.5-85.4-26.8-25.3-2.9-53.1-2.7-76.2 8.5 15.5 22.2 11.9 47.5 36.5 52 38 7 102-7.5 131.2-29.4-2-1.4-4-3-6.1-4.3Z" fill="#EE7E8B"/><path d="M299.1 377a46.8 46.8 0 0 0 34.3-8.5c2-1.2 4.2-.1 5.5 1.6 13.2 18.4 47.2 17.5 57-1.4.8-1.5 2.8-2.6 4.4-1.9a29 29 0 0 0 32.3-7.3c10.5-12.5 2.5-33-6.8-46-10.4 8.3-17 27.7-19.8 27.3 0 0-95.4-14.5-130.2 17.7a32.4 32.4 0 0 0 23.3 18.4Z" fill="#fff"/></g>`
|
|
31
|
+
,
|
|
32
|
+
teethSmile: (components, colors)=>`<path d="M385.3 380.4c9.4.2 18.3-2.5 26-10.5 4-4.2 8.2-6.5 14-3 13.9 8.7 17.1 30.2 13.4 44.6a63.3 63.3 0 0 1-30.7 36.8c-38.2 22.4-67.6 17.4-106.8 3-30.8-11.2-72.5-33.9-62-72.9 13.2-48.3 69.6-25 101.4-12 13.5 5.5 29.6 13.5 44.7 14Z" fill="#fff"/><mask id="mouthTeethSmile-a" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="237" y="349" width="204" height="115"><path d="M385.3 380.4c9.4.2 18.3-2.5 26-10.5 4-4.2 8.2-6.5 14-3 13.9 8.7 17.1 30.2 13.4 44.6a63.3 63.3 0 0 1-30.7 36.8c-38.2 22.4-67.6 17.4-106.8 3-30.8-11.2-72.5-33.9-62-72.9 13.2-48.3 69.6-25 101.4-12 13.5 5.5 29.6 13.5 44.7 14Z" fill="#fff"/></mask><g mask="url(#mouthTeethSmile-a)"><path fill-rule="evenodd" clip-rule="evenodd" d="m257.6 434 40-101.1 5.6 2.2-40 101.1-5.6-2.2Zm82.3 32.7 27.7-106.1 5.8 1.5-27.7 106.1-5.8-1.5Zm82.4-25.6L407 363.3l6-1.2 15.2 77.8-5.9 1.2Z" fill="#D1D3D4"/></g>`
|
|
33
|
+
,
|
|
34
|
+
awkwardSmile: (components, colors)=>`<path d="M351.7 357.8c35.7 2.3 57.8 0 65 0 30-4.5 42.7 48.4 5 76.2-11.2 8.3-16.7 7-40.7 7-24 0-50 9-64.5 4.9-41.1-11.6-48.3-41.4-44.7-57.8 5-22.1 15.2-34.4 80-30.3Z" fill="#fff"/><mask id="mouthAwkwardSmile-a" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="271" y="357" width="174" height="90"><path d="M351.7 357.8c35.7 2.3 57.8 0 65 0 30-4.5 42.7 48.4 5 76.2-11.2 8.3-16.7 7-40.7 7-24 0-50 9-64.5 4.9-41.1-11.6-48.3-41.4-44.7-57.8 5-22.1 15.2-34.4 80-30.3Z" fill="#fff"/></mask><g mask="url(#mouthAwkwardSmile-a)"><path fill-rule="evenodd" clip-rule="evenodd" d="m285.8 450 17.5-107.4 5.9 1L291.7 451l-5.9-1Zm77.4 14.3 4.3-109.6 6 .2-4.3 109.6-6-.2Zm66.8-29.8L416.4 348l6-1 13.6 86.4-6 1Z" fill="#D1D3D4"/></g>`
|
|
35
|
+
,
|
|
36
|
+
braces: (components, colors)=>`<path d="M393.3 367c3 1.7 24.1-24.8 38.2-16.7 4.7 2.7 8.3 7.3 11 12.3 6 11 8 24.4 5.7 36.8a67 67 0 0 1-29 41.2c-37.4 25.5-67 20.7-106.8 6-31.4-11.7-74-35.6-65.2-78.7 15.6-76 146.1-1 146.1-1Z" fill="#873C41"/><path d="M285.3 362c10.2 6.4 22.5 7 33.6 4.5 2.1-.5 3.8 1.3 4.3 3.4 5.4 21 36 32 51.5 18.5 1.2-1 3.3-1.3 4.5-.1 8.3 7.8 21.6 10 31.4 4.6 13.8-7.5 13.7-28.6 10-43.3-12.2 3.7-25 18.7-27.3 17.3 0 0-80.1-46-122.3-29.4a31 31 0 0 0 14.3 24.6Z" fill="#fff"/><path d="M400.3 443.8c-22-20.1-48.9-31.4-76.2-39.3-23.4-6.9-49.7-11.3-73.4-4.5 11 23.5 39.2 38.2 61.7 46.6 34.8 12.9 61.8 18.2 93 2.2-1.7-1.7-3.3-3.4-5.1-5Z" fill="#EE7E8B"/><mask id="mouthBraces-a" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="245" y="333" width="205" height="126"><path d="M393.3 367c3 1.7 24.1-24.8 38.2-16.7 4.7 2.7 8.3 7.3 11 12.3 6 11 8 24.4 5.7 36.8a67 67 0 0 1-29 41.2c-37.4 25.5-67 20.7-106.8 6-31.4-11.7-74-35.6-65.2-78.7 15.6-76 146.1-1 146.1-1Z" fill="#873C41"/></mask><g mask="url(#mouthBraces-a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M272.8 332c.6-.6 1.5-.7 2.2-.2 2.2 2 6.6 4.5 11.5 7.1 4.4 2.4 9.2 4.8 13 6.7l1.2.6c15.4 7.7 39.2 15.9 51.6 20.1l2.2.8c14.5 5 32.2 10.4 51.5 10.4a30.8 30.8 0 0 0 14.8-4.3 1.5 1.5 0 0 1 1.4 2.6 33.8 33.8 0 0 1-16.2 4.7c-19.8 0-38-5.6-52.5-10.6l-2.2-.7a486.5 486.5 0 0 1-53.1-21c-3.8-1.8-8.6-4.2-13-6.6a83.6 83.6 0 0 1-12.2-7.4c-.6-.6-.7-1.5-.2-2.2Z" fill="#C4C4C4"/><rect x="399.7" y="372" width="12" height="12" rx="2" transform="rotate(3.2 399.7 372)" fill="#A09E9E"/><rect x="349.1" y="361" width="12" height="12" rx="2" transform="rotate(15 349.1 361)" fill="#A09E9E"/><rect x="297.3" y="340" width="12" height="12" rx="2" transform="rotate(26.4 297.3 340)" fill="#A09E9E"/></g>`
|
|
37
|
+
,
|
|
38
|
+
kawaii: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M386.9 358c1 0 2 .4 2.9 1.1 4.2 4 11.4 9.2 19.5 11.7 7.9 2.5 16 2.2 23-3.8a4 4 0 1 1 5.3 6 31 31 0 0 1-30.7 5.5 59.7 59.7 0 0 1-19.6-11 84.3 84.3 0 0 1-101.3 16 4 4 0 0 1 4-7 76.3 76.3 0 0 0 94-17.2 4 4 0 0 1 2.9-1.3Z" fill="#592125"/>`
|
|
122
39
|
};
|
|
123
40
|
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
return "\n<g fill=\"#2A1200\">\n<path d=\"M340.876 289.122c-15.62 11.981-34.704 9.625-43.1 6.704-.196-.068-.345.186-.208.342 21.578 24.483 37.823 6.141 43.621-6.818.084-.19-.148-.355-.313-.228ZM395.969 296.092c7.702 8.578 17.238 6.776 21.748 4.477.18-.092.379.155.273.33-11.458 18.876-19.506 5.313-22.363-4.639-.06-.208.196-.33.342-.168Z\"/>\n</g>\n<g fill=\"#71472D\">\n<path d=\"M336.947 244.202c-12.423-6.152-27.941-5.58-40.398 1.435-4.017 2.262-6.611 7.668-4.552 12.251 1.901 4.239 6.913 6.9 11.213 4.474a38.391 38.391 0 0 1 3.96-1.957c.422-.178 1.506-.39 1.926-.714.197-.058.389-.116.588-.169a37.477 37.477 0 0 1 3.712-.802 38.237 38.237 0 0 1 2.144-.283c.226-.023.451-.041.679-.059.586.074 1.317-.03 1.866-.012a35.885 35.885 0 0 1 5.854.678c.171.035.339.072.51.111.64.2 1.283.385 1.917.609a36.411 36.411 0 0 1 3.948 1.682c4.014 1.989 9.677-.822 11.21-5.352 1.68-4.989-.277-9.761-4.577-11.892ZM423.529 248.526c-7.428-4.032-15.949-4.938-23.619-2.723-2.07.598-3.959 2.401-4.845 4.395-.874 1.964-1.051 4.777-.191 6.913.895 2.218 2.423 4.327 4.576 5.379 2.183 1.067 4.415 1.342 6.663.696.369-.107.746-.169 1.121-.257a22.487 22.487 0 0 1 3.523-.117c1.422.215 2.822.561 4.205 1.037.482.221.974.418 1.446.672 2.034 1.103 4.58 1.366 6.663.696 1.994-.642 4.04-2.356 4.843-4.399.833-2.115 1.112-4.629.191-6.913-.917-2.278-2.424-4.212-4.576-5.379Z\"/>\n</g>\n";
|
|
142
|
-
},
|
|
143
|
-
'sad': function sad(components, colors) {
|
|
144
|
-
return "\n<g fill=\"#2A1200\">\n<path d=\"M401.884 284.77c3.898 1.79 9.27 3.915 14.555 5.154 1.59 3.122 2.498 6.841 2.489 10.269-.021 7.961-3.658 16.513-12.951 15.536-7.8-.82-9.785-10.978-9.772-15.979.016-6.111 2.179-11.988 5.679-14.98ZM296.2 292.531a30.443 30.443 0 0 0-.596 6.017c-.033 12.455 6.185 18.988 15.53 21.465 12.984 1.968 19.243-7.675 19.273-19.552.018-6.902-2.871-13.713-7.379-18.203-5.602 4.286-14.434 8.704-26.828 10.273Z\"/>\n</g>\n<g fill=\"#71472D\">\n<path d=\"M324.846 237.734c-13.715 2.017-26.145 11.324-32.392 24.184-2.014 4.146-1.067 10.067 3.235 12.662 3.977 2.403 9.612 1.736 11.766-2.707a38.274 38.274 0 0 1 2.14-3.864c.245-.386 1.016-1.177 1.177-1.684.128-.159.254-.317.387-.473a37.43 37.43 0 0 1 2.595-2.773 38.507 38.507 0 0 1 1.601-1.454c.173-.147.347-.29.525-.435.523-.272 1.065-.774 1.527-1.073a35.646 35.646 0 0 1 5.197-2.775c.161-.069.32-.134.483-.2.64-.199 1.274-.414 1.923-.591a36.248 36.248 0 0 1 4.203-.865c4.433-.651 7.487-6.186 6.167-10.783-1.46-5.057-5.785-7.866-10.534-7.169ZM425.206 260.439c-3.136-7.848-9.111-13.991-16.426-17.189-1.975-.862-4.58-.682-6.536.285-1.927.953-3.861 3.003-4.564 5.196-.729 2.277-.902 4.876.082 7.061.997 2.216 2.538 3.853 4.681 4.793.351.153.681.347 1.026.519a22.652 22.652 0 0 1 2.784 2.161 23.752 23.752 0 0 1 2.572 3.485c.229.478.482.944.682 1.441.861 2.148 2.65 3.977 4.681 4.793 1.944.781 4.613.769 6.536-.288 1.992-1.095 3.813-2.85 4.565-5.196.75-2.338.827-4.788-.083-7.061Z\"/>\n</g>\n";
|
|
145
|
-
},
|
|
146
|
-
'angry': function angry(components, colors) {
|
|
147
|
-
return "\n<g fill=\"#2A1200\">\n<path d=\"M396.994 294.274c4.349-1.505 11.31-4.375 16.906-8.085 3.125 3.488 5.041 9.094 5.032 14.082-.016 7.961-3.618 16.509-12.837 15.527-7.737-.825-9.712-10.984-9.703-15.985.004-1.895.212-3.768.602-5.539ZM301.243 283.111c-2.795 3.74-4.628 9.037-4.64 15.437-.024 12.454 6.147 18.991 15.419 21.474 12.879 1.976 19.082-7.663 19.104-19.538a25.997 25.997 0 0 0-.79-6.365c-6.582.059-17.564-2.203-29.093-11.008Z\"/>\n</g>\n<g fill=\"#71472D\">\n<path d=\"M332.093 270.313c-13.643 2.463-28.392-2.393-38.414-12.589-3.232-3.287-4.223-9.2-.973-13.032 3.002-3.546 8.555-4.711 12.014-1.188a38.215 38.215 0 0 0 3.261 2.98c.356.287 1.338.792 1.652 1.22.173.11.342.22.518.326a37.66 37.66 0 0 0 3.344 1.8c.654.31 1.314.596 1.981.867.211.084.422.165.636.245.584.091 1.257.394 1.79.53a35.823 35.823 0 0 0 5.811.972c.175.015.346.025.521.035.67-.015 1.34-.014 2.011-.052a36.64 36.64 0 0 0 4.26-.521c4.408-.798 9.069 3.474 9.284 8.252.23 5.259-2.974 9.301-7.696 10.155ZM421.666 261.428c-5.887 6.064-13.75 9.471-21.731 9.645-2.154.047-4.495-1.111-5.936-2.75-1.419-1.614-2.428-4.246-2.244-6.542.193-2.383 1.022-4.852 2.763-6.499 1.765-1.669 3.813-2.597 6.152-2.651.384-.008.762-.062 1.146-.089a22.682 22.682 0 0 0 3.398-.939 23.89 23.89 0 0 0 3.704-2.245c.394-.355.805-.689 1.179-1.073 1.613-1.659 3.964-2.67 6.153-2.652 2.095.018 4.559 1.044 5.934 2.754 1.427 1.77 2.442 4.086 2.245 6.542-.196 2.447-1.057 4.742-2.763 6.499Z\"/>\n</g>\n";
|
|
148
|
-
}
|
|
41
|
+
|
|
42
|
+
const $5f55a0c0252e8889$export$60b896fd2e3e4b2 = {
|
|
43
|
+
cheery: (components, colors)=>`<path d="M300.3 309.2c8.9-.2 17.7 3 25.5 7.7a24 24 0 0 0 5.2-21.5c-2.4-12-11.8-20-20.9-18-9 2-14.4 13.5-11.9 25.5.5 2.3 1.2 4.3 2.1 6.3ZM416.1 310.6c1.3-2.9 2-6.4 2-10.2-.2-9.5-5.3-17.2-11.4-17.2-6.1 0-11 7.8-10.8 17.4.1 5.2 1.8 9.9 4.2 13 5-2 10.5-3 16-3Z" fill="#2A1200"/><path d="M333.5 238.7a43.9 43.9 0 0 0-38.2 13.2c-3.2 3.4-4 9.3-.7 13 3 3.6 8.6 4.6 12 1l3.2-3c.4-.3 1.3-.8 1.6-1.2l.5-.4a37.7 37.7 0 0 1 6-3c.5 0 1.2-.4 1.7-.5a35.6 35.6 0 0 1 6.3-1.2h2l4.3.5c4.4.7 9-3.6 9.2-8.4.1-5.3-3.2-9.3-8-10ZM425.4 254.4a31.4 31.4 0 0 0-20.2-12.6c-2.1-.4-4.6.4-6.3 1.8a9.5 9.5 0 0 0-3.1 6.2c-.1 2.4.3 5 1.8 6.8a9 9 0 0 0 5.7 3.5l1.2.3c1 .4 2.1.8 3.2 1.4 1.2.8 2.3 1.7 3.3 2.7l1 1.3a8.8 8.8 0 0 0 5.8 3.5c2 .2 4.6-.4 6.2-2 1.7-1.5 3-3.6 3.2-6 .1-2.5-.4-5-1.8-7Z" fill="#71472D"/>`
|
|
44
|
+
,
|
|
45
|
+
normal: (components, colors)=>`<path d="M331.2 300.5c0 11.9-6.2 21.5-19.1 19.5-9.3-2.5-15.5-9-15.5-21.5 0-13 7.7-21.5 15.5-21.5 10.6 0 19.1 11.6 19 23.5ZM419 300.3c0 8-3.6 16.5-12.8 15.5-7.8-.8-9.7-11-9.7-16 0-8.7 4.4-17 10.8-17 6.8 0 11.7 9.5 11.7 17.5Z" fill="#2A1200"/><path d="M337 244.2a43.9 43.9 0 0 0-40.5 1.4c-4 2.3-6.6 7.7-4.5 12.3 1.9 4.2 7 6.9 11.2 4.5 1.3-.8 2.6-1.4 4-2 .4-.2 1.5-.4 1.9-.7l.6-.2a37.5 37.5 0 0 1 6.5-1.1h1.9a34.2 34.2 0 0 1 6.3.8l2 .6c1.3.4 2.6 1 4 1.6 4 2 9.6-.8 11.1-5.3 1.7-5-.3-9.8-4.6-11.9ZM423.5 248.5c-7.4-4-16-5-23.6-2.7-2 .6-4 2.4-4.8 4.4-1 2-1 4.8-.2 7a10 10 0 0 0 4.6 5.3 9 9 0 0 0 6.6.7l1.1-.3h3.6c1.4.1 2.8.5 4.2 1l1.4.6c2 1.1 4.6 1.4 6.7.7 2-.6 4-2.3 4.8-4.4.8-2 1.1-4.6.2-6.9-1-2.3-2.4-4.2-4.6-5.4Z" fill="#71472D"/>`
|
|
46
|
+
,
|
|
47
|
+
confused: (components, colors)=>`<path d="M330.2 300.5c0 11.9-6.2 21.5-19.1 19.5-9.3-2.5-15.5-9-15.5-21.5 0-13 7.7-21.5 15.5-21.5 10.6 0 19.1 11.6 19 23.5ZM396.4 293c5.6.3 13.4-.3 18.7-3.9 1.8 3.3 3 7.4 3 11.2-.1 8-3.7 16.5-13 15.5-7.7-.8-9.6-11-9.6-16 0-2.4.3-4.7.9-6.8Z" fill="#2A1200"/><path d="M332 238.1a43.9 43.9 0 0 0-37.7 14.6c-3 3.4-3.8 9.4-.3 13 3.2 3.4 8.8 4.3 12 .6 1-1.1 2-2.2 3.1-3.1l1.6-1.3.5-.4a37.7 37.7 0 0 1 5.8-3.2l1.8-.6a34.5 34.5 0 0 1 5.8-1.3h.5l2-.1 4.3.3c4.4.6 8.8-4 8.8-8.7 0-5.3-3.4-9.2-8.2-9.8ZM419.5 276c-7.4 4.1-16 5-23.6 2.8-2-.6-4-2.4-4.9-4.4-.8-2-1-4.8-.2-7a10 10 0 0 1 4.6-5.3 9 9 0 0 1 6.7-.7l1 .3h3.6c1.4-.1 2.8-.5 4.2-1l1.5-.6c2-1.1 4.6-1.4 6.6-.7 2 .6 4 2.3 4.9 4.4.8 2 1 4.6.2 6.9-1 2.3-2.5 4.2-4.6 5.4Z" fill="#71472D"/>`
|
|
48
|
+
,
|
|
49
|
+
starstruck: (components, colors)=>`<path d="M343 294.4c0 14.8-9.4 26.8-28.7 24.3-14-3-21.3-8.8-21.3-24.3 0-16.2 7.8-27 21.4-29.2 20.9-3.3 28.6 14.4 28.5 29.2ZM419.2 290.9c0 11.8-4.9 24.4-17.2 23-10.3-1.3-13-16.3-13-23.7 0-13 6-25.1 14.5-25.2 9.2 0 15.7 14.1 15.7 25.9Z" fill="#2A1200"/><path d="M402.2 274c.2-1 1.6-1.1 1.9-.1l2.6 8.8c.2.5.6.8 1 .7l5.1-.8c.8 0 1.4.8 1 1.5l-4.2 7.1a1 1 0 0 0-.1.8l2.6 8.8c.2 1-1 1.8-1.7 1l-3.7-3.7a1 1 0 0 0-1.4.1l-5.7 7c-.6.7-1.8.3-1.7-.7l.7-10.3c0-.3 0-.5-.2-.7l-5.6-5.7c-.6-.5-.2-1.6.6-1.7l5.2-.8c.4 0 .7-.3.8-.8l2.8-10.5ZM318 272.7a1 1 0 0 1 1.9 0l4.7 11.5c.2.4.6.7 1 .6l9.7-1.2a1 1 0 0 1 .9 1.6l-7.2 8.2a1 1 0 0 0-.2 1l4.5 10.9a1 1 0 0 1-1.5 1.2l-8.4-5.7a1 1 0 0 0-1.2.1l-11.5 9.7a1 1 0 0 1-1.7-1l1.7-12.3a1 1 0 0 0-.4-1l-9-6a1 1 0 0 1 .4-1.8l9.8-1.3c.4 0 .7-.3.8-.6l5.7-14Z" fill="#fff"/><path d="M331.2 233.5c-13.3-4-28.5-.7-39.6 8.3-3.6 3-5.2 8.7-2.4 12.9 2.6 3.8 8 5.6 11.8 2.5 1.2-1 2.3-1.8 3.6-2.6l1.8-1 .5-.3a37.3 37.3 0 0 1 6.3-2.3l1.8-.3a33.9 33.9 0 0 1 6.4-.3c.7 0 1.3.2 2 .3 1.4.2 2.8.6 4.2 1 4.3 1.2 9.4-2.5 10.1-7.2.8-5.2-2-9.6-6.5-11ZM422.7 243.7c-6.5-5.4-14.6-8-22.6-7.4a8.1 8.1 0 0 0-5.6 3.3 9.5 9.5 0 0 0-1.6 6.8 10 10 0 0 0 3.4 6.2 9 9 0 0 0 6.4 2h1.1c1.2 0 2.3.3 3.5.6 1.3.4 2.6 1 4 1.8l1.2 1a8.8 8.8 0 0 0 6.4 2c2-.2 4.4-1.5 5.6-3.3 1.2-2 2-4.4 1.6-6.8-.5-2.4-1.5-4.6-3.4-6.2Z" fill="#71472D"/>`
|
|
50
|
+
,
|
|
51
|
+
winking: (components, colors)=>`<path d="M340.9 308.9a48 48 0 0 0-43.1-6.7c-.2 0-.4-.2-.2-.4 21.5-24.5 37.8-6.1 43.6 6.8 0 .2-.2.4-.3.3ZM419 300.3c0 8-3.6 16.5-12.8 15.5-7.8-.8-9.7-11-9.7-16 0-8.7 4.4-17 10.8-17 6.8 0 11.7 9.5 11.7 17.5Z" fill="#2A1200"/><path d="M333.5 238.7a43.9 43.9 0 0 0-38.2 13.2c-3.2 3.4-4 9.3-.7 13 3 3.6 8.6 4.6 12 1l3.2-3c.4-.3 1.3-.8 1.6-1.2l.5-.4a37.7 37.7 0 0 1 6-3c.5 0 1.2-.4 1.7-.5a35.6 35.6 0 0 1 6.3-1.2h2l4.3.5c4.4.7 9-3.6 9.2-8.4.1-5.3-3.2-9.3-8-10ZM425.4 254.4a31.4 31.4 0 0 0-20.2-12.6c-2.1-.4-4.6.4-6.3 1.8a9.5 9.5 0 0 0-3.1 6.2c-.1 2.4.3 5 1.8 6.8a9 9 0 0 0 5.7 3.5l1.2.3c1 .4 2.1.8 3.2 1.4 1.2.8 2.3 1.7 3.3 2.7l1 1.3a8.8 8.8 0 0 0 5.8 3.5c2 .2 4.6-.4 6.2-2 1.7-1.5 3-3.6 3.2-6 .1-2.5-.4-5-1.8-7Z" fill="#71472D"/>`
|
|
52
|
+
,
|
|
53
|
+
sleepy: (components, colors)=>`<path d="M340.9 289.1a48 48 0 0 1-43.1 6.7c-.2 0-.4.2-.2.4 21.5 24.5 37.8 6.1 43.6-6.8 0-.2-.2-.4-.3-.3ZM396 296a17.9 17.9 0 0 0 21.7 4.6c.2-.1.4.1.3.3-11.5 18.9-19.5 5.3-22.4-4.6 0-.2.2-.4.4-.2Z" fill="#2A1200"/><path d="M337 244.2a43.9 43.9 0 0 0-40.5 1.4c-4 2.3-6.6 7.7-4.5 12.3 1.9 4.2 7 6.9 11.2 4.5 1.3-.8 2.6-1.4 4-2 .4-.2 1.5-.4 1.9-.7l.6-.2a37.5 37.5 0 0 1 6.5-1.1h1.9a34.2 34.2 0 0 1 6.3.8l2 .6c1.3.4 2.6 1 4 1.6 4 2 9.6-.8 11.1-5.3 1.7-5-.3-9.8-4.6-11.9ZM423.5 248.5c-7.4-4-16-5-23.6-2.7-2 .6-4 2.4-4.8 4.4-1 2-1 4.8-.2 7a10 10 0 0 0 4.6 5.3 9 9 0 0 0 6.6.7l1.1-.3h3.6c1.4.1 2.8.5 4.2 1l1.4.6c2 1.1 4.6 1.4 6.7.7 2-.6 4-2.3 4.8-4.4.8-2 1.1-4.6.2-6.9-1-2.3-2.4-4.2-4.6-5.4Z" fill="#71472D"/>`
|
|
54
|
+
,
|
|
55
|
+
sad: (components, colors)=>`<path d="M401.9 284.8c3.9 1.8 9.3 3.9 14.5 5.1 1.6 3.1 2.5 6.9 2.5 10.3 0 8-3.6 16.5-13 15.5-7.7-.8-9.7-11-9.7-16 0-6 2.2-12 5.7-15ZM296.2 292.5c-.4 2-.6 4-.6 6 0 12.5 6.2 19 15.5 21.5 13 2 19.3-7.7 19.3-19.5 0-7-2.9-13.8-7.4-18.2a55.3 55.3 0 0 1-26.8 10.2Z" fill="#2A1200"/><path d="M324.8 237.7a43.9 43.9 0 0 0-32.3 24.2c-2 4.2-1.1 10 3.2 12.7 4 2.4 9.6 1.7 11.8-2.7.6-1.4 1.3-2.6 2-3.9.3-.4 1.1-1.2 1.3-1.7l.4-.4a37.4 37.4 0 0 1 4.7-4.7c.5-.3 1-.8 1.5-1a34.2 34.2 0 0 1 5.7-3 36.2 36.2 0 0 1 6.1-1.5c4.4-.7 7.5-6.2 6.2-10.8-1.5-5-5.8-7.9-10.6-7.2ZM425.2 260.4c-3.1-7.8-9.1-14-16.4-17.1-2-1-4.6-.7-6.6.2-1.9 1-3.8 3-4.5 5.2a10 10 0 0 0 0 7 9 9 0 0 0 4.7 4.9l1 .5c1 .6 2 1.4 2.9 2.2 1 1 1.8 2.2 2.5 3.4l.7 1.5c.9 2.1 2.7 4 4.7 4.8 2 .8 4.6.8 6.5-.3 2-1 3.8-2.9 4.6-5.2.7-2.3.8-4.8 0-7Z" fill="#71472D"/>`
|
|
56
|
+
,
|
|
57
|
+
angry: (components, colors)=>`<path d="M397 294.3a80.4 80.4 0 0 0 16.9-8.1c3.1 3.5 5 9 5 14 0 8-3.6 16.6-12.8 15.6-7.7-.8-9.7-11-9.7-16 0-1.9.2-3.8.6-5.5ZM301.2 283.1c-2.8 3.8-4.6 9-4.6 15.4 0 12.5 6.1 19 15.4 21.5 13 2 19.1-7.6 19.1-19.5a26 26 0 0 0-.8-6.4 49 49 0 0 1-29-11Z" fill="#2A1200"/><path d="M332 270.3a43.9 43.9 0 0 1-38.3-12.6c-3.3-3.3-4.2-9.2-1-13 3-3.6 8.6-4.7 12-1.2l3.3 3c.3.3 1.3.8 1.6 1.2l.6.3a37.7 37.7 0 0 0 6 3c.5 0 1.2.3 1.7.5a34.8 34.8 0 0 0 6.3 1h2c1.5-.2 2.9-.3 4.3-.6 4.4-.8 9 3.5 9.3 8.3.2 5.2-3 9.3-7.7 10.1ZM421.7 261.4c-6 6-13.8 9.5-21.8 9.7a8.1 8.1 0 0 1-6-2.8 9.5 9.5 0 0 1-2.1-6.5 10 10 0 0 1 2.7-6.5 9 9 0 0 1 6.2-2.7h1.1l3.4-1c1.3-.6 2.5-1.4 3.7-2.2l1.2-1.1c1.6-1.7 4-2.7 6.1-2.7 2.1 0 4.6 1 6 2.8 1.4 1.8 2.4 4 2.2 6.5-.2 2.5-1 4.8-2.7 6.5Z" fill="#71472D"/>`
|
|
149
58
|
};
|
|
150
59
|
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
return "\n<path d=\"M366.798 170.897c-7.948 7.153-16.754 17.58-26.503 29.123-16.324 19.33-35.29 41.787-57.295 57.237-28.246 19.831-60.5 30.384-86.539 35.362-9.592 11.139-13.383 22.797-16.372 31.99-3.214 9.884-5.501 16.918-13.076 17.391-8.889-20.605-25.302-54.216-71.013-39-38.504 12.817-40.38 56.31-28 78.5 6.984 12.363 35.289 40.086 81 34l29.5 25.5c-2.857 5.389-8.249 13.113-25.772 20.721-21.903 9.51-123.802.951-133.325-60.864-23.808-20.605-61.139-78.172-19.999-143.6 12.603-20.043 30.342-34.402 51.343-43.643-.256-8.192-.265-17.691.083-28.633 1.904-59.913 58.091-108.414 101.898-118.875 42.807-10.222 132.902-6.823 169.869 26.17C443.101 47.484 473.826 193.926 469.5 249.5c22.4 44 7 106.667-1 131.5-4-33.6-31.333-56-44-61.5 5.6-30.4-5-82-11-104-15.24-23.056-35.221-38.763-46.702-44.603Z\" fill=\"".concat(colors.hair.value, "\"/>\n");
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
return "\n<g fill=\"#220F01\">\n<path d=\"M144 337.5C245 304.5 318.5 212 351 167c14 33.6 51.833 58 69 66-8-38-29-76-71-104.5-33.6-22.8-84.167-24.833-104-22.5C19 127.5 27.009 382 49.342 487c27.948 20 98.974 58.6 159.5 53-7.6-19.2-2.009-61.167 1.158-78-12.4-4.8-47.833-34.333-59-43-16.5 7-23 7-43.5 3-74-34-42-87.5-42-87.5s10-20 37.5-20.5c22-.4 34.167 11.833 41 23.5ZM433.5 525c-6.8-9.6-2.833-53.167 0-68-28 23.5-44.5 35-102 36.5C350 504 396.3 525 433.5 525Z\"/>\n</g>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M257.693 115.97c-17.945 19.476-49.045 50.062-84.42 78.971-34.504 28.197-74.095 55.653-110.031 69.083-1.305 1.344-3.976 4.838-7.045 12.329-3.667 8.95-7.37 22.309-10.06 41.174C40.76 355.241 39.18 391.272 49.5 478c.816 6.855-4.5 10.846-12.5 9-6.5-1.5-10.684-7.145-11.5-14-10.48-88.072-9.893-118.458-4.112-159.002 2.89-20.264 7.013-35.745 11.675-47.123 4.472-10.915 10.073-19.63 16.977-24.258l1.276-.855 1.445-.521c32.336-11.656 70.079-37.371 104.692-65.658 29.958-24.482 56.778-50.229 74.577-68.814C233.724 105 246 101.5 260.748 105a12.48 12.48 0 0 1-3.055 10.97Zm-52.324.339C180.799 141.046 124.715 195.21 69.204 219c-2.433 1.043 12.5-1.749-2.204 1 3.568-14.601 12.814-31.94 18.88-38 31.314-17.997 54.703-40.319 77.988-61 8.635-3.818 29.678-11.262 44.769-10.5a12.454 12.454 0 0 1-3.268 5.809ZM91.264 293.765C204.266 233.517 284.476 146.531 307.5 110.5c-7.6-6.4-21.522-6.154-27.533-4.731-20.478 32.046-91.578 108.409-202.806 167.179l-.707.373-.653.46c-3.669 2.585-5.802 6.423-7.07 9.145-1.461 3.136-2.743 6.972-3.887 11.423-2.297 8.933-4.347 21.576-5.847 38.751-3.003 34.411-4.414 76.083.003 157.4.374 6.893 8.5 12.5 12.5 14h.146c1.908.006 11.4.033 12.354-5-2.042-37.598-2.447-67.268-2.522-93.5-.24-.408-.989-1.056-2.074-1.995-5.562-4.818-19.986-17.309-20.407-44.505 2.496-21.197 8.1-27.883 10.207-30.398.428-.51.712-.849.796-1.102 10-10 15.88-10.5 15.88-10.5 1.011-7.197 2.105-12.757 3.177-16.927.854-3.323 1.629-5.501 2.207-6.808ZM124.31 475.41c.141 7.312.186 13.329.225 18.582.081 10.869.138 18.468.965 27.508.629 6.875-7 7-11 7-5-1-12.371-4.625-13-11.5l-.064-.697-.133-1.448c-1.126-12.266-1.568-17.074-1.988-38.965-.38-19.828.004-40.814 2.266-56.89 3.377 2 12.987 5.5 24.419 5.5-1.66 13.524-2.049 32.208-1.69 50.91Zm-18.15-175.462C217.24 241.257 298.442 146.17 319 114c6.167.811 19.8 4.14 25 10.967C320.891 161.13 238.021 256.991 123.5 317.5c-.817.431-2.741-.263-5.093-1.113-1.968-.71-4.236-1.529-6.407-1.887-3.992-.659-11-.5-11-.5-3.225-6.104-.943-10.827 5.16-14.052Zm246.172-125.495C323.086 214.67 247 297.5 150 337c-5.468 2.889-5.774 2.29-8.096-2.253l-.003-.005c-.269-.527-.566-1.108-.901-1.742-1.178-2.229-2.822-3.808-4.137-5.07-2.285-2.194-3.577-3.435.297-5.482 110.774-58.529 181.066-140.222 201.807-172.679a12.456 12.456 0 0 1 7.415-5.374c5.498-3.439 12.801-2.101 16.698 3.213 6.076 8.286 17.04 21.693 29.819 34.463 4.98 4.977 10.082 9.7 15.146 13.929 4.465 10.12 13.393 31.973 13.393 38.429-16.176-7.164-32.399-17.399-45.938-30.929-5.67-5.667-11.122-13.043-15.988-19.629l-.001-.001c-2.575-3.484-4.986-6.747-7.179-9.417ZM161.64 474.25c-.245-13.608-.189-26.734.334-37.946.156-3.352.294-5.459.526-8.304l-11.5-9c-3.2 1.6-10.333 3.667-13.5 4.5-.235 2.533-.291 4.761-.351 7.155-.036 1.406-.073 2.869-.148 4.484-.557 11.949-.607 25.66-.357 39.561.486 26.941 1.367 38.232 2.723 55.597L139.5 532c.537 6.883 13 10 13 10s11-.5 11.5-4c-1.402-17.978-1.87-36.545-2.36-63.75Zm16.004.45c.168 9.294.215 17.061.257 23.968.083 13.761.146 24.111 1.099 36.332.537 6.883 7.617 10.037 14.5 9.5 6.883-.537 11.537-1.617 11-8.5-4.515-21.66-4.211-29.047-3.399-48.792.126-3.07.264-6.44.399-10.208-.052-2.861.236-6.628.515-10.297.244-3.197.482-6.32.485-8.703-3.5-2-18.09-12.5-25-18-.312 9.73-.102 21.242.098 32.188v.001l.046 2.511Zm246.895-10.2c5.233-4.289 9.621-8.646 9.461-7.5-.16 1.146-.349 2.443-.555 3.863-1.228 8.454-3.09 21.265-3.426 32.365-.41 13.554 1.996 24.958 3.981 30.772.854 2.5-7 2-13.5 2-7 0-13.488-2.5-14-4-3.615-10.586-1.876-16.098-1.469-29.528.153-5.079.441-10.152.804-14.972 0 0 10.165-6 18.704-13ZM399 481c0-.5-5 2.5-13.5 5-9 3-14 3.5-14 3.5 0 5.668-.188 3.08-.671 12.537-.149 2.906-.157 1.129 0 4.463v6c3.26 6.085 6.171 5.597 13.171 7.097 7 .597 13 1.403 12.5-2.597s-1.129-5.369-.704-13.687c.392-7.66 3.204-17.641 3.204-22.313Z\" fill=\"".concat(colors.hair.value, "\"/>\n<mask id=\"hairBraids-a\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"17\" y=\"103\" width=\"418\" height=\"442\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M257.693 115.97c-17.945 19.476-49.045 50.062-84.42 78.971-34.504 28.197-74.095 55.653-110.031 69.083-1.305 1.344-3.976 4.838-7.045 12.329-3.667 8.95-7.37 22.309-10.06 41.174C40.76 355.241 39.18 391.272 49.5 478c.816 6.855-4.5 10.846-12.5 9-6.5-1.5-10.684-7.145-11.5-14-10.48-88.072-9.893-118.458-4.112-159.002 2.89-20.264 7.013-35.745 11.675-47.123 4.472-10.915 10.073-19.63 16.977-24.258l1.276-.855 1.445-.521c32.336-11.656 70.079-37.371 104.692-65.658 29.958-24.482 56.778-50.229 74.577-68.814C233.724 105 246 101.5 260.748 105a12.48 12.48 0 0 1-3.055 10.97Zm-52.324.339C180.799 141.046 124.241 195.21 68.731 219c-2.433 1.043.68-.506-1.731-1 3.568-14.601 12.814-30.44 18.88-36.5 31.314-17.997 54.703-39.819 77.988-60.5 8.635-3.818 29.678-11.262 44.769-10.5a12.454 12.454 0 0 1-3.268 5.809ZM91.264 293.765C204.266 233.517 284.476 146.531 307.5 110.5c-7.6-6.4-21.522-6.154-27.533-4.731-20.478 32.046-91.578 108.409-202.806 167.179l-.707.373-.653.46c-3.669 2.585-5.802 6.423-7.07 9.145-1.461 3.136-2.743 6.972-3.887 11.423-2.297 8.933-4.347 21.576-5.847 38.751-3.003 34.411-4.414 76.083.003 157.4.374 6.893 8.5 12.5 12.5 14h.146c1.908.006 11.4.033 12.354-5-2.042-37.598-2.447-67.268-2.522-93.5-.24-.408-.989-1.056-2.074-1.995-5.562-4.818-19.986-17.309-20.407-44.505 2.496-21.197 8.1-27.883 10.207-30.398.428-.51.712-.849.796-1.102 10-10 15.88-10.5 15.88-10.5 1.011-7.197 2.105-12.757 3.177-16.927.854-3.323 1.629-5.501 2.207-6.808ZM124.31 475.41c.141 7.312.186 13.329.225 18.582.081 10.869.138 18.468.965 27.508.629 6.875-7 7-11 7-5-1-12.371-4.625-13-11.5l-.064-.697-.133-1.448c-1.126-12.266-1.568-17.074-1.988-38.965-.38-19.828.004-40.814 2.266-56.89 3.377 2 12.987 5.5 24.419 5.5-1.66 13.524-2.049 32.208-1.69 50.91Zm-18.15-175.462C217.24 241.257 298.442 146.17 319 114c6.167.811 19.8 4.14 25 10.967C320.891 161.13 238.021 256.991 123.5 317.5c-.817.431-2.741-.263-5.093-1.113-1.968-.71-4.236-1.529-6.407-1.887-3.992-.659-11-.5-11-.5-3.225-6.104-.943-10.827 5.16-14.052Zm246.172-125.495C323.086 214.67 247 297.5 150 337c-5.468 2.889-5.774 2.29-8.096-2.253l-.003-.005c-.269-.527-.566-1.108-.901-1.742-1.178-2.229-2.822-3.808-4.137-5.07-2.285-2.194-3.577-3.435.297-5.482 110.774-58.529 181.066-140.222 201.807-172.679a12.456 12.456 0 0 1 7.415-5.374c5.498-3.439 12.801-2.101 16.698 3.213 6.076 8.286 17.04 21.693 29.819 34.463 4.98 4.977 10.082 9.7 15.146 13.929 4.465 10.12 13.393 31.973 13.393 38.429-16.176-7.164-32.399-17.399-45.938-30.929-5.67-5.667-11.122-13.043-15.988-19.629l-.001-.001c-2.575-3.484-4.986-6.747-7.179-9.417ZM161.64 474.25c-.245-13.608-.189-26.734.334-37.946.156-3.352.294-5.459.526-8.304l-11.5-9c-3.2 1.6-10.333 3.667-13.5 4.5-.235 2.533-.291 4.761-.351 7.155-.036 1.406-.073 2.869-.148 4.484-.557 11.949-.607 25.66-.357 39.561.486 26.941 1.367 38.232 2.723 55.597L139.5 532c.537 6.883 13 10 13 10s11-.5 11.5-4c-1.402-17.978-1.87-36.545-2.36-63.75Zm16.004.45c.168 9.294.215 17.061.257 23.968.083 13.761.146 24.111 1.099 36.332.537 6.883 7.617 10.037 14.5 9.5 6.883-.537 11.537-1.617 11-8.5-4.515-21.66-4.211-29.047-3.399-48.792.126-3.07.264-6.44.399-10.208-.052-2.861.236-6.628.515-10.297.244-3.197.482-6.32.485-8.703-3.5-2-18.09-12.5-25-18-.312 9.73-.102 21.242.098 32.188v.001l.046 2.511Zm246.895-10.2c5.233-4.289 9.621-8.646 9.461-7.5-.16 1.146-.349 2.443-.555 3.863-1.228 8.454-3.09 21.265-3.426 32.365-.41 13.554 1.996 24.958 3.981 30.772.854 2.5-7 2-13.5 2-7 0-13.488-2.5-14-4-3.615-10.586-1.876-16.098-1.469-29.528.153-5.079.441-10.152.804-14.972 0 0 10.165-6 18.704-13ZM399 481c0-.5-5 2.5-13.5 5-9 3-14 3.5-14 3.5 0 5.668-.188 3.08-.671 12.537-.149 2.906-.157 1.129 0 4.463v6c3.26 6.085 6.171 5.597 13.171 7.097 7 .597 13 1.403 12.5-2.597s-1.129-5.369-.704-13.687c.392-7.66 3.204-17.641 3.204-22.313Z\" fill=\"#000\"/>\n</mask>\n<g fill=\"#000\" fill-opacity=\".5\" mask=\"url(#hairBraids-a)\">\n<path d=\"M169.824 108.922c.984-6.591 2.972-12.786 4.563-16.146l6.326 2.996c-1.258 2.656-3.069 8.176-3.966 14.184-.772 5.167-.778 10.116.375 13.801 1.189.01 2.39.032 3.576.055h.016c2.018.038 4 .076 5.926.056 3.92-.041 7.243-.322 9.717-1.134l2.183 6.651c-3.563 1.169-7.805 1.441-11.828 1.482-2.032.021-4.103-.018-6.089-.055l-.041-.001c-2.02-.038-3.949-.074-5.772-.052-9.789.119-23.189-1.573-28.481-2.396l1.075-6.916c4.326.672 14.037 1.908 22.474 2.236-1.016-4.77-.754-10.078-.054-14.761ZM222.732 112.947c.985-6.591 2.972-12.785 4.564-16.146l6.326 2.996c-1.258 2.657-3.069 8.176-3.966 14.185-.773 5.166-.778 10.115.375 13.8 1.188.01 2.389.033 3.576.055h.016c2.018.039 4 .076 5.926.056 3.92-.04 7.243-.322 9.717-1.134l2.182 6.651c-2.182.716-4.62 1.096-7.107 1.292 4.746.693 13.551 1.757 21.285 2.058-1.016-4.77-.754-10.079-.055-14.762.985-6.591 2.972-12.785 4.564-16.146l6.326 2.996c-1.258 2.657-3.069 8.176-3.967 14.185-.772 5.166-.777 10.115.376 13.8 1.188.01 2.388.033 3.573.055h.004l.015.001c2.018.038 4 .075 5.926.055 3.92-.04 7.243-.322 9.717-1.134l2.182 6.651c-.171.057-.344.111-.518.163 4.143.397 8.874.747 13.259.856-1.082-4.755-.894-10.067-.259-14.759.894-6.604 2.795-12.825 4.34-16.207l6.367 2.908c-1.221 2.673-2.956 8.217-3.77 14.238-.701 5.176-.637 10.125.566 13.794 1.184-.007 2.38-.001 3.562.005h.031c2.018.01 4 .02 5.925-.026 3.92-.095 7.239-.422 9.701-1.268l2.275 6.62c-3.546 1.218-7.784 1.549-11.807 1.646-2.031.049-4.102.038-6.089.028h-.041c-2.02-.01-3.949-.019-5.772.028-9.787.254-23.208-1.252-28.512-2.001l.647-4.576c-.58.017-1.158.028-1.732.034-2.032.021-4.103-.018-6.089-.056l-.042-.001c-2.019-.038-3.948-.074-5.772-.052-9.789.119-23.188-1.572-28.481-2.395l1.035-6.655a77.401 77.401 0 0 1-3.49.108c-2.032.021-4.103-.018-6.089-.056l-.041-.001c-2.02-.038-3.949-.074-5.772-.052-9.79.119-23.189-1.572-28.482-2.395l1.076-6.917c4.326.673 14.037 1.909 22.474 2.237-1.016-4.77-.754-10.079-.055-14.762ZM323.032 170.746c.427-6.651 1.887-12.991 3.19-16.473l6.556 2.454c-1.03 2.752-2.371 8.405-2.76 14.467-.335 5.214.076 10.145 1.534 13.721 1.185-.091 2.384-.169 3.567-.246h.003l.014-.001c2.014-.132 3.992-.261 5.909-.443 3.903-.37 7.191-.93 9.588-1.947l2.734 6.444c-3.451 1.464-7.656 2.092-11.661 2.472-2.023.191-4.09.326-6.072.456l-.041.003c-2.016.131-3.941.258-5.756.433-9.745.942-23.239.383-28.582.008l.49-6.983c4.368.306 14.148.722 22.583.339-1.414-4.667-1.599-9.979-1.296-14.704ZM286.537 210.974c.067-6.157 1.188-12.095 2.318-15.409l6.626 2.26c-.861 2.524-1.885 7.713-1.944 13.225-.051 4.709.612 9.052 2.181 12.127 1.208-.158 2.432-.304 3.643-.449h.005l.011-.002c2.003-.239 3.975-.475 5.884-.755 3.884-.571 7.167-1.282 9.536-2.368l2.917 6.363c-3.335 1.529-7.466 2.347-11.436 2.93-2.005.295-4.056.54-6.03.776l-.039.005c-2.004.239-3.924.469-5.732.738-9.62 1.429-26.591 2.111-31.994 2.085l.034-7c4.357.021 16.707-.45 25.976-1.402-1.559-4.166-2.001-8.905-1.956-13.124ZM244.22 238.639c-1.203 3.288-2.454 9.2-2.655 15.354-.136 4.18.195 8.881 1.63 13.053-4.062.181-9.014.173-13.852.084-4.848-.09-9.364-.255-12.625-.374h-.003l-.005-.001h-.002c-1.438-.052-2.632-.096-3.5-.12.165-.054.328-.109.49-.166l-2.318-6.605c-2.459.863-5.794 1.269-9.714 1.48-1.927.103-3.912.156-5.928.21l-.012.001h-.003c-1.22.033-2.453.066-3.67.111-1.279-3.206-1.54-7.592-1.055-12.276.566-5.483 2.063-10.556 3.153-12.99l-6.389-2.86c-1.431 3.196-3.094 9.005-3.727 15.13-.43 4.159-.43 8.873.708 13.135-4.065-.105-9.004-.46-13.823-.89-3.367-.299-6.57-.625-9.3-.912 3.145-.221 6.28-.651 8.983-1.557l-2.227-6.637c-2.47.829-5.81 1.189-9.733 1.345-1.928.077-3.913.102-5.93.129h-.022c-1.218.016-2.449.032-3.664.06-1.235-3.224-1.435-7.612-.886-12.29.643-5.474 2.21-10.526 3.333-12.944l-6.349-2.949c-1.475 3.176-3.218 8.962-3.936 15.077-.487 4.154-.553 8.867.526 13.144-4.062-.161-8.996-.585-13.809-1.081-4.828-.497-9.319-1.042-12.558-1.435-1.493-.181-2.72-.33-3.592-.427l-.775 6.957c.762.085 1.913.224 3.343.397l.004.001h.003l.004.001h.001c3.264.396 7.978.967 12.852 1.469 7.009.722 14.811 1.355 19.839 1.146 1.826-.075 3.758-.101 5.777-.127l.039-.001 1.807-.024-.583 5.986c.764.075 1.918.199 3.352.352 3.27.351 7.995.858 12.88 1.293 7.018.625 14.828 1.149 19.852.871 1.825-.101 3.757-.153 5.775-.207l.039-.001h.002c1.986-.054 4.051-.109 6.074-.217 3.776-.203 7.713-.6 11.052-1.662l-.187 6.957c.768.021 1.928.063 3.369.116H216.286c3.285.12 8.029.293 12.928.384 7.044.13 14.872.104 19.864-.526 1.813-.229 3.737-.417 5.746-.613l.039-.004h.002c1.977-.192 4.034-.393 6.044-.643 3.982-.496 8.129-1.224 11.497-2.679l-2.777-6.426c-2.391 1.034-5.69 1.673-9.585 2.158-1.915.239-3.891.432-5.899.627l-.012.001c-1.215.119-2.444.239-3.656.369-1.502-3.108-2.069-7.464-1.915-12.171.18-5.509 1.316-10.675 2.232-13.179l-6.574-2.404ZM191.632 292.993c.128-6.157 1.308-12.083 2.471-15.385l6.602 2.325c-.885 2.515-1.96 7.694-2.075 13.205-.097 4.708.523 9.058 2.061 12.148 1.211-.146 2.438-.28 3.652-.413l.012-.001c2.005-.22 3.978-.436 5.89-.697 3.89-.532 7.18-1.211 9.56-2.273l2.853 6.392c-3.35 1.495-7.489 2.273-11.465 2.816-2.007.274-4.061.499-6.037.716l-.039.004c-2.007.22-3.928.431-5.738.681-5.023.696-15.099.702-24.273.55-4.652-.077-9.172-.196-12.854-.302l-2.876-.084h-.007a448.184 448.184 0 0 0-4.921-.131l.104-6.999c.988.014 2.791.067 5.103.135l2.798.082c3.672.105 8.159.224 12.769.3 6.613.109 13.288.124 18.176-.09-1.469-4.141-1.852-8.816-1.766-12.979ZM131.239 441.217c1.861 2.921 4.67 6.55 7.992 9.831 2.925 2.889 6.527 5.789 10.483 7.577-2.863 2.958-6.749 6.433-10.731 9.844a706.901 706.901 0 0 1-5.959 5.032l-.013.011c-.737.618-1.447 1.213-2.122 1.781-2.305 1.94-4.32 3.663-5.394 4.762l5.01 4.89c.778-.798 2.484-2.27 4.891-4.296l2.095-1.758a722.942 722.942 0 0 0 6.046-5.106c5.735-4.912 12.136-10.666 15.19-14.935 1.063-1.486 2.232-3.026 3.453-4.634l.023-.031c1.202-1.583 2.452-3.229 3.633-4.875 2.341-3.26 4.623-6.798 5.842-10.259l-6.603-2.325c-.865 2.458-2.636 5.313-4.925 8.502-1.125 1.568-2.326 3.149-3.546 4.755l-.007.01c-.738.972-1.485 1.956-2.212 2.934-3.301-1.008-6.885-3.55-10.235-6.86-3.922-3.873-6.942-8.215-8.158-10.588l-1.642.842c.349-.664.665-1.329.94-1.993l-6.467-2.679c-.997 2.407-2.919 5.163-5.378 8.224-1.208 1.504-2.492 3.018-3.797 4.557l-.019.022c-.786.927-1.581 1.864-2.356 2.798-3.242-1.186-6.683-3.917-9.85-7.403-3.706-4.08-6.488-8.579-7.574-11.014l-6.392 2.852c1.426 3.197 4.644 8.312 8.785 12.869 2.8 3.082 6.294 6.213 10.208 8.209-3.402 3.517-8.258 8.096-13.135 12.565-3.4 3.115-6.739 6.114-9.477 8.562-.74.663-1.44 1.288-2.087 1.865l-.03.027-.008.007c-1.016.907-1.9 1.696-2.6 2.326 1.836-2.845 3.512-5.838 4.447-8.756l-6.665-2.137c-.796 2.481-2.485 5.386-4.683 8.638-1.08 1.599-2.236 3.214-3.41 4.854l-.006.01c-.71.993-1.43 1.997-2.128 2.996-3.329-.915-6.983-3.354-10.426-6.567-4.03-3.761-7.172-8.016-8.454-10.353l-6.137 3.368c1.685 3.069 5.313 7.901 9.815 12.102 3.066 2.862 6.837 5.715 10.936 7.377-6.307 8.103-16.936 19.721-20.041 23.088l5.145 4.746c3.513-3.809 18.187-19.82 23.67-27.964 1.02-1.516 2.145-3.088 3.32-4.73l.023-.032v-.001c1.157-1.616 2.359-3.296 3.493-4.974l.213-.318 4.465 4.857c.687-.631 1.968-1.775 3.666-3.292l.003-.002 1.204-1.075.941-.842c2.746-2.455 6.11-5.476 9.541-8.619 6.764-6.199 14.075-13.132 17.244-17.091 1.142-1.427 2.392-2.901 3.697-4.44l.026-.03a228.114 228.114 0 0 0 3.891-4.672 80.1 80.1 0 0 0 2.336-3.039Z\"/>\n<path d=\"M138.871 507.048c-3.302-3.261-6.097-6.866-7.958-9.778a73.08 73.08 0 0 1-3.01 3.986 228.114 228.114 0 0 1-3.891 4.672l-.026.03c-1.305 1.539-2.555 3.013-3.697 4.44-3.169 3.959-10.48 10.892-17.244 17.091a1075.784 1075.784 0 0 1-9.54 8.619l-2.123 1.896-.023.021-.003.002c-1.698 1.517-2.98 2.661-3.666 3.292l-4.737-5.153c.727-.669 2.072-1.87 3.798-3.411l.053-.047 2.034-1.817c2.739-2.449 6.078-5.448 9.477-8.563 4.877-4.469 9.733-9.048 13.135-12.565-3.914-1.996-7.408-5.127-10.208-8.209-4.14-4.557-7.36-9.672-8.785-12.869l6.392-2.852c1.087 2.435 3.868 6.935 7.574 11.014 3.167 3.486 6.608 6.217 9.85 7.403.775-.934 1.57-1.871 2.356-2.798l.019-.022c1.305-1.538 2.589-3.053 3.797-4.557 2.459-3.061 4.381-5.816 5.378-8.224l6.467 2.679c-.15.362-.312.725-.486 1.088l1.828-.937c1.216 2.373 4.236 6.715 8.158 10.588 3.35 3.31 6.933 5.852 10.235 6.86.727-.978 1.474-1.962 2.212-2.934l.007-.01c1.22-1.606 2.421-3.187 3.546-4.755 2.289-3.189 4.06-6.044 4.925-8.502l6.603 2.325c-1.219 3.461-3.501 6.999-5.842 10.259-1.181 1.646-2.431 3.292-3.633 4.875l-.024.031c-1.22 1.608-2.389 3.148-3.452 4.634-3.054 4.269-9.455 10.023-15.191 14.935-2.098 1.798-4.177 3.54-6.045 5.106-.735.615-1.436 1.204-2.095 1.758-2.408 2.026-4.113 3.498-4.892 4.296l-5.009-4.89c1.074-1.099 3.089-2.822 5.394-4.762l2.135-1.792c1.859-1.558 3.89-3.26 5.959-5.032 3.982-3.411 7.868-6.886 10.731-9.844-3.956-1.788-7.559-4.688-10.483-7.577Z\"/>\n<path d=\"M169.403 469.672c1.597 3.116 5.087 8.049 9.468 12.376 2.924 2.889 6.527 5.789 10.483 7.577-2.863 2.958-6.749 6.433-10.731 9.844-2.069 1.772-4.1 3.474-5.959 5.032l-2.135 1.792c-2.305 1.94-4.32 3.663-5.394 4.762l5.009 4.89c.779-.798 2.484-2.27 4.892-4.296.659-.554 1.36-1.143 2.095-1.758 1.868-1.566 3.947-3.308 6.045-5.106 5.736-4.913 12.137-10.666 15.191-14.935 1.063-1.486 2.232-3.026 3.452-4.634l.024-.031c1.202-1.583 2.452-3.229 3.633-4.875 2.341-3.26 4.623-6.798 5.842-10.259l-6.603-2.325c-.865 2.458-2.636 5.313-4.925 8.502-1.125 1.567-2.326 3.149-3.546 4.755l-.007.01c-.738.972-1.485 1.956-2.212 2.934-3.302-1.008-6.885-3.55-10.235-6.86-3.922-3.873-6.942-8.215-8.158-10.588l-6.229 3.193ZM374.21 184.481c-6.644-.523-13.127.021-16.759.815l1.497 6.839c2.871-.629 8.656-1.152 14.713-.675 5.208.409 10.031 1.517 13.362 3.47-.258 1.16-.506 2.336-.751 3.497l-.003.015c-.417 1.975-.826 3.914-1.278 5.786-.921 3.811-1.943 6.985-3.291 9.213l5.99 3.623c1.94-3.208 3.16-7.28 4.105-11.192.477-1.974.905-4 1.315-5.944l.008-.041c.417-1.977.816-3.864 1.248-5.636 2.317-9.512 3.683-22.948 4.072-28.29l-6.982-.508c-.318 4.367-1.297 14.107-2.875 22.402-4.419-2.063-9.651-3.002-14.371-3.374ZM420.6 198.203c1.13 3.313 2.251 9.251 2.318 15.409.045 4.218-.397 8.958-1.955 13.123 9.268.953 21.618 1.424 25.975 1.402l.034 7c-5.403.027-22.374-.655-31.994-2.085-1.808-.268-3.727-.498-5.732-.738l-.039-.005c-1.973-.236-4.025-.481-6.03-.775-3.97-.584-8.1-1.402-11.436-2.93l2.917-6.364c2.369 1.086 5.653 1.797 9.536 2.368 1.91.28 3.881.516 5.884.756l.011.001c1.213.145 2.439.292 3.648.449 1.569-3.075 2.232-7.418 2.181-12.127-.059-5.511-1.083-10.701-1.943-13.225l6.625-2.259ZM434.374 487.048c4.381-4.327 7.871-9.26 9.468-12.376l-6.229-3.193c-1.216 2.373-4.236 6.715-8.158 10.588-3.351 3.31-6.934 5.852-10.235 6.86a363.074 363.074 0 0 0-2.212-2.934l-.007-.01c-1.22-1.606-2.421-3.188-3.546-4.755-2.289-3.189-4.06-6.044-4.926-8.502l-6.602 2.325c1.219 3.461 3.501 6.999 5.841 10.259 1.182 1.646 2.432 3.292 3.634 4.875l.023.031c1.221 1.608 2.389 3.148 3.453 4.634 3.054 4.269 9.455 10.022 15.19 14.935a722.942 722.942 0 0 0 6.046 5.106l.871.73 1.223 1.028c2.408 2.026 4.114 3.498 4.892 4.296l5.009-4.89c-1.073-1.099-3.088-2.822-5.393-4.762l-2.135-1.792c-1.86-1.558-3.89-3.26-5.959-5.032-3.982-3.411-7.868-6.886-10.731-9.844 3.956-1.788 7.558-4.688 10.483-7.577ZM404.842 488.672c-1.597 3.116-5.087 8.049-9.468 12.376-2.925 2.889-6.527 5.789-10.483 7.577 2.863 2.958 6.749 6.433 10.731 9.844a706.901 706.901 0 0 0 5.959 5.032l.084.071 1.283 1.075.768.646c2.305 1.94 4.32 3.663 5.393 4.762l-5.009 4.89c-.778-.798-2.484-2.27-4.892-4.296-.658-.554-1.36-1.143-2.094-1.758a722.942 722.942 0 0 1-6.046-5.106c-5.735-4.913-12.136-10.666-15.19-14.935-1.064-1.486-2.232-3.026-3.453-4.634l-.023-.031c-1.202-1.583-2.452-3.229-3.634-4.875-2.34-3.26-4.622-6.798-5.841-10.259l6.602-2.325c.866 2.458 2.637 5.313 4.926 8.502 1.125 1.567 2.326 3.149 3.546 4.755l.007.01c.738.972 1.485 1.956 2.212 2.934 3.301-1.008 6.884-3.55 10.235-6.86 3.922-3.873 6.942-8.215 8.158-10.588l6.229 3.193ZM271.151 171.353c.893-6.604 2.794-12.825 4.339-16.207l6.367 2.908c-1.221 2.673-2.955 8.217-3.77 14.238-.7 5.177-.637 10.125.567 13.794 1.188-.007 2.389-.001 3.575.005h.017c2.019.011 4 .021 5.926-.026 3.919-.095 7.238-.422 9.701-1.268l2.274 6.62c-3.546 1.218-7.784 1.549-11.806 1.646-2.032.049-4.102.039-6.089.028h-.041c-2.02-.01-3.949-.019-5.773.028-9.786.254-23.208-1.251-28.511-2.001l.72-5.095c-.801.031-1.601.048-2.392.056-2.031.021-4.1-.018-6.086-.056H240.124c-2.019-.039-3.948-.075-5.772-.052-9.789.118-23.188-1.573-28.481-2.396l1.076-6.917c4.326.673 14.037 1.909 22.474 2.237-1.016-4.77-.754-10.078-.055-14.762.985-6.59 2.972-12.785 4.564-16.145l6.326 2.996c-1.258 2.656-3.069 8.176-3.967 14.184-.772 5.167-.777 10.115.376 13.801 1.189.009 2.39.032 3.576.054l.016.001c2.018.038 3.999.075 5.925.055 3.921-.04 7.244-.322 9.718-1.134l2.182 6.652c-.554.181-1.124.341-1.708.482 4.528.466 10.01.908 15.036 1.033-1.082-4.755-.894-10.066-.259-14.759ZM231.919 208.918c.499-6.138 2.035-11.982 3.395-15.208l6.45 2.72c-1.036 2.456-2.422 7.561-2.868 13.055-.382 4.694-.026 9.073 1.324 12.25a343.26 343.26 0 0 1 3.666-.191h.004l.011-.001c2.015-.098 3.998-.195 5.922-.34 3.915-.296 7.24-.775 9.679-1.692l2.463 6.553c-3.435 1.29-7.612 1.816-11.614 2.119-2.02.152-4.084.253-6.07.35l-.039.002c-2.016.098-3.947.193-5.769.333-9.697.75-26.674.238-32.062-.168l.526-6.98c4.345.327 16.697.725 26.01.427-1.262-4.265-1.37-9.024-1.028-13.229ZM131.484 284.064c.56-6.132 2.154-11.961 3.546-15.173l6.423 2.783c-1.06 2.447-2.497 7.538-2.998 13.027-.428 4.69-.115 9.072 1.202 12.262 1.214-.059 2.444-.107 3.66-.154h.007l.003-.001h.014c2.015-.078 3.999-.155 5.925-.282 3.917-.257 7.247-.703 9.695-1.595l2.397 6.577c-3.447 1.256-7.63 1.741-11.634 2.003-2.021.133-4.085.213-6.07.29h-.003l-.039.002c-2.017.078-3.948.153-5.772.276-5.059.341-15.11-.362-24.251-1.157-4.635-.404-9.136-.841-12.801-1.205l-2.695-.269-.168-.017a434.087 434.087 0 0 0-4.907-.477l.506-5.92c-10.1.395-30.835-1.599-35.87-2.099l.692-6.966c4.558.453 20.233 1.947 30.5 2.105-1.14-4.273-1.131-9.002-.692-13.173.645-6.124 2.319-11.93 3.755-15.123l6.384 2.872c-1.094 2.432-2.6 7.502-3.178 12.984-.493 4.684-.24 9.069 1.032 12.278 1.218-.043 2.45-.074 3.67-.104h.016c2.016-.051 4.001-.1 5.928-.2 3.92-.203 7.256-.603 9.717-1.461l2.305 6.609c-3.464 1.209-7.653 1.635-11.66 1.843-1.497.077-3.016.125-4.51.165 3.631.361 8.045.789 12.583 1.184 6.59.574 13.247 1.058 18.138 1.187-1.174-4.234-1.228-8.924-.85-13.071Z\"/>\n<path d=\"M193.224 185.992c-1.405 3.207-3.022 9.03-3.606 15.16-.399 4.199-.358 8.959.846 13.241-9.317.17-21.662-.399-26.002-.786l-.622 6.972c5.382.481 22.35 1.228 32.056.612 1.824-.116 3.756-.183 5.773-.254l.04-.001c1.986-.069 4.051-.141 6.073-.266 4.006-.247 8.19-.715 11.642-1.958l-2.371-6.586c-2.452.882-5.784 1.315-9.702 1.557-1.926.119-3.91.188-5.926.259h-.012c-1.22.042-2.454.086-3.672.141-1.305-3.196-1.601-7.579-1.154-12.268.523-5.487 1.979-10.572 3.049-13.014l-6.412-2.809ZM61.466 331.27c-4.502-4.201-8.13-9.033-9.815-12.102l6.136-3.368c1.283 2.337 4.425 6.592 8.455 10.353 3.443 3.213 7.097 5.652 10.426 6.567.699-.999 1.417-2.003 2.128-2.996l.007-.01c1.173-1.64 2.329-3.255 3.41-4.854 2.197-3.252 3.886-6.157 4.682-8.638l6.665 2.137c-1.12 3.494-3.301 7.096-5.548 10.421-1.135 1.678-2.337 3.359-3.493 4.975l-.023.032c-1.175 1.642-2.3 3.214-3.32 4.73-5.483 8.144-20.157 24.155-23.67 27.964l-5.145-4.746c3.105-3.367 13.734-14.985 20.041-23.088-4.099-1.662-7.87-4.515-10.936-7.377ZM47.651 405.168c1.685 3.069 5.313 7.901 9.815 12.102 3.066 2.862 6.838 5.715 10.937 7.377-6.308 8.103-16.937 19.721-20.042 23.088l5.145 4.746c3.513-3.809 18.187-19.82 23.67-27.964 1.02-1.516 2.145-3.088 3.32-4.73l.023-.032.002-.003c1.156-1.615 2.357-3.295 3.491-4.972 2.247-3.325 4.428-6.927 5.548-10.421l-6.665-2.137c-.796 2.481-2.485 5.386-4.683 8.638-1.08 1.599-2.236 3.214-3.41 4.854l-.006.01a350.32 350.32 0 0 0-2.128 2.996c-3.329-.915-6.983-3.354-10.426-6.567-4.03-3.761-7.171-8.016-8.454-10.353l-6.137 3.368ZM187.563 134.856c-1.592 3.36-3.579 9.555-4.564 16.146-.699 4.683-.961 9.991.055 14.761-8.437-.328-18.148-1.564-22.474-2.236l-1.075 6.917c5.292.822 18.691 2.514 28.481 2.395 1.823-.022 3.752.014 5.772.052l.041.001c1.986.037 4.057.076 6.089.055 4.023-.041 8.265-.313 11.827-1.482l-2.182-6.651c-2.474.812-5.797 1.093-9.717 1.134-1.926.02-3.908-.018-5.926-.056h-.016a326.85 326.85 0 0 0-3.576-.055c-1.153-3.685-1.147-8.634-.375-13.801.897-6.008 2.708-11.528 3.966-14.184l-6.326-2.996ZM146.082 170.381c-1.405 3.207-3.022 9.029-3.606 15.159-.4 4.2-.358 8.96.845 13.242-8.289.151-18.976-.283-24.288-.653l-2.031-5.64c-2.452.883-5.784 1.316-9.702 1.557-1.926.119-3.91.189-5.926.259h-.013c-1.22.043-2.453.086-3.67.141-1.306-3.196-1.602-7.579-1.155-12.267.523-5.487 1.979-10.573 3.049-13.015l-6.412-2.809c-1.405 3.207-3.022 9.03-3.606 15.16-.4 4.2-.357 8.96.846 13.242-9.316.169-21.662-.399-26.002-.787l-.622 6.972c5.382.481 22.35 1.228 32.056.612 1.824-.115 3.756-.183 5.773-.253l.04-.002c1.986-.069 4.051-.141 6.073-.266 3.184-.196 6.481-.532 9.433-1.286l-.467 5.221c5.382.48 22.351 1.227 32.057.612 1.824-.116 3.756-.184 5.773-.254l.039-.001c1.987-.07 4.052-.142 6.074-.266 4.006-.248 8.19-.716 11.642-1.959l-2.371-6.586c-2.452.883-5.784 1.316-9.702 1.558-1.926.119-3.91.188-5.926.258l-.012.001c-1.22.042-2.454.085-3.672.14-1.305-3.195-1.601-7.578-1.154-12.267.522-5.487 1.979-10.572 3.048-13.014l-6.411-2.809ZM98.513 220.975c1.278-5.718 3.553-11.022 5.328-13.892l5.953 3.683c-1.317 2.129-3.321 6.687-4.45 11.736-.96 4.296-1.152 8.353-.254 11.433 1.235.098 2.485.21 3.723.321l.011.001c2.008.18 3.988.358 5.916.481 3.92.252 7.296.253 9.849-.281l1.432 6.852c-3.545.741-7.73.671-11.729.415-2.019-.13-4.075-.314-6.055-.491l-.038-.004c-2.009-.18-3.937-.352-5.763-.466-8.315-.52-24.574-4.088-32.317-5.787l-.015-.003c-1.374-.301-2.478-.544-3.221-.699l1.435-6.852c.866.182 2.099.452 3.596.779 6.427 1.407 17.733 3.881 25.873 5.024-.62-4.105-.12-8.463.726-12.25ZM35.208 247.165c.39 3.48 1.905 9.329 4.468 14.928 1.746 3.813 4.148 7.887 7.305 10.985-8.917 5.091-23.169 11.788-27.322 13.719l2.951 6.347c4.698-2.184 24.363-11.404 32.533-16.847 1.521-1.013 3.16-2.039 4.87-3.11l.034-.021c1.685-1.054 3.437-2.15 5.125-3.271 3.343-2.219 6.731-4.719 9.097-7.523l-5.35-4.514c-1.68 1.991-4.348 4.034-7.618 6.205-1.608 1.067-3.291 2.12-5.001 3.191l-.01.006-.003.002-.006.003-.003.002c-1.031.646-2.073 1.298-3.096 1.953-2.73-2.113-5.18-5.759-7.141-10.041-2.295-5.012-3.58-10.143-3.877-12.792l-6.956.778Z\"/>\n<path d=\"M22.466 344.27c-4.502-4.201-8.13-9.033-9.815-12.102l6.137-3.368c1.282 2.337 4.424 6.592 8.454 10.353 3.443 3.213 7.097 5.652 10.426 6.567.698-.998 1.416-2.001 2.126-2.994l.002-.002.007-.01c1.173-1.64 2.329-3.255 3.41-4.854 2.197-3.252 3.886-6.157 4.682-8.638l6.665 2.137c-1.12 3.494-3.301 7.096-5.548 10.421-1.134 1.678-2.336 3.358-3.492 4.974l-.001.001-.023.032c-1.175 1.642-2.3 3.214-3.32 4.73-5.483 8.144-20.157 24.155-23.67 27.964l-5.146-4.746c3.106-3.367 13.735-14.985 20.043-23.088-4.1-1.662-7.87-4.515-10.937-7.377ZM6.651 396.168c1.685 3.069 5.313 7.901 9.815 12.102 3.066 2.862 6.837 5.715 10.936 7.377-6.307 8.103-16.936 19.721-20.042 23.088l5.146 4.746c3.513-3.809 18.187-19.82 23.67-27.964 1.02-1.516 2.145-3.088 3.32-4.73l.023-.032v-.001c1.157-1.616 2.359-3.296 3.493-4.974 2.247-3.325 4.428-6.927 5.548-10.421l-6.665-2.137c-.796 2.481-2.485 5.386-4.683 8.638-1.08 1.599-2.236 3.214-3.41 4.854l-.006.01c-.71.993-1.43 1.997-2.128 2.996-3.329-.915-6.983-3.354-10.426-6.567-4.03-3.761-7.172-8.016-8.455-10.353l-6.136 3.368ZM20.466 468.27c-4.502-4.201-8.13-9.033-9.815-12.102l6.137-3.368c1.282 2.337 4.424 6.592 8.454 10.353 3.443 3.213 7.097 5.652 10.426 6.567.699-.999 1.417-2.003 2.128-2.996l.007-.01c1.173-1.64 2.329-3.255 3.41-4.854 2.197-3.252 3.886-6.157 4.682-8.638l6.665 2.137c-1.12 3.494-3.301 7.096-5.548 10.421-1.134 1.678-2.336 3.358-3.492 4.974l-.001.001-.023.032c-1.175 1.642-2.3 3.214-3.32 4.73-5.483 8.144-20.157 24.155-23.67 27.964l-5.146-4.746c3.106-3.367 13.735-14.985 20.043-23.088-4.1-1.662-7.87-4.515-10.937-7.377ZM134.654 130.831c-1.591 3.36-3.579 9.555-4.563 16.145-.7 4.684-.962 9.992.054 14.762-8.437-.328-18.148-1.564-22.474-2.237l-1.075 6.917c5.292.823 18.692 2.514 28.481 2.395 1.823-.022 3.752.014 5.772.052l.041.001c1.986.038 4.057.077 6.089.056 4.023-.041 8.265-.314 11.828-1.483l-2.183-6.651c-2.474.812-5.797 1.094-9.717 1.134-1.926.02-3.908-.017-5.926-.055l-.016-.001c-1.186-.022-2.387-.045-3.576-.054-1.153-3.686-1.147-8.634-.375-13.801.897-6.009 2.708-11.528 3.966-14.184l-6.326-2.996Z\"/>\n</g>\n");
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
},
|
|
179
|
-
'froBun': function froBun(components, colors) {
|
|
180
|
-
return "\n<path d=\"M119.005.136A44.806 44.806 0 0 1 119-.5c0-20.71 16.789-37.5 37.5-37.5 14.27 0 26.679 7.971 33.016 19.703C196.394-26.664 206.824-32 218.5-32 239.211-32 256-15.21 256 5.5c0 1.944-.148 3.854-.433 5.718C274.365 13.245 289 29.163 289 48.5c0 19.154-14.361 34.954-32.903 37.221-3.195 44.264-37.269 79.101-78.834 79.101-25.584 0-48.331-13.199-62.785-33.672-2.571.557-5.24.85-7.978.85C85.79 132 69 115.211 69 94.5c0-11.972 5.61-22.634 14.346-29.5C74.61 58.134 69 47.472 69 35.5 69 14.79 85.79-2 106.5-2c4.385 0 8.594.753 12.505 2.136Z\" fill=\"".concat(colors.hair.value, "\"/>\n<path d=\"M119.005.136A44.806 44.806 0 0 1 119-.5c0-20.71 16.789-37.5 37.5-37.5 14.27 0 26.679 7.971 33.016 19.703C196.394-26.664 206.824-32 218.5-32 239.211-32 256-15.21 256 5.5c0 1.944-.148 3.854-.433 5.718C274.365 13.245 289 29.163 289 48.5c0 19.154-14.361 34.954-32.903 37.221-3.195 44.264-37.269 79.101-78.834 79.101-25.584 0-48.331-13.199-62.785-33.672-2.571.557-5.24.85-7.978.85C85.79 132 69 115.211 69 94.5c0-11.972 5.61-22.634 14.346-29.5C74.61 58.134 69 47.472 69 35.5 69 14.79 85.79-2 106.5-2c4.385 0 8.594.753 12.505 2.136Z\" fill=\"#fff\" fill-opacity=\".025\"/>\n<mask id=\"hairFroBun-a\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"69\" y=\"-38\" width=\"220\" height=\"203\">\n<path d=\"M119.005.136A44.806 44.806 0 0 1 119-.5c0-20.71 16.789-37.5 37.5-37.5 14.27 0 26.679 7.971 33.016 19.703C196.394-26.664 206.824-32 218.5-32 239.211-32 256-15.21 256 5.5c0 1.944-.148 3.854-.433 5.718C274.365 13.245 289 29.163 289 48.5c0 19.154-14.361 34.954-32.903 37.221-3.195 44.264-37.269 79.101-78.834 79.101-25.584 0-48.331-13.199-62.785-33.672-2.571.557-5.24.85-7.978.85C85.79 132 69 115.211 69 94.5c0-11.972 5.61-22.634 14.346-29.5C74.61 58.134 69 47.472 69 35.5 69 14.79 85.79-2 106.5-2c4.385 0 8.594.753 12.505 2.136Z\" fill=\"#451E00\"/>\n</mask>\n<g fill=\"#000\" fill-opacity=\".3\" mask=\"url(#hairFroBun-a)\">\n<path d=\"M125 55.5c-30.8-.4-47.5-27.5-52-41L62 23 43 59.5l4.5 74.5L98 152.5c50-14.167 155.7-45.9 178.5-59.5 22.8-13.6 15.167-57.333 10.5-70-4 30.5-49 70.5-71 70s-91-3-96.5-14c-4.4-8.8 1.833-19.333 5.5-23.5ZM141 14.5c-5.2-8.8-16.5-13-21.5-14-3.928-13.928 6.997-31.284 14.84-40.538A14.925 14.925 0 0 1 137-43a65.26 65.26 0 0 0-2.66 2.962c-8.952 13.07.357 41.163 6.66 54.538ZM192.5-5c-.4-10.4-2.833-15.667-4-17 10.8-22 37.5-15.167 49.5-9-18.8-.4-38.167 17.167-45.5 26Z\"/>\n<path d=\"M259.5.5c-4 13.6-13.333 26.667-17.5 31.5 20.4-1.6 28.167-15.667 29.5-22.5l-12-9Z\"/>\n</g>\n<g style=\"mix-blend-mode:multiply\" opacity=\".3\">\n<path d=\"M313.417 157.974c6.199-8.401 8.265-12.502 14.981-12.502 6.716 0 13.845 10.902 21.697 12.502 9.815 2 18.08-3.001 25.829-2 7.749 1 4.649 6.001 9.815 17.502 5.166 11.502 13.948 15.003 16.531 18.503 2.583 3.501 0 10.502 2.066 15.503 2.067 5.001 8.266 7.001 9.816 11.502 1.549 4.5-1.55 6.001 1.549 12.502 2.48 5.201 7.233 9.835 9.299 11.502l-12.398-46.008c-17.771-48.808-63.54-65.01-84.204-67.011C220.948 99.965 130.028 213.149 98 273.493L121 318c6.027-1.834 14.401-5.501 21.427-13.503 8.782-10.001 5.682-34.005 8.782-44.007 3.099-10.001 8.265-15.002 25.829-22.503 17.564-7.501 16.531-21.504 25.313-32.505 8.782-11.002 27.895-5.001 36.161-12.002 8.265-7.001 1.033-17.003 12.398-26.005 11.365-9.001 28.412-4.5 37.711 0 9.298 4.501 17.047 1.001 24.796-9.501Z\" fill=\"#351700\"/>\n</g>\n<path d=\"M161.397 86.416C65.68 118.659 21.5 226.5 54.459 335c3.666-11.667 15.6-34.3 42-31.5 4.333 1 15.9 6 27.5 18 37.438-195 193.57-192.452 239.041-174 44.358 18 55 88 57.543 97.868 1.597 1.621 4.124.303 4.064-2.069C420.43 83.021 265.985 51.188 161.397 86.417Z\" fill=\"").concat(colors.hair.value, "\"/>\n<g fill=\"#000\" fill-opacity=\".1\">\n<path d=\"M232 81c21.333 9 67.8 31.4 83 49-7.667-16.333-35-49-83-49ZM208 91c4.333 15.333 15.2 48.4 24 58 .667-10.167-3.2-36-24-58ZM174.5 95c-1.5 16.667-.7 55.5 14.5 77.5-14.333-9.667-37.3-38.7-14.5-77.5ZM137 233.5c-22.4-54.8-1.667-106.833 11.5-126C94.9 174.3 111.833 235.667 127 258c-8-12.8-8.333-38-7.5-49 .4 11.6 11.833 21.167 17.5 24.5Z\"/>\n<path d=\"M115.5 130c-17.167 28.833-44.6 98.9-17 148.5-17.833-20-39.4-77.7 17-148.5ZM290 87c20.167 6 65.1 25.3 83.5 54.5C365 125.333 336.4 91.8 290 87Z\"/>\n</g>\n");
|
|
181
|
-
},
|
|
182
|
-
'bangs': function bangs(components, colors) {
|
|
183
|
-
return "\n<g fill=\"".concat(colors.hair.value, "\">\n<path d=\"M274 104c88.8 2.4 132.5 65.5 141 98.5-55-8.667-191.546-34.459-210 15.5-41 111-15 243 0 297-55.2 4-123.667-15.667-151-26-5.5-6.5-1.724 18.963-10-104-14-208 102-250.5 140-267.5 30.4-13.6 73-16.167 90-13.5ZM438.5 486.5c-2.8-5.2-2.833-23.5-2.5-32-24.8 22.4-50.667 32.667-60.5 35 19.2 2.4 50-1 63-3Z\"/>\n</g>\n<mask id=\"hairBangs-a\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"42\" y=\"103\" width=\"397\" height=\"413\">\n<g fill=\"#2A1200\">\n<path d=\"M274 104c88.8 2.4 125 57 132 84-55-8.667-182.546-19.959-201 30-41 111-15 243 0 297-55.2 4-123.667-15.667-151-26-5.5-6.5-1.724 18.963-10-104-14-208 102-250.5 140-267.5 30.4-13.6 73-16.167 90-13.5ZM438.5 486.5c-2.8-5.2-2.833-23.5-2.5-32-24.8 22.4-50.667 32.667-60.5 35 19.2 2.4 50-1 63-3Z\"/>\n</g>\n</mask>\n<g mask=\"url(#hairBangs-a)\">\n<path d=\"M303.032 146.226s-12.295-3.681-26.51 7.568c0 0 6.905-12.81 14.277-16.653 0 0-28.055-1.676-49.946 25.328 0 0 10.575-26.439 27.121-34.816 0 0-21.064 3.521-30.336 12.022 0 0 1.479-15.613 12.403-22.267 0 0-18.339-9.491-34.69-5.635 0 0 31.365-9.761 41.865-8.816 19.673-3.587 46.362 6.308 46.362 6.308-6.509.351-13.619 5.975-13.619 5.975 17.198-.5 35.808 7.344 35.808 7.344-8.662-.194-15.011 5.908-15.011 5.908 19.252 4.015 32.866 16.595 32.866 16.595-4.703-3.758-19.84-2.166-19.84-2.166 9.55 4.988 18.765 17.022 18.765 17.022l-17.495-6.138s-8.695 28.627-12.393 33.973c0 0 4.644-24.516 1.118-31.972 0 0-17.924 20.014-33.671 33.73.002-.012 12.171-34.327 22.926-43.31Z\" fill=\"#000\" fill-opacity=\".15\"/>\n</g>\n<path d=\"M286.759 270.913c74.148 1.174 126.389-9.788 143.241-15.415-2.407-38.171-27.852-112.149-115-114.498-87.148-2.349-133.364 74.37-145 114.498 25.037 13.506 80.448 14.681 105.324 15.415l7.222-32.298 4.213 32.298Z\" fill=\"").concat(colors.hair.value, "\"/>\n<g fill=\"#000\" fill-opacity=\".15\">\n<path d=\"M193 172c-20 58.333-51.4 204-17 320-27.667-64.333-63-218.4 17-320ZM108 302c0-57.6 40-121.333 60-146-104.8 48-96.333 176.667-79 235-15.2-88.8 10.333-146.333 25-164-8 24.8-7.333 60.333-6 75ZM347 164c17.333 8.667 52.4 37.2 54 82 3.333-24.667-2.8-75.6-54-82ZM284 172c-6 10.333-17.8 36.8-17 60-5.333-11.333-9.4-39.2 17-60Z\"/>\n</g>\n");
|
|
184
|
-
},
|
|
185
|
-
'halfShavedHead': function halfShavedHead(components, colors) {
|
|
186
|
-
return "\n<g fill=\"".concat(colors.hair.value, "\">\n<path d=\"M347.001 169.003c8.002 36.798 49.666 54.33 69.499 58.497 6.8 23.6 8.5 71.833 8.5 92.5 18.8 10 30.167 24.833 33.5 31.5-3.083-12.334-1.472-18.564.974-28.02 1.124-4.344 2.424-9.37 3.526-15.98 3.11-18.66-16.283-42.848-26.607-55.724A329.113 329.113 0 0 1 433 247.5c-4.144-5.363-2.821-17.025-1.362-29.888 1.534-13.519 3.218-28.363-1.138-38.612-8.5-20-36-37.5-50.5-39-5.961-.617-9.387-4.36-14.307-9.735-7.049-7.702-17.164-18.754-42.193-28.765-32.741-13.097-64.71-3.443-78.046 3.69-97.32 8.35-133.041 107.978-134.882 113.112-.039.11-.063.177-.072.198-8.842 22.018-13.961 45.938-14.583 70.288-.118 4.595-.056 9.201.195 13.802 38.09 6.472 56.129 47.303 60.388 66.91 0 0 11.333.667 14-1.5 14-7.333 38.9-37.4 26.5-99-6-28-2-50.294 47-85 30.415-21.543 72.002-21.35 103.001-14.997ZM453 432c4-7.333 12.8-26.3 14-41.5 5.5 5.167 16.9 19.3 18.5 34.5 1.098 10.436-3.535 19.665-7.521 27.604-3.271 6.516-6.106 12.163-4.979 16.896 2 8.4 6.5 13.833 8.5 15.5-13.667 6.167-50.1 15-80.5-5 9.927-5 35.024-22.4 52-48Z\"/>\n</g>\n<path d=\"M347 169c-8.5-19.5-41-59.4-103-63 .457-.265.942-.536 1.454-.81-97.321 8.35-133.041 107.978-134.882 113.112-.039.11-.063.177-.072.198-8.842 22.018-13.961 45.938-14.583 70.288-.118 4.595-.056 9.201.195 13.802 38.09 6.472 56.129 47.303 60.388 66.91 0 0 11.333.667 14-1.5 14-7.333 38.9-37.4 26.5-99-6-28-2-50.294 47-85 30.415-21.542 72.002-21.35 103.001-14.997L347 169Z\" fill=\"#000\" fill-opacity=\".3\"/>\n<mask id=\"hairHalfShavedHead-a\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"244\" y=\"95\" width=\"242\" height=\"398\">\n<g fill=\"#238D81\">\n<path d=\"M244 106c62 3.6 94.5 43.5 103 63 8 36.8 49.667 54.333 69.5 58.5 6.8 23.6 8.5 71.833 8.5 92.5 18.8 10 30.167 24.833 33.5 31.5-4.5-18 1-23 4.5-44s-21.5-49-30-60 6-48.5-2.5-68.5-36-37.5-50.5-39-14-21.5-56.5-38.5c-34-13.6-67.167-2.667-79.5 4.5ZM467 390.5c-1.2 15.2-10 34.167-14 41.5-16.976 25.6-42.073 43-52 48 30.4 20 66.833 11.167 80.5 5-2-1.667-6.5-7.1-8.5-15.5-2.5-10.5 14.5-25.5 12.5-44.5-1.6-15.2-13-29.333-18.5-34.5Z\"/>\n</g>\n</mask>\n<g fill=\"#000\" fill-opacity=\".15\" mask=\"url(#hairHalfShavedHead-a)\">\n<path d=\"M377 194.5c-12.4-9.6-20.5-26-23-33 3.5 6.527 16 22.266 38 33 22 10.734 30.167 22.806 31.5 27.5-8-14.5-31-15.5-46.5-27.5ZM449 313.5c.8-8.8-2-20-3.5-24.5 0 4.833-.5 16.5-2.5 24.5s-7.167 14.333-9.5 16.5l15.5 10c-6.5-9-1-15.5 0-26.5ZM472 438.5c4.4-9.6 1.833-18.667 0-22 0 19.5-8 19-16 35s-2 32-7 29.5c-4-2-5.667-6.833-6-9-2 12.4.833 22.5 2.5 26 14 1.6 23.5-6.667 26.5-11-12.5-18.5-5.5-36.5 0-48.5Z\" style=\"mix-blend-mode:multiply\"/>\n</g>\n");
|
|
187
|
-
},
|
|
188
|
-
'curlyShortHair': function curlyShortHair(components, colors) {
|
|
189
|
-
return "\n<path d=\"M379.873 210.099c8.291 8.314 19.625 13.436 32.124 13.436 1.413 0 2.812-.065 4.192-.194 5.042 17.225 8.466 37.044 9.561 59.84 15.476-6.968 26.25-22.525 26.25-40.598 0-11.31-4.219-21.634-11.169-29.484 10.47-8.666 17.169-21.948 17.169-36.838 0-23.145-16.186-42.406-37.56-46.48a54.19 54.19 0 0 0 .344-6.106c0-28.749-22.678-52.054-50.654-52.054a49.33 49.33 0 0 0-21.297 4.81C341.294 57.41 323.121 44 301.901 44c-17.579 0-33.067 9.203-42.151 23.176-8.556-6.548-19.197-10.428-30.729-10.428-20.953 0-38.964 12.81-46.878 31.15a49.332 49.332 0 0 0-20.834-4.591c-27.672 0-50.161 22.802-50.646 51.119-26.577 1.885-47.562 24.413-47.562 51.927 0 13.228 4.85 25.303 12.84 34.486C66.122 230.324 60 243.731 60 258.592c0 28.749 22.91 52.055 51.171 52.055a50.74 50.74 0 0 0 5.611-.31c24.142 14.43 36.319 43.598 39.718 59.246 0 0 11.333.667 14-1.5 11.078-5.802 28.98-25.838 29.828-64.466 9.719-9.475 15.771-22.813 15.771-37.588a52.85 52.85 0 0 0-2.364-15.686c15.572-4.377 28.166-16.055 33.998-31.185a50.255 50.255 0 0 0 20.571 4.377c16.61 0 31.372-8.051 40.721-20.526 8.386 12.397 22.44 20.526 38.362 20.526 12.639 0 24.102-5.122 32.486-13.436Z\" fill=\"".concat(colors.hair.value, "\"/>\n");
|
|
190
|
-
}
|
|
60
|
+
|
|
61
|
+
const $9504680a787a4a47$export$12c365d50e7cb3d6 = {
|
|
62
|
+
shortHair: (components, colors)=>`<path d="M412.7 124.7c20.2-6 26.5 20 27.4 37.2v3.3c.3 20.2-6.6 42.2-24.4 51.4a77.6 77.6 0 0 1-8-8.4c-7.5-7-15.5-13.2-24-18.6a142.1 142.1 0 0 0-86.2-22.6c-36.2 2.3-75.8 11.9-103 36.8-26.9 24.5-43.4 66.5-42.5 106.7l.2 4.8c.6 9.9 1.7 28.9-2.2 31.7l-.6.3-2.4 1.8c-3 2.3-6.6-3.8-11.3-12.1-5.6-10-13-23-23.7-28.5A41 41 0 0 0 63 319c-2-9.4-3-16-3.5-21.6v.1a1419.8 1419.8 0 0 0-.3-8v.6-5.6a224.7 224.7 0 0 1 1.6-27.5c3.8-38 15.1-75.6 37.1-105.9 22.4-30.8 56.8-52.3 90.9-65a172.6 172.6 0 0 1 116-4c23.2 7.6 44.5 20.8 64.4 36.2 1.4-1.8 3-3.5 4.9-4.8 8.3-5.8 21-2.1 25.7 7.3 1.6 3.4 3 6.8 4 10.3 2.3-3 5.4-5.3 9-6.4Z" fill="${colors.hair.value}"/><path d="M304.7 82c23.3 7.7 44.6 21 64.5 36.3 1-1.4 2.3-2.7 3.7-3.8-2.8 3.1-5 7.1-6.7 11-8-6.8-18.2-10.6-28.3-7.5-9.7 3-16.6 11.2-20.7 20.9-23.2-14-48-19.3-76.4-13.9-34 6.4-63.8 30-83.6 60.4-26.6 41-27 118.3-6.9 161.2L147 349c-6.8 5-15.5-30.6-35-40.6A41 41 0 0 0 63 319c-3.9-17.5-3.9-25.5-3.9-34.5 0-10.9.6-16.4 1.6-27v-.5C64.7 219 76 181.4 98 151c22.4-30.8 56.8-52.3 90.9-65a172.6 172.6 0 0 1 116-4Z" fill="#000" fill-opacity=".1"/>`
|
|
63
|
+
,
|
|
64
|
+
mohawk: (components, colors)=>`<path d="M440 102.8c-74-50.6-244.4-113.6-334 40l28.2 32c-17 22.4-25.2 41.9-25.7 43.2-8.8 22-12 46.3-12.6 70.6-.1 4.6 0 9.2.2 13.8 38.1 6.5 56.1 47.3 60.4 67 0 0 11.3.6 14-1.6 14-7.3 38.9-37.4 26.5-99-6-28-2-50.3 47-85 20.6-14.5 46.3-19.2 70.3-18.7a1221.6 1221.6 0 0 0 10 .5c29.2 2.3 54.4 11.5 62.7 18.2 12.8 10.4 19 14.4 20.4 15-5.6-12.6-12-23.5-19-32.8 7.8-19 21.9-44.5 40.7-57.4 3.5-2.4 7.1-4.4 10.9-5.8Z" fill="${colors.hair.value}"/><path d="M106 142.8c89.6-153.6 260-90.6 334-40-20-13.7-115.5-40.5-159-18.5l.4.7c-83-18-151.1 30.5-175.4 57.8Z" fill="#fff" fill-opacity=".2"/><path d="M440 102.8c-30.4 11.2-51 58-57 78-28.5-14-47-15-77-16 4-32.8-17.7-67.8-25-80.5 43.5-22 139 4.8 159 18.5Z" fill="#000" fill-opacity=".1"/><path d="M306.2 163.2c-.8-12-40.7-41.1-81.2-36.4-54.1 6.4-86.5 45-89 50l-1.8-2c-17 22.4-25.2 41.9-25.7 43.2-8.8 22-12 46.3-12.6 70.6-.1 4.6 0 9.2.2 13.8 38.1 6.5 56.1 47.3 60.4 67 0 0 11.3.6 14-1.6 14-7.3 38.9-37.4 26.5-99-6-28-2-50.3 47-85 20.6-14.5 46.3-19.2 70.3-18.7l-8.3-.3.2-1.6ZM324.3 165.6c29.2 2.3 54.4 11.5 62.7 18.2 12.8 10.4 19 14.4 20.4 15-5.6-12.6-12-23.5-19-32.8-2.4 5.6-4.2 10.7-5.4 14.7v.1a138.1 138.1 0 0 0-58.7-15.2Z" fill="#fff" fill-opacity=".7"/>`
|
|
65
|
+
,
|
|
66
|
+
wavyBob: (components, colors)=>`<g fill="${colors.hair.value}"><path fill-rule="evenodd" clip-rule="evenodd" d="m341.7 168 .9 1 .8-.8c20.8 3.8 37.4 10.5 44 15.8a155.5 155.5 0 0 0 20.3 15 249.4 249.4 0 0 1 15.9 55c4 24.8 3 53.7 2 65 1.5 1.2 3.1 2.3 4.9 3.5 5 3.5 10.7 7.5 18 14.5a60.6 60.6 0 0 0 6.6-47.5c-1.4-6.4-4-12.9-7.1-20.6-6.5-15.7-15-36.9-19.4-74.4-4-33.8-32-84.5-64-95.5-25.6-8.8-45.7-3.7-51 0-55-46-140-14-163 0-10.8 6.5-19.5 16-28.7 26.1A162.6 162.6 0 0 1 84.6 158c-29 17-35 60-29 89s9 53-6 72-23 47-6 80c13.6 26.4 9.6 49 6 57 17.4 16 55.3 29 92.5 38.4 1.8.5 2.3-4.7 2.7-10 .5-5.1 1-10.3 2.8-9.9l1.6 2.3.7 3.6c1.3 6.6 3.3 16.9 15.2 19.5 38.7 8.6 71.5 13.1 71.5 13.1 13.1-22.4-2.3-53.5-16.1-81.2-7.2-14.4-13.9-27.9-16-38.8-3.3-18.1 3.5-31.1 12.3-47.7a201.6 201.6 0 0 0 19.8-48.3c4.5-18.2 3.3-33 2.1-47.3-1.7-21.2-3.4-41.5 13.6-70.7 27.5-15.4 61.8-15.8 89.4-11Zm63.5 25.5Z"/><path d="M442 448c1.2 5.8 2.9 19.2 0 26-7.4 1.3-24.7 3.6-34 2 6.4-3.8 22-14.8 34-28Z"/></g><path d="M343.4 168.2c20.8 3.8 37.4 10.5 44 15.8a155.5 155.5 0 0 0 20.3 15 163.4 163.4 0 0 0-5.5-11.4C391.2 167 376 152 356.1 158a22 22 0 0 0-8.1 6l-4.6 4.2ZM258.6 169c29.8-44 67.2-19.6 83-1-27.5-4.8-61.8-4.4-89.3 11 1.8-3.2 4-6.6 6.3-10Z" fill="#000" fill-opacity=".3"/><path d="M216.6 172c23.2-40 72.3-46.7 94-45-117-12-128 68-128 99 0 24.8 3 39-5 53a72.3 72.3 0 0 0-13 79c-5-26 5-45 27-70s-4-66 25-116ZM182.6 444c-14.4-14.4-18-28-18-33 46.4 24 37.3 61.3 27 77 3-8.7 5.4-29.6-9-44ZM112.6 279c8.8-20 7-43.7 5-53 0 30-19 62-40 100-16.8 30.4 7 66 21 80 3-16-10-28-11-57s14-45 25-70ZM443.6 333c5.2-16.4 1.5-39.5-1-49 0 16.4-3 36.2-4.5 44l5.5 5Z" fill="#000" fill-opacity=".2"/>`
|
|
67
|
+
,
|
|
68
|
+
bowlCutHair: (components, colors)=>`<path d="M423 224.5c-25-104-115.5-123-152.5-121.5C106.1 105 69.7 238.2 72 310.5c1-2 3-3.5 3-3.5 13-7 20.5-5 23-5 43.5 2 58.8 53.5 56 75.5 7.9 7.4 18.7.2 23.3-2.9l.2-.1c3.6-2.4 0-13.5 0-20-9-42-7-102-4.5-102 2 0 29.5-2.3 40.5-4-.8-10.4-3.7-40.3 0-45.5-3.2 5.2 10.2 36.8 11.5 43 49.5 5 150.5-13 153.5-14.5 2.4-1.2-1-27.8-3-41 7.6 7.2 13.8 31.7 15 41 9.6-.8 25.7-5 32.5-7Z" fill="${colors.hair.value}"/><path d="M283 119c23.3 1.7 77.4 16.2 107 61-11.7-24.3-49.4-70.6-107-61ZM331 167c7 9 21.2 33.6 22 60 5-10.7 7.6-37.6-22-60ZM132 251c4.8-53.6 40-93 57-106-64 20.8-78 89.3-77 121 .8-40 23.7-74 35-86-10.4 18.4-14.3 55-15 71Z" fill="#000" fill-opacity=".2"/>`
|
|
69
|
+
,
|
|
70
|
+
curlyBob: (components, colors)=>`<path d="M366.8 170.9c-8 7.2-16.8 17.6-26.5 29.1-16.3 19.3-35.3 41.8-57.3 57.3a227.2 227.2 0 0 1-86.5 35.3 86.4 86.4 0 0 0-16.4 32c-3.2 9.9-5.5 17-13 17.4-9-20.6-25.4-54.2-71.1-39-38.5 12.8-40.4 56.3-28 78.5 7 12.4 35.3 40 81 34l29.5 25.5c-2.9 5.4-8.2 13.1-25.8 20.7-21.9 9.5-123.8 1-133.3-60.8-23.8-20.6-61.1-78.2-20-143.6 12.6-20 30.3-34.4 51.3-43.7-.2-8.2-.2-17.7.1-28.6 2-60 58.1-108.4 102-118.9 42.7-10.2 132.8-6.8 169.8 26.2C443 47.5 473.8 193.9 469.5 249.5c22.4 44 7 106.7-1 131.5-4-33.6-31.3-56-44-61.5 5.6-30.4-5-82-11-104a139 139 0 0 0-46.7-44.6Z" fill="${colors.hair.value}"/>`
|
|
71
|
+
,
|
|
72
|
+
straightHair: (components, colors)=>`<path d="M351 167c-32.5 45-106 137.5-207 170.5a44.3 44.3 0 0 0-41-23.5c-27.5.5-37.5 20.5-37.5 20.5s-32 53.5 42 87.5c20.5 4 27 4 43.5-3 11.2 8.7 46.6 38.2 59 43-3.2 16.8-8.8 58.8-1.2 78-14.5 1.3-49.8 8.7-77.8-6.5-2.8-17.1-5.3-39.5-.9-48-5.3 8.5-14.8 28.2-14.8 39.5-16-5.5-51.6-20.8-66-38C27 382 19 127.5 245 106c19.8-2.3 70.4-.3 104 22.5C391 157 412 195 420 233c-17.2-8-55-32.4-69-66ZM433.5 525c-6.8-9.6-2.8-53.2 0-68-28 23.5-44.5 35-102 36.5 10 15 49 20.5 53.5 22.5l8-5.5v8a215 215 0 0 0 40.5 6.5Z" fill="${colors.hair.value}"/><mask id="hairStraightHair-a" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="245" y="105" width="176" height="128"><path d="M346.5 127.5C313 104.7 264.8 103.7 245 106c5.5 29.7 22.4 92.8 69 108 13.7-17.7 30-34.2 37-47 14 33.6 51.8 58 69 66-8-38-31.5-77-73.5-105.5Z" fill="#E2BA87"/></mask><g mask="url(#hairStraightHair-a)"><path d="M339 161.8s-8.3-9.8-26.4-8.2c0 0 12.8-7 21-6 0 0-22.5-16.8-55.6-6.2 0 0 23.3-16.4 41.8-14.3 0 0-19.6-8.6-32-6.5 0 0 9.8-12.3 22.5-12 0 0-10.1-17.9-26-23.6 0 0 31.7 9 40 15.5 18.4 7.8 35.3 30.7 35.3 30.7-5.6-3.3-14.7-2.5-14.7-2.5 14.7 9 26 25.8 26 25.8-7.1-5-15.8-3.3-15.8-3.3a76.7 76.7 0 0 1 18.4 31.9c-1.8-5.7-15.4-12.7-15.4-12.7a71.7 71.7 0 0 1 6.4 24.5l-11.3-14.7s-23 19.2-29 21.7c0 0 17.4-18 18.5-26.2 0 0-26 7-46.7 9.8 0 0 29-22 43-23.7Z" fill="#000" fill-opacity=".2"/></g><path d="M281 211c-14 17.7-59.6 60.6-130 91 22.3-14 79.6-51.8 130-91ZM95 302c40.8-86.4 123.7-135.3 160-149-93.6 16-156 108.3-175.5 152.5 3.6-1.6 11.8-3 15.5-3.5ZM74 406.5c2 2.5 7.8 6.4 11 8-1.3 22-3.2 64.5-2.2 83.3-2-18.9-4.5-50.8-3.8-68.3-3.7 13.3-9.9 17.8-5.5 73-4.7-35.7-11.9-74.4.5-96ZM408.5 476.5c2.8-1.2 7.5-4.5 9.5-6-3.6 6-2.2 36.2-1 50.5-2.4-2-4-9.5-4.5-13-1.6 5.2-4.7 5.5-4 13-4.4-10-.5-28.5 0-44.5ZM183.5 468.5c-4.8 43.6-2.5 55.5 1.5 74h-20c-7.2-35.2 11.2-52 18.5-74Z" fill="#000" fill-opacity=".2"/>`
|
|
73
|
+
,
|
|
74
|
+
braids: (components, colors)=>`<path d="M144 337.5C245 304.5 318.5 212 351 167c14 33.6 51.8 58 69 66-8-38-29-76-71-104.5-33.6-22.8-84.2-24.8-104-22.5C19 127.5 27 382 49.3 487c28 20 99 58.6 159.5 53-7.6-19.2-2-61.2 1.2-78-12.4-4.8-47.8-34.3-59-43-16.5 7-23 7-43.5 3-74-34-42-87.5-42-87.5s10-20 37.5-20.5c22-.4 34.2 11.8 41 23.5ZM433.5 525c-6.8-9.6-2.8-53.2 0-68-28 23.5-44.5 35-102 36.5C350 504 396.3 525 433.5 525Z" fill="#220F01"/><path fill-rule="evenodd" clip-rule="evenodd" d="M257.7 116c-18 19.4-49 50-84.4 79-34.5 28.1-74.1 55.6-110 69-1.4 1.4-4 4.9-7.1 12.4a177 177 0 0 0-10 41.1c-5.4 37.7-7 73.8 3.3 160.5.8 6.9-4.5 10.8-12.5 9-6.5-1.5-10.7-7.1-11.5-14-10.5-88-9.9-118.5-4.1-159 2.9-20.3 7-35.7 11.7-47.1 4.4-11 10-19.7 17-24.3l1.2-.8 1.5-.6c32.3-11.6 70-37.3 104.7-65.6 30-24.5 56.7-50.2 74.5-68.8 1.7-1.8 14-5.3 28.7-1.8.8 3.8-.2 8-3 11Zm-52.3.3c-24.6 24.7-80.7 79-136.2 102.7-2.4 1 12.5-1.7-2.2 1a99.2 99.2 0 0 1 18.9-38c31.3-18 54.7-40.3 78-61 8.6-3.8 29.6-11.3 44.7-10.5-.5 2.1-1.6 4.1-3.2 5.8ZM91.3 293.8c113-60.3 193.2-147.3 216.2-183.3-7.6-6.4-21.5-6.2-27.5-4.7-20.5 32-91.6 108.4-202.8 167.1l-.7.4-.7.5a22.7 22.7 0 0 0-7 9.1c-1.5 3.2-2.8 7-4 11.4-2.3 9-4.3 21.6-5.8 38.8-3 34.4-4.4 76 0 157.4.4 6.9 8.5 12.5 12.5 14h.1c2 0 11.4 0 12.4-5-2-37.6-2.4-67.3-2.5-93.5l-2-2c-5.7-4.8-20-17.3-20.5-44.5 2.5-21.2 8-27.9 10.2-30.4l.8-1.1c10-10 15.9-10.5 15.9-10.5 1-7.2 2-12.8 3.2-17 .8-3.2 1.6-5.4 2.2-6.7Zm33 181.6c.2 7.3.2 13.3.2 18.6.1 10.9.2 18.5 1 27.5.6 6.9-7 7-11 7-5-1-12.4-4.6-13-11.5v-.7l-.2-1.4c-1.1-12.3-1.6-17.1-2-39a387 387 0 0 1 2.3-56.9c3.4 2 13 5.5 24.4 5.5-1.7 13.5-2 32.2-1.7 51ZM106.2 300C217.2 241.3 298.4 146.2 319 114c6.2.8 19.8 4.1 25 11-23.1 36.1-106 132-220.5 192.5-.8.4-2.7-.3-5-1.1-2-.7-4.3-1.5-6.5-1.9-4-.7-11-.5-11-.5-3.2-6.1-1-10.8 5.2-14Zm246.1-125.4C323.1 214.7 247 297.5 150 337c-5.5 2.9-5.8 2.3-8-2.3l-1-1.7a20 20 0 0 0-4.1-5c-2.3-2.3-3.6-3.5.3-5.6C247.9 264 318.2 182.2 339 149.8c1.7-2.8 4.4-4.6 7.4-5.4a12.5 12.5 0 0 1 16.7 3.2 319.4 319.4 0 0 0 45 48.4c4.4 10.1 13.3 32 13.3 38.4a152.6 152.6 0 0 1-45.9-30.9c-5.7-5.7-11.1-13-16-19.6-2.6-3.5-5-6.8-7.2-9.4ZM161.6 474.3a607.1 607.1 0 0 1 .9-46.3l-11.5-9a94.2 94.2 0 0 1-13.5 4.5l-.4 7.2v4.4a759.8 759.8 0 0 0 2.4 95.2v1.7c.5 6.9 13 10 13 10s11-.5 11.5-4c-1.4-18-1.9-36.5-2.4-63.8Zm16 .4.3 24c0 13.7.1 24 1.1 36.3.5 6.9 7.6 10 14.5 9.5s11.5-1.6 11-8.5c-4.5-21.7-4.2-29-3.4-48.8l.4-10.2c0-2.9.2-6.6.5-10.3.3-3.2.5-6.3.5-8.7-3.5-2-18-12.5-25-18a679 679 0 0 0 0 32.2l.1 2.5Zm247-10.2c5.2-4.3 9.6-8.6 9.4-7.5l-.6 3.9c-1.2 8.4-3 21.2-3.4 32.3a93 93 0 0 0 4 30.8c.9 2.5-7 2-13.5 2-7 0-13.5-2.5-14-4-3.6-10.6-1.9-16-1.5-29.5l.8-15s10.2-6 18.7-13ZM399 481c0-.5-5 2.5-13.5 5-9 3-14 3.5-14 3.5 0 5.7-.2 3-.7 12.5v10.5c3.3 6 6.2 5.6 13.2 7 7 .7 13 1.5 12.5-2.5s-1.1-5.4-.7-13.7c.4-7.6 3.2-17.6 3.2-22.3Z" fill="${colors.hair.value}"/><mask id="hairBraids-a" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="17" y="103" width="418" height="442"><path fill-rule="evenodd" clip-rule="evenodd" d="M257.7 116c-18 19.4-49 50-84.4 79-34.5 28.1-74.1 55.6-110 69-1.4 1.4-4 4.9-7.1 12.4a177 177 0 0 0-10 41.1c-5.4 37.7-7 73.8 3.3 160.5.8 6.9-4.5 10.8-12.5 9-6.5-1.5-10.7-7.1-11.5-14-10.5-88-9.9-118.5-4.1-159 2.9-20.3 7-35.7 11.7-47.1 4.4-11 10-19.7 17-24.3l1.2-.8 1.5-.6c32.3-11.6 70-37.3 104.7-65.6 30-24.5 56.7-50.2 74.5-68.8 1.7-1.8 14-5.3 28.7-1.8.8 3.8-.2 8-3 11Zm-52.3.3c-24.6 24.7-81.2 79-136.7 102.7-2.4 1 .7-.5-1.7-1a91.5 91.5 0 0 1 18.9-36.5c31.3-18 54.7-39.8 78-60.5 8.6-3.8 29.6-11.3 44.7-10.5-.5 2.1-1.6 4.1-3.2 5.8ZM91.3 293.8c113-60.3 193.2-147.3 216.2-183.3-7.6-6.4-21.5-6.2-27.5-4.7-20.5 32-91.6 108.4-202.8 167.1l-.7.4-.7.5a22.7 22.7 0 0 0-7 9.1c-1.5 3.2-2.8 7-4 11.4-2.3 9-4.3 21.6-5.8 38.8-3 34.4-4.4 76 0 157.4.4 6.9 8.5 12.5 12.5 14h.1c2 0 11.4 0 12.4-5-2-37.6-2.4-67.3-2.5-93.5l-2-2c-5.7-4.8-20-17.3-20.5-44.5 2.5-21.2 8-27.9 10.2-30.4l.8-1.1c10-10 15.9-10.5 15.9-10.5 1-7.2 2-12.8 3.2-17 .8-3.2 1.6-5.4 2.2-6.7Zm33 181.6c.2 7.3.2 13.3.2 18.6.1 10.9.2 18.5 1 27.5.6 6.9-7 7-11 7-5-1-12.4-4.6-13-11.5v-.7l-.2-1.4c-1.1-12.3-1.6-17.1-2-39a387 387 0 0 1 2.3-56.9c3.4 2 13 5.5 24.4 5.5-1.7 13.5-2 32.2-1.7 51ZM106.2 300C217.2 241.3 298.4 146.2 319 114c6.2.8 19.8 4.1 25 11-23.1 36.1-106 132-220.5 192.5-.8.4-2.7-.3-5-1.1-2-.7-4.3-1.5-6.5-1.9-4-.7-11-.5-11-.5-3.2-6.1-1-10.8 5.2-14Zm246.1-125.4C323.1 214.7 247 297.5 150 337c-5.5 2.9-5.8 2.3-8-2.3l-1-1.7a20 20 0 0 0-4.1-5c-2.3-2.3-3.6-3.5.3-5.6C247.9 264 318.2 182.2 339 149.8c1.7-2.8 4.4-4.6 7.4-5.4a12.5 12.5 0 0 1 16.7 3.2 319.4 319.4 0 0 0 45 48.4c4.4 10.1 13.3 32 13.3 38.4a152.6 152.6 0 0 1-45.9-30.9c-5.7-5.7-11.1-13-16-19.6-2.6-3.5-5-6.8-7.2-9.4ZM161.6 474.3a607.1 607.1 0 0 1 .9-46.3l-11.5-9a94.2 94.2 0 0 1-13.5 4.5l-.4 7.2v4.4a759.8 759.8 0 0 0 2.4 95.2v1.7c.5 6.9 13 10 13 10s11-.5 11.5-4c-1.4-18-1.9-36.5-2.4-63.8Zm16 .4.3 24c0 13.7.1 24 1.1 36.3.5 6.9 7.6 10 14.5 9.5s11.5-1.6 11-8.5c-4.5-21.7-4.2-29-3.4-48.8l.4-10.2c0-2.9.2-6.6.5-10.3.3-3.2.5-6.3.5-8.7-3.5-2-18-12.5-25-18a679 679 0 0 0 0 32.2l.1 2.5Zm247-10.2c5.2-4.3 9.6-8.6 9.4-7.5l-.6 3.9c-1.2 8.4-3 21.2-3.4 32.3a93 93 0 0 0 4 30.8c.9 2.5-7 2-13.5 2-7 0-13.5-2.5-14-4-3.6-10.6-1.9-16-1.5-29.5l.8-15s10.2-6 18.7-13ZM399 481c0-.5-5 2.5-13.5 5-9 3-14 3.5-14 3.5 0 5.7-.2 3-.7 12.5v10.5c3.3 6 6.2 5.6 13.2 7 7 .7 13 1.5 12.5-2.5s-1.1-5.4-.7-13.7c.4-7.6 3.2-17.6 3.2-22.3Z" fill="#000"/></mask><g fill="#000" fill-opacity=".5" mask="url(#hairBraids-a)"><path d="M169.8 109c1-6.7 3-12.9 4.6-16.2l6.3 3c-1.2 2.6-3 8.1-4 14.2-.7 5.1-.7 10 .4 13.8h9.6c3.9 0 7.2-.3 9.7-1l2.1 6.6a40.5 40.5 0 0 1-11.8 1.5h-6.1c-2-.1-4-.2-5.8-.1-9.8 0-23.2-1.6-28.5-2.4l1.1-7c4.3.7 14 2 22.5 2.3-1-4.8-.8-10 0-14.8ZM222.7 113c1-6.6 3-12.8 4.6-16.2l6.3 3c-1.2 2.7-3 8.2-4 14.2-.7 5.1-.7 10 .4 13.8h9.6c3.9 0 7.2-.2 9.7-1l2.1 6.6c-2.1.7-4.6 1.1-7 1.3 4.7.7 13.5 1.8 21.2 2-1-4.7-.7-10 0-14.7 1-6.6 3-12.8 4.5-16.1l6.4 3c-1.3 2.6-3.1 8.1-4 14.1-.8 5.2-.8 10.1.4 13.8h3.5c2 .1 4 .2 6 .1 4 0 7.2-.3 9.7-1l2.2 6.6-.5.1c4.1.4 8.8.8 13.2.9-1-4.8-.9-10-.2-14.8.9-6.6 2.8-12.8 4.3-16.2l6.4 3c-1.2 2.6-3 8.1-3.8 14.2-.7 5.1-.6 10 .6 13.8h9.5c4-.2 7.2-.5 9.7-1.3l2.3 6.6a40.5 40.5 0 0 1-11.8 1.6H312c-9.8.3-23.3-1.2-28.6-2l.7-4.5a92 92 0 0 1-7.8 0h-5.8c-9.8 0-23.2-1.6-28.5-2.5l1-6.6a77.4 77.4 0 0 1-9.6 0h-5.8c-9.8.1-23.2-1.6-28.5-2.4l1.1-7c4.3.7 14 2 22.5 2.3-1-4.8-.8-10 0-14.8ZM323 170.7c.5-6.6 2-13 3.2-16.4l6.6 2.4c-1 2.8-2.4 8.4-2.8 14.5-.3 5.2 0 10.1 1.6 13.7l3.5-.2 6-.5c3.8-.3 7.1-1 9.5-2l2.8 6.5c-3.5 1.5-7.7 2.1-11.7 2.5l-6 .5h-.1a204.5 204.5 0 0 1-34.3.4l.4-7c4.4.3 14.2.7 22.6.3-1.4-4.6-1.6-10-1.3-14.7ZM286.5 211c.1-6.2 1.2-12.1 2.4-15.4l6.6 2.2c-.9 2.5-2 7.7-2 13.2 0 4.8.6 9.1 2.2 12.2l3.7-.5 5.9-.7a37 37 0 0 0 9.5-2.4l3 6.4a43.4 43.4 0 0 1-11.5 2.9l-6 .8-5.8.7c-9.6 1.4-26.6 2.1-32 2.1v-7c4.4 0 16.7-.4 26-1.4-1.6-4.2-2-9-2-13.1ZM244.2 238.6a54.2 54.2 0 0 0-2.6 15.4c-.2 4.2.2 8.9 1.6 13-4 .2-9 .2-13.9.1-4.8 0-9.3-.2-12.6-.3l-3.5-.2.5-.1-2.3-6.6a37 37 0 0 1-9.7 1.4l-6 .3h-3.6a27 27 0 0 1-1.1-12.2c.6-5.5 2-10.6 3.2-13l-6.4-2.9c-1.5 3.2-3.1 9-3.8 15.2-.4 4.1-.4 8.8.7 13.1a231.5 231.5 0 0 1-23-1.8 37 37 0 0 0 9-1.6l-2.3-6.6a37 37 0 0 1-9.8 1.4h-5.9l-3.7.1a27 27 0 0 1-.9-12.2c.7-5.5 2.3-10.6 3.4-13l-6.4-3c-1.4 3.2-3.2 9-4 15.1-.4 4.2-.5 9 .6 13.2-4-.2-9-.6-13.8-1.1l-12.6-1.4-3.5-.5-.8 7 3.3.4 12.9 1.5a160.7 160.7 0 0 0 25.6 1h1.8l-.5 6 3.3.3 12.9 1.3a160.8 160.8 0 0 0 25.6.7l6.1-.3c3.8-.2 7.8-.6 11-1.6v7h3.3l13 .4a160.9 160.9 0 0 0 25.5-1.1l6.1-.7c4-.5 8.1-1.2 11.5-2.6l-2.8-6.5a37 37 0 0 1-9.6 2.2l-5.9.6-3.6.4a27 27 0 0 1-2-12.2c.2-5.5 1.4-10.7 2.3-13.2l-6.6-2.4ZM191.6 293c.2-6.2 1.3-12 2.5-15.4l6.6 2.3c-.9 2.5-2 7.7-2 13.2-.2 4.7.5 9 2 12.2l3.6-.4 6-.7a37 37 0 0 0 9.5-2.3l2.9 6.4a43.4 43.4 0 0 1-11.5 2.8l-6 .7-5.8.7c-5 .7-15.1.7-24.3.6a1061 1061 0 0 1-15.7-.4l-5-.2.2-7 5 .2h2.9l12.7.4 18.2-.1a37.3 37.3 0 0 1-1.8-13ZM131.2 441.2c1.9 3 4.7 6.6 8 9.8 3 3 6.6 5.8 10.5 7.6a166.8 166.8 0 0 1-16.7 15l-2.1 1.7-5.4 4.8 5 4.8a87.6 87.6 0 0 1 7-6l6-5.1a106 106 0 0 0 18.7-19.6c1.2-1.6 2.5-3.2 3.6-4.9 2.4-3.2 4.7-6.8 5.9-10.2l-6.6-2.4a37 37 0 0 1-5 8.5c-1 1.6-2.3 3.2-3.5 4.8l-2.2 3a27 27 0 0 1-10.2-7c-4-3.8-7-8.1-8.2-10.5l-1.7.8 1-2-6.5-2.7a37 37 0 0 1-5.4 8.3c-1.2 1.5-2.4 3-3.8 4.5l-2.3 2.9a27 27 0 0 1-9.9-7.5c-3.7-4-6.5-8.5-7.6-11l-6.3 2.9c1.4 3.2 4.6 8.3 8.7 12.9 2.8 3 6.3 6.2 10.2 8.2a330.6 330.6 0 0 1-22.6 21l-2 2L85 478c1.8-2.8 3.5-5.8 4.5-8.7l-6.7-2.2a37 37 0 0 1-4.7 8.7c-1 1.6-2.2 3.2-3.4 4.8l-2.1 3a27 27 0 0 1-10.5-6.5c-4-3.8-7.1-8-8.4-10.4l-6.1 3.4c1.6 3 5.3 7.9 9.8 12 3 3 6.8 5.8 11 7.4-6.4 8.1-17 19.8-20.1 23.1l5.1 4.8a342.3 342.3 0 0 0 27-32.7l3.5-5 .2-.3 4.5 4.8 3.7-3.3 1.2-1 1-.9 9.4-8.6c6.8-6.2 14.1-13.1 17.3-17.1l3.7-4.4a228.1 228.1 0 0 0 6.2-7.8Z"/><path d="M138.9 507a59 59 0 0 1-8-9.7 73 73 0 0 1-6.9 8.6c-1.3 1.6-2.6 3-3.7 4.5-3.2 4-10.5 10.9-17.3 17A1075.8 1075.8 0 0 1 91.4 538l-3.7 3.3-4.7-5.1a4765 4765 0 0 0 15.4-13.8c4.8-4.5 9.6-9.1 13-12.6-3.9-2-7.4-5.2-10.2-8.2a54.3 54.3 0 0 1-8.7-13l6.3-2.8c1.1 2.5 4 7 7.6 11a27 27 0 0 0 9.9 7.4l2.3-2.7 3.8-4.6a37 37 0 0 0 5.4-8.3l6.5 2.7-.5 1.1 1.8-1c1.2 2.5 4.3 6.8 8.2 10.7a27 27 0 0 0 10.2 6.8l2.2-3c1.3-1.5 2.5-3.1 3.6-4.7 2.3-3.2 4-6 5-8.5l6.5 2.4c-1.2 3.4-3.5 7-5.8 10.2l-3.7 4.9-3.4 4.7c-3 4.2-9.5 10-15.2 14.9l-6 5a1172.2 1172.2 0 0 0-7 6.1l-5-4.8a91.5 91.5 0 0 1 7.5-6.6l6-5c4-3.4 7.8-7 10.7-9.9-4-1.8-7.6-4.7-10.5-7.6Z"/><path d="M169.4 469.7c1.6 3 5 8 9.5 12.3 2.9 3 6.5 5.8 10.5 7.6-3 3-6.8 6.5-10.8 9.9l-6 5a1799 1799 0 0 0-7.5 6.6l5 4.8a87.8 87.8 0 0 1 7-6l6-5.1a106 106 0 0 0 15.3-15l3.4-4.6 3.7-4.9c2.3-3.2 4.6-6.8 5.8-10.2l-6.6-2.4a37 37 0 0 1-5 8.5 363 363 0 0 0-5.8 7.7 27 27 0 0 1-10.1-6.8c-4-4-7-8.2-8.2-10.6l-6.2 3.2ZM374.2 184.5c-6.6-.5-13.1 0-16.7.8l1.4 6.8c3-.6 8.7-1.1 14.8-.6 5.2.4 10 1.5 13.3 3.4l-.7 3.5-1.3 5.8c-1 3.8-2 7-3.3 9.2l6 3.7c2-3.2 3.2-7.3 4-11.2.6-2 1-4 1.4-6a204.7 204.7 0 0 0 5.3-34l-7-.4c-.3 4.3-1.2 14-2.8 22.4-4.4-2.1-9.7-3-14.4-3.4ZM420.6 198.2c1.1 3.3 2.3 9.3 2.3 15.4 0 4.2-.4 9-2 13.1 9.3 1 21.7 1.5 26 1.4v7a287.7 287.7 0 0 1-37.7-2.8l-6-.8c-4-.6-8.1-1.4-11.5-2.9l3-6.4a37 37 0 0 0 9.5 2.4l5.9.8 3.6.4a27 27 0 0 0 2.2-12.1c0-5.5-1-10.7-2-13.2l6.7-2.3ZM434.4 487c4.4-4.3 7.8-9.2 9.4-12.3l-6.2-3.2a47.5 47.5 0 0 1-8.1 10.6 27 27 0 0 1-10.3 6.8l-2.2-3a222 222 0 0 1-3.5-4.7 37 37 0 0 1-5-8.5l-6.6 2.4c1.2 3.4 3.5 7 5.9 10.2 1.1 1.7 2.4 3.3 3.6 4.9a106 106 0 0 0 18.6 19.6l6.1 5 .9.8a807.5 807.5 0 0 1 6.1 5.3l5-4.8a91 91 0 0 0-7.5-6.6 166.8 166.8 0 0 1-16.7-14.9c4-1.8 7.5-4.7 10.5-7.6ZM404.8 488.7c-1.6 3-5 8-9.4 12.3-3 3-6.6 5.8-10.5 7.6a166.8 166.8 0 0 0 16.7 15l1.3 1 .8.7a91 91 0 0 1 5.4 4.8l-5 4.8a87.4 87.4 0 0 0-7-6 723 723 0 0 1-6-5.1 106 106 0 0 1-18.7-19.6l-3.6-4.9a43.4 43.4 0 0 1-5.9-10.2l6.6-2.4a37 37 0 0 0 5 8.5 363 363 0 0 1 5.8 7.7 27 27 0 0 0 10.2-6.8c3.9-4 6.9-8.2 8.1-10.6l6.2 3.2ZM271.2 171.4c.8-6.7 2.7-12.9 4.3-16.3l6.4 3c-1.3 2.6-3 8.2-3.8 14.2-.7 5.2-.7 10.1.6 13.8h9.5c3.9-.1 7.2-.5 9.7-1.3l2.2 6.6a40.5 40.5 0 0 1-11.8 1.7h-11.9c-9.7.3-23.2-1.2-28.5-2l.7-5a83.8 83.8 0 0 1-8.4 0c-2-.1-4-.2-5.8-.1-9.8 0-23.2-1.6-28.5-2.4l1-7c4.4.7 14 2 22.5 2.3-1-4.8-.7-10 0-14.8 1-6.6 3-12.8 4.5-16.1l6.4 3c-1.3 2.6-3.1 8.2-4 14.2-.8 5.1-.8 10 .4 13.8h9.5c4 0 7.2-.2 9.7-1l2.2 6.6-1.7.5c4.5.4 10 .9 15 1-1-4.7-.9-10-.2-14.7ZM232 209c.4-6.2 2-12 3.3-15.3l6.5 2.7c-1 2.5-2.5 7.6-3 13-.3 4.8 0 9.2 1.4 12.3 1.2 0 2.5 0 3.7-.2l6-.3c3.8-.3 7.2-.8 9.6-1.7l2.5 6.6a43.5 43.5 0 0 1-11.6 2l-6.1.4-5.8.4c-9.7.7-26.7.2-32-.2l.4-7c4.4.3 16.7.7 26 .4-1.2-4.2-1.3-9-1-13.2ZM131.5 284c.5-6 2.1-11.9 3.5-15.1l6.5 2.8c-1.1 2.4-2.5 7.5-3 13a27 27 0 0 0 1.2 12.3l3.6-.2 6-.3c3.9-.2 7.2-.7 9.7-1.6l2.4 6.6a43.4 43.4 0 0 1-11.7 2l-6 .3c-2.1 0-4 .2-5.9.3-5 .3-15-.4-24.2-1.2a1075.3 1075.3 0 0 1-15.5-1.5h-.2L93 301l.5-6c-10 .4-30.8-1.6-35.8-2l.6-7c4.6.4 20.3 2 30.5 2-1-4.2-1-9-.6-13 .6-6.2 2.3-12 3.7-15.2l6.4 2.8c-1.1 2.5-2.6 7.6-3.2 13a27 27 0 0 0 1 12.3h3.7l6-.3c3.9-.2 7.2-.6 9.7-1.5l2.3 6.7a43.4 43.4 0 0 1-11.7 1.8l-4.5.2a1038.6 1038.6 0 0 0 30.7 2.3c-1.1-4.2-1.2-8.9-.8-13Z"/><path d="M193.2 186c-1.4 3.2-3 9-3.6 15.2a37 37 0 0 0 .9 13.2c-9.4.2-21.7-.4-26-.8l-.7 7c5.4.5 22.4 1.2 32 .6l5.9-.3 6-.2c4-.3 8.3-.7 11.7-2l-2.3-6.6a37 37 0 0 1-9.7 1.6l-6 .2-3.7.2a27 27 0 0 1-1.1-12.3c.5-5.5 2-10.6 3-13l-6.4-2.8ZM61.5 331.3c-4.5-4.2-8.2-9-9.8-12.1l6-3.4c1.4 2.3 4.5 6.6 8.5 10.4a27 27 0 0 0 10.5 6.5l2-3h.1l3.4-4.8a37 37 0 0 0 4.7-8.7l6.7 2.2c-1.2 3.5-3.3 7-5.6 10.4l-3.5 5-3.3 4.7a342.3 342.3 0 0 1-23.7 28l-5.1-4.8c3-3.3 13.7-15 20-23-4-1.7-7.9-4.6-11-7.4ZM47.7 405.2c1.6 3 5.3 7.9 9.8 12 3 3 6.8 5.8 11 7.4-6.4 8.1-17 19.8-20.1 23.1l5.1 4.8a342.2 342.2 0 0 0 27-32.7l3.5-5c2.3-3.3 4.4-7 5.6-10.4l-6.7-2.2a37 37 0 0 1-4.7 8.7c-1 1.6-2.2 3.2-3.4 4.8l-2.1 3a27 27 0 0 1-10.5-6.5c-4-3.8-7.1-8-8.4-10.4l-6.1 3.4ZM187.6 134.9A63.3 63.3 0 0 0 183 151c-.7 4.7-1 10 0 14.8a223 223 0 0 1-22.4-2.3l-1 7a204.6 204.6 0 0 0 34.2 2.4h6c4.1 0 8.4-.3 12-1.4l-2.3-6.7a34 34 0 0 1-9.7 1.1h-9.5a32.5 32.5 0 0 1-.4-13.9c1-6 2.7-11.5 4-14.1l-6.3-3ZM146 170.4c-1.3 3.2-3 9-3.5 15.1-.4 4.2-.4 9 .8 13.3-8.3.1-19-.3-24.3-.7l-2-5.6a37 37 0 0 1-9.7 1.5l-6 .3-3.6.1a27 27 0 0 1-1.2-12.2c.6-5.5 2-10.6 3-13l-6.3-2.8c-1.4 3.2-3 9-3.6 15.1-.4 4.2-.4 9 .8 13.3-9.3.1-21.6-.4-26-.8l-.6 7a287.8 287.8 0 0 0 37.8.3c2 0 4.1-.1 6.1-.3 3.2-.2 6.5-.5 9.5-1.3l-.5 5.3a288.3 288.3 0 0 0 37.8.3l6.1-.2c4-.3 8.2-.8 11.7-2l-2.4-6.6a37 37 0 0 1-9.7 1.6l-6 .2-3.6.2a27 27 0 0 1-1.2-12.3c.6-5.5 2-10.6 3-13l-6.3-2.8ZM98.5 221c1.3-5.7 3.6-11 5.3-14l6 3.8a42.5 42.5 0 0 0-4.5 11.7 24 24 0 0 0-.2 11.4l3.7.4 6 .4c3.9.3 7.2.3 9.8-.2l1.4 6.8c-3.5.8-7.7.7-11.7.4l-6-.5h-.1l-5.8-.4c-8.3-.6-24.5-4.1-32.3-5.8l-3.2-.7 1.4-6.9 3.6.8c6.4 1.4 17.7 3.9 25.9 5-.6-4-.1-8.4.7-12.2ZM35.2 247.2c.4 3.4 2 9.3 4.5 14.9 1.7 3.8 4.1 7.9 7.3 11-9 5-23.2 11.8-27.3 13.7l3 6.3a342.1 342.1 0 0 0 37.3-20c1.7-1 3.5-2 5.2-3.2 3.3-2.2 6.7-4.7 9-7.5l-5.3-4.5a37 37 0 0 1-7.6 6.2l-5 3.2-3.1 2a27 27 0 0 1-7.2-10.1c-2.3-5-3.5-10.2-3.8-12.8l-7 .8Z"/><path d="M22.5 344.3c-4.5-4.2-8.2-9-9.8-12.1l6-3.4c1.4 2.3 4.5 6.6 8.5 10.4a27 27 0 0 0 10.5 6.5l2-3h.1l3.4-4.8a37 37 0 0 0 4.7-8.7l6.7 2.2c-1.2 3.5-3.3 7-5.6 10.4l-3.5 5-3.3 4.7a342.3 342.3 0 0 1-23.7 28l-5.1-4.8c3-3.3 13.7-15 20-23-4-1.7-7.9-4.6-11-7.4ZM6.7 396.2c1.6 3 5.3 7.9 9.8 12 3 3 6.8 5.8 11 7.4-6.4 8.1-17 19.8-20.1 23.1l5.1 4.8a342.2 342.2 0 0 0 27-32.7l3.5-5c2.3-3.3 4.4-7 5.6-10.4l-6.7-2.2a37 37 0 0 1-4.7 8.7c-1 1.6-2.2 3.2-3.4 4.8l-2.1 3a27 27 0 0 1-10.5-6.5c-4-3.8-7.1-8-8.4-10.4l-6.1 3.4ZM20.5 468.3c-4.5-4.2-8.2-9-9.8-12.1l6-3.4c1.4 2.3 4.5 6.6 8.5 10.4a27 27 0 0 0 10.5 6.5l2-3h.1l3.4-4.8a37 37 0 0 0 4.7-8.7l6.7 2.2c-1.2 3.5-3.3 7-5.6 10.4l-3.5 5-3.3 4.7a342.3 342.3 0 0 1-23.7 28l-5.1-4.8c3-3.3 13.7-15 20-23-4-1.7-7.9-4.6-11-7.4ZM134.7 130.8A63.3 63.3 0 0 0 130 147c-.7 4.7-1 10 0 14.7-8.4-.3-18.1-1.5-22.4-2.2l-1.1 7a204.5 204.5 0 0 0 34.2 2.4h6.2c4 0 8.2-.3 11.8-1.5l-2.2-6.6a34 34 0 0 1-9.7 1.1h-9.5a32.5 32.5 0 0 1-.4-13.9c1-6 2.7-11.5 4-14.2l-6.3-3Z"/></g>`
|
|
75
|
+
,
|
|
76
|
+
shavedHead: (components, colors)=>`<path d="M94.2 287.6c-.2 4.6-.1 9.2.1 13.8 38.5 6.4 56.7 47.2 61 66.8 0 0 11.4.6 14-1.5 14.3-7.4 39.5-37.5 27.1-99.1-6-28-1.9-50.4 47.8-85.2 49.6-34.9 128.5-13.3 144.6-.4 13 10.4 14.3 12 18.2 14.5-34.4-77.5-101.9-87.7-101.9-87.7-136.9-34.2-195.3 108.6-195.3 108.6-9 22-15 45.8-15.6 70.2Z" fill="${colors.hair.value}"/>`
|
|
77
|
+
,
|
|
78
|
+
bunHair: (components, colors)=>`<path d="M179.3 164.8c-43.7 0-79.1-38.4-79.1-85.9 0-47.4 35.4-85.9 79-85.9 43.7 0 79.1 38.5 79.1 86 0 47.4-35.4 85.8-79 85.8Z" fill="${colors.hair.value}"/><path d="M179.3 164.8c-43.7 0-79.1-38.4-79.1-85.9 0-8 1-15.6 2.8-22.9 12.7 9.5 61 22.8 152.5 0a93 93 0 0 1 2.8 23c0 47.4-35.4 85.8-79 85.8Z" fill="#000" fill-opacity=".2"/><path d="M137 305c4.6-46.4 79-85.4 79-85.4a66.5 66.5 0 0 1-8.5 20.3c-1.5 2.4 0 5.5 2.6 5.7 70 5.5 160.2-70.1 160.2-70.1 19 24.5 41 58.5 52.2 69.9 1.6 1.6 4.2.3 4.1-2.1C422.4 83 268 51.2 163.4 86.4 67.7 118.7-12 243.7 54.4 335c3.7-11.7 17.7-34.3 44-31.5 4.4 1 16 6 27.6 18 1.7 1.9 16 7 11-16.5Z" fill="${colors.hair.value}"/><path opacity=".1" d="M356 157.1s-8.3-9.8-26.3-8.2c0 0 12.7-7 21-6 0 0-22.6-16.8-55.6-6.2 0 0 23.3-16.4 41.7-14.3 0 0-19.6-8.6-32-6.6 0 0 9.8-12.2 22.6-11.8 0 0-10.2-18-26-23.7 0 0 31.6 9 40 15.5 18.3 7.8 35.3 30.7 35.3 30.7-5.7-3.3-14.7-2.5-14.7-2.5 14.7 9 26 25.8 26 25.8-7.2-5-15.8-3.3-15.8-3.3a76.7 76.7 0 0 1 18.4 31.9c-1.9-5.8-15.4-12.7-15.4-12.7a71.7 71.7 0 0 1 6.4 24.5l-11.3-14.7s-23 19.2-29 21.7c0 0 17.3-18 18.4-26.2 0 0-26 7-46.6 9.8 0 0 29-22 42.9-23.7Z" fill="#000"/>`
|
|
79
|
+
,
|
|
80
|
+
froBun: (components, colors)=>`<path d="M119 .1v-.6a37.5 37.5 0 0 1 70.5-17.8 37.4 37.4 0 0 1 66 29.5 37.5 37.5 0 0 1 .6 74.5c-3.2 44.3-37.3 79.1-78.8 79.1a77 77 0 0 1-62.8-33.7A37.6 37.6 0 0 1 69 94.6c0-12 5.6-22.6 14.3-29.5A37.4 37.4 0 0 1 119 .1Z" fill="${colors.hair.value}"/><path d="M119 .1v-.6a37.5 37.5 0 0 1 70.5-17.8 37.4 37.4 0 0 1 66 29.5 37.5 37.5 0 0 1 .6 74.5c-3.2 44.3-37.3 79.1-78.8 79.1a77 77 0 0 1-62.8-33.7A37.6 37.6 0 0 1 69 94.6c0-12 5.6-22.6 14.3-29.5A37.4 37.4 0 0 1 119 .1Z" fill="#fff" fill-opacity=".1"/><mask id="hairFroBun-a" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="69" y="-38" width="220" height="203"><path d="M119 .1v-.6a37.5 37.5 0 0 1 70.5-17.8 37.4 37.4 0 0 1 66 29.5 37.5 37.5 0 0 1 .6 74.5c-3.2 44.3-37.3 79.1-78.8 79.1a77 77 0 0 1-62.8-33.7A37.6 37.6 0 0 1 69 94.6c0-12 5.6-22.6 14.3-29.5A37.4 37.4 0 0 1 119 .1Z" fill="#451E00"/></mask><g fill="#000" fill-opacity=".3" mask="url(#hairFroBun-a)"><path d="M125 55.5c-30.8-.4-47.5-27.5-52-41L62 23 43 59.5l4.5 74.5L98 152.5c50-14.2 155.7-45.9 178.5-59.5 22.8-13.6 15.2-57.3 10.5-70-4 30.5-49 70.5-71 70s-91-3-96.5-14c-4.4-8.8 1.8-19.3 5.5-23.5ZM141 14.5c-5.2-8.8-16.5-13-21.5-14-4-14 7-31.3 14.8-40.5a65.3 65.3 0 0 0 0 0c-9 13 .4 41.1 6.7 54.5ZM192.5-5c-.4-10.4-2.8-15.7-4-17 10.8-22 37.5-15.2 49.5-9-18.8-.4-38.2 17.2-45.5 26Z"/><path d="M259.5.5A96.7 96.7 0 0 1 242 32c20.4-1.6 28.2-15.7 29.5-22.5l-12-9Z"/></g><path d="M313.4 158c6.2-8.4 8.3-12.5 15-12.5 6.7 0 13.8 10.9 21.7 12.5 9.8 2 18-3 25.8-2 7.8 1 4.7 6 9.8 17.5 5.2 11.5 14 15 16.6 18.5 2.6 3.5 0 10.5 2 15.5 2.1 5 8.3 7 9.9 11.5 1.5 4.5-1.6 6 1.5 12.5 2.5 5.2 7.2 9.8 9.3 11.5l-12.4-46a104.6 104.6 0 0 0-84.2-67C220.9 100 130 213 98 273.5l23 44.5c6-1.8 14.4-5.5 21.4-13.5 8.8-10 5.7-34 8.8-44 3.1-10 8.3-15 25.8-22.5 17.6-7.5 16.6-21.5 25.4-32.5 8.7-11 27.8-5 36.1-12s1-17 12.4-26 28.4-4.5 37.7 0c9.3 4.5 17 1 24.8-9.5Z" fill="#351700" style="mix-blend-mode:multiply" opacity=".3"/><path d="M161.4 86.4C65.7 118.7 21.5 226.5 54.4 335c3.7-11.7 15.7-34.3 42-31.5 4.4 1 16 6 27.6 18 37.4-195 193.5-192.5 239-174 44.4 18 55 88 57.5 97.9 1.6 1.6 4.2.3 4.1-2.1C420.4 83 266 51.2 161.4 86.4Z" fill="${colors.hair.value}"/><g fill="#000" fill-opacity=".1"><path d="M232 81c21.3 9 67.8 31.4 83 49-7.7-16.3-35-49-83-49ZM208 91c4.3 15.3 15.2 48.4 24 58 .7-10.2-3.2-36-24-58ZM174.5 95c-1.5 16.7-.7 55.5 14.5 77.5A55.8 55.8 0 0 1 174.5 95ZM137 233.5a140.8 140.8 0 0 1 11.5-126C94.9 174.3 111.8 235.7 127 258c-8-12.8-8.3-38-7.5-49 .4 11.6 11.8 21.2 17.5 24.5Z"/><path d="M115.5 130c-17.2 28.8-44.6 98.9-17 148.5-17.8-20-39.4-77.7 17-148.5ZM290 87c20.2 6 65.1 25.3 83.5 54.5A111.7 111.7 0 0 0 290 87Z"/></g>`
|
|
81
|
+
,
|
|
82
|
+
bangs: (components, colors)=>`<path d="M274 104c88.8 2.4 132.5 65.5 141 98.5-55-8.7-191.5-34.5-210 15.5-41 111-15 243 0 297-55.2 4-123.7-15.7-151-26-5.5-6.5-1.7 19-10-104-14-208 102-250.5 140-267.5 30.4-13.6 73-16.2 90-13.5ZM438.5 486.5c-2.8-5.2-2.8-23.5-2.5-32a157 157 0 0 1-60.5 35c19.2 2.4 50-1 63-3Z" fill="${colors.hair.value}"/><mask id="hairBangs-a" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="42" y="103" width="397" height="413"><path d="M274 104c88.8 2.4 125 57 132 84-55-8.7-182.5-20-201 30-41 111-15 243 0 297-55.2 4-123.7-15.7-151-26-5.5-6.5-1.7 19-10-104-14-208 102-250.5 140-267.5 30.4-13.6 73-16.2 90-13.5ZM438.5 486.5c-2.8-5.2-2.8-23.5-2.5-32a157 157 0 0 1-60.5 35c19.2 2.4 50-1 63-3Z" fill="#2A1200"/></mask><g mask="url(#hairBangs-a)"><path d="M303 146.2s-12.3-3.7-26.5 7.6c0 0 7-12.8 14.3-16.7 0 0-28-1.6-50 25.4 0 0 10.6-26.5 27.2-34.8 0 0-21 3.5-30.4 12 0 0 1.5-15.6 12.4-22.3 0 0-18.3-9.5-34.6-5.6 0 0 31.3-9.8 41.8-8.8 19.7-3.6 46.4 6.3 46.4 6.3-6.5.3-13.6 6-13.6 6 17.2-.6 35.8 7.3 35.8 7.3-8.7-.2-15 5.9-15 5.9 19.2 4 32.8 16.6 32.8 16.6-4.7-3.8-19.8-2.2-19.8-2.2 9.5 5 18.7 17 18.7 17l-17.4-6s-8.7 28.5-12.4 33.9c0 0 4.6-24.5 1-32 0 0-17.8 20-33.6 33.7 0 0 12.2-34.3 23-43.3Z" fill="#000" fill-opacity=".2"/></g><path d="M286.8 271c74.1 1 126.3-9.9 143.2-15.5-2.4-38.2-27.9-112.2-115-114.5-87.1-2.3-133.4 74.4-145 114.5 25 13.5 80.4 14.7 105.3 15.4l7.2-32.3 4.3 32.3Z" fill="${colors.hair.value}"/><path d="M193 172c-20 58.3-51.4 204-17 320-27.7-64.3-63-218.4 17-320ZM108 302c0-57.6 40-121.3 60-146-104.8 48-96.3 176.7-79 235-15.2-88.8 10.3-146.3 25-164-8 24.8-7.3 60.3-6 75ZM347 164c17.3 8.7 52.4 37.2 54 82 3.3-24.7-2.8-75.6-54-82ZM284 172c-6 10.3-17.8 36.8-17 60a50 50 0 0 1 17-60Z" fill="#000" fill-opacity=".2"/>`
|
|
83
|
+
,
|
|
84
|
+
halfShavedHead: (components, colors)=>`<path d="M347 169c8 36.8 49.7 54.3 69.5 58.5 6.8 23.6 8.5 71.8 8.5 92.5a83.8 83.8 0 0 1 33.5 31.5 47.4 47.4 0 0 1 1-28c1-4.4 2.4-9.4 3.5-16 3.1-18.7-16.3-42.8-26.6-55.7-1.3-1.6-2.5-3-3.4-4.3-4.1-5.4-2.8-17-1.4-29.9 1.6-13.5 3.3-28.4-1.1-38.6-8.5-20-36-37.5-50.5-39-6-.6-9.4-4.4-14.3-9.7-7-7.7-17.2-18.8-42.2-28.8a97.5 97.5 0 0 0-78 3.7c-97.4 8.3-133 108-135 113.1v.2a203.1 203.1 0 0 0-14.4 84c38.1 6.6 56.1 47.4 60.4 67 0 0 11.3.7 14-1.5 14-7.3 38.9-37.4 26.5-99-6-28-2-50.3 47-85 30.4-21.5 72-21.3 103-15ZM453 432c4-7.3 12.8-26.3 14-41.5a63 63 0 0 1 18.5 34.5 50 50 0 0 1-7.5 27.6c-3.3 6.5-6.1 12.2-5 16.9 2 8.4 6.5 13.8 8.5 15.5-13.7 6.2-50.1 15-80.5-5 10-5 35-22.4 52-48Z" fill="${colors.hair.value}"/><path d="M347 169c-8.5-19.5-41-59.4-103-63l1.5-.8c-97.4 8.3-133 108-135 113.1v.2a203.1 203.1 0 0 0-14.4 84c38.1 6.6 56.1 47.4 60.4 67 0 0 11.3.7 14-1.5 14-7.3 38.9-37.4 26.5-99-6-28-2-50.3 47-85 30.4-21.5 72-21.3 103-15Z" fill="#000" fill-opacity=".3"/><mask id="hairHalfShavedHead-a" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="244" y="95" width="242" height="398"><path d="M244 106c62 3.6 94.5 43.5 103 63 8 36.8 49.7 54.3 69.5 58.5 6.8 23.6 8.5 71.8 8.5 92.5a83.8 83.8 0 0 1 33.5 31.5c-4.5-18 1-23 4.5-44s-21.5-49-30-60 6-48.5-2.5-68.5-36-37.5-50.5-39-14-21.5-56.5-38.5A97 97 0 0 0 244 106ZM467 390.5c-1.2 15.2-10 34.2-14 41.5-17 25.6-42 43-52 48 30.4 20 66.8 11.2 80.5 5-2-1.7-6.5-7.1-8.5-15.5-2.5-10.5 14.5-25.5 12.5-44.5a63 63 0 0 0-18.5-34.5Z" fill="#238D81"/></mask><g fill="#000" fill-opacity=".2" mask="url(#hairHalfShavedHead-a)"><path d="M377 194.5a80.9 80.9 0 0 1-23-33c3.5 6.5 16 22.3 38 33s30.2 22.8 31.5 27.5c-8-14.5-31-15.5-46.5-27.5ZM449 313.5c.8-8.8-2-20-3.5-24.5 0 4.8-.5 16.5-2.5 24.5a37 37 0 0 1-9.5 16.5l15.5 10c-6.5-9-1-15.5 0-26.5ZM472 438.5a26 26 0 0 0 0-22c0 19.5-8 19-16 35s-2 32-7 29.5c-4-2-5.7-6.8-6-9-2 12.4.8 22.5 2.5 26a29 29 0 0 0 26.5-11c-12.5-18.5-5.5-36.5 0-48.5Z" style="mix-blend-mode:multiply"/></g>`
|
|
85
|
+
,
|
|
86
|
+
curlyShortHair: (components, colors)=>`<path d="M379.9 210a45.2 45.2 0 0 0 36.3 13.3c5 17.3 8.5 37 9.6 59.9a44.5 44.5 0 0 0 15-70.1 47.7 47.7 0 0 0 17.2-36.8 47 47 0 0 0-37.6-46.5 51.4 51.4 0 0 0-50.3-58.2c-7.6 0-14.8 1.7-21.3 4.8A50.7 50.7 0 0 0 302 44c-17.6 0-33 9.2-42.1 23.2A50.4 50.4 0 0 0 229 56.7c-21 0-39 12.9-46.9 31.2-6.3-3-13.4-4.6-20.8-4.6a51.3 51.3 0 0 0-50.6 51.1A52.4 52.4 0 0 0 76 220.8a52.3 52.3 0 0 0 35.2 89.8c1.9 0 3.7 0 5.6-.3 24.1 14.5 36.3 43.6 39.7 59.3 0 0 11.3.6 14-1.5 11-5.8 29-25.9 29.8-64.5a52.3 52.3 0 0 0 13.4-53.3 51.6 51.6 0 0 0 34-31.1A50.3 50.3 0 0 0 309 203a46.3 46.3 0 0 0 70.9 7Z" fill="${colors.hair.value}"/>`
|
|
191
87
|
};
|
|
192
88
|
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
return "\n<path d=\"M258.843 292.134c3.704 15.828 11.171 30.272 24.278 35.244 29 11 71 3 77-3.5 2.122-2.299 5.056-10.411 7.698-20.381 17.08-9.597 31.813-4.398 36.709-1.033 1.264 7.779 2.622 13.965 3.623 15.81 3.046 5.612 24.364 12.518 39.083 3.022 14.72-9.497 15.227-66.905 12.436-72.948-3.395-7.348-55.67-3.848-57.864 9.927-1.482 4.203-.739 17.205.765 30.089-7.998-2.667-19.114-3.787-31.38.477 2.912-14.796 4.326-29.637 1.43-34.463C367.5 237 261 229.5 258.621 242.878c-2.543 6.958-3.729 21.602-1.924 36.885-43.616-5.56-115.271-14.567-131.069-16.23-5.974-.629-16.759.869-25.836 6.158-4.647 2.707-9.095 6.553-12.136 11.882-3.079 5.395-4.502 11.943-3.616 19.615l11.92-1.376c-.614-5.328.4-9.28 2.118-12.291 1.756-3.077 4.464-5.544 7.755-7.462 6.798-3.961 15.013-4.963 18.539-4.592 16.087 1.693 91.272 11.153 134.471 16.667Z\" fill=\"#595757\" style=\"mix-blend-mode:multiply\"/>\n<g style=\"mix-blend-mode:screen\" opacity=\".2\">\n<mask id=\"accessoriesSunglasses-a\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"83\" y=\"236\" width=\"378\" height=\"97\">\n<path d=\"M258.561 290.605C262.17 307.578 269.785 323.414 284 328c31 10 70.121 2.299 76.121-4.409 2.165-2.42 5.356-10.984 8.152-21.459 16.919-9.604 31.431-4.248 36.227-.815 1.272 8.11 2.642 14.574 3.651 16.492 3.046 5.791 24.364 12.918 39.083 3.118 14.72-9.8 15.227-69.044 12.436-75.281-13.028-4.454-40.606-7.572-57.864 10.246-1.489 4.358-.732 17.882.787 31.24-7.916-2.716-18.871-3.875-30.963.329 2.877-15.061 3.945-30.188-.13-35.461C358 238 283 231 259 241c-2.513 3.301-4.295 19.559-2.39 37.245-43.626-5.739-115.175-15.02-130.962-16.735-6.019-.654-16.837.904-25.927 6.37-4.658 2.801-9.087 6.762-12.105 12.22-3.048 5.513-4.455 12.195-3.579 20.033l11.926-1.333c-.624-5.577.407-9.732 2.155-12.893 1.779-3.218 4.506-5.771 7.786-7.743 6.785-4.08 14.967-5.102 18.448-4.724 16.053 1.744 90.968 11.47 134.209 17.165Z\" fill=\"#595757\" style=\"mix-blend-mode:multiply\"/>\n</mask>\n<g mask=\"url(#accessoriesSunglasses-a)\" fill=\"#fff\">\n<path d=\"m303.819 223.625-65.717 90.892 18.021 13.756L340.725 221l-36.906 2.625ZM344.247 235.347l-77.3 96.032 2.949 22.336 94.919-111.375-20.568-6.993ZM474.801 231.607l-77.3 96.032 2.95 22.336L495.37 238.6l-20.569-6.993Z\"/>\n</g>\n</g>\n";
|
|
211
|
-
},
|
|
212
|
-
'faceMask': function faceMask(components, colors) {
|
|
213
|
-
return "\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M158.841 304.084c22.646 9.196 45.447 22.437 59.546 31.836l-2.774 4.16c-13.901-9.267-36.4-22.327-58.654-31.364-11.129-4.519-22.106-7.995-31.862-9.515-9.816-1.528-18.046-1.021-23.952 2.021l-2.29-4.444c7.294-3.758 16.789-4.109 27.011-2.517 10.281 1.601 21.654 5.226 32.975 9.823Zm57.047 122.313a462.74 462.74 0 0 1 9.018-2.325l1.188 4.856c-2.97.726-5.795 1.476-8.52 2.199-7.343 1.949-13.957 3.704-20.7 4.277-9.478.804-19.28-.679-32.406-6.627l2.064-4.554c12.474 5.652 21.422 6.919 29.919 6.198 6.276-.532 12.276-2.124 19.437-4.024Z\" fill=\"#fff\"/>\n<path d=\"M386.5 311c-70.4-.4-142.333 15.5-169.5 23.5 14 24 19 59.5 5 95.5 45.898 26 153.824 66.6 218.347 21 11.571-11.817 24.81-30.836 31.153-57 9.6-39.6-23-68.833-40.5-78.5-9.6-1.6-28.5-4.409-44.5-4.5Z\" fill=\"#F7F7F7\"/>\n<path d=\"M211.5 338.5c2.4-4 13-7.167 19-7.5 3 3 9.2 17.1 10 49.5 1 40.5-7 52-8 54.5-.743 1.857-14-5-17-6.5s-3-4.5 0-11c6.455-13.985 3-54.5 0-63.5-2.4-7.2-3-12.833-4-15.5Z\" fill=\"#EDEDED\"/>\n<g fill=\"#EDEDED\">\n<path d=\"M409 344c-35.2-4.8-106 18-137 30 114.4-28.8 181.667-12 201 0-6.667-8-28.8-25.2-64-30ZM312 403c26 12.333 91.4 31.2 145 8-25 20-89 46.4-145-8Z\"/>\n</g>\n";
|
|
214
|
-
},
|
|
215
|
-
'mustache': function mustache(components, colors) {
|
|
216
|
-
return "\n<path d=\"M393.504 329.68c9.057-5.227 30.726-14.266 45.716-9.007 8.642 3.032 14.838 9.897 20.289 15.936 5.917 6.557 10.956 12.141 17.295 10.795.327-.069.591.38.332.592-5.759 4.713-25.951 19.987-39.429 20.653-16.294.805-24.2-7.013-36.423-19.101-1.204-1.19-2.449-2.422-3.749-3.691-3.857 10.221-18.039 23.718-50.414 39.944-59.034 29.587-97.681-2.886-116.343-24.922-.239-.282.302-.826.621-.641 7.161 4.156 15.27.48 35.771-8.975 9.389-4.33 17.818-8.772 25.661-12.905 19.317-10.179 35.078-18.484 52.873-18.634 20.015-.169 40.988 6.295 47.224 9.493.196.152.388.306.576.463Z\" fill=\"#71472D\"/>\n<g fill=\"#5E351B\">\n<path d=\"M339.639 337.541c10.958-4.856 32.552-1.14 41.979 1.325-32.984-1.041-42.373 11.169-68.833 25.342-21.169 11.338-41.857 5.349-49.555.938 27.734 8.879 62.71-21.534 76.409-27.605ZM366.589 355.4c-8.243 7.577-28.234 22.821-42.252 23.179 10.419-7.842 33.456-23.456 42.252-23.179ZM411.324 332.799c4.571-2.19 15.769-5.105 23.988.757 9.242 6.592 16.488 12.311 21.158 12.405.548-.05 1.041-.114 1.468-.185a4.766 4.766 0 0 1-1.468.185c-4.828.443-13.997-.144-21.379-5.408-8.219-5.862-19.269-7.612-23.767-7.754Z\"/>\n</g>\n";
|
|
217
|
-
}
|
|
89
|
+
|
|
90
|
+
const $d9f539bfb3373baa$export$3bb43880931639de = {
|
|
91
|
+
catEars: (components, colors)=>`<path d="M192.2 102.9c11.2-17.1 55.8 14.7 77.3 33-29.2-1.8-45.2 37.3-50.4 56.4-9.2 9-24.5 10.7-30.7 10.7-3.4-26.3-7.3-83 3.8-100.1Z" fill="#A09B9B"/><mask id="accessoriesCatEars-a" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="184" y="97" width="86" height="106"><path d="M192.2 102.9c11.2-17.1 55.8 14.7 77.3 33-29.2-1.8-45.2 37.3-50.4 56.4-9.2 9-24.5 10.7-30.7 10.7-3.4-26.3-7.3-83 3.8-100.1Z" fill="#A09B9B"/></mask><g fill="#C4C4C4" mask="url(#accessoriesCatEars-a)"><path d="M185.8 198.8c7.7-2.8 17.5-6 21.4-7.3l-25-8.9 3.6 16.2ZM179.5 173l-.6-10.8 18 6.2-17.4 4.6Z"/></g><path d="M269.5 136c-28.5 9.7-45.5 41.2-50.4 55.7-22.3-27.9-33.6-76.6-22-89.1 9.3-10 52.1 18 72.4 33.3Z" fill="#FEB3A4"/><mask id="accessoriesCatEars-b" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="192" y="100" width="78" height="92"><path d="M269.5 136c-28.5 9.7-45.5 41.2-50.4 55.7-22.3-27.9-33.6-76.6-22-89.1 9.3-10 52.1 18 72.4 33.3Z" fill="#FEB3A4"/></mask><g mask="url(#accessoriesCatEars-b)"><path d="M233.4 126.5c-21-.4-17.6 44.1-13.1 66.5l55.1-56a88.3 88.3 0 0 0-42-10.5Z" fill="#FFE7E2"/></g><mask id="accessoriesCatEars-c" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="336" y="102" width="90" height="80"><path d="M407 182a162 162 0 0 0-70.5-68.5l42-11.5 47.5 12.5-19 67.5Z" fill="#C4C4C4"/></mask><g mask="url(#accessoriesCatEars-c)"><path d="M387.5 106.9c13.4.4 14.4 38.3 13.2 57.7-10.5-18-37.3-13.5-49.3-9.7-8.4-2.2-15.3-10.7-17.7-14.4 12.4-11.4 40.5-34.1 53.8-33.6Z" fill="#A09B9B"/><mask id="accessoriesCatEars-d" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="333" y="106" width="69" height="59"><path d="M387.5 106.9c13.4.4 14.4 38.3 13.2 57.7-10.5-18-37.3-13.5-49.3-9.7-8.4-2.2-15.3-10.7-17.7-14.4 12.4-11.4 40.5-34.1 53.8-33.6Z" fill="#A09B9B"/></mask><g fill="#C4C4C4" mask="url(#accessoriesCatEars-d)"><path d="M334.8 137.5c4.6 3.5 10 8.2 12.3 10l-5.3-18-7 8ZM345.8 124.5l5.4-4.2L355 133l-9.2-8.6Z"/></g><path d="M401 172.5c-16.3-13.4-39.8-20.1-49.3-17.8 5.8-23.2 26.8-47.5 37.9-45 8.9 1.8 11.4 45.3 11.4 62.8Z" fill="#FEB3A4"/><mask id="accessoriesCatEars-e" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="351" y="109" width="50" height="65"><path d="M401 174c-16.3-13.4-39.8-21.6-49.3-19.3 5.8-23.2 26.8-47.5 37.9-45 8.9 1.8 11.4 46.8 11.4 64.3Z" fill="#FEB3A4"/></mask><g mask="url(#accessoriesCatEars-e)"><path d="M392.3 141.3c-9.4-14.9-30.9 3.9-40.5 15l54.2 18a93.3 93.3 0 0 0-13.7-33Z" fill="#FFE7E2"/></g></g>`
|
|
92
|
+
,
|
|
93
|
+
glasses: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="m479 283.3-49-1.8-.5-10.5 49.8 2.3-.2 10Z" fill="#896307"/><path d="M304 220.7c-27.2 4.3-46 32.2-41.2 63 4.9 30.9 31.4 51.6 58.6 47.3 27.2-4.3 46.1-32.2 41.3-63-4.9-30.8-31.4-51.6-58.6-47.3ZM252.2 273c.5-30.6 20.9-57.4 50.3-62 33.3-5.3 64.4 20 70 55.6l3.3-1.2a27 27 0 0 1 13-.7c.6-12.5 4.2-24 10.2-33a40.6 40.6 0 0 1 31.5-19.8 42 42 0 0 1 34 16.3 70.9 70.9 0 0 1 15.8 40.8 69 69 0 0 1-10 42.3 40.6 40.6 0 0 1-31.6 19.7 42 42 0 0 1-34-16.2A70.6 70.6 0 0 1 389 275c-3.4-1.4-7-1.2-10.4-.2-2.1.6-4 1.5-5.3 2.2.3 31.3-20.3 59-50.3 63.8-33.4 5.2-64.4-20.1-70-55.6a73 73 0 0 1-.3-2.2l-86.4-14a102.2 102.2 0 0 0-44.4 2.6c-12 4-18.3 18.8-18.5 28l-9.9-.2c.3-15.3 11.4-32.6 25.3-37.3 13.8-4.6 31.7-5.3 48.8-3v.1l84.6 13.6Zm155-35.8a59 59 0 0 0-8.4 36c1 14.1 6.1 26.5 13.4 35 7.3 8.7 16.6 13.3 26 12.8 9.3-.5 17.8-6 23.8-15.2a59 59 0 0 0 8.4-36.1c-1-14.1-6-26.5-13.4-35-7.3-8.6-16.5-13.3-26-12.8-9.3.5-17.7 6-23.8 15.3Z" fill="#C5900F"/></g>`
|
|
94
|
+
,
|
|
95
|
+
sailormoonCrown: (components, colors)=>`<path d="M148 160c101.9-11.2 203 37.8 229.5 60.5 9.6-11.2 25.4-24.7 36.4-26 2.6 6 7 21 8.1 24.5-16 0-33.5 19.8-42.1 33.5-66.9-58-160.1-58-254.9-58a95.8 95.8 0 0 1 23-34.5Z" fill="#FFC00C"/><mask id="accessoriesSailormoonCrown-a" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="125" y="158" width="297" height="95"><path d="M148.5 160.5c101.9-11.2 202.5 37.3 229 60 9.6-11.2 25.4-24.7 36.4-26 2.6 6 7 21 8.1 24.5-16 0-33.5 19.8-42.1 33.5-75.9-62.5-161.4-55-254.9-58a92.3 92.3 0 0 1 23.5-34Z" fill="#FFC00C"/></mask><g fill="#FFD45B" mask="url(#accessoriesSailormoonCrown-a)"><path d="m344 240.5 22.4-36.6-6.1-9.5-26.4 37.6 10 8.5ZM388.5 246.5l28.2-55.5 14 3.4L396 249l-7.6-2.5ZM327.3 225.8 353 191l-5-3-25 33.8 4.2 4ZM276 215l30.6-36.5-14.3-7-36 41L276 215Z"/></g><ellipse cx="378.2" cy="232.5" rx="8.8" ry="13.5" fill="#FF3C15"/><mask id="accessoriesSailormoonCrown-b" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="369" y="219" width="18" height="27"><ellipse cx="378.2" cy="232.5" rx="8.8" ry="13.5" fill="#FF3C15"/></mask><g mask="url(#accessoriesSailormoonCrown-b)"><path d="M388.1 227a25.9 25.9 0 0 1-17 16.5c1.2 1.9 5 5.2 10.6 3.7 5.6-1.4 6.6-14 6.4-20.2Z" fill="#CB1414"/><ellipse rx="3" ry="4.9" transform="matrix(.94302 .33275 -.30774 .95147 376 225.9)" fill="#FF7256"/></g>`
|
|
96
|
+
,
|
|
97
|
+
clownNose: (components, colors)=>`<ellipse cx="387" cy="328.5" rx="29" ry="28.5" fill="#FF3C15"/><mask id="accessoriesClownNose-a" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="359" y="300" width="57" height="57"><ellipse cx="387.5" cy="328.5" rx="28.4" ry="28.3" fill="#FF3C15"/></mask><g mask="url(#accessoriesClownNose-a)"><path d="M390 346.5a43.8 43.8 0 0 1-34-16.5c2.3 11.5 12.4 34.5 34 34.5s27-23 27-34.5a30.6 30.6 0 0 1-27 16.5Z" fill="#DD2400"/><ellipse rx="9.2" ry="10.9" transform="matrix(.9746 .22399 -.44476 .89565 380.5 314.6)" fill="#FF7256"/></g>`
|
|
98
|
+
,
|
|
99
|
+
sleepMask: (components, colors)=>`<path d="M99 260c6.5 0 97-2.3 127-7l27.5 58c-40.8 9.6-94.3 9.7-116 8.5A59.3 59.3 0 0 0 88 299c.4-8.8 4.5-39 11-39Z" fill="#5E0E56"/><path d="M438.3 234c-65.2-64.1-159.5-37.2-199.4-6.7a50.2 50.2 0 0 0-19.9 29.2c-4 16.1-2.6 45.3 29.8 65.1 32.4 19.8 72.7 6.3 82 0 9.5-6.2 27-20.8 51-19.8 19.3.9 34.5 10.1 39.8 14.6 9.7 3.9 27.4-1.8 27.4-36 0-34.1-6.5-43.5-10.7-46.3Z" fill="#9A3E91"/><path fill-rule="evenodd" clip-rule="evenodd" d="M328.8 270.3a32.6 32.6 0 0 0 3.8-19.2l-5 .6c.6 4.5-.1 12-4.4 18.2-3.5 5-9.4 9.4-19.3 11a38.7 38.7 0 0 1-24.6-3.5 31.7 31.7 0 0 1-13.3-12.7l-4.5 2.2c2 4 6.3 9.3 12.8 13.4l-8.8 11 4 3.2 9.3-11.8c6.2 3 14 4.5 23.4 3.5l2.3 15 5-.7-2.4-15.1c8.8-2 14.8-6 18.9-11l9.4 4.7 2.2-4.4-8.8-4.4ZM429.3 276.5c4.7-3.5 7.5-8.4 8.8-12l-4.7-1.6a22 22 0 0 1-8.8 10.9 17.9 17.9 0 0 1-15.3 1.3c-6.8-2.1-11.1-6-13.8-10-3-4.9-4-10-4-13h-5c0 3.3.8 8.3 3.4 13.3l-8.8 4.5 2.3 4.5 9.3-4.8c2.9 3.8 7 7.2 12.8 9.4l-3.5 10.8 4.8 1.5 3.4-10.8c5.8 1.3 10.8.6 14.9-1.3l4 5.7 4-2.9-3.8-5.5Z" fill="#F9ACF1"/>`
|
|
100
|
+
,
|
|
101
|
+
sunglasses: (components, colors)=>`<path d="M258.8 292.1c3.7 15.9 11.2 30.3 24.3 35.3 29 11 71 3 77-3.5a67 67 0 0 0 7.7-20.4c17-9.6 31.8-4.4 36.7-1 1.3 7.7 2.6 14 3.7 15.8 3 5.6 24.3 12.5 39 3 14.8-9.5 15.3-67 12.5-73-3.4-7.3-55.7-3.8-57.9 10-1.5 4.2-.7 17.2.8 30-8-2.6-19.1-3.7-31.4.5 3-14.8 4.3-29.6 1.4-34.4-5.1-17.4-111.6-24.9-114-11.5-2.5 7-3.7 21.6-2 36.9-43.5-5.6-115.2-14.6-131-16.3a47 47 0 0 0-25.8 6.2c-4.7 2.7-9.1 6.5-12.1 11.9-3.1 5.4-4.5 12-3.7 19.6l12-1.4c-.7-5.3.4-9.3 2-12.3 1.8-3 4.5-5.5 7.8-7.4 6.8-4 15-5 18.6-4.6 16 1.7 91.2 11.1 134.4 16.6Z" fill="#595757" style="mix-blend-mode:multiply"/><g style="mix-blend-mode:screen" opacity=".2"><mask id="accessoriesSunglasses-a" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="83" y="236" width="378" height="97"><path d="M258.6 290.6c3.6 17 11.2 32.8 25.4 37.4 31 10 70.1 2.3 76.1-4.4 2.2-2.4 5.4-11 8.2-21.5 16.9-9.6 31.4-4.2 36.2-.8a81.7 81.7 0 0 0 3.7 16.5c3 5.8 24.3 13 39 3.1 14.8-9.8 15.3-69 12.5-75.3-13-4.4-40.6-7.5-57.9 10.3-1.5 4.3-.7 17.9.8 31.2-8-2.7-18.9-3.8-31 .4 3-15.1 4-30.2-.1-35.5C358 238 283 231 259 241c-2.5 3.3-4.3 19.6-2.4 37.2-43.6-5.7-115.2-15-131-16.7-6-.6-16.8 1-25.9 6.4a33 33 0 0 0-12 12.2 33 33 0 0 0-3.7 20l12-1.3a21 21 0 0 1 2.1-12.9 21 21 0 0 1 7.8-7.7c6.8-4.1 15-5.1 18.5-4.8 16 1.8 91 11.5 134.2 17.2Z" fill="#595757" style="mix-blend-mode:multiply"/></mask><g mask="url(#accessoriesSunglasses-a)" fill="#fff"><path d="m303.8 223.6-65.7 91 18 13.7L340.7 221l-36.9 2.6ZM344.2 235.3l-77.3 96 3 22.4 95-111.4-20.7-7ZM474.8 231.6l-77.3 96 3 22.4 94.9-111.4-20.6-7Z"/></g></g>`
|
|
102
|
+
,
|
|
103
|
+
faceMask: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M158.8 304a359.4 359.4 0 0 1 59.6 32l-2.8 4c-13.9-9.2-36.4-22.2-58.6-31.3-11.2-4.5-22.1-8-32-9.5a40 40 0 0 0-23.9 2l-2.2-4.4a44.7 44.7 0 0 1 27-2.5c10.2 1.6 21.6 5.2 33 9.8Zm57 122.4 9.1-2.3 1.2 4.8-8.5 2.2c-7.4 2-14 3.7-20.7 4.3-9.5.8-19.3-.7-32.4-6.6l2-4.6c12.5 5.7 21.5 7 30 6.2 6.2-.5 12.2-2.1 19.4-4Z" fill="#fff"/><path d="M386.5 311A664.6 664.6 0 0 0 217 334.5c14 24 19 59.5 5 95.5 45.9 26 153.8 66.6 218.3 21a123.2 123.2 0 0 0 31.2-57c9.6-39.6-23-68.8-40.5-78.5-9.6-1.6-28.5-4.4-44.5-4.5Z" fill="#F7F7F7"/><path d="M211.5 338.5c2.4-4 13-7.2 19-7.5 3 3 9.2 17.1 10 49.5 1 40.5-7 52-8 54.5-.7 1.9-14-5-17-6.5s-3-4.5 0-11c6.5-14 3-54.5 0-63.5-2.4-7.2-3-12.8-4-15.5Z" fill="#EDEDED"/><path d="M409 344c-35.2-4.8-106 18-137 30 114.4-28.8 181.7-12 201 0-6.7-8-28.8-25.2-64-30ZM312 403c26 12.3 91.4 31.2 145 8-25 20-89 46.4-145-8Z" fill="#EDEDED"/>`
|
|
104
|
+
,
|
|
105
|
+
mustache: (components, colors)=>`<path d="M393.5 329.7c9-5.2 30.7-14.3 45.7-9 8.7 3 14.9 9.9 20.3 16 6 6.5 11 12 17.3 10.7.3 0 .6.4.3.6-5.7 4.7-26 20-39.4 20.6-16.3.9-24.2-7-36.4-19l-3.8-3.7c-3.8 10.2-18 23.7-50.4 40-59 29.5-97.7-3-116.3-25-.3-.3.3-.8.6-.7 7.2 4.2 15.3.5 35.8-9 9.4-4.3 17.8-8.7 25.6-12.8 19.3-10.2 35.1-18.5 53-18.7a124.6 124.6 0 0 1 47.7 10Z" fill="#71472D"/><path d="M339.6 337.5c11-4.8 32.6-1 42 1.4-33-1-42.4 11.1-68.8 25.3a53.7 53.7 0 0 1-49.6 1c27.8 8.8 62.7-21.6 76.4-27.7ZM366.6 355.4c-8.3 7.6-28.2 22.8-42.3 23.2 10.5-7.9 33.5-23.5 42.3-23.2ZM411.3 332.8c4.6-2.2 15.8-5.1 24 .8 9.3 6.5 16.5 12.3 21.2 12.4-4.9.4-14-.2-21.4-5.4a48.2 48.2 0 0 0-23.8-7.8Z" fill="#5E351B"/>`
|
|
218
106
|
};
|
|
219
107
|
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
function $8043bdee62d2347e$export$5bc6178a9a86ed74({ prng: prng , group: group , values: values = [] }) {
|
|
112
|
+
const componentCollection = $10f448f0912f3034$exports;
|
|
113
|
+
const key = prng.pick(values);
|
|
114
|
+
if (componentCollection[group][key]) return {
|
|
115
|
+
name: key,
|
|
116
|
+
value: componentCollection[group][key]
|
|
117
|
+
};
|
|
118
|
+
else return undefined;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
function $21f6ceaa9507239f$export$4e811121b221213b({ prng: prng , options: options }) {
|
|
123
|
+
const faceComponent = $8043bdee62d2347e$export$5bc6178a9a86ed74({
|
|
124
|
+
prng: prng,
|
|
125
|
+
group: 'face',
|
|
126
|
+
values: options.face
|
|
127
|
+
});
|
|
128
|
+
const mouthComponent = $8043bdee62d2347e$export$5bc6178a9a86ed74({
|
|
129
|
+
prng: prng,
|
|
130
|
+
group: 'mouth',
|
|
131
|
+
values: options.mouth
|
|
132
|
+
});
|
|
133
|
+
const eyesComponent = $8043bdee62d2347e$export$5bc6178a9a86ed74({
|
|
134
|
+
prng: prng,
|
|
135
|
+
group: 'eyes',
|
|
136
|
+
values: options.eyes
|
|
137
|
+
});
|
|
138
|
+
const hairComponent = $8043bdee62d2347e$export$5bc6178a9a86ed74({
|
|
139
|
+
prng: prng,
|
|
140
|
+
group: 'hair',
|
|
141
|
+
values: options.hair
|
|
142
|
+
});
|
|
143
|
+
const accessoriesComponent = $8043bdee62d2347e$export$5bc6178a9a86ed74({
|
|
144
|
+
prng: prng,
|
|
145
|
+
group: 'accessories',
|
|
146
|
+
values: options.accessories
|
|
147
|
+
});
|
|
235
148
|
return {
|
|
236
|
-
|
|
237
|
-
|
|
149
|
+
face: faceComponent,
|
|
150
|
+
mouth: mouthComponent,
|
|
151
|
+
eyes: eyesComponent,
|
|
152
|
+
hair: hairComponent,
|
|
153
|
+
accessories: prng.bool(options.accessoriesProbability) ? accessoriesComponent : undefined
|
|
238
154
|
};
|
|
239
|
-
} else {
|
|
240
|
-
return undefined;
|
|
241
|
-
}
|
|
242
155
|
}
|
|
243
156
|
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
157
|
+
|
|
158
|
+
var $66874dd1965cd189$exports = {};
|
|
159
|
+
|
|
160
|
+
$parcel$export($66874dd1965cd189$exports, "skin", function () { return $365eb8c41922ea5d$export$fcdfe9c56b00fbfc; });
|
|
161
|
+
$parcel$export($66874dd1965cd189$exports, "hair", function () { return $e020f0f044d2147a$export$12c365d50e7cb3d6; });
|
|
162
|
+
const $365eb8c41922ea5d$export$fcdfe9c56b00fbfc = {
|
|
163
|
+
variant01: 'rgba(255, 228, 192, 1)',
|
|
164
|
+
variant02: 'rgba(245, 215, 177, 1)',
|
|
165
|
+
variant03: 'rgba(239, 204, 159, 1)',
|
|
166
|
+
variant04: 'rgba(226, 186, 135, 1)',
|
|
167
|
+
variant05: 'rgba(201, 156, 98, 1)',
|
|
168
|
+
variant06: 'rgba(164, 117, 57, 1)',
|
|
169
|
+
variant07: 'rgba(140, 90, 43, 1)',
|
|
170
|
+
variant08: 'rgba(100, 61, 25, 1)'
|
|
253
171
|
};
|
|
254
172
|
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
173
|
+
|
|
174
|
+
const $e020f0f044d2147a$export$12c365d50e7cb3d6 = {
|
|
175
|
+
variant01: 'rgba(34, 15, 0, 1)',
|
|
176
|
+
variant02: 'rgba(58, 26, 0, 1)',
|
|
177
|
+
variant03: 'rgba(113, 71, 45, 1)',
|
|
178
|
+
variant04: 'rgba(226, 186, 135, 1)',
|
|
179
|
+
variant05: 'rgba(96, 93, 228, 1)',
|
|
180
|
+
variant06: 'rgba(35, 141, 128, 1)',
|
|
181
|
+
variant07: 'rgba(213, 108, 12, 1)',
|
|
182
|
+
variant08: 'rgba(233, 183, 41, 1)'
|
|
264
183
|
};
|
|
265
184
|
|
|
266
|
-
var colors = /*#__PURE__*/Object.freeze({
|
|
267
|
-
__proto__: null,
|
|
268
|
-
skin: skin,
|
|
269
|
-
hair: hair
|
|
270
|
-
});
|
|
271
185
|
|
|
272
|
-
function pickColor(prng, group, values) {
|
|
273
|
-
var _colorCollection$grou;
|
|
274
186
|
|
|
275
|
-
var colorCollection = colors;
|
|
276
187
|
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
188
|
+
function $3838f782bd3219b8$export$c6d89e41e42fa994({ prng: prng , group: group , values: values = [] }) {
|
|
189
|
+
const colorCollection = $66874dd1965cd189$exports;
|
|
190
|
+
if (values.length === 0) values.push('transparent');
|
|
191
|
+
const key = prng.pick(values);
|
|
192
|
+
var _key;
|
|
193
|
+
return {
|
|
194
|
+
name: key,
|
|
195
|
+
value: (_key = colorCollection[group][key]) !== null && _key !== void 0 ? _key : key
|
|
196
|
+
};
|
|
197
|
+
}
|
|
198
|
+
|
|
280
199
|
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
200
|
+
function $75acfa017a35891f$export$6cee60e8aa85e528({ prng: prng , options: options }) {
|
|
201
|
+
return {
|
|
202
|
+
skin: $3838f782bd3219b8$export$c6d89e41e42fa994({
|
|
203
|
+
prng: prng,
|
|
204
|
+
group: 'skin',
|
|
205
|
+
values: options.skinColor
|
|
206
|
+
}),
|
|
207
|
+
hair: $3838f782bd3219b8$export$c6d89e41e42fa994({
|
|
208
|
+
prng: prng,
|
|
209
|
+
group: 'hair',
|
|
210
|
+
values: options.hairColor
|
|
211
|
+
})
|
|
212
|
+
};
|
|
286
213
|
}
|
|
287
214
|
|
|
288
|
-
function onPreCreate(_ref) {// Write your modifications here
|
|
289
215
|
|
|
290
|
-
|
|
291
|
-
|
|
216
|
+
function $e548b00abd66dd67$export$19269755e7fb6f76({ prng: prng , options: options , preview: preview }) {
|
|
217
|
+
// Write your modifications here
|
|
292
218
|
}
|
|
293
219
|
|
|
294
|
-
function onPostCreate(_ref) {// Write your modifications here
|
|
295
220
|
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
_ref.components;
|
|
299
|
-
_ref.colors;
|
|
221
|
+
function $2c5e9f5af0d84528$export$2538c3cd8a13189f({ prng: prng , options: options , components: components , colors: colors , preview: preview }) {
|
|
222
|
+
// Write your modifications here
|
|
300
223
|
}
|
|
301
224
|
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
225
|
+
|
|
226
|
+
const $af73eb17caf11568$export$62ad7b0c781000e9 = {
|
|
227
|
+
face: {
|
|
228
|
+
width: 446.5179138183594,
|
|
229
|
+
height: 467.063720703125
|
|
230
|
+
},
|
|
231
|
+
mouth: {
|
|
232
|
+
width: 530,
|
|
233
|
+
height: 600
|
|
234
|
+
},
|
|
235
|
+
eyes: {
|
|
236
|
+
width: 530,
|
|
237
|
+
height: 600
|
|
238
|
+
},
|
|
239
|
+
hair: {
|
|
240
|
+
width: 530,
|
|
241
|
+
height: 600
|
|
242
|
+
},
|
|
243
|
+
accessories: {
|
|
244
|
+
width: 530,
|
|
245
|
+
height: 600
|
|
246
|
+
}
|
|
247
|
+
};
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
const $bcb91056768bac68$export$1d567c320f4763bc = {
|
|
251
|
+
meta: {
|
|
252
|
+
title: 'Custom Avatar',
|
|
253
|
+
creator: 'Ashley Seo',
|
|
254
|
+
source: 'https://www.figma.com/community/file/881358461963645496',
|
|
255
|
+
license: {
|
|
256
|
+
name: 'CC BY 4.0',
|
|
257
|
+
url: 'https://creativecommons.org/licenses/by/4.0/'
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
schema: (/*@__PURE__*/$parcel$interopDefault($3b3fedbcfb63cefa$exports)),
|
|
261
|
+
create: ({ prng: prng , options: options })=>{
|
|
262
|
+
var ref, ref1, ref2, ref3, ref4;
|
|
263
|
+
$e548b00abd66dd67$export$19269755e7fb6f76({
|
|
264
|
+
prng: prng,
|
|
265
|
+
options: options,
|
|
266
|
+
preview: false
|
|
267
|
+
});
|
|
268
|
+
const components = $21f6ceaa9507239f$export$4e811121b221213b({
|
|
269
|
+
prng: prng,
|
|
270
|
+
options: options
|
|
271
|
+
});
|
|
272
|
+
const colors = $75acfa017a35891f$export$6cee60e8aa85e528({
|
|
273
|
+
prng: prng,
|
|
274
|
+
options: options
|
|
275
|
+
});
|
|
276
|
+
$2c5e9f5af0d84528$export$2538c3cd8a13189f({
|
|
277
|
+
prng: prng,
|
|
278
|
+
options: options,
|
|
279
|
+
components: components,
|
|
280
|
+
colors: colors,
|
|
281
|
+
preview: false
|
|
282
|
+
});
|
|
283
|
+
var ref5, ref6, ref7, ref8, ref9;
|
|
284
|
+
return {
|
|
285
|
+
attributes: {
|
|
286
|
+
viewBox: '0 0 480 480',
|
|
287
|
+
fill: 'none',
|
|
288
|
+
'shape-rendering': 'auto'
|
|
289
|
+
},
|
|
290
|
+
body: `<g transform="matrix(.85775 0 0 .85427 52 47)">${(ref5 = (ref = components.face) === null || ref === void 0 ? void 0 : ref.value(components, colors)) !== null && ref5 !== void 0 ? ref5 : ''}</g><g transform="matrix(.85472 0 0 .855 19 -17)">${(ref6 = (ref1 = components.mouth) === null || ref1 === void 0 ? void 0 : ref1.value(components, colors)) !== null && ref6 !== void 0 ? ref6 : ''}</g><g transform="matrix(.85472 0 0 .855 19 -17)">${(ref7 = (ref2 = components.eyes) === null || ref2 === void 0 ? void 0 : ref2.value(components, colors)) !== null && ref7 !== void 0 ? ref7 : ''}</g><g transform="matrix(.85472 0 0 .85667 18 -15)">${(ref8 = (ref3 = components.hair) === null || ref3 === void 0 ? void 0 : ref3.value(components, colors)) !== null && ref8 !== void 0 ? ref8 : ''}</g><g transform="matrix(.85472 0 0 .85667 14 -12)">${(ref9 = (ref4 = components.accessories) === null || ref4 === void 0 ? void 0 : ref4.value(components, colors)) !== null && ref9 !== void 0 ? ref9 : ''}</g>`
|
|
291
|
+
};
|
|
292
|
+
},
|
|
293
|
+
preview: ({ prng: prng , options: options , property: property })=>{
|
|
294
|
+
const componentGroup = property.toString();
|
|
295
|
+
const colorGroup = property.toString().replace(/Color$/, '');
|
|
296
|
+
$e548b00abd66dd67$export$19269755e7fb6f76({
|
|
297
|
+
prng: prng,
|
|
298
|
+
options: options,
|
|
299
|
+
preview: true
|
|
300
|
+
});
|
|
301
|
+
const components = $21f6ceaa9507239f$export$4e811121b221213b({
|
|
302
|
+
prng: prng,
|
|
303
|
+
options: options
|
|
304
|
+
});
|
|
305
|
+
const colors = $75acfa017a35891f$export$6cee60e8aa85e528({
|
|
306
|
+
prng: prng,
|
|
307
|
+
options: options
|
|
308
|
+
});
|
|
309
|
+
$2c5e9f5af0d84528$export$2538c3cd8a13189f({
|
|
310
|
+
prng: prng,
|
|
311
|
+
options: options,
|
|
312
|
+
components: components,
|
|
313
|
+
colors: colors,
|
|
314
|
+
preview: true
|
|
315
|
+
});
|
|
316
|
+
if (componentGroup in components) {
|
|
317
|
+
var ref;
|
|
318
|
+
const { width: width , height: height } = $af73eb17caf11568$export$62ad7b0c781000e9[componentGroup];
|
|
319
|
+
var ref10;
|
|
320
|
+
return {
|
|
321
|
+
attributes: {
|
|
322
|
+
viewBox: `0 0 ${width} ${height}`,
|
|
323
|
+
fill: 'none',
|
|
324
|
+
'shape-rendering': 'auto'
|
|
325
|
+
},
|
|
326
|
+
body: (ref10 = (ref = components[componentGroup]) === null || ref === void 0 ? void 0 : ref.value(components, colors)) !== null && ref10 !== void 0 ? ref10 : ''
|
|
327
|
+
};
|
|
328
|
+
}
|
|
329
|
+
if (colorGroup in colors) return {
|
|
330
|
+
attributes: {
|
|
331
|
+
viewBox: `0 0 1 1`,
|
|
332
|
+
fill: 'none',
|
|
333
|
+
'shape-rendering': 'auto'
|
|
334
|
+
},
|
|
335
|
+
body: `<rect width="1" height="1" fill="${colors[colorGroup].value}" />`
|
|
336
|
+
};
|
|
337
|
+
return undefined;
|
|
310
338
|
}
|
|
311
|
-
},
|
|
312
|
-
schema: schema$1,
|
|
313
|
-
create: function create(_ref) {
|
|
314
|
-
var _options$skinColor, _options$hairColor, _components$face$valu, _components$face, _components$mouth$val, _components$mouth, _components$eyes$valu, _components$eyes, _components$hair$valu, _components$hair, _components$accessori, _components$accessori2;
|
|
315
|
-
|
|
316
|
-
var prng = _ref.prng,
|
|
317
|
-
options = _ref.options;
|
|
318
|
-
onPreCreate({
|
|
319
|
-
prng: prng,
|
|
320
|
-
options: options
|
|
321
|
-
});
|
|
322
|
-
var faceComponent = pickComponent(prng, 'face', options.face);
|
|
323
|
-
var mouthComponent = pickComponent(prng, 'mouth', options.mouth);
|
|
324
|
-
var eyesComponent = pickComponent(prng, 'eyes', options.eyes);
|
|
325
|
-
var hairComponent = pickComponent(prng, 'hair', options.hair);
|
|
326
|
-
var accessoriesComponent = pickComponent(prng, 'accessories', options.accessories);
|
|
327
|
-
var components = {
|
|
328
|
-
'face': faceComponent,
|
|
329
|
-
'mouth': mouthComponent,
|
|
330
|
-
'eyes': eyesComponent,
|
|
331
|
-
'hair': hairComponent,
|
|
332
|
-
'accessories': prng.bool(options.accessoriesProbability) ? accessoriesComponent : undefined
|
|
333
|
-
};
|
|
334
|
-
var colors = {
|
|
335
|
-
'skin': pickColor(prng, 'skin', (_options$skinColor = options.skinColor) !== null && _options$skinColor !== void 0 ? _options$skinColor : []),
|
|
336
|
-
'hair': pickColor(prng, 'hair', (_options$hairColor = options.hairColor) !== null && _options$hairColor !== void 0 ? _options$hairColor : [])
|
|
337
|
-
};
|
|
338
|
-
onPostCreate({
|
|
339
|
-
prng: prng,
|
|
340
|
-
options: options,
|
|
341
|
-
components: components,
|
|
342
|
-
colors: colors
|
|
343
|
-
});
|
|
344
|
-
return {
|
|
345
|
-
attributes: {
|
|
346
|
-
viewBox: '0 0 480 480',
|
|
347
|
-
fill: 'none'
|
|
348
|
-
},
|
|
349
|
-
body: "\n<g transform=\"matrix(.85775 0 0 .85427 52 47)\">\n".concat((_components$face$valu = (_components$face = components.face) === null || _components$face === void 0 ? void 0 : _components$face.value(components, colors)) !== null && _components$face$valu !== void 0 ? _components$face$valu : '', "\n</g>\n<g transform=\"matrix(.85472 0 0 .855 19 -17)\">\n").concat((_components$mouth$val = (_components$mouth = components.mouth) === null || _components$mouth === void 0 ? void 0 : _components$mouth.value(components, colors)) !== null && _components$mouth$val !== void 0 ? _components$mouth$val : '', "\n</g>\n<g transform=\"matrix(.85472 0 0 .855 19 -17)\">\n").concat((_components$eyes$valu = (_components$eyes = components.eyes) === null || _components$eyes === void 0 ? void 0 : _components$eyes.value(components, colors)) !== null && _components$eyes$valu !== void 0 ? _components$eyes$valu : '', "\n</g>\n<g transform=\"matrix(.85472 0 0 .85667 18 -15)\">\n").concat((_components$hair$valu = (_components$hair = components.hair) === null || _components$hair === void 0 ? void 0 : _components$hair.value(components, colors)) !== null && _components$hair$valu !== void 0 ? _components$hair$valu : '', "\n</g>\n<g transform=\"matrix(.85472 0 0 .85667 14 -12)\">\n").concat((_components$accessori = (_components$accessori2 = components.accessories) === null || _components$accessori2 === void 0 ? void 0 : _components$accessori2.value(components, colors)) !== null && _components$accessori !== void 0 ? _components$accessori : '', "\n</g>\n")
|
|
350
|
-
};
|
|
351
|
-
}
|
|
352
339
|
};
|
|
353
340
|
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
* Design "Custom Avatar" by Ashley Seo licensed under CC BY 4.0.
|
|
361
|
-
* Source: https://www.figma.com/community/file/881358461963645496
|
|
362
|
-
* License: https://creativecommons.org/licenses/by/4.0/
|
|
363
|
-
*/
|
|
364
|
-
var create = style.create,
|
|
365
|
-
meta = style.meta,
|
|
366
|
-
schema = style.schema;
|
|
367
|
-
/** @deprecated will be removed in Version 5.0 */
|
|
368
|
-
|
|
369
|
-
var index = utils.style.createLegacyWrapper(style);
|
|
370
|
-
|
|
371
|
-
export { create, index as default, meta, schema };
|
|
341
|
+
|
|
342
|
+
const { create: $57bd16bea2e0b2a8$export$185802fd694ee1f5 , preview: $57bd16bea2e0b2a8$export$48c2d0f2f545ac27 , meta: $57bd16bea2e0b2a8$export$6990040ee07315 , schema: $57bd16bea2e0b2a8$export$4902baddc787debb } = $bcb91056768bac68$export$1d567c320f4763bc;
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
export {$57bd16bea2e0b2a8$export$185802fd694ee1f5 as create, $57bd16bea2e0b2a8$export$48c2d0f2f545ac27 as preview, $57bd16bea2e0b2a8$export$6990040ee07315 as meta, $57bd16bea2e0b2a8$export$4902baddc787debb as schema};
|
|
346
|
+
//# sourceMappingURL=index.es.js.map
|