diff --git a/.vscode/settings.json b/.vscode/settings.json index 04e5d6b..7f69281 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,4 +2,4 @@ "editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit" } -} \ No newline at end of file +} diff --git a/nuxt.config.ts b/nuxt.config.ts index 80c5bd3..b636569 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -11,6 +11,12 @@ export default defineNuxtConfig({ } }, + vite: { + server: { + allowedHosts: ['pretendo.network'] + } + }, + modules: [ '@pinia/nuxt', '@nuxt/eslint', @@ -188,6 +194,9 @@ export default defineNuxtConfig({ strategy: 'no_prefix', defaultLocale: 'en-US', vueI18n: '../i18n.config.ts', + bundle: { + optimizeTranslationDirective: false + }, locales: [ { code: 'ar-AR', name: 'العربية', file: 'ar_AR.json' }, { code: 'ast', name: 'Asturianu', file: 'ast.json' }, diff --git a/package.json b/package.json index 78adcb7..7068cee 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,7 @@ "build": "nuxt build", "prepare": "nuxt prepare", "dev": "nuxt dev", + "dev:host": "nuxt dev --host", "lint": "eslint .", "lint:fix": "eslint . --fix" }, @@ -23,7 +24,9 @@ "@pinia/nuxt": "^1.0.1", "@pretendonetwork/error-codes": "^1.2.2", "@pretendonetwork/grpc": "^2.5.4", + "@pretendonetwork/mii-js": "^1.0.9", "@vueuse/core": "^14.4.0", + "base64-arraybuffer": "^1.0.2", "better-sqlite3": "^12.11.1", "discord-api-types": "^0.38.53", "eslint": "^9.39.5", @@ -32,15 +35,20 @@ "mongodb": "^7.5.0", "nice-grpc": "^2.1.17", "nodemailer": "^9.0.5", + "node-stdlib-browser": "^1.2.0", "nuxt": "^4.5.2", "octokit": "^5.0.5", "papr": "^17.1.1", "reka-ui": "^2.10.3", "stripe": "^22.4.0", + "vue": "^3.5.13", "vue-router": "^5.2.0", "zod": "^4.4.3" }, + "overrides": { + "vite": "^6.3.2" + }, "devDependencies": { "@iconify-json/fa7-brands": "^1.2.4", "@iconify-json/ph": "^1.2.2", diff --git a/src/assets/css/main.css b/src/assets/css/main.css index 82e1050..e83ce79 100644 --- a/src/assets/css/main.css +++ b/src/assets/css/main.css @@ -23,6 +23,7 @@ --green-shade-0: #37a985; --green-shade-1: #59c9a5; + --red-shade-2: #ff4580; --red-shade-1: #a9375b; --yellow-shade-1: #ffd966; @@ -38,7 +39,7 @@ body, width: 100%; max-width: 100vw; position: relative; /* This fixes overflow-x not hiding on Safari on mobile */ - overflow-x: hidden; + overflow: hidden; margin: 0; color: var(--text-shade-3); justify-content: center; @@ -236,11 +237,11 @@ input[type="range"] { input[type="range"]::-webkit-slider-runnable-track { background: var(--bg-shade-3); height: 1rem; - border-radius: 1rem; + border-radius: .25rem; } input[type="range"]::-moz-range-track { background: var(--bg-shade-3); - border-radius: 1rem; + border-radius: .25rem; height: 1rem; } input[type="range"]::-webkit-slider-thumb { @@ -248,15 +249,15 @@ input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 1.5rem; height: 3rem; - margin-top: -1rem; + margin-top: -1.25rem; background-color: var(--accent-shade-1); - border-radius: 0.5rem; + border-radius: .5rem; } input[type="range"]::-moz-range-thumb { width: 1.5rem; height: 3rem; border: none; - border-radius: 0.5rem; + border-radius: .5rem; background-color: var(--accent-shade-1); } input[type="range"]:focus { diff --git a/src/components/BirthdaySetter/BirthdaySetter.vue b/src/components/BirthdaySetter/BirthdaySetter.vue new file mode 100644 index 0000000..3171e89 --- /dev/null +++ b/src/components/BirthdaySetter/BirthdaySetter.vue @@ -0,0 +1,317 @@ + + + + + diff --git a/src/layouts/slotOnly.vue b/src/layouts/slotOnly.vue new file mode 100644 index 0000000..96f2e96 --- /dev/null +++ b/src/layouts/slotOnly.vue @@ -0,0 +1,5 @@ + diff --git a/src/locales/en_US.json b/src/locales/en_US.json index 7ed9fdb..a499b73 100644 --- a/src/locales/en_US.json +++ b/src/locales/en_US.json @@ -418,6 +418,21 @@ "progress": "${totd} of ${goald}/month, {perc}% of the monthly goal.", "upgradePush": "To become a subscriber and gain access to cool perks, visit the upgrade page." }, + "miiEditor": { + "nickname":"Nickname", + "creator": "Creator", + "birthday": "Birthday", + "clickToSet": "Click to set", + "favorite": "Favorite", + "sharing": "Sharing", + "copying": "Copying", + "save": "Save", + "saveCaption": "Saving your Mii will kill the previous one.", + "noCanvas": "Your browser does not support the canvas element.", + "corruptedData": "Found corrupted Mii data. Would you like to start from scratch?", + "miiSaved": "Your Mii has been updated! Changes may take some time to reflect across all platforms and services.", + "loading": "Loading Mii editor..." + }, "localizationPage": { "title": "Let's localize", "description": "Paste a link to a publicly accessible JSON locale to test it on the website", diff --git a/src/pages/account/miieditor/index.vue b/src/pages/account/miieditor/index.vue new file mode 100644 index 0000000..c0a3fda --- /dev/null +++ b/src/pages/account/miieditor/index.vue @@ -0,0 +1,1412 @@ + + + + + diff --git a/src/public/assets/images/miieditor.svg b/src/public/assets/images/miieditor.svg index 32f0db5..1993f84 100644 --- a/src/public/assets/images/miieditor.svg +++ b/src/public/assets/images/miieditor.svg @@ -1,10186 +1,9778 @@ - - + xmlns:svg="http://www.w3.org/2000/svg"> - Pretendo Network - Mii Maker Elements + inkscape:current-layer="svg738" /> - - - - - - NinStar (design), limes.pink (layout) - - - 2022 - Pretendo Network - Mii Maker Elements - - - - + id="defs738"> + + + + + + + + + + + + + + + + + + + transform="translate(-144.0001836 191.9998568) scale(.7500008)" /> + id="subtab-eyebrowType" + d="M38.391224 328.78155c-.402278.001-.847854.0668-1.343327.20523a.43421497.4342385 0 0 0-.041.0153c-.576068.22485-.849154.72713-.944648 1.11432-.095.3872-.053.72084-.053.72084a.43421497.4342385 0 0 0 .642766.32564c1.156837-.6469 1.853099-.71378 2.39647-.61567.54327.0981.981247.4064 1.575614.64112a.43421497.4342385 0 0 0 .537671-.61568c-.252786-.45231-.562569-.89979-1.012545-1.23983-.450075-.34005-1.039843-.5546-1.758805-.55123zm7.218009 0c-.718861-.004-1.308729.21119-1.758704.55123-.450076.34005-.759759.78753-1.012546 1.23982a.43421497.4342385 0 0 0 .537671.61568c.594368-.2347 1.032244-.54301 1.575615-.64111.54327-.0981 1.239633-.0313 2.39647.61567a.43421497.4342385 0 0 0 .642665-.32565s.043-.33363-.053-.72083c-.09499-.38719-.36858-.88946-.944649-1.11432a.43421497.4342385 0 0 0-.041-.0153c-.495374-.13835-.941049-.20326-1.343228-.20522z" + style="color:#000;display:inline;fill:#cab1fb;stroke-width:.999973;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" /> + id="subtab-position" + d="M162.0003 323.99985c-.032-.00002-.064.005-.097.0132-.063.0167-.1206.0495-.167.0952l-1.774 1.752c-.2381.23564-.071.64149.2637.64161h.5655v2.28958h-2.2896v-.56543c-.0002-.335-.406-.50179-.6416-.26368l-1.752 1.77395c-.1444.14611-.1444.38124 0 .52735l1.752 1.77396c.2356.23811.6415.0713.6416-.26368v-.56543h2.2896v2.28958h-.5655c-.335.00012-.5018.40596-.2637.64161l1.774 1.75199c.1461.14445.3813.14445.5274 0l1.774-1.75199c.2381-.23565.071-.64149-.2637-.64161h-.5655v-2.28958h2.2896v.56543c.0001.335.406.50179.6416.26368l1.752-1.77396c.1444-.14611.1444-.38124 0-.52735l-1.752-1.77395c-.2356-.23811-.6415-.0713-.6416.26368v.56543h-2.2896v-2.28958h.5655c.335-.00012.5018-.40597.2637-.64161l-1.774-1.752c-.071-.07-.1665-.10835-.2637-.1084z" + style="color:#000;display:inline;fill:#cab1fb;stroke-width:.750013;stroke-linecap:round;stroke-linejoin:round" /> + transform="matrix(.7500008 0 0 .75618465 -168.0001796 215.1094106)" /> + id="subtab-eyeType" + d="M50.248147 328.21855c-.8287.00075-1.6054.23702-2.113.7446a.4615436.4615436 0 0 0 0 .65265.4615436.4615436 0 0 0 .6526 0c.2301-.23014.7682-.42844 1.3739-.46154-.4587.22676-.7771.70021-.7771 1.2422 0 .75924.6254 1.38463 1.3846 1.38463.7593 0 1.3846-.62539 1.3846-1.38463 0-.31255-.1054-.60185-.283-.83475.3297.20354.608.48569.7932.85639a.4615436.4615436 0 0 0 .6185.20733.4615436.4615436 0 0 0 .2073-.61841c-.5441-1.0882-1.6271-1.62293-2.6629-1.75241-.1942-.0243-.3875-.0364-.5788-.0361zm7.5037 0c-.1913-.00027-.3846.0118-.5788.0361-1.0358.12947-2.1188.66421-2.6629 1.75241a.4615436.4615436 0 0 0 .2073.61841.4615436.4615436 0 0 0 .6185-.20734c.1853-.37069.4635-.65284.7932-.85638-.1776.23289-.283.52219-.283.83474 0 .75924.6253 1.38464 1.3846 1.38464.7593 0 1.3846-.6254 1.3846-1.38464 0-.54199-.3184-1.01544-.7771-1.24219.6057.0331 1.1438.23139 1.3739.46154a.4615436.4615436 0 0 0 .6526 0 .4615436.4615436 0 0 0 0-.65266c-.5076-.50757-1.2843-.7434-2.1129-.7446z" + style="color:#000;display:inline;fill:#cab1fb;stroke-width:.999998;stroke-linecap:round;-inkscape-stroke:none" /> + id="subtab-noseType" + d="M67.39976 326.37532a.81449623.81449623 0 0 0-.9958.57588c-.2645.9868-.6767 1.54518-1.1168 2.06487-.4401.51969-.9904 1.00235-1.2154 1.84215v.01l-.01.0131c-.1946.82003.077 1.70827.7254 2.22715.648.51887 1.5712.66439 2.5739.44544a.81449623.81449623 0 0 0 .6204-.96724.81449623.81449623 0 0 0-.9703-.62358c-.6564.14335-1.0356.01-1.2058-.12722-.1674-.13407-.2222-.27681-.156-.56952.078-.27393.3828-.61133.8782-1.19629.5006-.59122 1.1052-1.42866 1.4444-2.69483a.81449623.81449623 0 0 0-.5758-.99903z" + style="color:#000;display:inline;fill:#cab1fb;stroke-width:.999999;stroke-linecap:round;-inkscape-stroke:none" /> + id="subtab-mouthType" + style="display:inline;stroke-width:.599834"> + id="path3" + d="M1044.8 138.99954c1.7918 1.40163 4.792 1.47473 6.5 0" + style="color:#000;fill:#000;stroke-width:.599834px;-inkscape-stroke:none" + transform="translate(-1669.2511 96.217505) scale(1.6671287)" /> + id="path4" + d="M309.99414 154.18945c-.12873.005-.25069.0222-.36523.0508-.3375.0844-.60713.24884-.79883.44532-.16917.17338-.29488.35849-.32227.61133a.5.5 0 0 0-.043.27148c.46372 3.35845 6.18299 3.82541 7.17774.0586a.5.5 0 0 0-.15625-.50586c-.13515-.19917-.29344-.31514-.50391-.48828-.26316-.21649-.47019-.24542-.65234-.33398-.5828-.16325-1.37722-.004-2.32422.55469-.76814-.47416-1.45387-.68415-2.01172-.66407zm-.31055 1.90625c1.45234.62952 3.1919.67892 4.63868.0801-1.09839 1.66742-3.8084 1.3646-4.63868-.0801z" + style="color:#000;fill:#cab1fb;stroke-width:.599834;-inkscape-stroke:none" + transform="translate(-442.2443768 69.54347914) scale(1.6671287)" /> + id="subtab-glassesType" + style="display:inline;fill:#cab1fb;stroke-width:1.08333"> + id="path5" + d="M324.5 147.5c-1.65093 0-3 1.34907-3 3s1.34907 3 3 3c1.48053 0 2.7173-1.08535 2.95703-2.5h1.08594c.23973 1.41465 1.4765 2.5 2.95703 2.5 1.65093 0 3-1.34907 3-3s-1.34907-3-3-3c-1.48053 0-2.7173 1.08535-2.95703 2.5h-1.08594c-.23973-1.41465-1.4765-2.5-2.95703-2.5zm0 1c1.11049 0 2 .88951 2 2s-.88951 2-2 2-2-.88951-2-2 .88951-2 2-2zm7 0c1.11049 0 2 .88951 2 2s-.88951 2-2 2-2-.88951-2-2 .88951-2 2-2z" + style="color:#000;fill:#cab1fb;stroke-width:1.08333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:markers stroke fill" + transform="translate(-212.7695476 191.07701) scale(.92307791)" /> + id="subtab-beardType" + d="M101.99686 327.308c-1.6709 0-2.836801.8647-4.052401 2.04766-.3768-.50266-.7041-1.04419-.8823-1.6475a.28111899.28111899 0 0 0-.2694-.20105h-.5115a.28111899.28111899 0 0 0-.2751.33964c.5858 2.76274 2.9975 4.76733 5.828701 4.84492a.28111899.28111899 0 0 0 .01 0h.3005a.28111899.28111899 0 0 0 .01 0c2.8342-.074 5.252-2.07926 5.8385-4.84492a.28111899.28111899 0 0 0-.2753-.33964h-.5114a.28111899.28111899 0 0 0-.2693.20105c-.1792.5967-.5065 1.13054-.8804 1.62799-1.0786-1.17556-2.3942-2.02815-4.0543-2.02815zm0 1.15364c.755 0 1.7937.43932 2.3716.94868.2891.25468.4473.52033.4627.69297.015.17263-.041.31764-.406.49972-.4071.2028-.6572.25442-.7477.24985-.045-.002-.047-.008-.049-.01 0-.002-.01-.01-.023-.0449-.027-.0705-.044-.22739-.074-.40407-.03-.17667-.084-.41047-.2987-.56218a.28111899.28111899 0 0 0-.162-.0508h-2.1472a.28111899.28111899 0 0 0-.2128.0976c-.164.18927-.2061.40822-.2342.58559-.028.17738-.049.32778-.072.38065-.012.0264-.015.0242-.014.0234 0-.00078-.01.009-.059.008-.1047-.002-.363301-.0692-.773001-.27327-.3653-.18204-.4199-.32714-.4041-.49972.016-.17259.1764-.43816.4665-.69297.580401-.50963 1.620801-.94868 2.375701-.94868z" + style="color:#000;display:inline;fill:#cab1fb;stroke-width:.562182;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" /> + id="subtab-mustacheType" + d="M108.19788 331.28951c1.9271-5.78134 9.6355-5.78134 11.5627 0 0 0 1.2279 3.95231-1.8772 0-.05 1.92712-1.977 1.92712-4.1718 0-1.6595 1.92712-3.5866 1.92712-3.5866 0-3.0369 3.84098-1.9271 0-1.9271 0z" + style="display:inline;fill:#cab1fb;stroke:none;stroke-width:.750002px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" /> + ry="2.5309155" + style="display:inline;fill:#cab1fb;stroke:#cab1fb;stroke-width:.750001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers stroke fill" /> + id="subtab-gender" + d="M138.38008 324.72998c-.12222-.00075-.24463-.00049-.36914.005-3.0368.31322-4.9951 1.41087-6.0109 5.3833-.0004.0869.031.17086.089.23584l1.26142 1.41064c.22273.25192.63827.0792.61677-.25634-.068-1.17627.093-1.78205.23142-1.97461.069-.0963.10511-.10816.16852-.11572.019-.002.065.019.092.022v5.41689c.0003.24325.24082.4133.47024.33252 1.54746-.54611 2.21862-.45102 2.99-.26953.77138.18149 1.66127.48099 3.30943.28711.17772-.0208.31183-.1712.31203-.3501v-5.417c.027-.003.073-.0243.092-.022.064.008.099.0194.16852.11571.13841.19257.29983.79835.23142 1.97462-.022.33558.39404.50826.61676.25634l1.26143-1.41064c.058-.065.089-.14895.089-.23583-.47825-3.02512-2.88029-5.34708-5.62146-5.38767z" + style="color:#000;display:inline;fill:#cab1fb;stroke-width:.705918px;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" /> + id="tab-faceType" + d="M6.0007304 312.00001A6.0003077 6.0000089 0 0 0 4e-7 318.00002a6.0003077 6.0000089 0 0 0 6.00073 6 6.0003077 6.0000089 0 0 0 5.9992796-6 6.0003077 6.0000089 0 0 0-5.9992796-6.00001zm-2.25373 3.47753c.0114-.00058.0218 0 .0333 0h.0159c.37054 0 .66915.30056.66915.67531v1.45751c0 .37476-.29861.67677-.66915.67677h-.0159c-.37055 0-.66772-.30201-.66772-.67677v-1.45751c0-.36302.28003-.65725.6344-.67531zm4.42344 0c.0114-.00058.0217 0 .0333 0h.0159c.37054 0 .66916.30056.66916.67531v1.45751c0 .37476-.29862.67677-.66916.67677h-.0159c-.37055 0-.66771-.30201-.66771-.67677v-1.45751c0-.36302.28002-.65725.63439-.67531zm-.12312 4.79006a.60333832.61018765 0 0 1 .42584.17724.60333832.61018765 0 0 1 0 .86134c-.65393.66133-1.57078.95507-2.47243.95507-.90164 0-1.8185-.29374-2.47243-.95507a.60333832.61018765 0 0 1 0-.86134.60333832.61018765 0 0 1 .35775-.17431.60333832.61018765 0 0 1 .49392.17431c.3695.3737.98728.5962 1.62076.5962.63349 0 1.25127-.2225 1.62076-.5962a.60333832.61018765 0 0 1 .42583-.17724z" + style="display:inline;fill:#fff;fill-opacity:1;stroke:none;stroke-width:1.35597;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + id="tab-miisc" + style="display:inline;fill:#fff;stroke:#fff;stroke-width:.975086"> + id="path6" + d="M1028.75 132.00004s1.1 3.42864 2.75 4.00007c-1.65 1.14288-2.75 4.00007-2.75 4.00007s-1.1001-2.85719-2.7501-4.00007c1.65-.57143 2.7501-4.00007 2.7501-4.00007z" + style="fill:#fff;stroke:#fff;stroke-width:.975086;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;paint-order:markers stroke fill" + transform="matrix(.95805622 0 0 .87892722 -874.49855 198.43169)" /> + id="path7" + d="M1036.1251 138.50004s.55 1.71431 1.375 2.00003c-.825.57143-1.375 2.00002-1.375 2.00002s-.55-1.42859-1.375-2.00002c.825-.28572 1.375-2.00003 1.375-2.00003z" + style="display:inline;fill:#fff;stroke:#fff;stroke-width:.73131;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;paint-order:markers stroke fill" + transform="matrix(.95805622 0 0 .87892722 -874.49855 198.43169)" /> + id="path8" + d="M1035.625 129.69985s.77 2.40011 1.925 2.80012c-1.155.80004-1.925 2.80013-1.925 2.80013s-.7701-2.00009-1.9251-2.80013c1.155-.40001 1.9251-2.80012 1.9251-2.80012z" + style="display:inline;fill:#fff;stroke:#fff;stroke-width:.975086;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;paint-order:markers stroke fill" + transform="matrix(.95805622 0 0 .87892722 -874.49855 198.43169)" /> + id="path9" + d="M984.00021 128c-4.33346.007-7.8735 3.463-7.98458 7.79492 1.53808.19327 3.07666-.35395 4.43761-.81836.51317-.58172 1.00585-1.45659 1.28714-2.72656 0 0 .49143.88371.43752 1.81641 1.61792-1.07599 2.92536-2.68031 3.96494-5.07227 1.66164 3.54371 1.88887 5.52347 5.83999 7.24609.007-.08.0137-.16007.0175-.24023 0-4.41828-3.58181-8-8.0002-8zm2.02153 3.19922c-1.71153 3.59637-5.74586 5.48634-9.96119 5.65039.43369 4.06046 3.85601 7.14258 7.93966 7.15039 3.93697-.003 7.28634-2.87048 7.89668-6.75977-3.80813-1.14957-5.22534-3.73629-5.87515-6.04101z" + style="fill:#fff;fill-opacity:1;stroke:none;stroke-width:1.3353;stroke-linecap:round;stroke-linejoin:round;paint-order:markers stroke fill" + transform="matrix(.75071787 0 0 .75 -720.71238 216)" /> - - - - - - - + id="tab-eyebrowType" + fill="#fff" + d="M30 312c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.7-6-6-6zm-1.2 5.4c-1.3-.7-2.4-.6-3.4 0-.2.1-.5 0-.6-.3v-.6c.1-.3.3-.8.8-1 .4-.1.8-.2 1.2-.2 1.2 0 1.8.7 2.4 1.5.2.4-.1.8-.4.6zm5.8 0c-1.3-.8-2.3-.5-3.4 0-.3.1-.6-.2-.5-.5.5-1.1 1.4-1.3 2.4-1.5.3 0 .7.1 1.2.2.5.2.7.6.8 1 .1.3 0 .6 0 .6 0 .2-.2.3-.5.2z" /> + + + + + + + + + + + + + + + transform="translate(-2796 436)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path14" + d="M2804.4974-130.92102v-6.09839l-.8762 2.61359s-.8762 4.356-3.5046 1.7424c-1.7525-2.6136 1.7523-3.4848 1.7523-3.4848s1.8192-3.55049 3.5046-4.35599c1.5794-.75479 3.6776-.75479 5.257 0 1.6855.8055 3.5047 4.35599 3.5047 4.35599s3.5047.8712 1.7524 3.4848c-2.6286 2.6136-3.5047-1.7424-3.5047-1.7424l-.8762-2.61359v6.09839z" + style="fill:#cab1fb;stroke:#fff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /> + transform="translate(-2804 436)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path15" + d="m2833.8689-131.45678 3.5046-6.99084-1.7523 2.62156s-.8761 4.36928-3.5046 1.74771c-1.7524-2.62156 1.7523-3.49542 1.7523-3.49542s1.8192-3.56131 3.5046-4.36928c1.5794-.75709 3.6777-.75709 5.257 0 1.6855.80797 3.5047 4.36928 3.5047 4.36928s3.5047.87386 1.7523 3.49542c-2.6284 2.62157-3.5046-1.74771-3.5046-1.74771l-1.7524-2.62156 3.5047 6.99084c-3.5047 2.62157-8.7617 2.62157-12.2663 0z" + style="display:inline;fill:#cab1fb;stroke:#fff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + id="subtab-color" + d="M149.7188 324.00002c-2.9035.006-5.7188 1.53931-5.7188 5.19936 0 5.28937 3.75 6.80062 4.5 6.80062 1.8459 0 1.0299-1.95794 2.1914-3.6084 1.0632-1.51066 5.3086 2.09715 5.3086-3.94784 0-2.72734-3.1905-4.45049-6.2812-4.44374zm.6914 1.18806a1.1250012 1.1334378 0 0 1 1.0591.83974 1.1250012 1.1334378 0 0 1-.7955 1.38875 1.1250012 1.1334378 0 0 1-1.3769-.80136 1.1250012 1.1334378 0 0 1 .7954-1.38876 1.1250012 1.1334378 0 0 1 .3179-.0384zm-3.0352.99323a1.1250012 1.1334378 0 0 1 1.0606.83975 1.1250012 1.1334378 0 0 1-.7955 1.38727 1.1250012 1.1334378 0 0 1-1.3784-.80137 1.1250012 1.1334378 0 0 1 .7955-1.38728 1.1250012 1.1334378 0 0 1 .3178-.0384zm5.9576.37781a1.1250012 1.1334378 0 0 1 1.0605.83975 1.1250012 1.1334378 0 0 1-.7954 1.38876 1.1250012 1.1334378 0 0 1-1.3784-.80286 1.1250012 1.1334378 0 0 1 .7953-1.38728 1.1250012 1.1334378 0 0 1 .318-.0384zm-7.0254 2.60779a1.1250012 1.1334378 0 0 1 1.0605.83975 1.1250012 1.1334378 0 0 1-.7954 1.38876 1.1250012 1.1334378 0 0 1-1.3785-.80286 1.1250012 1.1334378 0 0 1 .7954-1.38728 1.1250012 1.1334378 0 0 1 .318-.0384z" + style="display:inline;fill:#cab1fb;stroke:none;stroke-width:.752808px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + transform="translate(-2516 324)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + id="path16" + d="m2552.944-69.359714.9447.77563.4972-.929771 1.1535.497211c-.4919-2.016733-1.6933-3.187083-3.5376-3.187083-1.8443 0-3.1179 1.340817-3.5376 3.201993l1.1535-.497201.4972.929771.9447-.77564.9422.986951z" + style="fill:#181b33;fill-opacity:1;stroke-width:.497204" /> + transform="translate(-2524 324)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + id="path17" + d="M2583.5646-71.498063a6.817351 6.817351 0 0 0-3.6522 1.321732l.5864.71056a6.0521381 6.0521381 0 0 1 3.0658-1.108071zm.8845 0a6.817351 6.817351 0 0 1 3.6522 1.321732l-.5864.71056a6.0521381 6.0521381 0 0 0-3.0658-1.108071z" + style="fill:#181b33;fill-opacity:1;stroke-width:.496892" /> + transform="translate(-2532 324)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fafafe;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + id="path18" + d="M2616.0119-72.586569c-2.7297 0-4.0223 1.612127-4.0223 3.324443 0 .804134.2168 1.675996 1.1882 2.318193 0-2.230499-.096-4.578625 2.8341-4.578625 2.9296 0 2.834 2.05646 2.834 4.578625.9714-.642197 1.1637-1.469534 1.1637-2.191451 0-1.861872-1.268-3.451185-3.9977-3.451185z" + style="fill:#181b33;fill-opacity:1;stroke-width:.497204" /> + transform="translate(-2540 324)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fafafe;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + id="path19" + d="m2651.8568-69.875566.522-.811061c-1.1887-1.097786-2.8316-1.585902-4.3862-1.584842-1.5488.0011-3.1835.491792-4.3676 1.584842l.522.825041c1.2336-.679792 2.5242-.959547 3.8456-.962551 1.3263-.003 2.6833.430484 3.8642.948571z" + style="fill:#181b33;fill-opacity:1;stroke-width:.466128" /> + transform="translate(-2548 324)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fafafe;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + id="path20" + d="M2677.7098-68.623855c.3271.796901.8263 1.511679 1.4618 2.093223l.8303-.711001.8303.711001c.6356-.581544 1.1348-1.296322 1.4619-2.093223-1.5724.201108-3.1019.22254-4.5843 0z" + style="fill:#181b33;fill-opacity:1;stroke-width:.497204" /> + transform="translate(-2516 364)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + id="path21" + d="m2552.0067-130.74221 1.3515-1.16272.5963 1.16272.4671 2.37514a6.757724 6.757724 0 0 1-2.4149.40745 6.757724 6.757724 0 0 1-2.4149-.40745l.4671-2.37514.5963-1.16272z" + style="display:inline;fill:#181b33;stroke-width:.496892" /> + transform="translate(-2524 364)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + id="path22" + d="m2584.0069-130.1466 1.0435.91428 1.3167-1.14285.964.75527 2.261-.66086s-.3827.38757-1.2224 1.39129a16.491828 16.491828 0 0 1-1.5405 1.58012l-.5813-.44721-.7056.89441-.6857-.53167-.8497.84471-.8447-.84471-.6907.56645-.7056-.8944-.5813.4472a16.491828 16.491828 0 0 1-1.5404-1.60993c-.8397-.99378-1.2224-1.39129-1.2224-1.39129l2.2609.66086.964-.76024 1.3167 1.14285z" + style="fill:#181b33;stroke-width:.496892" /> + transform="translate(-2532 364)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + id="path23" + d="m2616.007-130.07704 1.1329.77515.8249-.90931 1.1776.61615a6.2508947 6.2508947 0 0 0 1.9478-1.49067 9.674477 9.674477 0 0 0 1.3814-2.48447l1.0782.36273a8.8794506 8.8794506 0 0 1-2.0522 4.58135c-1.3813 1.67949-3.8161 2.48445-3.8161 2.48445l-.7503-.61118-.9242.89938-.9242-.94906-.7503.61117s-2.4348-.78012-3.8161-2.48445a8.8446682 8.8446682 0 0 1-2.0472-4.58135l1.0782-.33788a9.674477 9.674477 0 0 0 1.3814 2.48446 6.2508947 6.2508947 0 0 0 1.9478 1.49067l1.1826-.61614.8199.90931z" + style="fill:#181b33;stroke-width:.496892" /> + transform="translate(-2540 364)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + id="path24" + d="M2654.1461-134.57972s-.7857 2.85554-2.6793 3.198c-1.677.32232-2.1454-.50362-2.1454-.50362h-2.6037s-.4634.84104-2.1454.50362c-1.8886-.36261-2.6793-3.198-2.6793-3.198h-.5993a6.8593086 6.8593086 0 0 0 13.4164 0z" + style="fill:#181b33;stroke-width:.503621" /> + transform="translate(-2548 364)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + id="path25" + d="M2686.7549-136.25837h-.7851a5.0235728 5.0235728 0 0 1-.636 1.93788c-.2187.27825-1.1329 1.08819-2.0174.37266-1.2969-1.05341-3.3094-.98384-3.3094-.98384s-1.9876-.0696-3.2894.959c-.8845.71552-1.7988-.0944-2.0174-.37267a5.0235728 5.0235728 0 0 1-.6559-1.91303h-.7851v.27826a6.8521334 6.8521334 0 0 0 6.7478 6.73288 6.8521334 6.8521334 0 0 0 6.7628-6.75772c0-.0944-.01-.18882-.015-.25342zm-4.0646 4.11924a1.0583788 1.0583788 0 0 1-.9938 0c-.2236-.19876-.3677-.86957-.4223-.8497h-2.5243c-.055 0-.1988.65094-.4174.8497a1.0683166 1.0683166 0 0 1-.9938 0c-.2783-.21864-.4969-.4969-.1044-1.06336.7404-1.1031 2.6584-1.04347 2.7876-1.0385.1292.005 2.0473-.0646 2.7877 1.0385.3627.56646.1788.84472-.1193 1.06336z" + style="fill:#181b33;stroke-width:.496892" /> + transform="translate(-2508 324)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + transform="translate(-2508 364)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + transform="translate(-724 116)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + d="M910.50688-97.589834c.62596-1.1702.85743-4.795216.85743-6.709166-.003-4.01935-3.29911-7.27619-7.3643-7.27619-4.06518 0-7.36147 3.25684-7.36431 7.27619 0 1.91395.24195 5.538966.86794 6.709166C900-96 908-96 910.50688-97.589834Z" + style="display:inline;fill:#cab1fb;stroke:#fff;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + transform="translate(31.99911 32.500238) scale(1.0000011)"> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path29" + d="M870-133c1 1 3 1 4 0" + style="display:inline;fill:none;stroke:#673db6;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + transform="translate(-756 116)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + d="m1034.4092-95.52252 3.4822-2.2832c-.019-.987025-.054-1.765505.1086-3.19428.1629-1.42877.6857-3.13522.6857-4.04539 0-4.10352-2.6301-7.43209-6.6857-7.43209s-6.6857 3.32857-6.6857 7.43209c0 .91017.5227 2.61661.6857 4.04539.163 1.428776.1278 2.207255.1086 3.19428l3.4822 2.2832z" + style="display:inline;fill:#cab1fb;stroke:#fff;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + transform="translate(159.99925 32.500238) scale(1.0000011)"> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path32" + d="M870-133c1 1 3 1 4 0" + style="display:inline;fill:none;stroke:#673db6;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + transform="translate(-860 148)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + d="M872-143.69735c-4.07666 0-7.00134 3.27137-6.76463 7.28128.23145 3.93188 5.88092 8.11342 6.76463 8.11342.88372 0 6.53319-4.16073 6.76464-8.09782.2367-4.02551-2.68797-7.29688-6.76464-7.29688z" + style="display:inline;fill:#cab1fb;stroke:#fff;stroke-width:1.24999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + id="g35" + transform="translate(-.00092413 .00020691) scale(1.0000011)"> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path35" + d="M870-133c1 1 3 1 4 0" + style="display:inline;fill:none;stroke:#673db6;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + transform="translate(-868 148)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + - - - - - - + id="g38" + style="display:inline" + transform="translate(31.999135 .00020691) scale(1.0000011)"> + + + + transform="translate(-876 148)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + d="M936-127.43126c2.21252 0 6.80146-5.85475 6.80146-9.50726 0-3.65251-2.7248-7.63493-6.80146-7.63493-4.07666 0-6.80146 3.61965-6.80146 7.63493s4.58894 9.50726 6.80146 9.50726z" + style="display:inline;fill:#cab1fb;stroke:#fff;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + transform="translate(63.999169 .40020368) scale(1.0000011)"> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path41" + d="M870-133c1 1 3 1 4 0" + style="display:inline;fill:none;stroke:#673db6;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + transform="translate(-884 148)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + d="M967.99997-144.5711c-4.07664 0-6.80143 3.41699-6.80143 7.63493s2.90489 9.50725 6.80143 9.50726c3.89655.00001 6.80148-5.29453 6.80148-9.50726 0-4.21273-2.72481-7.63493-6.80148-7.63493z" + style="display:inline;fill:#cab1fb;stroke:#fff;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + transform="translate(95.999199 .65020395) scale(1.0000011)"> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path44" + d="M870-133c1 1 3 1 4 0" + style="display:inline;fill:none;stroke:#673db6;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + transform="translate(-900 148)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + d="M1037.3496-130.83104c1.3361-1.00897 2.0147-2.56924 2.0147-4.70162.01-4.02603-3.2924-7.29328-7.3643-7.29328-4.0719 0-7.371 3.26725-7.3643 7.29328 0 2.15318.6891 3.66664 2.0252 4.68082C1029-129 1035-129 1037.3496-130.83104Z" + style="display:inline;fill:#cab1fb;stroke:#fff;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + transform="translate(159.99925 .700204) scale(1.0000011)"> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path47" + d="M870-133c1 1 3 1 4 0" + style="display:inline;fill:none;stroke:#673db6;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + transform="translate(-892 148)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + d="M1006.9067-136.91016c0-4.02029-2.851-6.7976-6.91722-6.80798-4.0661 0-6.91717 2.78769-6.91717 6.80798 0 1.89312-1.82529 4.4676-.42081 6.42312 2.82393 3.32843 11.6027 3.47268 14.7286 0 1.3519-1.95552-.4734-4.53-.4734-6.42312z" + style="display:inline;fill:#cab1fb;stroke:#fff;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + transform="translate(127.99921 .50020379) scale(1.0000011)"> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path50" + d="M870-133c1 1 3 1 4 0" + style="display:inline;fill:none;stroke:#673db6;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + transform="translate(-716 116)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + d="M871.99998-112.32077c-4.07667 0-6.68571 3.32857-6.68571 7.43209v5.85103l6.68571 3.28697 6.68574-3.28697v-5.85103c0-4.10352-2.60907-7.43209-6.68574-7.43209z" + style="display:inline;fill:#cab1fb;stroke:#fff;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + transform="translate(-.00092413 32.500238) scale(1.0000011)"> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path53" + d="M870-133c1 1 3 1 4 0" + style="display:inline;fill:none;stroke:#673db6;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + transform="translate(-732 116)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + d="M935.97434-95.84991c1.24809.0035 2.27708-1.027312 3.24555-1.86711 3.78011-1.28298 3.4691-3.66706 3.46122-7.54133-.008-3.87427-2.6301-7.43209-6.68571-7.43209-4.05564 0-6.57851 3.39753-6.68576 7.43209-.10725 4.03456-.30964 6.25835 3.46124 7.54133.9524 1.028185 1.96751 1.863612 3.20346 1.86711z" + style="display:inline;fill:#cab1fb;stroke:#fff;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + transform="translate(63.999169 32.000241) scale(1.0000011)"> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path56" + d="M870-133c1 1 3 1 4 0" + style="display:inline;fill:none;stroke:#673db6;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + transform="translate(-748 116)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + d="M1000-95.428905c7.58 0 6.8015-5.294525 6.8015-9.507275 0-4.21273-2.7301-7.63492-6.8015-7.63492-4.07141 0-6.80146 3.41699-6.80146 7.63492 0 4.21795-.77852 9.507275 6.80146 9.507275z" + style="display:inline;fill:#cab1fb;stroke:#fff;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + transform="translate(127.99921 32.500238) scale(1.0000011)"> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path59" + d="M870-133c1 1 3 1 4 0" + style="display:inline;fill:none;stroke:#673db6;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + transform="translate(-740 116)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + d="m971.12454-95.673345 3.56119-4.431185v-4.79003c0-4.10352-2.63012-7.43209-6.68574-7.43209-4.05561 0-6.68571 3.32857-6.68571 7.43209v4.79003l3.56116 4.431185z" + style="display:inline;fill:#cab1fb;stroke:#fff;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + transform="translate(95.999179 32.500238) scale(1.0000011)"> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + rx=".66098547" + ry=".66098547" + style="display:inline;fill:#673db6;fill-opacity:1;stroke:none;stroke-width:1.25;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path62" + d="M870-133c1 1 3 1 4 0" + style="display:inline;fill:none;stroke:#673db6;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + transform="translate(-884 76)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + id="path64" + d="M995.01774-39.951006c-.5056.009-.2968.29042-.037.660151.3196.45507-1.2706-.383121-.5899.40235.7426.856961-.7353.12948-.2968.777341.5658.833971 2.2027 1.416942 3.23431 1.474612.758.0424-.29291-.577661.1426-.517581.4356.0601 1.1097.33904.4297-.4375-.68001-.776551.8357.49127.1387-.632811-.3839-.710531-1.66681-1.475152-2.54891-1.687502-.2006-.029-.3559-.0412-.4726-.0391zm10.00196 0c-.1166-.002-.2719.0101-.4726.0391-.8821.21235-2.163.976971-2.5469 1.687502-.6971 1.124081.8167-.14374.1367.632811-.6801.77654-.01.4976.4297.4375.4355-.0601-.6154.559981.1426.517581 1.0316-.0577 2.6686-.640641 3.2344-1.474612.4385-.647861-1.0395.0796-.2969-.777341.6807-.785471-.9075.0527-.5879-.40235.2597-.369731.4665-.650811-.039-.660151z" + style="display:inline;fill:#9d6ff3;fill-opacity:1;stroke-width:.408355" /> + transform="translate(-900 76)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + id="path65" + d="M1027.0179-39.951006c-.5056.009-.2968.29042-.037.660151.3196.45507-1.2706-.383121-.5899.40235.7426.856961-.7353.12948-.2968.777341.5658.833971 2.2027 1.416942 3.2343 1.474612.758.0424-.2929-.577661.1426-.517581.4356.0601 1.1097.33904.4297-.4375-.68-.776551.8357.49127.1387-.632811-.3839-.710531-1.6668-1.475152-2.5489-1.687502-.2006-.029-.3559-.0412-.4726-.0391zm10.0019 0c-.1166-.002-.2719.0101-.4726.0391-.8821.21235-2.163.976971-2.5469 1.687502-.697 1.124081.8167-.14374.1367.632811-.68.77654-.01.4976.4297.4375.4355-.0601-.6154.559981.1426.517581 1.0316-.0577 2.6686-.640641 3.2344-1.474612.4385-.647861-1.0395.0796-.2969-.777341.6807-.785471-.9075.0527-.5879-.40235.2597-.369731.4665-.650811-.039-.660151z" + style="display:inline;fill:#673db6;fill-opacity:1;stroke-width:.408355" /> + transform="translate(-748 44)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + d="M1006.1399-6.5963902s-.7848 2.8528631-2.6775 3.2314035c-1.6758.3231303-2.1466-.5170306-2.1466-.5170306h-2.59895s-.4616.8401609-2.14191.5170306c-1.8927-.3600704-2.6821-3.1944734-2.6821-3.1944734h-.6001a6.8551717 6.8551717 0 0 0 13.41496 0z" + style="display:inline;fill:#9d6ff3;fill-opacity:1;stroke-width:.461628" /> + transform="translate(-740 44)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + d="M963.46231-6.3563399a.46162772.46162772 0 1 0 .4617.4616305.50779049.50779049 0 0 0-.4617-.4616305zm1.0895-1.6249317a.46162772.46162772 0 1 0 .4616.4616304.50779049.50779049 0 0 0-.4616-.4616304zm-2.0681.1292601a.46162772.46162772 0 1 0 0 .923251.46162772.46162772 0 1 0 0-.923251zm3.0329 1.3202514a.46162772.46162772 0 1 0 .4616.4616305.50779049.50779049 0 0 0-.4616-.4616305zm6.55051.6462807a.46162772.46162772 0 1 0 .4616-.4616305.50779049.50779049 0 0 0-.4616.4616305zm-1.0849-1.6341618a.46162772.46162772 0 1 0 .4617-.4616304.50779049.50779049 0 0 0-.4617.4616304zm2.0635.1338702a.46162772.46162772 0 1 0 .4616-.4616305.50779049.50779049 0 0 0-.4616.4616305zm-3.0329 1.3248714a.46162772.46162772 0 1 0 .4617-.4616305.50779049.50779049 0 0 0-.4617.4616305z" + style="display:inline;fill:#9d6ff3;fill-opacity:1;stroke-width:.461628" /> + transform="translate(-868 76)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + d="M902.36224-38.543244c.5416 1.174191.1689 2.495712-.8276 2.954983-.9966.45931-2.2443-.11696-2.7859-1.299832-.5417-1.182881-.1691-2.495712.8318-2.955013 1.0009-.45927 2.253.12567 2.7817 1.299862zm3.27561 0c-.5416 1.178531-.1689 2.478382.8275 2.954983.9967.47662 2.2444-.11696 2.7861-1.299832.5415-1.182881.169-2.495712-.8319-2.955013-1.0008-.45927-2.2532.12567-2.7817 1.299862z" + style="display:inline;fill:#9d6ff3;fill-opacity:1;stroke-width:.461628" /> + transform="translate(-876 76)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + d="M934.36228-38.543254c.5416 1.174191.1689 2.495712-.8276 2.954983-.9966.45931-2.24431-.11696-2.78591-1.299832-.5417-1.182881-.1691-2.495712.8318-2.955013 1.00091-.45927 2.25301.12567 2.78171 1.299862zm3.2756 0c-.5416 1.178531-.1689 2.478382.8275 2.954983.9967.47662 2.2444-.11696 2.7861-1.299832.54151-1.182881.16901-2.495712-.8319-2.955013-1.0008-.45927-2.2532.12567-2.7817 1.299862z" + style="display:inline;fill:#673db6;fill-opacity:1;stroke-width:.461628" /> + transform="translate(-724 44)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + d="M902.36224-6.5432101c.5416 1.1741913.1689 2.4957127-.8276 2.9549862-.9966.4593105-2.2443-.1169602-2.7859-1.2998344-.5417-1.1828813-.1691-2.4957127.8318-2.9550132 1.0009-.4592705 2.253.1256701 2.7817 1.2998614zm3.27561 0c-.5416 1.1785313-.1689 2.4783827.8275 2.9549862.9967.4766205 2.2444-.1169602 2.7861-1.2998344.5415-1.1828813.169-2.4957127-.8319-2.9550132-1.0008-.4592705-2.2532.1256701-2.7817 1.2998614z" + style="display:inline;fill:#9d6ff3;fill-opacity:1;stroke-width:.461628" /> + id="path71" + d="M900.77344-12.404106c-.8587-.006-1.6474.59377-1.8242 1.490241-.1846 1.1125214.5875 1.9611123 1.8477 1.9472623-.7963-3.0333133 2.203-2.0326323 2.7969-.7148408 0 0-.6744-2.1555625-2.2208-2.6171925-.1989-.0699-.4014-.10398-.5996-.10547zm6.42581 0c-.1982.001-.4007.0356-.5996.10547-1.5464.46163-2.2187 2.6171925-2.2187 2.6171925.5938-1.3177915 3.5931-2.3184725 2.7968.7148408 1.2602.0139 2.0303-.8347409 1.8457-1.9472623-.1768-.896471-.9654-1.496671-1.8242-1.490241z" + style="display:inline;fill:#59c9a5;fill-opacity:1;stroke-width:.461628" /> + transform="translate(-716 44)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + d="M870.36221-6.5432101c.5416 1.1741913.1689 2.4957127-.8276 2.9549832-.9966.4593085-2.2443-.1169602-2.7859-1.2998314-.54171-1.1828813-.16911-2.4957127.8318-2.9550132 1.0009-.4592705 2.253.1256701 2.7817 1.2998614zm3.2756 0c-.5416 1.1785313-.1689 2.4783827.8275 2.9549832.9967.4766185 2.24441-.1169602 2.78611-1.2998314.5415-1.1828813.169-2.4957127-.8319-2.9550132-1.00081-.4592705-2.25321.1256701-2.78171 1.2998614z" + style="display:inline;fill:#9d6ff3;fill-opacity:1;stroke-width:.461628" /> + id="path73" + d="M868.77341-12.404106c-.8587-.006-1.6474.59377-1.8242 1.490241-.1846 1.1125214.5875 1.9611123 1.8477 1.9472623-.7963-3.0333133 2.203-2.0326323 2.7969-.7148408 0 0-.6744-2.1555625-2.2208-2.6171925-.1989-.0699-.4014-.10398-.5996-.10547zm6.4258 0c-.1982.001-.4007.0356-.5996.10547-1.5464.46163-2.2187 2.6171925-2.2187 2.6171925.5938-1.3177915 3.5931-2.3184725 2.7968.7148408 1.26021.0139 2.03031-.8347409 1.84571-1.9472623-.1768-.896471-.9654-1.496671-1.82421-1.490241z" + style="display:inline;fill:#bdede0;fill-opacity:1;stroke-width:.461628" /> + transform="translate(-732 44)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + id="path74" + d="M932.77348-12.404106c-.85871-.006-1.64741.59377-1.82421 1.490241-.1846 1.1125214.5875 1.9611123 1.84771 1.9472623-.7963-3.0333133 2.203-2.0326323 2.7969-.7148408 0 0-.6744-2.1555625-2.2208-2.6171925-.1989-.0699-.4014-.10398-.5996-.10547zm6.4258 0c-.1982.001-.4007.0356-.5996.10547-1.5464.46163-2.2187 2.6171925-2.2187 2.6171925.5938-1.3177915 3.5931-2.3184725 2.7968.7148408 1.2602.0139 2.0303-.8347409 1.8457-1.9472623-.1768-.896471-.9654-1.496671-1.8242-1.490241z" + style="display:inline;fill:#673db6;fill-opacity:1;stroke-width:.461628" /> + id="path75" + d="M931.01767-7.9509716c-.5056.009-.2968.2904203-.037.6601507.3196.4550705-1.2706-.3831204-.5899.4023504.7426.8569609-.7353.1294802-.2968.7773409.5658.8339709 2.20271 1.4169415 3.23431 1.4746115.758.0424-.2929-.5776606.1426-.5175805.4356.0601 1.1097.3390403.4297-.4375005-.68-.7765508.8357.4912705.1387-.6328107-.3839-.7105307-1.6668-1.4751515-2.54891-1.6875018-.2006-.029-.3559-.0412-.4726-.0391zm10.00191 0c-.1166-.002-.2719.0101-.4726.0391-.8821.2123503-2.163.9769711-2.5469 1.6875018-.697 1.1240812.8167-.1437401.1367.6328107-.68.7765408-.01.4976005.4297.4375005.4355-.0601-.6154.5599806.1426.5175805 1.0316-.0577 2.66861-.6406406 3.23441-1.4746115.4385-.6478607-1.03951.0796-.2969-.7773409.6807-.7854708-.90751.0527-.58791-.4023504.25971-.3697304.46651-.6508107-.039-.6601507z" + style="display:inline;fill:#9d6ff3;fill-opacity:1;stroke-width:.408355" /> + transform="translate(-756 44)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + d="M1038.7085-6.6071102h-.5997c-.2556.8537909-.6826 1.6465118-1.2549 2.3297125-1.2751-1.5268016-2.8537-2.5649827-4.8485-2.5649827-1.9948 0-3.317 1.0344211-4.8486 2.5834327-.5745-.6886507-1.0015-1.4878516-1.2548-2.3481625h-.5997c.6557 3.1029284 3.3529 5.3518938 6.5232 5.4390659h.3506c3.1737-.08297 5.8759-2.3328615 6.5324-5.4390659zm-5.4437 2.6757029h-2.5188c-.4899.5673466.2542 1.9316121-1.7458.931611s1-3.1459834 3.0051-3.1459834c2.0052 0 4.9949 2.1459823 2.9949 3.1459834-2 1.0000011-1.201-.5529676-1.7354-.931611z" + style="display:inline;fill:#9d6ff3;fill-opacity:1;stroke-width:.461329" /> + transform="translate(-860 76)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + transform="translate(-868 4)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + transform="translate(-876 4)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + transform="translate(-884 4)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + transform="translate(-892 4)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + transform="translate(-900 4)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + transform="translate(-716 -28)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + transform="translate(-724 -28)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + transform="translate(-740 -28)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + transform="translate(-748 -28)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + transform="translate(-756 -28)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - + transform="translate(-732 -28)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + id="path87" + d="M932.49148 84.500418c-.75621.004-1.37701.12695-1.37701.12695-.5117 1.160691 1.91161 1.980942 4.31931 2.726573.072-.739431-.1232-1.481952-.5465-2.068363-.506-.64458-1.5387-.790011-2.3958-.78516zm6.9648.006c-.8238.0133-1.7657.1785-2.242.78516-.4233.586411-.619 1.328932-.5464 2.068363 2.4076-.745641 4.82921-1.565882 4.3175-2.726573 0 0-.7054-.140221-1.5291-.12695z" + style="display:inline;fill:#9d6ff3;fill-opacity:1;stroke:#9d6ff3;stroke-width:.443898" /> + transform="translate(-860 4)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fff;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + transform="translate(-1068 220)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path90" + d="M1086.5037-137.6167a6.4571353 6.4571353 0 1 0-12.9142 0 11.829286 11.829286 0 0 0 .3137 3.75185l.6725-3.40802 1.1207 1.4348.8525-2.47031 1.275 1.39395 1.1913-2.29588 1.0315 2.16128 1.0309-2.16128 1.1913 2.29639 1.2755-1.39396.852 2.47031 1.1212-1.4348.6726 3.40802a11.847435 11.847435 0 0 0 .3135-3.75235z" + style="fill:#cab1fb;stroke-width:.504147" /> + transform="translate(-1076 220)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path92" + d="m1111.9123-140.27306 1.1315-1.40386 1.365 1.79365.702-1.56018 1.1699 2.14512.4684-.58494c.5456 1.79416.468 6.31787.468 6.31787h1.1542v-4.02348a6.4590707 6.4590707 0 1 0-12.9176 0v4.02399h1.1548s-.079-4.52372.4674-6.31787l.4685.58494 1.1698-2.14512.702 1.55967 1.365-1.79365z" + style="fill:#cab1fb;stroke-width:.504261" /> + transform="translate(-1084 220)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path94" + d="M1150.1895-139.23947c-.6824-2.66308-2.6525-4.89694-6.2404-4.89694-3.588 0-5.558 2.23233-6.2404 4.89694a11.318453 11.318453 0 0 0 0 5.49357l.9031-4.55142.3135.62759 1.2572-2.00099 1.2572 1.25518 1.2537-1.25518 1.2557 1.25518 1.2551-1.25518 1.2542 1.25518 1.2567-1.25518 1.2567 2.00099.3146-.62759.9031 4.55142a11.318453 11.318453 0 0 0 0-5.49357z" + style="fill:#cab1fb;stroke-width:.50735" /> + transform="translate(-1092 220)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path96" + d="M1183.3651-137.4515c0-3.66839-3.6668-6.53496-7.3352-6.53496-3.6684 0-7.3358 2.86657-7.3358 6.53496 0 0-.2764 2.8147 1.1997 4.66005l1.8152-4.42977 1.4004 1.56891 1.5134-1.70635 1.4003 1.65967 1.4004-1.65967 1.5134 1.70635 1.4004-1.56891 1.8152 4.42977c1.4891-1.84535 1.2126-4.66005 1.2126-4.66005z" + style="fill:#cab1fb;stroke-width:.518648" /> + transform="translate(-1100 220)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path98" + d="M1207.9672-144.55073c-3.6754 0-7.0723 2.59411-7.0723 6.26954 0 0-.3232 3.51322.9707 5.13086l.2305-4.57227.5547-1.9414.6934 2.72656 1.248-3.97461.9238 4.01953 1.2032-4.29883 1.248 4.06641 1.2461-4.06641 1.2031 4.29688.9238-4.01953 1.252 3.97656.6934-2.72656.5527 1.9375.2324 4.57617c1.2919-1.61764.9668-5.13086.9668-5.13086 0-3.67543-3.3948-6.26954-7.0703-6.26954zm-5.3809 12.81057 1.7305 5.3789 1.4375-2.12305c-.8215-.36369-1.5521-.9245-2.1484-1.63867-.3977-.47649-.7395-1.01975-1.0196-1.61718zm10.791 0c-.2796.59738-.6198 1.14072-1.0175 1.61718-.5967.71487-1.328 1.27696-2.1504 1.64063l1.4394 2.12109zm-7.1406 3.4414 1.7461 2.81641 1.7442-2.81446c-.55.18349-1.1351.28321-1.7442.28321-.61 0-1.1954-.10118-1.7461-.28516z" + style="fill:#cab1fb;stroke-width:.519641" /> + transform="translate(-1108 220)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path100" + d="M1240.0043-144.05073a6.637207 6.637207 0 0 0-3.1445.81055l-4.1739.96875.9707 1.61914-1.8125.38867 1.4942 3.70704a12.168558 12.168558 0 0 0 .3515 3.05664l1.6837-4.56641.9394 1.10547 1.1016-2.0332 1.5527 2.22266 2.2676-2.45508 1.6191 2.65429 1.2637-1.49414.5508 2.20703.959-1.14257.6914 3.50195a12.177886 12.177886 0 0 0 .3222-3.85547 6.637207 6.637207 0 0 0-6.6367-6.69532z" + style="fill:#cab1fb;stroke-width:.518208" /> + transform="translate(-1116 220)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path102" + d="M1278.2599-134.40176c.16-1.4287.16-2.87081 0-4.29951-.4461-3.11992-3.1571-5.41186-6.3077-5.33271-3.1516-.0793-5.8631 2.21384-6.3083 5.33479-.1554 1.41642-.1418 2.84631.041 4.25951 3.3466-1.29327 6.1541-3.30689 7.7539-6.26928 0 0 2.5724 4.58158 4.8216 6.3072z" + style="fill:#cab1fb;stroke-width:.519454" /> + transform="translate(-1124 220)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path104" + d="M1306.0699-140.91498a4.7499033 4.7499033 0 0 0 2.8182 1.52986l.8459 4.38812.5231.0401.1609-2.17324c0-4.34128-2.7193-6.89868-6.4011-6.89868-3.6817 0-6.4026 2.5574-6.4026 6.89868l.1609 2.17324.5231-.0401.8459-4.38812a4.7499033 4.7499033 0 0 0 2.8182-1.52986 3.8379218 3.8379218 0 0 1-1.2493 2.1342s3.6682.6033 5.3568-2.1342z" + style="fill:#cab1fb;stroke-width:.520536" /> + transform="translate(-1132 220)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path106" + d="M1342.4654-134.53398v-3.19236c.044-3.59877-2.8374-6.55196-6.4362-6.59634-3.5983.0444-6.4797 2.99694-6.4362 6.59531v3.19236l1.3388-3.74381c2.3365-2.87737 7.0476-.5548 8.6816-2.54874 0 0 .398 2.19037 1.4737 3.22634z" + style="fill:#cab1fb;stroke-width:.514895" /> + transform="translate(-1140 220)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path108" + d="M1373.4499-135.82488v2.35506h1.1191v-2.07721c1.6373-.36152 1.0382-2.83588.1994-4.27422-1.0985-1.88302-3.0988-4.5056-6.7512-4.5056-3.6524 0-5.6521 2.62258-6.7506 4.5056-.8387 1.43834-1.4384 3.91477.1993 4.27422v2.07721h1.1187v-2.35506c2.3972-1.47211 4.5418-3.32059 6.3514-5.47447.7982.30744 1.3964.17151 2.197 0 0 0 .9994 4.15491 2.3169 5.47447z" + style="fill:#cab1fb;stroke-width:.516463" /> + transform="translate(-1148 220)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path110" + d="M1399.9735-144.24306c3.7894 0 6.8373 2.84355 6.8373 6.54041a14.730225 14.730225 0 0 1-.4149 2.26308 13.369513 13.369513 0 0 1-6.379-6.50719h-.043a13.371557 13.371557 0 0 1-6.382 6.50822 14.778256 14.778256 0 0 1-.4144-2.26308c0-3.69789 3.048-6.54041 6.8373-6.54041z" + style="fill:#cab1fb;stroke-width:.510968" /> + transform="translate(-1156 220)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path112" + d="M1432.0166-144.24181a6.4503024 6.4503024 0 0 0-6.4251 6.58446v3.34671h.6991l.1593-3.06143.4775 1.431.5141-2.06734.9144 1.70959s1.5106-4.17478 2.9812-5.4485l.6759.43691.676-.43691c1.4711 1.27166 2.9812 5.4485 2.9812 5.4485l.9144-1.70959.5207 2.06785.4775-1.431.1589 3.06092h.7001v-3.34671a6.4508164 6.4508164 0 0 0-6.4252-6.58446z" + style="fill:#cab1fb;stroke-width:.514009" /> + transform="translate(-780 188)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path114" + d="m1080.0062-108.99793 1.1196-1.03945a5.9577329 5.9577329 0 0 1 .9986 3.27437l3.3581.39935.1994 2.79754.5595.19942.1601-2.27782c0-4.51479-2.7381-6.66447-6.3937-6.66447-3.6557 0-6.3933 2.14968-6.3933 6.66447l.1602 2.27782.5595-.19942.1958-2.79702 3.3581-.39935a5.9577329 5.9577329 0 0 1 .9991-3.27696z" + style="fill:#cab1fb;stroke-width:.516625" /> + transform="translate(-788 188)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path116" + d="M1112.0589-112.73624c-3.8154 0-6.3835 2.43415-6.8867 5.97852l-1.543 1.99414c3.8845.91585 6.6859-1.60482 8.4297-4.5586 1.8889 2.99202 5.0223 5.71268 8.4258 4.55665l-1.543-1.99415c-.5005-3.54226-3.0674-5.97656-6.8828-5.97656zm-5.8086 12.34181.418 4.521484 2.8906-.611331 2.4023.855471 2.4024-.855471 2.8906.611331.418-4.517574c-.3199.83682-.7497 1.584571-1.2774 2.216792-1.1086 1.328191-2.6716 2.138672-4.4336 2.138672s-3.3248-.810441-4.4336-2.138672c-.5283-.632941-.9573-1.382742-1.2773-2.220702z" + style="fill:#cab1fb;stroke-width:.52634" /> + transform="translate(-796 188)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path118" + d="m1146.8397-113.70879-.4985 1.37073-1.2466-2.0357-1.1215 1.49589-1.1221-1.49589-1.2466 2.0357-.4979-1.37073c-5.2139 5.21328-4.0714 12.13033-4.0714 12.13033h1.3632c-.024-4.02946.8634-8.4594 5.5748-8.51605 5.1139.28634 5.6743 4.41691 5.5742 8.51605h1.3638s1.1424-6.91705-4.0714-12.13033z" + style="fill:#cab1fb;stroke-width:.537123" /> + transform="translate(-804 188)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path120" + d="m1176.0006-113.43687 1.04.87918.7602-.47993.5999.6025 1.0799-.68007.5601 1.2412.9599-.2803.2399.80006 1.4403-.32013.1195 8.95583h-1.3596c-.1351-2.39919-.4957-4.81921-1.8003-6.67563-2.4628.51801-5.0063.55629-7.2802-.003-1.3758 2.04247-1.696 4.43591-1.7997 6.67563h-1.3602l.12-8.95583 1.4398.32013.24-.80006.9603.2803.5596-1.2412 1.0799.68266.6004-.60043.7597.47993z" + style="fill:#cab1fb;stroke-width:.517172" /> + transform="translate(-812 188)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path122" + d="M1215.7004-109.38407c-.8052-.28783-1.6601-.41063-2.5137-.36109.1967-.54892.5421-1.03236.9976-1.3964-1.0413-.26863-2.1199-.36293-3.1921-.27908-2.3141-2.11498-7.2218-1.59603-7.2218-1.59603l1.3566 1.43612-3.8688.19963 1.5166 1.3964-2.2744.3611c.7181 1.19677.8697 4.05044.8697 4.47653l.024 2.54573h1.06c.01-3.73601 2.141-6.733 5.5459-6.78291 4.0866.34217 5.5804 2.94199 5.5459 6.78291h1.0611l.024-2.54573v-.082c.046-1.44735.4125-2.86648 1.073-4.15516z" + style="fill:#cab1fb;stroke-width:.515851" /> + transform="translate(-820 188)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path124" + d="m1240.0072-113.25691 1.4662 1.3357 3.326-.73387.6811 2.98577 2.3829 1.51853-1.0609 2.94565.9822 1.17827-.8248 1.20873-.8253 2.01319h-.903l.1961-5.02792c-1.2127-.81878-1.9241-1.91002-2.7105-3.10157-1.8419-.35566-3.7168-.3751-5.4211-.002-.647 1.3119-1.6364 2.16265-2.71 3.1036l.1961 5.02792h-.903l-.8253-2.0132-.8248-1.20822.9822-1.17827-1.0609-2.94565 2.3829-1.51853.6811-2.98577 3.326.73387z" + style="fill:#cab1fb;stroke-width:.507872" /> + transform="translate(-828 188)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path126" + d="m1272.6849-108.83301.356 1.93818 1.8206-1.42409 1.6619 1.66195.554-.47521.7325 3.23798h.5729l.3561-4.42472-1.3454-.83072-.3954-2.33462-2.73-.35602-2.2947-1.26552-2.2952 1.26552-2.7301.35602-.3954 2.33462-1.3453.83072.356 4.42472h.5729l.7331-3.23798.5539.47521 1.6615-1.66195 1.2266 1.42409z" + style="fill:#cab1fb;stroke-width:.51153" /> + transform="translate(-836 188)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path128" + d="m1311.4212-107.13922-1.3198-1.6798-.5198-2.08009-1.7207-.36203-1.2019-1.43776-1.6001.15981-1.0375-.5601-1.0406.5601-1.6001-.15981-1.1999 1.43983-1.7201.36203-.5203 2.08009-1.3198 1.67773.4799 1.87995-.04 1.84065.9201 1.4 1.16-4.64066 1.3596-1.35966a10.912494 10.912494 0 0 0 3.521.44012 10.906805 10.906805 0 0 0 3.5204-.44012l1.3602 1.35966 1.1595 4.64066.9206-1.4-.041-1.84065z" + style="fill:#cab1fb;stroke-width:.517182" /> + transform="translate(-844 188)"> - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + transform="translate(-852 188)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path132" + d="m1368.6965-107.62289.7018 1.84373 1.4705-1.33052 1.3681 1.65914.8441-.47441.7318 1.84503h.5714l.3554-4.41723-1.3425-.82931-.3952-2.33065-2.7254-.35542-2.2909-1.26338-2.2908 1.26338-2.7254.35542-.3952 2.33065-1.3426.82931.3555 4.41723h.5719l.7313-1.84503.8625.52707 1.3497-1.7118 1.4997 1.42168z" + style="fill:#cab1fb;stroke-width:.51066" /> + transform="translate(-860 188)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path134" + d="M1400.0757-107.62664a11.11405 11.11405 0 0 0 3.586-.44825l1.3848 1.38478.4619 5.59548 2.118-2.87964-.041-1.8736.4888-1.91519-1.104-1.58915-.5715-2.11799-2.1096-.49355-1.1103-1.18936-1.6987.27074-1.4048-.65157-1.4059.65157-1.6982-.27074-1.1098 1.18936-2.1069.49355-.5741 2.11799-1.1062 1.58915.4888 1.91519-.04 1.8736 2.1185 2.87964.4619-5.59548 1.3843-1.38478a11.11405 11.11405 0 0 0 3.5881.44825z" + style="fill:#cab1fb;stroke-width:.526735" /> + transform="translate(-868 188)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path136" + d="M1431.94-112.57999c-3.679.0103-5.4596 1.68485-6.4687 5.07617l-1.2949 1.13477 1.2148 2.02345-.7695.84961.8086.93164v1.45703h1.2969v-4.54103l.7285.97071.7851-1.04688 1.1778 1.04688 1.2089-1.04688 1.2774 1.04688 1.2754-1.04688 1.209 1.04688 1.1777-1.04688.7852 1.04688.7851-1.04688v-.0371h.016v4.65431h1.2969v-1.45703l.8086-.93164-.7676-.84961 1.2129-2.02345-1.2949-1.13477c-1.0091-3.39132-2.7903-5.06586-6.4688-5.07617z" + style="fill:#cab1fb;stroke-width:.52336" /> + transform="translate(-492 156)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path138" + d="m1080.0002-81.25769-1.3398.986331-1.2618-.552741-.9082 1.419922-1.7734.0391-.1582 1.697262-2.0117 2.050782.6308 2.562503-.8281 1.931642 3.0625 7.037117 1.1367-1.136721c-.3034-.24604-.5853-.524801-.8418-.832031-1.0117-1.212021-1.6524-2.859523-1.8281-4.755865l.4024.494141.789-3.548824c.9333-.530621 1.7413-1.256662 2.3672-2.128913.1275.570841.1275 1.163542 0 1.734372 1.9455-.11955 3.5361-.44315 5.0469-1.736322.6259.872251 1.4339 1.600242 2.3672 2.130863l.789 3.548824.5-.689451c-.1487 1.978282-.7975 3.697904-1.8437 4.951175-.257.30795-.5397.587521-.8438.833991l1.1367 1.134761 3.0606-7.037117-.8281-1.931642.6308-2.562503-2.0097-2.050782-.1602-1.697262-1.7734-.0391-.9063-1.419922-1.2637.552741zm-3.0879 16.304707.7305 1.314452.748-.591801c-.5278-.16484-1.0237-.40918-1.4785-.722651zm6.1738.004c-.4537.311911-.9485.554611-1.4746.718751l.7481.591801z" + style="fill:#cab1fb;stroke-width:.509892" /> + transform="translate(-500 156)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path140" + d="M1111.8382-81.701051c-.1962-.0008-.4013.006-.6152.0234-3.484.276731-5.9634 3.506614-6.5254 7.189458-.3733 2.447183.6015 4.341465 1.1679 6.640627 0 0 .1334-.32524.2129-.51953.4974 1.708171 1.3714 3.797504 1.8809 5.271495l1.9922-1.345711 2.0469 1.742192 2.0468-1.742192 1.9903 1.345711c.4718-1.658142 1.4728-3.904114 1.9707-5.667976.035.312291.074.620361.123.916011.5663-2.299162 1.2998-4.168244 1.1699-6.640627-.2209-4.203594-3.539-5.310556-3.539-5.310556s-.9794-1.890322-3.9219-1.902342zm3.5586 3.316404c2.4019 2.111982 2.2436 6.094736 2.582 9.37306-.3358 1.039111-.8272 1.957952-1.459 2.714843-1.1297 1.353261-2.7245 2.177742-4.5195 2.177742-1.7966 0-3.3897-.824361-4.5195-2.177742-.544-.651621-.8809-1.549132-1.2069-2.414193.6342-1.540841 2.1778-5.358875 2.8475-6.329957l-.1602 3.761724s2.4133-1.563781 6.4356-7.105477z" + style="fill:#cab1fb;stroke-width:.53631" /> + transform="translate(-508 156)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path142" + d="M1144.0296-80.6659c-3.6472 0-6.5809 2.553233-7.2988 6.222667-.704 3.596204-1.2615 5.976407 0 7.658208 1.0338 1.378882 2.1957 1.765462 4.3261 1.875002-1.0444-.907051-1.8295-2.090272-2.5683-3.259763 1.6583-3.911254 4.0861-7.274578 7.7265-10.094211 1.0023 3.611054 2.0047 6.761017 3.3594 10.103971-.5482 1.418881-1.4814 2.398202-2.5664 3.250003 2.1273-.11004 3.2892-.49719 4.3223-1.875002 1.2615-1.681801.7066-4.064474 0-7.660158-.7184-3.668924-3.6535-6.220717-7.3008-6.220717z" + style="opacity:1;fill:#cab1fb;stroke-width:.515733" /> + transform="translate(-516 156)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path144" + d="m1176.0101-81.703001-1.3672 1.005851-1.289-.5625-.9239 1.449221-1.8125.0391-.1601 1.730462-2.0528 2.091802.6446 2.615243-.3243 1.972652.2793.306641.38 1.300501.3105-.609371.4121.453121c-.06-.32222-.3152-.813631-.3467-1.152061l1.2617-2.474613.6641 1.160161c.5051-1.164161 1.2089-2.231522 2.0801-3.154303l.457 3.121093c1.5691-.843971 2.8489-1.978392 4.0312-3.121093.8713.922641 1.5752 1.990042 2.0801 3.154303l.666-1.160191 1.2598 2.474613c-.032.33843-.2574.768041-.3168 1.090261l.4122-.453121.3105.609371.35-1.238701.2793-.306641-.3243-1.972652.6446-2.615243-2.0528-2.091802-.1601-1.730462-1.8106-.0391-.9257-1.449221-1.2891.5625z" + style="fill:#cab1fb;stroke-width:.520232" /> + transform="translate(-524 156)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path146" + d="M1208.057-81.50769c-3.8505-.0521-7.0154 3.024603-7.0723 6.875007 0 0-.1256 1.811152-.2519 3.705084-.2177 3.287153-.087 5.779096 1.9785 7.619148l1.0957-1.894532.9238 1.849602 1.4769-.962411c-2.3719-1.019551-3.6537-3.190263-4.2417-5.382366.7963-1.010381 3.8608-5.245155 4.1555-8.889609l1.9355 1.093751 1.9375-1.095701c.2957 3.646284 3.3423 7.791968 4.1365 8.799599-.6507 2.431693-2.0153 4.665625-4.3353 5.468186l1.5855.972461.9258-1.849612 1.0938 1.894532c2.0653-1.840042 2.1973-4.331985 1.9785-7.619148-.087-1.248791-.2053-2.495253-.3535-3.738284-.01-3.825294-3.1439-6.904798-6.9688-6.845707zm1.5484 17.253738c-1.1093.31587-2.196.28389-3.1826.014l1.5785 1.263321z" + style="opacity:1;fill:#cab1fb;stroke-width:.544232" /> + transform="translate(-532 156)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path148" + d="M1239.9301-80.8866c-3.6895 0-6.658 2.581073-7.3848 6.292977-.711 3.637304-1.2724 6.046786 0 7.748058 1.0463 1.395862 2.2226 1.787962 4.3809 1.898432-1.284-.872971-2.1942-2.207082-2.6895-3.523433.3875-1.704742 1.1295-5.115436 1.2188-6.687508l2.9453-4.195324c1.0281-.23029 1.978-.20104 3.0664 0l2.9453 4.195324c.089 1.572062.8294 4.982746 1.2168 6.687508-.5583 1.544531-1.3978 2.606442-2.5675 3.526343 2.1518-.1113 3.2084-.50756 4.2531-1.901342 1.2756-1.701272.7142-4.110754 0-7.748058-.7268-3.711384-3.6953-6.292977-7.3848-6.292977z" + style="opacity:1;fill:#cab1fb;stroke-width:.521702" /> + transform="translate(-540 156)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path150" + d="M1271.9926-80.421759c-3.0548.00001-6.5305 2.813713-7.0761 6.380867a15.159245 15.159245 0 0 0 .7226 6.953137s.1899-.672721.3008-1.070311l.9082 6.296877 1.8887-2.251953 3.2558 2.613283 3.2539-2.613283 1.8887 2.251953.9082-6.291017c.1104.39482.2988 1.066401.2988 1.066401a15.159245 15.159245 0 0 0 .7227-6.953127c-.5441-3.568194-4.018-6.382827-7.0723-6.382827zm1.7266 3.970714 3.1758 4.261725c.201.67096.5883 2.036322.9258 3.238283-.9138 2.721683-3.1224 4.911955-5.8282 4.958985-3.1129-.35763-5.0272-2.357692-5.8398-4.931645.339-1.209471.7289-2.589103.9336-3.267583 0 0 1.7684-2.611323 2.5722-3.777345l.6836 3.457034s2.332-1.769542 3.377-3.939454z" + style="opacity:1;fill:#cab1fb;stroke-width:.519615" /> + transform="translate(-548 156)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path152" + d="M1304.0513-81.09754c-3.0125 0-6.7546 3.090573-7.2911 6.609387-.3047 1.095771-1.1088 2.125702-1.7011 3.130863l1.5625.685541c0 2.202783.5167 4.242885 1.0898 6.341807l1.6016-.640621.666 1.222652 1.3066-1.005862c-1.8121-1.131751-2.8265-3.267613-3.2304-5.205075.1939-.762121.4378-1.694362.6484-2.392583 0 0 6.3388-.903081 7.8848-4.390634.2823 1.967562 1.1701 3.211843 2.8105 4.392584.201.670121.4399 1.578082.6328 2.332033-.4565 2.244852-1.4139 3.925714-3.2129 5.240245l1.3067 1.029292.6679-1.222652 1.5997.640621c.7707-2.056272.8933-4.180115 1.0898-6.341807l1.5625-.685541c-.6315-.989871-1.2581-2.107412-1.7012-3.128913-.537-3.517784-4.2809-6.611337-7.2929-6.611337z" + style="opacity:1;fill:#cab1fb;stroke-width:.512423" /> + transform="translate(-556 156)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path154" + d="m1330.4165-81.41004 1.1504 2.134772-3.832 1.697272 1.7832 1.291011-1.7832 6.371097 1.2295.45518-.2336 3.537264.6758-.933591.2558 1.640622 1.0625-.513671 1.0274 1.349612 1.2586-.54813c-2.2946-1.940116-3.3093-4.643558-3.1771-7.404999l.6973 2.679683 4.457-8.380869 1.0723.386721 1.0723-.386721 4.457 8.380869.6953-2.671873c.075 3.742492-1.461 6.269279-3.2202 7.371098l1.3047.574221 1.0293-1.349612 1.0606.513671.2578-1.640622.6738.933591-.1877-3.542686 1.1836-.449758-1.7832-6.371097 1.7832-1.291011-3.832-1.697272 1.1504-2.134772-5.6387 1.203131z" + style="opacity:1;fill:#cab1fb;stroke-width:.514421" /> + transform="translate(-564 156)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path156" + d="M1367.9341-80.728395c-6.6928.0426-8.9889 7.281628-6.4394 13.521505 0 0 .1324-.5067.2969-1.117191l.9258 6.416027 1.916-2.283213 3.3007 2.648443 3.3008-2.648443 1.9141 2.283213.9258-6.416027c.1645.610491.2969 1.117191.2969 1.117191 3.1798-5.748916.2552-13.564105-6.4376-13.521505zm0 3.292974s1.9088-.922481 3.1602.625001c.8366 1.034581 2.0852 5.253005 2.7735 7.738288-.8461 2.754533-3.3464 5.003956-5.9337 5.003916-2.5882-.00004-5.0981-2.277713-5.9355-5.005866.6885-2.485543 1.937-6.701997 2.7734-7.736338 1.0023-.973462 1.8942-1.008642 3.1621-.625001z" + style="fill:#cab1fb;stroke-width:.526895" /> + transform="translate(-572 156)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path158" + d="M1399.9655-81.488156c-2.3392-.14604-4.3279.628161-6.4825 1.476562l.8438.472661-3.5313 4.429684 1.1504.599611s-1.6986 4.326905-1.7304 4.931655l2.0859.388671s.05 4.249575.1289 5.357426l1.8574-1.806642 1.0645 2.910153 1.9626-1.994662c-2.2061-1.332322-3.2843-4.123115-3.488-6.284637l.3945.42773 2.9766-4.996095.027 3.626954 5.3672-4.408205 2.6445 5.357426.7891-2.744143c.7492 4.246735-.9446 7.787088-3.3624 9.02871l1.9171 1.986922 1.0644-2.910153 1.8575 1.806642c.08-1.107851.1289-5.357426.1289-5.357426l2.0839-.388671c-.031-.60588-1.7285-4.933605-1.7285-4.933605l1.1504-.599611-3.5312-4.429694.8418-.472651c-2.0732-1.141061-4.1433-1.328571-6.4824-1.474612zm-1.6244 17.217929 1.6244 2.056503 1.6339-2.054633c-1.1288.375831-2.2038.213931-3.2583-.002z" + style="fill:#cab1fb;stroke-width:.567835" /> + transform="translate(-580 156)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path160" + d="m1426.3756-81.29285 1.1465 2.128912-3.8223 1.693362 1.7813 1.289061-1.7813 6.355477 1.2129.421871-.2246 3.558603.6738-.929691.2559 1.636722 1.0586-.51367 1.0273 1.347651 1.3008-.572261c-2.5098-1.736292-3.3476-4.482834-3.2129-7.351578l.6934 2.664073 3.8554-6.029306c.4093 1.166991.9695 2.533803 1.6602 3.656254.6907-1.122421 1.2509-2.489283 1.6602-3.656254l3.8554 6.029306.6934-2.664073c.01 4.584235-1.5343 5.968187-3.2148 7.349618l1.3027.574221 1.0273-1.347651 1.0586.51367.2559-1.636722.6738.929691-.2246-3.558603 1.2129-.421871-1.7813-6.355477 1.7813-1.289061-3.8223-1.693362 1.1465-2.128912-5.625 1.201171z" + style="fill:#cab1fb;stroke-width:.513123" /> + transform="translate(-204 124)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path162" + d="m1077.3772-49.861177-.4922.164061-.6172-.082s-4.5077 3.117193-4.8789 10.16993l1.0684 1.478522c-.232 1.507492-.369 3.028073-.4102 4.552745l1.6387.574211.8593-1.378902.1661 2.279292 1.0175.779301 1.4083-.375.2695-.998051c-1.1163-.616301-1.8033-1.399252-2.4571-2.333983l.5-.802731v-3.650403l1.0664-.615231c.38-2.348633 1.0337-4.244495 1.7227-6.541017 1.2579-.430711 2.4176-.386911 3.5274.002.6377 2.232132 1.3761 4.237704 1.7207 6.539067l1.0664.613281v3.650393l.5039.806641c-.5858 1.015781-1.5918 1.765002-2.459 2.332033l.2695.998051 1.4082.375 1.0176-.779301.166-2.281252.8594 1.378912 1.6367-.572261c-.041-1.525272-.1771-3.046483-.4082-4.554695l1.0645-1.476572c-.367-7.053797-4.8789-10.16993-4.8789-10.16993l-.6133.082-.4903-.164061-1.1894.371101-.1641-.16407-1.2715.3711-1.2734-.3711-.1641.16407zm.9355 17.611349.1114 1.007811 1.5781.492191 1.5762-.492191.1132-1.007811c-1.1694.380771-2.2866.238611-3.3789 0z" + style="fill:#cab1fb;stroke-width:.530282" /> + transform="translate(-212 124)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path164" + d="m1109.7386-45.799042 1.5586-.326171.6856-1.843562-2.0489-.29707-1.125 1.253912m-.5625.36914-1.7539.648441-.064 1.687501.584.583981 1.5586-1.623042m6.8808 0 1.5567 1.623042.584-.583981-.064-1.687501-1.752-.648441m-.5625-.36914-1.125-1.253912-2.046.30079.6828 1.839842 1.5566.326171m-8.2988 1.945312-1.1856 1.328131.7637 1.238282.207.0137c.08-.908861.2679-1.757362.5586-2.527343zm12.0547 0-.3438.0508c.2912.770361.4806 1.619562.5606 2.529293l.207-.0137.7637-1.238282zm-12.365 2.982433-.2207.004-.873.908201.7461 1.494152.3828-.0899.1523.50977c-.089-.45763-.1493-.932821-.1797-1.423831-.029-.479841-.032-.947381-.01-1.402342zm12.6558 0c.024.455621.022.923551-.01 1.404292-.03.4937-.092.971771-.1814 1.431641l.156-.51953.383.0899.7461-1.494152-.873-.908201zm-11.8987 4.654275.9086 2.878933.8035-.38143c-.7562-.687041-1.3129-1.698632-1.7121-2.497503zm11.1448.007c-.4281 1.005481-.9705 1.768522-1.646 2.482823l.7556.38867z" + style="opacity:1;fill:#cab1fb;stroke-width:.519244" /> + transform="translate(-220 124)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> - - - - - + + + + transform="translate(-228 124)"> - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + transform="translate(-236 124)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path172" + d="m1205.7286-45.73438 1.5703-.32617.649-1.89814-2.0241-.26201-1.2002 1.22149m-.5097.38674-1.7569.68278-.064 1.70117.5879.5879 1.5703-1.63477m6.9355 0 1.5703 1.63477.5879-.5879-.066-1.70117-1.743-.65536m-.6022-.43616-1.1216-1.19949-2.0039.24523.6309 1.91492 1.5703.32617m-8.3652 1.9629-1.1953 1.33789.7695 1.24804.209.0137c.081-.91547.2717-1.7711.5644-2.54687zm12.1504 0-.8516.12695.3438 2.51953.9335-.0606.7696-1.24804zm-12.4167 3.01497-1.0833.91081.7519 1.5039.3262-.0762.022 6.26953 1.2227 1.96289 1.5253-1.46093 1.5293 1.52539 2.0469-1.56836 2.0469 1.56836 1.5293-1.52539 1.5273 1.46093 1.2207-1.96289.022-6.26953.3282.0762.7519-1.5039-1.1031-.94359-.102 2.34202c-.2437 1.71826-.8697 3.21272-1.8105 4.33985-2.3092 2.78032-6.2423 2.75354-8.8164 0-.9405-1.12696-1.5678-2.62171-1.8125-4.33985z" + style="fill:#cab1fb;stroke-width:.523349" /> + transform="translate(-244 124)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> - - - - - + + + + transform="translate(-252 124)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path178" + d="M1271.9975-48.048565c1.6343-.02793 3.204.637218 4.3207 1.830823 1.4797 1.572887 2.2009 3.973276 2.0298 6.758991l-.053-.56904h-.1916c-.189-2.497247-2.1056-5.573009-2.1056-5.573009-2.2614.469338-4.8447.468082-8.0013 0 0 0-1.9161 3.075762-2.1056 5.573009h-.1895l-.053.56904c-.171-2.785715.5501-5.186104 2.0298-6.758991 1.1163-1.192892 2.6851-1.85796 4.3186-1.830823z" + style="fill:#cab1fb;stroke-width:.526401" /> + transform="translate(-260 124)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path180" + d="M1309.7109-44.765949c-.5182-1.172468-2.4373-3.248572-5.6864-3.248572s-5.1682 2.076104-5.6865 3.248572c-1.3415 3.035396-.8196 5.297309-.6495 8.075949h.7036c-.1622-2.599068.095-5.724187.6301-6.796368.5954-1.190845 1.4177-1.575192 2.2641-1.417673 1.0769.20005 1.3294 1.023875 2.7371 1.023875s1.6603-.823825 2.7372-1.023875c.8464-.157519 1.6686.226303 2.2641 1.417673.536 1.072181.7933 4.1973.63 6.796368h.7036c.1722-2.77864.6942-5.040553-.6474-8.075949z" + style="fill:#cab1fb;stroke-width:.525064" /> + transform="translate(-268 124)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path182" + d="M1335.9861-48.107938c-1.6757 0-4.6016.655745-5.6179 2.956038-1.326 2.999097-.8104 5.767786-.6417 8.511641h.6946c-.1389-2.311593.01-4.531303.429-6.807951.302-1.133545.7544-2.801439 2.3346-3.210242 1.5377-.39739 1.41.933813 2.8014.932513 1.3909-.0013 1.2633-1.332503 2.8015-.935113 1.5807.408803 2.0331 2.075141 2.3345 3.210243.4239 2.277686.5678 4.498456.4285 6.811062h.6952c.1681-2.744373.6832-5.511506-.6418-8.512159-1.3796-2.306683-3.4772-2.936805-5.6179-2.956032z" + style="fill:#cab1fb;stroke-width:.518785" /> + transform="translate(-276 124)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path184" + d="M551.98828 190.77148c-7.15164 0-7.57475 6.75423-7.51758 9.01172-.10028.93706-.10813 1.88172-.0234 2.82032.0811.79815.88388 1.65923 2.4375 2.24023-.49307-.86311-.84286-1.86626-1.03125-2.96875.093-.17775.42543-.89636.80273-2.78125.32757-1.58824 1.01735-3.07943 2.01563-4.35742 2.09055-.84055 4.3468-.82055 6.63281 0 .99827 1.27799 1.68805 2.76918 2.01562 4.35742.37781 1.88489.70989 2.6035.80274 2.78125-.18837 1.10196-.53816 2.10581-1.03125 2.96875 1.55359-.581 2.35644-1.44208 2.4375-2.24023.0852-.94119.0774-1.88848-.0234-2.82813.0559-2.26571-.37465-9.00391-7.51758-9.00391z" + style="fill:#cab1fb;stroke-width:.520122" + transform="translate(816 -240)" /> + transform="translate(-284 124)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path186" + d="M1405.3293-47.450071c-.3395-.294592-.7362-.51603-1.1651-.65049-.2729-.104162-1.2791.997349-1.2791.997349s-.302-1.469202-.6619-1.537949c-2.9669-.943934-5.3369-.102112-7.5288 1.192132-.8854 1.036931-1.4062 4.895604-1.088 6.697082h1.0229c.077-.795443.1978-1.586133.3604-2.368639 1.1682-3.227715 8.7115-3.573324 10.0433 0 .1626.782506.2829 1.573196.3604 2.368639h1.0244c.3198-1.800957-.2031-5.661193-1.0885-6.698124z" + style="fill:#cab1fb;stroke-width:.520809" /> + transform="translate(-292 124)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path188" + d="M1436.8146-47.265138c2.267 3.702519 1.8044 9.302084 1.8044 9.302084h-.7867c-.055-2.305993-.7721-4.239283-1.6457-6.316031-2.6982 1.552463-5.87 1.511735-8.3713 0-1.1324 1.989267-1.3291 4.095604-1.6467 6.31447h-.7857s-.4626-5.599565 1.805-9.302084c2.3313-1.179792 7.3382-1.374297 9.6267.0016z" + style="fill:#cab1fb;stroke-width:.520309" /> + transform="translate(84 92)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path190" + d="M1085.0039-13.675776c-1.2292-1.492718-3.0688-2.347788-5.0024-2.325181-1.9336-.02279-3.7733.832313-5.0025 2.325181-1.8964 2.500431-1.5381 6.2448183-1.5334 6.3731258l2.0576-4.5982058c2.3419-1.246347 5.5642-1.758795 8.956 0l2.0571 4.5982058c.01-.1283075.363-3.8726948-1.5324-6.3731258z" + style="fill:#cab1fb;stroke-width:.521575" /> + transform="translate(76 92)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path192" + d="M1118.6518-5.9696428h-.9257s-.3648-4.7165342-2.137-7.2163132c-2.3843 1.113207-4.6186 1.153233-7.1371 0-1.7721 2.501863-2.137 7.2163132-2.137 7.2163132h-.9278c-1.3226-5.7378492 1.2199-10.9898172 6.6313-10.9977762 5.4113-.008 7.5944 4.996854 6.6333 10.9977762z" + style="fill:#cab1fb;stroke-width:.521222" /> + transform="translate(68 92)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path194" + d="M1144.0055-17.334542c-3.6915 0-6.6847 3.834551-6.6847 8.1466597v3.7212942h1.1524s-1.0089-6.5803759 3.2296-8.7599159c1.5752 1.017218 2.6731 1.001745 4.6018 0 4.2406 2.17954 3.2333 8.7599159 3.2333 8.7599159h1.1545v-3.7212942c0-4.3121087-2.9954-8.1466597-6.6869-8.1466597z" + style="fill:#cab1fb;stroke-width:.521921" /> + transform="translate(60 92)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path196" + d="M1176.0147-16.967783c-3.6958-.000006-6.6916 2.996546-6.6913 6.692336v2.4313928h1.0344s.2424-7.1923028 5.6569-7.1923028 5.6574 7.1923028 5.6574 7.1923028h1.0344v-2.4313928c0-3.695866-2.996-6.69233-6.6918-6.692336z" + style="fill:#cab1fb;stroke-width:.522431" /> + transform="translate(52 92)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path198" + d="M1204.2902-12.463047a7.9939545 7.9939545 0 0 0-1.2634 4.9264024l-2.4248-.2795384s-.057-3.384994 1.5304-5.501799zm7.4992 0a7.9955338 7.9955338 0 0 1 1.2634 4.9264024l2.4264-.2795384s.057-3.384994-1.5304-5.501799z" + style="fill:#cab1fb;stroke-width:.526438" /> + transform="translate(36 92)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path200" + d="M1272.0062-16.94128c-4.5998-.011-6.8451 3.85424-7.1331 6.59948 0 0-.5964 4.91336 1.1875 8.48047 1.4154 2.83089 3.3807 4.43555 5.9472 4.43555 2.5665 0 4.5299-1.60466 5.9453-4.43555 1.7844-3.56605 1.1895-8.48047 1.1895-8.48047-.5345-3.38428-2.5366-6.58848-7.1364-6.59948zm2.9391 3.63855c.7914 2.33454 1.6384 4.31505 3.4043 6.03906-.1711 1.99589-.8354 3.73073-1.8965 5.00195-1.1115 1.33169-2.6786 2.14258-4.4453 2.14258-1.7667 0-3.3336-.8109-4.4453-2.14258-.997-1.19424-1.6462-2.79807-1.8633-4.64258 1.5104-.42406 6.4931-2.09589 9.2461-6.39843z" + style="fill:#cab1fb;stroke-width:.527757" /> + transform="translate(28 92)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path202" + d="M488 223.24805c-3.70252.0731-6.71909 2.99505-6.91016 6.69336 0 0-.82965 4.87697.24805 8.27343 1.2082 3.81142 3.47051 4.36914 6.66211 4.36914s5.45441-.55876 6.66211-4.36914c1.0777-3.39698.24805-8.27343.24805-8.27343-.19132-3.69819-3.20775-6.61999-6.91016-6.69336zm2.66797 4c.76393 1.6894 2.71746 3.77364 3.6582 4.7207-.11922 2.08065-.61707 4.12779-1.69025 5.50732s-2.38268 2.53347-4.63594 2.50635c-2.25326-.0271-3.46617-.83967-4.67149-2.49566-1.20531-1.656-1.52891-3.42512-1.6547-5.41449.84804-.69482 2.53165-2.19771 3.41797-3.85157 0 0-.41224 1.34496-.36524 1.33399.94862-.22151 1.79127-.76464 2.38477-1.53711 0 0-.0401.36573-.0801 1.21289 1.5867-.23128 2.48908-.82378 3.63672-1.98242z" + style="fill:#cab1fb;stroke-width:.522614" + transform="translate(816 -240)" /> + transform="translate(20 92)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path204" + d="M1335.9883-16.68945c-3.6736 0-6.193 2.70994-7.086 5.88281-.7911 2.80977-1.0715 5.20844.3399 9.48828.9542 2.89548 3.6949 3.82617 6.7441 3.82617 3.0493 0 5.7914-.93069 6.7461-3.82617 1.4104-4.27984 1.1305-6.67851.3399-9.48828-.893-3.17287-3.4104-5.88281-7.084-5.88281zm-2.5586 3.23828c1.2971.47951 4.007.62625 5.1152 0 .6854 1.98807 2.5475 5.88842 3.4688 7.77929-.3049 1.36696-.8674 2.562-1.6504 3.5-1.0942 1.31072-2.6363 2.10938-4.375 2.10938-1.7387 0-3.2828-.79866-4.377-2.10938-.783-.938-1.3455-2.13304-1.6504-3.5.9211-1.89087 2.7834-5.79122 3.4688-7.77929z" + style="fill:#cab1fb;stroke-width:.519462" /> + transform="translate(12 92)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path206" + d="M1368-16.79492c-3.7414 0-6.0414 2.47773-6.6231 6.80664-.2392 1.71283-.7874 3.62491-1.3769 5.06055-.62 1.44821-1.3113 3.21187-.459 5.11328.7632 1.7047 3.8027 2.7539 3.8027 2.7539l1.0157-2.12304c.9322.8314 2.1515 1.46875 3.6406 1.46875 1.4887 0 2.7071-.63766 3.6387-1.46875l1.0156 2.12304s3.0395-1.0492 3.8027-2.7539c.8524-1.90141.161-3.66507-.459-5.11328-.6739-1.78318-1.1245-3.30323-1.3769-5.06055-.5796-4.33101-2.8791-6.80664-6.6211-6.80664zm0 2.2832c.9835.0776 2.1636.20902 3.3437 2.10938 1.7499 2.81932 1.9645 7.43037 1.5743 9.4414-.138.29908-.3333.51732-.4981.76563-1.1048 1.32352-2.6623 2.1289-4.418 2.1289-1.7559 0-3.315-.80537-4.4199-2.1289-.2056-.23017-.3513-.52681-.498-.76563-.3903-2.01103-.1776-6.62208 1.5722-9.4414 1.1802-1.90141 2.3603-2.03175 3.3438-2.10938z" + style="fill:#cab1fb;stroke-width:.524526" /> + transform="translate(4.0000004 92)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path208" + d="M1400.0293-16.76367c-3.7414 0-6.0413 2.47582-6.623 6.80469-.2388 1.71268-.7873 3.62459-1.377 5.06054-.62 1.4482-1.3113 3.21385-.459 5.11524.7632 1.70469 3.8028 2.75195 3.8028 2.75195l1.0156-2.12305c.9322.83141 2.1516 1.46875 3.6406 1.46875 1.4891 0 2.7085-.63734 3.6406-1.46875l1.0137 2.12305s3.0396-1.04726 3.8028-2.75195c.8523-1.90139.161-3.66704-.459-5.11524-.6772-1.7827-1.1236-3.30468-1.375-5.06054-.5796-4.33097-2.8817-6.80469-6.6231-6.80469zm1.9063 2.83008c.4701.30265.9538.78168 1.4375 1.56054 1.7498 2.8193 1.9625 7.4304 1.5722 9.44141-.1393.29797-.3333.51727-.498.76562-1.1049 1.32352-2.6621 2.12891-4.418 2.12891-1.7561 0-3.313-.80537-4.4179-2.12891-.2086-.22886-.3528-.52582-.5-.76562-.179-.92083-.2288-2.38902-.064-3.97852.01-.008 4.2625-3.35652 6.8886-7.02343z" + style="fill:#cab1fb;stroke-width:.52452" /> + transform="translate(-3.9999996 92)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path210" + d="M1432.0098-16.78516c-3.7414 0-6.0414 2.47583-6.6231 6.80469-.2387 1.71277-.7874 3.62493-1.3769 5.06055-.62 1.4482-1.3114 3.21385-.459 5.11523.7632 1.70469 3.8027 2.75196 3.8027 2.75196l1.0156-2.12305c.9323.8314 2.1516 1.46875 3.6407 1.46875 1.4879 0 2.7068-.63629 3.6386-1.4668l1.0157 2.1211s3.039-1.04727 3.8027-2.75196c.8523-1.90138.1605-3.66703-.459-5.11523-.6742-1.78309-1.1245-3.30322-1.3769-5.06055-.5796-4.33096-2.8792-6.80469-6.6211-6.80469zm-4.1973 6.20704v1.15624h8.3926v-1.15039c.9552 2.69763 1.0353 6.00029.7207 7.61915-.1379.29908-.3333.51732-.4981.76562-1.1049 1.32351-2.6623 2.12891-4.4179 2.12891-1.7559 0-3.3151-.8054-4.42-2.12891-.2055-.23018-.3513-.5268-.498-.76562-.3144-1.62002-.2359-4.92631.7207-7.625z" + style="fill:#cab1fb;stroke-width:.52452" /> + transform="translate(372 60)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path212" + d="M1079.9824 15.57422c-3.6222 0-6.3615 2.39722-6.9238 6.58789-.5623 4.19067.5058 5.74023.5058 5.74023h.5704l-.094 1.9375s-.8066 1.66978 0 2.93164c.9095 1.42523 3.9369 1.78321 5.9414 1.78321 2.0039 0 5.0294-.35756 5.9394-1.78125.8061-1.26186 0-2.93164 0-2.93164l-.094-1.9375h.5704s1.0701-1.54854.5078-5.74024c-.5623-4.19169-3.3016-6.58984-6.9239-6.58984zm1.8203 3.97656c.7136 1.6775 1.9516 3.0208 3.2813 4.04102v4.27929h.3906c-.3033.74641-.6996 1.41552-1.1777 1.98829-1.0787 1.29218-2.6001 2.08007-4.3145 2.08007-1.7143 0-3.2356-.78791-4.3144-2.08007-.4782-.57276-.874-1.24188-1.1778-1.98829h.3907V23.5957c2.7086-.4991 5.1574-1.93006 6.9218-4.04492z" + style="fill:#cab1fb;stroke-width:.512119" /> + transform="translate(364 60)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path214" + d="M1112 15.2207c-3.6918 0-6.5234 3.08927-7.2656 6.73828-.7558 3.72052-1.3384 7.63966 3.459 12.4375l.5605-1.19726.9863.87109.2012-1.21289L1112 34.64258l2.0586-1.78516.2031 1.21289.9844-.87109.5625 1.19726c4.7968-4.79784 4.2153-8.76985 3.459-12.48828-.7423-3.65214-3.5753-6.6875-7.2676-6.6875zm1.5 3.14063s1.3454 4.83825 4.1699 6.71094c.057 1.92717-.2494 3.28676-1.2734 4.73828-1.0994 1.31718-2.6491 2.11914-4.3965 2.11914-1.7474 0-3.2971-.80195-4.3965-2.11914-1.2032-1.31467-1.2131-3.00907-1.2734-4.62891 1.4267-.57844 5.227-2.46192 7.1699-6.82031z" + style="fill:#cab1fb;stroke-width:.521958" /> + transform="translate(356 60)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path216" + d="M327.97656 255.67383c-3.6037 0-6.01266 1.99573-7.00976 6.22461-.942 3.99603-.39788 6.16596.57422 8.5 1.4654 3.51914 2.5371 3.75 2.5371 3.75l1.99415-.72461 1.90429 1.20898 1.9043-1.20898 1.99219.72461s1.07376-.23086 2.53906-3.75c.9722-2.33404 1.51582-4.50397.57422-8.5-.9976-4.22888-3.40607-6.22461-7.00977-6.22461zm2.58985 4.5664c1.27138 2.39495 2.10077 4.32311 3.19336 6.75977-.3177 1.12583-.82453 2.1161-1.49219 2.91602-1.0732 1.28576-2.58536 2.06836-4.29102 2.06836-1.70566 0-3.21784-.78262-4.29101-2.06836-.51521-.61725-.93356-1.3493-1.24414-2.16797 2.33212-2.93084 5.33102-5.56355 8.125-7.50782z" + style="fill:#cab1fb;stroke-width:.509503" + transform="translate(816 -240)" /> + transform="translate(348 60)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path218" + d="M360.01562 255.11914c-3.718 0-6.53022 2.4602-7.10742 6.76172-.5772 4.30152.51953 5.89258.51953 5.89258h.58399l-.0937 1.99023s-.8274 1.71205 0 3.00781c.9336 1.46293 4.04016 1.83204 6.09765 1.83204 2.05691 0 5.16356-.36821 6.09766-1.83008.8274-1.29577 0-3.00977 0-3.00977l-.0977-1.98828h.58594s1.09869-1.59001.52149-5.89258c-.5772-4.30257-3.38941-6.76367-7.10743-6.76367zm5.23633 8.23242v4.39258h.39649c-.31108.76517-.71492 1.45192-1.20508 2.03906-1.10731 1.32641-2.66823 2.13477-4.42774 2.13477-1.75996 0-3.32048-.80835-4.42773-2.13477-.49013-.58714-.89555-1.27388-1.20703-2.03906h.39648v-4.39062c2.83528-.72008 6.89882-.53233 10.47461-.002z" + style="fill:#cab1fb;stroke-width:.525665" + transform="translate(816 -240)" /> + transform="translate(340 60)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path220" + d="M392.03906 255.60352c-3.6119 0-6.38277 3.01866-7.10937 6.59179-.7393 3.639-1.30814 7.47315 3.38476 12.16602l.54688-1.17188.96484.85157.19727-1.1836 2.01562 1.74414 2.01367-1.74414.19727 1.1836.96484-.85157.54883 1.17188c4.6923-4.69287 4.12261-8.57984 3.38281-12.2168-.7256-3.57313-3.49592-6.54101-7.10742-6.54101zm2.83985 3.98437 2.05664 1.22461s1.13946 2.57629.40234 7.47852c-.27435.58509-.60838 1.11713-.99805 1.58398-1.07543 1.28845-2.5915 2.07422-4.30078 2.07422-1.70927 0-3.22522-.7855-4.30078-2.07422-.3906-.46801-.72497-1.00102-1-1.58789-.73774-4.89969.40234-7.47461.40234-7.47461l2.05665-1.22461c1.96363-.1293 3.78524-.0927 5.68164 0z" + style="fill:#cab1fb;stroke-width:.510593" + transform="translate(816 -240)" /> + transform="translate(332 60)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path222" + d="M424.00977 255.5293c-3.6225 0-6.04458 2.0049-7.04688 6.25586-.947 4.01689-.39957 6.19675.57813 8.54296 1.473 3.53751 2.55078 3.77149 2.55078 3.77149l2.0039-.72852 1.91407 1.21485 1.91406-1.21485 2.0039.72852s1.07519-.23397 2.55079-3.77149c.9777-2.3462 1.52317-4.52607.57617-8.54296-1.0023-4.25096-3.42232-6.25586-7.04492-6.25586zm-3.60352 4.58984.006 2h7.20645l-.006-2c.50513 2.62722.97052 4.77942 2.11719 7.10156-.32098 1.00502-.79639 1.89241-1.40625 2.62305-1.07874 1.29234-2.59992 2.08008-4.31445 2.08008-1.71453 0-3.23559-.78775-4.31446-2.08008-.60994-.73062-1.08475-1.61804-1.40625-2.62305 1.15141-2.27211 1.63942-4.54382 2.11719-7.10156z" + style="fill:#cab1fb;stroke-width:.512163" + transform="translate(816 -240)" /> + transform="translate(324 60)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path224" + d="M455.97656 255.51562c-3.6263 0-6.80859 3.52019-6.80859 7.14649-.11129 3.93812-.4103 7.87458-.63867 11.80859h14.89648c-.11179-3.93746-.63867-7.86844-.63867-11.80859 0-3.6263-3.18425-7.14648-6.81055-7.14649zm3.37305 4.02344c.49389 1.55209 1.49052 2.58619 2.7832 3.29492.0575.59869.0688 1.22312.0293 1.86914-.12588 2.05639-.78531 3.84115-1.86523 5.13477-1.07995 1.29362-2.60426 2.08203-4.32032 2.08203-1.71628 0-3.23841-.78839-4.31836-2.08203-1.07994-1.29364-1.73962-3.07834-1.86523-5.13477-.0375-.61226-.0302-1.20536.0195-1.77539 4.66934.33846 7.43999-1.30056 9.53711-3.38867z" + style="fill:#cab1fb;stroke-width:.512696" + transform="translate(816 -240)" /> + transform="translate(316 60)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path226" + d="M487.99219 255.41992c-3.6461 0-7.36524 2.95638-7.36524 6.60352-.40352 2.78657-.80235 5.43144.76367 7.91601l.50196-.65234c.44106 2.04173 1.62208 3.80057 3.26953 4.82422l1.23828-1.29688 1.5918 1.84571 1.5957-1.84571 1.23828 1.29688c1.76102-1.18877 2.91166-2.88166 3.26758-4.82422l.50195.6543c1.25243-2.35641 1.39448-5.05098.76368-7.91602 0-3.64817-3.72109-6.60547-7.36719-6.60547zm3.11914 4.75 1.61914 1.39453s.44687 3.81372-.11133 5.28907c0 0 .66897-.16426 1.34375-.44532-.30508 1.33313-.86068 2.49992-1.62695 3.41797-1.0858 1.30087-2.61825 2.0918-4.34375 2.0918-1.7255 0-3.256-.79093-4.3418-2.0918-.76549-.9171-1.31972-2.08265-1.625-3.41406.67419.28055 1.3418.44531 1.3418.44531-.35733-.94426-.302-2.83857-.2168-4.08594l.41797 1.1543s1.16052-.25631 2.57812-2.06055l-.51562 2.23243c2.20559-.67792 4.12978-2.05695 5.48047-3.92774z" + style="fill:#cab1fb;stroke-width:.515496" + transform="translate(816 -240)" /> + transform="translate(308 60)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path228" + d="M520.01953 255.29688c-3.40127-.0967-6.34774 2.34179-6.88867 5.70117-.5016 2.82821-.77438 4.56486-2.14258 5.38281 0 0 .88525.0817 1.99805-.22266-.10836.8018-.26574 1.60817-.4961 2.21485-.8667 2.28257-.36348 4.56075 1.32422 5.97461l1.00391-2.14454c.46915.74758 1.15339 1.33582 1.96289 1.6875 2.06257.91185 4.41399.91185 6.47656 0 .80878-.35201 1.49231-.94022 1.96094-1.6875l1.00391 2.14454c1.6872-1.41386 2.18996-3.69409 1.32226-5.97461-.23034-.6065-.38608-1.41284-.49414-2.21485 1.11363.30491 2 .22071 2 .22071-1.3682-.81898-1.64243-2.55265-2.14453-5.38086-.54084-3.35862-3.48618-5.79692-6.88672-5.70117zm0 3.60351 1.91602 1.14063c1.11895 2.16256 1.66808 4.56572 4.14843 5.76367-.25824 1.59897-.85952 2.99106-1.74414 4.05078-1.08014 1.29396-2.60361 2.08008-4.32031 2.08008s-3.24004-.78614-4.32031-2.08008c-.88452-1.05948-1.48733-2.45055-1.7461-4.04883 2.33538-1.35436 3.04521-3.31809 4.1504-5.76367z" + style="fill:#cab1fb;stroke-width:.512823" + transform="translate(816 -240)" /> + transform="translate(300 60)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path230" + d="M552.00586 255.5918c-3.6142 0-6.78711 3.50686-6.78711 7.12109-.11078 3.92574-.40782 7.84982-.63477 11.77149h14.84571c-.11101-3.92508-.63477-7.84375-.63477-11.77149 0-3.61423-3.17486-7.12109-6.78906-7.12109zm-4.30274 7.42187h8.60547l1.86133 1.73438c-.12546 2.04929-.78305 3.82977-1.85937 5.11914-1.07632 1.28936-2.59236 2.07422-4.30274 2.07422-1.7106 0-3.22834-.78483-4.30469-2.07422-1.07632-1.28939-1.73418-3.06983-1.85937-5.11914z" + style="fill:#cab1fb;stroke-width:.510989" + transform="translate(816 -240)" /> + transform="translate(292 60)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path232" + d="M583.97461 255.16602c-3.6971 0-7.4707 2.99771-7.4707 6.69531-.40835 2.8263-.80951 5.50633.77539 8.02734l.50976-.66211c.44554 2.07087 1.6438 3.85306 3.31446 4.89063l1.25586-1.31641 1.61523 1.87305 1.61719-1.87305 1.2539 1.31641c1.78447-1.20566 2.95244-2.92173 3.31446-4.89063l.50976.66211c1.26847-2.38945 1.41365-5.12235.77539-8.02734 0-3.69865-3.7737-6.69531-7.4707-6.69531zm0 3.13086c.87879 2.24876 2.68343 3.1061 4.80469 3.0996 0 0 .45086 3.86783-.11524 5.36329 0 0 .67881-.16801 1.36328-.45313-.30963 1.35156-.87323 2.53382-1.65039 3.46484-1.10099 1.319-2.65276 2.12305-4.40234 2.12305-1.74959 0-3.30135-.80405-4.40234-2.12305-.77716-.93102-1.34076-2.11328-1.65039-3.46484.68451.28512 1.36328.45313 1.36328.45313-.5661-1.49598-.11524-5.36329-.11524-5.36329 1.98861.125 3.95034-1.00955 4.80469-3.0996z" + style="fill:#cab1fb;stroke-width:.522703" + transform="translate(816 -240)" /> + transform="translate(284 60)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path234" + d="M615.98633 255.01367c-3.45884-.098-6.45474 2.38246-7.00391 5.79883-.5106 2.87566-.79014 4.639-2.18164 5.47656 0 0 .91609.0987 2.04492-.31445-.1103.84326-.27296 1.69929-.51562 2.33789-.8814 2.32077-.3706 4.63691 1.3457 6.07422l1.02149-2.17969c.47628.76035 1.17144 1.35883 1.99414 1.7168 2.09797.92775 4.48992.92775 6.58789 0 .82271-.35795 1.51788-.95643 1.99414-1.7168l1.02148 2.17969c1.7158-1.43731 2.22565-3.75502 1.34375-6.07422-.24328-.63988-.40563-1.49837-.51562-2.34375 1.12964.41404 2.04687.31445 2.04687.31445-1.3914-.83286-1.66919-2.59504-2.17969-5.4707-.54938-3.41624-3.54515-5.89656-7.0039-5.79883zm-1.39063 6.83399 1.39063 2.08789 1.39062-2.08789 1.39063 2.08789.9707-1.45703c.50478 1.22356 1.46426 2.30457 2.44336 3.03515-.24512 1.70428-.86874 3.18593-1.80273 4.30469-1.09848 1.31578-2.6468 2.11719-4.39258 2.11719-1.7456 0-3.29585-.79974-4.39453-2.11524-.93348-1.11767-1.55727-2.59908-1.80274-4.30273 1.25728-.9484 1.84243-1.80338 2.44727-3.03711l.96679 1.45508z" + style="fill:#cab1fb;stroke-width:.52152" + transform="translate(816 -240)" /> + transform="translate(660 28)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path236" + d="M263.99414 286.91992c-3.13305 0-5.62801 1.73389-6.70508 4.83399-.20046.43723-1.68221 3.6865-2.28711 5.60156-.7559 2.39198-.92628 4.52671.041 5.8418 1.6578 2.25458 4.49414 2.19726 4.49414 2.19726s-.92465-.81901-1.19727-2.76562c.95784 2.12228 3.45151 3.07444 5.6543 3.08203 2.20279.008 4.65578-.99372 5.6543-3.08203-.27258 1.94661-1.19922 2.76562-1.19922 2.76562s2.83839.0573 4.49609-2.19726c.9679-1.31509.79702-3.44982.041-5.8418-.60528-1.91506-2.0867-5.16433-2.28711-5.60156-1.07685-3.1001-3.57111-4.83399-6.70508-4.83399zm4.87305 5.3457c.41095 2.64556.65836 5.11948.79101 7.45118-.3109.75039-.71238 1.42535-1.19531 2.0039-1.11734 1.33859-2.69287 2.1543-4.46875 2.1543s-3.35128-.81572-4.46875-2.1543c-.48297-.57853-.88401-1.25354-1.19531-2.0039.0511-.94302.12345-1.92575.20703-2.86914 3.70721-.84512 7.21534-2.4012 10.33008-4.58204z" + style="fill:#cab1fb;stroke-width:.53049" + transform="translate(816 -240)" /> + transform="translate(652 28)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path238" + d="M295.98242 287.08789c-3.7262 0-5.99679 2.34182-7.18359 5.96484-.50563 1.64669-.83047 3.34354-.96875 5.06055 0 0 .39006-.0771 1.03711-.39648.2552 1.18309.46175 2.37615.61914 3.57617.1249 1.9058-.0332 4.99805-.0332 4.99805l2.125-3.0625-.1582 3.09375 2.07388-2.94138c-.76273-.36895-1.38651-.96699-1.94888-1.64066-.97049-1.16257-1.61182-2.71369-1.84375-4.49804.68268-.43744 1.51075-1.08602 2.41016-2.04297 1.15226-1.23002 1.97874-2.72857 2.40429-4.35938 1.00985.27554 1.92331.14125 2.9336 0 .42555 1.63081 1.25204 3.12936 2.4043 4.35938.8988.95626 1.72572 1.60554 2.4082 2.04297-.23158 1.78434-.87142 3.33547-1.8418 4.49804-.56326.67484-1.14467 1.26046-1.90901 1.62945l2.03011 2.95259-.15821-3.09375 2.12305 3.0625s-.14994-3.09225-.0273-4.99805c.15739-1.20002.36394-2.39308.61914-3.57617.64714.31942 1.03711.39648 1.03711.39648-.13843-1.71699-.46326-3.41382-.96875-5.06055-1.1868-3.62302-3.4578-5.96484-7.1836-5.96484zm-1.55664 16.67008 1.55664 2.91407 1.55078-2.91211s-1.02874.21893-1.55078.21875c-.52407-.00019-1.06139-.0773-1.55664-.22071z" + style="fill:#cab1fb;stroke-width:.526755" + transform="translate(816 -240)" /> + transform="translate(644 28)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path240" + d="M328.01172 287.38086c-3.7009 0-6.30022 2.172-7.04492 6.39258-.6855 3.88356-1.97142 7.25373.67968 9.61914 1.4297 1.27219 3.94494 1.11681 6.36524 1.08594 2.4204.0309 4.93373.18625 6.36133-1.08594 2.6538-2.36279 1.36859-5.73558.68359-9.61914-.7453-4.22058-3.34392-6.39258-7.04492-6.39258zm1.78711 3.20117s1.01116 3.48614 4.30664 7.57422c-.30152 1.41861-.87781 2.65727-1.68555 3.625-1.10228 1.32061-2.65651 2.125-4.4082 2.125-1.75215 0-3.30591-.80437-4.4082-2.125-.76533-.91691-1.32507-2.07643-1.63868-3.40234.087-.0437 5.84323-2.9496 7.83399-7.79688z" + style="fill:#cab1fb;stroke-width:.523321" + transform="translate(816 -240)" /> + transform="translate(636 28)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path242" + d="M360.02148 287.65234c-3.01271 0-5.41131 1.66442-6.45117 4.64063-.17627.38421-1.62233 3.55292-2.20898 5.41015-.728 2.30368-.89244 4.35847.0391 5.625 1.5965 2.17136 4.33008 2.11524 4.33008 2.11524s-.89253-.78883-1.1543-2.66602c.9189 2.0469 3.37735 2.97307 5.44531 2.97266 2.06916-.00041 4.48687-.95915 5.44727-2.97656-.26119 1.87998-1.1543 2.66992-1.1543 2.66992s2.73348.0561 4.33008-2.11524c.9311-1.26653.76511-3.32132.0371-5.625-.58297-1.84589-2.01203-4.97972-2.20312-5.39648-1.03778-2.98474-3.43932-4.6543-6.45704-4.6543zm-4.76367 5.37696.16602 2.68164h9.19726l.16407-2.67774c.16959.83578.53853 4.11843.6914 6.94336-.29966.72272-.68516 1.37233-1.15039 1.92969-1.07608 1.28917-2.59437 2.07617-4.30469 2.07617-1.7103 0-3.22846-.78701-4.30468-2.07617-.46529-.55735-.85075-1.20697-1.15039-1.92969.1531-2.82894.5224-6.11731.6914-6.94726z" + style="opacity:1;fill:#cab1fb;stroke-width:.510906" + transform="translate(816 -240)" /> + transform="translate(628 28)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path244" + d="M391.98828 287.25586c-3.7014 0-7.32555 3.02682-7.65625 6.73242 0 0-.32921 2.92142 1.11719 2.82617-.10996 1.06946-.35316 2.13271-.70508 3.02149-.8504 1.4972-1.00579 3.34875.44531 4.49218 1.3361 1.0524 3.28063 1.24805 6.79883 1.24805 3.5183 0 5.46528-.19566 6.80078-1.24805 1.4516-1.14343 1.2952-2.99498.44532-4.49218-.43598-.76836-.62438-2.00447-.70704-3.02344.001.00009.003-.00009.004 0 1.4464.0973 1.11719-2.82617 1.11719-2.82617-.3324-3.70351-3.95876-6.73047-7.66016-6.73047zm1.61914 2.82422c.4438.9943 1.34992 3.4236 2.51172 4.98047.8121 1.08986 1.46776 1.58737 2.16406 1.71875-.16135 2.0041-.82215 3.74446-1.88476 5.01758-1.10223 1.32055-2.65829 2.125-4.41016 2.125-1.75187 0-3.30584-.80446-4.4082-2.125-1.06207-1.27229-1.72469-3.01118-1.88672-5.01368.69733-.13006 1.35329-.62952 2.16602-1.7207 1.15959-1.55687 2.06777-3.98826 2.51367-4.98047l1.61523.46289z" + style="fill:#cab1fb;stroke-width:.523316" + transform="translate(816 -240)" /> + transform="translate(620 28)" + inkscape:label="value-hairType-21"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path246" + d="M423.99219 287.25c-3.7351 0-6.35602 2.1927-7.10742 6.45117-.6918 3.91945-1.98976 7.32009.68554 9.70703 1.4427 1.28378 3.97948 1.12739 6.42188 1.09571 2.4424.0317 4.97932.18807 6.41992-1.09571 2.6774-2.3843 1.38125-5.78758.68945-9.70703-.7514-4.25847-3.37427-6.45117-7.10937-6.45117zm4.29101 7.17383 1.49805 4.97656c-.32606.90324-.7777 1.7074-1.33984 2.38086-1.11227 1.33252-2.68139 2.14258-4.44922 2.14258-1.76783 0-3.33486-.81007-4.44727-2.14258-.5622-.67345-1.01331-1.47764-1.33984-2.38086l1.49804-4.98047c2.57303-.65892 5.36766-.70452 8.58008.004z" + style="fill:#cab1fb;stroke-width:.528085" + transform="translate(816 -240)" /> + transform="translate(612 28)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path248" + d="M456.01172 287.64062c-3.6815 0-6.40306 2.5767-7.00586 6.76368-.2899 2.0102-.033 4.02516 0 5.75586-.0156 1.28081-.66341 2.47109-1.73047 3.17968 1.02524.70419 2.26254 1.03198 3.50195.92774 1.12752-.058 2.4393-.34926 3.73243-.51758-1.12363-.31771-2.11398-.99862-2.88282-1.91992-.93941-1.12572-1.56606-2.61809-1.80664-4.33594.92515-1.67545 3.9041-6.02062 9.97852-6.15039 0 0 .87396 4.10267 2.41601 6.05664-.23055 1.7579-.86354 3.28536-1.82031 4.43164-.76871.92098-1.75783 1.60072-2.88086 1.91797 1.29239.1685 2.60359.46004 3.73047.51758 1.24007.10479 2.47817-.22303 3.50391-.92774-1.06781-.70815-1.71637-1.8985-1.73243-3.17968.034-1.7307.29-3.7467 0-5.75586-.6022-4.18698-3.3218-6.76367-7.0039-6.76368z" + style="fill:#cab1fb;stroke-width:.520509" + transform="translate(816 -240)" /> + transform="translate(604 28)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path250" + d="M487.99023 287.73047c-3.66022.0496-6.64314 2.95188-6.79296 6.60937l-.51954 5.20118 1.25391-.58008s-.6124 3.82399-1.4082 4.52734c1.73613.0712 3.46431.0708 5.19726-.0254-.79368-.36195-1.49943-.91029-2.07812-1.60351-.73392-.8792-1.27308-1.98429-1.58594-3.2461l.74219-3.16992c.92294-.20341 1.82617-.48772 2.69922-.84961l.28906 1.64063c1.30729-.46846 2.22648-1.20802 2.89062-2.24219l.86133 1.46093c1.02543-.83458 1.65227-1.86709 2.23633-2.92382l1.4082 2.91406.74024 3.16602c-.31272 1.26334-.85131 2.36994-1.58594 3.25-.57869.69323-1.28444 1.24156-2.07812 1.60351 1.73021.14562 3.46592.0554 5.19921.0254-.7973-.70335-1.41015-4.52734-1.41015-4.52734l1.25586.58008-.52149-5.20118c-.14982-3.6575-3.13274-6.55979-6.79297-6.60937z" + style="fill:#cab1fb;stroke-width:.516029" + transform="translate(816 -240)" /> + transform="translate(596 28)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path252" + d="M520 287.16992c-3.1148 0-6.72304 2.86102-7.21484 6.50781-.18771 1.3911-.12241 2.54935.14257 3.50586-.16386 2.38697-.47292 5.70325-.95898 6.36914.93042-.29118 1.83412-.66168 2.70117-1.10742l-.4082 2.21289 3.13867-1.32284c-.70535-.36786-1.33746-.93164-1.86523-1.56388-.56496-.67676-1.01814-1.48486-1.34571-2.39257.23446.22899.49109.43284.76953.60937 0 0-.32798-5.04016.041-6.26953 0 0 1.80175-.82119 2.62305-2.00977l-.3711 2.05079s3.27901-.77932 4.34571-2.99219c.76889 1.44761 2.12492 2.22002 3.40234 2.95117.371 1.22937.041 6.27148.041 6.27148.27745-.17595.53184-.37936.76562-.60742-.32698.90609-.7797 1.71289-1.34375 2.38867-.52867.63341-1.16072 1.19784-1.86719 1.56583l3.14258 1.32675-.4082-2.21289c.86711.44508 1.77082.81492 2.70117 1.10547-.48731-.66662-.79694-3.97803-.96094-6.36523.26637-.95764.33045-2.11778.14258-3.51172-.4922-3.64944-4.09819-6.50977-7.21289-6.50977zm2.14062 16.38028c-.66393.27414-1.41323.42344-2.14062.42383-.72458.00039-1.47081-.14798-2.13281-.41992L520 305.36465Z" + style="fill:#cab1fb;stroke-width:.529903" + transform="translate(816 -240)" /> + transform="translate(588 28)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path254" + d="M551.99023 287.47461c-3.7141 0-6.4579 2.59937-7.0664 6.82227-.2924 2.02822-.033 4.06088 0 5.80664-.0156 1.29306-.67013 2.4946-1.74805 3.20898 2.41357 1.49507 4.86609.72384 7.29492.39844-1.13181-.32026-2.1298-.9921-2.90429-1.91992-.92819-1.11196-1.5531-2.57999-1.80664-4.26758l.53125-2.69727 1.16796 1.4961.88868-2.57422 1.32617 1.45312 1.24219-2.39258 1.07421 2.25196 1.07422-2.25196 1.24024 2.39258 1.32812-1.45312.88672 2.57422 1.16797-1.4961.5293 2.69141c-.25258 1.69001-.87557 3.16032-1.80469 4.27344-.77493.92837-1.77208 1.60185-2.9043 1.92187 2.48984.42041 5.24936.96212 7.29297-.40039-1.07718-.71483-1.73092-1.91629-1.74609-3.20898.034-1.74576.2925-3.77948 0-5.80664-.6079-4.2229-3.35086-6.82227-7.06446-6.82227z" + style="fill:#cab1fb;stroke-width:.525038" + transform="translate(816 -240)" /> + transform="translate(580 28)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path256" + d="M584.00977 287.52148c-3.70207.0509-6.71888 2.98626-6.8711 6.68555l-.52734 5.26367c.21721-.0944.42133-.18884.62286-.28364.21435-.10083.42576-.2021.64686-.30429 0 0-.61883 3.87005-1.42383 4.58008 1.75836.0906 3.50311.10955 5.25586.0371-.80228-.3659-1.51648-.98271-2.10156-1.68359-.83094-.99542-1.41693-2.27758-1.70899-3.74805.56133-1.44535 1.55388-4.0794 1.77344-5.17969l.89844 1.02149.89844-1.29883 1.17578 1.29883 1.36133-2.41211 1.36328 2.41406 1.17578-1.30078.89844 1.30078.89648-1.02149c.22034 1.10029 1.21222 3.73239 1.77344 5.17774-.29261 1.47046-.87805 2.75264-1.70899 3.74805-.58508.70088-1.29928 1.31769-2.10156 1.68359 1.75027.14823 3.50627-.006 5.25977-.0351-.8066-.71159-1.42578-4.58203-1.42579-4.58203l1.26977.58788-.52735-5.26367c-.15226-3.70003-3.17022-6.63566-6.87304-6.68555z" + style="fill:#cab1fb;stroke-width:.522079" + transform="translate(816 -240)" /> + transform="translate(572 28)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path258" + d="M616.00391 287.55469c-3.0454 0-6.57194 2.79778-7.05274 6.36328-.18341 1.35938-.12006 2.49282.13867 3.42773-.16064 2.3342-.46274 5.57724-.93945 6.22852.91084-.28435 1.7956-.64635 2.64453-1.08203l-.40039 2.16211 3.06836-1.29688c-.68914-.35992-1.30625-.90725-1.82227-1.52539-.55215-.66144-.99615-1.45102-1.3164-2.33789.22921.22385.47974.42313.75195.5957 0 0-.32164-4.41131.0391-5.61328a7.8231736 7.8231736 0 0 0 1.6836-1.0957l1.0039 1.45703 1.03516-1.42578 1.16602 1.36133 1.16601-1.36133 1.03711 1.42578 1.00391-1.45703a7.8299088 7.8299088 0 0 0 1.68164 1.0957c.3626 1.20197.041 5.61328.041 5.61328.27276-.17298.52238-.37315.75196-.59765-.31983.8876-.76395 1.67796-1.31641 2.33984-.51729.61976-1.13633 1.16725-1.82812 1.52735l3.07617 1.30078-.40039-2.16407c.84763.43555 1.73108.79755 2.64062 1.08203-.47658-.65197-.77936-3.89212-.93945-6.22656.2601-.93602.32225-2.07141.13867-3.43359-.4813-3.56654-4.00743-6.36328-7.05273-6.36328zm2.09375 16.01367c-.6496.26833-1.38232.41354-2.09375.41406-.70658.00052-1.43472-.14349-2.08008-.4082l2.08008 1.76758z" + style="fill:#cab1fb;stroke-width:.518091" + transform="translate(816 -240)" /> + transform="translate(948 -4)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path260" + d="M264.00195 319.03711c-3.11612 0-6.17628 2.26929-7.36328 5.25977l-.0117.01.002.0156c-.21186.53928-.36403 1.10092-.44336 1.67773-.29503 2.35103-.009 4.73854.83398 6.95312l.33203-.94921s1.26163 2.69048 2.01563 3.58789l.69726-1.24805c-.15757-.15312-.30826-.31514-.45117-.48633-.69296-.83008-1.21552-1.9176-1.53906-3.08984l.92187-2.66211c3.28803-.36055 6.35841-1.81936 8.71485-4.14063.79349 2.25617 1.26039 4.6064 2.22265 6.79493-.32337 1.17544-.84653 2.20715-1.54101 3.03906-.14231.17047-.29231.39041-.44922.54296l.69726 1.25001c.75151-.89741 2.01368-3.58789 2.01368-3.58789l.33203.94921c.84306-2.21447 1.13009-4.60193.83594-6.95312-.5243-3.7887-4.13432-6.96289-7.82032-6.96289zm1.08008 1.13086c.16012.0282.31607.063.4707.10351zm2.08594 14.81054c-.55228.38167-1.16319.66203-1.81836.82617l.81836.9336zm-6.32813.004 1 1.75781.82032-.93359c-.65536-.16349-1.26788-.44296-1.82032-.82422zm2.39063.93555.77148 1.2246.77344-1.2246c-.25294.0353-.51498.0547-.77344.0547-.25781-.00002-.51923-.0195-.77148-.0547z" + style="fill:#cab1fb;stroke-width:.521141" + transform="translate(816 -240)" /> + transform="translate(940 -4)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path262" + d="M296 319.1582c-3.7275 0-6.52365 3.426-7.50195 6.36133-.642 1.92702-1.34137 4.30663-.41797 7.33789.38635 1.06228 1.01495 2.01991 1.83594 2.79688l.48437-1.50391 1.31836 1.64649.45508-1.34688c-.21694-.19681-.42201-.43376-.61328-.66289-.99531-1.19232-1.64261-2.79167-1.85938-4.63281 1.54235-.43655 6.50242-2.1242 9.23438-6.39453.55165 2.45352 1.31123 4.47256 3.40039 6.03711-.17122 1.99166-.83539 3.72144-1.89453 4.99023-.19135.22923-.39809.46601-.61524.66289l.45703 1.34688 1.31836-1.64649.48438 1.50391c.82053-.77774 1.44847-1.73604 1.83398-2.79883.9235-3.03127.22403-5.41087-.41797-7.33789-.41175-1.23459-1.14781-2.55339-2.13672-3.66992l-.0254-.10743-.12695-.0645c-1.34564-1.45125-3.13405-2.51753-5.21288-2.51753Z" + style="fill:#cab1fb;stroke-width:.527085" + transform="translate(816 -240)" /> + transform="translate(932 -4)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path264" + d="M327.98828 319.75977c-3.6375 0-6.31013 2.19123-7.45703 5.93164-.8692 2.8368-.64064 6.76917 1.09766 10.47461 1.03024-.52142 2.12036-.88411 3.24609-1.14102-.4488-.30875-.85879-.71298-1.21875-1.14414-1.40816-2.15623-1.87242-4.01883-1.89063-6.25195 2.02893-2.08612 4.50782-5.94336 4.50782-5.94336l1.71484.55664 1.71484-.55664s2.47729 3.85483 4.50586 5.9414c.009 2.18211-.65394 4.73074-1.88867 6.25391-.35991.43116-.76993.83539-1.21875 1.14414 1.12575.25689 2.21586.61957 3.2461 1.14102 1.7383-3.70544 1.96625-7.63781 1.09765-10.47461-1.1469-3.74041-3.81943-5.93164-7.45703-5.93164z" + style="fill:#cab1fb;stroke-width:.514286" + transform="translate(816 -240)" /> + transform="translate(924 -4)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path266" + d="M360.01953 319.06445c-3.6809 0-7.28624 3.16968-7.80664 6.95313-.29479 2.34767-.009 4.73181.83203 6.94336l.33203-.94532c0 .00001 1.26068 2.68587 2.01367 3.58204l.69336-1.24419c-.9541-.99173-1.66475-2.44214-1.98632-3.57808l1.41015-4.10351.80274.69531 1.20507-1.12696 1.23438 1.09375 1.26953-1.09375 1.26758 1.09375 1.23633-1.09375 1.20312 1.12696.80469-.69727 1.4082 4.10547c-.42754 1.45364-1.11568 2.56981-1.98633 3.57613l.69727 1.24614c.7525-.89617 2.01172-3.58204 2.01172-3.58204l.33008.94532c.84226-2.21127 1.12929-4.59537.83593-6.94336-.5235-3.78345-4.12769-6.95313-7.80859-6.95313zm3.16016 15.92183c-.55227.38199-1.16294.66425-1.81836.82813l.82031.92968zm-6.31836.004.99805 1.7539.81835-.92968c-.6541-.16348-1.26486-.44367-1.8164-.82422zm2.38672.93554.77148 1.22266.76953-1.22266c-.25191.0351-.51237.0547-.76953.0547-.25781.00002-.51924-.0195-.77148-.0547z" + style="fill:#cab1fb;stroke-width:.52042" + transform="translate(816 -240)" /> + transform="translate(916 -4)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path268" + d="M391.99219 319.34375c-3.6913 0-6.45698 3.38939-7.42578 6.29492-.6355 1.90746-1.32817 4.26318-.41407 7.26367.38214 1.05173 1.00405 1.99997 1.81641 2.76954l.48047-1.49024 1.30469 1.63086.45312-1.35742c-1.77141-1.82016-2.51385-4.22022-2.50976-5.85742-.0208-.34018-.0274-.67386-.0215-1.00196h12.63086c.006.32811-.00064.66177-.0215 1.00196-.21586 2.34174-.83828 4.25496-2.50782 5.85742l.45313 1.35742 1.30469-1.63086.47851 1.49024c.81302-.7694 1.4356-1.71765 1.81836-2.76954.9141-3.00048.22144-5.35621-.41406-7.26367-.9689-2.90501-3.73458-6.29492-7.42578-6.29492z" + style="fill:#cab1fb;stroke-width:.521733" + transform="translate(816 -240)" /> + transform="translate(908 -4)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path270" + d="M424.00195 319.76953c-3.6377 0-6.31013 2.19112-7.45703 5.93164-.8692 2.83638-.64014 6.76957 1.09766 10.47461a14.171624 14.171624 0 0 1 3.24609-1.17187c-.44878-.30876-.85878-.68206-1.21875-1.11329-1.08337-1.29779-1.74679-3.08952-1.87304-5.15234-.0401-.65509-.0283-1.28808.0312-1.89453h12.34571c.0593.60648.0714 1.23939.0312 1.89453-.12627 2.0628-.78785 3.85455-1.8711 5.15234-.35992.43123-.76996.80453-1.21875 1.11329a14.166995 14.166995 0 0 1 3.24415 1.17187c1.73839-3.70504 1.9677-7.63823 1.0996-10.47461-1.1469-3.74052-3.81943-5.93164-7.45703-5.93164z" + style="fill:#cab1fb;stroke-width:.514303" + transform="translate(816 -240)" /> + transform="translate(900 -4)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path272" + d="M456.00977 319.54102c-3.6595 0-7.08594 2.96455-7.08594 6.62304 0 0-.33753 4.1407 1.04297 7.26953.54441 1.33567 1.44412 2.49678 2.60156 3.35743l1.2793-1.24973c-.84132-.36095-1.58801-.94839-2.19532-1.67606-1.06446-1.27542-1.7228-3.02566-1.87109-5.04101 1.4211-2.06481 4.5918-5.10547 4.5918-5.10547l-.9043 2.32813c1.6017-.51597 2.96638-1.36538 4.17969-2.32813 0 0 3.16754 3.03682 4.58984 5.10156-.14761 2.01643-.80601 3.76881-1.87109 5.04492-.60762.72802-1.35526 1.31511-2.19727 1.67606l1.2793 1.24973c1.15759-.86049 2.05734-2.02166 2.60156-3.35743 1.38-3.12883 1.04492-7.26953 1.04492-7.26953 0-3.65849-3.42633-6.62304-7.08593-6.62304zm-1.75391 16.15261 1.75391 2.20508 1.75195-2.20313c-.55249.18622-1.16018.28738-1.75195.28711-.59252-.00027-1.20075-.10236-1.75391-.28906z" + style="fill:#cab1fb;stroke-width:.517248" + transform="translate(816 -240)" /> + transform="translate(892 -4)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path274" + d="M488.00391 318.85352c-4.044 0-6.32336 2.28963-7.25196 5.2246-.56005 1.77045-1.92795 6.39401 2.06836 8.65626-.54983-.96625-.92177-2.10628-1.09375-3.36133.47019-.90803 2.26522-4.18229 4.40039-5.58203l-.32617 1.58984 3.99805-1.54883.082-.041c2.13327 1.3985 3.92825 4.66666 4.40039 5.57812-.17082 1.25504-.54161 2.39454-1.08984 3.36133 3.98997-2.2632 2.62195-6.88259 2.0625-8.65235-.9281-2.93655-3.206-5.2246-7.25-5.2246z" + style="fill:#cab1fb;stroke-width:.527589" + transform="translate(816 -240)" /> + transform="translate(884 -4)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path276" + d="M519.99219 319.64648c-3.38924-.00003-6.29175 2.42777-6.89063 5.76368-.6473 3.17567-.56887 6.39553.92383 7.63086.51334.42402 1.11483.74419 1.74945.98828-1.39592-1.54831-1.87171-3.50307-2.02875-5.08399.95191-1.39999 2.89694-3.41015 6.2461-3.41015 3.35063 0 5.29447 2.01204 6.24609 3.41211-.3359 1.96335-.59423 3.66186-2.02795 5.08203.63582-.24425 1.23245-.56351 1.7467-.98828 1.4937-1.23325 1.57368-4.45519.92578-7.63086-.59888-3.3359-3.50139-5.76371-6.89062-5.76368z" + style="fill:#cab1fb;stroke-width:.51992" + transform="translate(816 -240)" /> + transform="translate(876 -4)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path278" + d="M552.00195 319.50195c-3.6685 0-7.10351 2.97314-7.10351 6.64063 0 0-.33898 4.15059 1.04492 7.28711.54613 1.33954 1.44853 2.50401 2.60937 3.36719l1.28516-1.2754c-.84446-.362-1.59355-.93188-2.20312-1.6621-.99811-1.19566-1.64287-2.8081-1.84375-4.66407 1.40163-1.33984 2.09179-3.72851 2.09179-3.72851l1.3711.95312 1.375-1.35547 1.37304 1.35547 1.37305-1.35547 1.375 1.35547 1.37305-.95312s.68935 2.38393 2.08789 3.72461c-.20015 1.85757-.84313 3.47147-1.8418 4.66797-.6095.73023-1.35864 1.3001-2.20312 1.6621l1.28515 1.2754c1.16027-.86328 2.06201-2.02778 2.60742-3.36719 1.3839-3.13652 1.04688-7.28711 1.04688-7.28711 0-3.66749-3.43502-6.64063-7.10352-6.64063zm-1.75781 16.17383 1.75781 2.21289 1.75782-2.21289c-.55404.18705-1.16401.28906-1.75782.28906s-1.20379-.10201-1.75781-.28906z" + style="fill:#cab1fb;stroke-width:.518519" + transform="translate(816 -240)" /> + transform="translate(868 -4)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path280" + d="M583.99023 319.20898c-3.9629 0-6.19556 2.24301-7.10546 5.11914-.54826 1.73481-1.9203 6.26281 1.99132 8.48047-.53728-.94635-.8668-2.06245-1.03429-3.29101.26935-.5201.97543-1.81844 1.93945-3.0957l.79297.26953 1.13867-.38672 1.13867.38672 1.13867-.38672 1.14063.38672 1.13867-.38672 1.13867.38672.79492-.26953c.96395 1.27717 1.67012 2.57563 1.93946 3.0957-.16728 1.22753-.48828 2.34298-1.02462 3.28906 3.90779-2.21826 2.52782-6.74414 1.9797-8.47852-.91-2.87718-3.14443-5.11914-7.10743-5.11914z" + style="fill:#cab1fb;stroke-width:.517014" + transform="translate(816 -240)" /> + transform="translate(860 -4)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path282" + d="M615.49219 319.64258c-3.1929.23485-5.82119 2.60272-6.38672 5.7539-.6482 3.18047-.56922 4.61645.92578 5.85157.0823.0679.13336.13507.22042.19788-.27593-.77578-.42447-1.62734-.50362-2.53187.53975-.55198 2.22289-1.83203 6.25781-1.83203 4.03379 0 5.71745 1.27981 6.25781 1.83203-.0792.90389-.23145 1.75197-.50704 2.52735.0864-.0624.14217-.12591.22384-.19336 1.496-1.23512 1.57458-2.6711.92578-5.85157-.63412-3.53304-3.83418-6.01655-7.41406-5.7539z" + style="fill:#cab1fb;stroke-width:.520706" + transform="translate(816 -240)" /> + transform="translate(1236 -36)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path284" + d="M263.99609 351.13867c-3.6928 0-6.26602 1.57327-7.39062 5.76563a7.0257235 7.0257235 0 0 0 .20117 4.60351L256 362.67969l.80664 1.04883-.68555 1.57421 1.37305 1.37305 2.57227-.36523c-.1637-.15789-.32079-.3247-.46875-.50196-1.0997-1.31737-1.77221-3.13666-1.90039-5.23047-.0112-.1828-.0161-.36354-.0195-.54296a12.222055 12.222055 0 0 0 3.85352-5.75586l2.46484.44336 2.46289-.44336a12.222055 12.222055 0 0 0 3.85352 5.7539c-.003.18007-.008.36145-.0195.54492-.12819 2.0938-.8007 3.9131-1.90039 5.23047-.14737.17654-.30389.34267-.4668.5l2.57227.36719 1.37304-1.37305-.6875-1.57421.80664-1.04883-.80664-1.17188a7.0215469 7.0215469 0 0 0 .20118-4.60351c-1.1246-4.19236-3.69598-5.76563-7.38868-5.76563z" + style="fill:#cab1fb;stroke-width:.522087" + transform="translate(816 -240)" /> + transform="translate(1228 -36)" + inkscape:label="value-hairType-24"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path286" + d="M295.99414 351.64648c-2.42175.0442-3.80863.60181-4.84375 1.65627-1.13442 1.34706-1.78248 3.03671-1.83984 4.79688l-.17774 1.78125-1.49414 3.67773.64649 1.9336-.76758 1.85547 1.25195 2.21875 2.51172-1.57032 2.05469 1.65039 2.6582-1.4121 2.6582 1.4121 2.05469-1.65039 2.50977 1.57032 1.2539-2.21875-.76758-1.85547.64649-1.9336-1.49609-3.67773-.17774-1.78125c-.0574-1.76017-.70542-3.44982-1.83984-4.79688-1.62106-1.35076-2.39539-1.70091-4.8418-1.65627zm-4.23633 3.93164c2.76886.24219 5.68656.29925 8.47461 0 .58631.94416 1.24589 1.84081 1.97266 2.68165.1024.74127.13214 1.52591.082 2.34375v.002c-.12828 2.09248-.79954 3.91014-1.89844 5.22656-1.09908 1.31665-2.64772 2.11719-4.39453 2.11719-1.7468 0-3.29727-.80056-4.39648-2.11719-1.09922-1.31663-1.77228-3.13556-1.90039-5.22851-.0499-.81559-.0198-1.59692.082-2.33594.72912-.84313 1.39067-1.7424 1.97851-2.68946z" + style="fill:#cab1fb;stroke-width:.521815" + transform="translate(816 -240)" /> + transform="translate(1220 -36)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path288" + d="M322.92773 353.32227c-1.31515 2.07598-1.95622 4.1163-2.25195 6.35937l-1.32617 2.82813c.49024.68883 1.00422 1.36046 1.54101 2.01367l-.27343 2.36328 2.77148 2.5918-.14844-1.95704 2.19532 2.36133.9375-2.1582c-1.04524-.32761-1.96648-.96597-2.68946-1.83203-.40892-.48988-.75375-1.05258-1.03515-1.67188l.63086-1.82617-.35157-2.24609 1.00782-1.95508.28515 2.12891s4.1072-2.62457 6.18164-5.3418l2.66211 5.16797-.35156 2.24609.63281 1.82617c-.28147.61958-.62807 1.18181-1.03711 1.67188-.72287.86607-1.64418 1.50442-2.68945 1.83203l.9375 2.1582 2.19531-2.36133-.14648 1.95704 2.76953-2.5918-.27344-2.36328c.53679-.65321 1.05078-1.32484 1.54102-2.01367l-1.32422-2.82813c-.37883-2.12677-.92144-4.82097-2.25391-6.35937-1.91385-1.91293-7.6684-2.15232-10.13672 0zm3.7461 14.48632 1.32226 1.79297 1.32227-1.79297c-.42395.10625-.86622.16407-1.32227.16407-.45604 0-.89833-.0578-1.32226-.16407z" + style="fill:#cab1fb;stroke-width:.511977" + transform="translate(816 -240)" /> + transform="translate(1212 -36)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path290" + d="m356.11523 350.72656-3.34765 2.45703-.51758 1.63477-1.40625 1.34766.55078 1.74609-.90039 1.65625.94531 2.09375-.40625 1.48047 1.89258 1.83203 1.59375-.91211c-.46689-1.03123-.75476-2.21935-.83398-3.51367-.01-.15983-.0156-.31736-.0195-.47461l.92382-.63477.43555-2.04883 2.26758-1.52539c.4576-.56525.85188-1.17893 1.17578-1.83007l1.52734.043 1.52539-.0449c.32391.65114.71819 1.26483 1.17579 1.83008l2.26757 1.52734.4375 2.04883.92383.63477c-.004.15725-.01.31478-.0195.47461-.0792 1.29434-.3671 2.48245-.83398 3.51367l1.59375.91211 1.89257-1.83203-.40625-1.48047.94727-2.09375-.90234-1.65625.55078-1.74609-1.40625-1.34766-.51758-1.63477-3.34766-2.45703-3.88086.36524z" + style="fill:#cab1fb;stroke-width:.523077" + transform="translate(816 -240)" /> + transform="translate(1204 -36)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path292" + d="M391.98633 351.51953c-3.6955 0-6.54584 3.03184-7.27344 6.51172l-.72656 1.16016 1.00976 2.56054-.88867 2.07813 1.85938 1.91992-.28321 1.51953 1.33399 2.40039.72851-1.64062 2.00391 1.88086 1.00977-1.22852 1.22656 1.22852 1.21289-1.21094 1.02539 1.21094 2.00195-1.88086.72656 1.64062 1.33399-2.40039-.2832-1.51953 1.85937-1.91992-.88672-2.07813 1.00977-2.56054-.72852-1.16016c-.7266-3.47988-3.57598-6.51172-7.27148-6.51172zm1.27929 5.23047a32.875529 32.875529 0 0 0 4.9004 4.56836c-.21444 1.80119-.85014 3.36625-1.82422 4.5332-1.08929 1.30498-2.62448 2.09961-4.35547 2.09961-1.73099 0-3.26813-.79463-4.35742-2.09961-1.01527-1.21629-1.6617-2.86579-1.84766-4.76367 1.18695-.66977 4.00658-2.40649 4.88477-4.25781l-.59961 2.04101z" + style="fill:#cab1fb;stroke-width:.517147" + transform="translate(816 -240)" /> + transform="translate(1196 -36)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path294" + d="M418.86523 353.12109c-1.33107 2.10076-1.97966 4.16569-2.27929 6.43555l-1.3418 2.85938c.49576.69753 1.01561 1.37762 1.55859 2.03906l-.27539 2.39062 2.80469 2.62305-.14844-1.98047 2.22071 2.38867.94726-2.18359c-1.05683-.33194-1.98972-.97786-2.7207-1.85352-.41367-.49553-.76365-1.06512-1.04883-1.6914l.64063-1.84961-.35743-2.27344 2.97266-5.76953c.70712.23437 1.42785.42548 2.1582.57226.7297-.14683 1.44978-.33793 2.15625-.57226l2.97266 5.76953-.35742 2.27344.64062 1.85156c-.28505.62564-.63555 1.19435-1.04882 1.68945-.73134.87615-1.66371 1.52174-2.72071 1.85352l.94727 2.18359 2.22265-2.38867-.15039 1.98047 2.80469-2.62305-.27539-2.39062c.54232-.66147 1.06151-1.34156 1.55664-2.03906l-1.33984-2.86329c-.38492-2.15092-.93182-4.87785-2.2793-6.43359-1.4958-1.65803-2.32427-1.61111-5.12891-1.44922-3.27767-.31749-4.08667.34268-5.13086 1.45117zm3.79102 14.65821 1.33984 1.81445 1.33789-1.81445c-.42919.10771-.87603.16601-1.33789.16601-.4625 0-.90989-.058-1.33984-.16601z" + style="fill:#cab1fb;stroke-width:.518135" + transform="translate(816 -240)" /> + transform="translate(1188 -36)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path296" + d="M455.77539 351.37891a7.1420165 7.1420165 0 0 0-7.11133 6.4707 10.003352 10.003352 0 0 0-.0605 2.20703l-1.3418 1.3125 1.40234 1.83203-1.46289 1.83008 1.83203 1.83203-1.77148 1.98242 2.4707 1.64844 2.01367-1.64844 2.01368 1.64844 2.01562-1.25 2.01367 1.25 2.01367-1.64648 2.01563 1.64648 2.46875-1.64648-1.76953-1.98438 1.83203-1.83203-1.46484-1.83008 1.40429-1.83203-1.34179-1.3125a10.052756 10.052756 0 0 0-.0625-2.20703 7.1420165 7.1420165 0 0 0-7.10938-6.4707zm2.1543 3.01562.99804.38477.0957 1.57617 1.51172 1.48047.1289 2.02539 1.30274 1.02929c-.15753 1.97443-.80901 3.68975-1.85547 4.94336-1.08395 1.29852-2.61319 2.08789-4.33594 2.0879-1.72304-.00003-3.25195-.79122-4.33594-2.08985-1.04598-1.25308-1.69934-2.96684-1.85742-4.93945l1.97852-.25781.93359-1.73829 2.02539-.32031.61133-1.92969 2.1875-.54882z" + style="fill:#cab1fb;stroke-width:.514629" + transform="translate(816 -240)" /> + transform="translate(1180 -36)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path298" + d="M487.99805 351.75195c-3.6318 0-7.09375 2.6655-7.09375 6.29883-.0257.90492.075 1.80577.14258 2.70703l-.19727 1.47071.45312.54101-.81054 2.87695 1.42969 2.17188-.59571 2.24805 1.90625-1.98047 1.11133 2.28515 1.58789-2.05664 2.06641 1.98047 2.0664-1.98047 1.58789 2.05664 1.11328-2.28515 1.90626 1.98047-.59571-2.24805 1.42969-2.17188-.8125-2.875.45508-.54296-.19922-1.4668c.0886-.9033.14258-1.80431.14258-2.71094 0-3.63333-3.46195-6.29883-7.09375-6.29883zm3.06836 4.19141 1.58007 1.79687-.71484 3.93165.95313 3.25781c.007.0911-.41664.73183-.56055.93359-1.08171 1.29589-2.60724 2.08399-4.32617 2.08399-1.71938 0-3.2425-.7878-4.32422-2.08399-.22035-.28845-.38942-.61348-.56055-.93359l.95313-3.25781-.41602-2.28321c.97946-.63659 2.53391-1.67377 3.32227-2.34961l-1.28516 2.78125c2.05365-.88564 3.88932-2.20873 5.37891-3.87695z" + style="fill:#cab1fb;stroke-width:.513545" + transform="translate(816 -240)" /> + transform="translate(1172 -36)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path300" + d="m520.00586 350.32812-1.61524 1.06055-1.98437-.59961-.41797 1.92774c-1.83319 1.17602-3.08769 3.0684-3.45703 5.21484-.36711 1.5497-.14838 3.82967.34766 4.98047l.44921 1.67969-.13867 2.53515 1.24805 1.45313.23242 2.0332.80664-2.16211-.88281-1.36523.50195-1.97071c-.5653-.89094-.96867-1.94863-1.18554-3.12304 1.71771-1.60147 4.92112-4.92912 6.08398-8.4336l.0117-.002.0117.002c1.16415 3.50173 4.3639 6.82676 6.08203 8.42969-.2166 1.17671-.61926 2.2366-1.18555 3.12891l.50391 1.96875-.88281 1.36523.80664 2.16211.23242-2.0332 1.24805-1.45313-.13868-2.53515.44922-1.68164c.46228-1.76237.57842-3.38807.34766-4.97852-.36934-2.14644-1.62384-4.03882-3.45703-5.21484l-.41797-1.92774-1.98438.59961z" + style="fill:#cab1fb;stroke-width:.51871" + transform="translate(816 -240)" /> + transform="translate(1164 -36)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path302" + d="M552.00195 351.22656c-3.72691-.00008-6.84241 2.83457-7.19336 6.54492-.10275.73961-.12306 1.48834-.0605 2.23243l-1.35938 1.33007 1.41992 1.85157-1.48242 1.85156 1.85547 1.85351-1.79297 2.00586 2.5 1.66602 2.03711-1.66602 2.03711 1.66602 2.03906-1.26367 2.03711 1.26562 2.03906-1.66601 2.03711 1.66601 2.49805-1.66601-1.79101-2.00782 1.85351-1.85351-1.48047-1.85156 1.41992-1.85157-1.35742-1.33007c.0611-.74418.0402-1.49283-.0625-2.23243-.35095-3.71035-3.46645-6.545-7.19336-6.54492zM550.50391 354.5l1.49804 1.17383L553.5 354.5l1.40039.83008-.20117 1.47265c1.00562 1.45846 2.23002 2.59716 3.58789 3.69727-.002.0445-.003.0881-.006.13281-.12783 2.08793-.79796 3.90309-1.89453 5.2168s-2.64189 2.11133-4.38477 2.11133c-1.74291 0-3.29003-.79953-4.38672-2.11328-1.09668-1.31376-1.7667-3.12714-1.89453-5.21485-.003-.0447-.004-.0883-.006-.13281 1.46318-.97387 2.47745-2.3578 3.58789-3.69141l-.20117-1.41015z" + style="fill:#cab1fb;stroke-width:.52063" + transform="translate(816 -240)" /> + transform="translate(1156 -36)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path304" + d="M583.98438 351.52344c-3.68081 0-7.18946 2.70148-7.18946 6.38281-.0261.91733.076 1.83052.14453 2.74414l-.20117 1.48828.46289.55078-.82422 2.91407 1.44922 2.20117-.60351 2.27734 1.93164-2.00586 1.12695 2.31445 1.60937-2.08398 2.09376 2.00781 2.09374-2.00781 1.60938 2.08398 1.12695-2.31445 1.93164 2.00586-.60351-2.27734 1.44922-2.20117-.82422-2.91407.46094-.54883-.20118-1.48828c.09-.91501.14454-1.8277.14454-2.74609 0-3.68133-3.50671-6.38281-7.1875-6.38281zm-1.20704 2.08398 1.20704.92578 1.20703-.92578 3.50195 3.98438-.72461 3.98437.9668 3.30078c.0191.14177-.42229.7432-.56641.94532-1.09609 1.3132-2.64267 2.11328-4.38476 2.11328-1.74212 0-3.28659-.7998-4.38282-2.11328-.22349-.29195-.39461-.62129-.56836-.94532l.9668-3.30078-.72461-3.98437Z" + style="fill:#cab1fb;stroke-width:.520402" + transform="translate(816 -240)" /> + transform="translate(1148 -36)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path306" + d="m616.00195 350.33789-1.61328 1.06055-1.98047-.59961-.41797 1.92578c-1.83024 1.17435-3.08262 3.06389-3.45117 5.20703-.40729 1.46428-.0782 3.9947.33594 4.92774l.45898 1.7207-.13867 2.53125 1.2461 1.44922.23242 2.03125.80664-2.15821-.88281-1.36132.50195-1.9668c-.64162-1.0107-1.07412-2.23573-1.26172-3.60352.51154-.70425 1.19679-1.62254 2.02734-2.68359h8.27344c.82991 1.05997 1.51396 1.97766 2.02539 2.68164-.1875 1.36868-.6199 2.59417-1.26172 3.60547l.50391 1.9668-.88281 1.36132.80664 2.15821.23242-2.03125 1.24414-1.44922-.13672-2.53125.45899-1.7207c.44266-1.49909.53972-3.52311.33593-4.92774-.3686-2.14209-1.62017-4.03078-3.44922-5.20508l-.41992-1.92773-1.98047.59961z" + style="fill:#cab1fb;stroke-width:.517894" + transform="translate(816 -240)" /> + transform="translate(1524 -68)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path308" + d="M264.00195 382.27148c-.0329-.0324-2.04883.52344-2.04883.52344l-2.7871-.47851-1.30664 2.04687-2.31055 1.17578.4375 2.7461-.82813 1.78515 1.87305 2.3086.24414 3.02148-.0273 1.03125.99804-1.01172c-.17381-.49368-.3079-1.01848-.40429-1.5664l1.02734-2.80664c.0518.003.64453-2.3711.64453-2.3711v2.25195c2.7354-.41938 5.57472-.35512 8.97656 0v-2.25195s.59254 2.3711.64454 2.3711l1.02734 2.80664c-.0959.54902-.23033 1.07383-.4043 1.56836l.9961 1.00976-.0274-1.03711.2461-3.01562 1.87304-2.3086-.82812-1.78515.43554-2.7461-2.30859-1.17578-1.30664-2.04883-2.78906.48047s-2.01388-.55584-2.04688-.52344z" + style="fill:#cab1fb;stroke-width:.522802" + transform="translate(816 -240)" /> + transform="translate(1516 -68)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path310" + d="m295.99219 382.24219-.93164 1.73437-1.56836-.96289-.48047 1.80469c-.0157.008-.0313.0156-.0469.0234l-1.60351-1.15039-.0879 2.39257c-.3286.32473-.6225.68278-.87696 1.06836-.8165 1.1863-1.2525 2.59307-1.25 4.03321-.0458.99529.0419 2.09105.15235 2.97265l1.59961-1.70312s6.01909-1.15667 9.12109-3.8418l1.20313 1.75977 1.36328 4.2539c.28197-1.22894.25976-2.20115.25976-3.4414.003-1.43993-.43223-2.84668-1.24804-4.03321-.25709-.38877-.55429-.74948-.88672-1.07617l-.0899-2.38476-1.59961 1.14843c-.0162-.009-.0325-.0183-.0488-.0273l-.48047-1.79883-1.56836.96289z" + style="fill:#cab1fb;stroke-width:.520476" + transform="translate(816 -240)" /> + transform="translate(1508 -68)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path312" + d="M327.98633 383.69531c-3.60236-.0547-6.63838 2.67572-6.96485 6.26367-.1987 2.78393.16442 3.38361.94922 4.85938 0 0 .31712-1.63256.64453-3.21875 1.78391-.27766 5.543-1.23003 7.95313-4.45508 0 0 1.6335 1.68175 3.00391 5.45117.23858 1.18417.44335 2.22266.44335 2.22266.57346-1.07813.92167-1.69203.99024-3.02539 1.75731.69419 2.6875-1.14258 2.6875-1.14258-.5756.0132-1.14306-.14339-1.63086-.44922-1.1732-.71575-1.14262-3.36487-1.69922-4.88281-.45296-2.99996-4.26672-4.03704-6.37695-1.62305z" + style="fill:#cab1fb;stroke-width:.52706" + transform="translate(816 -240)" /> + transform="translate(1500 -68)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path314" + d="M1175.9945 145.83876a5.8001098 5.8001098 0 0 1 3.6391 1.29966l1.4623 4.34969.01.84946 1.8195 1.12654 1.8627-3.33596-.8224-1.77637.4336-2.72928-2.2958-1.16969-1.2996-2.0363-2.773.47671s-2.0035-.55209-2.0363-.51986c-.032-.0322-2.0363.51986-2.0363.51986l-2.7724-.47671-1.2997 2.0363-2.2962 1.16969.4336 2.72928-.8235 1.77637 1.8627 3.33596 1.8195-1.12654.01-.84946 1.4634-4.34969a5.8001098 5.8001098 0 0 1 3.639-1.29966z" + style="fill:#cab1fb;stroke-width:.519863" /> + transform="translate(1492 -68)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path316" + d="m392.00195 382.34375-.92578 1.72266-1.55664-.95703-.47461 1.7871c-.0163.008-.0326.0169-.0488.0254l-1.58984-1.13868-.0879 2.36914c-.32886.32449-.62278.68256-.87695 1.06836-.81004 1.17718-1.24262 2.57301-1.24024 4.00196v1.24023c-.00018.73278.0857 1.46304.25586 2.17578l1.35352-4.22265.50976-1.20118v2.11719c3.22213-.65117 6.42167-.59503 9.36524 0v-2.11523l.50976 1.19922 1.34766 4.22265c.17016-.71274.25604-1.443.25586-2.17578v-1.24023c.003-1.42899-.42999-2.82489-1.24024-4.00196a6.6078672 6.6078672 0 0 0-.87304-1.06445l-.0879-2.37305-1.5918 1.14063c-.0143-.008-.0286-.0157-.043-.0234l-.47851-1.79101-1.55665.95703z" + style="fill:#cab1fb;stroke-width:.51666" + transform="translate(816 -240)" /> + transform="translate(1484 -68)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path318" + d="M424.00781 383.72266c-3.59641-.055-6.62797 2.67003-6.95508 6.25195-.1989 2.77974.16562 3.38193.94922 4.85547 0 0 .39342-2.04652.76172-3.79688.3327-1.5888.65235-3.3789.65235-3.3789v2.83984h9.19726v-2.83984s.31779 1.78958.65039 3.3789c.3669 1.75036.76367 3.79688.76367 3.79688.57241-1.07725.91984-1.69113.98828-3.02344 1.75465.69314 2.6836-1.14258 2.6836-1.14258-.5749.0132-1.13975-.1419-1.62695-.44726-1.171-.71467-1.14147-3.35988-1.69727-4.875-.62039-3.05459-4.26168-4.02928-6.36719-1.61914z" + style="fill:#cab1fb;stroke-width:.526267" + transform="translate(816 -240)" /> + transform="translate(1476 -68)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path320" + d="M455.99414 383.54883c-3.6705 0-6.0768 2.63189-6.7832 6.34179 0 0-3.6138 11.44141 6.7832 11.44141 4.5701 0 6.43272-2.21158 7.08594-4.68945l.74219 1.55859c.91992-1.65107 1.33805-3.5347 1.20312-5.41992-.14467-2.06767-.99478-4.023-2.4082-5.53906-.43839-.0819-.71422-.34366-1.06249-.58399-1.19272-1.91248-3.08888-3.10937-5.56055-3.10937zm-4.1543 3.95312c2.85729.64642 4.92673.92094 8.30664 0 .91328 3.33104 1.53424 6.27888.86329 9.44141-.19493.32587-.40919.63212-.64454.91406-1.09322 1.30969-2.63385 2.10742-4.37109 2.10742s-3.27787-.79773-4.37109-2.10742c-.2358-.28249-.44946-.58943-.64453-.91601-.859-3.12808-.0622-6.302.86132-9.43946z" + style="fill:#cab1fb;stroke-width:.519016" + transform="translate(816 -240)" /> + d="M1276.498 147.07981c.5367-1.00701 1.0262-1.27452 2.102.15312-.7254.11908-1.0763.52978-1.4748.87471-.086-.43917-.2843-.73967-.6272-1.02783z" + style="fill:#cab1fb;stroke-width:.519016" /> + transform="translate(1468 -68)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path323" + d="M488.00195 382.25391a2.7381567 2.7381567 0 0 0-2.64843 2.37695 6.7197377 6.7197377 0 0 0-4.07227 6.16992v2.73828a13.685537 13.685537 0 0 1 9.25586-5.59765 43.805261 43.805261 0 0 1 4.18359 5.59765v-2.73828a6.7197377 6.7197377 0 0 0-4.00195-6.13476 2.737632 2.737632 0 0 0-2.7168-2.41211z" + style="fill:#cab1fb;stroke-width:.524652" + transform="translate(816 -240)" /> + transform="translate(1460 -68)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path325" + d="M520.01172 383.58008c-3.6927 0-6.76565 3.01996-7.46875 6.74609 0 0-.58363 3.36008.85547 3.22071.6734-.0647 3.88598-4.45631 4.67578-6.22071l1.9375.46485 1.9375-.46485c.7898 1.7644 4.00238 6.15597 4.67578 6.22071 1.4392.13937.85547-3.22071.85547-3.22071-.7031-3.72613-3.77595-6.74609-7.46875-6.74609zm6.19531 9.98242c-.2267 1.52239-.78618 3.02363-1.77148 4.2207 1.0621 1.39952 3.47707 1.1336 4.23437-.44336.5506-.99345.33834-2.33208-.50976-3.0957-.6656-.55225-1.28663-.66959-1.95313-.68164z" + style="fill:#cab1fb;stroke-width:.522013" + transform="translate(816 -240)" /> + transform="translate(1452 -68)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path327" + d="M554.96289 382.8418c-.58596.02-1.15006.22739-1.60937.59179-.45517-.11227-.90197-.0986-1.35938-.11718-3.681 0-6.46376 2.43813-7.03516 6.69726-.5715 4.25914-.018 7.68534 1.29688 9.23828 1.49036 1.58901 3.56008 2.50763 5.73828 2.54688 2.1782-.0392 4.24792-.95787 5.73828-2.54688 1.12059-1.32214 1.68507-4.00417 1.47656-7.40039l.25782.39453s.93082-3.02167.29492-5.23242c-.5708-1.90558-2.02848-3.41712-3.91211-4.05664-.28727-.0867-.58683-.12564-.88672-.11523zm.53516 4.3789c.60398 1.02904 1.56742 2.64583 1.68164 2.66407l.74609 4.8789c-.32181 1.18779-.84695 2.23175-1.54687 3.07031-1.09613 1.31326-2.64259 2.11133-4.38477 2.11133-1.74218 0-3.28668-.79807-4.38281-2.11133-.70036-.83908-1.2265-1.88357-1.54883-3.07226l.47461-3.0957c3.34449-.79363 6.39576-2.31366 8.96094-4.44532z" + style="fill:#cab1fb;stroke-width:.520422" + transform="translate(816 -240)" /> + d="M1369.1453 143.46367c.3277-.26089.7129-.50295 1.4648-.62458.2537.007.4421.1673.6175.35835.1431.55249-.1533 1.03497-.441 1.12453-.55-.50204-1.096-.70236-1.6413-.8583z" + style="fill:#cab1fb;stroke-width:.520422" /> + transform="translate(1444 -68)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path330" + d="M584.00977 382.11914c-1.35751.0291-2.49068 1.04443-2.66797 2.39063-2.47475 1.06479-4.0793 3.49925-4.08203 6.19335v2.75196l1.90625-3.68946c2.86047-1.80243 7.01339-1.68868 9.6875.002l1.90625 3.6875v-2.75196c-.005-2.66837-1.58081-5.08355-4.02149-6.1621-.16593-1.38126-1.33732-2.42101-2.72851-2.42188z" + style="fill:#cab1fb;stroke-width:.526994" + transform="translate(816 -240)" /> + transform="translate(1436 -68)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path332" + d="M615.5 384.06836a6.4732277 6.4732277 0 0 0-5.04883 3.02148 7.0407011 7.0407011 0 0 0-1.24023 4.00391v.77539l.59961-.12305a45.672304 45.672304 0 0 1 6.1582-.4414 44.789568 44.789568 0 0 1 6.0957.44336l.59766.12109v-.77539a7.0407011 7.0407011 0 0 0-1.24023-4.00391 6.4732277 6.4732277 0 0 0-5.92188-3.02148zm6.69922 9.58398c-.1562 1.09589-.62475 2.63357-1.78125 4.13672.971 1.41882 3.30557 1.14148 4.10547-.29883.5714-.92992.45917-2.22339-.29883-3.02343-.6586-.63754-1.06509-.77099-2.02539-.81446z" + style="fill:#cab1fb;stroke-width:.516825" + transform="translate(816 -240)" /> + transform="translate(1812 -100)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path334" + d="M263.99414 415.7793c-3.0082 0-6.4305 2.77133-6.9668 6.28515-.3562 2.33572 1.29491 9.97707 1.81641 11.52057 0 0 .87222-8.51294 1.16602-9.70025.31308-.6577.68366-1.28644 1.10742-1.87891l-.92188 2.5918c2.00118-1.43842 3.84533-3.08356 5.50196-4.90821l2.2832 4.19532c.2943 1.18731 1.16406 9.7022 1.16406 9.7022.27201-.80533.85126-3.05261 1.29297-5.6358.61898.90254 1.15191 1.86117 1.5918 2.86328 0 0 2.43427-3.94291 1.58008-6.60156-.45551-1.41546-1.7811-2.07308-2.6875-2.36523-.64069-3.41084-3.98167-6.06836-6.92774-6.06836z" + style="fill:#cab1fb;stroke-width:.511771" + transform="translate(816 -240)" /> + transform="translate(1804 -100)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path336" + d="M296.01172 415.43945c-3.6505 0-6.14476 2.22-7.03906 5.84571-.7049 2.85887.33203 5.93359.33203 5.93359s.57797-.92897 1.79687-3.19336c1.1172-2.07552 2.15531-4.14975 2.75391-5.46875l2.15625-.79883 2.1543.79883c.5986 1.31694 1.6367 3.39116 2.7539 5.46875 1.2194 2.26336 1.79688 3.19336 1.79688 3.19336s1.03693-3.07265.33203-5.93359c-.8943-3.62674-3.38711-5.84571-7.03711-5.84571zm5.23242 13.08399c-.25218.49238-.5478.94395-.88476 1.34765-.73868.88495-1.68402 1.53368-2.75586 1.85938.31318 1.71145 2.23465 2.68786 3.66992 2.75586 1.25604-1.0361 1.74769-2.73672 1.23828-4.28321-.2417-.75279-.72775-1.29369-1.26758-1.67968z" + style="fill:#cab1fb;stroke-width:.516042" + transform="translate(816 -240)" /> + transform="translate(1796 -100)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path338" + d="M328.01172 415.30078c-2.26548-.00006-4.37537 1.15239-5.59961 3.0586-.81565 1.18587-1.25096 2.59195-1.24805 4.03124-.044 1.07555.0476 2.25692.15235 3.20704 0 0 6.36585-3.71746 9.46875-6.40039l3.8164 6.40039c.28942-1.13581.25782-2.04748.25782-3.20704.003-1.43954-.43339-2.84573-1.25-4.03124-1.22387-1.90562-3.33288-3.058-5.59766-3.0586zm-5.80274 11.91602c-.58568.74693-1.00939 1.60765-1.24414 2.52734-.7691 3.33025-2.33593 3.82422-2.33593 3.82422s2.70604 1.46853 4.30664-.041c.69722-.65729 1.1145-1.77837 1.52539-2.85546-1.07789-.90704-1.86088-2.27581-2.25196-3.45508zm11.59571 0c-.49663 1.45956-1.24263 2.5004-2.25196 3.45508.41089 1.0771.82817 2.19817 1.52539 2.85546 1.6006 1.50955 4.30665.041 4.30665.041s-1.56499-.49397-2.33399-3.82422c-.23534-.91984-.65972-1.78057-1.24609-2.52734z" + style="fill:#cab1fb;stroke-width:.520351" + transform="translate(816 -240)" /> + transform="translate(1788 -100)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path340" + d="M359.99805 415.67383c-3.0257 0-6.46882 2.7874-7.00782 6.32226-.3588 2.34972 1.30353 10.14019 1.82813 11.69293 0 0 .87442-8.66648 1.16992-9.8609 0 .00001.36489-5.48691 2.20899-5.87304 1.3159-.27544 1.80078.1289 1.80078.1289s.48783-.40485 1.80273-.1289c1.8446.38613 2.20899 5.875 2.20899 5.875.2955 1.19442 1.16992 9.86089 1.16992 9.86089.27369-.81035.85639-3.17367 1.30078-5.773.62282.90874 1.15903 1.87391 1.60156 2.88281 0 0 2.44769-3.96801 1.58789-6.64258-.45758-1.42389-1.79123-2.08498-2.70312-2.3789-.64432-3.43091-4.00527-6.10547-6.96875-6.10547z" + style="fill:#cab1fb;stroke-width:.514836" + transform="translate(816 -240)" /> + transform="translate(1780 -100)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path342" + d="M392.00195 415.8125c-1.94312-.0231-3.79195.83592-5.02734 2.33594-1.9057 2.51273-1.54582 6.27536-1.54102 6.40429l1.10743-.0137.43554-4.60742 2.31836-1.43555s1.61213.0703 2.70703.0703c1.0944 0 2.70703-.0703 2.70703-.0703l2.31641 1.43555.43555 4.60742 1.10742.0137c.01-.12893.36834-3.89156-1.53906-6.40429-1.23544-1.49996-3.08424-2.359-5.02735-2.33594zm5.31446 12.64258c-1.10321 1.86001-1.73771 2.4059-3.69532 3.25781.42307 1.8905 2.26777 2.72733 3.72461 2.79688 1.27626-1.05252 1.77572-2.78045 1.25782-4.35157-.24559-.76384-.73857-1.31143-1.28711-1.70312z" + style="fill:#cab1fb;stroke-width:.524142" + transform="translate(816 -240)" /> + transform="translate(1772 -100)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path344" + d="M423.99805 415.41602a6.6169699 6.6169699 0 0 0-5.56641 3.04101 7.0433037 7.0433037 0 0 0-1.24219 4.00781v1.24219a7.489816 7.489816 0 0 0 .25586 1.94727l2.61524-4.39063-.24219 1.78906h8.36328l-.24023-1.77148 2.60547 4.37305a7.4903334 7.4903334 0 0 0 .25976-1.94727v-1.24219a7.0474429 7.0474429 0 0 0-1.24219-4.00781 6.6169699 6.6169699 0 0 0-5.5664-3.04101zm5.76757 11.84765c-.32416.99933-.8 1.88275-1.4082 2.61133-.25397.30425-.53276.57909-.83203.82422.40859 1.07088.82435 2.18606 1.51758 2.83984 1.5915 1.501 4.28125.041 4.28125.041s-1.55551-.49141-2.32031-3.80274a6.7939191 6.7939191 0 0 0-1.23829-2.51367zm-11.5332.002a6.7939191 6.7939191 0 0 0-1.23633 2.51172c-.7647 3.31133-2.32031 3.80274-2.32031 3.80274s2.68975 1.45998 4.28125-.041c.69322-.65378 1.10702-1.76897 1.51563-2.83984-.29943-.24513-.57801-.51997-.83204-.82422-.60791-.72816-1.08404-1.61077-1.4082-2.60938z" + style="fill:#cab1fb;stroke-width:.517395" + transform="translate(816 -240)" /> + transform="translate(1764 -100)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path346" + d="M456.02148 415.24805c-1.96995 0-3.66557.55161-4.82031 1.78515-1.30842.22149-3.8642 1.02115-4.35937 3.91602-.8062 4.7311 2.66992 5.94531 2.66992 5.94531s-.45482-2.95448.19336-4.8125l-.0312 2.10352c1.33342-.98648 2.41488-2.27407 3.15625-3.75782.5188.23094 1.07409.36911 1.64062.40821-.26971.60374-.70605 1.118-1.25781 1.48242 1.77897-.25817 2.93771-.43391 4.2207-1.46875.61457-.0319 1.21818-.17551 1.78125-.42383.74111 1.48446 1.82259 2.77274 3.15625 3.75977l-.0312-2.09571c.64402 1.8585.19141 4.80469.19141 4.80469s3.47457-1.21421 2.66797-5.94531c-.49535-2.89329-3.0485-3.69206-4.35742-3.91406-1.15479-1.23429-2.8498-1.78711-4.82032-1.78711z" + style="fill:#cab1fb;stroke-width:.522774" + transform="translate(816 -240)" /> + transform="translate(1756 -100)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path348" + d="M488 415.26562c-3.12061.0473-4.49732 1.45653-5.64844 3.19141-.63341-.15517-2.10639-.27971-3.44336 1.37891-1.2264 1.52151-1.27081 4.042-.91211 6.0625.3105 1.95691.93793 3.84838 1.85743 5.60351.1418-1.91058.4349-3.80624.8789-5.66992.1328-.45644.31099-.85702.52344-1.2168.0248.28959.0599.57819.10547.86524 0 0 6.31618-3.68619 9.39258-6.34961l3.78515 6.34961c.11316-.41899.18962-.84704.22852-1.2793.17321.48259.32193 1.01881.5 1.63086.4436 1.86373.7371 3.75937.8789 5.66992.9196-1.75515 1.54858-3.6466 1.85938-5.60351.3582-2.0205.31174-4.54099-.91406-6.0625-1.33021-1.65024-2.79672-1.53488-3.43555-1.38086-1.48917-1.85258-2.53564-3.23674-5.65625-3.18946z" + style="fill:#cab1fb;stroke-width:.521421" + transform="translate(816 -240)" /> + transform="translate(1748 -100)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path350" + d="M520.00195 415.31641a7.4341269 7.4341269 0 0 0-7.54492 6.46289c-.334 1.98146.18461 3.56423.78711 4.30468a24.606455 24.606455 0 0 0 3.33008-4.21093c1.2036-2.08137 1.81445-3.20508 1.81445-3.20508l1.61133.10547 1.60938-.10547s.61095 1.12215 1.81445 3.20508a24.634554 24.634554 0 0 0 3.33203 4.21093c.6062-.74045 1.12401-2.32322.79102-4.30468a7.4341269 7.4341269 0 0 0-7.54493-6.46289zm5.19532 13.30859c-.23677.43866-.5072.84518-.8125 1.21094-.11637.1394-.23905.27097-.36524.39844a2.049107 2.049107 0 0 0 .23633 1.65624c.4548.77324 1.20708 1.0809 1.69726.70313a1.6234672 1.6234672 0 0 0 1.1211 1.47852c.7727.27682 2.15347.17853 2.32617-.5.1728-.67852-.93092-1.67774-1.70312-1.95508a1.3887929 1.3887929 0 0 0-1.35352.17578 2.289505 2.289505 0 0 0-.31641-1.37109 1.6078569 1.6078569 0 0 0-1.13672-.85743 2.3514257 2.3514257 0 0 0 .30665-.93945zm-10.38086.0176a2.3467426 2.3467426 0 0 0 .29687.92187 1.6068163 1.6068163 0 0 0-1.13672.85743 2.2848219 2.2848219 0 0 0-.3164 1.37109 1.390354 1.390354 0 0 0-1.35352-.17578c-.7722.27734-1.87592 1.27656-1.70312 1.95508.1727.67853 1.55397.77682 2.32617.5a1.6229469 1.6229469 0 0 0 1.12109-1.47852c.4897.37777 1.24197.0701 1.69727-.70313a2.049107 2.049107 0 0 0 .25586-1.63671c-.13319-.13335-.26243-.2714-.38477-.41797-.30119-.36083-.56822-.76152-.80273-1.19336z" + style="fill:#cab1fb;stroke-width:.520342" + transform="translate(816 -240)" /> + transform="translate(1740 -100)" + inkscape:label="value-hairType-114"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path352" + d="M551.98828 415.12305c-1.98135 0-3.68672.5558-4.84766 1.79687-1.31596.22313-3.88167 1.02796-4.3789 3.9375-.8131 4.75607 2.67969 5.97461 2.67969 5.97461s-.45653-2.97816.19921-4.8457l-.0312 2.11914s.64235-3.23917 3.03124-4.78125c1.93974-1.06703 4.49592-1.1627 6.69922 0 2.3888 1.54418 3.03125 4.78125 3.03125 4.78125l-.0312-2.11133c.65161 1.86804.19727 4.83789.19727 4.83789s3.49279-1.21854 2.67969-5.97461c-.49761-2.90954-3.06501-3.71437-4.38086-3.9375-1.16092-1.24107-2.86625-1.79687-4.84766-1.79687z" + style="fill:#cab1fb;stroke-width:.52559" + transform="translate(816 -240)" /> + transform="translate(1732 -100)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path354" + d="M584.00781 415.24023c-2.25107.00034-4.34749 1.14531-5.56445 3.03907-.0326.0523-.0645.10505-.0957.1582-.63484-.15552-2.11125-.27954-3.45118 1.38281-1.2292 1.52493-1.27501 4.04917-.91601 6.07422.31148 1.96189.94084 3.85984 1.86328 5.61914.32298-2.53983.41823-4.79682 1.40625-6.90625.0247.29089.0599.58079.10547.86914.4487-1.27544 1.06865-2.28324 2.04883-3.01562l.42382.95117 1.04493-2.35156 1.04492 2.35156 1.04492-2.35156 1.04492 2.35156 1.04492-2.35156 1.04688 2.35156 1.04492-2.35156 1.04492 2.35156.42188-.95117c1.1496.65242 1.47768 1.8297 2.04883 3.01562.0469-.28765.0833-.5769.10937-.86718.99542 2.11856 1.24331 4.82824 1.4043 6.90429.92162-1.75948 1.55031-3.6574 1.86133-5.61914.3595-2.02505.31513-4.54929-.91407-6.07422-1.33315-1.65395-2.80324-1.53913-3.44336-1.38476-.0338-.0525-.0683-.10463-.10351-.15625-1.21734-1.89434-3.31465-3.0394-5.56641-3.03907z" + style="fill:#cab1fb;stroke-width:.522594" + transform="translate(816 -240)" /> + transform="translate(1724 -100)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path356" + d="M615.99609 415.31641a7.433474 7.433474 0 0 0-7.54492 6.46289c-.3335 1.98128.18511 3.5643.78711 4.30468a24.618862 24.618862 0 0 0 2.74219-3.34375h8.02734a24.637073 24.637073 0 0 0 2.74024 3.34375c.6056-.74038 1.12597-2.3234.79297-4.30468a7.433474 7.433474 0 0 0-7.54493-6.46289zm5.19532 13.31054c-.23657.43823-.5072.8433-.8125 1.20899-.11637.13937-.23905.27095-.36524.39844a2.0504879 2.0504879 0 0 0 .23633 1.65429c.4547.7732 1.20862 1.07891 1.69922.70117a1.6217637 1.6217637 0 0 0 1.11914 1.48047c.7731.27992 2.15337.176 2.32617-.50195.1727-.67795-.93102-1.67777-1.70312-1.95508a1.3855492 1.3855492 0 0 0-1.35352.17774 2.2893039 2.2893039 0 0 0-.31641-1.37305 1.6071954 1.6071954 0 0 0-1.13671-.85547 2.3449756 2.3449756 0 0 0 .30664-.93555zm-10.37891.0215a2.3449756 2.3449756 0 0 0 .29688.91406 1.6061548 1.6061548 0 0 0-1.13868.85742 2.2830604 2.2830604 0 0 0-.3164 1.37305 1.388671 1.388671 0 0 0-1.35352-.17774c-.7721.27732-1.87582 1.27714-1.70312 1.95508.1727.67795 1.55542.78188 2.32812.50196a1.6228043 1.6228043 0 0 0 1.11914-1.48047c.4896.37774 1.24197.072 1.69727-.70118a2.0504879 2.0504879 0 0 0 .25586-1.63671c-.13319-.13338-.26243-.27143-.38477-.41797-.30027-.35969-.56697-.75756-.80078-1.1875z" + style="fill:#cab1fb;stroke-width:.520296" + transform="translate(816 -240)" /> + transform="translate(44 92)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1468 245.62712)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1476 245.62712)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path359" + d="M1513.9182-139.15383c-.1482-.00031-.3015.002-.455.008-2.5876.0992-5.1062 1.43167-6.9981 2.71485-1.8516 1.25587-3.048 2.44142-3.1015 2.49414-.0001.00004-.016.01-.016.01v.002c-.0008.00073-.055.043-.055.043l.6602.76562s1.384-1.03738 3.2891-2.10156c1.9052-1.06419 4.3351-2.13111 6.2812-2.22461 4.1626-.19979 6.2676 1.92383 6.2676 1.92383l.7793-.63868s-.074-.069-.076-.0723l.01-.008s-.065-.0414-.066-.043c-.08-.11362-.5117-.76526-1.5742-1.46875-1.0799-.715-2.7126-1.39961-4.9454-1.4043z" + style="color:#000;fill:#181b33;stroke:#cab1fb;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers stroke fill" /> + transform="translate(-1484 245.62712)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1492 245.62712)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1500 245.62712)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1508 245.62712)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path363" + d="M1642.4795-138.70891c-1.6879 0-4.3561.82857-6.6563 1.64453-2.3002.81595-4.2031 1.63086-4.2031 1.63086l-.3223.13867.1504.3164.7969 1.6875.3008-.13085s1.7753-.77044 3.9121-1.61915c2.1367-.8487 4.6507-1.77489 6.0429-2.07617 1.9287-.54483 5.0697.35453 6.2033.60763-1.9129-1.00382-4.0831-2.03345-6.2247-2.19942z" + style="color:#000;fill:#181b33;stroke:#cab1fb;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers stroke fill" /> + transform="translate(-1324 212)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path364" + d="M1479.9547-106.30165c-3.8682 0-5.8906 3.5586-5.8906 3.5586l1.459.84766s1.6211-2.71876 4.4316-2.71876c2.7768 0 4.5176 2.91602 4.5176 2.91602l1.4649-.83984s-2.0804-3.76367-5.9825-3.76368z" + style="color:#000;fill:#181b33;stroke:#cab1fb;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers stroke fill" /> + transform="translate(-1332 212)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path365" + d="m1429.5996-92.029297-10.4922 5.675781v3.447266l10.4571-5.945312 5.8065 2.479582z" + style="color:#000;fill:#181b33;stroke:#cab1fb;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers stroke fill" + transform="translate(84.7601176 -16.532024) scale(1.0000011)" /> + transform="translate(-1340 212)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path366" + d="M1539.2382-107.02725c-1.5528.002-2.6763.0885-2.7188.0918h-.023v.002c-.0003.00002-.027 0-.027 0l.088 1.68554s4.493-.11427 7.1016.77735c1.4416.49265 2.5247 1.15861 3.3926 1.77735.8606.6136 1.4559 1.1764 2.166 1.52735.3855.20279.8484.24393 1.2265.11718.3812-.12776.67-.38561.8555-.69531.1855-.30969.2781-.68767.2109-1.08398-.065-.38197-.3178-.75275-.6621-.99805-1.3889-1.28984-3.6668-2.11954-6.4804-2.75978-1.5725-.35821-3.5472-.4439-5.1289-.4414z" + style="color:#000;fill:#181b33;stroke:#cab1fb;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers stroke fill" /> + transform="translate(-1348 212)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path367" + d="M1576.0018-106.98624c-3.6761 0-6.9082 2.54258-6.9082 5.97267h2.6992c0-1.67462 1.7465-3.2715 4.209-3.2715 2.4626 0 4.2071 1.59668 4.2071 3.2715h2.6992c0-3.42988-3.2301-5.97267-6.9063-5.97267z" + style="color:#000;fill:#181b33;stroke:#cab1fb;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers stroke fill" /> + transform="translate(-1356 212)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path368" + d="m1607.9998-108.55263-8.3574 5.42383 2.3906 3.681634 5.9668-3.873034 5.9707 3.873034 2.3887-3.681634z" + style="color:#000;fill:#181b33;stroke:#cab1fb;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers stroke fill" /> + transform="translate(-1364 212)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path369" + d="m1648.5028-107.48329-14.6934.66992-.1152.31641-2.1953 5.98047 15.7793-4.74806z" + style="color:#000;fill:#181b33;stroke:#cab1fb;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers stroke fill" /> + transform="translate(-1180 180)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path370" + d="M1481.1188-75.023961c-.7112.0034-1.4513.09281-2.2051.298829-2.2829.62393-3.8943 1.677516-4.9648 2.652347-1.0705.974831-1.5895 1.83119-1.7461 2.20508v.002c-.5266 1.293081.1356 2.773454 1.4492 3.244144 1.3052.511781 2.7913-.08689 3.3731-1.363282.01-.0134 1.344-2.632625 3.3457-3.544926 1.374-.62632 3.2188-.74934 4.7109-.69922 1.4921.0501 2.6211.263673 2.6211.263673l.2754-.593751s-2.3856-1.960958-5.6133-2.384768c-.4035-.05298-.8194-.08211-1.2461-.08008z" + style="fill:#181b33;stroke:#cab1fb;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers stroke fill" /> + transform="translate(-1188 180)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path371" + d="m2383.4299-330.73856-15.1063 6.54033" + style="color:#000;fill:#181b33;stroke:#cab1fb;stroke-width:1.35026;-inkscape-stroke:none" + transform="translate(-863.87785 255.46825) scale(1.0000011)" /> + id="path372" + d="m2383.1621-331.35742-15.1074 6.53906.5371 1.24024 15.1055-6.54102z" + style="color:#000;fill:#181b33;stroke:#cab1fb;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers stroke fill" + transform="translate(-863.87785 255.46825) scale(1.0000011)" /> + transform="translate(-1196 180)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path373" + d="M1536.658-74.025262v4.050784h14.6855v-4.050784z" + style="color:#000;fill:#181b33;stroke:#cab1fb;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers stroke fill" /> + transform="translate(-1204 180)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path374" + d="M1579.0445-76.595824c-2.8701-.12416-5.6731 2.065292-7.8457 4.171874-2.1736 2.107543-3.707 4.236335-3.707 4.236335l1.0957.789061s1.4758-2.044733 3.5508-4.056645c2.075-2.011902 4.7587-3.885024 6.8515-3.792974h.02c1.8256.0489 3.4738 1.097151 4.2949 2.728523l1.2051-.60742c-1.0422-2.070763-3.1402-3.403664-5.4571-3.468754z" + style="color:#000;fill:#181b33;stroke:#cab1fb;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers stroke fill" /> + transform="translate(-1212 180)"> - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + transform="translate(-1220 180)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path376" + d="M1631.8726-74.826989v4.058598c1.8374.0056 3.7206.113064 5.3405-.04497 1.9237-.35888 3.8937-.39006 5.8281-.09375 1.536.433507 2.7787.983483 3.9746 1.734377l1.1133-2.070315c-1.3459-1.00333-2.6946-1.918198-4.0176-2.638674v-.0039l-.016-.0059c-1.8544-.815971-4.8549-.875447-7.3477-.660157-1.7825.0895-3.3145-.0056-4.8752-.275309z" + style="fill:#181b33;stroke:#cab1fb;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers stroke fill" /> + transform="translate(-1036 148)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path377" + d="M1482.5671-42.467877c-4.0284.185851-5.8899 3.905655-9.8134 2.652573l-2.2109 1.410162c1.5715.794161 3.7306.987671 5.1679.804691 2.9016-.637321 4.1113-2.900894 7.4746-3.378964 2.2932.095 4.4115 1.168431 6.2735 2.072272-1.7319-2.065692-4.3107-3.404933-6.8917-3.560734z" + style="color:#000;fill:#181b33;stroke:#cab1fb;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:6;stroke-dasharray:none;paint-order:markers stroke fill" /> + transform="translate(-1044 148)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path378" + d="m1507.9304-42.797396-1.6758.18945s.3835 3.694284 3.627 5.042976c1.7932.74604 3.7498.19173 5.25-.437501s2.6152-1.416021 2.6152-1.416021l-.9707-1.380852s-.9839.689541-2.2969 1.240232c-1.3129.55069-2.8841.87867-3.9492.43555-2.2563-.938211-2.5996-3.673834-2.5996-3.673834z" + style="color:#000;fill:#181b33;stroke:#cab1fb;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers stroke fill" /> + transform="translate(-1052 148)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path379" + d="M1545.9861-44.033429c-.8734 0-1.6868.47429-2.3907 1.072271-1.1456 1.063201-1.8341 2.232922-2.8847 3.218753-1.0923 1.024971-2.2701 1.601962-4.3145 1.228522v2.503902c3.3988.273331 4.8628-.63674 6.1856-2.041012.782-.936121 1.6014-1.889752 2.3457-2.691453.4826-.46124.9641-.743881 1.164-.750001.9786.002 1.4827.682651 2.0098 1.269542 1.2203 1.473831 3.3457 1.562501 3.3457 1.562501l.1582-.64258c-1.4961-.681391-1.6704-1.440152-2.3164-2.613283-.6183-1.070971-1.4758-2.117162-3.3027-2.117162z" + style="color:#000;fill:#181b33;stroke:#cab1fb;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers stroke fill" /> + transform="translate(-1060 148)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path380" + d="m1579.0223-43.119945-11.416.22461-.1641.16797v1.144531l.1407.166011 10.2207 1.656251 4.7324 2.880863.2402-.21875-1.1562-2.332032 1.9297.13477.1152-.302741-1.5235-1.191401 2.418-.958991-.029-.32226c-1.8356-.351001-3.6718-.704851-5.5081-1.048831z" + style="color:#000;fill:#181b33;stroke:#cab1fb;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers stroke fill" /> + transform="translate(-1068 148)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path381" + d="M1768.8516-91.003906c-.6226-.00029-1.1315.508319-1.1309 1.130859 0 .49451.3059.884865.6973 1.046875.3913.16201.8848.103646 1.2343-.246094.3496-.34973.4064-.843135.2442-1.234375-.1622-.39124-.5504-.697535-1.0449-.697265zm3.2246.382812c-.6224-.00033-1.1328.50849-1.1328 1.13086-.0003.4945.3079.884665.6992 1.046875.3912.16222.8827.103446 1.2324-.246094.3497-.34955.4081-.841102.2461-1.232422-.162-.39133-.5504-.699219-1.0449-.699219zm-6.4219.529297c-.6225-.00029-1.1335.50832-1.1328 1.130859 0 .49451.3079.884865.6992 1.046876.3913.16201.8848.103646 1.2344-.246094.3495-.34973.4063-.843135.2441-1.234375-.1622-.39124-.5504-.697536-1.0449-.697266zm9.1113 1.607422c-.6222-.00001-1.1325.508679-1.1328 1.130859-.0002.49451.308.884665.6992 1.046875.3913.16221.8827.103447 1.2325-.246093.3497-.34955.4081-.841092.246-1.232422-.162-.39132-.5504-.699219-1.0449-.699219zm-11.9394.339844c-.6234-.002-1.1335.509402-1.1328 1.132812 0 .49425.3081.882782.6992 1.044922.3911.16214.8827.10507 1.2324-.244141.3497-.349199.4077-.841091.2461-1.232421-.1616-.39133-.5507-.700462-1.0449-.701172zm-2.8301 1.947265c-.6226-.00032-1.1312.510223-1.1309 1.132813 0 .49443.306.882872.6973 1.044922.3913.16205.8848.105439 1.2344-.244141.3496-.34959.4081-.843105.2461-1.234375-.1621-.39126-.5525-.699209-1.0469-.699219z" + style="color:#000;fill:#181b33;stroke:#cab1fb;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers stroke fill" + transform="translate(-159.3809824 47.469546) scale(1.0000011)" /> + transform="translate(-1076 148)"> - - - - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + transform="translate(-1716 268)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + transform="translate(-1676 268)"> - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + transform="translate(-1684 268)"> - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + transform="translate(-1692 268)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + transform="translate(-1700 268)"> - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + transform="translate(-1708 268)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + transform="translate(-1532 236)"> - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + transform="translate(-1540 236)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1548 236)"> - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + transform="translate(-1556 236)"> - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + transform="translate(-1564 236)"> - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + transform="translate(-1572 236)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + transform="translate(-1388 204)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="g434" + transform="translate(470.69558 69.244006) scale(.5315713)"> + id="path432" + fill="#fff" + d="M2279.8347-264.52181a10.19 10.19 0 1 0 10.17-10.22 10.2 10.2 0 0 0-10.17 10.22z" /> + transform="translate(-1396 204)"> - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + transform="translate(-1404 204)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + transform="translate(-1412 204)"> - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + transform="translate(-1420 204)"> - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + transform="translate(-1428 204)"> - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + transform="translate(-1244 172)"> - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + transform="translate(-1252 172)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1260 172)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="g456" + stroke="#000" + stroke-linejoin="bevel" + stroke-width="3.61"> + id="path455" + d="M2638.3592-267.26646a37.69 37.69 0 0 1 8.21 2.41 37.16 37.16 0 0 1-8.53-.61 37.76 37.76 0 0 1-8.2-2.41 36.68 36.68 0 0 1 8.52.61z" + style="stroke:#cab1fb;stroke-linecap:round;stroke-linejoin:round" + transform="translate(350.22394 99.795543) scale(.5315713)" /> + d="M2646.8892-258.17646a38 38 0 0 1-10.07-.54 38.19 38.19 0 0 1-9.62-3" + style="stroke:#cab1fb;stroke-linecap:round;stroke-linejoin:round" + transform="translate(350.22394 99.795543) scale(.5315713)" /> + transform="translate(-1268 172)"> - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + transform="translate(-1276 172)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + transform="translate(-1284 172)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + transform="translate(-1100 140)"> - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + transform="translate(-1108 140)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + transform="translate(-1116 140)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path476" + d="M1752.0042-4.7373032a9.0808494 9.0808494 0 0 1-6.0033-2.3643207v-1.7963555a9.0808494 9.0808494 0 0 1 6.0033-2.3643206 9.0808494 9.0808494 0 0 1 5.9968 2.3643206v1.7963555a9.0808494 9.0808494 0 0 1-5.9968 2.3643207z" + style="fill:#cab1fb;stroke-width:.660427" /> + transform="translate(-1124 140)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="g479" + transform="translate(309.90006 121.35054) scale(.49864666)"> + id="path477" + fill="#fff" + d="M2939.995-255.12548c0 .07 5.24 2.31 18-.35 10.78-2.24 14.47-5.93 14.42-6-1.75-3.5-12.67-3.78-18.35-2.31-8.81 2.25-13.41 6.06-14.07 8.66z" /> + transform="translate(-1132 140)"> - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + transform="translate(-1140 140)"> - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + transform="translate(-956 108)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + transform="translate(-964 108)"> - - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + + transform="translate(-972 108)"> - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + transform="translate(-980 108)"> - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + transform="translate(-988 108)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + transform="translate(-996 108)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + transform="translate(-812 76)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + transform="translate(-820 76)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + transform="translate(-828 76)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + transform="translate(-836 76)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="g535" + transform="translate(86.870161 174.35115) scale(.47820892)"> + id="path530" + fill="#fff" + d="M3531.7515-247.48783c0 5.2 6.15 9.42 13.75 9.42s13.75-4.22 13.75-9.42-6.16-9.42-13.75-9.42-13.75 4.22-13.75 9.42z" /> + id="a532"> + id="path534" + d="m2748.3223-17.107422-6.6914 3.400391 1.7011 2.808593 6.1192-4.339843zm2.539 6.548828-7.459.8007815.5899 3.2304687 7.2598-1.8808593z" + style="fill:#cab1fb;stroke:#cab1fb;stroke-linejoin:round" + transform="translate(816 -240)" /> + transform="translate(-844 76)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="g541" + transform="translate(-95.166649 187.38608) scale(.5315713)"> + id="path536" + fill="#fff" + d="M3582.1073-249.66472c0 6 5.62 10.92 12.55 10.92 6.93 0 12.54-4.89 12.54-10.92s-5.61-10.91-12.54-10.91c-6.93 0-12.55 4.89-12.55 10.91z" /> + id="a539"> + id="path540" + d="m2790.0977-3.484375-2.0704 2.5390625 4.25 2.7714844L2793.668.125Zm-2.67 3.31054688-2.7597 1.78906252 3.209 3.9296875 1.8398-1.1894531zm-3.9414 1.96875002-3.1699.8613281 1.8613 4.7285156 2.1094-.5800781z" + style="fill:#cab1fb;stroke:#cab1fb;stroke-linejoin:round" + transform="translate(816 -240)" /> + transform="translate(-852 76)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + transform="translate(-668 44)"> - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + transform="translate(-676 44)"> - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + transform="translate(-684 44)"> - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + transform="translate(-692 44)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + transform="translate(-700 44)"> - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + transform="translate(-708 44)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="g567" + fill="none" + stroke="#000" + stroke-width="3.61"> + id="path566" + d="M3934.8788-244.50389h-19.87" + style="stroke:#cab1fb;stroke-linecap:round" + transform="translate(-492.25755 233.78344) scale(.59625277)" /> + d="m3932.3388-254.43389-17.2 9.93 17.2 9.94" + style="stroke:#cab1fb;stroke-linecap:round;stroke-linejoin:round" + transform="translate(-492.25755 233.78344) scale(.59625277)" /> + transform="translate(-524 12)"> - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + transform="translate(-532 12)"> - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + transform="translate(-540 12)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="g578" + transform="translate(-372.29694 245.69259) scale(.52219634)"> + stroke-width=".65" + d="M4068.0011-238.62182a47.83 47.83 0 0 1-15.59-2.26 18.16 18.16 0 0 1 15.59-8.22 18.16 18.16 0 0 1 15.59 8.22 47.85 47.85 0 0 1-15.59 2.26z" /> + transform="translate(-548 12)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + transform="translate(-556 12)"> - - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + + transform="translate(-564 12)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + transform="translate(-380 -20)"> - - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + + transform="translate(-388 -20)"> - - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + + transform="translate(-396 -20)"> - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + transform="translate(-404 -20)"> - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + transform="translate(-412 -20)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + transform="translate(-420 -20)"> - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + transform="translate(-1884 292)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1892 292)"> - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + transform="translate(-1900 292)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path626" + d="M1958.1416-138.19379c-.9467-.59036-2.5447.23919-3.1656 1.25704a2.0967816 2.0967816 0 0 0 .565 2.90598 2.1069603 2.1069603 0 0 0 2.8805-.76848c.6158-1.01786.6667-2.79402-.2799-3.39454zm6.7788 1.25704c-.631-1.01785-2.2188-1.8474-3.1654-1.25704-.9465.59034-.8957 2.37668-.2596 3.39454a2.0357103 2.0357103 0 1 0 3.425-2.1375z" + style="fill:#cab1fb;stroke:#cab1fb;stroke-width:.508927" /> + transform="translate(-1908 292)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1916 292)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1924 292)"> - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + transform="translate(-1740 260)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1748 260)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1756 260)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1764 260)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1772 260)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1780 260)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path635" + d="m2059.6729-256.19566 3.0538-5.61422v-9.23583m6.5302 0v9.23583l3.0476 5.61422" + style="fill:none;stroke:#cab1fb;stroke-width:1.71964;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" + transform="translate(93.312597 146.3859) scale(.94999972)" /> + id="path636" + d="m2064.829-258.30302-2.7748 3.08037h2.7748zm2.3145 0v3.08037h2.7801z" + style="fill:#cab1fb;stroke:#cab1fb;stroke-width:.535712" + transform="translate(93.312597 146.3859) scale(.94999972)" /> + transform="translate(-1596 228.2616)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1604 228.2616)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1612 228.2616)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1620 228.2616)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1628 228.2616)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1636 228.2616)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1980 284)"> - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + transform="translate(-1828 252)"> - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + transform="translate(-2092 316)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-2100 316)"> - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + transform="translate(-2108 316)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-2116 316)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="g654" + fill="none" + stroke="#000"> + d="M2318.661-333.862c0 2.271-7.556 4.112-16.877 4.112-9.321 0-16.878-1.841-16.878-4.112" + style="stroke:#cab1fb;stroke-linejoin:round" + transform="translate(1192.4103 10.603999) scale(.43774366)" /> + d="M2282.228-329.843a9.78 9.78 0 0 1 2.593-4.128A9.378 9.378 0 0 1 2288-336m33.339 6.157a9.761 9.761 0 0 0-2.593-4.128 9.363 9.363 0 0 0-3.18-2.029" + style="stroke:#cab1fb;stroke-linecap:round;stroke-linejoin:round" + transform="translate(1192.4103 10.603999) scale(.43774366)" /> + transform="translate(-2124 316)"> - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + transform="translate(-2132 316)"> - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + transform="translate(-1948 284)"> - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + transform="translate(-1956 284)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1964 284)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1972 284)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="g665" + fill="none" + stroke="#000"> + d="M2637.957-326.664a36.02 36.02 0 0 1 4.632-18.6m25.81 18.6a36.01 36.01 0 0 0-4.632-18.6" + style="stroke:#cab1fb;stroke-linecap:round;stroke-linejoin:round" + transform="translate(803.1324 72.881444) scale(.52648899)" /> + d="M2640-337.507h26.355" + style="fill:none;stroke:#cab1fb" + transform="translate(803.1324 72.881444) scale(.52648899)" /> + transform="translate(-1988 284)"> - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + transform="translate(-1804 252)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + d="M2102.0935-73.198422c-1.5267 0-7.2523 2.397103-7.2523 2.397103h18.3202s-5.6777-2.397103-7.205-2.397103c-1.5272 0-1.9559 1.001912-1.9559 1.001912s-.3806-1.001912-1.907-1.001912z" + style="fill:#59c9a5;stroke-width:.52649" /> + transform="translate(-1812 252)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1820 252)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path671" + d="M2168.0013-75.999866c-1.9999 0-3.9999 3.083319-3.9999 5.082427s2.0027 2.917565 3.9999 2.917565c1.9972 0 4.0001-.916669 4.0001-2.917565s-1.9972-5.082427-4.0001-5.082427z" + style="fill:#cab1fb;stroke-width:.896057" /> + transform="translate(-1836 252)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="g674" + fill="none" + stroke="#000"> + id="path672" + stroke-width="1.58683782" + d="M2225.93024201-71.72425173h12.14188909" /> + d="M2956.744-341.15a9.747 9.747 0 0 1 2.708 6.607 9.483 9.483 0 0 1-1.929 5.66m29.866-12.267a9.748 9.748 0 0 0-2.709 6.607 9.471 9.471 0 0 0 1.931 5.66" + style="stroke:#cab1fb;stroke-linecap:round;stroke-linejoin:round" + transform="translate(667.24116 104.38263) scale(.52648899)" /> + d="M2960-334.493h24.132" + style="stroke:#cab1fb" + transform="translate(667.24116 104.38263) scale(.52648899)" /> + transform="translate(-1844 252)"> - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + transform="translate(-1660 220)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1668 220)"> - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + transform="translate(-1676 220)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1684 220)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1692 220)"> - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + transform="translate(-1700 220)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1516 188)"> - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + transform="translate(-1524 188)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1532 188)"> - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + transform="translate(-1540 188)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1548 188)"> - - - - - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + + + + + transform="translate(-1556 188)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="path702" + d="M2264.0017-5.9824946c2.9574 0 5.6509-.3964404 6.7754-1.4546916.8124-.7644608.7688-1.916422-.1321-2.3797325-1.1583-.5949403-2.7299.3301103-6.6433.3301103-3.9133 0-5.4859-.9266206-6.6437-.3301103-.9008.4633105-.9445 1.6152717-.1322 2.3797325 1.1246 1.0582512 3.8181 1.4546916 6.7759 1.4546916z" + style="fill:#cab1fb;stroke-width:.52649" /> + transform="translate(-1372 156)"> - - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + + transform="translate(-1380 156)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1388 156)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + transform="translate(-1396 156)"> - - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + + transform="translate(-1404 156)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + id="g712" + fill="none" + stroke="#000"> + + d="M3908.9828-334.54242a67.049 67.049 0 0 1-18.3 2.187 67.055 67.055 0 0 1-18.3-2.187" + style="stroke:#cab1fb" + transform="translate(401.74135 179.47822) scale(.47042139)" /> - + d="M3898.3338-324.86642a72.016 72.016 0 0 1-7.651.4 71.974 71.974 0 0 1-7.651-.4m-10.039-7.226c-1.334-1.816.473-4.036 2.287-4.457m33.091 4.457c1.336-1.816-.473-4.036-2.287-4.457" + style="stroke:#cab1fb;stroke-linecap:round;stroke-linejoin:round" + transform="translate(401.74135 179.47822) scale(.47042139)" /> + transform="translate(-1412 156)"> - - - + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + + transform="translate(-2308 340)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fafafe;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + transform="translate(-2332 340)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fafafe;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + transform="translate(-2316 340)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fafafe;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + transform="translate(-2324 340)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fafafe;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + stroke="#000" + stroke-width=".429313" + d="M2407.3508-136.89326a2.4281618 2.4281618 0 1 0-2.4236 2.42354 2.4235456 2.4235456 0 0 0 2.4236-2.42354zm1.3018 0a2.4281618 2.4281618 0 1 1 2.4235 2.42354 2.4235456 2.4235456 0 0 1-2.4235-2.42354zm0-.16157h-1.3111" + style="display:inline;stroke:#181b33;stroke-width:.500001;stroke-miterlimit:4;stroke-dasharray:none" /> + transform="translate(-2340 340)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fafafe;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + id="path718" + d="M2478.6299-138.0374c-.4617-1.32949-2.3082-1.56492-4.0808-.99712a2.9082547 2.9082547 0 0 0-2.0219 1.93884h-1.0525a2.9036384 2.9036384 0 0 0-2.0174-1.93884c-1.7726-.5678-3.6237-.33237-4.0854.99712-.4616 1.32948.7156 2.81592 2.2435 3.3468 1.528.53087 3.3376.0692 3.7992-1.26025a2.1281038 2.1281038 0 0 0 .1247-.46624h.9694a2.1281038 2.1281038 0 0 0 .1016.46163c.4616 1.32948 2.2712 1.79111 3.7991 1.26024 1.528-.53087 2.6821-2.0127 2.2205-3.34218zm-7.7323 1.93422c-.3554 1.02019-1.7403 1.38488-2.9175.9648-1.1771-.42008-2.0773-1.54645-1.7265-2.57127.3509-1.02481 1.7819-1.20023 3.1391-.7663 1.1218.36007 1.8604 1.34795 1.5049 2.37277zm5.1241.9648c-1.1726.41085-2.5621.0554-2.9175-.9648-.3555-1.0202.3831-2.0127 1.5049-2.37277 1.3572-.43393 2.7698-.25389 3.1391.7663.3693 1.0202-.5494 2.16504-1.7265 2.57127z" + style="display:inline;fill:#181b33;stroke-width:.461628" /> + transform="translate(-2164 308)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> - - - - - + style="display:inline;fill:#fafafe;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + + + transform="translate(-2156 308)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> - - - - + style="display:inline;fill:#fafafe;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + + + transform="translate(-2172 308)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> - - - - + style="display:inline;fill:#fafafe;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + + + transform="translate(-2300 340)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fafafe;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + transform="translate(-2724 412)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fafafe;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> + ry="1.0386623" + style="display:inline;fill:#181b33;fill-opacity:1;stroke-width:.461628" /> + transform="translate(-2716 412)"> + style="display:inline;fill:none;fill-opacity:1;stroke:none;stroke-width:.320595;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" /> + style="display:inline;fill:#fafafe;fill-opacity:1;stroke:#cab1fb;stroke-width:1.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - + id="path727" + d="M931.5 227.99998a2.8125 2.8125 0 0 0-2.8125 2.8125 2.8125 2.8125 0 0 0 2.8125 2.8125 2.8125 2.8125 0 0 0 2.8125-2.8125 2.8125 2.8125 0 0 0-2.8125-2.8125zm-2.46484 5.71289c-.55561.47644-.91016 1.19869-.91016 2.00391 0 .52616.189.99654.44727 1.40625v.002c.0269.0427.0176.10563.0469.14648a.250025.250025 0 0 0 .45312-.14648v-.56445c0-.48627.16046-.92795.42774-1.27149v3.71089c0 .554.22299 1 .5 1 .27699 0 .5-.446.5-1v-1.5h2v1.5c0 .554.22299 1 .5 1 .27699 0 .5-.446.5-1v-3.71094c.26727.34354.42773.78523.42773 1.27149v.56445a.250025.250025 0 0 0 .45508.14648c.31032-.4333.49219-.97302.49219-1.55468 0-.80522-.35456-1.52747-.91016-2.00391-.66632.56787-1.52798.91211-2.46484.91211-.93687 0-1.79853-.34424-2.46485-.91211zM940.5 224.37498a2.8125 2.8125 0 0 0-2.8125 2.8125 2.8125 2.8125 0 0 0 2.8125 2.8125 2.8125 2.8125 0 0 0 2.8125-2.8125 2.8125 2.8125 0 0 0-2.8125-2.8125zm-2.38281 5.7793c-.10448.10346-.2015.21579-.29102.33789-.4395.59931-.70117 1.41036-.70117 2.30273 0 .68323.17847 1.30073.44727 1.83008.018.035.0103.087.0293.12109a.250025.250025 0 0 0 .4707-.12109v-.73438c0-.64427.16416-1.2313.42773-1.6875v6.77149c0 .554.223 1 .5 1s.5-.446.5-1v-2.97461h2v2.97461c0 .554.223 1 .5 1s.5-.446.5-1v-6.77149c.26357.4562.42774 1.04321.42774 1.6875v.73438a.250025.250025 0 0 0 .4707.12109c.019-.0341.0123-.0861.0293-.12109.2688-.52935.44727-1.14685.44727-1.83008 0-.89237-.26167-1.70343-.70117-2.30273-.0895-.1221-.18654-.23443-.29102-.33789-.65443.52755-1.48367.8457-2.38282.8457-.89915 0-1.72839-.31815-2.38281-.8457z" + style="color:#000;fill:#bdede0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:markers stroke fill" + transform="matrix(1.0158724 0 0 1.024 -942.85657 106.24002)" /> - + id="path728" + d="M1011.1875 162.99998a2.8125 2.8125 0 0 0-2.8125 2.8125 2.8125 2.8125 0 0 0 2.8125 2.8125 2.8125 2.8125 0 0 0 2.8125-2.8125 2.8125 2.8125 0 0 0-2.8125-2.8125zm-2.1152 5.97852c-.021.0269-.042.0539-.062.082-.3567.49375-.5723 1.1669-.5723 1.91015 0 .58254.1463 1.11272.375 1.55664v.006c.01.0167 0 .0422.014.0586a.1250125.1250125 0 0 0 .2344-.0586v-.62699c0-.66603.1942-1.26546.5019-1.69141.038-.0532.081-.10474.1231-.15234v4.9375c0 .554.223 1 .5 1s.5-.446.5-1v-2h1v2c0 .554.223 1 .5 1s.5-.446.5-1v-4.9375.002c.042.0476.083.0971.1211.15039.3077.42596.5019 1.02539.5019 1.69141v.62695a.1250125.1250125 0 0 0 .2344.0586c.01-.0164 0-.0419.014-.0586v-.006c.2286-.44392.375-.9741.375-1.55664 0-.74325-.2156-1.41641-.5723-1.91016-.02-.0281-.041-.0551-.062-.082-.6065.40777-1.335.64649-2.1152.64649-.7802 0-1.5087-.23872-2.1152-.64649zm10.7714-6.97852a2.8125 2.8125 0 0 0-2.8125 2.8125 2.8125 2.8125 0 0 0 2.8125 2.8125 2.8125 2.8125 0 0 0 2.8125-2.8125 2.8125 2.8125 0 0 0-2.8125-2.8125zm-2.6328 5.56055c-.8324.64499-1.3672 1.77814-1.3672 3.03515 0 .71847.2165 1.36192.5176 1.92774v.01c.03.0567.02.13885.053.19336a.3750375.3750375 0 0 0 .6953-.19336v-.95313a3 3.25 0 0 0 .8243 1.17383v2.24606c0 .554.3345 1 .75 1s.75-.446.75-1v-1.53125a3 3.25 0 0 0 .4061.0312 3 3.25 0 0 0 .4063-.0312v1.53125c0 .554.3345 1 .75 1s.75-.446.75-1v-2.24609a3 3.25 0 0 0 .8203-1.16407v.94336a.3750375.3750375 0 0 0 .6953.19336c.033-.0545.022-.13665.053-.19336v-.01c.3011-.56582.5176-1.20926.5176-1.92773 0-1.25592-.534-2.38792-1.3652-3.03321-.6861.65689-1.6141 1.0625-2.6309 1.0625-1.0178 0-1.9466-.40644-2.6328-1.06445z" + style="color:#000;fill:#bdede0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;-inkscape-stroke:none;paint-order:markers stroke fill" + transform="matrix(1.0350962 0 0 1.0000011 -1027.7651 174.99984)" /> + id="slider-verticalStretch" + d="M124.1381 336a.55178513.54706793 0 0 0-.3901.16025l-3.3104 3.28209a.55178513.54706793 0 0 0 .3901.93377h1.6552v7.24792h-1.6552a.55178513.54706793 0 0 0-.3901.93378l3.3104 3.28208a.55178513.54706793 0 0 0 .7801 0l3.3104-3.28208a.55178513.54706793 0 0 0-.3901-.93378h-1.6552v-7.24792h1.6552a.55178513.54706793 0 0 0 .3901-.93377l-3.3104-3.28209a.55178513.54706793 0 0 0-.39-.16025Zm-8.8277 1.98292A3.3103797 6.0171455 0 0 0 112 344.00007a3.3103797 6.0171455 0 0 0 3.3104 6.01715 3.3103797 6.0171455 0 0 0 3.3104-6.01715 3.3103797 6.0171455 0 0 0-3.3104-6.01715z" + style="color:#000;display:inline;fill:#bdede0;stroke-width:1.09873;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" /> + id="slider-scale" + d="M96.5333 336a.53338724.53338724 0 0 0-.5333.53333V340.8a.53338724.53338724 0 0 0 .9104.37709l.9021-.90209 1.393801 1.39375c.5234-1.06768 1.394799-1.93908 2.462399-2.4625l-1.3937-1.39375.9021-.90208A.53338724.53338724 0 0 0 100.8 336Zm10.6667 0a.53338724.53338724 0 0 0-.3771.91042l.9021.90208-1.3937 1.39375c1.0676.52342 1.939 1.39482 2.4625 2.4625l1.3937-1.39375.9021.90209A.53338724.53338724 0 0 0 112 340.8v-4.26667a.53338724.53338724 0 0 0-.5333-.53333Zm-3.2 3.73333a4.2666713 4.2666713 0 0 0-4.266699 4.26668A4.2666713 4.2666713 0 0 0 104 348.26668a4.2666713 4.2666713 0 0 0 4.2667-4.26667A4.2666713 4.2666713 0 0 0 104 339.73333Zm-4.793699 6.59793-1.393801 1.39375-.9021-.90209a.53338724.53338724 0 0 0-.9104.37709v4.26667a.53338724.53338724 0 0 0 .5333.53334H100.8a.53338724.53338724 0 0 0 .3771-.91043l-.9021-.90208 1.3937-1.39375c-1.0676-.52342-1.938999-1.39482-2.462399-2.4625zm9.587399 0c-.5234 1.06768-1.3948 1.93908-2.4625 2.4625l1.3938 1.39375-.9021.90208a.53338724.53338724 0 0 0 .3771.91043h4.2667a.53338724.53338724 0 0 0 .5333-.53334v-4.26667a.53338724.53338724 0 0 0-.9104-.37709l-.9021.90209z" + style="color:#000;display:inline;fill:#bdede0;stroke-width:1.06667px;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" /> + id="slider-yPosition" + d="M35.394426 336c-.128586.00002-.251873.0511-.342763.14204l-2.908782 2.90911c-.305266.30545-.08899.82749.342763.82767h1.454341v3.39396c.0001.26776.217076.48482.484847.48485h1.939188c.267771-.00003.484747-.21709.484747-.48485v-3.39396h1.454441c.431753-.00018.648029-.52222.342762-.82767l-2.908782-2.90911c-.09099-.0909-.214176-.14202-.342762-.14204Zm4.605596 4.12124c-1.020688.0704-1.839699.33779-2.424035.85986v2.29168c-.0001.66941-.54264 1.21206-1.211967 1.21212h-.208277c.244073 1.93802 1.891093 3.39211 3.844279 3.39396.909401-.0212 1.733611-.17815 2.423935-.85984v-2.29168c.0001-.66942.542641-1.21206 1.212068-1.21213h.210177c-.244273-1.93873-1.892393-3.39306-3.84618-3.39396zm3.636003 4.12124c-.267771.00003-.484847.21709-.484847.48485v3.39396h-1.454441c-.431753.00016-.647929.5222-.342763.82766l2.908782 2.90911c.18938.18928.496246.18928.685625 0l2.908782-2.90911c.305167-.30546.08899-.8275-.342762-.82766H46.05996v-3.39396c0-.26776-.217076-.48482-.484747-.48485z" + style="display:inline;fill:#bdede0;stroke:none;stroke-width:.96965;stroke-linecap:round;stroke-linejoin:round;paint-order:markers stroke fill" /> + id="slider-xPosition" + d="M48 348.60559c0 .12856.051.25186.142.34277l2.9092 2.90879c.3054.30521.8274.089.8276-.34277v-1.4544h3.394c.2677-.00002.4848-.21706.4848-.4848v-1.93919c0-.26773-.2171-.48476-.4848-.48479h-3.394v-1.4544c-.0002-.43179-.5222-.648-.8276-.34277l-2.9092 2.90879c-.091.091-.142.2142-.142.34277zm4.1212-4.60558c.07 1.0207.3378 1.83962.8599 2.42399h2.2917c.6694.00007 1.212.54265 1.2121 1.21199v.20831c1.938-.24414 3.3921-1.89116 3.394-3.84429-.021-.90944-.1782-1.73366-.8599-2.424h-2.2917c-.6694-.00007-1.212-.54265-1.2121-1.21199v-.21021c-1.9387.24423-3.3931 1.89235-3.394 3.8462zm4.1213-3.63599c0 .26774.2171.48477.4848.48479h3.394v1.4544c.0001.4318.5222.64799.8276.34278l2.9091-2.90879c.1893-.18933.1893-.49621 0-.68555l-2.9091-2.90878c-.3054-.30523-.8275-.089-.8276.34277v1.4544h-3.394c-.2677.00003-.4848.21706-.4848.48479z" + style="display:inline;fill:#bdede0;stroke:none;stroke-width:.969649;stroke-linecap:round;stroke-linejoin:round;paint-order:markers stroke fill" /> + id="slider-spacing" + d="M67.01049 341A3.0105034 2.9999943 0 0 0 64 344a3.0105034 2.9999943 0 0 0 3.01049 2.99999 3.0105034 2.9999943 0 0 0 1.76738-.58259l-1.66658-1.66071a1.0752873 1.0715337 0 0 1 0-1.51506l1.67155-1.66574A3.0105034 2.9999943 0 0 0 67.01049 341Zm3.44062 0a.43011492.42861348 0 0 0-.30409.12555l-2.58044 2.57144a.43011492.42861348 0 0 0 0 .60602l2.58044 2.57142a.43011492.42861348 0 0 0 .73414-.30301v-1.28571h2.25786v1.28571a.43011492.42861348 0 0 0 .73414.30301l2.58044-2.57142a.43011492.42861348 0 0 0 0-.60602l-2.58044-2.57144a.43011492.42861348 0 0 0-.73414.30303v1.28571h-2.25786v-1.28571a.43011492.42861348 0 0 0-.26543-.39678.43011492.42861348 0 0 0-.16462-.0318Zm6.5384 0a3.0105034 2.9999943 0 0 0-1.75387.57254l1.67494 1.66909a1.0752873 1.0715337 0 0 1 0 1.51506l-1.67662 1.67076a3.0105034 2.9999943 0 0 0 1.75555.57254A3.0105034 2.9999943 0 0 0 80 344a3.0105034 2.9999943 0 0 0-3.01049-3Z" + style="display:inline;fill:#bdede0;stroke:none;stroke-width:1.71729;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers stroke fill" /> + id="slider-rotation" + d="M88.0359 336.00007c-.4708-.002-.9468.0378-1.4241.12031C82.7941 336.78003 80 340.041 80 343.83976a.88891503.8710789 0 0 0 .8884.87059.88891503.8710789 0 0 0 .8907-.87059c0-2.96488 2.1611-5.4896 5.1407-6.00445 2.9796-.51484 5.894 1.13378 6.9288 3.91985.9171 2.46935.1163 5.18136-1.9018 6.79847l-1.0581-1.41087a.57149919.56003203 0 0 0-.567-.21874.57149919.56003203 0 0 0-.4464.40466l-1.0135 3.71423a.57149919.56003203 0 0 0 .5156.70435l3.9867.25155a.57149919.56003203 0 0 0 .4979-.89028l-.8617-1.15057c2.6392-2.07089 3.7036-5.60766 2.5179-8.79996-1.16-3.12347-4.1865-5.1438-7.4823-5.15793zm-.014 3.57424c-2.4228 0-4.4019 1.92503-4.4019 4.2895 0 2.36451 1.9791 4.28953 4.4019 4.28953.2475 0 .4888-.0226.7255-.0613l.2567-.93621a1.4287522 1.4000842 0 0 1 1.116-1.01495 1.4287522 1.4000842 0 0 1 1.3103.4353c.6217-.73958.9956-1.68507.9956-2.71241 0-2.36447-1.9813-4.28951-4.4041-4.28951z" + style="color:#000;display:inline;fill:#bdede0;stroke-width:1.13137;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:markers stroke fill" /> + id="tab-save" + fill="#888" + d="M132 314.66667v8q0 .55-.39133.942-.392.39133-.942.39133h-9.33334q-.55 0-.942-.39133-.39133-.392-.39133-.942v-9.33334q0-.55.39133-.942.392-.39133.942-.39133h8zM126 322q.83333 0 1.41667-.58333Q128 320.83333 128 320q0-.83333-.58333-1.41667Q126.83333 318 126 318q-.83333 0-1.41667.58333Q124 319.16667 124 320q0 .83333.58333 1.41667Q125.16667 322 126 322Zm-4-5.33333h6V314h-6z" + style="fill:#fff;fill-opacity:1;stroke-width:.666667" /> + id="subtab-info"> - - - + style="color:#000;display:inline;fill:#cab1fb;stroke-width:.750013;stroke-linecap:round;stroke-linejoin:round" + transform="matrix(1.29456446 -.3055461 -.3055461 1.29456446 28.00919698 -33.94198492)" /> + id="path737" + d="m190.83423 328.86858.0108-4.77785c-.56571-1.27775-2.25307-1.83648-3.18455.008l-.0118 4.77666z" + style="display:inline;fill:#cab1fb;fill-opacity:1;stroke:none;stroke-width:.689529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + transform="rotate(45 347.56480669 303.88270494) scale(1.3304782)" /> + diff --git a/src/public/assets/images/miieditor_symbols.svg b/src/public/assets/images/miieditor_symbols.svg new file mode 100644 index 0000000..ed9b5a4 --- /dev/null +++ b/src/public/assets/images/miieditor_symbols.svg @@ -0,0 +1,4447 @@ + \ No newline at end of file diff --git a/src/utils/miieditor.ts b/src/utils/miieditor.ts new file mode 100644 index 0000000..1278f67 --- /dev/null +++ b/src/utils/miieditor.ts @@ -0,0 +1,319 @@ +export interface Slider { + name: string; + min: number; + max: number; +} + +export interface Subtab { + name: string; + type?: 'color' | 'slider' | 'component'; + values?: number[][] | string[][] | boolean[][] | Slider[][]; +} + +export interface Tab { + name: string; subTabs?: Subtab[]; +} + +export const miiEditorJSON: { + tabs: Tab[]; +} = { + tabs: [ + { + name: 'faceType', + subTabs: [ + { name: 'faceType', values: [[0, 1, 8, 2, 3, 9, 4, 5, 10, 6, 7, 11]] }, + { + name: 'makeupType', + values: [[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]] + }, + { + name: 'wrinklesType', + values: [[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]] + }, + { + name: 'skinColor', + type: 'color', + values: [ + ['#FFCE98', '#FFBA64', '#FF7C3E', '#FFB184', '#CA5326', '#752E17 '] + ] + } + ] + }, + { + name: 'hairType', + subTabs: [ + { + name: 'hairType', + values: [ + [33, 47, 40, 37, 32, 107, 48, 51, 55, 70, 44, 66], + [52, 50, 38, 49, 43, 31, 56, 68, 62, 115, 76, 119], + [64, 81, 116, 121, 22, 58, 60, 87, 125, 117, 73, 75], + [42, 89, 57, 54, 80, 34, 23, 86, 88, 118, 39, 36], + [45, 67, 59, 65, 41, 30, 12, 16, 10, 82, 128, 129], + [14, 95, 105, 100, 6, 20, 93, 102, 27, 4, 17, 110], + [123, 8, 106, 72, 3, 21, 0, 98, 63, 90, 11, 120], + [5, 74, 108, 94, 124, 25, 99, 69, 35, 13, 122, 113], + [53, 24, 85, 83, 71, 131, 96, 101, 29, 7, 15, 112], + [79, 1, 109, 127, 91, 26, 61, 103, 2, 77, 18, 92], + [84, 9, 19, 130, 97, 104, 46, 78, 28, 114, 126, 111] + ] + }, + { + name: 'hairColor', + type: 'color', + values: [ + [ + '#0A0A09', + '#562D1B', + '#772314', + '#9C481E', + '#988B8D', + '#664C1A', + '#AA6822', + '#FEB454' + ] + ] + } + ] + }, + { + name: 'eyebrowType', + subTabs: [ + { + name: 'eyebrowType', + values: [ + [6, 0, 12, 1, 9, 19, 7, 21, 8, 17, 5, 4], + [11, 10, 2, 3, 14, 20, 15, 13, 22, 18, 16, 23] + ] + }, + { + name: 'eyebrowPosition', + type: 'slider', + values: [[ + { name: 'eyebrowYPosition', min: 3, max: 18 }, + { name: 'eyebrowSpacing', min: 0, max: 12 }, + { name: 'eyebrowRotation', min: 0, max: 11 }, + { name: 'eyebrowScale', min: 0, max: 8 }, + { name: 'eyebrowVerticalStretch', min: 0, max: 6 } + ]] + }, + { + name: 'eyebrowColor', + type: 'color', + values: [ + [ + '#0A0A09', + '#562D1B', + '#772314', + '#9C481E', + '#988B8D', + '#664C1A', + '#AA6822', + '#FEB454' + ] + ] + } + ] + }, + { + name: 'eyeType', + subTabs: [ + { + name: 'eyeType', + values: [ + [2, 4, 0, 8, 39, 17, 1, 26, 16, 15, 27, 20], + [33, 11, 19, 32, 9, 12, 23, 34, 21, 25, 40, 35], + [5, 41, 13, 36, 37, 6, 24, 30, 31, 18, 28, 46], + [7, 44, 38, 42, 45, 29, 3, 43, 22, 10, 14, 47], + [48, 49, 50, 53, 59, 56, 54, 58, 57, 55, 51, 52] + ] + }, + { + name: 'eyePosition', + type: 'slider', + values: [[ + { name: 'eyeYPosition', min: 0, max: 18 }, + { name: 'eyeSpacing', min: 0, max: 12 }, + { name: 'eyeRotation', min: 0, max: 7 }, + { name: 'eyeScale', min: 0, max: 7 }, + { name: 'eyeVerticalStretch', min: 0, max: 6 } + ]] + }, + { + name: 'eyeColor', + type: 'color', + values: [ + ['#070606', '#887E75', '#814631', '#796A34', '#565BA4', '#4C8260'] + ] + } + ] + }, + { + name: 'noseType', + subTabs: [ + { + name: 'noseType', + values: [ + [1, 10, 2, 3, 6, 0, 5, 4, 8, 9, 7, 11], + [13, 14, 12, 17, 16, 15] + ] + }, + { + name: 'nosePosition', + type: 'slider', + values: [[ + { name: 'noseYPosition', min: 0, max: 18 }, + { name: 'noseScale', min: 0, max: 8 } + ]] + } + ] + }, + { + name: 'mouthType', + subTabs: [ + { + name: 'mouthType', + values: [ + [23, 1, 19, 21, 22, 5, 0, 8, 10, 16, 6, 13], + [7, 9, 2, 17, 3, 4, 15, 11, 20, 18, 14, 12], + [27, 30, 24, 25, 29, 28, 26, 35, 31, 34, 33, 32] + ] + }, + { + name: 'mouthPosition', + type: 'slider', + values: [[ + { name: 'mouthYPosition', min: 0, max: 18 }, + { name: 'mouthScale', min: 0, max: 8 }, + { name: 'mouthHorizontalStretch', min: 0, max: 6 } + ]] + }, + { + name: 'mouthColor', + type: 'color', + values: [['#FF5D0C', '#FF110C', '#FF524B', '#FFAA77', '#181312']] + } + ] + }, + { + name: 'glassesType', + subTabs: [ + { + name: 'glassesType', + values: [[0, 1, 2, 3, 4, 5, 6, 7, 8]] + }, + { + name: 'glassesPosition', + type: 'slider', + values: [[ + { name: 'glassesYPosition', min: 0, max: 20 }, + { name: 'glassesScale', min: 0, max: 7 } + ]] + }, + { + name: 'glassesColor', + type: 'color', + values: [ + ['#000000', '#7A4011', '#D51208', '#29376E', '#D56D00', '#987F6E'] + ] + } + ] + }, + { + name: 'beardType', + subTabs: [ + { + name: 'beardType', + values: [[0, 1, 2, 3, 4, 5]] + }, + { + name: 'mustacheType', + values: [[0, 1, 2, 3, 4, 5]] + }, + { + name: 'facialHairPosition', + type: 'slider', + values: [[ + { name: 'mustacheYPosition', min: 0, max: 16 }, + { name: 'mustacheScale', min: 0, max: 8 } + ]] + }, + { + name: 'facialHairColor', + type: 'color', + values: [ + [ + '#0A0A09', + '#562D1B', + '#772314', + '#9C481E', + '#988B8D', + '#664C1A', + '#AA6822', + '#FEB454' + ] + ] + } + ] + }, + { + name: 'moleEnabled', + subTabs: [ + { + name: 'moleEnabled', + values: [[false, true]] + }, + { + name: 'molePosition', + type: 'slider', + values: [[ + { name: 'moleYPosition', min: 0, max: 30 }, + { name: 'moleXPosition', min: 0, max: 16 }, + { name: 'moleScale', min: 0, max: 8 } + ]] + } + ] + }, + { + name: 'miisc', + subTabs: [ + { + name: 'size', + type: 'slider', + values: [[ + { name: 'height', min: 0, max: 127 }, + { name: 'build', min: 0, max: 127 } + ]] + }, + { + name: 'gender', + values: [[0, 1]] + }, + { + name: 'favoriteColor', + type: 'color', + values: [ + [ + '#FF2216', + '#FF7A1A', + '#FFED22', + '#91F321', + '#008332', + '#0D50BE', + '#49BBE4', + '#FF6381', + '#8B2DB2', + '#573D18', + '#FFFFFF', + '#1D1A15' + ] + ] + } + + ] + }, + { + name: 'save', subTabs: [{ name: 'info', type: 'component' }, { name: 'save', type: 'component' }] + } + ] +};