You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

@dicebear/pixel-art

Package Overview
Dependencies
Maintainers
2
Versions
131
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 5.0.0-alpha.6 to 5.0.0-alpha.7

dist/index.d.ts.map

42

dist/index.d.ts

@@ -1,13 +0,31 @@

/*!
* Pixel Art (@dicebear/pixel-art)
*
* Code licensed under MIT License.
* Copyright (c) 2021 Florian Körner
* Copyright (c) 2021 Plastic Jam
*
* Design "Pixel Art" by Plastic Jam licensed under MIT.
* License: https://github.com/dicebear/dicebear/blob/main/packages/%40dicebear/pixel-art/LICENSE
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
declare let create: import("@dicebear/core").StyleCreate<import("./options").Options>, preview: import("@dicebear/core").StylePreview<import("./options").Options> | undefined, meta: import("@dicebear/core").StyleMeta, schema: import("json-schema").JSONSchema7;
export { create, preview, meta, schema };
export { Options } from './options';
export interface Options {
accessories?: ("variant04" | "variant03" | "variant02" | "variant01")[];
accessoriesColor?: (string | ("gold01" | "gold02" | "gold03" | "silver01" | "silver02"))[];
accessoriesProbability?: number;
beard?: ("variant04" | "variant03" | "variant02" | "variant01")[];
beardProbability?: number;
clothesColor?: (string | ("yellow01" | "yellow02" | "yellow03" | "red01" | "red02" | "red03" | "blue01" | "blue02" | "blue03" | "green01" | "green02" | "green03"))[];
clothing?: ("variant25" | "variant24" | "variant23" | "variant22" | "variant21" | "variant20" | "variant19" | "variant18" | "variant17" | "variant16" | "variant15" | "variant14" | "variant13" | "variant12" | "variant11" | "variant10" | "variant09" | "variant08" | "variant07" | "variant06" | "variant05" | "variant04" | "variant03" | "variant02" | "variant01")[];
eyebrows?: ("variant13" | "variant12" | "variant11" | "variant10" | "variant09" | "variant08" | "variant07" | "variant06" | "variant05" | "variant04" | "variant03" | "variant02" | "variant01")[];
eyes?: ("variant13" | "variant12" | "variant11" | "variant10" | "variant09" | "variant08" | "variant07" | "variant06" | "variant05" | "variant04" | "variant03" | "variant02" | "variant01")[];
glasses?: ("variant07" | "variant06" | "variant05" | "variant04" | "variant03" | "variant02" | "variant01")[];
glassesColor?: (string | ("green01" | "blue01" | "red01" | "black01" | "black02" | "black03"))[];
glassesProbability?: number;
hair?: ("short11" | "short10" | "short09" | "short08" | "short07" | "short06" | "short05" | "short04" | "short03" | "short02" | "long15" | "short01" | "long14" | "long13" | "long12" | "long11" | "long10" | "long09" | "long08" | "long07" | "long06" | "long05" | "long04" | "long03" | "long02" | "long01")[];
hairColor?: (string | ("variant01" | "variant02" | "variant03" | "variant04" | "variant05" | "variant06" | "variant07" | "variant08" | "variant09" | "variant10"))[];
hairProbability?: number;
hat?: ("variant01" | "variant02" | "variant03" | "variant04" | "variant05" | "variant06" | "variant07" | "variant08" | "variant09" | "variant10" | "variant11" | "variant12")[];
hatColor?: (string | ("pink01" | "blue01" | "green01" | "purple01" | "red01" | "black01" | "gray01"))[];
hatProbability?: number;
mouth?: ("surprised03" | "surprised02" | "happy09" | "happy08" | "happy07" | "happy06" | "happy05" | "happy04" | "happy03" | "happy02" | "happy01" | "sad08" | "sad07" | "sad06" | "sad05" | "sad04" | "sad03" | "sad02" | "sad01" | "surprised01")[];
mouthColor?: (string | ("variant01" | "variant02" | "variant03" | "variant04"))[];
skinColor?: (string | ("variant01" | "variant02" | "variant03" | "variant04" | "variant05" | "variant06" | "variant07" | "variant08"))[];
}
export const create: import("@dicebear/core").StyleCreate<import("options").Options>, preview: import("@dicebear/core").StylePreview<import("options").Options> | undefined, meta: import("@dicebear/core").StyleMeta, schema: import("json-schema").JSONSchema7;
//# sourceMappingURL=index.d.ts.map

@@ -1,1145 +0,659 @@

var title = "Options";
var $schema = "http://json-schema.org/draft-07/schema#";
var properties = {
accessories: {
type: "array",
items: {
type: "string",
"enum": [
"variant04",
"variant03",
"variant02",
"variant01"
]
},
"default": [
"variant04",
"variant03",
"variant02",
"variant01"
]
},
accessoriesColor: {
type: "array",
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": [
"gold01",
"gold02",
"gold03",
"silver01",
"silver02"
]
}
]
},
"default": [
"gold01",
"gold02",
"gold03",
"silver01",
"silver02"
]
},
accessoriesProbability: {
type: "integer",
minimum: 0,
maximum: 100,
"default": 10
},
beard: {
type: "array",
items: {
type: "string",
"enum": [
"variant04",
"variant03",
"variant02",
"variant01"
]
},
"default": [
"variant04",
"variant03",
"variant02",
"variant01"
]
},
beardProbability: {
type: "integer",
minimum: 0,
maximum: 100,
"default": 10
},
clothesColor: {
type: "array",
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": [
"yellow01",
"yellow02",
"yellow03",
"red01",
"red02",
"red03",
"blue01",
"blue02",
"blue03",
"green01",
"green02",
"green03"
]
}
]
},
"default": [
"yellow01",
"yellow02",
"yellow03",
"red01",
"red02",
"red03",
"blue01",
"blue02",
"blue03",
"green01",
"green02",
"green03"
]
},
clothing: {
type: "array",
items: {
type: "string",
"enum": [
"variant25",
"variant24",
"variant23",
"variant22",
"variant21",
"variant20",
"variant19",
"variant18",
"variant17",
"variant16",
"variant15",
"variant14",
"variant13",
"variant12",
"variant11",
"variant10",
"variant09",
"variant08",
"variant07",
"variant06",
"variant05",
"variant04",
"variant03",
"variant02",
"variant01"
]
},
"default": [
"variant25",
"variant24",
"variant23",
"variant22",
"variant21",
"variant20",
"variant19",
"variant18",
"variant17",
"variant16",
"variant15",
"variant14",
"variant13",
"variant12",
"variant11",
"variant10",
"variant09",
"variant08",
"variant07",
"variant06",
"variant05",
"variant04",
"variant03",
"variant02",
"variant01"
]
},
eyebrows: {
type: "array",
items: {
type: "string",
"enum": [
"variant13",
"variant12",
"variant11",
"variant10",
"variant09",
"variant08",
"variant07",
"variant06",
"variant05",
"variant04",
"variant03",
"variant02",
"variant01"
]
},
"default": [
"variant13",
"variant12",
"variant11",
"variant10",
"variant09",
"variant08",
"variant07",
"variant06",
"variant05",
"variant04",
"variant03",
"variant02",
"variant01"
]
},
eyes: {
type: "array",
items: {
type: "string",
"enum": [
"variant13",
"variant12",
"variant11",
"variant10",
"variant09",
"variant08",
"variant07",
"variant06",
"variant05",
"variant04",
"variant03",
"variant02",
"variant01"
]
},
"default": [
"variant13",
"variant12",
"variant11",
"variant10",
"variant09",
"variant08",
"variant07",
"variant06",
"variant05",
"variant04",
"variant03",
"variant02",
"variant01"
]
},
glasses: {
type: "array",
items: {
type: "string",
"enum": [
"variant07",
"variant06",
"variant05",
"variant04",
"variant03",
"variant02",
"variant01"
]
},
"default": [
"variant07",
"variant06",
"variant05",
"variant04",
"variant03",
"variant02",
"variant01"
]
},
glassesColor: {
type: "array",
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": [
"green01",
"blue01",
"red01",
"black01",
"black02",
"black03"
]
}
]
},
"default": [
"green01",
"blue01",
"red01",
"black01",
"black02",
"black03"
]
},
glassesProbability: {
type: "integer",
minimum: 0,
maximum: 100,
"default": 20
},
hair: {
type: "array",
items: {
type: "string",
"enum": [
"short11",
"short10",
"short09",
"short08",
"short07",
"short06",
"short05",
"short04",
"short03",
"short02",
"long15",
"short01",
"long14",
"long13",
"long12",
"long11",
"long10",
"long09",
"long08",
"long07",
"long06",
"long05",
"long04",
"long03",
"long02",
"long01"
]
},
"default": [
"short11",
"short10",
"short09",
"short08",
"short07",
"short06",
"short05",
"short04",
"short03",
"short02",
"long15",
"short01",
"long14",
"long13",
"long12",
"long11",
"long10",
"long09",
"long08",
"long07",
"long06",
"long05",
"long04",
"long03",
"long02",
"long01"
]
},
hairColor: {
type: "array",
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",
"variant09",
"variant10"
]
}
]
},
"default": [
"variant01",
"variant02",
"variant03",
"variant04",
"variant05",
"variant06",
"variant07",
"variant08",
"variant09",
"variant10"
]
},
hairProbability: {
type: "integer",
minimum: 0,
maximum: 100,
"default": 100
},
hat: {
type: "array",
items: {
type: "string",
"enum": [
"variant01",
"variant02",
"variant03",
"variant04",
"variant05",
"variant06",
"variant07",
"variant08",
"variant09",
"variant10",
"variant11",
"variant12"
]
},
"default": [
"variant01",
"variant02",
"variant03",
"variant04",
"variant05",
"variant06",
"variant07",
"variant08",
"variant09",
"variant10",
"variant11",
"variant12"
]
},
hatColor: {
type: "array",
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": [
"pink01",
"blue01",
"green01",
"purple01",
"red01",
"black01",
"gray01"
]
}
]
},
"default": [
"pink01",
"blue01",
"green01",
"purple01",
"red01",
"black01",
"gray01"
]
},
hatProbability: {
type: "integer",
minimum: 0,
maximum: 100,
"default": 10
},
mouth: {
type: "array",
items: {
type: "string",
"enum": [
"surprised03",
"surprised02",
"happy09",
"happy08",
"happy07",
"happy06",
"happy05",
"happy04",
"happy03",
"happy02",
"happy01",
"sad08",
"sad07",
"sad06",
"sad05",
"sad04",
"sad03",
"sad02",
"sad01",
"surprised01"
]
},
"default": [
"surprised03",
"surprised02",
"happy09",
"happy08",
"happy07",
"happy06",
"happy05",
"happy04",
"happy03",
"happy02",
"happy01",
"sad08",
"sad07",
"sad06",
"sad05",
"sad04",
"sad03",
"sad02",
"sad01",
"surprised01"
]
},
mouthColor: {
type: "array",
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"
]
}
]
},
"default": [
"variant01",
"variant02",
"variant03",
"variant04"
]
},
skinColor: {
type: "array",
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"
]
}
};
var additionalProperties = false;
var schema$1 = {
title: title,
$schema: $schema,
properties: properties,
additionalProperties: additionalProperties
};
function $parcel$interopDefault(a) {
return a && a.__esModule ? a.default : a;
}
function $parcel$export(e, n, v, s) {
Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
}
var $f66fddda7516a461$exports = {};
$f66fddda7516a461$exports = JSON.parse("{\"title\":\"Options\",\"$schema\":\"http://json-schema.org/draft-07/schema#\",\"properties\":{\"accessories\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"enum\":[\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"default\":[\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"accessoriesColor\":{\"type\":\"array\",\"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\":[\"gold01\",\"gold02\",\"gold03\",\"silver01\",\"silver02\"]}]},\"default\":[\"gold01\",\"gold02\",\"gold03\",\"silver01\",\"silver02\"]},\"accessoriesProbability\":{\"type\":\"integer\",\"minimum\":0,\"maximum\":100,\"default\":10},\"beard\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"enum\":[\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"default\":[\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"beardProbability\":{\"type\":\"integer\",\"minimum\":0,\"maximum\":100,\"default\":10},\"clothesColor\":{\"type\":\"array\",\"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\":[\"yellow01\",\"yellow02\",\"yellow03\",\"red01\",\"red02\",\"red03\",\"blue01\",\"blue02\",\"blue03\",\"green01\",\"green02\",\"green03\"]}]},\"default\":[\"yellow01\",\"yellow02\",\"yellow03\",\"red01\",\"red02\",\"red03\",\"blue01\",\"blue02\",\"blue03\",\"green01\",\"green02\",\"green03\"]},\"clothing\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"enum\":[\"variant25\",\"variant24\",\"variant23\",\"variant22\",\"variant21\",\"variant20\",\"variant19\",\"variant18\",\"variant17\",\"variant16\",\"variant15\",\"variant14\",\"variant13\",\"variant12\",\"variant11\",\"variant10\",\"variant09\",\"variant08\",\"variant07\",\"variant06\",\"variant05\",\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"default\":[\"variant25\",\"variant24\",\"variant23\",\"variant22\",\"variant21\",\"variant20\",\"variant19\",\"variant18\",\"variant17\",\"variant16\",\"variant15\",\"variant14\",\"variant13\",\"variant12\",\"variant11\",\"variant10\",\"variant09\",\"variant08\",\"variant07\",\"variant06\",\"variant05\",\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"eyebrows\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"enum\":[\"variant13\",\"variant12\",\"variant11\",\"variant10\",\"variant09\",\"variant08\",\"variant07\",\"variant06\",\"variant05\",\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"default\":[\"variant13\",\"variant12\",\"variant11\",\"variant10\",\"variant09\",\"variant08\",\"variant07\",\"variant06\",\"variant05\",\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"eyes\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"enum\":[\"variant13\",\"variant12\",\"variant11\",\"variant10\",\"variant09\",\"variant08\",\"variant07\",\"variant06\",\"variant05\",\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"default\":[\"variant13\",\"variant12\",\"variant11\",\"variant10\",\"variant09\",\"variant08\",\"variant07\",\"variant06\",\"variant05\",\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"glasses\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"enum\":[\"variant07\",\"variant06\",\"variant05\",\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"default\":[\"variant07\",\"variant06\",\"variant05\",\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"glassesColor\":{\"type\":\"array\",\"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\":[\"green01\",\"blue01\",\"red01\",\"black01\",\"black02\",\"black03\"]}]},\"default\":[\"green01\",\"blue01\",\"red01\",\"black01\",\"black02\",\"black03\"]},\"glassesProbability\":{\"type\":\"integer\",\"minimum\":0,\"maximum\":100,\"default\":20},\"hair\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"enum\":[\"short11\",\"short10\",\"short09\",\"short08\",\"short07\",\"short06\",\"short05\",\"short04\",\"short03\",\"short02\",\"long15\",\"short01\",\"long14\",\"long13\",\"long12\",\"long11\",\"long10\",\"long09\",\"long08\",\"long07\",\"long06\",\"long05\",\"long04\",\"long03\",\"long02\",\"long01\"]},\"default\":[\"short11\",\"short10\",\"short09\",\"short08\",\"short07\",\"short06\",\"short05\",\"short04\",\"short03\",\"short02\",\"long15\",\"short01\",\"long14\",\"long13\",\"long12\",\"long11\",\"long10\",\"long09\",\"long08\",\"long07\",\"long06\",\"long05\",\"long04\",\"long03\",\"long02\",\"long01\"]},\"hairColor\":{\"type\":\"array\",\"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\",\"variant09\",\"variant10\"]}]},\"default\":[\"variant01\",\"variant02\",\"variant03\",\"variant04\",\"variant05\",\"variant06\",\"variant07\",\"variant08\",\"variant09\",\"variant10\"]},\"hairProbability\":{\"type\":\"integer\",\"minimum\":0,\"maximum\":100,\"default\":100},\"hat\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"enum\":[\"variant01\",\"variant02\",\"variant03\",\"variant04\",\"variant05\",\"variant06\",\"variant07\",\"variant08\",\"variant09\",\"variant10\",\"variant11\",\"variant12\"]},\"default\":[\"variant01\",\"variant02\",\"variant03\",\"variant04\",\"variant05\",\"variant06\",\"variant07\",\"variant08\",\"variant09\",\"variant10\",\"variant11\",\"variant12\"]},\"hatColor\":{\"type\":\"array\",\"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\":[\"pink01\",\"blue01\",\"green01\",\"purple01\",\"red01\",\"black01\",\"gray01\"]}]},\"default\":[\"pink01\",\"blue01\",\"green01\",\"purple01\",\"red01\",\"black01\",\"gray01\"]},\"hatProbability\":{\"type\":\"integer\",\"minimum\":0,\"maximum\":100,\"default\":10},\"mouth\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"enum\":[\"surprised03\",\"surprised02\",\"happy09\",\"happy08\",\"happy07\",\"happy06\",\"happy05\",\"happy04\",\"happy03\",\"happy02\",\"happy01\",\"sad08\",\"sad07\",\"sad06\",\"sad05\",\"sad04\",\"sad03\",\"sad02\",\"sad01\",\"surprised01\"]},\"default\":[\"surprised03\",\"surprised02\",\"happy09\",\"happy08\",\"happy07\",\"happy06\",\"happy05\",\"happy04\",\"happy03\",\"happy02\",\"happy01\",\"sad08\",\"sad07\",\"sad06\",\"sad05\",\"sad04\",\"sad03\",\"sad02\",\"sad01\",\"surprised01\"]},\"mouthColor\":{\"type\":\"array\",\"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\"]}]},\"default\":[\"variant01\",\"variant02\",\"variant03\",\"variant04\"]},\"skinColor\":{\"type\":\"array\",\"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}");
const beard = {
variant04: (components, colors) => "<path opacity=\".9\" d=\"M4 10v3h1v1h1v1h8v-1h1v-1h1v-3h-2v1H6v-1H4Z\" fill=\"".concat(colors.hair.value, "\"/>"),
variant03: (components, colors) => "<path opacity=\".9\" d=\"M4 13h1v1h1v1h8v-1h1v-1h1v-3h-1v1h-1v1H6v-1H5v-1H4v3Z\" fill=\"".concat(colors.hair.value, "\"/>"),
variant02: (components, colors) => "<path opacity=\".9\" d=\"M4 11v2h1v1h1v1h8v-1h1v-1h1v-2H4Z\" fill=\"".concat(colors.hair.value, "\"/>"),
variant01: (components, colors) => "<path opacity=\".9\" d=\"M4 8v5h1v1h1v1h8v-1h1v-1h1V8h-1v2h-1v1h-1v1H7v-1H6v-1H5V8H4Z\" fill=\"".concat(colors.hair.value, "\"/>")
var $6694e050ea5985cb$exports = {};
$parcel$export($6694e050ea5985cb$exports, "beard", function () { return $dbff7059655cff81$export$f3afdac99fc73206; });
$parcel$export($6694e050ea5985cb$exports, "eyes", function () { return $2bf5e5f03cff2f60$export$60b896fd2e3e4b2; });
$parcel$export($6694e050ea5985cb$exports, "eyebrows", function () { return $173ba2ce214de15d$export$aebaafc0a0095705; });
$parcel$export($6694e050ea5985cb$exports, "mouth", function () { return $e9139a5f7522f853$export$4ec1914b3efc3f9a; });
$parcel$export($6694e050ea5985cb$exports, "hair", function () { return $8522e41a7f0524d7$export$12c365d50e7cb3d6; });
$parcel$export($6694e050ea5985cb$exports, "accessories", function () { return $7fb7bcd570788f0d$export$3bb43880931639de; });
$parcel$export($6694e050ea5985cb$exports, "glasses", function () { return $8a5abea736e231e4$export$98222f1ebbc36891; });
$parcel$export($6694e050ea5985cb$exports, "hat", function () { return $005db0803c3bdc30$export$dbf38fa2a54a979a; });
$parcel$export($6694e050ea5985cb$exports, "clothing", function () { return $2210f038691c9666$export$315fd2fadf178734; });
const $dbff7059655cff81$export$f3afdac99fc73206 = {
variant04: (components, colors)=>`<path opacity=".9" d="M4 10v3h1v1h1v1h8v-1h1v-1h1v-3h-2v1H6v-1H4Z" fill="${colors.hair.value}"/>`
,
variant03: (components, colors)=>`<path opacity=".9" d="M4 13h1v1h1v1h8v-1h1v-1h1v-3h-1v1h-1v1H6v-1H5v-1H4v3Z" fill="${colors.hair.value}"/>`
,
variant02: (components, colors)=>`<path opacity=".9" d="M4 11v2h1v1h1v1h8v-1h1v-1h1v-2H4Z" fill="${colors.hair.value}"/>`
,
variant01: (components, colors)=>`<path opacity=".9" d="M4 8v5h1v1h1v1h8v-1h1v-1h1V8h-1v2h-1v1h-1v1H7v-1H6v-1H5V8H4Z" fill="${colors.hair.value}"/>`
};
const eyes = {
variant13: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 9V7h3v2H5Zm7-2h3v2h-3V7Z\" fill=\"#fff\"/><path d=\"M7 8v1h1V8H7Zm7 0h1v1h-1V8Z\" fill=\"#000\"/></g>",
variant12: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 7h3v2H5V7Zm7 0h3v2h-3V7Z\" fill=\"#fff\"/><path d=\"M6 8h1v1H6V8Zm7 1V8h1v1h-1Z\" fill=\"#000\"/></g>",
variant11: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 7h3v2H5V7Zm7 0h3v2h-3V7Z\" fill=\"#fff\"/><path d=\"M7 8h1v1H7V8Zm5 0h1v1h-1V8Z\" fill=\"#000\"/></g>",
variant10: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M6 7h1v1h1v1H6V7Zm6 0h1v1h1v1h-2V7Z\" fill=\"#fff\"/><path d=\"M6 8h1v1H6V8Zm6 0h1v1h-1V8Z\" fill=\"#000\"/></g>",
variant09: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 8h2v1H5V8Zm7 0h2v1h-2V8Z\" fill=\"#fff\"/><path d=\"M7 8h1v1H7V8Zm7 0h1v1h-1V8Z\" fill=\"#000\"/></g>",
variant08: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M6 8h1v1H6V8Zm7 0h1v1h-1V8Z\" fill=\"#fff\"/><path d=\"M7 8h1v1H7V8Zm5 0h1v1h-1V8Z\" fill=\"#000\"/></g>",
variant07: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 7v1h3V7H5Zm7 0h3v1h-3V7Z\" fill=\"#fff\"/><path d=\"M5 9V8h1V7h1v1h1v1H5Zm7 0V8h1V7h1v1h1v1h-3Z\" fill=\"#000\"/><path d=\"M5 9V8h1V7h1v1h1v1H7V8H6v1H5Zm7 0V8h1V7h1v1h1v1h-1V8h-1v1h-1Z\" fill=\"#fff\" fill-opacity=\".5\"/></g>",
variant06: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 8h3v1H5V8Zm7 0h3v1h-3V8Z\" fill=\"#fff\"/><path d=\"M6 8h1v1H6V8Zm7 0h1v1h-1V8Z\" fill=\"#000\"/></g>",
variant05: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 7h3v2H5V7Zm7 0h3v2h-3V7Z\" fill=\"#fff\"/><path d=\"M5 8h2v1H5V8Zm7 0h2v1h-2V8Z\" fill=\"#000\"/></g>",
variant04: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 7h3v3H5V7Zm7 0h3v3h-3V7Z\" fill=\"#fff\"/><path d=\"M6 8h1v1H6V8Zm7 0h1v1h-1V8Z\" fill=\"#000\"/></g>",
variant03: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 7h3v3H5V7Zm7 0h3v3h-3V7Z\" fill=\"#fff\"/><path d=\"M6 7h2v2H6V7Zm7 0h2v2h-2V7Z\" fill=\"#000\"/><path d=\"M6 7v1h1v1h1V8H7V7H6Zm7 0v1h1v1h1V8h-1V7h-1Z\" fill=\"#fff\" fill-opacity=\".4\"/><path d=\"M7 7v1h1V7H7Zm7 0h1v1h-1V7Z\" fill=\"#fff\" fill-opacity=\".7\"/></g>",
variant02: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 7h3v3H5V7Zm7 0h3v3h-3V7Z\" fill=\"#fff\"/><path d=\"M5 8h2v1H5V8Zm7 0h2v1h-2V8Z\" fill=\"#000\"/><path d=\"M5 8h1v1H5V8Zm7 0h1v1h-1V8Z\" fill=\"#fff\" fill-opacity=\".7\"/></g>",
variant01: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M6 7h1v2H5V8h1V7Zm7 0h1v2h-2V8h1V7Z\" fill=\"#fff\"/><path d=\"M7 7v1H6v1h2V7H7Zm7 0v1h-1v1h2V7h-1Z\" fill=\"#000\"/><path d=\"M7 7v1h1V7H7ZM6 8v1h1V8H6Zm8-1v1h1V7h-1Zm-1 1v1h1V8h-1Z\" fill=\"#fff\" fill-opacity=\".5\"/></g>"
const $2bf5e5f03cff2f60$export$60b896fd2e3e4b2 = {
variant13: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 9V7h3v2H5Zm7-2h3v2h-3V7Z" fill="#fff"/><path d="M7 8v1h1V8H7Zm7 0h1v1h-1V8Z" fill="#000"/></g>`
,
variant12: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 7h3v2H5V7Zm7 0h3v2h-3V7Z" fill="#fff"/><path d="M6 8h1v1H6V8Zm7 1V8h1v1h-1Z" fill="#000"/></g>`
,
variant11: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 7h3v2H5V7Zm7 0h3v2h-3V7Z" fill="#fff"/><path d="M7 8h1v1H7V8Zm5 0h1v1h-1V8Z" fill="#000"/></g>`
,
variant10: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M6 7h1v1h1v1H6V7Zm6 0h1v1h1v1h-2V7Z" fill="#fff"/><path d="M6 8h1v1H6V8Zm6 0h1v1h-1V8Z" fill="#000"/></g>`
,
variant09: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 8h2v1H5V8Zm7 0h2v1h-2V8Z" fill="#fff"/><path d="M7 8h1v1H7V8Zm7 0h1v1h-1V8Z" fill="#000"/></g>`
,
variant08: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M6 8h1v1H6V8Zm7 0h1v1h-1V8Z" fill="#fff"/><path d="M7 8h1v1H7V8Zm5 0h1v1h-1V8Z" fill="#000"/></g>`
,
variant07: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 7v1h3V7H5Zm7 0h3v1h-3V7Z" fill="#fff"/><path d="M5 9V8h1V7h1v1h1v1H5Zm7 0V8h1V7h1v1h1v1h-3Z" fill="#000"/><path d="M5 9V8h1V7h1v1h1v1H7V8H6v1H5Zm7 0V8h1V7h1v1h1v1h-1V8h-1v1h-1Z" fill="#fff" fill-opacity=".5"/></g>`
,
variant06: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 8h3v1H5V8Zm7 0h3v1h-3V8Z" fill="#fff"/><path d="M6 8h1v1H6V8Zm7 0h1v1h-1V8Z" fill="#000"/></g>`
,
variant05: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 7h3v2H5V7Zm7 0h3v2h-3V7Z" fill="#fff"/><path d="M5 8h2v1H5V8Zm7 0h2v1h-2V8Z" fill="#000"/></g>`
,
variant04: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 7h3v3H5V7Zm7 0h3v3h-3V7Z" fill="#fff"/><path d="M6 8h1v1H6V8Zm7 0h1v1h-1V8Z" fill="#000"/></g>`
,
variant03: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 7h3v3H5V7Zm7 0h3v3h-3V7Z" fill="#fff"/><path d="M6 7h2v2H6V7Zm7 0h2v2h-2V7Z" fill="#000"/><path d="M6 7v1h1v1h1V8H7V7H6Zm7 0v1h1v1h1V8h-1V7h-1Z" fill="#fff" fill-opacity=".4"/><path d="M7 7v1h1V7H7Zm7 0h1v1h-1V7Z" fill="#fff" fill-opacity=".7"/></g>`
,
variant02: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 7h3v3H5V7Zm7 0h3v3h-3V7Z" fill="#fff"/><path d="M5 8h2v1H5V8Zm7 0h2v1h-2V8Z" fill="#000"/><path d="M5 8h1v1H5V8Zm7 0h1v1h-1V8Z" fill="#fff" fill-opacity=".7"/></g>`
,
variant01: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M6 7h1v2H5V8h1V7Zm7 0h1v2h-2V8h1V7Z" fill="#fff"/><path d="M7 7v1H6v1h2V7H7Zm7 0v1h-1v1h2V7h-1Z" fill="#000"/><path d="M7 7v1h1V7H7ZM6 8v1h1V8H6Zm8-1v1h1V7h-1Zm-1 1v1h1V8h-1Z" fill="#fff" fill-opacity=".5"/></g>`
};
const eyebrows = {
variant13: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M8 4v1H7v1H5V5h2V4h1Zm4 0h1v1h2v1h-2V5h-1V4Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M8 4v1H7v1H5V5h2V4h1Zm4 0h1v1h2v1h-2V5h-1V4Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant12: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M6 5h3v2H8V6H6V5Zm5 0h3v1h-2v1h-1V5Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M6 5h3v2H8V6H6V5Zm5 0h3v1h-2v1h-1V5Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant11: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 5h3v1h1v1H8V6H5V5Zm10 0h-3v1h-1v1h1V6h3V5Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M5 5h3v1h1v1H8V6H5V5Zm10 0h-3v1h-1v1h1V6h3V5Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant10: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M6 5H4v2h1V6h1V5Zm8 0h2v2h-1V6h-1V5Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M6 5H4v2h1V6h1V5Zm8 0h2v2h-1V6h-1V5Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant09: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 6h2v1H5V6Zm8 0h2v1h-2V6Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M5 6h2v1H5V6Zm8 0h2v1h-2V6Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant08: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M6 5h1v1h1v1H5V6h1V5Zm7 0h1v1h1v1h-3V6h1V5Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M6 5h1v1h1v1H5V6h1V5Zm7 0h1v1h1v1h-3V6h1V5Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant07: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M6 5h2v1h1v1H8V6H6V5Zm8 0h-2v1h-1v1h1V6h2V5Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M6 5h2v1h1v1H8V6H6V5Zm8 0h-2v1h-1v1h1V6h2V5Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant06: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M12 7V6h1V5h1v1h1v1h-1V6h-1v1h-1ZM5 7V6h1V5h1v1h1v1H7V6H6v1H5Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M12 7V6h1V5h1v1h1v1h-1V6h-1v1h-1ZM5 7V6h1V5h1v1h1v1H7V6H6v1H5Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant05: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M7 5v1H5v1H4V6h1V5h2Zm6 0h2v1h1v1h-1V6h-2V5Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M7 5v1H5v1H4V6h1V5h2Zm6 0h2v1h1v1h-1V6h-2V5Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant04: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M4 7V5h3v1H5v1H4Zm12-2v2h-1V6h-2V5h3Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M4 7V5h3v1H5v1H4Zm12-2v2h-1V6h-2V5h3Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant03: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M7 5h1v1h1v1H8V6H7V5Zm6 0v1h-1v1h-1V6h1V5h1Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M7 5h1v1h1v1H8V6H7V5Zm6 0v1h-1v1h-1V6h1V5h1Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant02: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M4 7V6h1V5h1v1H5v1H4Zm10-2h1v1h1v1h-1V6h-1V5Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M4 7V6h1V5h1v1H5v1H4Zm10-2h1v1h1v1h-1V6h-1V5Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant01: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M7 5v1H5v1H4V6h1V5h2Zm7 0v1h-2v1h-1V6h1V5h2Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M7 5v1H5v1H4V6h1V5h2Zm7 0v1h-2v1h-1V6h1V5h2Z\" fill=\"#000\" fill-opacity=\".1\"/></g>")
const $173ba2ce214de15d$export$aebaafc0a0095705 = {
variant13: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M8 4v1H7v1H5V5h2V4h1Zm4 0h1v1h2v1h-2V5h-1V4Z" fill="${colors.hair.value}"/><path d="M8 4v1H7v1H5V5h2V4h1Zm4 0h1v1h2v1h-2V5h-1V4Z" fill="#000" fill-opacity=".1"/></g>`
,
variant12: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M6 5h3v2H8V6H6V5Zm5 0h3v1h-2v1h-1V5Z" fill="${colors.hair.value}"/><path d="M6 5h3v2H8V6H6V5Zm5 0h3v1h-2v1h-1V5Z" fill="#000" fill-opacity=".1"/></g>`
,
variant11: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 5h3v1h1v1H8V6H5V5Zm10 0h-3v1h-1v1h1V6h3V5Z" fill="${colors.hair.value}"/><path d="M5 5h3v1h1v1H8V6H5V5Zm10 0h-3v1h-1v1h1V6h3V5Z" fill="#000" fill-opacity=".1"/></g>`
,
variant10: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M6 5H4v2h1V6h1V5Zm8 0h2v2h-1V6h-1V5Z" fill="${colors.hair.value}"/><path d="M6 5H4v2h1V6h1V5Zm8 0h2v2h-1V6h-1V5Z" fill="#000" fill-opacity=".1"/></g>`
,
variant09: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 6h2v1H5V6Zm8 0h2v1h-2V6Z" fill="${colors.hair.value}"/><path d="M5 6h2v1H5V6Zm8 0h2v1h-2V6Z" fill="#000" fill-opacity=".1"/></g>`
,
variant08: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M6 5h1v1h1v1H5V6h1V5Zm7 0h1v1h1v1h-3V6h1V5Z" fill="${colors.hair.value}"/><path d="M6 5h1v1h1v1H5V6h1V5Zm7 0h1v1h1v1h-3V6h1V5Z" fill="#000" fill-opacity=".1"/></g>`
,
variant07: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M6 5h2v1h1v1H8V6H6V5Zm8 0h-2v1h-1v1h1V6h2V5Z" fill="${colors.hair.value}"/><path d="M6 5h2v1h1v1H8V6H6V5Zm8 0h-2v1h-1v1h1V6h2V5Z" fill="#000" fill-opacity=".1"/></g>`
,
variant06: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M12 7V6h1V5h1v1h1v1h-1V6h-1v1h-1ZM5 7V6h1V5h1v1h1v1H7V6H6v1H5Z" fill="${colors.hair.value}"/><path d="M12 7V6h1V5h1v1h1v1h-1V6h-1v1h-1ZM5 7V6h1V5h1v1h1v1H7V6H6v1H5Z" fill="#000" fill-opacity=".1"/></g>`
,
variant05: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M7 5v1H5v1H4V6h1V5h2Zm6 0h2v1h1v1h-1V6h-2V5Z" fill="${colors.hair.value}"/><path d="M7 5v1H5v1H4V6h1V5h2Zm6 0h2v1h1v1h-1V6h-2V5Z" fill="#000" fill-opacity=".1"/></g>`
,
variant04: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M4 7V5h3v1H5v1H4Zm12-2v2h-1V6h-2V5h3Z" fill="${colors.hair.value}"/><path d="M4 7V5h3v1H5v1H4Zm12-2v2h-1V6h-2V5h3Z" fill="#000" fill-opacity=".1"/></g>`
,
variant03: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M7 5h1v1h1v1H8V6H7V5Zm6 0v1h-1v1h-1V6h1V5h1Z" fill="${colors.hair.value}"/><path d="M7 5h1v1h1v1H8V6H7V5Zm6 0v1h-1v1h-1V6h1V5h1Z" fill="#000" fill-opacity=".1"/></g>`
,
variant02: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M4 7V6h1V5h1v1H5v1H4Zm10-2h1v1h1v1h-1V6h-1V5Z" fill="${colors.hair.value}"/><path d="M4 7V6h1V5h1v1H5v1H4Zm10-2h1v1h1v1h-1V6h-1V5Z" fill="#000" fill-opacity=".1"/></g>`
,
variant01: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M7 5v1H5v1H4V6h1V5h2Zm7 0v1h-2v1h-1V6h1V5h2Z" fill="${colors.hair.value}"/><path d="M7 5v1H5v1H4V6h1V5h2Zm7 0v1h-2v1h-1V6h1V5h2Z" fill="#000" fill-opacity=".1"/></g>`
};
const mouth$1 = {
surprised03: (components, colors) => "<path d=\"M9 12v2h2v-2H9Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
surprised02: (components, colors) => "<path d=\"M9 13v1h1v-1H9Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
happy09: (components, colors) => "<path d=\"M7 12v1h1v1h4v-1H8v-1H7Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
happy08: (components, colors) => "<path d=\"M10 12v1H9v1h2v-2h-1Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
happy07: (components, colors) => "<path d=\"M8 13v1h4v-1h1v-1h-1v1H8Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
happy06: (components, colors) => "<path d=\"M9 12v2h2v-1h-1v-1H9Z\" fill=\"".concat(colors.mouth.value, "\"/><path d=\"M11 14v-1h-1v-1H9v1h1v1h1Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
happy05: (components, colors) => "<path d=\"M8 12v1h1v1h2v-1h1v-1H8Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
happy04: (components, colors) => "<path d=\"M9 13v1h2v-1h1v-1h-1v1H9Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
happy03: (components, colors) => "<path d=\"M8 12v1h1v1h2v-1H9v-1H8Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
happy02: (components, colors) => "<path d=\"M8 12v1h1v1h2v-1h1v-1h-1v-1H9v1H8Z\" fill=\"".concat(colors.mouth.value, "\"/><path d=\"M9 12v1h2v-1H9Z\" fill=\"#fff\"/>"),
happy01: (components, colors) => "<path d=\"M8 12v1h1v1h2v-1h1v-1h-1v-1H9v1H8Z\" fill=\"".concat(colors.mouth.value, "\"/><path d=\"M9 12v1h2v-1H9Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
sad08: (components, colors) => "<path d=\"M9 12v1H8v1h4v-1h-1v-1H9Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
sad07: (components, colors) => "<path d=\"M11 12v1H9v1H8v-1h1v-1h2Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
sad06: (components, colors) => "<path d=\"M8 12h3v1H8v-1Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
sad05: (components, colors) => "<path d=\"M8 12h4v1H8v-1Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
sad04: (components, colors) => "<path d=\"M9 12h2v1H9v-1Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
sad03: (components, colors) => "<path d=\"M8 12v1h3v1h1v-1h-1v-1H8Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
sad02: (components, colors) => "<path d=\"M8 13v1h1v-1h3v-1H9v1H8Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
sad01: (components, colors) => "<path d=\"M10 12v1h1v1h1v-2h-2Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
surprised01: (components, colors) => "<path d=\"M8 12v2h4v-2H8Z\" fill=\"#fff\"/>"
const $e9139a5f7522f853$export$4ec1914b3efc3f9a = {
surprised03: (components, colors)=>`<path d="M9 12v2h2v-2H9Z" fill="${colors.mouth.value}"/>`
,
surprised02: (components, colors)=>`<path d="M9 13v1h1v-1H9Z" fill="${colors.mouth.value}"/>`
,
happy09: (components, colors)=>`<path d="M7 12v1h1v1h4v-1H8v-1H7Z" fill="${colors.mouth.value}"/>`
,
happy08: (components, colors)=>`<path d="M10 12v1H9v1h2v-2h-1Z" fill="${colors.mouth.value}"/>`
,
happy07: (components, colors)=>`<path d="M8 13v1h4v-1h1v-1h-1v1H8Z" fill="${colors.mouth.value}"/>`
,
happy06: (components, colors)=>`<path d="M9 12v2h2v-1h-1v-1H9Z" fill="${colors.mouth.value}"/><path d="M11 14v-1h-1v-1H9v1h1v1h1Z" fill="#fff" fill-opacity=".2"/>`
,
happy05: (components, colors)=>`<path d="M8 12v1h1v1h2v-1h1v-1H8Z" fill="${colors.mouth.value}"/>`
,
happy04: (components, colors)=>`<path d="M9 13v1h2v-1h1v-1h-1v1H9Z" fill="${colors.mouth.value}"/>`
,
happy03: (components, colors)=>`<path d="M8 12v1h1v1h2v-1H9v-1H8Z" fill="${colors.mouth.value}"/>`
,
happy02: (components, colors)=>`<path d="M8 12v1h1v1h2v-1h1v-1h-1v-1H9v1H8Z" fill="${colors.mouth.value}"/><path d="M9 12v1h2v-1H9Z" fill="#fff"/>`
,
happy01: (components, colors)=>`<path d="M8 12v1h1v1h2v-1h1v-1h-1v-1H9v1H8Z" fill="${colors.mouth.value}"/><path d="M9 12v1h2v-1H9Z" fill="#fff" fill-opacity=".2"/>`
,
sad08: (components, colors)=>`<path d="M9 12v1H8v1h4v-1h-1v-1H9Z" fill="${colors.mouth.value}"/>`
,
sad07: (components, colors)=>`<path d="M11 12v1H9v1H8v-1h1v-1h2Z" fill="${colors.mouth.value}"/>`
,
sad06: (components, colors)=>`<path d="M8 12h3v1H8v-1Z" fill="${colors.mouth.value}"/>`
,
sad05: (components, colors)=>`<path d="M8 12h4v1H8v-1Z" fill="${colors.mouth.value}"/>`
,
sad04: (components, colors)=>`<path d="M9 12h2v1H9v-1Z" fill="${colors.mouth.value}"/>`
,
sad03: (components, colors)=>`<path d="M8 12v1h3v1h1v-1h-1v-1H8Z" fill="${colors.mouth.value}"/>`
,
sad02: (components, colors)=>`<path d="M8 13v1h1v-1h3v-1H9v1H8Z" fill="${colors.mouth.value}"/>`
,
sad01: (components, colors)=>`<path d="M10 12v1h1v1h1v-2h-2Z" fill="${colors.mouth.value}"/>`
,
surprised01: (components, colors)=>`<path d="M8 12v2h4v-2H8Z" fill="#fff"/>`
};
const hair$1 = {
short11: (components, colors) => "<path d=\"M4 4v2h1V5h1V4h8v1h1v1h1V4h-1V3H5v1H4Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short10: (components, colors) => "<path d=\"M6 2h8v1h1v1h1v3h-1V6h-1V5h-1V4H9v1H7v1H6v1H4V4h1V3h1V2Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short09: (components, colors) => "<path d=\"M4 7h1V5h1V4h2v1h1v1h2V5h1V4h2v1h1v2h1V5h-1V4h-1V3H6v1H5v1H4v2Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short08: (components, colors) => "<path d=\"M3 8h1V5h12v3h1V4h-1V3h-1V2H5v1H4v1H3v4Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short07: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 5v1h1v1h2V5h1V3H4v1H3v1H2Zm6-1h2v1h2V4h1V3H8v1Zm6 1h1v2h2V6h1V5h-1V4h-1V3h-2v2Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short06: (components, colors) => "<path d=\"M3 8h1V5h2V3h8v1h1v1h1v3h1V3h-2V2h-2V1h-1v1h-2V1H9v1H8V1H7v1H5v1H4v1H3v4Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short05: (components, colors) => "<path d=\"M11 5V4h1V3H8v1h1v1h2Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short04: (components, colors) => "<path d=\"M3 8h1V6h2V5h2V4h1v1h2v1h2v1h2v1h2V5h-1V4h-1V3H5v1H4v1H3v3Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short03: (components, colors) => "<path d=\"M5 5h10V4h-1V3H6v1H5v1Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short02: (components, colors) => "<path d=\"M3 5H2v3h2V5h1V4h1v1h2V4h4V3h1v1h1v1h1v1h1v2h1V7h1V5h-1V4h-1V3h-1V2h-1V1h-1v1h-2V1h-1v1H7V1H5v1H4v1H3v2Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long15: (components, colors) => "<path d=\"M1 7h1v5h1v1h1V7h1V6h1V4h1V3h6v1h1v1h1v1h1v7h1v-2h1V7h-1V6h1V4h-1v1h-1V3h1V2h-1v1h-1V2h-1V1h-1V0h-1v1H6V0H5v1H4V0H3v1h1v2H3V2H2v1h1v1H2v2H1v1Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short01: (components, colors) => "<path d=\"M6 3v1H5v1H4v3h2V7h1V6h4V5h1V4h1v1h-1v1h1v1h1v1h2V5h-1V4h-1V3H6Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long14: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 11v6h1v-1h4v-1H6v-1H5v-1H4v-2H3Zm0-3h2V5h10v3h2V4h-1V3H4v1H3v4Zm13 3h1v6h-1v-1h-4v-1h2v-1h1v-1h1v-2Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long13: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 11v5h2v-3H4v-2H3Zm0-3h2V5h10v3h2V4h-1V3H4v1H3v4Zm13 3h1v5h-2v-3h1v-2Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long12: (components, colors) => "<path d=\"M4 13h1v1H3V4h1V3h1V2h10v1h1v1h1v10h-2v-1h1V5H4v8Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long11: (components, colors) => "<path d=\"M2 18h2v-1h4v-2H6v-1H5v-1H4V5h1V4h1v1h1V4h1v1h1V4h6v1h1v8h-1v1h-1v1h-2v2h4v1h2V4h-1V3h-1V2H4v1H3v1H2v14Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long10: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 14.1V11h1v2h1v1l-2 .1ZM17 11v3h-2v-1h1v-2h1ZM3 8h1V5h1V4h1V3h8v1h1v1h1v3h1V4h-1V3h-1V2H5v1H4v1H3v4Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long09: (components, colors) => "<path d=\"M2 15h2V5h12v10h2V4h-1V3h-1V2H4v1H3v1H2v11Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long08: (components, colors) => "<path d=\"M2 14h2V7h1V6h1V5h1V4h1V3h6v1h1v1h1v9h2V3h-1V2h-1V1H4v1H3v1H2v11Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long07: (components, colors) => "<path d=\"M4 5v3h1V5h2v1h1V5h1v1h1V5h5v3h1V5h1V3h-1V2h-2v1H6V2H4v1H3v2h1Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long06: (components, colors) => "<path d=\"M3 11h1V9h1V8h1V7h1V6h1V5h5v1h3V5h-1V4h-1V3H5v1H4v1H3v6Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long05: (components, colors) => "<path d=\"M2 17h2v-1h4v-1H6v-1H5v-1H4v-2H3V8h1V5h1V4h6V3h1v1h1V3h1v1h1v1h1v3h1v3h-1v2h-1v1h-1v1h-2v1h4v1h2V4h-1V3h-1V2h-1V1H5v1H4v1H3v1H2v13Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long04: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 14h2v-1H4v-2H3v3Zm12 0h2v-3h-1v2h-1v1Zm2-6V3h-1V2H4v1H3v5h1V5h1V4h1V3h8v1h1v1h1v3h1Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long03: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 13v1H2v2H1v1h1v-1h1v-1h1v-1h1v-1H4v-2H3v2Zm0-5h1V7h1V6h1V5h8v1h1v1h1v1h1V4h-1V3h-1V2H5v1H4v1H3v4Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long02: (components, colors) => "<path d=\"M2 15h4v-1H5v-1H4V6h2V5h2V4h1V3h4v1h1v1h1v1h1v7h-1v1h-1v1h4V4h-1V3h-1V2h-1V1H5v1H4v1H3v1H2v11Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long01: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 11v3H2v2H1v1h1v-1h1v-1h1v-1h1v-1H4v-2H3Zm14 0v3h1v2h1v1h-1v-1h-1v-1h-1v-1h-1v-1h1v-2h1Zm-1-3h1V4h-1V3h-1V2H5v1H4v1H3v4h1V7h1V6h1V5h8v1h1v1h1v1Z\" fill=\"".concat(colors.hair.value, "\"/>")
const $8522e41a7f0524d7$export$12c365d50e7cb3d6 = {
short11: (components, colors)=>`<path d="M4 4v2h1V5h1V4h8v1h1v1h1V4h-1V3H5v1H4Z" fill="${colors.hair.value}"/>`
,
short10: (components, colors)=>`<path d="M6 2h8v1h1v1h1v3h-1V6h-1V5h-1V4H9v1H7v1H6v1H4V4h1V3h1V2Z" fill="${colors.hair.value}"/>`
,
short09: (components, colors)=>`<path d="M4 7h1V5h1V4h2v1h1v1h2V5h1V4h2v1h1v2h1V5h-1V4h-1V3H6v1H5v1H4v2Z" fill="${colors.hair.value}"/>`
,
short08: (components, colors)=>`<path d="M3 8h1V5h12v3h1V4h-1V3h-1V2H5v1H4v1H3v4Z" fill="${colors.hair.value}"/>`
,
short07: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M2 5v1h1v1h2V5h1V3H4v1H3v1H2Zm6-1h2v1h2V4h1V3H8v1Zm6 1h1v2h2V6h1V5h-1V4h-1V3h-2v2Z" fill="${colors.hair.value}"/>`
,
short06: (components, colors)=>`<path d="M3 8h1V5h2V3h8v1h1v1h1v3h1V3h-2V2h-2V1h-1v1h-2V1H9v1H8V1H7v1H5v1H4v1H3v4Z" fill="${colors.hair.value}"/>`
,
short05: (components, colors)=>`<path d="M11 5V4h1V3H8v1h1v1h2Z" fill="${colors.hair.value}"/>`
,
short04: (components, colors)=>`<path d="M3 8h1V6h2V5h2V4h1v1h2v1h2v1h2v1h2V5h-1V4h-1V3H5v1H4v1H3v3Z" fill="${colors.hair.value}"/>`
,
short03: (components, colors)=>`<path d="M5 5h10V4h-1V3H6v1H5v1Z" fill="${colors.hair.value}"/>`
,
short02: (components, colors)=>`<path d="M3 5H2v3h2V5h1V4h1v1h2V4h4V3h1v1h1v1h1v1h1v2h1V7h1V5h-1V4h-1V3h-1V2h-1V1h-1v1h-2V1h-1v1H7V1H5v1H4v1H3v2Z" fill="${colors.hair.value}"/>`
,
long15: (components, colors)=>`<path d="M1 7h1v5h1v1h1V7h1V6h1V4h1V3h6v1h1v1h1v1h1v7h1v-2h1V7h-1V6h1V4h-1v1h-1V3h1V2h-1v1h-1V2h-1V1h-1V0h-1v1H6V0H5v1H4V0H3v1h1v2H3V2H2v1h1v1H2v2H1v1Z" fill="${colors.hair.value}"/>`
,
short01: (components, colors)=>`<path d="M6 3v1H5v1H4v3h2V7h1V6h4V5h1V4h1v1h-1v1h1v1h1v1h2V5h-1V4h-1V3H6Z" fill="${colors.hair.value}"/>`
,
long14: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M3 11v6h1v-1h4v-1H6v-1H5v-1H4v-2H3Zm0-3h2V5h10v3h2V4h-1V3H4v1H3v4Zm13 3h1v6h-1v-1h-4v-1h2v-1h1v-1h1v-2Z" fill="${colors.hair.value}"/>`
,
long13: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M3 11v5h2v-3H4v-2H3Zm0-3h2V5h10v3h2V4h-1V3H4v1H3v4Zm13 3h1v5h-2v-3h1v-2Z" fill="${colors.hair.value}"/>`
,
long12: (components, colors)=>`<path d="M4 13h1v1H3V4h1V3h1V2h10v1h1v1h1v10h-2v-1h1V5H4v8Z" fill="${colors.hair.value}"/>`
,
long11: (components, colors)=>`<path d="M2 18h2v-1h4v-2H6v-1H5v-1H4V5h1V4h1v1h1V4h1v1h1V4h6v1h1v8h-1v1h-1v1h-2v2h4v1h2V4h-1V3h-1V2H4v1H3v1H2v14Z" fill="${colors.hair.value}"/>`
,
long10: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M3 14.1V11h1v2h1v1l-2 .1ZM17 11v3h-2v-1h1v-2h1ZM3 8h1V5h1V4h1V3h8v1h1v1h1v3h1V4h-1V3h-1V2H5v1H4v1H3v4Z" fill="${colors.hair.value}"/>`
,
long09: (components, colors)=>`<path d="M2 15h2V5h12v10h2V4h-1V3h-1V2H4v1H3v1H2v11Z" fill="${colors.hair.value}"/>`
,
long08: (components, colors)=>`<path d="M2 14h2V7h1V6h1V5h1V4h1V3h6v1h1v1h1v9h2V3h-1V2h-1V1H4v1H3v1H2v11Z" fill="${colors.hair.value}"/>`
,
long07: (components, colors)=>`<path d="M4 5v3h1V5h2v1h1V5h1v1h1V5h5v3h1V5h1V3h-1V2h-2v1H6V2H4v1H3v2h1Z" fill="${colors.hair.value}"/>`
,
long06: (components, colors)=>`<path d="M3 11h1V9h1V8h1V7h1V6h1V5h5v1h3V5h-1V4h-1V3H5v1H4v1H3v6Z" fill="${colors.hair.value}"/>`
,
long05: (components, colors)=>`<path d="M2 17h2v-1h4v-1H6v-1H5v-1H4v-2H3V8h1V5h1V4h6V3h1v1h1V3h1v1h1v1h1v3h1v3h-1v2h-1v1h-1v1h-2v1h4v1h2V4h-1V3h-1V2h-1V1H5v1H4v1H3v1H2v13Z" fill="${colors.hair.value}"/>`
,
long04: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M3 14h2v-1H4v-2H3v3Zm12 0h2v-3h-1v2h-1v1Zm2-6V3h-1V2H4v1H3v5h1V5h1V4h1V3h8v1h1v1h1v3h1Z" fill="${colors.hair.value}"/>`
,
long03: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M3 13v1H2v2H1v1h1v-1h1v-1h1v-1h1v-1H4v-2H3v2Zm0-5h1V7h1V6h1V5h8v1h1v1h1v1h1V4h-1V3h-1V2H5v1H4v1H3v4Z" fill="${colors.hair.value}"/>`
,
long02: (components, colors)=>`<path d="M2 15h4v-1H5v-1H4V6h2V5h2V4h1V3h4v1h1v1h1v1h1v7h-1v1h-1v1h4V4h-1V3h-1V2h-1V1H5v1H4v1H3v1H2v11Z" fill="${colors.hair.value}"/>`
,
long01: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M3 11v3H2v2H1v1h1v-1h1v-1h1v-1h1v-1H4v-2H3Zm14 0v3h1v2h1v1h-1v-1h-1v-1h-1v-1h-1v-1h1v-2h1Zm-1-3h1V4h-1V3h-1V2H5v1H4v1H3v4h1V7h1V6h1V5h8v1h1v1h1v1Z" fill="${colors.hair.value}"/>`
};
const accessories$1 = {
variant04: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 10v1h1v-1H3Zm13 0v1h1v-1h-1Z\" fill=\"".concat(colors.accessories.value, "\"/>"),
variant03: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 10v2h1v-2H3Zm13 0h1v2h-1v-2Z\" fill=\"".concat(colors.accessories.value, "\"/>"),
variant02: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M3 10v2h1v-2H3Zm13 0h1v2h-1v-2Z\" fill=\"".concat(colors.accessories.value, "\"/><path d=\"M3 10v1h1v-1H3Zm13 0h1v1h-1v-1Z\" fill=\"#fff\" fill-opacity=\".4\"/></g>"),
variant01: (components, colors) => "<path d=\"M4 11H2v2h2v-2ZM18 11h-2v2h2v-2Z\" fill=\"".concat(colors.accessories.value, "\"/>")
const $7fb7bcd570788f0d$export$3bb43880931639de = {
variant04: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M3 10v1h1v-1H3Zm13 0v1h1v-1h-1Z" fill="${colors.accessories.value}"/>`
,
variant03: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M3 10v2h1v-2H3Zm13 0h1v2h-1v-2Z" fill="${colors.accessories.value}"/>`
,
variant02: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M3 10v2h1v-2H3Zm13 0h1v2h-1v-2Z" fill="${colors.accessories.value}"/><path d="M3 10v1h1v-1H3Zm13 0h1v1h-1v-1Z" fill="#fff" fill-opacity=".4"/></g>`
,
variant01: (components, colors)=>`<path d="M4 11H2v2h2v-2ZM18 11h-2v2h2v-2Z" fill="${colors.accessories.value}"/>`
};
const glasses$1 = {
variant07: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path opacity=\".2\" d=\"M5 7h3v3H5V7Zm7 0h3v3h-3V7Z\" fill=\"#fff\"/><path opacity=\".2\" d=\"M7 7h1v1H7V7Zm7 0h1v1h-1V7Z\" fill=\"#fff\"/><path d=\"M12 10V7h3v3h-3Zm-1-4v1H9V6H4v1H3v1h1v3h5V8h2v3h5V8h1V7h-1V6h-5Zm-6 4V7h3v3H5Z\" fill=\"".concat(colors.glasses.value, "\"/><path d=\"M3 7h1v1H3V7Zm6 0h2v1H9V7Zm7 0h1v1h-1V7Z\" fill=\"#fff\" fill-opacity=\".2\"/></g>"),
variant06: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path opacity=\".2\" d=\"M5 7h3v2H5V7Zm7 0h3v2h-3V7Z\" fill=\"#fff\"/><path opacity=\".2\" d=\"M7 7h1v1H7V7Zm7 0h1v1h-1V7Z\" fill=\"#fff\"/><path d=\"M5 7v2h3V7H5ZM4 6v1H3v1h1v1h1v1h3V9h1V8h2v1h1v1h3V9h1V8h1V7h-1V6h-5v1H9V6H4Zm8 1v2h3V7h-3Z\" fill=\"".concat(colors.glasses.value, "\"/><path d=\"M3 7h1v1H3V7Zm6 0h2v1H9V7Zm7 0h1v1h-1V7Z\" fill=\"#fff\" fill-opacity=\".2\"/></g>"),
variant05: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path opacity=\".2\" d=\"M5 8h3v1H5V8Zm7 0h3v1h-3V8Z\" fill=\"#fff\"/><path opacity=\".2\" d=\"M7 8h1v1H7V8Zm7 0h1v1h-1V8Z\" fill=\"#fff\"/><path d=\"M5 8v1h3V8H5ZM3 7v1h1v1h1v1h3V9h1V8h2v1h1v1h3V9h1V8h1V7H3Zm9 1v1h3V8h-3Z\" fill=\"".concat(colors.glasses.value, "\"/><path d=\"M3 7v1h1V7H3Zm6 0v1h2V7H9Zm7 0v1h1V7h-1Z\" fill=\"#fff\" fill-opacity=\".2\"/></g>"),
variant04: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path opacity=\".2\" d=\"M5 7h3v2H5V7Zm7 0h3v2h-3V7Z\" fill=\"#fff\"/><path opacity=\".2\" d=\"M7 7h1v1H7V7Zm7 0h1v1h-1V7Z\" fill=\"#fff\"/><path d=\"M12 7v2h3V7h-3ZM8 6H5v1H3v1h1v1h1v1h3V9h1V8h2v1h1v1h3V9h1V8h1V7h-2V6h-3v1H8V6ZM5 7v2h3V7H5Z\" fill=\"".concat(colors.glasses.value, "\"/><path d=\"M3 7h1v1H3V7Zm6 0h2v1H9V7Zm7 0h1v1h-1V7Z\" fill=\"#fff\" fill-opacity=\".2\"/></g>"),
variant03: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M4 8H3V7h1V6h5v1h2V6h5v1h1v1h-1v2h-5V8H9v2H4V8Zm1 0V7h3v2H5V8Zm7-1v2h3V7h-3Z\" fill=\"".concat(colors.glasses.value, "\"/><path opacity=\".2\" d=\"M5 7h3v2H5V7Zm7 0h3v2h-3V7Z\" fill=\"#fff\"/><path opacity=\".2\" d=\"M14 7h1v1h-1V7ZM7 7h1v1H7V7Z\" fill=\"#fff\"/><path d=\"M3 8V7h1v1H3Zm6-1v1h2V7H9Zm7 0v1h1V7h-1Z\" fill=\"#fff\" fill-opacity=\".2\"/></g>"),
variant02: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M4 8H3V7h14v1h-1v2h-5V8H9v2H4V8Zm1 0h3v1H5V8Zm7 0h3v1h-3V8Z\" fill=\"".concat(colors.glasses.value, "\"/><path opacity=\".2\" d=\"M7 8v1h1V8H7Zm7 0v1h1V8h-1Z\" fill=\"#fff\"/><path opacity=\".2\" d=\"M5 8h3v1H5V8Zm7 0h3v1h-3V8Z\" fill=\"#fff\"/><path d=\"M3 7v1h1V7H3Zm13 0v1h1V7h-1ZM9 7v1h2V7H9Z\" fill=\"#fff\" fill-opacity=\".2\"/></g>"),
variant01: (components, colors) => "<path d=\"M3 8V7h1V6h2v1h1V6h2v1h2V6h2v1h1V6h2v1h1v1h-1v1h-1v1h-1v1h-1v-1h-1V9h-1V8H9v1H8v1H7v1H6v-1H5V9H4V8H3Z\" fill=\"".concat(colors.glasses.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 7v1h1V7h1V6H4v1H3Zm5-1v1h1v1h2V7h1V6h-1v1H9V6H8Zm7 0v1h1v1h1V7h-1V6h-1Z\" fill=\"#fff\" fill-opacity=\".2\"/>")
const $8a5abea736e231e4$export$98222f1ebbc36891 = {
variant07: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path opacity=".2" d="M5 7h3v3H5V7Zm7 0h3v3h-3V7Z" fill="#fff"/><path opacity=".2" d="M7 7h1v1H7V7Zm7 0h1v1h-1V7Z" fill="#fff"/><path d="M12 10V7h3v3h-3Zm-1-4v1H9V6H4v1H3v1h1v3h5V8h2v3h5V8h1V7h-1V6h-5Zm-6 4V7h3v3H5Z" fill="${colors.glasses.value}"/><path d="M3 7h1v1H3V7Zm6 0h2v1H9V7Zm7 0h1v1h-1V7Z" fill="#fff" fill-opacity=".2"/></g>`
,
variant06: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path opacity=".2" d="M5 7h3v2H5V7Zm7 0h3v2h-3V7Z" fill="#fff"/><path opacity=".2" d="M7 7h1v1H7V7Zm7 0h1v1h-1V7Z" fill="#fff"/><path d="M5 7v2h3V7H5ZM4 6v1H3v1h1v1h1v1h3V9h1V8h2v1h1v1h3V9h1V8h1V7h-1V6h-5v1H9V6H4Zm8 1v2h3V7h-3Z" fill="${colors.glasses.value}"/><path d="M3 7h1v1H3V7Zm6 0h2v1H9V7Zm7 0h1v1h-1V7Z" fill="#fff" fill-opacity=".2"/></g>`
,
variant05: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path opacity=".2" d="M5 8h3v1H5V8Zm7 0h3v1h-3V8Z" fill="#fff"/><path opacity=".2" d="M7 8h1v1H7V8Zm7 0h1v1h-1V8Z" fill="#fff"/><path d="M5 8v1h3V8H5ZM3 7v1h1v1h1v1h3V9h1V8h2v1h1v1h3V9h1V8h1V7H3Zm9 1v1h3V8h-3Z" fill="${colors.glasses.value}"/><path d="M3 7v1h1V7H3Zm6 0v1h2V7H9Zm7 0v1h1V7h-1Z" fill="#fff" fill-opacity=".2"/></g>`
,
variant04: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path opacity=".2" d="M5 7h3v2H5V7Zm7 0h3v2h-3V7Z" fill="#fff"/><path opacity=".2" d="M7 7h1v1H7V7Zm7 0h1v1h-1V7Z" fill="#fff"/><path d="M12 7v2h3V7h-3ZM8 6H5v1H3v1h1v1h1v1h3V9h1V8h2v1h1v1h3V9h1V8h1V7h-2V6h-3v1H8V6ZM5 7v2h3V7H5Z" fill="${colors.glasses.value}"/><path d="M3 7h1v1H3V7Zm6 0h2v1H9V7Zm7 0h1v1h-1V7Z" fill="#fff" fill-opacity=".2"/></g>`
,
variant03: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M4 8H3V7h1V6h5v1h2V6h5v1h1v1h-1v2h-5V8H9v2H4V8Zm1 0V7h3v2H5V8Zm7-1v2h3V7h-3Z" fill="${colors.glasses.value}"/><path opacity=".2" d="M5 7h3v2H5V7Zm7 0h3v2h-3V7Z" fill="#fff"/><path opacity=".2" d="M14 7h1v1h-1V7ZM7 7h1v1H7V7Z" fill="#fff"/><path d="M3 8V7h1v1H3Zm6-1v1h2V7H9Zm7 0v1h1V7h-1Z" fill="#fff" fill-opacity=".2"/></g>`
,
variant02: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M4 8H3V7h14v1h-1v2h-5V8H9v2H4V8Zm1 0h3v1H5V8Zm7 0h3v1h-3V8Z" fill="${colors.glasses.value}"/><path opacity=".2" d="M7 8v1h1V8H7Zm7 0v1h1V8h-1Z" fill="#fff"/><path opacity=".2" d="M5 8h3v1H5V8Zm7 0h3v1h-3V8Z" fill="#fff"/><path d="M3 7v1h1V7H3Zm13 0v1h1V7h-1ZM9 7v1h2V7H9Z" fill="#fff" fill-opacity=".2"/></g>`
,
variant01: (components, colors)=>`<path d="M3 8V7h1V6h2v1h1V6h2v1h2V6h2v1h1V6h2v1h1v1h-1v1h-1v1h-1v1h-1v-1h-1V9h-1V8H9v1H8v1H7v1H6v-1H5V9H4V8H3Z" fill="${colors.glasses.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3 7v1h1V7h1V6H4v1H3Zm5-1v1h1v1h2V7h1V6h-1v1H9V6H8Zm7 0v1h1v1h1V7h-1V6h-1Z" fill="#fff" fill-opacity=".2"/>`
};
const hat$1 = {
variant01: (components, colors) => "<path d=\"M4 1v2H2v2h16V3h-2V1H4Z\" fill=\"".concat(colors.hat.value, "\"/>"),
variant02: (components, colors) => "<path d=\"M4 4H2v1h16V4h-2V1H4v3Z\" fill=\"".concat(colors.hat.value, "\"/>"),
variant03: (components, colors) => "<path d=\"M3 4v2h14V4h-1V3h-1V2H5v1H4v1H3Z\" fill=\"".concat(colors.hat.value, "\"/>"),
variant04: (components, colors) => "<path d=\"M6 1v1H5v1H4v2h14V4h-2V3h-1V2h-1V1H6Z\" fill=\"".concat(colors.hat.value, "\"/>"),
variant05: (components, colors) => "<path d=\"M3 5V3h2V1h10v2h2v2H3Z\" fill=\"".concat(colors.hat.value, "\"/><path d=\"M4 1v2h12V1H4Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant06: (components, colors) => "<path d=\"M3 5V4h2V1h10v3h2v1H3Z\" fill=\"".concat(colors.hat.value, "\"/><path d=\"M5 1v3h10V1H5Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant07: (components, colors) => "<path d=\"M3 6V4h1V3h1V2h10v1h1v1h1v2H3Z\" fill=\"".concat(colors.hat.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 3v1h12V3H4ZM3 5v1h14V5H3Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant08: (components, colors) => "<path d=\"M14 2H6v1H5v1H4v2h14V5h-2V4h-1V3h-1V2Z\" fill=\"".concat(colors.hat.value, "\"/><path d=\"M5 6h1V5h1V4h1V3H7v1H6v1H5v1Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant09: (components, colors) => "<path d=\"M5 1v2H3v2h14V3h-2V1H5Z\" fill=\"".concat(colors.hat.value, "\"/><path d=\"M14 3V0h-1v3h1Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant10: (components, colors) => "<path d=\"M4 0v5H2v1h16V5h-2V0H4Z\" fill=\"".concat(colors.hat.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 3V0h-1v3h1Zm-2-3v2h-1V0h1Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant11: (components, colors) => "<path d=\"M3 3v2h14V3h-1V2h-1V1H5v1H4v1H3Z\" fill=\"".concat(colors.hat.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14 1v4h-1V1h1Zm-2 0v4h-1V1h1Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant12: (components, colors) => "<path d=\"M5 4H4v2h14V5h-2V4h-1V3h-1V2H6v1H5v1Z\" fill=\"".concat(colors.hat.value, "\"/><path d=\"M14 4h-3v1h3V4Z\" fill=\"#fff\" fill-opacity=\".2\"/>")
const $005db0803c3bdc30$export$dbf38fa2a54a979a = {
variant01: (components, colors)=>`<path d="M4 1v2H2v2h16V3h-2V1H4Z" fill="${colors.hat.value}"/>`
,
variant02: (components, colors)=>`<path d="M4 4H2v1h16V4h-2V1H4v3Z" fill="${colors.hat.value}"/>`
,
variant03: (components, colors)=>`<path d="M3 4v2h14V4h-1V3h-1V2H5v1H4v1H3Z" fill="${colors.hat.value}"/>`
,
variant04: (components, colors)=>`<path d="M6 1v1H5v1H4v2h14V4h-2V3h-1V2h-1V1H6Z" fill="${colors.hat.value}"/>`
,
variant05: (components, colors)=>`<path d="M3 5V3h2V1h10v2h2v2H3Z" fill="${colors.hat.value}"/><path d="M4 1v2h12V1H4Z" fill="#fff" fill-opacity=".2"/>`
,
variant06: (components, colors)=>`<path d="M3 5V4h2V1h10v3h2v1H3Z" fill="${colors.hat.value}"/><path d="M5 1v3h10V1H5Z" fill="#fff" fill-opacity=".2"/>`
,
variant07: (components, colors)=>`<path d="M3 6V4h1V3h1V2h10v1h1v1h1v2H3Z" fill="${colors.hat.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M4 3v1h12V3H4ZM3 5v1h14V5H3Z" fill="#fff" fill-opacity=".2"/>`
,
variant08: (components, colors)=>`<path d="M14 2H6v1H5v1H4v2h14V5h-2V4h-1V3h-1V2Z" fill="${colors.hat.value}"/><path d="M5 6h1V5h1V4h1V3H7v1H6v1H5v1Z" fill="#fff" fill-opacity=".2"/>`
,
variant09: (components, colors)=>`<path d="M5 1v2H3v2h14V3h-2V1H5Z" fill="${colors.hat.value}"/><path d="M14 3V0h-1v3h1Z" fill="#fff" fill-opacity=".2"/>`
,
variant10: (components, colors)=>`<path d="M4 0v5H2v1h16V5h-2V0H4Z" fill="${colors.hat.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M15 3V0h-1v3h1Zm-2-3v2h-1V0h1Z" fill="#fff" fill-opacity=".2"/>`
,
variant11: (components, colors)=>`<path d="M3 3v2h14V3h-1V2h-1V1H5v1H4v1H3Z" fill="${colors.hat.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M14 1v4h-1V1h1Zm-2 0v4h-1V1h1Z" fill="#fff" fill-opacity=".2"/>`
,
variant12: (components, colors)=>`<path d="M5 4H4v2h14V5h-2V4h-1V3h-1V2H6v1H5v1Z" fill="${colors.hat.value}"/><path d="M14 4h-3v1h3V4Z" fill="#fff" fill-opacity=".2"/>`
};
const clothing = {
variant25: (components, colors) => "<path d=\"M3 20v-3h1v-1h12v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path d=\"M5 20v-2h1v-1h8v1h1v2h-2v-1h-2v1H9v-1H7v1H5Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant24: (components, colors) => "<path d=\"M3 20v-3h1v-1h12v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path d=\"M8 16H4v1H3v3h14v-3h-1v-1h-4v1h1v1h-1v1h-1v-1H9v1H8v-1H7v-1h1v-1Z\" fill=\"#fff\" fill-opacity=\".2\"/><path d=\"M9 16v1h2v-1H9Z\" fill=\"#fff\"/>"),
variant23: (components, colors) => "<path d=\"M3 20v-3h1v-1h12v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 16H4v1H3v3h6v-2H8v-1h1v-1Zm2 0h5v1h1v3h-6v-2h1v-1h-1v-1Z\" fill=\"#fff\" fill-opacity=\".3\"/>"),
variant22: (components, colors) => "<path d=\"M3 20v-3h1v-1h3v2h6v-2h3v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5 16H4v1H3v3h2v-4Zm1 0h1v2h6v-2h1v4H6v-4Zm9 0h1v1h1v3h-2v-4Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant21: (components, colors) => "<path d=\"M3 20v-3h1v-1h4v1h1v1h2v-1h1v-1h4v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 17v-1h3v1H4Zm9 0v-1h3v1h-3Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant20: (components, colors) => "<path d=\"M3 20v-3h1v-1h3v-1h1v1h1v1h2v-1h1v-1h1v1h3v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 16H4v1H3v3h6v-2H8v-1H6v-1Zm2 0h1-1Zm3 0h1-1Zm2 0h1v1h-2v1h-1v2h6v-3h-1v-1h-3Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant19: (components, colors) => "<path d=\"M5 16H4v1H3v3h14v-3h-1v-1h-3v1H7v-1H5Z\" fill=\"".concat(colors.clothes.value, "\"/><path d=\"M10 20v-1h3v1h-3Z\" fill=\"#fff\" fill-opacity=\".5\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5 16H4v1H3v3h1v-1h1v-3Zm1 0h1v1h6v-1h1v2H6v-2Zm9 0h1v1h1v3h-1v-1h-1v-3Z\" fill=\"#fff\" fill-opacity=\".8\"/>"),
variant18: (components, colors) => "<path d=\"M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 20v-1h1v1H3Zm2 0v-1h1v1H5Zm2 0v-1h1v1H7Zm2 0v-1h1v1H9Zm2 0v-1h1v1h-1Zm2 0v-1h1v1h-1Zm2 0v-1h1v1h-1Zm1-2h1v1h-1v-1Zm-2 0h1v1h-1v-1Zm-2 0h1v1h-1v-1Zm-2 0h1v1h-1v-1Zm-2 0h1v1H8v-1Zm-2 0h1v1H6v-1Zm-2 0h1v1H4v-1Zm-1-1h1v1H3v-1Zm2 0h1v1H5v-1Zm2 0h1v1H7v-1Zm2 0h1v1H9v-1Zm2 0h1v1h-1v-1Zm2 0h1v1h-1v-1Zm2 0h1v1h-1v-1ZM4 16h1v1H4v-1Zm2 0h1v1H6v-1Zm6 0h1v1h-1v-1Zm2 0h1v1h-1v-1Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant17: (components, colors) => "<path d=\"M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 20v-2h1v2H3Zm3 0v-2h2v2H6Zm4 0v-2h2v2h-2Zm4 0v-2h2v2h-2Zm2-3v1h1v-1h-1Zm-2 1v-2h-2v2h2Zm-6-1v1h2v-1H8Zm-4-1v2h2v-2H4Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant16: (components, colors) => "<path d=\"M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 19h14v1H3v-1Zm0-2h14v1H3v-1Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant15: (components, colors) => "<path d=\"M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/>"),
variant14: (components, colors) => "<path d=\"M3 20v-3h1v-1h4v-1h4v1h4v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path d=\"M3 20v-3h1v-1h12v1h1v3H3Z\" fill=\"#fff\" fill-opacity=\".2\"/><path d=\"M12 20v-1h3v1h-3Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant13: (components, colors) => "<path d=\"M3 20v-3h1v-1h12v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/>"),
variant12: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 16v4h4v-1H7v-1H6v-1H5v-1H4Zm12 0v4h-4v-1h1v-1h1v-1h1v-1h1Z\" fill=\"".concat(colors.clothes.value, "\"/>"),
variant11: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5 16h1v2h1v1h1v1H5v-4Zm9 0h1v4h-3v-1h1v-1h1v-2Z\" fill=\"".concat(colors.clothes.value, "\"/>"),
variant10: (components, colors) => "<path d=\"M4 20v-2h1v-1h1v-1h2v1h1v1h2v-1h1v-1h2v1h1v1h1v2H4Z\" fill=\"".concat(colors.clothes.value, "\"/>"),
variant09: (components, colors) => "<path d=\"M3 20v-3h1v-1h4v1h1v1h2v-1h1v-1h4v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path d=\"M3 20v-3h1v-1h2v1h1v1h1v1h4v-1h1v-1h1v-1h2v1h1v3H3Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant08: (components, colors) => "<path d=\"M3 20v-3h1v-1h5v1h2v-1h5v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 20v-2h1v1h3v1H3Zm14 0v-2h-1v1h-3v1h4Z\" fill=\"#fff\" fill-opacity=\".4\"/><path d=\"M7 16H4v1H3v1h1v1h3v1h6v-1h3v-1h1v-1h-1v-1h-3v1H7v-1Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant07: (components, colors) => "<path d=\"M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path d=\"M15 20h2v-3h-1v-1h-4v1H8v-1H4v1H3v3h2v-2h10v2Z\" fill=\"#fff\" fill-opacity=\".4\"/>"),
variant06: (components, colors) => "<path d=\"M3 20v-3h1v-1h4v1h1v1h2v-1h1v-1h4v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path d=\"M6 16v1h1v1h1v1h4v-1h1v-1h1v-1h-2v1h-1v1H9v-1H8v-1H6Z\" fill=\"#fff\" fill-opacity=\".4\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13 20v-1h2v1h-2Zm1-4v1h2v-1h-2Zm-8 0H4v1h2v-1Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant05: (components, colors) => "<path d=\"M3 20v-3h1v-1h3v1h1v1h1v1h2v-1h1v-1h1v-1h3v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/>"),
variant04: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 20v-3h1v-1h2v1h1v1h1v1h1v1H3Zm14 0v-3h-1v-1h-2v1h-1v1h-1v1h-1v1h6Z\" fill=\"".concat(colors.clothes.value, "\"/>"),
variant03: (components, colors) => "<path d=\"M4 16v4h4v-1H7v-1H6v-2H4ZM16 20v-4h-2v2h-1v1h-1v1h4Z\" fill=\"".concat(colors.clothes.value, "\"/>"),
variant02: (components, colors) => "<path d=\"M3 20v-3h1v-1h3v1h1v1h1v1h2v-1h1v-1h1v-1h3v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path d=\"M6 16v1h1v1h1v1h1v1h2v-1h1v-1h1v-1h1v-1h-1v1h-1v1h-1v1H9v-1H8v-1H7v-1H6Z\" fill=\"#fff\" fill-opacity=\".4\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 16v1h-1v1h-1v1h-1v1h-1v-1h1v-1h1v-1h1v-1h1ZM5 16v1h1v1h1v1h1v1h1v-1H8v-1H7v-1H6v-1H5Z\" fill=\"#fff\" fill-opacity=\".2\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 20h1v-3h1v1h1v1h1v1h1v-1H7v-1H6v-1H5v-1H4v1H3v3Zm14 0v-3h-1v-1h-1v1h-1v1h-1v1h-1v1h1v-1h1v-1h1v-1h1v3h1Z\" fill=\"#fff\" fill-opacity=\".1\"/>"),
variant01: (components, colors) => "<path d=\"M3 20v-3h1v-1h5v1h2v-1h5v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 17h14v1H3v-1Zm0 2v1h14v-1H3Z\" fill=\"#fff\" fill-opacity=\".2\"/>")
const $2210f038691c9666$export$315fd2fadf178734 = {
variant25: (components, colors)=>`<path d="M3 20v-3h1v-1h12v1h1v3H3Z" fill="${colors.clothes.value}"/><path d="M5 20v-2h1v-1h8v1h1v2h-2v-1h-2v1H9v-1H7v1H5Z" fill="#fff" fill-opacity=".2"/>`
,
variant24: (components, colors)=>`<path d="M3 20v-3h1v-1h12v1h1v3H3Z" fill="${colors.clothes.value}"/><path d="M8 16H4v1H3v3h14v-3h-1v-1h-4v1h1v1h-1v1h-1v-1H9v1H8v-1H7v-1h1v-1Z" fill="#fff" fill-opacity=".2"/><path d="M9 16v1h2v-1H9Z" fill="#fff"/>`
,
variant23: (components, colors)=>`<path d="M3 20v-3h1v-1h12v1h1v3H3Z" fill="${colors.clothes.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M9 16H4v1H3v3h6v-2H8v-1h1v-1Zm2 0h5v1h1v3h-6v-2h1v-1h-1v-1Z" fill="#fff" fill-opacity=".3"/>`
,
variant22: (components, colors)=>`<path d="M3 20v-3h1v-1h3v2h6v-2h3v1h1v3H3Z" fill="${colors.clothes.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M5 16H4v1H3v3h2v-4Zm1 0h1v2h6v-2h1v4H6v-4Zm9 0h1v1h1v3h-2v-4Z" fill="#fff" fill-opacity=".2"/>`
,
variant21: (components, colors)=>`<path d="M3 20v-3h1v-1h4v1h1v1h2v-1h1v-1h4v1h1v3H3Z" fill="${colors.clothes.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M4 17v-1h3v1H4Zm9 0v-1h3v1h-3Z" fill="#fff" fill-opacity=".2"/>`
,
variant20: (components, colors)=>`<path d="M3 20v-3h1v-1h3v-1h1v1h1v1h2v-1h1v-1h1v1h3v1h1v3H3Z" fill="${colors.clothes.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M6 16H4v1H3v3h6v-2H8v-1H6v-1Zm2 0h1-1Zm3 0h1-1Zm2 0h1v1h-2v1h-1v2h6v-3h-1v-1h-3Z" fill="#fff" fill-opacity=".2"/>`
,
variant19: (components, colors)=>`<path d="M5 16H4v1H3v3h14v-3h-1v-1h-3v1H7v-1H5Z" fill="${colors.clothes.value}"/><path d="M10 20v-1h3v1h-3Z" fill="#fff" fill-opacity=".5"/><path fill-rule="evenodd" clip-rule="evenodd" d="M5 16H4v1H3v3h1v-1h1v-3Zm1 0h1v1h6v-1h1v2H6v-2Zm9 0h1v1h1v3h-1v-1h-1v-3Z" fill="#fff" fill-opacity=".8"/>`
,
variant18: (components, colors)=>`<path d="M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z" fill="${colors.clothes.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3 20v-1h1v1H3Zm2 0v-1h1v1H5Zm2 0v-1h1v1H7Zm2 0v-1h1v1H9Zm2 0v-1h1v1h-1Zm2 0v-1h1v1h-1Zm2 0v-1h1v1h-1Zm1-2h1v1h-1v-1Zm-2 0h1v1h-1v-1Zm-2 0h1v1h-1v-1Zm-2 0h1v1h-1v-1Zm-2 0h1v1H8v-1Zm-2 0h1v1H6v-1Zm-2 0h1v1H4v-1Zm-1-1h1v1H3v-1Zm2 0h1v1H5v-1Zm2 0h1v1H7v-1Zm2 0h1v1H9v-1Zm2 0h1v1h-1v-1Zm2 0h1v1h-1v-1Zm2 0h1v1h-1v-1ZM4 16h1v1H4v-1Zm2 0h1v1H6v-1Zm6 0h1v1h-1v-1Zm2 0h1v1h-1v-1Z" fill="#fff" fill-opacity=".2"/>`
,
variant17: (components, colors)=>`<path d="M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z" fill="${colors.clothes.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3 20v-2h1v2H3Zm3 0v-2h2v2H6Zm4 0v-2h2v2h-2Zm4 0v-2h2v2h-2Zm2-3v1h1v-1h-1Zm-2 1v-2h-2v2h2Zm-6-1v1h2v-1H8Zm-4-1v2h2v-2H4Z" fill="#fff" fill-opacity=".2"/>`
,
variant16: (components, colors)=>`<path d="M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z" fill="${colors.clothes.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3 19h14v1H3v-1Zm0-2h14v1H3v-1Z" fill="#fff" fill-opacity=".2"/>`
,
variant15: (components, colors)=>`<path d="M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z" fill="${colors.clothes.value}"/>`
,
variant14: (components, colors)=>`<path d="M3 20v-3h1v-1h4v-1h4v1h4v1h1v3H3Z" fill="${colors.clothes.value}"/><path d="M3 20v-3h1v-1h12v1h1v3H3Z" fill="#fff" fill-opacity=".2"/><path d="M12 20v-1h3v1h-3Z" fill="#fff" fill-opacity=".2"/>`
,
variant13: (components, colors)=>`<path d="M3 20v-3h1v-1h12v1h1v3H3Z" fill="${colors.clothes.value}"/>`
,
variant12: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M4 16v4h4v-1H7v-1H6v-1H5v-1H4Zm12 0v4h-4v-1h1v-1h1v-1h1v-1h1Z" fill="${colors.clothes.value}"/>`
,
variant11: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M5 16h1v2h1v1h1v1H5v-4Zm9 0h1v4h-3v-1h1v-1h1v-2Z" fill="${colors.clothes.value}"/>`
,
variant10: (components, colors)=>`<path d="M4 20v-2h1v-1h1v-1h2v1h1v1h2v-1h1v-1h2v1h1v1h1v2H4Z" fill="${colors.clothes.value}"/>`
,
variant09: (components, colors)=>`<path d="M3 20v-3h1v-1h4v1h1v1h2v-1h1v-1h4v1h1v3H3Z" fill="${colors.clothes.value}"/><path d="M3 20v-3h1v-1h2v1h1v1h1v1h4v-1h1v-1h1v-1h2v1h1v3H3Z" fill="#fff" fill-opacity=".2"/>`
,
variant08: (components, colors)=>`<path d="M3 20v-3h1v-1h5v1h2v-1h5v1h1v3H3Z" fill="${colors.clothes.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3 20v-2h1v1h3v1H3Zm14 0v-2h-1v1h-3v1h4Z" fill="#fff" fill-opacity=".4"/><path d="M7 16H4v1H3v1h1v1h3v1h6v-1h3v-1h1v-1h-1v-1h-3v1H7v-1Z" fill="#fff" fill-opacity=".2"/>`
,
variant07: (components, colors)=>`<path d="M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z" fill="${colors.clothes.value}"/><path d="M15 20h2v-3h-1v-1h-4v1H8v-1H4v1H3v3h2v-2h10v2Z" fill="#fff" fill-opacity=".4"/>`
,
variant06: (components, colors)=>`<path d="M3 20v-3h1v-1h4v1h1v1h2v-1h1v-1h4v1h1v3H3Z" fill="${colors.clothes.value}"/><path d="M6 16v1h1v1h1v1h4v-1h1v-1h1v-1h-2v1h-1v1H9v-1H8v-1H6Z" fill="#fff" fill-opacity=".4"/><path fill-rule="evenodd" clip-rule="evenodd" d="M13 20v-1h2v1h-2Zm1-4v1h2v-1h-2Zm-8 0H4v1h2v-1Z" fill="#fff" fill-opacity=".2"/>`
,
variant05: (components, colors)=>`<path d="M3 20v-3h1v-1h3v1h1v1h1v1h2v-1h1v-1h1v-1h3v1h1v3H3Z" fill="${colors.clothes.value}"/>`
,
variant04: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M3 20v-3h1v-1h2v1h1v1h1v1h1v1H3Zm14 0v-3h-1v-1h-2v1h-1v1h-1v1h-1v1h6Z" fill="${colors.clothes.value}"/>`
,
variant03: (components, colors)=>`<path d="M4 16v4h4v-1H7v-1H6v-2H4ZM16 20v-4h-2v2h-1v1h-1v1h4Z" fill="${colors.clothes.value}"/>`
,
variant02: (components, colors)=>`<path d="M3 20v-3h1v-1h3v1h1v1h1v1h2v-1h1v-1h1v-1h3v1h1v3H3Z" fill="${colors.clothes.value}"/><path d="M6 16v1h1v1h1v1h1v1h2v-1h1v-1h1v-1h1v-1h-1v1h-1v1h-1v1H9v-1H8v-1H7v-1H6Z" fill="#fff" fill-opacity=".4"/><path fill-rule="evenodd" clip-rule="evenodd" d="M15 16v1h-1v1h-1v1h-1v1h-1v-1h1v-1h1v-1h1v-1h1ZM5 16v1h1v1h1v1h1v1h1v-1H8v-1H7v-1H6v-1H5Z" fill="#fff" fill-opacity=".2"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3 20h1v-3h1v1h1v1h1v1h1v-1H7v-1H6v-1H5v-1H4v1H3v3Zm14 0v-3h-1v-1h-1v1h-1v1h-1v1h-1v1h1v-1h1v-1h1v-1h1v3h1Z" fill="#fff" fill-opacity=".1"/>`
,
variant01: (components, colors)=>`<path d="M3 20v-3h1v-1h5v1h2v-1h5v1h1v3H3Z" fill="${colors.clothes.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3 17h14v1H3v-1Zm0 2v1h14v-1H3Z" fill="#fff" fill-opacity=".2"/>`
};
var components = /*#__PURE__*/Object.freeze({
__proto__: null,
beard: beard,
eyes: eyes,
eyebrows: eyebrows,
mouth: mouth$1,
hair: hair$1,
accessories: accessories$1,
glasses: glasses$1,
hat: hat$1,
clothing: clothing
});
function pickComponent(_ref) {
let {
prng,
group,
values = []
} = _ref;
const componentCollection = components;
const key = prng.pick(values);
if (componentCollection[group][key]) {
return {
name: key,
value: componentCollection[group][key]
function $e7c04b8600ad5c5c$export$5bc6178a9a86ed74({ prng: prng , group: group , values: values = [] }) {
const componentCollection = $6694e050ea5985cb$exports;
const key = prng.pick(values);
if (componentCollection[group][key]) return {
name: key,
value: componentCollection[group][key]
};
} else {
return undefined;
}
else return undefined;
}
function getComponents(_ref) {
let {
prng,
options
} = _ref;
const beardComponent = pickComponent({
prng,
group: 'beard',
values: options.beard
});
const eyesComponent = pickComponent({
prng,
group: 'eyes',
values: options.eyes
});
const eyebrowsComponent = pickComponent({
prng,
group: 'eyebrows',
values: options.eyebrows
});
const mouthComponent = pickComponent({
prng,
group: 'mouth',
values: options.mouth
});
const hairComponent = pickComponent({
prng,
group: 'hair',
values: options.hair
});
const accessoriesComponent = pickComponent({
prng,
group: 'accessories',
values: options.accessories
});
const glassesComponent = pickComponent({
prng,
group: 'glasses',
values: options.glasses
});
const hatComponent = pickComponent({
prng,
group: 'hat',
values: options.hat
});
const clothingComponent = pickComponent({
prng,
group: 'clothing',
values: options.clothing
});
return {
beard: prng.bool(options.beardProbability) ? beardComponent : undefined,
eyes: eyesComponent,
eyebrows: eyebrowsComponent,
mouth: mouthComponent,
hair: prng.bool(options.hairProbability) ? hairComponent : undefined,
accessories: prng.bool(options.accessoriesProbability) ? accessoriesComponent : undefined,
glasses: prng.bool(options.glassesProbability) ? glassesComponent : undefined,
hat: prng.bool(options.hatProbability) ? hatComponent : undefined,
clothing: clothingComponent
};
function $f56d4e9f38727ea0$export$4e811121b221213b({ prng: prng , options: options }) {
const beardComponent = $e7c04b8600ad5c5c$export$5bc6178a9a86ed74({
prng: prng,
group: 'beard',
values: options.beard
});
const eyesComponent = $e7c04b8600ad5c5c$export$5bc6178a9a86ed74({
prng: prng,
group: 'eyes',
values: options.eyes
});
const eyebrowsComponent = $e7c04b8600ad5c5c$export$5bc6178a9a86ed74({
prng: prng,
group: 'eyebrows',
values: options.eyebrows
});
const mouthComponent = $e7c04b8600ad5c5c$export$5bc6178a9a86ed74({
prng: prng,
group: 'mouth',
values: options.mouth
});
const hairComponent = $e7c04b8600ad5c5c$export$5bc6178a9a86ed74({
prng: prng,
group: 'hair',
values: options.hair
});
const accessoriesComponent = $e7c04b8600ad5c5c$export$5bc6178a9a86ed74({
prng: prng,
group: 'accessories',
values: options.accessories
});
const glassesComponent = $e7c04b8600ad5c5c$export$5bc6178a9a86ed74({
prng: prng,
group: 'glasses',
values: options.glasses
});
const hatComponent = $e7c04b8600ad5c5c$export$5bc6178a9a86ed74({
prng: prng,
group: 'hat',
values: options.hat
});
const clothingComponent = $e7c04b8600ad5c5c$export$5bc6178a9a86ed74({
prng: prng,
group: 'clothing',
values: options.clothing
});
return {
beard: prng.bool(options.beardProbability) ? beardComponent : undefined,
eyes: eyesComponent,
eyebrows: eyebrowsComponent,
mouth: mouthComponent,
hair: prng.bool(options.hairProbability) ? hairComponent : undefined,
accessories: prng.bool(options.accessoriesProbability) ? accessoriesComponent : undefined,
glasses: prng.bool(options.glassesProbability) ? glassesComponent : undefined,
hat: prng.bool(options.hatProbability) ? hatComponent : undefined,
clothing: clothingComponent
};
}
const skin = {
variant01: 'rgba(255, 219, 172, 1)',
variant02: 'rgba(245, 207, 160, 1)',
variant03: 'rgba(234, 195, 147, 1)',
variant04: 'rgba(224, 182, 135, 1)',
variant05: 'rgba(203, 158, 110, 1)',
variant06: 'rgba(182, 134, 85, 1)',
variant07: 'rgba(162, 109, 61, 1)',
variant08: 'rgba(141, 85, 36, 1)'
var $9bf1d95fd01da3db$exports = {};
$parcel$export($9bf1d95fd01da3db$exports, "skin", function () { return $4689a9bb04da3cf6$export$fcdfe9c56b00fbfc; });
$parcel$export($9bf1d95fd01da3db$exports, "hair", function () { return $0f4a6f5b53933867$export$12c365d50e7cb3d6; });
$parcel$export($9bf1d95fd01da3db$exports, "accessories", function () { return $d4f7c8d72f70a8be$export$3bb43880931639de; });
$parcel$export($9bf1d95fd01da3db$exports, "mouth", function () { return $27ce771debfc9644$export$4ec1914b3efc3f9a; });
$parcel$export($9bf1d95fd01da3db$exports, "clothes", function () { return $b2c6effc397611a7$export$7f97afff939ca5e8; });
$parcel$export($9bf1d95fd01da3db$exports, "hat", function () { return $081a3aae87035010$export$dbf38fa2a54a979a; });
$parcel$export($9bf1d95fd01da3db$exports, "glasses", function () { return $52bca16690f915aa$export$98222f1ebbc36891; });
const $4689a9bb04da3cf6$export$fcdfe9c56b00fbfc = {
variant01: 'rgba(255, 219, 172, 1)',
variant02: 'rgba(245, 207, 160, 1)',
variant03: 'rgba(234, 195, 147, 1)',
variant04: 'rgba(224, 182, 135, 1)',
variant05: 'rgba(203, 158, 110, 1)',
variant06: 'rgba(182, 134, 85, 1)',
variant07: 'rgba(162, 109, 61, 1)',
variant08: 'rgba(141, 85, 36, 1)'
};
const hair = {
variant01: 'rgba(202, 177, 136, 1)',
variant02: 'rgba(167, 137, 97, 1)',
variant03: 'rgba(131, 98, 59, 1)',
variant04: 'rgba(96, 58, 20, 1)',
variant05: 'rgba(96, 48, 21, 1)',
variant06: 'rgba(97, 38, 22, 1)',
variant07: 'rgba(97, 28, 23, 1)',
variant08: 'rgba(78, 26, 19, 1)',
variant09: 'rgba(59, 23, 14, 1)',
variant10: 'rgba(40, 21, 10, 1)'
const $0f4a6f5b53933867$export$12c365d50e7cb3d6 = {
variant01: 'rgba(202, 177, 136, 1)',
variant02: 'rgba(167, 137, 97, 1)',
variant03: 'rgba(131, 98, 59, 1)',
variant04: 'rgba(96, 58, 20, 1)',
variant05: 'rgba(96, 48, 21, 1)',
variant06: 'rgba(97, 38, 22, 1)',
variant07: 'rgba(97, 28, 23, 1)',
variant08: 'rgba(78, 26, 19, 1)',
variant09: 'rgba(59, 23, 14, 1)',
variant10: 'rgba(40, 21, 10, 1)'
};
const accessories = {
gold01: 'rgba(218, 165, 32, 1)',
gold02: 'rgba(255, 215, 0, 1)',
gold03: 'rgba(250, 250, 210, 1)',
silver01: 'rgba(211, 211, 211, 1)',
silver02: 'rgba(169, 169, 169, 1)'
const $d4f7c8d72f70a8be$export$3bb43880931639de = {
gold01: 'rgba(218, 165, 32, 1)',
gold02: 'rgba(255, 215, 0, 1)',
gold03: 'rgba(250, 250, 210, 1)',
silver01: 'rgba(211, 211, 211, 1)',
silver02: 'rgba(169, 169, 169, 1)'
};
const mouth = {
variant01: 'rgba(210, 153, 133, 1)',
variant02: 'rgba(201, 130, 118, 1)',
variant03: 'rgba(227, 93, 106, 1)',
variant04: 'rgba(222, 15, 13, 1)'
const $27ce771debfc9644$export$4ec1914b3efc3f9a = {
variant01: 'rgba(210, 153, 133, 1)',
variant02: 'rgba(201, 130, 118, 1)',
variant03: 'rgba(227, 93, 106, 1)',
variant04: 'rgba(222, 15, 13, 1)'
};
const clothes = {
yellow01: 'rgba(255, 238, 173, 1)',
yellow02: 'rgba(255, 217, 105, 1)',
yellow03: 'rgba(255, 196, 37, 1)',
red01: 'rgba(255, 111, 105, 1)',
red02: 'rgba(209, 17, 65, 1)',
red03: 'rgba(174, 0, 1, 1)',
blue01: 'rgba(91, 192, 222, 1)',
blue02: 'rgba(66, 139, 202, 1)',
blue03: 'rgba(3, 57, 108, 1)',
green01: 'rgba(136, 216, 176, 1)',
green02: 'rgba(68, 197, 133, 1)',
green03: 'rgba(0, 177, 89, 1)'
const $b2c6effc397611a7$export$7f97afff939ca5e8 = {
yellow01: 'rgba(255, 238, 173, 1)',
yellow02: 'rgba(255, 217, 105, 1)',
yellow03: 'rgba(255, 196, 37, 1)',
red01: 'rgba(255, 111, 105, 1)',
red02: 'rgba(209, 17, 65, 1)',
red03: 'rgba(174, 0, 1, 1)',
blue01: 'rgba(91, 192, 222, 1)',
blue02: 'rgba(66, 139, 202, 1)',
blue03: 'rgba(3, 57, 108, 1)',
green01: 'rgba(136, 216, 176, 1)',
green02: 'rgba(68, 197, 133, 1)',
green03: 'rgba(0, 177, 89, 1)'
};
const hat = {
pink01: 'rgba(204, 97, 146, 1)',
blue01: 'rgba(38, 99, 163, 1)',
green01: 'rgba(61, 138, 107, 1)',
purple01: 'rgba(97, 79, 138, 1)',
red01: 'rgba(166, 33, 22, 1)',
black01: 'rgba(46, 30, 5, 1)',
gray01: 'rgba(152, 151, 137, 1)'
const $081a3aae87035010$export$dbf38fa2a54a979a = {
pink01: 'rgba(204, 97, 146, 1)',
blue01: 'rgba(38, 99, 163, 1)',
green01: 'rgba(61, 138, 107, 1)',
purple01: 'rgba(97, 79, 138, 1)',
red01: 'rgba(166, 33, 22, 1)',
black01: 'rgba(46, 30, 5, 1)',
gray01: 'rgba(152, 151, 137, 1)'
};
const glasses = {
green01: 'rgba(95, 112, 92, 1)',
blue01: 'rgba(67, 103, 125, 1)',
red01: 'rgba(160, 75, 93, 1)',
black01: 'rgba(75, 75, 75, 1)',
black02: 'rgba(50, 50, 50, 1)',
black03: 'rgba(25, 25, 25, 1)'
const $52bca16690f915aa$export$98222f1ebbc36891 = {
green01: 'rgba(95, 112, 92, 1)',
blue01: 'rgba(67, 103, 125, 1)',
red01: 'rgba(160, 75, 93, 1)',
black01: 'rgba(75, 75, 75, 1)',
black02: 'rgba(50, 50, 50, 1)',
black03: 'rgba(25, 25, 25, 1)'
};
var colors = /*#__PURE__*/Object.freeze({
__proto__: null,
skin: skin,
hair: hair,
accessories: accessories,
mouth: mouth,
clothes: clothes,
hat: hat,
glasses: glasses
});
function pickColor(_ref) {
var _colorCollection$grou;
let {
prng,
group,
values = []
} = _ref;
const colorCollection = colors;
if (values.length === 0) {
values.push('transparent');
}
function $f709f109054a4dd3$export$c6d89e41e42fa994({ prng: prng , group: group , values: values = [] }) {
const colorCollection = $9bf1d95fd01da3db$exports;
if (values.length === 0) values.push('transparent');
const key = prng.pick(values);
var _key;
return {
name: key,
value: (_key = colorCollection[group][key]) !== null && _key !== void 0 ? _key : key
};
}
const key = prng.pick(values);
return {
name: key,
value: (_colorCollection$grou = colorCollection[group][key]) !== null && _colorCollection$grou !== void 0 ? _colorCollection$grou : key
};
function $76f3e3838fb80a35$export$6cee60e8aa85e528({ prng: prng , options: options }) {
return {
skin: $f709f109054a4dd3$export$c6d89e41e42fa994({
prng: prng,
group: 'skin',
values: options.skinColor
}),
hair: $f709f109054a4dd3$export$c6d89e41e42fa994({
prng: prng,
group: 'hair',
values: options.hairColor
}),
accessories: $f709f109054a4dd3$export$c6d89e41e42fa994({
prng: prng,
group: 'accessories',
values: options.accessoriesColor
}),
mouth: $f709f109054a4dd3$export$c6d89e41e42fa994({
prng: prng,
group: 'mouth',
values: options.mouthColor
}),
clothes: $f709f109054a4dd3$export$c6d89e41e42fa994({
prng: prng,
group: 'clothes',
values: options.clothesColor
}),
hat: $f709f109054a4dd3$export$c6d89e41e42fa994({
prng: prng,
group: 'hat',
values: options.hatColor
}),
glasses: $f709f109054a4dd3$export$c6d89e41e42fa994({
prng: prng,
group: 'glasses',
values: options.glassesColor
})
};
}
function getColors(_ref) {
let {
prng,
options
} = _ref;
return {
skin: pickColor({
prng,
group: 'skin',
values: options.skinColor
}),
hair: pickColor({
prng,
group: 'hair',
values: options.hairColor
}),
accessories: pickColor({
prng,
group: 'accessories',
values: options.accessoriesColor
}),
mouth: pickColor({
prng,
group: 'mouth',
values: options.mouthColor
}),
clothes: pickColor({
prng,
group: 'clothes',
values: options.clothesColor
}),
hat: pickColor({
prng,
group: 'hat',
values: options.hatColor
}),
glasses: pickColor({
prng,
group: 'glasses',
values: options.glassesColor
})
};
function $bb5024b068ebba63$export$19269755e7fb6f76({ prng: prng , options: options , preview: preview }) {
// Write your modifications here
}
const dimensions = {
beard: {
width: 20,
height: 20
},
eyes: {
width: 20,
height: 20
},
eyebrows: {
width: 20,
height: 20
},
mouth: {
width: 20,
height: 20
},
hair: {
width: 20,
height: 20
},
accessories: {
width: 20,
height: 20
},
glasses: {
width: 20,
height: 20
},
hat: {
width: 20,
height: 20
},
clothing: {
width: 20,
height: 20
}
};
const style = {
meta: {
title: 'Pixel Art',
creator: 'Plastic Jam',
license: {
name: 'MIT',
url: 'https://github.com/dicebear/dicebear/blob/main/packages/%40dicebear/pixel-art/LICENSE'
}
},
schema: schema$1,
create: _ref => {
var _components$beard$val, _components$beard, _components$eyes$valu, _components$eyes, _components$eyebrows$, _components$eyebrows, _components$mouth$val, _components$mouth, _components$hair$valu, _components$hair, _components$accessori, _components$accessori2, _components$glasses$v, _components$glasses, _components$hat$value, _components$hat, _components$clothing$, _components$clothing;
function $ac871737f6651999$export$2538c3cd8a13189f({ prng: prng , options: options , components: components , colors: colors , preview: preview }) {
// Write your modifications here
}
let {
prng,
options
} = _ref;
const components = getComponents({
prng,
options
});
const colors = getColors({
prng,
options
});
return {
attributes: {
viewBox: '0 0 20 20',
fill: 'none',
'shape-rendering': 'auto'
},
body: "<path d=\"M6 4V3h8v1h1v1h1v3h1v3h-1v2h-1v1h-1v1h-2v1h4v1h1v3H3v-3h1v-1h4v-1H6v-1H5v-1H4v-2H3V8h1V5h1V4h1Z\" fill=\"".concat(colors.skin.value, "\"/><path d=\"M6 3v1H5v1H4v3H3v3h1v2h1v1h1v1h8v-1h1v-1h1v-2h1V8h-1V5h-1V4h-1V3H6Z\" fill=\"#fff\" fill-opacity=\".1\"/>").concat((_components$beard$val = (_components$beard = components.beard) === null || _components$beard === void 0 ? void 0 : _components$beard.value(components, colors)) !== null && _components$beard$val !== void 0 ? _components$beard$val : '').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 : '').concat((_components$eyebrows$ = (_components$eyebrows = components.eyebrows) === null || _components$eyebrows === void 0 ? void 0 : _components$eyebrows.value(components, colors)) !== null && _components$eyebrows$ !== void 0 ? _components$eyebrows$ : '').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 : '').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 : '').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 : '').concat((_components$glasses$v = (_components$glasses = components.glasses) === null || _components$glasses === void 0 ? void 0 : _components$glasses.value(components, colors)) !== null && _components$glasses$v !== void 0 ? _components$glasses$v : '').concat((_components$hat$value = (_components$hat = components.hat) === null || _components$hat === void 0 ? void 0 : _components$hat.value(components, colors)) !== null && _components$hat$value !== void 0 ? _components$hat$value : '').concat((_components$clothing$ = (_components$clothing = components.clothing) === null || _components$clothing === void 0 ? void 0 : _components$clothing.value(components, colors)) !== null && _components$clothing$ !== void 0 ? _components$clothing$ : '')
};
},
preview: _ref2 => {
let {
prng,
options,
property
} = _ref2;
const componentGroup = property.toString();
const colorGroup = property.toString().replace(/Color$/, '');
const components = getComponents({
prng,
options
});
const colors = getColors({
prng,
options
});
if (componentGroup in components) {
var _components$component, _components$component2;
const {
width,
height
} = dimensions[componentGroup];
return {
attributes: {
viewBox: "0 0 ".concat(width, " ").concat(height),
fill: 'none',
'shape-rendering': 'auto'
},
body: (_components$component = (_components$component2 = components[componentGroup]) === null || _components$component2 === void 0 ? void 0 : _components$component2.value(components, colors)) !== null && _components$component !== void 0 ? _components$component : ''
};
const $cf2efa5bc9d2e5e0$export$62ad7b0c781000e9 = {
beard: {
width: 20,
height: 20
},
eyes: {
width: 20,
height: 20
},
eyebrows: {
width: 20,
height: 20
},
mouth: {
width: 20,
height: 20
},
hair: {
width: 20,
height: 20
},
accessories: {
width: 20,
height: 20
},
glasses: {
width: 20,
height: 20
},
hat: {
width: 20,
height: 20
},
clothing: {
width: 20,
height: 20
}
};
if (colorGroup in colors) {
return {
attributes: {
viewBox: "0 0 1 1",
fill: 'none',
'shape-rendering': 'auto'
},
body: "<rect width=\"1\" height=\"1\" fill=\"".concat(colors[colorGroup].value, "\" />")
};
const $b308324c52aa67c9$export$1d567c320f4763bc = {
meta: {
title: 'Pixel Art',
creator: 'Plastic Jam',
license: {
name: 'MIT',
url: 'https://github.com/dicebear/dicebear/blob/main/packages/%40dicebear/pixel-art/LICENSE'
}
},
schema: (/*@__PURE__*/$parcel$interopDefault($f66fddda7516a461$exports)),
create: ({ prng: prng , options: options })=>{
var ref, ref1, ref2, ref3, ref4, ref5, ref6, ref7, ref8;
$bb5024b068ebba63$export$19269755e7fb6f76({
prng: prng,
options: options,
preview: false
});
const components = $f56d4e9f38727ea0$export$4e811121b221213b({
prng: prng,
options: options
});
const colors = $76f3e3838fb80a35$export$6cee60e8aa85e528({
prng: prng,
options: options
});
$ac871737f6651999$export$2538c3cd8a13189f({
prng: prng,
options: options,
components: components,
colors: colors,
preview: false
});
var ref9, ref10, ref11, ref12, ref13, ref14, ref15, ref16, ref17;
return {
attributes: {
viewBox: '0 0 20 20',
fill: 'none',
'shape-rendering': 'auto'
},
body: `<path d="M6 4V3h8v1h1v1h1v3h1v3h-1v2h-1v1h-1v1h-2v1h4v1h1v3H3v-3h1v-1h4v-1H6v-1H5v-1H4v-2H3V8h1V5h1V4h1Z" fill="${colors.skin.value}"/><path d="M6 3v1H5v1H4v3H3v3h1v2h1v1h1v1h8v-1h1v-1h1v-2h1V8h-1V5h-1V4h-1V3H6Z" fill="#fff" fill-opacity=".1"/>${(ref9 = (ref = components.beard) === null || ref === void 0 ? void 0 : ref.value(components, colors)) !== null && ref9 !== void 0 ? ref9 : ''}${(ref10 = (ref1 = components.eyes) === null || ref1 === void 0 ? void 0 : ref1.value(components, colors)) !== null && ref10 !== void 0 ? ref10 : ''}${(ref11 = (ref2 = components.eyebrows) === null || ref2 === void 0 ? void 0 : ref2.value(components, colors)) !== null && ref11 !== void 0 ? ref11 : ''}${(ref12 = (ref3 = components.mouth) === null || ref3 === void 0 ? void 0 : ref3.value(components, colors)) !== null && ref12 !== void 0 ? ref12 : ''}${(ref13 = (ref4 = components.hair) === null || ref4 === void 0 ? void 0 : ref4.value(components, colors)) !== null && ref13 !== void 0 ? ref13 : ''}${(ref14 = (ref5 = components.accessories) === null || ref5 === void 0 ? void 0 : ref5.value(components, colors)) !== null && ref14 !== void 0 ? ref14 : ''}${(ref15 = (ref6 = components.glasses) === null || ref6 === void 0 ? void 0 : ref6.value(components, colors)) !== null && ref15 !== void 0 ? ref15 : ''}${(ref16 = (ref7 = components.hat) === null || ref7 === void 0 ? void 0 : ref7.value(components, colors)) !== null && ref16 !== void 0 ? ref16 : ''}${(ref17 = (ref8 = components.clothing) === null || ref8 === void 0 ? void 0 : ref8.value(components, colors)) !== null && ref17 !== void 0 ? ref17 : ''}`
};
},
preview: ({ prng: prng , options: options , property: property })=>{
const componentGroup = property.toString();
const colorGroup = property.toString().replace(/Color$/, '');
$bb5024b068ebba63$export$19269755e7fb6f76({
prng: prng,
options: options,
preview: true
});
const components = $f56d4e9f38727ea0$export$4e811121b221213b({
prng: prng,
options: options
});
const colors = $76f3e3838fb80a35$export$6cee60e8aa85e528({
prng: prng,
options: options
});
$ac871737f6651999$export$2538c3cd8a13189f({
prng: prng,
options: options,
components: components,
colors: colors,
preview: true
});
if (componentGroup in components) {
var ref;
const { width: width , height: height } = $cf2efa5bc9d2e5e0$export$62ad7b0c781000e9[componentGroup];
var ref18;
return {
attributes: {
viewBox: `0 0 ${width} ${height}`,
fill: 'none',
'shape-rendering': 'auto'
},
body: (ref18 = (ref = components[componentGroup]) === null || ref === void 0 ? void 0 : ref.value(components, colors)) !== null && ref18 !== void 0 ? ref18 : ''
};
}
if (colorGroup in colors) return {
attributes: {
viewBox: `0 0 1 1`,
fill: 'none',
'shape-rendering': 'auto'
},
body: `<rect width="1" height="1" fill="${colors[colorGroup].value}" />`
};
return undefined;
}
return undefined;
}
};
/*!
* Pixel Art (@dicebear/pixel-art)
*
* Code licensed under MIT License.
* Copyright (c) 2021 Florian Körner
* Copyright (c) 2021 Plastic Jam
*
* Design "Pixel Art" by Plastic Jam licensed under MIT.
* License: https://github.com/dicebear/dicebear/blob/main/packages/%40dicebear/pixel-art/LICENSE
*/
let {
create,
preview,
meta,
schema
} = style;
export { create, meta, preview, schema };
const { create: $e7ca578530916976$export$185802fd694ee1f5 , preview: $e7ca578530916976$export$48c2d0f2f545ac27 , meta: $e7ca578530916976$export$6990040ee07315 , schema: $e7ca578530916976$export$4902baddc787debb } = $b308324c52aa67c9$export$1d567c320f4763bc;
export {$e7ca578530916976$export$185802fd694ee1f5 as create, $e7ca578530916976$export$48c2d0f2f545ac27 as preview, $e7ca578530916976$export$6990040ee07315 as meta, $e7ca578530916976$export$4902baddc787debb as schema};
//# sourceMappingURL=index.es.js.map

@@ -1,1152 +0,663 @@

'use strict';
function $parcel$export(e, n, v, s) {
Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
}
function $parcel$interopDefault(a) {
return a && a.__esModule ? a.default : a;
}
Object.defineProperty(exports, '__esModule', { value: true });
$parcel$export(module.exports, "create", function () { return $7ce22e2aa4d8700d$export$185802fd694ee1f5; });
$parcel$export(module.exports, "preview", function () { return $7ce22e2aa4d8700d$export$48c2d0f2f545ac27; });
$parcel$export(module.exports, "meta", function () { return $7ce22e2aa4d8700d$export$6990040ee07315; });
$parcel$export(module.exports, "schema", function () { return $7ce22e2aa4d8700d$export$4902baddc787debb; });
var $057130024402ff2f$exports = {};
$057130024402ff2f$exports = JSON.parse("{\"title\":\"Options\",\"$schema\":\"http://json-schema.org/draft-07/schema#\",\"properties\":{\"accessories\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"enum\":[\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"default\":[\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"accessoriesColor\":{\"type\":\"array\",\"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\":[\"gold01\",\"gold02\",\"gold03\",\"silver01\",\"silver02\"]}]},\"default\":[\"gold01\",\"gold02\",\"gold03\",\"silver01\",\"silver02\"]},\"accessoriesProbability\":{\"type\":\"integer\",\"minimum\":0,\"maximum\":100,\"default\":10},\"beard\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"enum\":[\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"default\":[\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"beardProbability\":{\"type\":\"integer\",\"minimum\":0,\"maximum\":100,\"default\":10},\"clothesColor\":{\"type\":\"array\",\"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\":[\"yellow01\",\"yellow02\",\"yellow03\",\"red01\",\"red02\",\"red03\",\"blue01\",\"blue02\",\"blue03\",\"green01\",\"green02\",\"green03\"]}]},\"default\":[\"yellow01\",\"yellow02\",\"yellow03\",\"red01\",\"red02\",\"red03\",\"blue01\",\"blue02\",\"blue03\",\"green01\",\"green02\",\"green03\"]},\"clothing\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"enum\":[\"variant25\",\"variant24\",\"variant23\",\"variant22\",\"variant21\",\"variant20\",\"variant19\",\"variant18\",\"variant17\",\"variant16\",\"variant15\",\"variant14\",\"variant13\",\"variant12\",\"variant11\",\"variant10\",\"variant09\",\"variant08\",\"variant07\",\"variant06\",\"variant05\",\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"default\":[\"variant25\",\"variant24\",\"variant23\",\"variant22\",\"variant21\",\"variant20\",\"variant19\",\"variant18\",\"variant17\",\"variant16\",\"variant15\",\"variant14\",\"variant13\",\"variant12\",\"variant11\",\"variant10\",\"variant09\",\"variant08\",\"variant07\",\"variant06\",\"variant05\",\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"eyebrows\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"enum\":[\"variant13\",\"variant12\",\"variant11\",\"variant10\",\"variant09\",\"variant08\",\"variant07\",\"variant06\",\"variant05\",\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"default\":[\"variant13\",\"variant12\",\"variant11\",\"variant10\",\"variant09\",\"variant08\",\"variant07\",\"variant06\",\"variant05\",\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"eyes\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"enum\":[\"variant13\",\"variant12\",\"variant11\",\"variant10\",\"variant09\",\"variant08\",\"variant07\",\"variant06\",\"variant05\",\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"default\":[\"variant13\",\"variant12\",\"variant11\",\"variant10\",\"variant09\",\"variant08\",\"variant07\",\"variant06\",\"variant05\",\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"glasses\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"enum\":[\"variant07\",\"variant06\",\"variant05\",\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"default\":[\"variant07\",\"variant06\",\"variant05\",\"variant04\",\"variant03\",\"variant02\",\"variant01\"]},\"glassesColor\":{\"type\":\"array\",\"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\":[\"green01\",\"blue01\",\"red01\",\"black01\",\"black02\",\"black03\"]}]},\"default\":[\"green01\",\"blue01\",\"red01\",\"black01\",\"black02\",\"black03\"]},\"glassesProbability\":{\"type\":\"integer\",\"minimum\":0,\"maximum\":100,\"default\":20},\"hair\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"enum\":[\"short11\",\"short10\",\"short09\",\"short08\",\"short07\",\"short06\",\"short05\",\"short04\",\"short03\",\"short02\",\"long15\",\"short01\",\"long14\",\"long13\",\"long12\",\"long11\",\"long10\",\"long09\",\"long08\",\"long07\",\"long06\",\"long05\",\"long04\",\"long03\",\"long02\",\"long01\"]},\"default\":[\"short11\",\"short10\",\"short09\",\"short08\",\"short07\",\"short06\",\"short05\",\"short04\",\"short03\",\"short02\",\"long15\",\"short01\",\"long14\",\"long13\",\"long12\",\"long11\",\"long10\",\"long09\",\"long08\",\"long07\",\"long06\",\"long05\",\"long04\",\"long03\",\"long02\",\"long01\"]},\"hairColor\":{\"type\":\"array\",\"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\",\"variant09\",\"variant10\"]}]},\"default\":[\"variant01\",\"variant02\",\"variant03\",\"variant04\",\"variant05\",\"variant06\",\"variant07\",\"variant08\",\"variant09\",\"variant10\"]},\"hairProbability\":{\"type\":\"integer\",\"minimum\":0,\"maximum\":100,\"default\":100},\"hat\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"enum\":[\"variant01\",\"variant02\",\"variant03\",\"variant04\",\"variant05\",\"variant06\",\"variant07\",\"variant08\",\"variant09\",\"variant10\",\"variant11\",\"variant12\"]},\"default\":[\"variant01\",\"variant02\",\"variant03\",\"variant04\",\"variant05\",\"variant06\",\"variant07\",\"variant08\",\"variant09\",\"variant10\",\"variant11\",\"variant12\"]},\"hatColor\":{\"type\":\"array\",\"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\":[\"pink01\",\"blue01\",\"green01\",\"purple01\",\"red01\",\"black01\",\"gray01\"]}]},\"default\":[\"pink01\",\"blue01\",\"green01\",\"purple01\",\"red01\",\"black01\",\"gray01\"]},\"hatProbability\":{\"type\":\"integer\",\"minimum\":0,\"maximum\":100,\"default\":10},\"mouth\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"enum\":[\"surprised03\",\"surprised02\",\"happy09\",\"happy08\",\"happy07\",\"happy06\",\"happy05\",\"happy04\",\"happy03\",\"happy02\",\"happy01\",\"sad08\",\"sad07\",\"sad06\",\"sad05\",\"sad04\",\"sad03\",\"sad02\",\"sad01\",\"surprised01\"]},\"default\":[\"surprised03\",\"surprised02\",\"happy09\",\"happy08\",\"happy07\",\"happy06\",\"happy05\",\"happy04\",\"happy03\",\"happy02\",\"happy01\",\"sad08\",\"sad07\",\"sad06\",\"sad05\",\"sad04\",\"sad03\",\"sad02\",\"sad01\",\"surprised01\"]},\"mouthColor\":{\"type\":\"array\",\"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\"]}]},\"default\":[\"variant01\",\"variant02\",\"variant03\",\"variant04\"]},\"skinColor\":{\"type\":\"array\",\"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}");
var title = "Options";
var $schema = "http://json-schema.org/draft-07/schema#";
var properties = {
accessories: {
type: "array",
items: {
type: "string",
"enum": [
"variant04",
"variant03",
"variant02",
"variant01"
]
},
"default": [
"variant04",
"variant03",
"variant02",
"variant01"
]
},
accessoriesColor: {
type: "array",
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": [
"gold01",
"gold02",
"gold03",
"silver01",
"silver02"
]
}
]
},
"default": [
"gold01",
"gold02",
"gold03",
"silver01",
"silver02"
]
},
accessoriesProbability: {
type: "integer",
minimum: 0,
maximum: 100,
"default": 10
},
beard: {
type: "array",
items: {
type: "string",
"enum": [
"variant04",
"variant03",
"variant02",
"variant01"
]
},
"default": [
"variant04",
"variant03",
"variant02",
"variant01"
]
},
beardProbability: {
type: "integer",
minimum: 0,
maximum: 100,
"default": 10
},
clothesColor: {
type: "array",
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": [
"yellow01",
"yellow02",
"yellow03",
"red01",
"red02",
"red03",
"blue01",
"blue02",
"blue03",
"green01",
"green02",
"green03"
]
}
]
},
"default": [
"yellow01",
"yellow02",
"yellow03",
"red01",
"red02",
"red03",
"blue01",
"blue02",
"blue03",
"green01",
"green02",
"green03"
]
},
clothing: {
type: "array",
items: {
type: "string",
"enum": [
"variant25",
"variant24",
"variant23",
"variant22",
"variant21",
"variant20",
"variant19",
"variant18",
"variant17",
"variant16",
"variant15",
"variant14",
"variant13",
"variant12",
"variant11",
"variant10",
"variant09",
"variant08",
"variant07",
"variant06",
"variant05",
"variant04",
"variant03",
"variant02",
"variant01"
]
},
"default": [
"variant25",
"variant24",
"variant23",
"variant22",
"variant21",
"variant20",
"variant19",
"variant18",
"variant17",
"variant16",
"variant15",
"variant14",
"variant13",
"variant12",
"variant11",
"variant10",
"variant09",
"variant08",
"variant07",
"variant06",
"variant05",
"variant04",
"variant03",
"variant02",
"variant01"
]
},
eyebrows: {
type: "array",
items: {
type: "string",
"enum": [
"variant13",
"variant12",
"variant11",
"variant10",
"variant09",
"variant08",
"variant07",
"variant06",
"variant05",
"variant04",
"variant03",
"variant02",
"variant01"
]
},
"default": [
"variant13",
"variant12",
"variant11",
"variant10",
"variant09",
"variant08",
"variant07",
"variant06",
"variant05",
"variant04",
"variant03",
"variant02",
"variant01"
]
},
eyes: {
type: "array",
items: {
type: "string",
"enum": [
"variant13",
"variant12",
"variant11",
"variant10",
"variant09",
"variant08",
"variant07",
"variant06",
"variant05",
"variant04",
"variant03",
"variant02",
"variant01"
]
},
"default": [
"variant13",
"variant12",
"variant11",
"variant10",
"variant09",
"variant08",
"variant07",
"variant06",
"variant05",
"variant04",
"variant03",
"variant02",
"variant01"
]
},
glasses: {
type: "array",
items: {
type: "string",
"enum": [
"variant07",
"variant06",
"variant05",
"variant04",
"variant03",
"variant02",
"variant01"
]
},
"default": [
"variant07",
"variant06",
"variant05",
"variant04",
"variant03",
"variant02",
"variant01"
]
},
glassesColor: {
type: "array",
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": [
"green01",
"blue01",
"red01",
"black01",
"black02",
"black03"
]
}
]
},
"default": [
"green01",
"blue01",
"red01",
"black01",
"black02",
"black03"
]
},
glassesProbability: {
type: "integer",
minimum: 0,
maximum: 100,
"default": 20
},
hair: {
type: "array",
items: {
type: "string",
"enum": [
"short11",
"short10",
"short09",
"short08",
"short07",
"short06",
"short05",
"short04",
"short03",
"short02",
"long15",
"short01",
"long14",
"long13",
"long12",
"long11",
"long10",
"long09",
"long08",
"long07",
"long06",
"long05",
"long04",
"long03",
"long02",
"long01"
]
},
"default": [
"short11",
"short10",
"short09",
"short08",
"short07",
"short06",
"short05",
"short04",
"short03",
"short02",
"long15",
"short01",
"long14",
"long13",
"long12",
"long11",
"long10",
"long09",
"long08",
"long07",
"long06",
"long05",
"long04",
"long03",
"long02",
"long01"
]
},
hairColor: {
type: "array",
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",
"variant09",
"variant10"
]
}
]
},
"default": [
"variant01",
"variant02",
"variant03",
"variant04",
"variant05",
"variant06",
"variant07",
"variant08",
"variant09",
"variant10"
]
},
hairProbability: {
type: "integer",
minimum: 0,
maximum: 100,
"default": 100
},
hat: {
type: "array",
items: {
type: "string",
"enum": [
"variant01",
"variant02",
"variant03",
"variant04",
"variant05",
"variant06",
"variant07",
"variant08",
"variant09",
"variant10",
"variant11",
"variant12"
]
},
"default": [
"variant01",
"variant02",
"variant03",
"variant04",
"variant05",
"variant06",
"variant07",
"variant08",
"variant09",
"variant10",
"variant11",
"variant12"
]
},
hatColor: {
type: "array",
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": [
"pink01",
"blue01",
"green01",
"purple01",
"red01",
"black01",
"gray01"
]
}
]
},
"default": [
"pink01",
"blue01",
"green01",
"purple01",
"red01",
"black01",
"gray01"
]
},
hatProbability: {
type: "integer",
minimum: 0,
maximum: 100,
"default": 10
},
mouth: {
type: "array",
items: {
type: "string",
"enum": [
"surprised03",
"surprised02",
"happy09",
"happy08",
"happy07",
"happy06",
"happy05",
"happy04",
"happy03",
"happy02",
"happy01",
"sad08",
"sad07",
"sad06",
"sad05",
"sad04",
"sad03",
"sad02",
"sad01",
"surprised01"
]
},
"default": [
"surprised03",
"surprised02",
"happy09",
"happy08",
"happy07",
"happy06",
"happy05",
"happy04",
"happy03",
"happy02",
"happy01",
"sad08",
"sad07",
"sad06",
"sad05",
"sad04",
"sad03",
"sad02",
"sad01",
"surprised01"
]
},
mouthColor: {
type: "array",
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"
]
}
]
},
"default": [
"variant01",
"variant02",
"variant03",
"variant04"
]
},
skinColor: {
type: "array",
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"
]
}
};
var additionalProperties = false;
var schema$1 = {
title: title,
$schema: $schema,
properties: properties,
additionalProperties: additionalProperties
};
const beard = {
variant04: (components, colors) => "<path opacity=\".9\" d=\"M4 10v3h1v1h1v1h8v-1h1v-1h1v-3h-2v1H6v-1H4Z\" fill=\"".concat(colors.hair.value, "\"/>"),
variant03: (components, colors) => "<path opacity=\".9\" d=\"M4 13h1v1h1v1h8v-1h1v-1h1v-3h-1v1h-1v1H6v-1H5v-1H4v3Z\" fill=\"".concat(colors.hair.value, "\"/>"),
variant02: (components, colors) => "<path opacity=\".9\" d=\"M4 11v2h1v1h1v1h8v-1h1v-1h1v-2H4Z\" fill=\"".concat(colors.hair.value, "\"/>"),
variant01: (components, colors) => "<path opacity=\".9\" d=\"M4 8v5h1v1h1v1h8v-1h1v-1h1V8h-1v2h-1v1h-1v1H7v-1H6v-1H5V8H4Z\" fill=\"".concat(colors.hair.value, "\"/>")
var $b4afbfe589b078df$exports = {};
$parcel$export($b4afbfe589b078df$exports, "beard", function () { return $cd25d876fe354439$export$f3afdac99fc73206; });
$parcel$export($b4afbfe589b078df$exports, "eyes", function () { return $7aaec23c56696616$export$60b896fd2e3e4b2; });
$parcel$export($b4afbfe589b078df$exports, "eyebrows", function () { return $b02b20cb98d02a45$export$aebaafc0a0095705; });
$parcel$export($b4afbfe589b078df$exports, "mouth", function () { return $bdce3b7be433da87$export$4ec1914b3efc3f9a; });
$parcel$export($b4afbfe589b078df$exports, "hair", function () { return $6c3b73c3a889a88c$export$12c365d50e7cb3d6; });
$parcel$export($b4afbfe589b078df$exports, "accessories", function () { return $645ba5ae5179f846$export$3bb43880931639de; });
$parcel$export($b4afbfe589b078df$exports, "glasses", function () { return $bab3a5d0d982c819$export$98222f1ebbc36891; });
$parcel$export($b4afbfe589b078df$exports, "hat", function () { return $adfada936a0a2b79$export$dbf38fa2a54a979a; });
$parcel$export($b4afbfe589b078df$exports, "clothing", function () { return $6b3b16593f4a9777$export$315fd2fadf178734; });
const $cd25d876fe354439$export$f3afdac99fc73206 = {
variant04: (components, colors)=>`<path opacity=".9" d="M4 10v3h1v1h1v1h8v-1h1v-1h1v-3h-2v1H6v-1H4Z" fill="${colors.hair.value}"/>`
,
variant03: (components, colors)=>`<path opacity=".9" d="M4 13h1v1h1v1h8v-1h1v-1h1v-3h-1v1h-1v1H6v-1H5v-1H4v3Z" fill="${colors.hair.value}"/>`
,
variant02: (components, colors)=>`<path opacity=".9" d="M4 11v2h1v1h1v1h8v-1h1v-1h1v-2H4Z" fill="${colors.hair.value}"/>`
,
variant01: (components, colors)=>`<path opacity=".9" d="M4 8v5h1v1h1v1h8v-1h1v-1h1V8h-1v2h-1v1h-1v1H7v-1H6v-1H5V8H4Z" fill="${colors.hair.value}"/>`
};
const eyes = {
variant13: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 9V7h3v2H5Zm7-2h3v2h-3V7Z\" fill=\"#fff\"/><path d=\"M7 8v1h1V8H7Zm7 0h1v1h-1V8Z\" fill=\"#000\"/></g>",
variant12: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 7h3v2H5V7Zm7 0h3v2h-3V7Z\" fill=\"#fff\"/><path d=\"M6 8h1v1H6V8Zm7 1V8h1v1h-1Z\" fill=\"#000\"/></g>",
variant11: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 7h3v2H5V7Zm7 0h3v2h-3V7Z\" fill=\"#fff\"/><path d=\"M7 8h1v1H7V8Zm5 0h1v1h-1V8Z\" fill=\"#000\"/></g>",
variant10: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M6 7h1v1h1v1H6V7Zm6 0h1v1h1v1h-2V7Z\" fill=\"#fff\"/><path d=\"M6 8h1v1H6V8Zm6 0h1v1h-1V8Z\" fill=\"#000\"/></g>",
variant09: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 8h2v1H5V8Zm7 0h2v1h-2V8Z\" fill=\"#fff\"/><path d=\"M7 8h1v1H7V8Zm7 0h1v1h-1V8Z\" fill=\"#000\"/></g>",
variant08: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M6 8h1v1H6V8Zm7 0h1v1h-1V8Z\" fill=\"#fff\"/><path d=\"M7 8h1v1H7V8Zm5 0h1v1h-1V8Z\" fill=\"#000\"/></g>",
variant07: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 7v1h3V7H5Zm7 0h3v1h-3V7Z\" fill=\"#fff\"/><path d=\"M5 9V8h1V7h1v1h1v1H5Zm7 0V8h1V7h1v1h1v1h-3Z\" fill=\"#000\"/><path d=\"M5 9V8h1V7h1v1h1v1H7V8H6v1H5Zm7 0V8h1V7h1v1h1v1h-1V8h-1v1h-1Z\" fill=\"#fff\" fill-opacity=\".5\"/></g>",
variant06: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 8h3v1H5V8Zm7 0h3v1h-3V8Z\" fill=\"#fff\"/><path d=\"M6 8h1v1H6V8Zm7 0h1v1h-1V8Z\" fill=\"#000\"/></g>",
variant05: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 7h3v2H5V7Zm7 0h3v2h-3V7Z\" fill=\"#fff\"/><path d=\"M5 8h2v1H5V8Zm7 0h2v1h-2V8Z\" fill=\"#000\"/></g>",
variant04: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 7h3v3H5V7Zm7 0h3v3h-3V7Z\" fill=\"#fff\"/><path d=\"M6 8h1v1H6V8Zm7 0h1v1h-1V8Z\" fill=\"#000\"/></g>",
variant03: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 7h3v3H5V7Zm7 0h3v3h-3V7Z\" fill=\"#fff\"/><path d=\"M6 7h2v2H6V7Zm7 0h2v2h-2V7Z\" fill=\"#000\"/><path d=\"M6 7v1h1v1h1V8H7V7H6Zm7 0v1h1v1h1V8h-1V7h-1Z\" fill=\"#fff\" fill-opacity=\".4\"/><path d=\"M7 7v1h1V7H7Zm7 0h1v1h-1V7Z\" fill=\"#fff\" fill-opacity=\".7\"/></g>",
variant02: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 7h3v3H5V7Zm7 0h3v3h-3V7Z\" fill=\"#fff\"/><path d=\"M5 8h2v1H5V8Zm7 0h2v1h-2V8Z\" fill=\"#000\"/><path d=\"M5 8h1v1H5V8Zm7 0h1v1h-1V8Z\" fill=\"#fff\" fill-opacity=\".7\"/></g>",
variant01: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M6 7h1v2H5V8h1V7Zm7 0h1v2h-2V8h1V7Z\" fill=\"#fff\"/><path d=\"M7 7v1H6v1h2V7H7Zm7 0v1h-1v1h2V7h-1Z\" fill=\"#000\"/><path d=\"M7 7v1h1V7H7ZM6 8v1h1V8H6Zm8-1v1h1V7h-1Zm-1 1v1h1V8h-1Z\" fill=\"#fff\" fill-opacity=\".5\"/></g>"
const $7aaec23c56696616$export$60b896fd2e3e4b2 = {
variant13: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 9V7h3v2H5Zm7-2h3v2h-3V7Z" fill="#fff"/><path d="M7 8v1h1V8H7Zm7 0h1v1h-1V8Z" fill="#000"/></g>`
,
variant12: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 7h3v2H5V7Zm7 0h3v2h-3V7Z" fill="#fff"/><path d="M6 8h1v1H6V8Zm7 1V8h1v1h-1Z" fill="#000"/></g>`
,
variant11: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 7h3v2H5V7Zm7 0h3v2h-3V7Z" fill="#fff"/><path d="M7 8h1v1H7V8Zm5 0h1v1h-1V8Z" fill="#000"/></g>`
,
variant10: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M6 7h1v1h1v1H6V7Zm6 0h1v1h1v1h-2V7Z" fill="#fff"/><path d="M6 8h1v1H6V8Zm6 0h1v1h-1V8Z" fill="#000"/></g>`
,
variant09: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 8h2v1H5V8Zm7 0h2v1h-2V8Z" fill="#fff"/><path d="M7 8h1v1H7V8Zm7 0h1v1h-1V8Z" fill="#000"/></g>`
,
variant08: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M6 8h1v1H6V8Zm7 0h1v1h-1V8Z" fill="#fff"/><path d="M7 8h1v1H7V8Zm5 0h1v1h-1V8Z" fill="#000"/></g>`
,
variant07: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 7v1h3V7H5Zm7 0h3v1h-3V7Z" fill="#fff"/><path d="M5 9V8h1V7h1v1h1v1H5Zm7 0V8h1V7h1v1h1v1h-3Z" fill="#000"/><path d="M5 9V8h1V7h1v1h1v1H7V8H6v1H5Zm7 0V8h1V7h1v1h1v1h-1V8h-1v1h-1Z" fill="#fff" fill-opacity=".5"/></g>`
,
variant06: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 8h3v1H5V8Zm7 0h3v1h-3V8Z" fill="#fff"/><path d="M6 8h1v1H6V8Zm7 0h1v1h-1V8Z" fill="#000"/></g>`
,
variant05: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 7h3v2H5V7Zm7 0h3v2h-3V7Z" fill="#fff"/><path d="M5 8h2v1H5V8Zm7 0h2v1h-2V8Z" fill="#000"/></g>`
,
variant04: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 7h3v3H5V7Zm7 0h3v3h-3V7Z" fill="#fff"/><path d="M6 8h1v1H6V8Zm7 0h1v1h-1V8Z" fill="#000"/></g>`
,
variant03: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 7h3v3H5V7Zm7 0h3v3h-3V7Z" fill="#fff"/><path d="M6 7h2v2H6V7Zm7 0h2v2h-2V7Z" fill="#000"/><path d="M6 7v1h1v1h1V8H7V7H6Zm7 0v1h1v1h1V8h-1V7h-1Z" fill="#fff" fill-opacity=".4"/><path d="M7 7v1h1V7H7Zm7 0h1v1h-1V7Z" fill="#fff" fill-opacity=".7"/></g>`
,
variant02: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 7h3v3H5V7Zm7 0h3v3h-3V7Z" fill="#fff"/><path d="M5 8h2v1H5V8Zm7 0h2v1h-2V8Z" fill="#000"/><path d="M5 8h1v1H5V8Zm7 0h1v1h-1V8Z" fill="#fff" fill-opacity=".7"/></g>`
,
variant01: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M6 7h1v2H5V8h1V7Zm7 0h1v2h-2V8h1V7Z" fill="#fff"/><path d="M7 7v1H6v1h2V7H7Zm7 0v1h-1v1h2V7h-1Z" fill="#000"/><path d="M7 7v1h1V7H7ZM6 8v1h1V8H6Zm8-1v1h1V7h-1Zm-1 1v1h1V8h-1Z" fill="#fff" fill-opacity=".5"/></g>`
};
const eyebrows = {
variant13: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M8 4v1H7v1H5V5h2V4h1Zm4 0h1v1h2v1h-2V5h-1V4Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M8 4v1H7v1H5V5h2V4h1Zm4 0h1v1h2v1h-2V5h-1V4Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant12: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M6 5h3v2H8V6H6V5Zm5 0h3v1h-2v1h-1V5Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M6 5h3v2H8V6H6V5Zm5 0h3v1h-2v1h-1V5Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant11: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 5h3v1h1v1H8V6H5V5Zm10 0h-3v1h-1v1h1V6h3V5Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M5 5h3v1h1v1H8V6H5V5Zm10 0h-3v1h-1v1h1V6h3V5Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant10: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M6 5H4v2h1V6h1V5Zm8 0h2v2h-1V6h-1V5Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M6 5H4v2h1V6h1V5Zm8 0h2v2h-1V6h-1V5Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant09: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M5 6h2v1H5V6Zm8 0h2v1h-2V6Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M5 6h2v1H5V6Zm8 0h2v1h-2V6Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant08: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M6 5h1v1h1v1H5V6h1V5Zm7 0h1v1h1v1h-3V6h1V5Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M6 5h1v1h1v1H5V6h1V5Zm7 0h1v1h1v1h-3V6h1V5Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant07: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M6 5h2v1h1v1H8V6H6V5Zm8 0h-2v1h-1v1h1V6h2V5Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M6 5h2v1h1v1H8V6H6V5Zm8 0h-2v1h-1v1h1V6h2V5Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant06: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M12 7V6h1V5h1v1h1v1h-1V6h-1v1h-1ZM5 7V6h1V5h1v1h1v1H7V6H6v1H5Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M12 7V6h1V5h1v1h1v1h-1V6h-1v1h-1ZM5 7V6h1V5h1v1h1v1H7V6H6v1H5Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant05: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M7 5v1H5v1H4V6h1V5h2Zm6 0h2v1h1v1h-1V6h-2V5Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M7 5v1H5v1H4V6h1V5h2Zm6 0h2v1h1v1h-1V6h-2V5Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant04: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M4 7V5h3v1H5v1H4Zm12-2v2h-1V6h-2V5h3Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M4 7V5h3v1H5v1H4Zm12-2v2h-1V6h-2V5h3Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant03: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M7 5h1v1h1v1H8V6H7V5Zm6 0v1h-1v1h-1V6h1V5h1Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M7 5h1v1h1v1H8V6H7V5Zm6 0v1h-1v1h-1V6h1V5h1Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant02: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M4 7V6h1V5h1v1H5v1H4Zm10-2h1v1h1v1h-1V6h-1V5Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M4 7V6h1V5h1v1H5v1H4Zm10-2h1v1h1v1h-1V6h-1V5Z\" fill=\"#000\" fill-opacity=\".1\"/></g>"),
variant01: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M7 5v1H5v1H4V6h1V5h2Zm7 0v1h-2v1h-1V6h1V5h2Z\" fill=\"".concat(colors.hair.value, "\"/><path d=\"M7 5v1H5v1H4V6h1V5h2Zm7 0v1h-2v1h-1V6h1V5h2Z\" fill=\"#000\" fill-opacity=\".1\"/></g>")
const $b02b20cb98d02a45$export$aebaafc0a0095705 = {
variant13: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M8 4v1H7v1H5V5h2V4h1Zm4 0h1v1h2v1h-2V5h-1V4Z" fill="${colors.hair.value}"/><path d="M8 4v1H7v1H5V5h2V4h1Zm4 0h1v1h2v1h-2V5h-1V4Z" fill="#000" fill-opacity=".1"/></g>`
,
variant12: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M6 5h3v2H8V6H6V5Zm5 0h3v1h-2v1h-1V5Z" fill="${colors.hair.value}"/><path d="M6 5h3v2H8V6H6V5Zm5 0h3v1h-2v1h-1V5Z" fill="#000" fill-opacity=".1"/></g>`
,
variant11: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 5h3v1h1v1H8V6H5V5Zm10 0h-3v1h-1v1h1V6h3V5Z" fill="${colors.hair.value}"/><path d="M5 5h3v1h1v1H8V6H5V5Zm10 0h-3v1h-1v1h1V6h3V5Z" fill="#000" fill-opacity=".1"/></g>`
,
variant10: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M6 5H4v2h1V6h1V5Zm8 0h2v2h-1V6h-1V5Z" fill="${colors.hair.value}"/><path d="M6 5H4v2h1V6h1V5Zm8 0h2v2h-1V6h-1V5Z" fill="#000" fill-opacity=".1"/></g>`
,
variant09: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M5 6h2v1H5V6Zm8 0h2v1h-2V6Z" fill="${colors.hair.value}"/><path d="M5 6h2v1H5V6Zm8 0h2v1h-2V6Z" fill="#000" fill-opacity=".1"/></g>`
,
variant08: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M6 5h1v1h1v1H5V6h1V5Zm7 0h1v1h1v1h-3V6h1V5Z" fill="${colors.hair.value}"/><path d="M6 5h1v1h1v1H5V6h1V5Zm7 0h1v1h1v1h-3V6h1V5Z" fill="#000" fill-opacity=".1"/></g>`
,
variant07: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M6 5h2v1h1v1H8V6H6V5Zm8 0h-2v1h-1v1h1V6h2V5Z" fill="${colors.hair.value}"/><path d="M6 5h2v1h1v1H8V6H6V5Zm8 0h-2v1h-1v1h1V6h2V5Z" fill="#000" fill-opacity=".1"/></g>`
,
variant06: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M12 7V6h1V5h1v1h1v1h-1V6h-1v1h-1ZM5 7V6h1V5h1v1h1v1H7V6H6v1H5Z" fill="${colors.hair.value}"/><path d="M12 7V6h1V5h1v1h1v1h-1V6h-1v1h-1ZM5 7V6h1V5h1v1h1v1H7V6H6v1H5Z" fill="#000" fill-opacity=".1"/></g>`
,
variant05: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M7 5v1H5v1H4V6h1V5h2Zm6 0h2v1h1v1h-1V6h-2V5Z" fill="${colors.hair.value}"/><path d="M7 5v1H5v1H4V6h1V5h2Zm6 0h2v1h1v1h-1V6h-2V5Z" fill="#000" fill-opacity=".1"/></g>`
,
variant04: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M4 7V5h3v1H5v1H4Zm12-2v2h-1V6h-2V5h3Z" fill="${colors.hair.value}"/><path d="M4 7V5h3v1H5v1H4Zm12-2v2h-1V6h-2V5h3Z" fill="#000" fill-opacity=".1"/></g>`
,
variant03: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M7 5h1v1h1v1H8V6H7V5Zm6 0v1h-1v1h-1V6h1V5h1Z" fill="${colors.hair.value}"/><path d="M7 5h1v1h1v1H8V6H7V5Zm6 0v1h-1v1h-1V6h1V5h1Z" fill="#000" fill-opacity=".1"/></g>`
,
variant02: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M4 7V6h1V5h1v1H5v1H4Zm10-2h1v1h1v1h-1V6h-1V5Z" fill="${colors.hair.value}"/><path d="M4 7V6h1V5h1v1H5v1H4Zm10-2h1v1h1v1h-1V6h-1V5Z" fill="#000" fill-opacity=".1"/></g>`
,
variant01: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M7 5v1H5v1H4V6h1V5h2Zm7 0v1h-2v1h-1V6h1V5h2Z" fill="${colors.hair.value}"/><path d="M7 5v1H5v1H4V6h1V5h2Zm7 0v1h-2v1h-1V6h1V5h2Z" fill="#000" fill-opacity=".1"/></g>`
};
const mouth$1 = {
surprised03: (components, colors) => "<path d=\"M9 12v2h2v-2H9Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
surprised02: (components, colors) => "<path d=\"M9 13v1h1v-1H9Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
happy09: (components, colors) => "<path d=\"M7 12v1h1v1h4v-1H8v-1H7Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
happy08: (components, colors) => "<path d=\"M10 12v1H9v1h2v-2h-1Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
happy07: (components, colors) => "<path d=\"M8 13v1h4v-1h1v-1h-1v1H8Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
happy06: (components, colors) => "<path d=\"M9 12v2h2v-1h-1v-1H9Z\" fill=\"".concat(colors.mouth.value, "\"/><path d=\"M11 14v-1h-1v-1H9v1h1v1h1Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
happy05: (components, colors) => "<path d=\"M8 12v1h1v1h2v-1h1v-1H8Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
happy04: (components, colors) => "<path d=\"M9 13v1h2v-1h1v-1h-1v1H9Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
happy03: (components, colors) => "<path d=\"M8 12v1h1v1h2v-1H9v-1H8Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
happy02: (components, colors) => "<path d=\"M8 12v1h1v1h2v-1h1v-1h-1v-1H9v1H8Z\" fill=\"".concat(colors.mouth.value, "\"/><path d=\"M9 12v1h2v-1H9Z\" fill=\"#fff\"/>"),
happy01: (components, colors) => "<path d=\"M8 12v1h1v1h2v-1h1v-1h-1v-1H9v1H8Z\" fill=\"".concat(colors.mouth.value, "\"/><path d=\"M9 12v1h2v-1H9Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
sad08: (components, colors) => "<path d=\"M9 12v1H8v1h4v-1h-1v-1H9Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
sad07: (components, colors) => "<path d=\"M11 12v1H9v1H8v-1h1v-1h2Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
sad06: (components, colors) => "<path d=\"M8 12h3v1H8v-1Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
sad05: (components, colors) => "<path d=\"M8 12h4v1H8v-1Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
sad04: (components, colors) => "<path d=\"M9 12h2v1H9v-1Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
sad03: (components, colors) => "<path d=\"M8 12v1h3v1h1v-1h-1v-1H8Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
sad02: (components, colors) => "<path d=\"M8 13v1h1v-1h3v-1H9v1H8Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
sad01: (components, colors) => "<path d=\"M10 12v1h1v1h1v-2h-2Z\" fill=\"".concat(colors.mouth.value, "\"/>"),
surprised01: (components, colors) => "<path d=\"M8 12v2h4v-2H8Z\" fill=\"#fff\"/>"
const $bdce3b7be433da87$export$4ec1914b3efc3f9a = {
surprised03: (components, colors)=>`<path d="M9 12v2h2v-2H9Z" fill="${colors.mouth.value}"/>`
,
surprised02: (components, colors)=>`<path d="M9 13v1h1v-1H9Z" fill="${colors.mouth.value}"/>`
,
happy09: (components, colors)=>`<path d="M7 12v1h1v1h4v-1H8v-1H7Z" fill="${colors.mouth.value}"/>`
,
happy08: (components, colors)=>`<path d="M10 12v1H9v1h2v-2h-1Z" fill="${colors.mouth.value}"/>`
,
happy07: (components, colors)=>`<path d="M8 13v1h4v-1h1v-1h-1v1H8Z" fill="${colors.mouth.value}"/>`
,
happy06: (components, colors)=>`<path d="M9 12v2h2v-1h-1v-1H9Z" fill="${colors.mouth.value}"/><path d="M11 14v-1h-1v-1H9v1h1v1h1Z" fill="#fff" fill-opacity=".2"/>`
,
happy05: (components, colors)=>`<path d="M8 12v1h1v1h2v-1h1v-1H8Z" fill="${colors.mouth.value}"/>`
,
happy04: (components, colors)=>`<path d="M9 13v1h2v-1h1v-1h-1v1H9Z" fill="${colors.mouth.value}"/>`
,
happy03: (components, colors)=>`<path d="M8 12v1h1v1h2v-1H9v-1H8Z" fill="${colors.mouth.value}"/>`
,
happy02: (components, colors)=>`<path d="M8 12v1h1v1h2v-1h1v-1h-1v-1H9v1H8Z" fill="${colors.mouth.value}"/><path d="M9 12v1h2v-1H9Z" fill="#fff"/>`
,
happy01: (components, colors)=>`<path d="M8 12v1h1v1h2v-1h1v-1h-1v-1H9v1H8Z" fill="${colors.mouth.value}"/><path d="M9 12v1h2v-1H9Z" fill="#fff" fill-opacity=".2"/>`
,
sad08: (components, colors)=>`<path d="M9 12v1H8v1h4v-1h-1v-1H9Z" fill="${colors.mouth.value}"/>`
,
sad07: (components, colors)=>`<path d="M11 12v1H9v1H8v-1h1v-1h2Z" fill="${colors.mouth.value}"/>`
,
sad06: (components, colors)=>`<path d="M8 12h3v1H8v-1Z" fill="${colors.mouth.value}"/>`
,
sad05: (components, colors)=>`<path d="M8 12h4v1H8v-1Z" fill="${colors.mouth.value}"/>`
,
sad04: (components, colors)=>`<path d="M9 12h2v1H9v-1Z" fill="${colors.mouth.value}"/>`
,
sad03: (components, colors)=>`<path d="M8 12v1h3v1h1v-1h-1v-1H8Z" fill="${colors.mouth.value}"/>`
,
sad02: (components, colors)=>`<path d="M8 13v1h1v-1h3v-1H9v1H8Z" fill="${colors.mouth.value}"/>`
,
sad01: (components, colors)=>`<path d="M10 12v1h1v1h1v-2h-2Z" fill="${colors.mouth.value}"/>`
,
surprised01: (components, colors)=>`<path d="M8 12v2h4v-2H8Z" fill="#fff"/>`
};
const hair$1 = {
short11: (components, colors) => "<path d=\"M4 4v2h1V5h1V4h8v1h1v1h1V4h-1V3H5v1H4Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short10: (components, colors) => "<path d=\"M6 2h8v1h1v1h1v3h-1V6h-1V5h-1V4H9v1H7v1H6v1H4V4h1V3h1V2Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short09: (components, colors) => "<path d=\"M4 7h1V5h1V4h2v1h1v1h2V5h1V4h2v1h1v2h1V5h-1V4h-1V3H6v1H5v1H4v2Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short08: (components, colors) => "<path d=\"M3 8h1V5h12v3h1V4h-1V3h-1V2H5v1H4v1H3v4Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short07: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 5v1h1v1h2V5h1V3H4v1H3v1H2Zm6-1h2v1h2V4h1V3H8v1Zm6 1h1v2h2V6h1V5h-1V4h-1V3h-2v2Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short06: (components, colors) => "<path d=\"M3 8h1V5h2V3h8v1h1v1h1v3h1V3h-2V2h-2V1h-1v1h-2V1H9v1H8V1H7v1H5v1H4v1H3v4Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short05: (components, colors) => "<path d=\"M11 5V4h1V3H8v1h1v1h2Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short04: (components, colors) => "<path d=\"M3 8h1V6h2V5h2V4h1v1h2v1h2v1h2v1h2V5h-1V4h-1V3H5v1H4v1H3v3Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short03: (components, colors) => "<path d=\"M5 5h10V4h-1V3H6v1H5v1Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short02: (components, colors) => "<path d=\"M3 5H2v3h2V5h1V4h1v1h2V4h4V3h1v1h1v1h1v1h1v2h1V7h1V5h-1V4h-1V3h-1V2h-1V1h-1v1h-2V1h-1v1H7V1H5v1H4v1H3v2Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long15: (components, colors) => "<path d=\"M1 7h1v5h1v1h1V7h1V6h1V4h1V3h6v1h1v1h1v1h1v7h1v-2h1V7h-1V6h1V4h-1v1h-1V3h1V2h-1v1h-1V2h-1V1h-1V0h-1v1H6V0H5v1H4V0H3v1h1v2H3V2H2v1h1v1H2v2H1v1Z\" fill=\"".concat(colors.hair.value, "\"/>"),
short01: (components, colors) => "<path d=\"M6 3v1H5v1H4v3h2V7h1V6h4V5h1V4h1v1h-1v1h1v1h1v1h2V5h-1V4h-1V3H6Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long14: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 11v6h1v-1h4v-1H6v-1H5v-1H4v-2H3Zm0-3h2V5h10v3h2V4h-1V3H4v1H3v4Zm13 3h1v6h-1v-1h-4v-1h2v-1h1v-1h1v-2Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long13: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 11v5h2v-3H4v-2H3Zm0-3h2V5h10v3h2V4h-1V3H4v1H3v4Zm13 3h1v5h-2v-3h1v-2Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long12: (components, colors) => "<path d=\"M4 13h1v1H3V4h1V3h1V2h10v1h1v1h1v10h-2v-1h1V5H4v8Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long11: (components, colors) => "<path d=\"M2 18h2v-1h4v-2H6v-1H5v-1H4V5h1V4h1v1h1V4h1v1h1V4h6v1h1v8h-1v1h-1v1h-2v2h4v1h2V4h-1V3h-1V2H4v1H3v1H2v14Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long10: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 14.1V11h1v2h1v1l-2 .1ZM17 11v3h-2v-1h1v-2h1ZM3 8h1V5h1V4h1V3h8v1h1v1h1v3h1V4h-1V3h-1V2H5v1H4v1H3v4Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long09: (components, colors) => "<path d=\"M2 15h2V5h12v10h2V4h-1V3h-1V2H4v1H3v1H2v11Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long08: (components, colors) => "<path d=\"M2 14h2V7h1V6h1V5h1V4h1V3h6v1h1v1h1v9h2V3h-1V2h-1V1H4v1H3v1H2v11Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long07: (components, colors) => "<path d=\"M4 5v3h1V5h2v1h1V5h1v1h1V5h5v3h1V5h1V3h-1V2h-2v1H6V2H4v1H3v2h1Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long06: (components, colors) => "<path d=\"M3 11h1V9h1V8h1V7h1V6h1V5h5v1h3V5h-1V4h-1V3H5v1H4v1H3v6Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long05: (components, colors) => "<path d=\"M2 17h2v-1h4v-1H6v-1H5v-1H4v-2H3V8h1V5h1V4h6V3h1v1h1V3h1v1h1v1h1v3h1v3h-1v2h-1v1h-1v1h-2v1h4v1h2V4h-1V3h-1V2h-1V1H5v1H4v1H3v1H2v13Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long04: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 14h2v-1H4v-2H3v3Zm12 0h2v-3h-1v2h-1v1Zm2-6V3h-1V2H4v1H3v5h1V5h1V4h1V3h8v1h1v1h1v3h1Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long03: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 13v1H2v2H1v1h1v-1h1v-1h1v-1h1v-1H4v-2H3v2Zm0-5h1V7h1V6h1V5h8v1h1v1h1v1h1V4h-1V3h-1V2H5v1H4v1H3v4Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long02: (components, colors) => "<path d=\"M2 15h4v-1H5v-1H4V6h2V5h2V4h1V3h4v1h1v1h1v1h1v7h-1v1h-1v1h4V4h-1V3h-1V2h-1V1H5v1H4v1H3v1H2v11Z\" fill=\"".concat(colors.hair.value, "\"/>"),
long01: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 11v3H2v2H1v1h1v-1h1v-1h1v-1h1v-1H4v-2H3Zm14 0v3h1v2h1v1h-1v-1h-1v-1h-1v-1h-1v-1h1v-2h1Zm-1-3h1V4h-1V3h-1V2H5v1H4v1H3v4h1V7h1V6h1V5h8v1h1v1h1v1Z\" fill=\"".concat(colors.hair.value, "\"/>")
const $6c3b73c3a889a88c$export$12c365d50e7cb3d6 = {
short11: (components, colors)=>`<path d="M4 4v2h1V5h1V4h8v1h1v1h1V4h-1V3H5v1H4Z" fill="${colors.hair.value}"/>`
,
short10: (components, colors)=>`<path d="M6 2h8v1h1v1h1v3h-1V6h-1V5h-1V4H9v1H7v1H6v1H4V4h1V3h1V2Z" fill="${colors.hair.value}"/>`
,
short09: (components, colors)=>`<path d="M4 7h1V5h1V4h2v1h1v1h2V5h1V4h2v1h1v2h1V5h-1V4h-1V3H6v1H5v1H4v2Z" fill="${colors.hair.value}"/>`
,
short08: (components, colors)=>`<path d="M3 8h1V5h12v3h1V4h-1V3h-1V2H5v1H4v1H3v4Z" fill="${colors.hair.value}"/>`
,
short07: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M2 5v1h1v1h2V5h1V3H4v1H3v1H2Zm6-1h2v1h2V4h1V3H8v1Zm6 1h1v2h2V6h1V5h-1V4h-1V3h-2v2Z" fill="${colors.hair.value}"/>`
,
short06: (components, colors)=>`<path d="M3 8h1V5h2V3h8v1h1v1h1v3h1V3h-2V2h-2V1h-1v1h-2V1H9v1H8V1H7v1H5v1H4v1H3v4Z" fill="${colors.hair.value}"/>`
,
short05: (components, colors)=>`<path d="M11 5V4h1V3H8v1h1v1h2Z" fill="${colors.hair.value}"/>`
,
short04: (components, colors)=>`<path d="M3 8h1V6h2V5h2V4h1v1h2v1h2v1h2v1h2V5h-1V4h-1V3H5v1H4v1H3v3Z" fill="${colors.hair.value}"/>`
,
short03: (components, colors)=>`<path d="M5 5h10V4h-1V3H6v1H5v1Z" fill="${colors.hair.value}"/>`
,
short02: (components, colors)=>`<path d="M3 5H2v3h2V5h1V4h1v1h2V4h4V3h1v1h1v1h1v1h1v2h1V7h1V5h-1V4h-1V3h-1V2h-1V1h-1v1h-2V1h-1v1H7V1H5v1H4v1H3v2Z" fill="${colors.hair.value}"/>`
,
long15: (components, colors)=>`<path d="M1 7h1v5h1v1h1V7h1V6h1V4h1V3h6v1h1v1h1v1h1v7h1v-2h1V7h-1V6h1V4h-1v1h-1V3h1V2h-1v1h-1V2h-1V1h-1V0h-1v1H6V0H5v1H4V0H3v1h1v2H3V2H2v1h1v1H2v2H1v1Z" fill="${colors.hair.value}"/>`
,
short01: (components, colors)=>`<path d="M6 3v1H5v1H4v3h2V7h1V6h4V5h1V4h1v1h-1v1h1v1h1v1h2V5h-1V4h-1V3H6Z" fill="${colors.hair.value}"/>`
,
long14: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M3 11v6h1v-1h4v-1H6v-1H5v-1H4v-2H3Zm0-3h2V5h10v3h2V4h-1V3H4v1H3v4Zm13 3h1v6h-1v-1h-4v-1h2v-1h1v-1h1v-2Z" fill="${colors.hair.value}"/>`
,
long13: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M3 11v5h2v-3H4v-2H3Zm0-3h2V5h10v3h2V4h-1V3H4v1H3v4Zm13 3h1v5h-2v-3h1v-2Z" fill="${colors.hair.value}"/>`
,
long12: (components, colors)=>`<path d="M4 13h1v1H3V4h1V3h1V2h10v1h1v1h1v10h-2v-1h1V5H4v8Z" fill="${colors.hair.value}"/>`
,
long11: (components, colors)=>`<path d="M2 18h2v-1h4v-2H6v-1H5v-1H4V5h1V4h1v1h1V4h1v1h1V4h6v1h1v8h-1v1h-1v1h-2v2h4v1h2V4h-1V3h-1V2H4v1H3v1H2v14Z" fill="${colors.hair.value}"/>`
,
long10: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M3 14.1V11h1v2h1v1l-2 .1ZM17 11v3h-2v-1h1v-2h1ZM3 8h1V5h1V4h1V3h8v1h1v1h1v3h1V4h-1V3h-1V2H5v1H4v1H3v4Z" fill="${colors.hair.value}"/>`
,
long09: (components, colors)=>`<path d="M2 15h2V5h12v10h2V4h-1V3h-1V2H4v1H3v1H2v11Z" fill="${colors.hair.value}"/>`
,
long08: (components, colors)=>`<path d="M2 14h2V7h1V6h1V5h1V4h1V3h6v1h1v1h1v9h2V3h-1V2h-1V1H4v1H3v1H2v11Z" fill="${colors.hair.value}"/>`
,
long07: (components, colors)=>`<path d="M4 5v3h1V5h2v1h1V5h1v1h1V5h5v3h1V5h1V3h-1V2h-2v1H6V2H4v1H3v2h1Z" fill="${colors.hair.value}"/>`
,
long06: (components, colors)=>`<path d="M3 11h1V9h1V8h1V7h1V6h1V5h5v1h3V5h-1V4h-1V3H5v1H4v1H3v6Z" fill="${colors.hair.value}"/>`
,
long05: (components, colors)=>`<path d="M2 17h2v-1h4v-1H6v-1H5v-1H4v-2H3V8h1V5h1V4h6V3h1v1h1V3h1v1h1v1h1v3h1v3h-1v2h-1v1h-1v1h-2v1h4v1h2V4h-1V3h-1V2h-1V1H5v1H4v1H3v1H2v13Z" fill="${colors.hair.value}"/>`
,
long04: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M3 14h2v-1H4v-2H3v3Zm12 0h2v-3h-1v2h-1v1Zm2-6V3h-1V2H4v1H3v5h1V5h1V4h1V3h8v1h1v1h1v3h1Z" fill="${colors.hair.value}"/>`
,
long03: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M3 13v1H2v2H1v1h1v-1h1v-1h1v-1h1v-1H4v-2H3v2Zm0-5h1V7h1V6h1V5h8v1h1v1h1v1h1V4h-1V3h-1V2H5v1H4v1H3v4Z" fill="${colors.hair.value}"/>`
,
long02: (components, colors)=>`<path d="M2 15h4v-1H5v-1H4V6h2V5h2V4h1V3h4v1h1v1h1v1h1v7h-1v1h-1v1h4V4h-1V3h-1V2h-1V1H5v1H4v1H3v1H2v11Z" fill="${colors.hair.value}"/>`
,
long01: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M3 11v3H2v2H1v1h1v-1h1v-1h1v-1h1v-1H4v-2H3Zm14 0v3h1v2h1v1h-1v-1h-1v-1h-1v-1h-1v-1h1v-2h1Zm-1-3h1V4h-1V3h-1V2H5v1H4v1H3v4h1V7h1V6h1V5h8v1h1v1h1v1Z" fill="${colors.hair.value}"/>`
};
const accessories$1 = {
variant04: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 10v1h1v-1H3Zm13 0v1h1v-1h-1Z\" fill=\"".concat(colors.accessories.value, "\"/>"),
variant03: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 10v2h1v-2H3Zm13 0h1v2h-1v-2Z\" fill=\"".concat(colors.accessories.value, "\"/>"),
variant02: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M3 10v2h1v-2H3Zm13 0h1v2h-1v-2Z\" fill=\"".concat(colors.accessories.value, "\"/><path d=\"M3 10v1h1v-1H3Zm13 0h1v1h-1v-1Z\" fill=\"#fff\" fill-opacity=\".4\"/></g>"),
variant01: (components, colors) => "<path d=\"M4 11H2v2h2v-2ZM18 11h-2v2h2v-2Z\" fill=\"".concat(colors.accessories.value, "\"/>")
const $645ba5ae5179f846$export$3bb43880931639de = {
variant04: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M3 10v1h1v-1H3Zm13 0v1h1v-1h-1Z" fill="${colors.accessories.value}"/>`
,
variant03: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M3 10v2h1v-2H3Zm13 0h1v2h-1v-2Z" fill="${colors.accessories.value}"/>`
,
variant02: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M3 10v2h1v-2H3Zm13 0h1v2h-1v-2Z" fill="${colors.accessories.value}"/><path d="M3 10v1h1v-1H3Zm13 0h1v1h-1v-1Z" fill="#fff" fill-opacity=".4"/></g>`
,
variant01: (components, colors)=>`<path d="M4 11H2v2h2v-2ZM18 11h-2v2h2v-2Z" fill="${colors.accessories.value}"/>`
};
const glasses$1 = {
variant07: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path opacity=\".2\" d=\"M5 7h3v3H5V7Zm7 0h3v3h-3V7Z\" fill=\"#fff\"/><path opacity=\".2\" d=\"M7 7h1v1H7V7Zm7 0h1v1h-1V7Z\" fill=\"#fff\"/><path d=\"M12 10V7h3v3h-3Zm-1-4v1H9V6H4v1H3v1h1v3h5V8h2v3h5V8h1V7h-1V6h-5Zm-6 4V7h3v3H5Z\" fill=\"".concat(colors.glasses.value, "\"/><path d=\"M3 7h1v1H3V7Zm6 0h2v1H9V7Zm7 0h1v1h-1V7Z\" fill=\"#fff\" fill-opacity=\".2\"/></g>"),
variant06: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path opacity=\".2\" d=\"M5 7h3v2H5V7Zm7 0h3v2h-3V7Z\" fill=\"#fff\"/><path opacity=\".2\" d=\"M7 7h1v1H7V7Zm7 0h1v1h-1V7Z\" fill=\"#fff\"/><path d=\"M5 7v2h3V7H5ZM4 6v1H3v1h1v1h1v1h3V9h1V8h2v1h1v1h3V9h1V8h1V7h-1V6h-5v1H9V6H4Zm8 1v2h3V7h-3Z\" fill=\"".concat(colors.glasses.value, "\"/><path d=\"M3 7h1v1H3V7Zm6 0h2v1H9V7Zm7 0h1v1h-1V7Z\" fill=\"#fff\" fill-opacity=\".2\"/></g>"),
variant05: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path opacity=\".2\" d=\"M5 8h3v1H5V8Zm7 0h3v1h-3V8Z\" fill=\"#fff\"/><path opacity=\".2\" d=\"M7 8h1v1H7V8Zm7 0h1v1h-1V8Z\" fill=\"#fff\"/><path d=\"M5 8v1h3V8H5ZM3 7v1h1v1h1v1h3V9h1V8h2v1h1v1h3V9h1V8h1V7H3Zm9 1v1h3V8h-3Z\" fill=\"".concat(colors.glasses.value, "\"/><path d=\"M3 7v1h1V7H3Zm6 0v1h2V7H9Zm7 0v1h1V7h-1Z\" fill=\"#fff\" fill-opacity=\".2\"/></g>"),
variant04: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path opacity=\".2\" d=\"M5 7h3v2H5V7Zm7 0h3v2h-3V7Z\" fill=\"#fff\"/><path opacity=\".2\" d=\"M7 7h1v1H7V7Zm7 0h1v1h-1V7Z\" fill=\"#fff\"/><path d=\"M12 7v2h3V7h-3ZM8 6H5v1H3v1h1v1h1v1h3V9h1V8h2v1h1v1h3V9h1V8h1V7h-2V6h-3v1H8V6ZM5 7v2h3V7H5Z\" fill=\"".concat(colors.glasses.value, "\"/><path d=\"M3 7h1v1H3V7Zm6 0h2v1H9V7Zm7 0h1v1h-1V7Z\" fill=\"#fff\" fill-opacity=\".2\"/></g>"),
variant03: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M4 8H3V7h1V6h5v1h2V6h5v1h1v1h-1v2h-5V8H9v2H4V8Zm1 0V7h3v2H5V8Zm7-1v2h3V7h-3Z\" fill=\"".concat(colors.glasses.value, "\"/><path opacity=\".2\" d=\"M5 7h3v2H5V7Zm7 0h3v2h-3V7Z\" fill=\"#fff\"/><path opacity=\".2\" d=\"M14 7h1v1h-1V7ZM7 7h1v1H7V7Z\" fill=\"#fff\"/><path d=\"M3 8V7h1v1H3Zm6-1v1h2V7H9Zm7 0v1h1V7h-1Z\" fill=\"#fff\" fill-opacity=\".2\"/></g>"),
variant02: (components, colors) => "<g fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M4 8H3V7h14v1h-1v2h-5V8H9v2H4V8Zm1 0h3v1H5V8Zm7 0h3v1h-3V8Z\" fill=\"".concat(colors.glasses.value, "\"/><path opacity=\".2\" d=\"M7 8v1h1V8H7Zm7 0v1h1V8h-1Z\" fill=\"#fff\"/><path opacity=\".2\" d=\"M5 8h3v1H5V8Zm7 0h3v1h-3V8Z\" fill=\"#fff\"/><path d=\"M3 7v1h1V7H3Zm13 0v1h1V7h-1ZM9 7v1h2V7H9Z\" fill=\"#fff\" fill-opacity=\".2\"/></g>"),
variant01: (components, colors) => "<path d=\"M3 8V7h1V6h2v1h1V6h2v1h2V6h2v1h1V6h2v1h1v1h-1v1h-1v1h-1v1h-1v-1h-1V9h-1V8H9v1H8v1H7v1H6v-1H5V9H4V8H3Z\" fill=\"".concat(colors.glasses.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 7v1h1V7h1V6H4v1H3Zm5-1v1h1v1h2V7h1V6h-1v1H9V6H8Zm7 0v1h1v1h1V7h-1V6h-1Z\" fill=\"#fff\" fill-opacity=\".2\"/>")
const $bab3a5d0d982c819$export$98222f1ebbc36891 = {
variant07: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path opacity=".2" d="M5 7h3v3H5V7Zm7 0h3v3h-3V7Z" fill="#fff"/><path opacity=".2" d="M7 7h1v1H7V7Zm7 0h1v1h-1V7Z" fill="#fff"/><path d="M12 10V7h3v3h-3Zm-1-4v1H9V6H4v1H3v1h1v3h5V8h2v3h5V8h1V7h-1V6h-5Zm-6 4V7h3v3H5Z" fill="${colors.glasses.value}"/><path d="M3 7h1v1H3V7Zm6 0h2v1H9V7Zm7 0h1v1h-1V7Z" fill="#fff" fill-opacity=".2"/></g>`
,
variant06: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path opacity=".2" d="M5 7h3v2H5V7Zm7 0h3v2h-3V7Z" fill="#fff"/><path opacity=".2" d="M7 7h1v1H7V7Zm7 0h1v1h-1V7Z" fill="#fff"/><path d="M5 7v2h3V7H5ZM4 6v1H3v1h1v1h1v1h3V9h1V8h2v1h1v1h3V9h1V8h1V7h-1V6h-5v1H9V6H4Zm8 1v2h3V7h-3Z" fill="${colors.glasses.value}"/><path d="M3 7h1v1H3V7Zm6 0h2v1H9V7Zm7 0h1v1h-1V7Z" fill="#fff" fill-opacity=".2"/></g>`
,
variant05: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path opacity=".2" d="M5 8h3v1H5V8Zm7 0h3v1h-3V8Z" fill="#fff"/><path opacity=".2" d="M7 8h1v1H7V8Zm7 0h1v1h-1V8Z" fill="#fff"/><path d="M5 8v1h3V8H5ZM3 7v1h1v1h1v1h3V9h1V8h2v1h1v1h3V9h1V8h1V7H3Zm9 1v1h3V8h-3Z" fill="${colors.glasses.value}"/><path d="M3 7v1h1V7H3Zm6 0v1h2V7H9Zm7 0v1h1V7h-1Z" fill="#fff" fill-opacity=".2"/></g>`
,
variant04: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path opacity=".2" d="M5 7h3v2H5V7Zm7 0h3v2h-3V7Z" fill="#fff"/><path opacity=".2" d="M7 7h1v1H7V7Zm7 0h1v1h-1V7Z" fill="#fff"/><path d="M12 7v2h3V7h-3ZM8 6H5v1H3v1h1v1h1v1h3V9h1V8h2v1h1v1h3V9h1V8h1V7h-2V6h-3v1H8V6ZM5 7v2h3V7H5Z" fill="${colors.glasses.value}"/><path d="M3 7h1v1H3V7Zm6 0h2v1H9V7Zm7 0h1v1h-1V7Z" fill="#fff" fill-opacity=".2"/></g>`
,
variant03: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M4 8H3V7h1V6h5v1h2V6h5v1h1v1h-1v2h-5V8H9v2H4V8Zm1 0V7h3v2H5V8Zm7-1v2h3V7h-3Z" fill="${colors.glasses.value}"/><path opacity=".2" d="M5 7h3v2H5V7Zm7 0h3v2h-3V7Z" fill="#fff"/><path opacity=".2" d="M14 7h1v1h-1V7ZM7 7h1v1H7V7Z" fill="#fff"/><path d="M3 8V7h1v1H3Zm6-1v1h2V7H9Zm7 0v1h1V7h-1Z" fill="#fff" fill-opacity=".2"/></g>`
,
variant02: (components, colors)=>`<g fill-rule="evenodd" clip-rule="evenodd"><path d="M4 8H3V7h14v1h-1v2h-5V8H9v2H4V8Zm1 0h3v1H5V8Zm7 0h3v1h-3V8Z" fill="${colors.glasses.value}"/><path opacity=".2" d="M7 8v1h1V8H7Zm7 0v1h1V8h-1Z" fill="#fff"/><path opacity=".2" d="M5 8h3v1H5V8Zm7 0h3v1h-3V8Z" fill="#fff"/><path d="M3 7v1h1V7H3Zm13 0v1h1V7h-1ZM9 7v1h2V7H9Z" fill="#fff" fill-opacity=".2"/></g>`
,
variant01: (components, colors)=>`<path d="M3 8V7h1V6h2v1h1V6h2v1h2V6h2v1h1V6h2v1h1v1h-1v1h-1v1h-1v1h-1v-1h-1V9h-1V8H9v1H8v1H7v1H6v-1H5V9H4V8H3Z" fill="${colors.glasses.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3 7v1h1V7h1V6H4v1H3Zm5-1v1h1v1h2V7h1V6h-1v1H9V6H8Zm7 0v1h1v1h1V7h-1V6h-1Z" fill="#fff" fill-opacity=".2"/>`
};
const hat$1 = {
variant01: (components, colors) => "<path d=\"M4 1v2H2v2h16V3h-2V1H4Z\" fill=\"".concat(colors.hat.value, "\"/>"),
variant02: (components, colors) => "<path d=\"M4 4H2v1h16V4h-2V1H4v3Z\" fill=\"".concat(colors.hat.value, "\"/>"),
variant03: (components, colors) => "<path d=\"M3 4v2h14V4h-1V3h-1V2H5v1H4v1H3Z\" fill=\"".concat(colors.hat.value, "\"/>"),
variant04: (components, colors) => "<path d=\"M6 1v1H5v1H4v2h14V4h-2V3h-1V2h-1V1H6Z\" fill=\"".concat(colors.hat.value, "\"/>"),
variant05: (components, colors) => "<path d=\"M3 5V3h2V1h10v2h2v2H3Z\" fill=\"".concat(colors.hat.value, "\"/><path d=\"M4 1v2h12V1H4Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant06: (components, colors) => "<path d=\"M3 5V4h2V1h10v3h2v1H3Z\" fill=\"".concat(colors.hat.value, "\"/><path d=\"M5 1v3h10V1H5Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant07: (components, colors) => "<path d=\"M3 6V4h1V3h1V2h10v1h1v1h1v2H3Z\" fill=\"".concat(colors.hat.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 3v1h12V3H4ZM3 5v1h14V5H3Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant08: (components, colors) => "<path d=\"M14 2H6v1H5v1H4v2h14V5h-2V4h-1V3h-1V2Z\" fill=\"".concat(colors.hat.value, "\"/><path d=\"M5 6h1V5h1V4h1V3H7v1H6v1H5v1Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant09: (components, colors) => "<path d=\"M5 1v2H3v2h14V3h-2V1H5Z\" fill=\"".concat(colors.hat.value, "\"/><path d=\"M14 3V0h-1v3h1Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant10: (components, colors) => "<path d=\"M4 0v5H2v1h16V5h-2V0H4Z\" fill=\"".concat(colors.hat.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 3V0h-1v3h1Zm-2-3v2h-1V0h1Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant11: (components, colors) => "<path d=\"M3 3v2h14V3h-1V2h-1V1H5v1H4v1H3Z\" fill=\"".concat(colors.hat.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14 1v4h-1V1h1Zm-2 0v4h-1V1h1Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant12: (components, colors) => "<path d=\"M5 4H4v2h14V5h-2V4h-1V3h-1V2H6v1H5v1Z\" fill=\"".concat(colors.hat.value, "\"/><path d=\"M14 4h-3v1h3V4Z\" fill=\"#fff\" fill-opacity=\".2\"/>")
const $adfada936a0a2b79$export$dbf38fa2a54a979a = {
variant01: (components, colors)=>`<path d="M4 1v2H2v2h16V3h-2V1H4Z" fill="${colors.hat.value}"/>`
,
variant02: (components, colors)=>`<path d="M4 4H2v1h16V4h-2V1H4v3Z" fill="${colors.hat.value}"/>`
,
variant03: (components, colors)=>`<path d="M3 4v2h14V4h-1V3h-1V2H5v1H4v1H3Z" fill="${colors.hat.value}"/>`
,
variant04: (components, colors)=>`<path d="M6 1v1H5v1H4v2h14V4h-2V3h-1V2h-1V1H6Z" fill="${colors.hat.value}"/>`
,
variant05: (components, colors)=>`<path d="M3 5V3h2V1h10v2h2v2H3Z" fill="${colors.hat.value}"/><path d="M4 1v2h12V1H4Z" fill="#fff" fill-opacity=".2"/>`
,
variant06: (components, colors)=>`<path d="M3 5V4h2V1h10v3h2v1H3Z" fill="${colors.hat.value}"/><path d="M5 1v3h10V1H5Z" fill="#fff" fill-opacity=".2"/>`
,
variant07: (components, colors)=>`<path d="M3 6V4h1V3h1V2h10v1h1v1h1v2H3Z" fill="${colors.hat.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M4 3v1h12V3H4ZM3 5v1h14V5H3Z" fill="#fff" fill-opacity=".2"/>`
,
variant08: (components, colors)=>`<path d="M14 2H6v1H5v1H4v2h14V5h-2V4h-1V3h-1V2Z" fill="${colors.hat.value}"/><path d="M5 6h1V5h1V4h1V3H7v1H6v1H5v1Z" fill="#fff" fill-opacity=".2"/>`
,
variant09: (components, colors)=>`<path d="M5 1v2H3v2h14V3h-2V1H5Z" fill="${colors.hat.value}"/><path d="M14 3V0h-1v3h1Z" fill="#fff" fill-opacity=".2"/>`
,
variant10: (components, colors)=>`<path d="M4 0v5H2v1h16V5h-2V0H4Z" fill="${colors.hat.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M15 3V0h-1v3h1Zm-2-3v2h-1V0h1Z" fill="#fff" fill-opacity=".2"/>`
,
variant11: (components, colors)=>`<path d="M3 3v2h14V3h-1V2h-1V1H5v1H4v1H3Z" fill="${colors.hat.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M14 1v4h-1V1h1Zm-2 0v4h-1V1h1Z" fill="#fff" fill-opacity=".2"/>`
,
variant12: (components, colors)=>`<path d="M5 4H4v2h14V5h-2V4h-1V3h-1V2H6v1H5v1Z" fill="${colors.hat.value}"/><path d="M14 4h-3v1h3V4Z" fill="#fff" fill-opacity=".2"/>`
};
const clothing = {
variant25: (components, colors) => "<path d=\"M3 20v-3h1v-1h12v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path d=\"M5 20v-2h1v-1h8v1h1v2h-2v-1h-2v1H9v-1H7v1H5Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant24: (components, colors) => "<path d=\"M3 20v-3h1v-1h12v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path d=\"M8 16H4v1H3v3h14v-3h-1v-1h-4v1h1v1h-1v1h-1v-1H9v1H8v-1H7v-1h1v-1Z\" fill=\"#fff\" fill-opacity=\".2\"/><path d=\"M9 16v1h2v-1H9Z\" fill=\"#fff\"/>"),
variant23: (components, colors) => "<path d=\"M3 20v-3h1v-1h12v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 16H4v1H3v3h6v-2H8v-1h1v-1Zm2 0h5v1h1v3h-6v-2h1v-1h-1v-1Z\" fill=\"#fff\" fill-opacity=\".3\"/>"),
variant22: (components, colors) => "<path d=\"M3 20v-3h1v-1h3v2h6v-2h3v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5 16H4v1H3v3h2v-4Zm1 0h1v2h6v-2h1v4H6v-4Zm9 0h1v1h1v3h-2v-4Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant21: (components, colors) => "<path d=\"M3 20v-3h1v-1h4v1h1v1h2v-1h1v-1h4v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 17v-1h3v1H4Zm9 0v-1h3v1h-3Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant20: (components, colors) => "<path d=\"M3 20v-3h1v-1h3v-1h1v1h1v1h2v-1h1v-1h1v1h3v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 16H4v1H3v3h6v-2H8v-1H6v-1Zm2 0h1-1Zm3 0h1-1Zm2 0h1v1h-2v1h-1v2h6v-3h-1v-1h-3Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant19: (components, colors) => "<path d=\"M5 16H4v1H3v3h14v-3h-1v-1h-3v1H7v-1H5Z\" fill=\"".concat(colors.clothes.value, "\"/><path d=\"M10 20v-1h3v1h-3Z\" fill=\"#fff\" fill-opacity=\".5\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5 16H4v1H3v3h1v-1h1v-3Zm1 0h1v1h6v-1h1v2H6v-2Zm9 0h1v1h1v3h-1v-1h-1v-3Z\" fill=\"#fff\" fill-opacity=\".8\"/>"),
variant18: (components, colors) => "<path d=\"M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 20v-1h1v1H3Zm2 0v-1h1v1H5Zm2 0v-1h1v1H7Zm2 0v-1h1v1H9Zm2 0v-1h1v1h-1Zm2 0v-1h1v1h-1Zm2 0v-1h1v1h-1Zm1-2h1v1h-1v-1Zm-2 0h1v1h-1v-1Zm-2 0h1v1h-1v-1Zm-2 0h1v1h-1v-1Zm-2 0h1v1H8v-1Zm-2 0h1v1H6v-1Zm-2 0h1v1H4v-1Zm-1-1h1v1H3v-1Zm2 0h1v1H5v-1Zm2 0h1v1H7v-1Zm2 0h1v1H9v-1Zm2 0h1v1h-1v-1Zm2 0h1v1h-1v-1Zm2 0h1v1h-1v-1ZM4 16h1v1H4v-1Zm2 0h1v1H6v-1Zm6 0h1v1h-1v-1Zm2 0h1v1h-1v-1Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant17: (components, colors) => "<path d=\"M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 20v-2h1v2H3Zm3 0v-2h2v2H6Zm4 0v-2h2v2h-2Zm4 0v-2h2v2h-2Zm2-3v1h1v-1h-1Zm-2 1v-2h-2v2h2Zm-6-1v1h2v-1H8Zm-4-1v2h2v-2H4Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant16: (components, colors) => "<path d=\"M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 19h14v1H3v-1Zm0-2h14v1H3v-1Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant15: (components, colors) => "<path d=\"M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/>"),
variant14: (components, colors) => "<path d=\"M3 20v-3h1v-1h4v-1h4v1h4v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path d=\"M3 20v-3h1v-1h12v1h1v3H3Z\" fill=\"#fff\" fill-opacity=\".2\"/><path d=\"M12 20v-1h3v1h-3Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant13: (components, colors) => "<path d=\"M3 20v-3h1v-1h12v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/>"),
variant12: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 16v4h4v-1H7v-1H6v-1H5v-1H4Zm12 0v4h-4v-1h1v-1h1v-1h1v-1h1Z\" fill=\"".concat(colors.clothes.value, "\"/>"),
variant11: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5 16h1v2h1v1h1v1H5v-4Zm9 0h1v4h-3v-1h1v-1h1v-2Z\" fill=\"".concat(colors.clothes.value, "\"/>"),
variant10: (components, colors) => "<path d=\"M4 20v-2h1v-1h1v-1h2v1h1v1h2v-1h1v-1h2v1h1v1h1v2H4Z\" fill=\"".concat(colors.clothes.value, "\"/>"),
variant09: (components, colors) => "<path d=\"M3 20v-3h1v-1h4v1h1v1h2v-1h1v-1h4v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path d=\"M3 20v-3h1v-1h2v1h1v1h1v1h4v-1h1v-1h1v-1h2v1h1v3H3Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant08: (components, colors) => "<path d=\"M3 20v-3h1v-1h5v1h2v-1h5v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 20v-2h1v1h3v1H3Zm14 0v-2h-1v1h-3v1h4Z\" fill=\"#fff\" fill-opacity=\".4\"/><path d=\"M7 16H4v1H3v1h1v1h3v1h6v-1h3v-1h1v-1h-1v-1h-3v1H7v-1Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant07: (components, colors) => "<path d=\"M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path d=\"M15 20h2v-3h-1v-1h-4v1H8v-1H4v1H3v3h2v-2h10v2Z\" fill=\"#fff\" fill-opacity=\".4\"/>"),
variant06: (components, colors) => "<path d=\"M3 20v-3h1v-1h4v1h1v1h2v-1h1v-1h4v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path d=\"M6 16v1h1v1h1v1h4v-1h1v-1h1v-1h-2v1h-1v1H9v-1H8v-1H6Z\" fill=\"#fff\" fill-opacity=\".4\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13 20v-1h2v1h-2Zm1-4v1h2v-1h-2Zm-8 0H4v1h2v-1Z\" fill=\"#fff\" fill-opacity=\".2\"/>"),
variant05: (components, colors) => "<path d=\"M3 20v-3h1v-1h3v1h1v1h1v1h2v-1h1v-1h1v-1h3v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/>"),
variant04: (components, colors) => "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 20v-3h1v-1h2v1h1v1h1v1h1v1H3Zm14 0v-3h-1v-1h-2v1h-1v1h-1v1h-1v1h6Z\" fill=\"".concat(colors.clothes.value, "\"/>"),
variant03: (components, colors) => "<path d=\"M4 16v4h4v-1H7v-1H6v-2H4ZM16 20v-4h-2v2h-1v1h-1v1h4Z\" fill=\"".concat(colors.clothes.value, "\"/>"),
variant02: (components, colors) => "<path d=\"M3 20v-3h1v-1h3v1h1v1h1v1h2v-1h1v-1h1v-1h3v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path d=\"M6 16v1h1v1h1v1h1v1h2v-1h1v-1h1v-1h1v-1h-1v1h-1v1h-1v1H9v-1H8v-1H7v-1H6Z\" fill=\"#fff\" fill-opacity=\".4\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 16v1h-1v1h-1v1h-1v1h-1v-1h1v-1h1v-1h1v-1h1ZM5 16v1h1v1h1v1h1v1h1v-1H8v-1H7v-1H6v-1H5Z\" fill=\"#fff\" fill-opacity=\".2\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 20h1v-3h1v1h1v1h1v1h1v-1H7v-1H6v-1H5v-1H4v1H3v3Zm14 0v-3h-1v-1h-1v1h-1v1h-1v1h-1v1h1v-1h1v-1h1v-1h1v3h1Z\" fill=\"#fff\" fill-opacity=\".1\"/>"),
variant01: (components, colors) => "<path d=\"M3 20v-3h1v-1h5v1h2v-1h5v1h1v3H3Z\" fill=\"".concat(colors.clothes.value, "\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 17h14v1H3v-1Zm0 2v1h14v-1H3Z\" fill=\"#fff\" fill-opacity=\".2\"/>")
const $6b3b16593f4a9777$export$315fd2fadf178734 = {
variant25: (components, colors)=>`<path d="M3 20v-3h1v-1h12v1h1v3H3Z" fill="${colors.clothes.value}"/><path d="M5 20v-2h1v-1h8v1h1v2h-2v-1h-2v1H9v-1H7v1H5Z" fill="#fff" fill-opacity=".2"/>`
,
variant24: (components, colors)=>`<path d="M3 20v-3h1v-1h12v1h1v3H3Z" fill="${colors.clothes.value}"/><path d="M8 16H4v1H3v3h14v-3h-1v-1h-4v1h1v1h-1v1h-1v-1H9v1H8v-1H7v-1h1v-1Z" fill="#fff" fill-opacity=".2"/><path d="M9 16v1h2v-1H9Z" fill="#fff"/>`
,
variant23: (components, colors)=>`<path d="M3 20v-3h1v-1h12v1h1v3H3Z" fill="${colors.clothes.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M9 16H4v1H3v3h6v-2H8v-1h1v-1Zm2 0h5v1h1v3h-6v-2h1v-1h-1v-1Z" fill="#fff" fill-opacity=".3"/>`
,
variant22: (components, colors)=>`<path d="M3 20v-3h1v-1h3v2h6v-2h3v1h1v3H3Z" fill="${colors.clothes.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M5 16H4v1H3v3h2v-4Zm1 0h1v2h6v-2h1v4H6v-4Zm9 0h1v1h1v3h-2v-4Z" fill="#fff" fill-opacity=".2"/>`
,
variant21: (components, colors)=>`<path d="M3 20v-3h1v-1h4v1h1v1h2v-1h1v-1h4v1h1v3H3Z" fill="${colors.clothes.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M4 17v-1h3v1H4Zm9 0v-1h3v1h-3Z" fill="#fff" fill-opacity=".2"/>`
,
variant20: (components, colors)=>`<path d="M3 20v-3h1v-1h3v-1h1v1h1v1h2v-1h1v-1h1v1h3v1h1v3H3Z" fill="${colors.clothes.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M6 16H4v1H3v3h6v-2H8v-1H6v-1Zm2 0h1-1Zm3 0h1-1Zm2 0h1v1h-2v1h-1v2h6v-3h-1v-1h-3Z" fill="#fff" fill-opacity=".2"/>`
,
variant19: (components, colors)=>`<path d="M5 16H4v1H3v3h14v-3h-1v-1h-3v1H7v-1H5Z" fill="${colors.clothes.value}"/><path d="M10 20v-1h3v1h-3Z" fill="#fff" fill-opacity=".5"/><path fill-rule="evenodd" clip-rule="evenodd" d="M5 16H4v1H3v3h1v-1h1v-3Zm1 0h1v1h6v-1h1v2H6v-2Zm9 0h1v1h1v3h-1v-1h-1v-3Z" fill="#fff" fill-opacity=".8"/>`
,
variant18: (components, colors)=>`<path d="M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z" fill="${colors.clothes.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3 20v-1h1v1H3Zm2 0v-1h1v1H5Zm2 0v-1h1v1H7Zm2 0v-1h1v1H9Zm2 0v-1h1v1h-1Zm2 0v-1h1v1h-1Zm2 0v-1h1v1h-1Zm1-2h1v1h-1v-1Zm-2 0h1v1h-1v-1Zm-2 0h1v1h-1v-1Zm-2 0h1v1h-1v-1Zm-2 0h1v1H8v-1Zm-2 0h1v1H6v-1Zm-2 0h1v1H4v-1Zm-1-1h1v1H3v-1Zm2 0h1v1H5v-1Zm2 0h1v1H7v-1Zm2 0h1v1H9v-1Zm2 0h1v1h-1v-1Zm2 0h1v1h-1v-1Zm2 0h1v1h-1v-1ZM4 16h1v1H4v-1Zm2 0h1v1H6v-1Zm6 0h1v1h-1v-1Zm2 0h1v1h-1v-1Z" fill="#fff" fill-opacity=".2"/>`
,
variant17: (components, colors)=>`<path d="M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z" fill="${colors.clothes.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3 20v-2h1v2H3Zm3 0v-2h2v2H6Zm4 0v-2h2v2h-2Zm4 0v-2h2v2h-2Zm2-3v1h1v-1h-1Zm-2 1v-2h-2v2h2Zm-6-1v1h2v-1H8Zm-4-1v2h2v-2H4Z" fill="#fff" fill-opacity=".2"/>`
,
variant16: (components, colors)=>`<path d="M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z" fill="${colors.clothes.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3 19h14v1H3v-1Zm0-2h14v1H3v-1Z" fill="#fff" fill-opacity=".2"/>`
,
variant15: (components, colors)=>`<path d="M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z" fill="${colors.clothes.value}"/>`
,
variant14: (components, colors)=>`<path d="M3 20v-3h1v-1h4v-1h4v1h4v1h1v3H3Z" fill="${colors.clothes.value}"/><path d="M3 20v-3h1v-1h12v1h1v3H3Z" fill="#fff" fill-opacity=".2"/><path d="M12 20v-1h3v1h-3Z" fill="#fff" fill-opacity=".2"/>`
,
variant13: (components, colors)=>`<path d="M3 20v-3h1v-1h12v1h1v3H3Z" fill="${colors.clothes.value}"/>`
,
variant12: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M4 16v4h4v-1H7v-1H6v-1H5v-1H4Zm12 0v4h-4v-1h1v-1h1v-1h1v-1h1Z" fill="${colors.clothes.value}"/>`
,
variant11: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M5 16h1v2h1v1h1v1H5v-4Zm9 0h1v4h-3v-1h1v-1h1v-2Z" fill="${colors.clothes.value}"/>`
,
variant10: (components, colors)=>`<path d="M4 20v-2h1v-1h1v-1h2v1h1v1h2v-1h1v-1h2v1h1v1h1v2H4Z" fill="${colors.clothes.value}"/>`
,
variant09: (components, colors)=>`<path d="M3 20v-3h1v-1h4v1h1v1h2v-1h1v-1h4v1h1v3H3Z" fill="${colors.clothes.value}"/><path d="M3 20v-3h1v-1h2v1h1v1h1v1h4v-1h1v-1h1v-1h2v1h1v3H3Z" fill="#fff" fill-opacity=".2"/>`
,
variant08: (components, colors)=>`<path d="M3 20v-3h1v-1h5v1h2v-1h5v1h1v3H3Z" fill="${colors.clothes.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3 20v-2h1v1h3v1H3Zm14 0v-2h-1v1h-3v1h4Z" fill="#fff" fill-opacity=".4"/><path d="M7 16H4v1H3v1h1v1h3v1h6v-1h3v-1h1v-1h-1v-1h-3v1H7v-1Z" fill="#fff" fill-opacity=".2"/>`
,
variant07: (components, colors)=>`<path d="M3 20v-3h1v-1h4v1h4v-1h4v1h1v3H3Z" fill="${colors.clothes.value}"/><path d="M15 20h2v-3h-1v-1h-4v1H8v-1H4v1H3v3h2v-2h10v2Z" fill="#fff" fill-opacity=".4"/>`
,
variant06: (components, colors)=>`<path d="M3 20v-3h1v-1h4v1h1v1h2v-1h1v-1h4v1h1v3H3Z" fill="${colors.clothes.value}"/><path d="M6 16v1h1v1h1v1h4v-1h1v-1h1v-1h-2v1h-1v1H9v-1H8v-1H6Z" fill="#fff" fill-opacity=".4"/><path fill-rule="evenodd" clip-rule="evenodd" d="M13 20v-1h2v1h-2Zm1-4v1h2v-1h-2Zm-8 0H4v1h2v-1Z" fill="#fff" fill-opacity=".2"/>`
,
variant05: (components, colors)=>`<path d="M3 20v-3h1v-1h3v1h1v1h1v1h2v-1h1v-1h1v-1h3v1h1v3H3Z" fill="${colors.clothes.value}"/>`
,
variant04: (components, colors)=>`<path fill-rule="evenodd" clip-rule="evenodd" d="M3 20v-3h1v-1h2v1h1v1h1v1h1v1H3Zm14 0v-3h-1v-1h-2v1h-1v1h-1v1h-1v1h6Z" fill="${colors.clothes.value}"/>`
,
variant03: (components, colors)=>`<path d="M4 16v4h4v-1H7v-1H6v-2H4ZM16 20v-4h-2v2h-1v1h-1v1h4Z" fill="${colors.clothes.value}"/>`
,
variant02: (components, colors)=>`<path d="M3 20v-3h1v-1h3v1h1v1h1v1h2v-1h1v-1h1v-1h3v1h1v3H3Z" fill="${colors.clothes.value}"/><path d="M6 16v1h1v1h1v1h1v1h2v-1h1v-1h1v-1h1v-1h-1v1h-1v1h-1v1H9v-1H8v-1H7v-1H6Z" fill="#fff" fill-opacity=".4"/><path fill-rule="evenodd" clip-rule="evenodd" d="M15 16v1h-1v1h-1v1h-1v1h-1v-1h1v-1h1v-1h1v-1h1ZM5 16v1h1v1h1v1h1v1h1v-1H8v-1H7v-1H6v-1H5Z" fill="#fff" fill-opacity=".2"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3 20h1v-3h1v1h1v1h1v1h1v-1H7v-1H6v-1H5v-1H4v1H3v3Zm14 0v-3h-1v-1h-1v1h-1v1h-1v1h-1v1h1v-1h1v-1h1v-1h1v3h1Z" fill="#fff" fill-opacity=".1"/>`
,
variant01: (components, colors)=>`<path d="M3 20v-3h1v-1h5v1h2v-1h5v1h1v3H3Z" fill="${colors.clothes.value}"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3 17h14v1H3v-1Zm0 2v1h14v-1H3Z" fill="#fff" fill-opacity=".2"/>`
};
var components = /*#__PURE__*/Object.freeze({
__proto__: null,
beard: beard,
eyes: eyes,
eyebrows: eyebrows,
mouth: mouth$1,
hair: hair$1,
accessories: accessories$1,
glasses: glasses$1,
hat: hat$1,
clothing: clothing
});
function pickComponent(_ref) {
let {
prng,
group,
values = []
} = _ref;
const componentCollection = components;
const key = prng.pick(values);
if (componentCollection[group][key]) {
return {
name: key,
value: componentCollection[group][key]
function $73a12bdb08a3af5d$export$5bc6178a9a86ed74({ prng: prng , group: group , values: values = [] }) {
const componentCollection = $b4afbfe589b078df$exports;
const key = prng.pick(values);
if (componentCollection[group][key]) return {
name: key,
value: componentCollection[group][key]
};
} else {
return undefined;
}
else return undefined;
}
function getComponents(_ref) {
let {
prng,
options
} = _ref;
const beardComponent = pickComponent({
prng,
group: 'beard',
values: options.beard
});
const eyesComponent = pickComponent({
prng,
group: 'eyes',
values: options.eyes
});
const eyebrowsComponent = pickComponent({
prng,
group: 'eyebrows',
values: options.eyebrows
});
const mouthComponent = pickComponent({
prng,
group: 'mouth',
values: options.mouth
});
const hairComponent = pickComponent({
prng,
group: 'hair',
values: options.hair
});
const accessoriesComponent = pickComponent({
prng,
group: 'accessories',
values: options.accessories
});
const glassesComponent = pickComponent({
prng,
group: 'glasses',
values: options.glasses
});
const hatComponent = pickComponent({
prng,
group: 'hat',
values: options.hat
});
const clothingComponent = pickComponent({
prng,
group: 'clothing',
values: options.clothing
});
return {
beard: prng.bool(options.beardProbability) ? beardComponent : undefined,
eyes: eyesComponent,
eyebrows: eyebrowsComponent,
mouth: mouthComponent,
hair: prng.bool(options.hairProbability) ? hairComponent : undefined,
accessories: prng.bool(options.accessoriesProbability) ? accessoriesComponent : undefined,
glasses: prng.bool(options.glassesProbability) ? glassesComponent : undefined,
hat: prng.bool(options.hatProbability) ? hatComponent : undefined,
clothing: clothingComponent
};
function $b40f5db0449f0b48$export$4e811121b221213b({ prng: prng , options: options }) {
const beardComponent = $73a12bdb08a3af5d$export$5bc6178a9a86ed74({
prng: prng,
group: 'beard',
values: options.beard
});
const eyesComponent = $73a12bdb08a3af5d$export$5bc6178a9a86ed74({
prng: prng,
group: 'eyes',
values: options.eyes
});
const eyebrowsComponent = $73a12bdb08a3af5d$export$5bc6178a9a86ed74({
prng: prng,
group: 'eyebrows',
values: options.eyebrows
});
const mouthComponent = $73a12bdb08a3af5d$export$5bc6178a9a86ed74({
prng: prng,
group: 'mouth',
values: options.mouth
});
const hairComponent = $73a12bdb08a3af5d$export$5bc6178a9a86ed74({
prng: prng,
group: 'hair',
values: options.hair
});
const accessoriesComponent = $73a12bdb08a3af5d$export$5bc6178a9a86ed74({
prng: prng,
group: 'accessories',
values: options.accessories
});
const glassesComponent = $73a12bdb08a3af5d$export$5bc6178a9a86ed74({
prng: prng,
group: 'glasses',
values: options.glasses
});
const hatComponent = $73a12bdb08a3af5d$export$5bc6178a9a86ed74({
prng: prng,
group: 'hat',
values: options.hat
});
const clothingComponent = $73a12bdb08a3af5d$export$5bc6178a9a86ed74({
prng: prng,
group: 'clothing',
values: options.clothing
});
return {
beard: prng.bool(options.beardProbability) ? beardComponent : undefined,
eyes: eyesComponent,
eyebrows: eyebrowsComponent,
mouth: mouthComponent,
hair: prng.bool(options.hairProbability) ? hairComponent : undefined,
accessories: prng.bool(options.accessoriesProbability) ? accessoriesComponent : undefined,
glasses: prng.bool(options.glassesProbability) ? glassesComponent : undefined,
hat: prng.bool(options.hatProbability) ? hatComponent : undefined,
clothing: clothingComponent
};
}
const skin = {
variant01: 'rgba(255, 219, 172, 1)',
variant02: 'rgba(245, 207, 160, 1)',
variant03: 'rgba(234, 195, 147, 1)',
variant04: 'rgba(224, 182, 135, 1)',
variant05: 'rgba(203, 158, 110, 1)',
variant06: 'rgba(182, 134, 85, 1)',
variant07: 'rgba(162, 109, 61, 1)',
variant08: 'rgba(141, 85, 36, 1)'
var $9492c796f7790371$exports = {};
$parcel$export($9492c796f7790371$exports, "skin", function () { return $5f5331f51260f39e$export$fcdfe9c56b00fbfc; });
$parcel$export($9492c796f7790371$exports, "hair", function () { return $317afb0f1c487eb3$export$12c365d50e7cb3d6; });
$parcel$export($9492c796f7790371$exports, "accessories", function () { return $ebe46bb65ba781df$export$3bb43880931639de; });
$parcel$export($9492c796f7790371$exports, "mouth", function () { return $29f2436c61fa322e$export$4ec1914b3efc3f9a; });
$parcel$export($9492c796f7790371$exports, "clothes", function () { return $a0efbb21db349c4c$export$7f97afff939ca5e8; });
$parcel$export($9492c796f7790371$exports, "hat", function () { return $270319304cf1420f$export$dbf38fa2a54a979a; });
$parcel$export($9492c796f7790371$exports, "glasses", function () { return $2dd8d6f4b4c65b10$export$98222f1ebbc36891; });
const $5f5331f51260f39e$export$fcdfe9c56b00fbfc = {
variant01: 'rgba(255, 219, 172, 1)',
variant02: 'rgba(245, 207, 160, 1)',
variant03: 'rgba(234, 195, 147, 1)',
variant04: 'rgba(224, 182, 135, 1)',
variant05: 'rgba(203, 158, 110, 1)',
variant06: 'rgba(182, 134, 85, 1)',
variant07: 'rgba(162, 109, 61, 1)',
variant08: 'rgba(141, 85, 36, 1)'
};
const hair = {
variant01: 'rgba(202, 177, 136, 1)',
variant02: 'rgba(167, 137, 97, 1)',
variant03: 'rgba(131, 98, 59, 1)',
variant04: 'rgba(96, 58, 20, 1)',
variant05: 'rgba(96, 48, 21, 1)',
variant06: 'rgba(97, 38, 22, 1)',
variant07: 'rgba(97, 28, 23, 1)',
variant08: 'rgba(78, 26, 19, 1)',
variant09: 'rgba(59, 23, 14, 1)',
variant10: 'rgba(40, 21, 10, 1)'
const $317afb0f1c487eb3$export$12c365d50e7cb3d6 = {
variant01: 'rgba(202, 177, 136, 1)',
variant02: 'rgba(167, 137, 97, 1)',
variant03: 'rgba(131, 98, 59, 1)',
variant04: 'rgba(96, 58, 20, 1)',
variant05: 'rgba(96, 48, 21, 1)',
variant06: 'rgba(97, 38, 22, 1)',
variant07: 'rgba(97, 28, 23, 1)',
variant08: 'rgba(78, 26, 19, 1)',
variant09: 'rgba(59, 23, 14, 1)',
variant10: 'rgba(40, 21, 10, 1)'
};
const accessories = {
gold01: 'rgba(218, 165, 32, 1)',
gold02: 'rgba(255, 215, 0, 1)',
gold03: 'rgba(250, 250, 210, 1)',
silver01: 'rgba(211, 211, 211, 1)',
silver02: 'rgba(169, 169, 169, 1)'
const $ebe46bb65ba781df$export$3bb43880931639de = {
gold01: 'rgba(218, 165, 32, 1)',
gold02: 'rgba(255, 215, 0, 1)',
gold03: 'rgba(250, 250, 210, 1)',
silver01: 'rgba(211, 211, 211, 1)',
silver02: 'rgba(169, 169, 169, 1)'
};
const mouth = {
variant01: 'rgba(210, 153, 133, 1)',
variant02: 'rgba(201, 130, 118, 1)',
variant03: 'rgba(227, 93, 106, 1)',
variant04: 'rgba(222, 15, 13, 1)'
const $29f2436c61fa322e$export$4ec1914b3efc3f9a = {
variant01: 'rgba(210, 153, 133, 1)',
variant02: 'rgba(201, 130, 118, 1)',
variant03: 'rgba(227, 93, 106, 1)',
variant04: 'rgba(222, 15, 13, 1)'
};
const clothes = {
yellow01: 'rgba(255, 238, 173, 1)',
yellow02: 'rgba(255, 217, 105, 1)',
yellow03: 'rgba(255, 196, 37, 1)',
red01: 'rgba(255, 111, 105, 1)',
red02: 'rgba(209, 17, 65, 1)',
red03: 'rgba(174, 0, 1, 1)',
blue01: 'rgba(91, 192, 222, 1)',
blue02: 'rgba(66, 139, 202, 1)',
blue03: 'rgba(3, 57, 108, 1)',
green01: 'rgba(136, 216, 176, 1)',
green02: 'rgba(68, 197, 133, 1)',
green03: 'rgba(0, 177, 89, 1)'
const $a0efbb21db349c4c$export$7f97afff939ca5e8 = {
yellow01: 'rgba(255, 238, 173, 1)',
yellow02: 'rgba(255, 217, 105, 1)',
yellow03: 'rgba(255, 196, 37, 1)',
red01: 'rgba(255, 111, 105, 1)',
red02: 'rgba(209, 17, 65, 1)',
red03: 'rgba(174, 0, 1, 1)',
blue01: 'rgba(91, 192, 222, 1)',
blue02: 'rgba(66, 139, 202, 1)',
blue03: 'rgba(3, 57, 108, 1)',
green01: 'rgba(136, 216, 176, 1)',
green02: 'rgba(68, 197, 133, 1)',
green03: 'rgba(0, 177, 89, 1)'
};
const hat = {
pink01: 'rgba(204, 97, 146, 1)',
blue01: 'rgba(38, 99, 163, 1)',
green01: 'rgba(61, 138, 107, 1)',
purple01: 'rgba(97, 79, 138, 1)',
red01: 'rgba(166, 33, 22, 1)',
black01: 'rgba(46, 30, 5, 1)',
gray01: 'rgba(152, 151, 137, 1)'
const $270319304cf1420f$export$dbf38fa2a54a979a = {
pink01: 'rgba(204, 97, 146, 1)',
blue01: 'rgba(38, 99, 163, 1)',
green01: 'rgba(61, 138, 107, 1)',
purple01: 'rgba(97, 79, 138, 1)',
red01: 'rgba(166, 33, 22, 1)',
black01: 'rgba(46, 30, 5, 1)',
gray01: 'rgba(152, 151, 137, 1)'
};
const glasses = {
green01: 'rgba(95, 112, 92, 1)',
blue01: 'rgba(67, 103, 125, 1)',
red01: 'rgba(160, 75, 93, 1)',
black01: 'rgba(75, 75, 75, 1)',
black02: 'rgba(50, 50, 50, 1)',
black03: 'rgba(25, 25, 25, 1)'
const $2dd8d6f4b4c65b10$export$98222f1ebbc36891 = {
green01: 'rgba(95, 112, 92, 1)',
blue01: 'rgba(67, 103, 125, 1)',
red01: 'rgba(160, 75, 93, 1)',
black01: 'rgba(75, 75, 75, 1)',
black02: 'rgba(50, 50, 50, 1)',
black03: 'rgba(25, 25, 25, 1)'
};
var colors = /*#__PURE__*/Object.freeze({
__proto__: null,
skin: skin,
hair: hair,
accessories: accessories,
mouth: mouth,
clothes: clothes,
hat: hat,
glasses: glasses
});
function pickColor(_ref) {
var _colorCollection$grou;
let {
prng,
group,
values = []
} = _ref;
const colorCollection = colors;
if (values.length === 0) {
values.push('transparent');
}
function $3df404698282d410$export$c6d89e41e42fa994({ prng: prng , group: group , values: values = [] }) {
const colorCollection = $9492c796f7790371$exports;
if (values.length === 0) values.push('transparent');
const key = prng.pick(values);
var _key;
return {
name: key,
value: (_key = colorCollection[group][key]) !== null && _key !== void 0 ? _key : key
};
}
const key = prng.pick(values);
return {
name: key,
value: (_colorCollection$grou = colorCollection[group][key]) !== null && _colorCollection$grou !== void 0 ? _colorCollection$grou : key
};
function $17fabc5b15636ca9$export$6cee60e8aa85e528({ prng: prng , options: options }) {
return {
skin: $3df404698282d410$export$c6d89e41e42fa994({
prng: prng,
group: 'skin',
values: options.skinColor
}),
hair: $3df404698282d410$export$c6d89e41e42fa994({
prng: prng,
group: 'hair',
values: options.hairColor
}),
accessories: $3df404698282d410$export$c6d89e41e42fa994({
prng: prng,
group: 'accessories',
values: options.accessoriesColor
}),
mouth: $3df404698282d410$export$c6d89e41e42fa994({
prng: prng,
group: 'mouth',
values: options.mouthColor
}),
clothes: $3df404698282d410$export$c6d89e41e42fa994({
prng: prng,
group: 'clothes',
values: options.clothesColor
}),
hat: $3df404698282d410$export$c6d89e41e42fa994({
prng: prng,
group: 'hat',
values: options.hatColor
}),
glasses: $3df404698282d410$export$c6d89e41e42fa994({
prng: prng,
group: 'glasses',
values: options.glassesColor
})
};
}
function getColors(_ref) {
let {
prng,
options
} = _ref;
return {
skin: pickColor({
prng,
group: 'skin',
values: options.skinColor
}),
hair: pickColor({
prng,
group: 'hair',
values: options.hairColor
}),
accessories: pickColor({
prng,
group: 'accessories',
values: options.accessoriesColor
}),
mouth: pickColor({
prng,
group: 'mouth',
values: options.mouthColor
}),
clothes: pickColor({
prng,
group: 'clothes',
values: options.clothesColor
}),
hat: pickColor({
prng,
group: 'hat',
values: options.hatColor
}),
glasses: pickColor({
prng,
group: 'glasses',
values: options.glassesColor
})
};
function $941a9b49e7d22ac3$export$19269755e7fb6f76({ prng: prng , options: options , preview: preview }) {
// Write your modifications here
}
const dimensions = {
beard: {
width: 20,
height: 20
},
eyes: {
width: 20,
height: 20
},
eyebrows: {
width: 20,
height: 20
},
mouth: {
width: 20,
height: 20
},
hair: {
width: 20,
height: 20
},
accessories: {
width: 20,
height: 20
},
glasses: {
width: 20,
height: 20
},
hat: {
width: 20,
height: 20
},
clothing: {
width: 20,
height: 20
}
};
const style = {
meta: {
title: 'Pixel Art',
creator: 'Plastic Jam',
license: {
name: 'MIT',
url: 'https://github.com/dicebear/dicebear/blob/main/packages/%40dicebear/pixel-art/LICENSE'
}
},
schema: schema$1,
create: _ref => {
var _components$beard$val, _components$beard, _components$eyes$valu, _components$eyes, _components$eyebrows$, _components$eyebrows, _components$mouth$val, _components$mouth, _components$hair$valu, _components$hair, _components$accessori, _components$accessori2, _components$glasses$v, _components$glasses, _components$hat$value, _components$hat, _components$clothing$, _components$clothing;
function $f60513f4ac692cea$export$2538c3cd8a13189f({ prng: prng , options: options , components: components , colors: colors , preview: preview }) {
// Write your modifications here
}
let {
prng,
options
} = _ref;
const components = getComponents({
prng,
options
});
const colors = getColors({
prng,
options
});
return {
attributes: {
viewBox: '0 0 20 20',
fill: 'none',
'shape-rendering': 'auto'
},
body: "<path d=\"M6 4V3h8v1h1v1h1v3h1v3h-1v2h-1v1h-1v1h-2v1h4v1h1v3H3v-3h1v-1h4v-1H6v-1H5v-1H4v-2H3V8h1V5h1V4h1Z\" fill=\"".concat(colors.skin.value, "\"/><path d=\"M6 3v1H5v1H4v3H3v3h1v2h1v1h1v1h8v-1h1v-1h1v-2h1V8h-1V5h-1V4h-1V3H6Z\" fill=\"#fff\" fill-opacity=\".1\"/>").concat((_components$beard$val = (_components$beard = components.beard) === null || _components$beard === void 0 ? void 0 : _components$beard.value(components, colors)) !== null && _components$beard$val !== void 0 ? _components$beard$val : '').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 : '').concat((_components$eyebrows$ = (_components$eyebrows = components.eyebrows) === null || _components$eyebrows === void 0 ? void 0 : _components$eyebrows.value(components, colors)) !== null && _components$eyebrows$ !== void 0 ? _components$eyebrows$ : '').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 : '').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 : '').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 : '').concat((_components$glasses$v = (_components$glasses = components.glasses) === null || _components$glasses === void 0 ? void 0 : _components$glasses.value(components, colors)) !== null && _components$glasses$v !== void 0 ? _components$glasses$v : '').concat((_components$hat$value = (_components$hat = components.hat) === null || _components$hat === void 0 ? void 0 : _components$hat.value(components, colors)) !== null && _components$hat$value !== void 0 ? _components$hat$value : '').concat((_components$clothing$ = (_components$clothing = components.clothing) === null || _components$clothing === void 0 ? void 0 : _components$clothing.value(components, colors)) !== null && _components$clothing$ !== void 0 ? _components$clothing$ : '')
};
},
preview: _ref2 => {
let {
prng,
options,
property
} = _ref2;
const componentGroup = property.toString();
const colorGroup = property.toString().replace(/Color$/, '');
const components = getComponents({
prng,
options
});
const colors = getColors({
prng,
options
});
if (componentGroup in components) {
var _components$component, _components$component2;
const {
width,
height
} = dimensions[componentGroup];
return {
attributes: {
viewBox: "0 0 ".concat(width, " ").concat(height),
fill: 'none',
'shape-rendering': 'auto'
},
body: (_components$component = (_components$component2 = components[componentGroup]) === null || _components$component2 === void 0 ? void 0 : _components$component2.value(components, colors)) !== null && _components$component !== void 0 ? _components$component : ''
};
const $de958a58f6be5a4f$export$62ad7b0c781000e9 = {
beard: {
width: 20,
height: 20
},
eyes: {
width: 20,
height: 20
},
eyebrows: {
width: 20,
height: 20
},
mouth: {
width: 20,
height: 20
},
hair: {
width: 20,
height: 20
},
accessories: {
width: 20,
height: 20
},
glasses: {
width: 20,
height: 20
},
hat: {
width: 20,
height: 20
},
clothing: {
width: 20,
height: 20
}
};
if (colorGroup in colors) {
return {
attributes: {
viewBox: "0 0 1 1",
fill: 'none',
'shape-rendering': 'auto'
},
body: "<rect width=\"1\" height=\"1\" fill=\"".concat(colors[colorGroup].value, "\" />")
};
const $27d7586a9a13fd48$export$1d567c320f4763bc = {
meta: {
title: 'Pixel Art',
creator: 'Plastic Jam',
license: {
name: 'MIT',
url: 'https://github.com/dicebear/dicebear/blob/main/packages/%40dicebear/pixel-art/LICENSE'
}
},
schema: (/*@__PURE__*/$parcel$interopDefault($057130024402ff2f$exports)),
create: ({ prng: prng , options: options })=>{
var ref, ref1, ref2, ref3, ref4, ref5, ref6, ref7, ref8;
$941a9b49e7d22ac3$export$19269755e7fb6f76({
prng: prng,
options: options,
preview: false
});
const components = $b40f5db0449f0b48$export$4e811121b221213b({
prng: prng,
options: options
});
const colors = $17fabc5b15636ca9$export$6cee60e8aa85e528({
prng: prng,
options: options
});
$f60513f4ac692cea$export$2538c3cd8a13189f({
prng: prng,
options: options,
components: components,
colors: colors,
preview: false
});
var ref9, ref10, ref11, ref12, ref13, ref14, ref15, ref16, ref17;
return {
attributes: {
viewBox: '0 0 20 20',
fill: 'none',
'shape-rendering': 'auto'
},
body: `<path d="M6 4V3h8v1h1v1h1v3h1v3h-1v2h-1v1h-1v1h-2v1h4v1h1v3H3v-3h1v-1h4v-1H6v-1H5v-1H4v-2H3V8h1V5h1V4h1Z" fill="${colors.skin.value}"/><path d="M6 3v1H5v1H4v3H3v3h1v2h1v1h1v1h8v-1h1v-1h1v-2h1V8h-1V5h-1V4h-1V3H6Z" fill="#fff" fill-opacity=".1"/>${(ref9 = (ref = components.beard) === null || ref === void 0 ? void 0 : ref.value(components, colors)) !== null && ref9 !== void 0 ? ref9 : ''}${(ref10 = (ref1 = components.eyes) === null || ref1 === void 0 ? void 0 : ref1.value(components, colors)) !== null && ref10 !== void 0 ? ref10 : ''}${(ref11 = (ref2 = components.eyebrows) === null || ref2 === void 0 ? void 0 : ref2.value(components, colors)) !== null && ref11 !== void 0 ? ref11 : ''}${(ref12 = (ref3 = components.mouth) === null || ref3 === void 0 ? void 0 : ref3.value(components, colors)) !== null && ref12 !== void 0 ? ref12 : ''}${(ref13 = (ref4 = components.hair) === null || ref4 === void 0 ? void 0 : ref4.value(components, colors)) !== null && ref13 !== void 0 ? ref13 : ''}${(ref14 = (ref5 = components.accessories) === null || ref5 === void 0 ? void 0 : ref5.value(components, colors)) !== null && ref14 !== void 0 ? ref14 : ''}${(ref15 = (ref6 = components.glasses) === null || ref6 === void 0 ? void 0 : ref6.value(components, colors)) !== null && ref15 !== void 0 ? ref15 : ''}${(ref16 = (ref7 = components.hat) === null || ref7 === void 0 ? void 0 : ref7.value(components, colors)) !== null && ref16 !== void 0 ? ref16 : ''}${(ref17 = (ref8 = components.clothing) === null || ref8 === void 0 ? void 0 : ref8.value(components, colors)) !== null && ref17 !== void 0 ? ref17 : ''}`
};
},
preview: ({ prng: prng , options: options , property: property })=>{
const componentGroup = property.toString();
const colorGroup = property.toString().replace(/Color$/, '');
$941a9b49e7d22ac3$export$19269755e7fb6f76({
prng: prng,
options: options,
preview: true
});
const components = $b40f5db0449f0b48$export$4e811121b221213b({
prng: prng,
options: options
});
const colors = $17fabc5b15636ca9$export$6cee60e8aa85e528({
prng: prng,
options: options
});
$f60513f4ac692cea$export$2538c3cd8a13189f({
prng: prng,
options: options,
components: components,
colors: colors,
preview: true
});
if (componentGroup in components) {
var ref;
const { width: width , height: height } = $de958a58f6be5a4f$export$62ad7b0c781000e9[componentGroup];
var ref18;
return {
attributes: {
viewBox: `0 0 ${width} ${height}`,
fill: 'none',
'shape-rendering': 'auto'
},
body: (ref18 = (ref = components[componentGroup]) === null || ref === void 0 ? void 0 : ref.value(components, colors)) !== null && ref18 !== void 0 ? ref18 : ''
};
}
if (colorGroup in colors) return {
attributes: {
viewBox: `0 0 1 1`,
fill: 'none',
'shape-rendering': 'auto'
},
body: `<rect width="1" height="1" fill="${colors[colorGroup].value}" />`
};
return undefined;
}
return undefined;
}
};
/*!
* Pixel Art (@dicebear/pixel-art)
*
* Code licensed under MIT License.
* Copyright (c) 2021 Florian Körner
* Copyright (c) 2021 Plastic Jam
*
* Design "Pixel Art" by Plastic Jam licensed under MIT.
* License: https://github.com/dicebear/dicebear/blob/main/packages/%40dicebear/pixel-art/LICENSE
*/
let {
create,
preview,
meta,
schema
} = style;
exports.create = create;
exports.meta = meta;
exports.preview = preview;
exports.schema = schema;
const { create: $7ce22e2aa4d8700d$export$185802fd694ee1f5 , preview: $7ce22e2aa4d8700d$export$48c2d0f2f545ac27 , meta: $7ce22e2aa4d8700d$export$6990040ee07315 , schema: $7ce22e2aa4d8700d$export$4902baddc787debb } = $27d7586a9a13fd48$export$1d567c320f4763bc;
//# sourceMappingURL=index.js.map
{
"name": "@dicebear/pixel-art",
"version": "5.0.0-alpha.6",
"version": "5.0.0-alpha.7",
"description": "Avatar style for DiceBear",

@@ -16,6 +16,6 @@ "keywords": [

"license": "MIT",
"browserslist": ">.25%, not IE > 0, not dead",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.es.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",

@@ -31,18 +31,23 @@ "files": [

"prebuild": "shx rm -rf dist",
"build": "dicebear-project build DiceBear.PixelArt"
"build": "npm-run-all build:*",
"build:schema": "json2ts src/schema.json src/options.ts",
"build:parcel": "parcel build"
},
"devDependencies": {
"@dicebear/core": "^5.0.0-alpha.6",
"@dicebear/core": "^5.0.0-alpha.7",
"@parcel/packager-ts": "^2.0.1",
"@parcel/transformer-typescript-types": "^2.0.1",
"@tsconfig/recommended": "^1.0.0",
"@types/jest": "^26.0.22",
"@types/node": "^10.11.6",
"dicebear-project": "^5.0.0-alpha.6",
"jest": "^26.6.3",
"json-schema-to-typescript": "^10.1.5",
"npm-run-all": "^4.1.5",
"parcel": "^2.0.1",
"shx": "^0.3.3",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3",
"utility-types": "^3.10.0"
"typescript": "^4.5.2"
},
"peerDependencies": {
"@dicebear/core": "^5.0.0-alpha.5"
"@dicebear/core": "^5.0.0-alpha.6"
},

@@ -52,3 +57,3 @@ "publishConfig": {

},
"gitHead": "d6c8c12102c3aa2071e6795972574ccd4a40b8b7"
"gitHead": "39873c5556400a5cba342abce15a376470613d19"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc