pull/399/head
Glen Cheney 2 years ago
parent cccde2f02f
commit 3dea9b1ef1

@ -1,9 +1,7 @@
module.exports = {
// extends: ['airbnb-base', 'prettier'],
extends: ['airbnb', 'eslint:recommended', 'plugin:react/recommended', 'prettier'],
plugins: ['react'],
env: {
// node: true,
browser: true,
},
rules: {

@ -0,0 +1 @@
v16.15.1

@ -32,7 +32,6 @@ This project was inspired by [Isotope](http://isotope.metafizzy.co/) and [Packer
[dependabot-url]: https://docs.github.com/en/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/configuring-dependabot-security-updates
[dependabot-img]: https://img.shields.io/badge/Dependabot-enabled-blue.svg
# Turborepo starter
This is an official Yarn v1 starter turborepo.

@ -41,16 +41,14 @@ const config = {
({
colorMode: {
respectPrefersColorScheme: true,
switchConfig: {
darkIcon: '🌕',
lightIcon: '️☀️',
},
},
navbar: {
title: 'Shuffle.js',
logo: {
alt: 'Shuffle.js Logo',
src: 'img/favicon.svg',
width: 24,
height: 24,
},
items: [
{
@ -78,43 +76,43 @@ const config = {
title: 'Docs',
items: [
{
label: 'Tutorial',
label: 'Installation',
to: '/docs/install',
},
{
label: 'FAQs',
to: '/docs/faqs',
},
],
},
{
title: 'Community',
items: [
{
label: 'Stack Overflow',
href: 'https://stackoverflow.com/questions/tagged/docusaurus',
},
{
label: 'Discord',
href: 'https://discordapp.com/invite/docusaurus',
label: 'Twitter',
href: 'https://twitter.com/Vestride',
},
{
label: 'Twitter',
href: 'https://twitter.com/docusaurus',
label: 'Stack Overflow',
href: 'https://stackoverflow.com/search?q=shuffle+js',
},
],
},
{
title: 'More',
items: [
{
label: 'Blog',
to: '/blog',
},
{
label: 'GitHub',
href: 'https://github.com/Vestride/Shuffle',
},
{
label: 'CodePen template',
href: 'http://codepen.io/pen?template=qrjOpX',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} ShuffleJS. Built with Docusaurus.`,
copyright: `Copyright © ${new Date().getFullYear()} Glen Cheney. Built with Docusaurus.`,
},
prism: {
theme: lightCodeTheme,

@ -15,12 +15,12 @@
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
"@docusaurus/core": "^2.0.0-beta.16",
"@docusaurus/preset-classic": "^2.0.0-beta.16",
"@docusaurus/types": "^2.0.0-beta.16",
"@docusaurus/core": "^2.0.0-beta.21",
"@docusaurus/preset-classic": "^2.0.0-beta.21",
"@docusaurus/types": "^2.0.0-beta.21",
"@mdx-js/react": "^1.6.21",
"clsx": "^1.1.1",
"prism-react-renderer": "^1.2.1",
"clsx": "^1.2.0",
"prism-react-renderer": "^1.3.5",
"react": "^17.0.1",
"react-dom": "^17.0.1"
}

@ -1,48 +1,51 @@
import React from 'react';
import clsx from 'clsx';
// eslint-disable-next-line import/no-extraneous-dependencies
import { useColorMode } from '@docusaurus/theme-common';
import styles from './HomepageFeatures.module.css';
import responsiveSvg from '../../static/img/undraw-responsive-design.svg';
import findSvg from '../../static/img/undraw-find-things.svg';
import browsersSvg from '../../static/img/undraw-browsers.svg';
import responsiveSvgDark from '../../static/img/undraw-responsive-design-dark.svg';
import findSvgDark from '../../static/img/undraw-find-things-dark.svg';
import browsersSvgDark from '../../static/img/undraw-browsers-dark.svg';
const FeatureList = [
const features = [
{
title: 'Easy to Use',
// eslint-disable-next-line global-require
Svg: require('../../static/img/undraw_docusaurus_mountain.svg').default,
title: 'Responsive design',
Svg: responsiveSvg,
SvgDark: responsiveSvgDark,
description: (
<>
Docusaurus was designed from the ground up to be easily installed and used to get your website up and running
quickly.
</>
<>Shuffle was built to make responsive design easy. Quickly update items in the grid by adding a class.</>
),
},
{
title: 'Focus on What Matters',
// eslint-disable-next-line global-require
Svg: require('../../static/img/undraw_docusaurus_tree.svg').default,
description: (
<>
Docusaurus lets you focus on your docs, and we&apos;ll do the chores. Go ahead and move your docs into the{' '}
<code>docs</code> directory.
</>
),
title: 'Powerful filters',
Svg: findSvg,
SvgDark: findSvgDark,
description: <>Let your users find what they&rsquo;re looking for with groups and custom filters.</>,
},
{
title: 'Powered by React',
// eslint-disable-next-line global-require
Svg: require('../../static/img/undraw_docusaurus_react.svg').default,
title: 'Smooth animations',
Svg: browsersSvg,
SvgDark: browsersSvgDark,
description: (
<>
Extend or customize your website layout by reusing React. Docusaurus can be extended while reusing the same
header and footer.
</>
<>Transitions are all handled by the CSS, which lets the browser optimize them for the user&rsquo;s device.</>
),
},
];
function Feature({ Svg, title, description }) {
function Feature({ Svg, SvgDark, title, description }) {
const { colorMode } = useColorMode();
return (
<div className={clsx('col col--4')}>
<div className="text--center">
<Svg className={styles.featureSvg} alt={title} />
{colorMode === 'dark' ? (
<SvgDark className={styles.featureSvg} alt={title} />
) : (
<Svg className={styles.featureSvg} alt={title} />
)}
</div>
<div className="text--center padding-horiz--md">
<h3>{title}</h3>
@ -54,12 +57,12 @@ function Feature({ Svg, title, description }) {
export default function HomepageFeatures() {
return (
<section className={styles.features}>
<section className={clsx(styles.features, 'padding-vert--lg')}>
<div className="container">
<div className="row">
{FeatureList.map((props, idx) => (
// eslint-disable-next-line react/no-array-index-key, react/jsx-props-no-spreading
<Feature key={idx} {...props} />
{features.map((props) => (
// eslint-disable-next-line react/jsx-props-no-spreading
<Feature key={props.title} {...props} />
))}
</div>
</div>

@ -1,7 +1,6 @@
.features {
display: flex;
align-items: center;
padding: 2rem 0;
width: 100%;
}

@ -1,39 +1,21 @@
/**
* Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #2e8555;
--ifm-color-primary-dark: #29784c;
--ifm-color-primary-darker: #277148;
--ifm-color-primary-darkest: #205d3b;
--ifm-color-primary-light: #33925d;
--ifm-color-primary-lighter: #359962;
--ifm-color-primary-lightest: #3cad6e;
--ifm-code-font-size: 95%;
}
/* For readability concerns, you should choose a lighter palette in dark mode. */
html[data-theme='dark'] {
--ifm-color-primary: #25c2a0;
--ifm-color-primary-dark: #21af90;
--ifm-color-primary-darker: #1fa588;
--ifm-color-primary-darkest: #1a8870;
--ifm-color-primary-light: #29d5b0;
--ifm-color-primary-lighter: #32d8b4;
--ifm-color-primary-lightest: #4fddbf;
}
.docusaurus-highlight-code-line {
background-color: rgba(0, 0, 0, 0.1);
display: block;
margin: 0 calc(-1 * var(--ifm-pre-padding));
padding: 0 var(--ifm-pre-padding);
--ifm-color-primary: #1a7a67;
--ifm-color-primary-dark: #176e5d;
--ifm-color-primary-darker: #166858;
--ifm-color-primary-darkest: #125548;
--ifm-color-primary-light: #1d8671;
--ifm-color-primary-lighter: #1e8c76;
--ifm-color-primary-lightest: #229f86;
--docusaurus-highlighted-code-line-bg: hsl(0deg 0% 92%);
}
html[data-theme='dark'] .docusaurus-highlight-code-line {
background-color: rgba(0, 0, 0, 0.3);
[data-theme='dark'] {
--ifm-color-primary: #1abb9b;
--ifm-color-primary-dark: #17a88b;
--ifm-color-primary-darker: #169f84;
--ifm-color-primary-darkest: #12836c;
--ifm-color-primary-light: #1dceaa;
--ifm-color-primary-lighter: #1ed7b2;
--ifm-color-primary-lightest: #32e3c0;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}

@ -6,16 +6,104 @@ import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
import styles from './index.module.css';
import HomepageFeatures from '../components/HomepageFeatures';
function Logo() {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
fillRule="evenodd"
strokeLinejoin="round"
strokeMiterlimit="1.414"
clipRule="evenodd"
viewBox="0 0 32 32"
width="100"
height="100"
className={styles.logo}
>
<rect
className={clsx(styles.rect, styles.rect1)}
id="shuffle-rect-1"
x="2"
y="2"
width="8"
height="18"
fill="#2DCB71"
vectorEffect="non-scaling-stroke"
/>
<rect
className={clsx(styles.rect, styles.rect2)}
id="shuffle-rect-2"
x="12"
y="2"
width="8"
height="8"
fill="#9B59B5"
vectorEffect="non-scaling-stroke"
/>
<rect
className={clsx(styles.rect, styles.rect3)}
id="shuffle-rect-3"
x="22"
y="2"
width="8"
height="12"
fill="#F39B11"
vectorEffect="non-scaling-stroke"
/>
<rect
className={clsx(styles.rect, styles.rect4)}
id="shuffle-rect-4"
x="2"
y="22"
width="8"
height="8"
fill="#E74B3B"
vectorEffect="non-scaling-stroke"
/>
<rect
className={clsx(styles.rect, styles.rect5)}
id="shuffle-rect-5"
x="12"
y="12"
width="8"
height="8"
fill="#3397DB"
vectorEffect="non-scaling-stroke"
/>
<rect
className={clsx(styles.rect, styles.rect6)}
id="shuffle-rect-6"
x="22"
y="16"
width="8"
height="4"
fill="#1ABB9B"
vectorEffect="non-scaling-stroke"
/>
<rect
className={clsx(styles.rect, styles.rect7)}
id="shuffle-rect-7"
x="12"
y="22"
width="18"
height="8"
fill="#33495D"
vectorEffect="non-scaling-stroke"
/>
</svg>
);
}
function HomepageHeader() {
const { siteConfig } = useDocusaurusContext();
return (
<header className={clsx('hero hero--primary', styles.heroBanner)}>
<div className="container">
<Logo />
<h1 className="hero__title">{siteConfig.title}</h1>
<p className="hero__subtitle">{siteConfig.tagline}</p>
<div className={styles.buttons}>
<Link className="button button--secondary button--lg" to="/docs/intro">
Docusaurus Tutorial - 5min
Get started with Shuffle
</Link>
</div>
</div>

@ -21,3 +21,45 @@
align-items: center;
justify-content: center;
}
.rect {
transition: 180ms cubic-bezier(0.4, 0, 0.2, 1);
stroke: #1B1B1D;
stroke-width: 2px;
}
@media (-moz-touch-enabled:0),(pointer: fine) {
.logo:hover .rect1 {
transform: translate(20px, 10px);
}
.logo:hover .rect2 {
transform: translate(0, 20px);
transition-delay: calc(1 * 10ms);
}
.logo:hover .rect3 {
transform: translate(-20px, 6px);
transition-delay: calc(2 * 10ms);
}
.logo:hover .rect4 {
transform: translate(10px, -10px);
transition-delay: calc(3 * 10ms);
}
.logo:hover .rect5 {
transform: translate(-10px, 10px);
transition-delay: calc(4 * 10ms);
}
.logo:hover .rect6 {
transform: translate(-20px, -14px);
transition-delay: calc(5 * 10ms);
}
.logo:hover .rect7 {
transform: translate(0, -20px);
transition-delay: calc(6 * 10ms);
}
}

@ -1,7 +0,0 @@
---
title: Markdown page example
---
# Markdown page example
You don't need React to write simple standalone pages.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 B

@ -1,10 +1,11 @@
<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414">
<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414" id="shuffle-logo">
<title>Shuffle.js logo</title>
<rect x="2" y="2" width="8" height="18" fill="#2DCB71"/>
<rect x="12" y="2" width="8" height="8" fill="#9B59B5"/>
<rect x="2" y="22" width="8" height="8" fill="#E74B3B"/>
<rect x="22" y="2" width="8" height="12" fill="#F39B11"/>
<rect x="12" y="22" width="18" height="8" fill="#33495D"/>
<rect x="12" y="12" width="8" height="8" fill="#3397DB"/>
<rect x="22" y="16" width="8" height="4" fill="#1ABB9B"/>
<rect x="2" y="2" width="8" height="18" fill="#2DCB71" />
<rect x="12" y="2" width="8" height="8" fill="#9B59B5" />
<rect x="12" y="2" width="8" height="8" fill="#9B59B5" />
<rect x="22" y="2" width="8" height="12" fill="#F39B11" />
<rect x="2" y="22" width="8" height="8" fill="#E74B3B" />
<rect x="12" y="12" width="8" height="8" fill="#3397DB" />
<rect x="22" y="16" width="8" height="4" fill="#1ABB9B" />
<rect x="12" y="22" width="18" height="8" fill="#33495D" />
</svg>

Before

Width:  |  Height:  |  Size: 609 B

After

Width:  |  Height:  |  Size: 694 B

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg viewBox="0 0 256 250" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid">
<g>
<path d="M128.00106,0 C57.3172926,0 0,57.3066942 0,128.00106 C0,184.555281 36.6761997,232.535542 87.534937,249.460899 C93.9320223,250.645779 96.280588,246.684165 96.280588,243.303333 C96.280588,240.251045 96.1618878,230.167899 96.106777,219.472176 C60.4967585,227.215235 52.9826207,204.369712 52.9826207,204.369712 C47.1599584,189.574598 38.770408,185.640538 38.770408,185.640538 C27.1568785,177.696113 39.6458206,177.859325 39.6458206,177.859325 C52.4993419,178.762293 59.267365,191.04987 59.267365,191.04987 C70.6837675,210.618423 89.2115753,204.961093 96.5158685,201.690482 C97.6647155,193.417512 100.981959,187.77078 104.642583,184.574357 C76.211799,181.33766 46.324819,170.362144 46.324819,121.315702 C46.324819,107.340889 51.3250588,95.9223682 59.5132437,86.9583937 C58.1842268,83.7344152 53.8029229,70.715562 60.7532354,53.0843636 C60.7532354,53.0843636 71.5019501,49.6441813 95.9626412,66.2049595 C106.172967,63.368876 117.123047,61.9465949 128.00106,61.8978432 C138.879073,61.9465949 149.837632,63.368876 160.067033,66.2049595 C184.49805,49.6441813 195.231926,53.0843636 195.231926,53.0843636 C202.199197,70.715562 197.815773,83.7344152 196.486756,86.9583937 C204.694018,95.9223682 209.660343,107.340889 209.660343,121.315702 C209.660343,170.478725 179.716133,181.303747 151.213281,184.472614 C155.80443,188.444828 159.895342,196.234518 159.895342,208.176593 C159.895342,225.303317 159.746968,239.087361 159.746968,243.303333 C159.746968,246.709601 162.05102,250.70089 168.53925,249.443941 C219.370432,232.499507 256,184.536204 256,128.00106 C256,57.3066942 198.691187,0 128.00106,0 Z M47.9405593,182.340212 C47.6586465,182.976105 46.6581745,183.166873 45.7467277,182.730227 C44.8183235,182.312656 44.2968914,181.445722 44.5978808,180.80771 C44.8734344,180.152739 45.876026,179.97045 46.8023103,180.409216 C47.7328342,180.826786 48.2627451,181.702199 47.9405593,182.340212 Z M54.2367892,187.958254 C53.6263318,188.524199 52.4329723,188.261363 51.6232682,187.366874 C50.7860088,186.474504 50.6291553,185.281144 51.2480912,184.70672 C51.8776254,184.140775 53.0349512,184.405731 53.8743302,185.298101 C54.7115892,186.201069 54.8748019,187.38595 54.2367892,187.958254 Z M58.5562413,195.146347 C57.7719732,195.691096 56.4895886,195.180261 55.6968417,194.042013 C54.9125733,192.903764 54.9125733,191.538713 55.713799,190.991845 C56.5086651,190.444977 57.7719732,190.936735 58.5753181,192.066505 C59.3574669,193.22383 59.3574669,194.58888 58.5562413,195.146347 Z M65.8613592,203.471174 C65.1597571,204.244846 63.6654083,204.03712 62.5716717,202.981538 C61.4524999,201.94927 61.1409122,200.484596 61.8446341,199.710926 C62.5547146,198.935137 64.0575422,199.15346 65.1597571,200.200564 C66.2704506,201.230712 66.6095936,202.705984 65.8613592,203.471174 Z M75.3025151,206.281542 C74.9930474,207.284134 73.553809,207.739857 72.1039724,207.313809 C70.6562556,206.875043 69.7087748,205.700761 70.0012857,204.687571 C70.302275,203.678621 71.7478721,203.20382 73.2083069,203.659543 C74.6539041,204.09619 75.6035048,205.261994 75.3025151,206.281542 Z M86.046947,207.473627 C86.0829806,208.529209 84.8535871,209.404622 83.3316829,209.4237 C81.8013,209.457614 80.563428,208.603398 80.5464708,207.564772 C80.5464708,206.498591 81.7483088,205.631657 83.2786917,205.606221 C84.8005962,205.576546 86.046947,206.424403 86.046947,207.473627 Z M96.6021471,207.069023 C96.7844366,208.099171 95.7267341,209.156872 94.215428,209.438785 C92.7295577,209.710099 91.3539086,209.074206 91.1652603,208.052538 C90.9808515,206.996955 92.0576306,205.939253 93.5413813,205.66582 C95.054807,205.402984 96.4092596,206.021919 96.6021471,207.069023 Z" fill="#161614"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.3 KiB

@ -0,0 +1,96 @@
<svg width="563" height="592" viewBox="0 0 563 592" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1_2)">
<path d="M182.653 116C214.685 116 240.653 90.0325 240.653 58C240.653 25.9675 214.685 0 182.653 0C150.62 0 124.653 25.9675 124.653 58C124.653 90.0325 150.62 116 182.653 116Z" fill="#444950"/>
<path d="M58.6526 267C90.6852 267 116.653 241.033 116.653 209C116.653 176.967 90.6852 151 58.6526 151C26.6201 151 0.652649 176.967 0.652649 209C0.652649 241.033 26.6201 267 58.6526 267Z" fill="#444950"/>
<path d="M181.653 428C213.685 428 239.653 402.033 239.653 370C239.653 337.967 213.685 312 181.653 312C149.62 312 123.653 337.967 123.653 370C123.653 402.033 149.62 428 181.653 428Z" fill="#444950"/>
<path d="M415.458 564.738C416.198 564.772 416.931 564.577 417.557 564.181C418.183 563.785 418.672 563.206 418.957 562.522C419.243 561.839 419.312 561.084 419.154 560.36C418.997 559.636 418.621 558.978 418.077 558.475C417.985 558.113 417.92 557.853 417.829 557.491C417.862 557.412 417.894 557.333 417.927 557.255C418.673 555.494 419.922 553.992 421.518 552.939C423.115 551.886 424.986 551.327 426.899 551.335C428.811 551.342 430.679 551.914 432.267 552.979C433.855 554.044 435.093 555.555 435.826 557.321C438.753 564.372 442.48 571.434 443.398 578.889C443.802 582.184 443.632 585.524 442.894 588.761C449.77 573.763 453.34 557.462 453.363 540.962C453.364 536.822 453.135 532.685 452.674 528.57C452.294 525.197 451.766 521.848 451.09 518.523C447.405 500.482 439.493 483.571 428.003 469.182C422.442 466.147 417.945 461.481 415.118 455.813C414.093 453.775 413.369 451.6 412.968 449.354C413.596 449.437 414.233 449.488 414.861 449.529C415.056 449.539 415.262 449.55 415.457 449.56L415.531 449.563C416.22 449.594 416.904 449.425 417.5 449.077C418.095 448.728 418.577 448.215 418.888 447.598C419.199 446.982 419.324 446.289 419.25 445.603C419.176 444.917 418.906 444.267 418.471 443.731C418.2 443.398 417.929 443.065 417.658 442.732C417.246 442.217 416.825 441.713 416.414 441.199C416.366 441.15 416.321 441.099 416.28 441.045C415.807 440.459 415.334 439.883 414.861 439.297C415.724 437.957 416.886 436.834 418.254 436.016C422.995 433.24 429.536 435.163 432.96 439.451C436.395 443.739 437.043 449.755 435.85 455.113C434.677 459.672 432.736 463.998 430.111 467.906C430.369 468.235 430.636 468.554 430.893 468.883C435.593 474.927 439.689 481.416 443.123 488.258C442.288 480.593 443.284 472.839 446.031 465.634C448.814 458.919 454.031 453.264 458.626 447.459C464.144 440.486 475.461 443.529 476.433 452.368C476.442 452.453 476.451 452.539 476.46 452.625C475.778 453.01 475.11 453.418 474.456 453.85C473.635 454.399 472.999 455.183 472.631 456.099C472.263 457.016 472.181 458.022 472.394 458.986C472.608 459.95 473.108 460.827 473.828 461.502C474.549 462.177 475.457 462.619 476.432 462.769L476.532 462.785C476.289 465.244 475.86 467.682 475.247 470.076C473.472 476.76 470.335 483.006 466.033 488.421C461.731 493.836 456.357 498.304 450.247 501.545C449.846 501.75 449.455 501.956 449.054 502.151C452.504 511.928 454.668 522.112 455.492 532.447C455.958 538.545 455.931 544.67 455.41 550.763L455.44 550.547C456.757 543.771 460.371 537.658 465.673 533.239C473.547 526.771 484.672 524.389 493.167 519.189C494.07 518.609 495.12 518.3 496.193 518.298C497.266 518.295 498.317 518.599 499.222 519.174C500.128 519.75 500.85 520.572 501.304 521.544C501.758 522.516 501.924 523.598 501.783 524.662C501.772 524.737 501.76 524.813 501.748 524.889C500.482 525.404 499.249 525.999 498.056 526.668C497.374 527.053 496.706 527.461 496.052 527.894C495.231 528.442 494.595 529.226 494.227 530.142C493.859 531.059 493.776 532.065 493.99 533.029C494.204 533.993 494.703 534.87 495.424 535.545C496.145 536.22 497.052 536.662 498.028 536.813L498.128 536.828C498.2 536.838 498.262 536.849 498.334 536.859C496.17 542.025 493.133 546.781 489.356 550.917C484.69 555.924 479.051 559.924 472.784 562.674C466.517 565.424 459.754 566.865 452.911 566.908H452.9C451.043 574.981 448.351 582.839 444.869 590.355H416.177C416.074 590.036 415.981 589.707 415.889 589.388C418.545 589.555 421.211 589.396 423.828 588.915C421.699 586.303 419.571 583.671 417.442 581.059C417.394 581.01 417.35 580.958 417.308 580.904C416.228 579.567 415.138 578.241 414.058 576.904L414.058 576.902C414 572.804 414.471 568.716 415.457 564.738L415.458 564.738Z" fill="#444950"/>
<path d="M190.958 224.739C191.371 226.12 192.081 227.394 193.04 228.471C193.998 229.548 195.181 230.402 196.505 230.972C197.829 231.542 199.262 231.815 200.703 231.772C202.144 231.728 203.558 231.37 204.845 230.721L230.321 253.97L233.703 236.077L208.976 216.8C207.743 214.71 205.785 213.145 203.475 212.401C201.165 211.658 198.662 211.788 196.441 212.766C194.22 213.745 192.435 215.504 191.424 217.711C190.414 219.918 190.248 222.418 190.958 224.739V224.739Z" fill="#FFB6B6"/>
<path d="M279.628 206.968C279.628 206.968 288.511 186.893 299.731 190.883C310.036 194.548 311.405 193.344 305.158 214.352L263.005 277.87C263.005 277.87 218.67 249.693 226.063 249.417C233.456 249.142 233.256 235.032 233.256 235.032L251.337 240.926L252.425 235.21L254.167 236.953L258.664 233.414L279.628 206.968Z" fill="#1ABB9B"/>
<path d="M330.231 254.446L328.357 271.827L329.46 294.62L281.653 289L278.231 254.446L284.275 254.505L330.231 254.446Z" fill="#FFB6B6"/>
<path d="M339.417 570.02H328.379L317.653 487H342.653L339.417 570.02Z" fill="#FFB6B6"/>
<path d="M342.653 503.02V521C342.653 521 326.753 535.23 315.653 522L308.733 463.38C308.733 463.38 308.563 457.89 305.133 454.63C304.84 454.351 304.584 454.035 304.373 453.69C301.893 449.86 302.903 441.94 302.903 441.94C302.903 441.94 298.083 439.34 296.563 430.94C295.043 422.54 290.043 404.19 290.043 404.19C290.043 404.19 279.713 377.1 280.433 359.95C280.563 356.78 280.613 353.89 280.613 351.29C280.583 339.81 279.433 333.88 279.433 333.88L277.343 294.04L281.653 288L301.363 288.58L302.703 288.54L303.193 288.53L323.433 287.92L334.863 294.64C334.863 294.64 335.883 297.18 337.323 300.69C340.013 307.2 344.153 317.05 345.983 320.36C348.803 325.46 347.403 351.7 337.803 363.36C337.803 363.36 333.813 369.03 334.863 371.08C335.813 372.94 334.903 376.09 334.723 376.65V376.66C334.703 376.71 334.693 376.74 334.693 376.74L333.163 410.74C333.163 410.74 333.163 425.31 336.593 430.63C340.023 435.95 342.653 503.02 342.653 503.02Z" fill="#2F2E41"/>
<path d="M345.243 589.144H337.327L335.914 581.671L332.296 589.144H311.302C310.296 589.144 309.316 588.822 308.505 588.226C307.694 587.63 307.096 586.79 306.796 585.829C306.497 584.868 306.512 583.837 306.84 582.886C307.169 581.934 307.792 581.113 308.62 580.541L325.385 568.963V561.407L343.019 562.46L345.243 589.144Z" fill="#2F2E41"/>
<path d="M274.158 570.237L263.293 568.29L267.384 484.68L291.992 489.091L274.158 570.237Z" fill="#FFB6B6"/>
<path d="M337.803 363.36C337.803 363.36 333.813 369.03 334.863 371.08C335.813 372.94 334.903 376.09 334.723 376.65V376.66C333.621 377.531 332.454 378.316 331.233 379.01C331.233 379.01 325.453 382.85 325.693 385.14C325.923 387.43 323.473 390.35 323.473 390.35L309.703 421.47C309.703 421.47 304.403 435.05 305.673 441.25C306.063 443.15 305.433 447.94 304.373 453.69C302.003 466.71 293.423 512.6 293.423 512.6L286.653 529C286.653 529 261.323 521.97 260.653 520C260.653 520 269.653 456.46 267.643 452.18C265.633 447.9 266.623 435.37 268.263 427C269.893 418.62 272.123 370.71 279.023 355C279.583 353.72 280.113 352.48 280.613 351.29C286.183 337.88 287.563 330.34 287.563 330.34L300.083 292.47L301.363 288.58L301.653 290L303.193 288.53L325.713 296.55L337.323 300.69C340.013 307.2 344.153 317.05 345.983 320.36C348.803 325.46 347.403 351.7 337.803 363.36Z" fill="#2F2E41"/>
<path d="M275.827 562.652L263.704 559.729L261.864 559.286L260.536 566.723L241.987 575.164C241.07 575.579 240.31 576.277 239.819 577.156C239.327 578.034 239.13 579.046 239.256 580.045C239.382 581.044 239.824 581.976 240.518 582.704C241.212 583.433 242.122 583.921 243.113 584.095L263.769 587.805L268.653 581.085L268.724 588.695L276.519 590.085L279.037 563.427L275.827 562.652Z" fill="#2F2E41"/>
<path d="M561.485 591.739H1.1907C0.875513 591.738 0.573565 591.613 0.351013 591.389C0.128461 591.166 0.003479 590.864 0.003479 590.549C0.003479 590.233 0.128461 589.931 0.351013 589.708C0.573565 589.485 0.875513 589.359 1.1907 589.358H561.485C561.8 589.359 562.102 589.485 562.324 589.708C562.547 589.931 562.672 590.233 562.672 590.549C562.672 590.864 562.547 591.166 562.324 591.389C562.102 591.613 561.8 591.738 561.485 591.739Z" fill="#CCCCCC"/>
<path d="M308.891 177.21C321.068 177.21 330.939 167.339 330.939 155.163C330.939 142.986 321.068 133.115 308.891 133.115C296.715 133.115 286.843 142.986 286.843 155.163C286.843 167.339 296.715 177.21 308.891 177.21Z" fill="#FFB7B7"/>
<path d="M286.273 197.321L298.27 190.123L303.653 181H317.653L322.262 187.724L343.468 198.522L343.256 231.51L333.653 281L278.653 265L275.278 246.458C275.278 246.458 255.683 225.512 272.478 213.516L286.273 197.321Z" fill="#1ABB9B"/>
<path d="M337.624 339.751C338.764 339.049 339.736 338.106 340.472 336.987C341.208 335.869 341.69 334.603 341.883 333.278C342.077 331.953 341.978 330.602 341.593 329.32C341.208 328.038 340.546 326.856 339.655 325.857L347.391 242.81L327.535 244.344L326.175 325.494C324.596 327.102 323.662 329.234 323.55 331.485C323.438 333.737 324.155 335.951 325.567 337.708C326.978 339.466 328.985 340.644 331.207 341.021C333.43 341.397 335.713 340.946 337.624 339.751H337.624Z" fill="#FFB6B6"/>
<path d="M343.653 198C343.653 198 343.653 199 346.965 208.388C349.803 216.429 354.825 265.834 345.026 277.891C347.758 279.575 343.65 310.794 342.653 314L322.653 309C319.955 304.363 322.827 271.815 324.788 271.043L324.672 256.223L319.554 207.372L339.264 199.298L343.653 198Z" fill="#1ABB9B"/>
<path d="M202.267 237.302L197.223 204.973C197.052 203.867 197.326 202.738 197.986 201.834C198.646 200.929 199.638 200.324 200.744 200.15L207.79 199.051C208.896 198.88 210.025 199.154 210.929 199.814C211.834 200.474 212.439 201.466 212.613 202.572L217.657 234.901C217.828 236.007 217.554 237.136 216.894 238.041C216.234 238.945 215.242 239.55 214.136 239.724L207.09 240.823C205.984 240.995 204.855 240.72 203.951 240.06C203.046 239.4 202.441 238.408 202.267 237.302Z" fill="#3F3D56"/>
<path d="M201.826 201.67C201.23 201.764 200.695 202.09 200.34 202.578C199.984 203.065 199.836 203.673 199.928 204.269L204.973 236.599C205.066 237.195 205.393 237.729 205.88 238.085C206.367 238.44 206.975 238.588 207.572 238.496L214.618 237.397C215.213 237.303 215.748 236.977 216.104 236.489C216.459 236.002 216.607 235.394 216.515 234.798L211.471 202.468C211.377 201.873 211.051 201.338 210.564 200.982C210.076 200.627 209.468 200.479 208.872 200.571L201.826 201.67Z" fill="#1ABB9B"/>
<path d="M341.653 165.291V167.762C341.653 169.357 341.334 170.936 340.715 172.406C340.095 173.876 339.188 175.206 338.046 176.32C336.904 177.433 335.551 178.307 334.066 178.889C332.581 179.471 330.994 179.75 329.4 179.71L313.161 179.194C312.971 177.587 312.44 176.038 311.605 174.651C311.717 176.176 311.502 177.707 310.974 179.142L303.791 178.963C309.486 166.412 311.707 155.743 303.791 150.567H293.147C292.934 149.041 292.415 147.575 291.622 146.254C291.734 147.716 291.541 149.184 291.054 150.567H280.653C280.654 145.267 282.76 140.185 286.507 136.438C290.254 132.691 295.336 130.585 300.635 130.584H303.791C327.581 124.599 340.138 137.388 341.653 165.291Z" fill="#2F2E41"/>
<path d="M99.589 233.442C97.0953 233.442 94.6575 232.703 92.5841 231.317C90.5106 229.932 88.8945 227.963 87.9402 225.659C86.9859 223.355 86.7362 220.82 87.2227 218.374C87.7092 215.928 88.9101 213.681 90.6734 211.918C92.4368 210.155 94.6834 208.954 97.1292 208.467C99.575 207.981 102.11 208.231 104.414 209.185C106.718 210.139 108.687 211.755 110.073 213.829C111.458 215.902 112.197 218.34 112.197 220.834C112.194 224.176 110.864 227.381 108.5 229.745C106.137 232.109 102.932 233.438 99.589 233.442ZM99.589 210.518C97.5487 210.518 95.5542 211.123 93.8577 212.256C92.1613 213.39 90.839 215.001 90.0582 216.886C89.2774 218.771 89.0731 220.845 89.4712 222.846C89.8692 224.847 90.8517 226.685 92.2945 228.128C93.7372 229.571 95.5753 230.553 97.5764 230.951C99.5775 231.349 101.652 231.145 103.537 230.364C105.422 229.584 107.033 228.261 108.166 226.565C109.3 224.868 109.905 222.874 109.905 220.834C109.902 218.099 108.814 215.477 106.88 213.543C104.946 211.609 102.324 210.521 99.589 210.518Z" fill="#EBEDF0"/>
<path d="M99.589 238.6C96.0751 238.6 92.6401 237.558 89.7184 235.606C86.7967 233.654 84.5196 230.879 83.1749 227.633C81.8301 224.386 81.4783 220.814 82.1638 217.368C82.8494 213.921 84.5414 210.755 87.0261 208.271C89.5108 205.786 92.6765 204.094 96.1229 203.408C99.5692 202.723 103.142 203.075 106.388 204.419C109.634 205.764 112.409 208.041 114.361 210.963C116.313 213.885 117.355 217.32 117.355 220.834C117.35 225.544 115.477 230.06 112.146 233.391C108.815 236.721 104.299 238.595 99.589 238.6ZM99.589 205.36C96.5285 205.36 93.5367 206.267 90.992 207.967C88.4473 209.668 86.464 212.084 85.2928 214.912C84.1216 217.739 83.8151 220.851 84.4122 223.852C85.0093 226.854 86.4831 229.611 88.6471 231.775C90.8112 233.939 93.5684 235.413 96.5701 236.01C99.5718 236.607 102.683 236.301 105.511 235.13C108.338 233.959 110.755 231.975 112.455 229.431C114.155 226.886 115.063 223.894 115.063 220.834C115.058 216.731 113.427 212.798 110.526 209.897C107.625 206.996 103.692 205.364 99.589 205.36Z" fill="#EBEDF0"/>
<path d="M99.589 258.086C92.2211 258.086 85.0188 255.901 78.8927 251.808C72.7665 247.715 67.9918 241.896 65.1723 235.09C62.3527 228.283 61.615 220.792 63.0524 213.566C64.4897 206.34 68.0377 199.702 73.2475 194.492C78.4574 189.282 85.0951 185.734 92.3214 184.297C99.5476 182.86 107.038 183.597 113.845 186.417C120.652 189.236 126.47 194.011 130.563 200.137C134.657 206.263 136.841 213.466 136.841 220.834C136.83 230.71 132.902 240.179 125.918 247.163C118.934 254.146 109.465 258.075 99.589 258.086ZM99.589 185.874C92.6746 185.874 85.9154 187.924 80.1663 191.766C74.4171 195.607 69.9362 201.067 67.2902 207.455C64.6442 213.843 63.9519 220.872 65.3008 227.654C66.6497 234.436 69.9793 240.665 74.8686 245.554C79.7578 250.443 85.9871 253.773 92.7686 255.122C99.5502 256.471 106.579 255.778 112.968 253.132C119.356 250.486 124.816 246.005 128.657 240.256C132.499 234.507 134.549 227.748 134.549 220.834C134.538 211.565 130.852 202.679 124.298 196.125C117.744 189.571 108.858 185.884 99.589 185.874V185.874Z" fill="#EBEDF0"/>
<path d="M69.9662 201.072L68.0062 202.261L82.8623 226.755L84.8223 225.566L69.9662 201.072Z" fill="#EBEDF0"/>
<path d="M131.634 203.064L103.194 203.467L103.226 205.76L131.666 205.357L131.634 203.064Z" fill="#EBEDF0"/>
<path d="M143.685 352.817L142.454 350.883C145.524 348.93 149.08 347.878 152.718 347.847L152.74 350.139C149.531 350.167 146.393 351.095 143.685 352.817Z" fill="#EBEDF0"/>
<path d="M154.404 403.998C146.794 404.071 139.349 401.775 133.102 397.428C126.855 393.081 122.115 386.899 119.538 379.737C116.962 372.576 116.677 364.791 118.722 357.46C120.768 350.13 125.043 343.617 130.955 338.825L132.4 340.605C127.125 344.881 123.234 350.622 121.218 357.105C119.201 363.588 119.149 370.524 121.068 377.036C122.987 383.549 126.791 389.348 132.001 393.703C137.211 398.057 143.593 400.771 150.343 401.503C157.093 402.236 163.909 400.954 169.931 397.818C175.954 394.683 180.913 389.835 184.184 383.885C187.456 377.935 188.892 371.15 188.313 364.385C187.734 357.62 185.165 351.178 180.931 345.871L182.721 344.44C187.857 350.83 190.68 358.77 190.729 366.969C190.812 376.693 187.034 386.053 180.224 392.995C173.414 399.937 164.128 403.894 154.404 403.998Z" fill="#EBEDF0"/>
<path d="M139.358 370.166L137.159 369.517C137.578 368.026 138.383 366.672 139.493 365.59C140.603 364.509 141.978 363.739 143.479 363.359L143.664 363.337L150.534 363.072L153.167 359.86L151.142 359.207L141.295 351.968L141.222 344.368L130.973 351.344L130.862 339.803L133.154 339.781L133.224 347.038L143.474 340.062L143.577 350.8L152.2 357.139L157.074 358.712L151.652 365.322L143.862 365.623C142.785 365.931 141.806 366.511 141.017 367.306C140.228 368.102 139.657 369.086 139.358 370.166Z" fill="#EBEDF0"/>
<path d="M186.164 359.833L164.645 329.525C153.8 332.294 153.395 348.846 153.392 349.017L151.101 348.978C151.114 348.191 151.576 329.675 164.924 327.115L165.647 326.976L181.298 349.02L180.223 344.392L182.456 343.874L186.164 359.833Z" fill="#EBEDF0"/>
<path d="M153.644 384.519C149.496 384.536 145.489 383.01 142.403 380.239C139.316 377.467 137.37 373.647 136.943 369.521L139.224 369.3C139.585 372.973 141.349 376.365 144.149 378.769C146.949 381.174 150.568 382.405 154.254 382.206C157.939 382.008 161.405 380.396 163.931 377.705C166.457 375.014 167.847 371.452 167.811 367.762C167.797 365.296 167.143 362.876 165.912 360.74C164.681 358.603 162.917 356.822 160.791 355.573L155.749 352.577L165.664 354.076C162.039 351.16 157.431 349.75 152.795 350.138L152.664 347.848C164.161 347.187 169.559 354.74 169.783 355.062L171.303 357.247L165.465 356.365C167.714 358.706 169.23 361.654 169.824 364.846C170.418 368.037 170.064 371.333 168.808 374.327C167.551 377.32 165.445 379.881 162.751 381.692C160.056 383.503 156.89 384.486 153.644 384.519V384.519Z" fill="#EBEDF0"/>
<path d="M183.63 50.4808C183.447 50.2974 183.275 50.1254 183.092 49.9421C176.187 43.1916 166.898 39.4374 157.242 39.4945C147.586 39.5516 138.343 43.4155 131.519 50.2472C124.695 57.0789 120.841 66.3268 120.794 75.9828C120.748 85.6388 124.513 94.9233 131.271 101.82C131.431 101.992 131.603 102.164 131.775 102.336C138.671 109.117 147.967 112.899 157.639 112.858C167.31 112.817 176.574 108.957 183.413 102.118C190.251 95.2794 194.111 86.0158 194.152 76.3443C194.193 66.6729 190.411 57.377 183.63 50.4808ZM157.473 110.566C148.626 110.574 140.118 107.157 133.735 101.029C133.345 100.663 132.967 100.284 132.612 99.8947C126.407 93.4059 122.989 84.7465 123.089 75.7694C123.188 66.7924 126.798 58.2108 133.144 51.8612C139.491 45.5116 148.071 41.8983 157.048 41.7945C166.025 41.6908 174.686 45.1048 181.177 51.3061C181.567 51.6729 181.945 52.0512 182.312 52.4408C186.971 57.3042 190.099 63.4297 191.305 70.0558C192.511 76.682 191.743 83.5165 189.096 89.7098C186.45 95.903 182.041 101.182 176.419 104.89C170.797 108.598 164.208 110.572 157.473 110.566Z" fill="#EBEDF0"/>
<path d="M183.092 49.9421L181.177 51.3061L153.141 71.1702L152.063 71.9267L132.612 99.8947L131.271 101.82C131.431 101.992 131.603 102.164 131.775 102.336L133.735 101.029L161.772 82.3345L162.884 81.5894L182.312 52.4409L183.63 50.4807C183.447 50.2974 183.275 50.1255 183.092 49.9421ZM161.829 79.0448L161.233 79.9388L160.178 80.6381L138.939 94.7939L153.095 74.4484L153.714 73.5543L154.734 72.8322L176.008 57.7708L161.829 79.0448Z" fill="#EBEDF0"/>
<path d="M153.642 71.8753L152.132 73.6006L161.302 81.6241L162.812 79.8988L153.642 71.8753Z" fill="#EBEDF0"/>
<path d="M158.046 43.5118H155.754V48.8819H158.046V43.5118Z" fill="#EBEDF0"/>
<path d="M158.046 101.969H155.754V107.34H158.046V101.969Z" fill="#EBEDF0"/>
<path d="M158.046 43.5118H155.754V48.8819H158.046V43.5118Z" fill="white"/>
<path d="M158.046 101.969H155.754V107.34H158.046V101.969Z" fill="white"/>
<path d="M167.687 45.3685L165.694 50.3553L167.823 51.206L169.816 46.2192L167.687 45.3685Z" fill="#EBEDF0"/>
<path d="M145.977 99.6452L143.985 104.632L146.114 105.483L148.106 100.496L145.977 99.6452Z" fill="#EBEDF0"/>
<path d="M167.687 45.3685L165.694 50.3553L167.823 51.206L169.816 46.2192L167.687 45.3685Z" fill="white"/>
<path d="M145.977 99.6452L143.985 104.632L146.114 105.483L148.106 100.496L145.977 99.6452Z" fill="white"/>
<path d="M174.862 49.0216L171.685 53.3506L173.533 54.7073L176.71 50.3783L174.862 49.0216Z" fill="#EBEDF0"/>
<path d="M140.268 96.144L137.09 100.473L138.938 101.83L142.116 97.5006L140.268 96.144Z" fill="#EBEDF0"/>
<path d="M174.862 49.0216L171.685 53.3506L173.533 54.7073L176.71 50.3783L174.862 49.0216Z" fill="white"/>
<path d="M140.268 96.144L137.09 100.473L138.938 101.83L142.116 97.5006L140.268 96.144Z" fill="white"/>
<path d="M182.816 56.7663L178.348 59.7451L179.62 61.6525L184.088 58.6737L182.816 56.7663Z" fill="#EBEDF0"/>
<path d="M134.181 89.1987L129.713 92.1775L130.984 94.0849L135.452 91.1061L134.181 89.1987Z" fill="#EBEDF0"/>
<path d="M182.816 56.7663L178.348 59.7451L179.62 61.6525L184.088 58.6737L182.816 56.7663Z" fill="white"/>
<path d="M134.181 89.1987L129.713 92.1775L130.984 94.0849L135.452 91.1061L134.181 89.1987Z" fill="white"/>
<path d="M186.891 64.4534L181.784 66.1162L182.494 68.2956L187.6 66.6328L186.891 64.4534Z" fill="#EBEDF0"/>
<path d="M131.308 82.5548L126.202 84.2177L126.911 86.3971L132.018 84.7342L131.308 82.5548Z" fill="#EBEDF0"/>
<path d="M186.891 64.4534L181.784 66.1162L182.494 68.2956L187.6 66.6328L186.891 64.4534Z" fill="white"/>
<path d="M131.308 82.5548L126.202 84.2177L126.911 86.3971L132.018 84.7342L131.308 82.5548Z" fill="white"/>
<path d="M188.786 73.6728L183.417 73.7751L183.461 76.0675L188.83 75.9653L188.786 73.6728Z" fill="#EBEDF0"/>
<path d="M130.339 74.7838L124.97 74.886L125.014 77.1785L130.383 77.0762L130.339 74.7838Z" fill="#EBEDF0"/>
<path d="M188.786 73.6728L183.417 73.7751L183.461 76.0675L188.83 75.9653L188.786 73.6728Z" fill="white"/>
<path d="M130.339 74.7838L124.97 74.886L125.014 77.1785L130.383 77.0762L130.339 74.7838Z" fill="white"/>
<path d="M183.037 80.1966L182.529 82.4319L187.765 83.6229L188.273 81.3876L183.037 80.1966Z" fill="#EBEDF0"/>
<path d="M126.036 67.2283L125.527 69.4636L130.764 70.6546L131.272 68.4193L126.036 67.2283Z" fill="#EBEDF0"/>
<path d="M183.037 80.1966L182.529 82.4319L187.765 83.6229L188.273 81.3876L183.037 80.1966Z" fill="white"/>
<path d="M126.036 67.2283L125.527 69.4636L130.764 70.6546L131.272 68.4193L126.036 67.2283Z" fill="white"/>
<path d="M181.05 86.5014L180.005 88.542L184.786 90.9889L185.83 88.9484L181.05 86.5014Z" fill="#EBEDF0"/>
<path d="M129.015 59.8623L127.97 61.9028L132.751 64.3498L133.795 62.3092L129.015 59.8623Z" fill="#EBEDF0"/>
<path d="M181.05 86.5014L180.005 88.542L184.786 90.9889L185.83 88.9484L181.05 86.5014Z" fill="white"/>
<path d="M129.015 59.8623L127.97 61.9028L132.751 64.3498L133.795 62.3092L129.015 59.8623Z" fill="white"/>
<path d="M177.911 91.6869L176.431 93.4375L180.532 96.9047L182.012 95.1541L177.911 91.6869Z" fill="#EBEDF0"/>
<path d="M133.268 53.9465L131.788 55.6971L135.89 59.1643L137.37 57.4137L133.268 53.9465Z" fill="#EBEDF0"/>
<path d="M177.911 91.6869L176.431 93.4375L180.532 96.9047L182.012 95.1541L177.911 91.6869Z" fill="white"/>
<path d="M133.268 53.9465L131.788 55.6971L135.89 59.1643L137.37 57.4137L133.268 53.9465Z" fill="white"/>
<path d="M173.941 95.8092L172.12 97.2023L175.383 101.467L177.204 100.074L173.941 95.8092Z" fill="#EBEDF0"/>
<path d="M138.417 49.3842L136.596 50.7773L139.859 55.0421L141.68 53.649L138.417 49.3842Z" fill="#EBEDF0"/>
<path d="M173.941 95.8092L172.12 97.2023L175.383 101.467L177.204 100.074L173.941 95.8092Z" fill="white"/>
<path d="M138.417 49.3842L136.596 50.7773L139.859 55.0421L141.68 53.649L138.417 49.3842Z" fill="white"/>
<path d="M169.238 98.9555L167.164 99.9315L169.45 104.791L171.524 103.815L169.238 98.9555Z" fill="#EBEDF0"/>
<path d="M144.351 46.0606L142.276 47.0366L144.563 51.8957L146.637 50.9198L144.351 46.0606Z" fill="#EBEDF0"/>
<path d="M169.238 98.9555L167.164 99.9315L169.45 104.791L171.524 103.815L169.238 98.9555Z" fill="white"/>
<path d="M144.351 46.0606L142.276 47.0366L144.563 51.8957L146.637 50.9198L144.351 46.0606Z" fill="white"/>
<path d="M163.506 101.16L161.263 101.634L162.372 106.888L164.615 106.414L163.506 101.16Z" fill="#EBEDF0"/>
<path d="M151.428 43.9634L149.185 44.437L150.294 49.6912L152.538 49.2177L151.428 43.9634Z" fill="#EBEDF0"/>
<path d="M163.506 101.16L161.263 101.634L162.372 106.888L164.615 106.414L163.506 101.16Z" fill="white"/>
<path d="M151.428 43.9634L149.185 44.437L150.294 49.6912L152.538 49.2177L151.428 43.9634Z" fill="white"/>
<path d="M150.715 101.264L149.692 106.536L151.942 106.972L152.965 101.701L150.715 101.264Z" fill="#EBEDF0"/>
<path d="M161.859 43.8789L160.836 49.1506L163.086 49.5872L164.109 44.3154L161.859 43.8789Z" fill="#EBEDF0"/>
<path d="M150.715 101.264L149.692 106.536L151.942 106.972L152.965 101.701L150.715 101.264Z" fill="white"/>
<path d="M161.859 43.8789L160.836 49.1506L163.086 49.5872L164.109 44.3154L161.859 43.8789Z" fill="white"/>
<path d="M109.316 232.969L96.1697 256.378L98.1688 257.501L111.315 234.092L109.316 232.969Z" fill="#EBEDF0"/>
</g>
<defs>
<clipPath id="clip0_1_2">
<rect width="562.675" height="591.739" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

@ -0,0 +1,96 @@
<svg width="563" height="592" viewBox="0 0 563 592" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6_14)">
<path d="M182.653 116C214.685 116 240.653 90.0325 240.653 58C240.653 25.9675 214.685 0 182.653 0C150.62 0 124.653 25.9675 124.653 58C124.653 90.0325 150.62 116 182.653 116Z" fill="#F5F6F7"/>
<path d="M58.6526 267C90.6852 267 116.653 241.033 116.653 209C116.653 176.967 90.6852 151 58.6526 151C26.6201 151 0.652649 176.967 0.652649 209C0.652649 241.033 26.6201 267 58.6526 267Z" fill="#F5F6F7"/>
<path d="M181.653 428C213.685 428 239.653 402.033 239.653 370C239.653 337.967 213.685 312 181.653 312C149.62 312 123.653 337.967 123.653 370C123.653 402.033 149.62 428 181.653 428Z" fill="#F5F6F7"/>
<path d="M415.458 564.738C416.198 564.772 416.931 564.578 417.557 564.181C418.183 563.785 418.672 563.206 418.957 562.522C419.243 561.839 419.312 561.084 419.154 560.36C418.997 559.636 418.621 558.978 418.077 558.475C417.985 558.113 417.92 557.853 417.829 557.491C417.862 557.412 417.894 557.333 417.927 557.255C418.673 555.494 419.922 553.992 421.518 552.939C423.115 551.886 424.986 551.327 426.899 551.335C428.811 551.342 430.679 551.914 432.267 552.979C433.855 554.044 435.093 555.555 435.826 557.321C438.753 564.372 442.48 571.434 443.398 578.889C443.802 582.184 443.632 585.524 442.894 588.761C449.77 573.763 453.34 557.462 453.363 540.962C453.364 536.822 453.135 532.685 452.674 528.57C452.294 525.197 451.766 521.848 451.09 518.523C447.405 500.482 439.493 483.571 428.003 469.182C422.442 466.147 417.945 461.481 415.118 455.813C414.093 453.775 413.369 451.6 412.968 449.354C413.596 449.437 414.233 449.488 414.861 449.529C415.056 449.539 415.262 449.55 415.457 449.56L415.531 449.563C416.22 449.594 416.904 449.425 417.5 449.077C418.095 448.728 418.577 448.215 418.888 447.599C419.199 446.982 419.324 446.289 419.25 445.603C419.176 444.917 418.906 444.267 418.471 443.731C418.2 443.398 417.929 443.065 417.658 442.732C417.246 442.217 416.825 441.713 416.414 441.199C416.366 441.151 416.321 441.099 416.28 441.045C415.807 440.459 415.334 439.883 414.861 439.297C415.724 437.957 416.886 436.834 418.254 436.016C422.995 433.24 429.536 435.163 432.96 439.451C436.395 443.739 437.043 449.755 435.85 455.113C434.677 459.672 432.736 463.998 430.111 467.906C430.369 468.235 430.636 468.554 430.893 468.883C435.593 474.927 439.689 481.416 443.123 488.258C442.288 480.593 443.284 472.839 446.031 465.634C448.814 458.919 454.031 453.264 458.626 447.459C464.144 440.486 475.461 443.529 476.433 452.368C476.442 452.454 476.451 452.539 476.46 452.625C475.778 453.01 475.11 453.418 474.456 453.85C473.635 454.399 472.999 455.183 472.631 456.099C472.263 457.016 472.181 458.022 472.394 458.986C472.608 459.95 473.108 460.827 473.828 461.502C474.549 462.177 475.457 462.619 476.432 462.769L476.532 462.785C476.289 465.244 475.86 467.682 475.247 470.076C473.472 476.76 470.335 483.006 466.033 488.421C461.731 493.836 456.357 498.304 450.247 501.545C449.846 501.75 449.455 501.956 449.054 502.151C452.504 511.928 454.668 522.112 455.492 532.447C455.958 538.545 455.931 544.67 455.41 550.763L455.44 550.547C456.757 543.771 460.371 537.658 465.673 533.239C473.547 526.771 484.672 524.389 493.167 519.189C494.07 518.61 495.12 518.3 496.193 518.298C497.266 518.295 498.317 518.599 499.222 519.174C500.128 519.75 500.85 520.572 501.304 521.544C501.758 522.516 501.924 523.598 501.783 524.662C501.772 524.737 501.76 524.813 501.748 524.889C500.482 525.404 499.249 525.999 498.056 526.668C497.374 527.053 496.706 527.461 496.052 527.894C495.231 528.442 494.595 529.226 494.227 530.142C493.859 531.059 493.776 532.065 493.99 533.029C494.204 533.993 494.703 534.87 495.424 535.545C496.145 536.22 497.052 536.662 498.028 536.813L498.128 536.828C498.2 536.838 498.262 536.849 498.334 536.859C496.17 542.025 493.133 546.781 489.356 550.917C484.69 555.924 479.051 559.924 472.784 562.674C466.517 565.424 459.754 566.865 452.911 566.908H452.9C451.043 574.981 448.351 582.839 444.869 590.355H416.177C416.074 590.036 415.981 589.707 415.889 589.388C418.545 589.555 421.211 589.397 423.828 588.915C421.699 586.303 419.571 583.671 417.442 581.059C417.394 581.01 417.35 580.958 417.308 580.904C416.228 579.567 415.138 578.241 414.058 576.904L414.058 576.902C414 572.804 414.471 568.716 415.457 564.738L415.458 564.738Z" fill="#F5F6F7"/>
<path d="M190.958 224.739C191.371 226.12 192.081 227.394 193.04 228.471C193.998 229.548 195.181 230.402 196.505 230.972C197.829 231.542 199.262 231.815 200.703 231.772C202.144 231.728 203.558 231.37 204.845 230.721L230.321 253.97L233.703 236.077L208.976 216.8C207.743 214.71 205.785 213.145 203.475 212.401C201.165 211.658 198.662 211.788 196.441 212.766C194.22 213.745 192.435 215.504 191.424 217.711C190.414 219.918 190.248 222.418 190.958 224.739V224.739Z" fill="#FFB6B6"/>
<path d="M279.628 206.968C279.628 206.968 288.511 186.893 299.731 190.883C310.036 194.548 311.405 193.344 305.158 214.352L263.005 277.87C263.005 277.87 218.67 249.693 226.063 249.417C233.456 249.142 233.256 235.032 233.256 235.032L251.337 240.926L252.425 235.21L254.167 236.953L258.664 233.414L279.628 206.968Z" fill="#1A7A67"/>
<path d="M330.231 254.446L328.357 271.827L329.46 294.62L281.653 289L278.231 254.446L284.275 254.505L330.231 254.446Z" fill="#FFB6B6"/>
<path d="M339.417 570.02H328.379L317.653 487H342.653L339.417 570.02Z" fill="#FFB6B6"/>
<path d="M342.653 503.02V521C342.653 521 326.753 535.23 315.653 522L308.733 463.38C308.733 463.38 308.563 457.89 305.133 454.63C304.84 454.351 304.584 454.035 304.373 453.69C301.893 449.86 302.903 441.94 302.903 441.94C302.903 441.94 298.083 439.34 296.563 430.94C295.043 422.54 290.043 404.19 290.043 404.19C290.043 404.19 279.713 377.1 280.433 359.95C280.563 356.78 280.613 353.89 280.613 351.29C280.583 339.81 279.433 333.88 279.433 333.88L277.343 294.04L281.653 288L301.363 288.58L302.703 288.54L303.193 288.53L323.433 287.92L334.863 294.64C334.863 294.64 335.883 297.18 337.323 300.69C340.013 307.2 344.153 317.05 345.983 320.36C348.803 325.46 347.403 351.7 337.803 363.36C337.803 363.36 333.813 369.03 334.863 371.08C335.813 372.94 334.903 376.09 334.723 376.65V376.66C334.703 376.71 334.693 376.74 334.693 376.74L333.163 410.74C333.163 410.74 333.163 425.31 336.593 430.63C340.023 435.95 342.653 503.02 342.653 503.02Z" fill="#2F2E41"/>
<path d="M345.243 589.144H337.327L335.914 581.671L332.296 589.144H311.302C310.296 589.144 309.316 588.822 308.505 588.226C307.694 587.63 307.096 586.79 306.796 585.829C306.497 584.868 306.512 583.837 306.84 582.886C307.169 581.934 307.792 581.113 308.62 580.541L325.385 568.963V561.407L343.019 562.46L345.243 589.144Z" fill="#2F2E41"/>
<path d="M274.158 570.237L263.293 568.29L267.384 484.68L291.992 489.091L274.158 570.237Z" fill="#FFB6B6"/>
<path d="M337.803 363.36C337.803 363.36 333.813 369.03 334.863 371.08C335.813 372.94 334.903 376.09 334.723 376.65V376.66C333.621 377.531 332.454 378.316 331.233 379.01C331.233 379.01 325.453 382.85 325.693 385.14C325.923 387.43 323.473 390.35 323.473 390.35L309.703 421.47C309.703 421.47 304.403 435.05 305.673 441.25C306.063 443.15 305.433 447.94 304.373 453.69C302.003 466.71 293.423 512.6 293.423 512.6L286.653 529C286.653 529 261.323 521.97 260.653 520C260.653 520 269.653 456.46 267.643 452.18C265.633 447.9 266.623 435.37 268.263 427C269.893 418.62 272.123 370.71 279.023 355C279.583 353.72 280.113 352.48 280.613 351.29C286.183 337.88 287.563 330.34 287.563 330.34L300.083 292.47L301.363 288.58L301.653 290L303.193 288.53L325.713 296.55L337.323 300.69C340.013 307.2 344.153 317.05 345.983 320.36C348.803 325.46 347.403 351.7 337.803 363.36Z" fill="#2F2E41"/>
<path d="M275.827 562.652L263.704 559.729L261.864 559.286L260.536 566.723L241.987 575.164C241.07 575.579 240.31 576.277 239.819 577.156C239.327 578.034 239.13 579.046 239.256 580.045C239.382 581.044 239.824 581.976 240.518 582.704C241.212 583.433 242.122 583.921 243.113 584.095L263.769 587.805L268.653 581.085L268.724 588.695L276.519 590.085L279.037 563.427L275.827 562.652Z" fill="#2F2E41"/>
<path d="M561.485 591.739H1.1907C0.875513 591.738 0.573565 591.613 0.351013 591.389C0.128461 591.166 0.003479 590.864 0.003479 590.549C0.003479 590.233 0.128461 589.931 0.351013 589.708C0.573565 589.485 0.875513 589.359 1.1907 589.358H561.485C561.8 589.359 562.102 589.485 562.324 589.708C562.547 589.931 562.672 590.233 562.672 590.549C562.672 590.864 562.547 591.166 562.324 591.389C562.102 591.613 561.8 591.738 561.485 591.739V591.739Z" fill="#BEC3C9"/>
<path d="M308.891 177.21C321.068 177.21 330.939 167.339 330.939 155.163C330.939 142.986 321.068 133.115 308.891 133.115C296.715 133.115 286.843 142.986 286.843 155.163C286.843 167.339 296.715 177.21 308.891 177.21Z" fill="#FFB7B7"/>
<path d="M286.273 197.321L298.27 190.123L303.653 181H317.653L322.262 187.724L343.468 198.522L343.256 231.51L333.653 281L278.653 265L275.278 246.458C275.278 246.458 255.683 225.512 272.478 213.516L286.273 197.321Z" fill="#1A7A67"/>
<path d="M337.624 339.751C338.764 339.049 339.736 338.106 340.472 336.987C341.208 335.869 341.69 334.603 341.883 333.278C342.077 331.953 341.978 330.602 341.593 329.32C341.208 328.038 340.546 326.856 339.655 325.857L347.391 242.81L327.535 244.344L326.175 325.494C324.596 327.102 323.662 329.234 323.55 331.485C323.438 333.737 324.155 335.951 325.567 337.708C326.978 339.466 328.985 340.644 331.207 341.021C333.43 341.397 335.713 340.946 337.624 339.751H337.624Z" fill="#FFB6B6"/>
<path d="M343.653 198C343.653 198 343.653 199 346.965 208.388C349.803 216.429 354.825 265.834 345.026 277.891C347.758 279.575 343.65 310.794 342.653 314L322.653 309C319.955 304.363 322.827 271.815 324.788 271.043L324.672 256.223L319.554 207.372L339.264 199.298L343.653 198Z" fill="#1A7A67"/>
<path d="M202.267 237.302L197.223 204.973C197.052 203.867 197.326 202.738 197.986 201.834C198.646 200.929 199.638 200.324 200.744 200.15L207.79 199.051C208.896 198.88 210.025 199.154 210.929 199.814C211.834 200.474 212.439 201.466 212.613 202.572L217.657 234.901C217.828 236.007 217.554 237.136 216.894 238.041C216.234 238.945 215.242 239.55 214.136 239.724L207.09 240.823C205.984 240.995 204.855 240.72 203.951 240.06C203.046 239.4 202.441 238.408 202.267 237.302Z" fill="#3F3D56"/>
<path d="M201.826 201.67C201.23 201.764 200.695 202.09 200.34 202.578C199.984 203.065 199.836 203.673 199.928 204.269L204.973 236.599C205.066 237.195 205.393 237.729 205.88 238.085C206.367 238.44 206.975 238.588 207.572 238.496L214.618 237.397C215.213 237.303 215.748 236.977 216.104 236.489C216.459 236.002 216.607 235.394 216.515 234.798L211.471 202.468C211.377 201.873 211.051 201.338 210.564 200.982C210.076 200.627 209.468 200.479 208.872 200.571L201.826 201.67Z" fill="#1A7A67"/>
<path d="M341.653 165.291V167.762C341.653 169.357 341.334 170.936 340.715 172.406C340.095 173.876 339.188 175.206 338.046 176.32C336.904 177.433 335.551 178.307 334.066 178.889C332.581 179.471 330.994 179.75 329.4 179.71L313.161 179.194C312.971 177.587 312.44 176.038 311.605 174.651C311.717 176.176 311.502 177.707 310.974 179.142L303.791 178.963C309.486 166.412 311.707 155.743 303.791 150.567H293.147C292.934 149.041 292.415 147.575 291.622 146.254C291.734 147.716 291.541 149.184 291.054 150.567H280.653C280.654 145.267 282.76 140.185 286.507 136.438C290.254 132.691 295.336 130.585 300.635 130.584H303.791C327.581 124.599 340.138 137.388 341.653 165.291Z" fill="#2F2E41"/>
<path d="M99.589 233.442C97.0953 233.442 94.6575 232.703 92.5841 231.317C90.5106 229.932 88.8945 227.963 87.9402 225.659C86.9859 223.355 86.7362 220.82 87.2227 218.374C87.7092 215.928 88.9101 213.681 90.6734 211.918C92.4368 210.155 94.6834 208.954 97.1292 208.467C99.575 207.981 102.11 208.231 104.414 209.185C106.718 210.139 108.687 211.755 110.073 213.829C111.458 215.902 112.197 218.34 112.197 220.834C112.194 224.176 110.864 227.381 108.5 229.745C106.137 232.109 102.932 233.438 99.589 233.442ZM99.589 210.518C97.5487 210.518 95.5542 211.123 93.8577 212.256C92.1613 213.39 90.839 215.001 90.0582 216.886C89.2774 218.771 89.0731 220.845 89.4712 222.846C89.8692 224.847 90.8517 226.685 92.2945 228.128C93.7372 229.571 95.5753 230.553 97.5764 230.951C99.5775 231.349 101.652 231.145 103.537 230.364C105.422 229.584 107.033 228.261 108.166 226.565C109.3 224.868 109.905 222.874 109.905 220.834C109.902 218.099 108.814 215.477 106.88 213.543C104.946 211.609 102.324 210.521 99.589 210.518V210.518Z" fill="#1C1E21"/>
<path d="M99.589 238.6C96.0751 238.6 92.6401 237.558 89.7184 235.606C86.7967 233.654 84.5196 230.879 83.1749 227.633C81.8301 224.386 81.4783 220.814 82.1638 217.368C82.8494 213.921 84.5414 210.755 87.0261 208.271C89.5108 205.786 92.6765 204.094 96.1229 203.408C99.5692 202.723 103.142 203.075 106.388 204.419C109.634 205.764 112.409 208.041 114.361 210.963C116.313 213.885 117.355 217.32 117.355 220.834C117.35 225.544 115.477 230.06 112.146 233.391C108.815 236.721 104.299 238.595 99.589 238.6ZM99.589 205.36C96.5285 205.36 93.5367 206.267 90.992 207.967C88.4473 209.668 86.464 212.084 85.2928 214.912C84.1216 217.739 83.8151 220.851 84.4122 223.852C85.0093 226.854 86.4831 229.611 88.6471 231.775C90.8112 233.939 93.5684 235.413 96.5701 236.01C99.5718 236.607 102.683 236.301 105.511 235.13C108.338 233.959 110.755 231.975 112.455 229.431C114.155 226.886 115.063 223.894 115.063 220.834C115.058 216.731 113.427 212.798 110.526 209.897C107.625 206.996 103.692 205.364 99.589 205.36V205.36Z" fill="#1C1E21"/>
<path d="M99.589 258.086C92.2211 258.086 85.0188 255.901 78.8927 251.808C72.7665 247.715 67.9918 241.896 65.1723 235.09C62.3527 228.283 61.615 220.792 63.0524 213.566C64.4897 206.34 68.0377 199.702 73.2475 194.492C78.4574 189.282 85.0951 185.734 92.3214 184.297C99.5476 182.86 107.038 183.597 113.845 186.417C120.652 189.236 126.47 194.011 130.563 200.137C134.656 206.263 136.841 213.466 136.841 220.834C136.83 230.71 132.902 240.179 125.918 247.163C118.934 254.146 109.465 258.075 99.589 258.086ZM99.589 185.874C92.6746 185.874 85.9154 187.924 80.1663 191.766C74.4171 195.607 69.9362 201.067 67.2902 207.455C64.6442 213.843 63.9519 220.872 65.3008 227.654C66.6497 234.436 69.9793 240.665 74.8686 245.554C79.7578 250.443 85.9871 253.773 92.7686 255.122C99.5502 256.471 106.579 255.778 112.968 253.132C119.356 250.486 124.816 246.005 128.657 240.256C132.499 234.507 134.549 227.748 134.549 220.834C134.538 211.565 130.852 202.679 124.298 196.125C117.744 189.571 108.858 185.884 99.589 185.874V185.874Z" fill="#1C1E21"/>
<path d="M69.9662 201.072L68.0062 202.261L82.8623 226.755L84.8223 225.566L69.9662 201.072Z" fill="#1C1E21"/>
<path d="M109.316 232.969L96.1697 256.378L98.1688 257.501L111.315 234.092L109.316 232.969Z" fill="#1C1E21"/>
<path d="M131.634 203.064L103.194 203.467L103.226 205.76L131.666 205.357L131.634 203.064Z" fill="#1C1E21"/>
<path d="M143.685 352.817L142.454 350.883C145.524 348.93 149.08 347.878 152.718 347.847L152.74 350.139C149.531 350.167 146.393 351.094 143.685 352.817V352.817Z" fill="#1C1E21"/>
<path d="M154.404 403.998C146.794 404.071 139.349 401.775 133.102 397.428C126.855 393.081 122.115 386.899 119.538 379.737C116.962 372.576 116.677 364.791 118.722 357.46C120.768 350.13 125.043 343.617 130.955 338.825L132.4 340.605C127.125 344.88 123.234 350.622 121.218 357.105C119.201 363.588 119.149 370.524 121.068 377.036C122.987 383.549 126.791 389.348 132.001 393.703C137.211 398.057 143.593 400.771 150.343 401.503C157.093 402.236 163.909 400.954 169.931 397.818C175.954 394.683 180.913 389.835 184.184 383.885C187.456 377.935 188.892 371.15 188.313 364.385C187.734 357.62 185.165 351.178 180.931 345.871L182.721 344.44C187.857 350.83 190.68 358.77 190.729 366.968C190.812 376.693 187.034 386.053 180.224 392.995C173.414 399.937 164.128 403.894 154.404 403.998V403.998Z" fill="#1C1E21"/>
<path d="M139.358 370.166L137.159 369.517C137.578 368.026 138.383 366.672 139.493 365.59C140.603 364.509 141.978 363.739 143.479 363.359L143.664 363.337L150.534 363.072L153.167 359.86L151.142 359.207L141.295 351.968L141.222 344.368L130.973 351.344L130.862 339.803L133.154 339.781L133.224 347.038L143.474 340.062L143.577 350.8L152.2 357.139L157.074 358.713L151.652 365.322L143.862 365.623C142.785 365.931 141.806 366.511 141.017 367.306C140.228 368.102 139.657 369.086 139.358 370.166V370.166Z" fill="#1C1E21"/>
<path d="M186.164 359.833L164.645 329.525C153.8 332.294 153.395 348.846 153.392 349.017L151.101 348.978C151.114 348.191 151.576 329.675 164.924 327.115L165.647 326.976L181.298 349.02L180.223 344.392L182.456 343.874L186.164 359.833Z" fill="#1C1E21"/>
<path d="M153.644 384.519C149.496 384.536 145.489 383.01 142.403 380.239C139.316 377.467 137.37 373.647 136.943 369.521L139.224 369.3C139.585 372.973 141.349 376.365 144.149 378.769C146.949 381.174 150.568 382.405 154.254 382.206C157.939 382.008 161.405 380.396 163.931 377.705C166.457 375.014 167.847 371.452 167.811 367.762C167.797 365.296 167.143 362.876 165.912 360.74C164.681 358.603 162.917 356.822 160.791 355.573L155.749 352.577L165.664 354.076C162.039 351.16 157.431 349.75 152.795 350.138L152.664 347.848C164.161 347.187 169.559 354.74 169.783 355.062L171.303 357.247L165.465 356.365C167.714 358.706 169.23 361.654 169.824 364.846C170.418 368.037 170.064 371.333 168.808 374.327C167.551 377.32 165.445 379.881 162.751 381.692C160.056 383.503 156.89 384.486 153.644 384.519V384.519Z" fill="#1C1E21"/>
<path d="M183.63 50.4808C183.447 50.2974 183.275 50.1254 183.092 49.9421C176.187 43.1916 166.898 39.4374 157.242 39.4945C147.586 39.5516 138.343 43.4155 131.519 50.2472C124.695 57.0789 120.841 66.3268 120.794 75.9828C120.748 85.6388 124.513 94.9233 131.271 101.82C131.431 101.992 131.603 102.164 131.775 102.336C138.671 109.117 147.967 112.899 157.639 112.858C167.31 112.817 176.574 108.957 183.413 102.118C190.251 95.2794 194.111 86.0158 194.152 76.3443C194.193 66.6729 190.411 57.377 183.63 50.4808ZM157.473 110.566C148.626 110.574 140.118 107.157 133.735 101.029C133.345 100.663 132.967 100.284 132.612 99.8947C126.407 93.4059 122.989 84.7465 123.089 75.7694C123.188 66.7924 126.798 58.2108 133.144 51.8612C139.491 45.5116 148.071 41.8983 157.048 41.7945C166.025 41.6908 174.686 45.1048 181.177 51.3061C181.567 51.6729 181.945 52.0512 182.312 52.4408C186.971 57.3042 190.099 63.4297 191.305 70.0558C192.511 76.682 191.743 83.5165 189.096 89.7098C186.45 95.903 182.041 101.182 176.419 104.89C170.797 108.598 164.208 110.572 157.473 110.566V110.566Z" fill="#1C1E21"/>
<path d="M183.092 49.9421L181.177 51.3061L153.141 71.1702L152.063 71.9267L132.612 99.8947L131.271 101.82C131.431 101.992 131.603 102.164 131.775 102.336L133.735 101.029L161.772 82.3345L162.884 81.5894L182.312 52.4409L183.63 50.4807C183.447 50.2974 183.275 50.1255 183.092 49.9421ZM161.829 79.0448L161.233 79.9388L160.178 80.6381L138.939 94.7939L153.095 74.4484L153.714 73.5543L154.734 72.8322L176.008 57.7708L161.829 79.0448Z" fill="#1C1E21"/>
<path d="M153.642 71.8753L152.132 73.6006L161.302 81.6241L162.812 79.8988L153.642 71.8753Z" fill="#1C1E21"/>
<path d="M158.046 43.5118H155.754V48.8819H158.046V43.5118Z" fill="#1C1E21"/>
<path d="M158.046 101.969H155.754V107.34H158.046V101.969Z" fill="#1C1E21"/>
<path d="M158.046 43.5118H155.754V48.8819H158.046V43.5118Z" fill="black"/>
<path d="M158.046 101.969H155.754V107.34H158.046V101.969Z" fill="black"/>
<path d="M167.687 45.3685L165.694 50.3553L167.823 51.206L169.816 46.2192L167.687 45.3685Z" fill="#1C1E21"/>
<path d="M145.977 99.6452L143.985 104.632L146.114 105.483L148.106 100.496L145.977 99.6452Z" fill="#1C1E21"/>
<path d="M167.687 45.3685L165.694 50.3553L167.823 51.206L169.816 46.2192L167.687 45.3685Z" fill="black"/>
<path d="M145.977 99.6452L143.985 104.632L146.114 105.483L148.106 100.496L145.977 99.6452Z" fill="black"/>
<path d="M174.862 49.0216L171.685 53.3506L173.533 54.7073L176.71 50.3783L174.862 49.0216Z" fill="#1C1E21"/>
<path d="M140.268 96.144L137.09 100.473L138.938 101.83L142.116 97.5006L140.268 96.144Z" fill="#1C1E21"/>
<path d="M174.862 49.0216L171.685 53.3506L173.533 54.7073L176.71 50.3783L174.862 49.0216Z" fill="black"/>
<path d="M140.268 96.144L137.09 100.473L138.938 101.83L142.116 97.5006L140.268 96.144Z" fill="black"/>
<path d="M182.816 56.7663L178.348 59.7451L179.62 61.6525L184.088 58.6737L182.816 56.7663Z" fill="#1C1E21"/>
<path d="M134.181 89.1987L129.713 92.1775L130.984 94.0849L135.452 91.1061L134.181 89.1987Z" fill="#1C1E21"/>
<path d="M182.816 56.7663L178.348 59.7451L179.62 61.6525L184.088 58.6737L182.816 56.7663Z" fill="black"/>
<path d="M134.181 89.1987L129.713 92.1775L130.984 94.0849L135.452 91.1061L134.181 89.1987Z" fill="black"/>
<path d="M186.891 64.4534L181.784 66.1162L182.494 68.2956L187.6 66.6328L186.891 64.4534Z" fill="#1C1E21"/>
<path d="M131.308 82.5548L126.202 84.2177L126.911 86.3971L132.018 84.7342L131.308 82.5548Z" fill="#1C1E21"/>
<path d="M186.891 64.4534L181.784 66.1162L182.494 68.2956L187.6 66.6328L186.891 64.4534Z" fill="black"/>
<path d="M131.308 82.5548L126.202 84.2177L126.911 86.3971L132.018 84.7342L131.308 82.5548Z" fill="black"/>
<path d="M188.786 73.6728L183.417 73.7751L183.461 76.0675L188.83 75.9653L188.786 73.6728Z" fill="#1C1E21"/>
<path d="M130.34 74.7838L124.971 74.886L125.014 77.1785L130.383 77.0762L130.34 74.7838Z" fill="#1C1E21"/>
<path d="M188.786 73.6728L183.417 73.7751L183.461 76.0675L188.83 75.9653L188.786 73.6728Z" fill="black"/>
<path d="M130.34 74.7838L124.971 74.886L125.014 77.1785L130.383 77.0762L130.34 74.7838Z" fill="black"/>
<path d="M183.037 80.1966L182.529 82.4319L187.765 83.6229L188.273 81.3876L183.037 80.1966Z" fill="#1C1E21"/>
<path d="M126.036 67.2283L125.527 69.4636L130.764 70.6546L131.272 68.4193L126.036 67.2283Z" fill="#1C1E21"/>
<path d="M183.037 80.1966L182.529 82.4319L187.765 83.6229L188.273 81.3876L183.037 80.1966Z" fill="black"/>
<path d="M126.036 67.2283L125.527 69.4636L130.764 70.6546L131.272 68.4193L126.036 67.2283Z" fill="black"/>
<path d="M181.05 86.5014L180.005 88.542L184.786 90.9889L185.83 88.9484L181.05 86.5014Z" fill="#1C1E21"/>
<path d="M129.015 59.8623L127.97 61.9028L132.751 64.3498L133.795 62.3092L129.015 59.8623Z" fill="#1C1E21"/>
<path d="M181.05 86.5014L180.005 88.542L184.786 90.9889L185.83 88.9484L181.05 86.5014Z" fill="black"/>
<path d="M129.015 59.8623L127.97 61.9028L132.751 64.3498L133.795 62.3092L129.015 59.8623Z" fill="black"/>
<path d="M177.911 91.6869L176.431 93.4375L180.532 96.9047L182.012 95.1541L177.911 91.6869Z" fill="#1C1E21"/>
<path d="M133.268 53.9465L131.788 55.6971L135.89 59.1643L137.37 57.4137L133.268 53.9465Z" fill="#1C1E21"/>
<path d="M177.911 91.6869L176.431 93.4375L180.532 96.9047L182.012 95.1541L177.911 91.6869Z" fill="black"/>
<path d="M133.268 53.9465L131.788 55.6971L135.89 59.1643L137.37 57.4137L133.268 53.9465Z" fill="black"/>
<path d="M173.941 95.8092L172.12 97.2023L175.383 101.467L177.204 100.074L173.941 95.8092Z" fill="#1C1E21"/>
<path d="M138.417 49.3842L136.596 50.7773L139.859 55.0421L141.68 53.649L138.417 49.3842Z" fill="#1C1E21"/>
<path d="M173.941 95.8092L172.12 97.2023L175.383 101.467L177.204 100.074L173.941 95.8092Z" fill="black"/>
<path d="M138.417 49.3842L136.596 50.7773L139.859 55.0421L141.68 53.649L138.417 49.3842Z" fill="black"/>
<path d="M169.238 98.9555L167.164 99.9315L169.45 104.791L171.524 103.815L169.238 98.9555Z" fill="#1C1E21"/>
<path d="M144.351 46.0606L142.276 47.0366L144.563 51.8957L146.637 50.9198L144.351 46.0606Z" fill="#1C1E21"/>
<path d="M169.238 98.9555L167.164 99.9315L169.45 104.791L171.524 103.815L169.238 98.9555Z" fill="black"/>
<path d="M144.351 46.0606L142.276 47.0366L144.563 51.8957L146.637 50.9198L144.351 46.0606Z" fill="black"/>
<path d="M163.506 101.16L161.263 101.634L162.372 106.888L164.615 106.414L163.506 101.16Z" fill="#1C1E21"/>
<path d="M151.428 43.9634L149.185 44.437L150.294 49.6912L152.538 49.2177L151.428 43.9634Z" fill="#1C1E21"/>
<path d="M163.506 101.16L161.263 101.634L162.372 106.888L164.615 106.414L163.506 101.16Z" fill="black"/>
<path d="M151.428 43.9634L149.185 44.437L150.294 49.6912L152.538 49.2177L151.428 43.9634Z" fill="black"/>
<path d="M150.715 101.264L149.692 106.536L151.942 106.972L152.965 101.701L150.715 101.264Z" fill="#1C1E21"/>
<path d="M161.859 43.8789L160.836 49.1506L163.086 49.5872L164.109 44.3154L161.859 43.8789Z" fill="#1C1E21"/>
<path d="M150.715 101.264L149.692 106.536L151.942 106.972L152.965 101.701L150.715 101.264Z" fill="black"/>
<path d="M161.859 43.8789L160.836 49.1506L163.086 49.5872L164.109 44.3154L161.859 43.8789Z" fill="black"/>
</g>
<defs>
<clipPath id="clip0_6_14">
<rect width="562.675" height="591.739" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

@ -0,0 +1,37 @@
<svg width="795" height="506" viewBox="0 0 795 506" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3_122)">
<path d="M44.5189 503.871C32.2679 502.863 21.4519 494 15.3009 483.357C13.2381 479.788 11.8248 475.107 14.1607 471.71C14.8293 470.738 15.7533 469.969 16.8309 469.488C17.9085 469.008 19.0979 468.834 20.268 468.986C21.4381 469.138 22.5434 469.61 23.4623 470.351C24.3812 471.091 25.0779 472.07 25.4757 473.181C24.7233 469.012 24.4 464.776 24.5108 460.54C24.605 456.954 25.2826 452.9 28.2644 450.906C31.7237 448.592 36.7099 450.429 39.2261 453.744C41.7423 457.059 42.425 461.37 43.0289 465.488C42.5359 463.745 42.4878 461.907 42.8891 460.14C43.2903 458.374 44.1282 456.737 45.3258 455.378C46.5235 454.02 48.0428 452.983 49.7447 452.363C51.4465 451.743 53.2767 451.56 55.0676 451.831C60.1343 452.596 64.1034 456.983 65.6521 461.867C67.2009 466.752 66.7173 472.048 65.7205 477.074C64.5517 482.968 62.6547 488.815 59.2396 493.758C55.8244 498.702 50.7515 502.687 44.866 503.897L44.5189 503.871Z" fill="#444950"/>
<path d="M794.122 106C794.122 127.984 787.289 149.424 774.569 167.354C761.849 185.284 743.871 198.817 723.122 206.08C722.462 206.31 721.792 206.54 721.122 206.75V99.04H582.352C582.392 98.37 582.442 97.7 582.502 97.04H721.122V76C721.121 74.6741 720.594 73.4026 719.657 72.4651C718.719 71.5275 717.448 71.0005 716.122 71H588.042C588.272 70.33 588.512 69.66 588.772 69C597.449 45.7103 614.032 26.2096 635.626 13.9047C657.22 1.59972 682.45 -2.72714 706.91 1.68C731.369 6.08714 753.503 18.9481 769.444 38.016C785.385 57.0839 794.119 81.1465 794.122 106Z" fill="#444950"/>
<path d="M716.122 69H229.122C227.266 69.0021 225.487 69.7402 224.174 71.0525C222.862 72.3648 222.124 74.1441 222.122 76V406C222.124 407.856 222.862 409.635 224.174 410.947C225.487 412.26 227.266 412.998 229.122 413H716.122C717.978 412.998 719.757 412.26 721.069 410.947C722.382 409.635 723.12 407.856 723.122 406V76C723.12 74.1441 722.382 72.3648 721.069 71.0525C719.757 69.7402 717.978 69.0021 716.122 69V69ZM721.122 406C721.121 407.326 720.594 408.597 719.657 409.535C718.719 410.473 717.448 411 716.122 411H229.122C227.796 411 226.524 410.473 225.587 409.535C224.649 408.597 224.122 407.326 224.122 406V76C224.122 74.6741 224.649 73.4026 225.587 72.4651C226.524 71.5275 227.796 71.0005 229.122 71H716.122C717.448 71.0005 718.719 71.5275 719.657 72.4651C720.594 73.4026 721.121 74.6741 721.122 76V406Z" fill="#DADDE1"/>
<path d="M722.122 97.04H223.122V99.04H722.122V97.04Z" fill="#DADDE1"/>
<path d="M240.122 90C243.436 90 246.122 87.3137 246.122 84C246.122 80.6863 243.436 78 240.122 78C236.808 78 234.122 80.6863 234.122 84C234.122 87.3137 236.808 90 240.122 90Z" fill="#DADDE1"/>
<path d="M257.372 90C260.686 90 263.372 87.3137 263.372 84C263.372 80.6863 260.686 78 257.372 78C254.058 78 251.372 80.6863 251.372 84C251.372 87.3137 254.058 90 257.372 90Z" fill="#DADDE1"/>
<path d="M274.622 90C277.936 90 280.622 87.3137 280.622 84C280.622 80.6863 277.936 78 274.622 78C271.308 78 268.622 80.6863 268.622 84C268.622 87.3137 271.308 90 274.622 90Z" fill="#DADDE1"/>
<path d="M359.122 138H271.122C269.266 138.002 267.487 138.74 266.174 140.053C264.862 141.365 264.124 143.144 264.122 145V233C264.124 234.856 264.862 236.635 266.174 237.947C267.487 239.26 269.266 239.998 271.122 240H359.122C360.978 239.998 362.757 239.26 364.069 237.947C365.382 236.635 366.12 234.856 366.122 233V145C366.12 143.144 365.382 141.365 364.069 140.053C362.757 138.74 360.978 138.002 359.122 138V138ZM364.122 233C364.121 234.326 363.594 235.597 362.657 236.535C361.719 237.473 360.448 237.999 359.122 238H271.122C269.796 237.999 268.524 237.473 267.587 236.535C266.649 235.597 266.122 234.326 266.122 233V145C266.122 143.674 266.649 142.403 267.587 141.465C268.524 140.527 269.796 140.001 271.122 140H359.122C360.448 140.001 361.719 140.527 362.657 141.465C363.594 142.403 364.121 143.674 364.122 145V233Z" fill="#DADDE1"/>
<path d="M517.122 138.5H429.122C427.399 138.503 425.748 139.189 424.529 140.408C423.311 141.626 422.625 143.277 422.622 145V233C422.625 234.723 423.311 236.374 424.529 237.593C425.748 238.811 427.399 239.497 429.122 239.5H517.122C518.845 239.497 520.496 238.811 521.714 237.593C522.933 236.374 523.618 234.723 523.622 233V145C523.618 143.277 522.933 141.626 521.714 140.408C520.496 139.189 518.845 138.503 517.122 138.5Z" fill="#1ABB9B"/>
<path d="M675.122 138.5H587.122C585.399 138.503 583.748 139.189 582.529 140.408C581.311 141.626 580.625 143.277 580.622 145V233C580.625 234.723 581.311 236.374 582.529 237.593C583.748 238.811 585.399 239.497 587.122 239.5H675.122C676.845 239.497 678.496 238.811 679.714 237.593C680.933 236.374 681.618 234.723 681.622 233V145C681.618 143.277 680.933 141.626 679.714 140.408C678.496 139.189 676.845 138.503 675.122 138.5V138.5Z" fill="#606770"/>
<path d="M359.122 270.5H271.122C269.399 270.503 267.748 271.189 266.529 272.408C265.311 273.626 264.625 275.277 264.622 277V365C264.625 366.723 265.311 368.374 266.529 369.592C267.748 370.811 269.399 371.497 271.122 371.5H359.122C360.845 371.497 362.496 370.811 363.714 369.592C364.933 368.374 365.618 366.723 365.622 365V277C365.618 275.277 364.933 273.626 363.714 272.408C362.496 271.189 360.845 270.503 359.122 270.5V270.5Z" fill="#606770"/>
<path d="M517.122 270.5H429.122C427.399 270.503 425.748 271.189 424.529 272.408C423.311 273.626 422.625 275.277 422.622 277V365C422.625 366.723 423.311 368.374 424.529 369.592C425.748 370.811 427.399 371.497 429.122 371.5H517.122C518.845 371.497 520.496 370.811 521.714 369.592C522.933 368.374 523.618 366.723 523.622 365V277C523.618 275.277 522.933 273.626 521.714 272.408C520.496 271.189 518.845 270.503 517.122 270.5Z" fill="#1ABB9B"/>
<path d="M675.122 270.5H587.122C585.399 270.503 583.748 271.189 582.529 272.408C581.311 273.626 580.625 275.277 580.622 277V365C580.625 366.723 581.311 368.374 582.529 369.592C583.748 370.811 585.399 371.497 587.122 371.5H675.122C676.845 371.497 678.496 370.811 679.714 369.592C680.933 368.374 681.618 366.723 681.622 365V277C681.618 275.277 680.933 273.626 679.714 272.408C678.496 271.189 676.845 270.503 675.122 270.5V270.5Z" fill="#606770"/>
<path d="M337.622 285H249.622C247.899 284.998 246.246 284.313 245.028 283.094C243.809 281.875 243.124 280.223 243.122 278.5V190.5C243.124 188.777 243.809 187.125 245.028 185.906C246.246 184.687 247.899 184.002 249.622 184H337.622C339.345 184.002 340.997 184.687 342.216 185.906C343.434 187.125 344.12 188.777 344.122 190.5V278.5C344.12 280.223 343.434 281.875 342.216 283.094C340.997 284.313 339.345 284.998 337.622 285Z" fill="#1ABB9B"/>
<path d="M202.746 492.088L214.466 488.491L206.17 441.573L188.872 446.881L202.746 492.088Z" fill="#A0616A"/>
<path d="M240.41 492.438L203.575 503.742L199.207 489.51L221.81 482.573C223.679 482 225.643 481.8 227.589 481.985C229.535 482.171 231.426 482.737 233.153 483.653C234.88 484.569 236.41 485.817 237.655 487.324C238.9 488.831 239.836 490.569 240.41 492.438V492.438V492.438Z" fill="#2F2E41"/>
<path d="M102.748 492.358L115.008 492.357L120.84 445.069L102.746 445.07L102.748 492.358Z" fill="#A0616A"/>
<path d="M138.652 503.74L100.121 503.742L100.121 488.855L123.764 488.854C125.719 488.854 127.655 489.239 129.461 489.987C131.268 490.735 132.909 491.832 134.291 493.214C135.674 494.596 136.77 496.237 137.519 498.043C138.267 499.849 138.652 501.785 138.652 503.74L138.652 503.74Z" fill="#2F2E41"/>
<path d="M101.868 355.28C100.861 354.398 100.06 353.304 99.5206 352.078C98.9816 350.852 98.7179 349.523 98.7482 348.183C98.7785 346.844 99.1021 345.528 99.6961 344.328C100.29 343.127 101.14 342.071 102.186 341.235L111.692 221.54L131.022 226.37L115.545 343.129C116.834 344.979 117.399 347.238 117.133 349.478C116.868 351.717 115.79 353.781 114.104 355.279C112.418 356.777 110.242 357.605 107.986 357.605C105.731 357.605 103.554 356.778 101.868 355.28Z" fill="#A0616A"/>
<path d="M140.579 175.116C154.144 175.116 165.14 164.12 165.14 150.555C165.14 136.991 154.144 125.994 140.579 125.994C127.015 125.994 116.018 136.991 116.018 150.555C116.018 164.12 127.015 175.116 140.579 175.116Z" fill="#A0616A"/>
<path d="M119.223 217.859C113.681 210.25 113.51 199.772 119.48 192.495C123.376 187.745 129.892 183.945 140.772 183.945C169.772 183.945 180.772 206.945 180.772 206.945C180.772 206.945 192.772 228.945 185.772 248.945C178.772 268.945 178.772 270.945 178.772 270.945L132.772 266.945C132.772 266.945 140.532 247.113 119.223 217.859Z" fill="#DADDE1"/>
<path d="M105.037 237.767L114.947 205.346C115.611 203.175 116.743 201.177 118.264 199.492C119.785 197.807 121.658 196.476 123.75 195.594C125.842 194.712 128.102 194.301 130.37 194.388C132.638 194.476 134.86 195.061 136.877 196.101V196.101C140.378 197.914 143.058 200.99 144.374 204.706C145.69 208.422 145.544 212.499 143.965 216.111L131.367 244.802L105.037 237.767Z" fill="#DADDE1"/>
<path d="M177.772 265.945L216.772 467.945L195.772 473.945L144.772 340.945L121.772 476.945L99.7721 479.945C99.7721 479.945 90.1218 300 132.772 266.945L177.772 265.945Z" fill="#2F2E41"/>
<path d="M233.903 256.477C233.547 256.901 233.226 257.352 232.941 257.827L183.406 260.228L173.867 231.109L157.305 238.98L172.893 282.352L234.155 270.371C235.595 271.942 237.479 273.039 239.556 273.513C241.634 273.988 243.807 273.819 245.787 273.029C247.766 272.239 249.458 270.865 250.637 269.09C251.817 267.314 252.428 265.222 252.389 263.091C252.35 260.96 251.664 258.892 250.421 257.16C249.178 255.429 247.437 254.117 245.431 253.399C243.424 252.681 241.246 252.591 239.187 253.141C237.128 253.691 235.285 254.855 233.903 256.477Z" fill="#A0616A"/>
<path d="M150.375 209.849C150.11 207.595 150.343 205.309 151.058 203.155C151.773 201 152.953 199.029 154.514 197.381C156.074 195.732 157.978 194.447 160.09 193.615C162.203 192.783 164.472 192.425 166.737 192.567V192.567C170.671 192.82 174.362 194.559 177.061 197.432C179.76 200.305 181.266 204.097 181.272 208.039V239.374L154.336 243.518L150.375 209.849Z" fill="#DADDE1"/>
<path d="M145.981 175.339C142.294 175.323 139.451 171.442 139.616 167.759C139.781 164.076 142.254 160.836 145.234 158.666C148.214 156.496 151.709 155.174 155.032 153.579C158.356 151.983 161.65 149.993 163.702 146.931C164.941 144.926 165.681 142.653 165.859 140.303C166.037 137.953 165.648 135.595 164.725 133.426C162.816 129.089 159.537 125.498 155.392 123.202C149.234 119.598 141.944 118.445 134.975 119.974C128.006 121.503 121.868 125.601 117.785 131.452L113.577 142.91C109.289 148.066 108.609 155.724 111.244 161.89C113.88 168.056 119.493 172.696 125.826 174.901C132.251 176.966 139.129 177.172 145.667 175.496" fill="#2F2E41"/>
<path d="M123.534 137.179C121.725 134.279 118.59 132.435 115.348 131.353C111.593 130.1 107.599 129.73 103.677 130.272C99.7558 130.814 96.0123 132.255 92.7384 134.481C89.4645 136.707 86.7485 139.658 84.802 143.105C82.8554 146.553 81.7308 150.403 81.5157 154.356C81.1722 160.67 83.1494 166.845 84.3112 173.061C85.473 179.277 85.7041 186.143 82.2767 191.457C79.6662 195.505 75.3128 198.054 71.0159 200.23C67.4346 202.044 63.5608 203.746 59.5628 203.384C55.5647 203.023 51.5463 199.856 51.6524 195.843C50.314 198.72 49.4103 201.781 48.9708 204.923C48.6895 208.079 49.4674 211.485 51.7468 213.685C55.0599 216.884 60.3094 216.65 64.8625 215.96C74.7195 214.466 84.7007 211.664 92.4881 205.439C100.275 199.215 105.443 188.965 103.392 179.208C102.535 175.133 100.522 171.412 98.8952 167.579C97.2684 163.745 95.9983 159.552 96.7456 155.455C97.1879 153.344 98.0882 151.356 99.3828 149.631C100.677 147.906 102.335 146.487 104.238 145.473C108.087 143.471 112.491 142.804 116.761 143.574C119.56 144.033 123.055 144.746 124.715 142.446C125.155 141.718 125.38 140.879 125.363 140.029C125.347 139.178 125.089 138.349 124.621 137.638C123.664 136.232 122.444 135.023 121.029 134.078" fill="#2F2E41"/>
<path d="M308.485 505.345H1.19073C1.03408 505.346 0.878868 505.315 0.734009 505.255C0.589149 505.196 0.457489 505.108 0.346558 504.998C0.235626 504.887 0.147609 504.756 0.0875549 504.611C0.0275012 504.466 -0.00341797 504.311 -0.00341797 504.154C-0.00341797 503.998 0.0275012 503.843 0.0875549 503.698C0.147609 503.553 0.235626 503.422 0.346558 503.311C0.457489 503.201 0.589149 503.113 0.734009 503.053C0.878868 502.994 1.03408 502.963 1.19073 502.964H308.485C308.641 502.963 308.797 502.994 308.941 503.053C309.086 503.113 309.218 503.201 309.329 503.311C309.44 503.422 309.528 503.553 309.588 503.698C309.648 503.843 309.679 503.998 309.679 504.154C309.679 504.311 309.648 504.466 309.588 504.611C309.528 504.756 309.44 504.887 309.329 504.998C309.218 505.108 309.086 505.196 308.941 505.255C308.797 505.315 308.641 505.346 308.485 505.345V505.345Z" fill="#DADDE1"/>
</g>
<defs>
<clipPath id="clip0_3_122">
<rect width="794.122" height="505.345" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

@ -0,0 +1,37 @@
<svg width="795" height="506" viewBox="0 0 795 506" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3_93)">
<path d="M44.5189 503.871C32.2679 502.863 21.4519 494 15.3009 483.357C13.2381 479.788 11.8248 475.107 14.1607 471.71C14.8293 470.738 15.7533 469.969 16.8309 469.488C17.9085 469.008 19.0979 468.834 20.268 468.986C21.4381 469.138 22.5434 469.61 23.4623 470.351C24.3812 471.091 25.0779 472.07 25.4757 473.181C24.7233 469.012 24.4 464.776 24.5108 460.54C24.605 456.954 25.2826 452.9 28.2644 450.906C31.7237 448.592 36.7099 450.429 39.2261 453.744C41.7423 457.059 42.425 461.37 43.0289 465.488C42.5359 463.745 42.4878 461.907 42.8891 460.14C43.2903 458.374 44.1282 456.737 45.3258 455.378C46.5235 454.02 48.0428 452.983 49.7447 452.363C51.4465 451.743 53.2767 451.56 55.0676 451.831C60.1343 452.596 64.1034 456.983 65.6521 461.867C67.2009 466.752 66.7173 472.048 65.7205 477.074C64.5517 482.968 62.6547 488.815 59.2396 493.758C55.8244 498.702 50.7515 502.687 44.866 503.897L44.5189 503.871Z" fill="#EBEDF0"/>
<path d="M794.122 106C794.122 127.984 787.289 149.424 774.569 167.354C761.849 185.284 743.871 198.817 723.122 206.08C722.462 206.31 721.792 206.54 721.122 206.75V99.04H582.352C582.392 98.37 582.442 97.7 582.502 97.04H721.122V76C721.121 74.6741 720.594 73.4026 719.657 72.4651C718.719 71.5275 717.448 71.0005 716.122 71H588.042C588.272 70.33 588.512 69.66 588.772 69C597.449 45.7103 614.032 26.2096 635.626 13.9047C657.22 1.59972 682.45 -2.72714 706.91 1.68C731.369 6.08714 753.503 18.9481 769.444 38.016C785.385 57.0839 794.119 81.1465 794.122 106V106Z" fill="#EBEDF0"/>
<path d="M716.122 69H229.122C227.266 69.0021 225.487 69.7402 224.174 71.0525C222.862 72.3648 222.124 74.1441 222.122 76V406C222.124 407.856 222.862 409.635 224.174 410.947C225.487 412.26 227.266 412.998 229.122 413H716.122C717.978 412.998 719.757 412.26 721.069 410.947C722.382 409.635 723.12 407.856 723.122 406V76C723.12 74.1441 722.382 72.3648 721.069 71.0525C719.757 69.7402 717.978 69.0021 716.122 69V69ZM721.122 406C721.121 407.326 720.594 408.597 719.657 409.535C718.719 410.473 717.448 411 716.122 411H229.122C227.796 411 226.524 410.473 225.587 409.535C224.649 408.597 224.122 407.326 224.122 406V76C224.122 74.6741 224.649 73.4026 225.587 72.4651C226.524 71.5275 227.796 71.0005 229.122 71H716.122C717.448 71.0005 718.719 71.5275 719.657 72.4651C720.594 73.4026 721.121 74.6741 721.122 76V406Z" fill="#1C1E21"/>
<path d="M722.122 97.04H223.122V99.04H722.122V97.04Z" fill="#1C1E21"/>
<path d="M240.122 90C243.436 90 246.122 87.3137 246.122 84C246.122 80.6863 243.436 78 240.122 78C236.808 78 234.122 80.6863 234.122 84C234.122 87.3137 236.808 90 240.122 90Z" fill="#1C1E21"/>
<path d="M257.372 90C260.686 90 263.372 87.3137 263.372 84C263.372 80.6863 260.686 78 257.372 78C254.058 78 251.372 80.6863 251.372 84C251.372 87.3137 254.058 90 257.372 90Z" fill="#1C1E21"/>
<path d="M274.622 90C277.936 90 280.622 87.3137 280.622 84C280.622 80.6863 277.936 78 274.622 78C271.308 78 268.622 80.6863 268.622 84C268.622 87.3137 271.308 90 274.622 90Z" fill="#1C1E21"/>
<path d="M359.122 138H271.122C269.266 138.002 267.487 138.74 266.174 140.053C264.862 141.365 264.124 143.144 264.122 145V233C264.124 234.856 264.862 236.635 266.174 237.947C267.487 239.26 269.266 239.998 271.122 240H359.122C360.978 239.998 362.757 239.26 364.069 237.947C365.382 236.635 366.12 234.856 366.122 233V145C366.12 143.144 365.382 141.365 364.069 140.053C362.757 138.74 360.978 138.002 359.122 138V138ZM364.122 233C364.121 234.326 363.594 235.597 362.657 236.535C361.719 237.473 360.448 237.999 359.122 238H271.122C269.796 237.999 268.524 237.473 267.587 236.535C266.649 235.597 266.122 234.326 266.122 233V145C266.122 143.674 266.649 142.403 267.587 141.465C268.524 140.527 269.796 140.001 271.122 140H359.122C360.448 140.001 361.719 140.527 362.657 141.465C363.594 142.403 364.121 143.674 364.122 145V233Z" fill="#1C1E21"/>
<path d="M517.122 138.5H429.122C427.399 138.503 425.748 139.189 424.529 140.408C423.311 141.626 422.625 143.277 422.622 145V233C422.625 234.723 423.311 236.374 424.529 237.593C425.748 238.811 427.399 239.497 429.122 239.5H517.122C518.845 239.497 520.496 238.811 521.714 237.593C522.933 236.374 523.618 234.723 523.622 233V145C523.618 143.277 522.933 141.626 521.714 140.408C520.496 139.189 518.845 138.503 517.122 138.5Z" fill="#1A7A67"/>
<path d="M675.122 138.5H587.122C585.399 138.503 583.748 139.189 582.529 140.408C581.311 141.626 580.625 143.277 580.622 145V233C580.625 234.723 581.311 236.374 582.529 237.593C583.748 238.811 585.399 239.497 587.122 239.5H675.122C676.845 239.497 678.496 238.811 679.714 237.593C680.933 236.374 681.618 234.723 681.622 233V145C681.618 143.277 680.933 141.626 679.714 140.408C678.496 139.189 676.845 138.503 675.122 138.5V138.5Z" fill="#DADDE1"/>
<path d="M359.122 270.5H271.122C269.399 270.503 267.748 271.189 266.529 272.408C265.311 273.626 264.625 275.277 264.622 277V365C264.625 366.723 265.311 368.374 266.529 369.592C267.748 370.811 269.399 371.497 271.122 371.5H359.122C360.845 371.497 362.496 370.811 363.714 369.592C364.933 368.374 365.618 366.723 365.622 365V277C365.618 275.277 364.933 273.626 363.714 272.408C362.496 271.189 360.845 270.503 359.122 270.5V270.5Z" fill="#DADDE1"/>
<path d="M517.122 270.5H429.122C427.399 270.503 425.748 271.189 424.529 272.408C423.311 273.626 422.625 275.277 422.622 277V365C422.625 366.723 423.311 368.374 424.529 369.592C425.748 370.811 427.399 371.497 429.122 371.5H517.122C518.845 371.497 520.496 370.811 521.714 369.592C522.933 368.374 523.618 366.723 523.622 365V277C523.618 275.277 522.933 273.626 521.714 272.408C520.496 271.189 518.845 270.503 517.122 270.5Z" fill="#1A7A67"/>
<path d="M675.122 270.5H587.122C585.399 270.503 583.748 271.189 582.529 272.408C581.311 273.626 580.625 275.277 580.622 277V365C580.625 366.723 581.311 368.374 582.529 369.592C583.748 370.811 585.399 371.497 587.122 371.5H675.122C676.845 371.497 678.496 370.811 679.714 369.592C680.933 368.374 681.618 366.723 681.622 365V277C681.618 275.277 680.933 273.626 679.714 272.408C678.496 271.189 676.845 270.503 675.122 270.5V270.5Z" fill="#DADDE1"/>
<path d="M337.622 285H249.622C247.899 284.998 246.246 284.313 245.028 283.094C243.809 281.875 243.124 280.223 243.122 278.5V190.5C243.124 188.777 243.809 187.125 245.028 185.906C246.246 184.687 247.899 184.002 249.622 184H337.622C339.345 184.002 340.997 184.687 342.216 185.906C343.434 187.125 344.12 188.777 344.122 190.5V278.5C344.12 280.223 343.434 281.875 342.216 283.094C340.997 284.313 339.345 284.998 337.622 285Z" fill="#1A7A67"/>
<path d="M202.746 492.088L214.466 488.491L206.17 441.573L188.872 446.881L202.746 492.088Z" fill="#A0616A"/>
<path d="M240.41 492.438L203.575 503.742L199.207 489.51L221.81 482.573C223.679 482 225.643 481.8 227.589 481.985C229.535 482.171 231.426 482.737 233.153 483.653C234.88 484.569 236.41 485.817 237.655 487.324C238.9 488.831 239.836 490.569 240.41 492.438V492.438V492.438Z" fill="#2F2E41"/>
<path d="M102.748 492.358L115.008 492.357L120.84 445.069L102.746 445.07L102.748 492.358Z" fill="#A0616A"/>
<path d="M138.652 503.74L100.121 503.742L100.121 488.855L123.764 488.854C125.719 488.854 127.655 489.239 129.461 489.987C131.268 490.735 132.909 491.832 134.291 493.214C135.674 494.596 136.77 496.237 137.519 498.043C138.267 499.849 138.652 501.785 138.652 503.74L138.652 503.74Z" fill="#2F2E41"/>
<path d="M101.868 355.28C100.861 354.398 100.06 353.304 99.5206 352.078C98.9816 350.852 98.7179 349.523 98.7482 348.183C98.7785 346.844 99.1021 345.528 99.6961 344.328C100.29 343.127 101.14 342.071 102.186 341.235L111.692 221.54L131.022 226.37L115.545 343.129C116.834 344.979 117.399 347.238 117.133 349.478C116.868 351.717 115.79 353.781 114.104 355.279C112.418 356.777 110.242 357.605 107.986 357.605C105.731 357.605 103.554 356.778 101.868 355.28Z" fill="#A0616A"/>
<path d="M140.579 175.116C154.144 175.116 165.14 164.12 165.14 150.555C165.14 136.991 154.144 125.994 140.579 125.994C127.015 125.994 116.018 136.991 116.018 150.555C116.018 164.12 127.015 175.116 140.579 175.116Z" fill="#A0616A"/>
<path d="M119.223 217.859C113.681 210.25 113.51 199.772 119.48 192.495C123.376 187.745 129.892 183.945 140.772 183.945C169.772 183.945 180.772 206.945 180.772 206.945C180.772 206.945 192.772 228.945 185.772 248.945C178.772 268.945 178.772 270.945 178.772 270.945L132.772 266.945C132.772 266.945 140.532 247.113 119.223 217.859Z" fill="#DADDE1"/>
<path d="M105.037 237.767L114.947 205.346C115.611 203.175 116.743 201.177 118.264 199.492C119.785 197.807 121.658 196.476 123.75 195.594C125.842 194.712 128.102 194.301 130.37 194.388C132.638 194.476 134.86 195.061 136.877 196.101V196.101C140.378 197.914 143.058 200.99 144.374 204.706C145.69 208.422 145.544 212.499 143.965 216.111L131.367 244.802L105.037 237.767Z" fill="#DADDE1"/>
<path d="M177.772 265.945L216.772 467.945L195.772 473.945L144.772 340.945L121.772 476.945L99.7721 479.945C99.7721 479.945 90.1218 300 132.772 266.945L177.772 265.945Z" fill="#2F2E41"/>
<path d="M233.903 256.477C233.547 256.901 233.226 257.352 232.941 257.827L183.406 260.228L173.867 231.109L157.305 238.98L172.893 282.352L234.155 270.371C235.595 271.942 237.479 273.039 239.556 273.513C241.634 273.988 243.807 273.819 245.787 273.029C247.766 272.239 249.458 270.865 250.637 269.09C251.817 267.314 252.428 265.222 252.389 263.091C252.35 260.96 251.664 258.892 250.421 257.16C249.178 255.429 247.437 254.117 245.431 253.399C243.424 252.681 241.246 252.591 239.187 253.141C237.128 253.691 235.285 254.855 233.903 256.477Z" fill="#A0616A"/>
<path d="M150.375 209.849C150.11 207.595 150.343 205.309 151.058 203.155C151.773 201 152.953 199.029 154.514 197.381C156.074 195.732 157.978 194.447 160.09 193.615C162.203 192.783 164.472 192.425 166.737 192.567V192.567C170.671 192.82 174.362 194.559 177.061 197.432C179.76 200.305 181.266 204.097 181.272 208.039V239.374L154.336 243.518L150.375 209.849Z" fill="#DADDE1"/>
<path d="M145.981 175.339C142.294 175.323 139.451 171.442 139.616 167.759C139.781 164.076 142.254 160.836 145.234 158.666C148.214 156.496 151.709 155.174 155.032 153.579C158.356 151.983 161.65 149.993 163.702 146.931C164.941 144.926 165.681 142.653 165.859 140.303C166.037 137.953 165.648 135.595 164.725 133.426C162.816 129.089 159.537 125.498 155.392 123.202C149.234 119.598 141.944 118.445 134.975 119.974C128.006 121.503 121.868 125.601 117.785 131.452L113.577 142.91C109.289 148.066 108.609 155.724 111.244 161.89C113.88 168.056 119.493 172.696 125.826 174.901C132.251 176.966 139.129 177.172 145.667 175.496" fill="#2F2E41"/>
<path d="M123.534 137.179C121.725 134.279 118.59 132.435 115.348 131.353C111.593 130.1 107.599 129.73 103.677 130.272C99.7558 130.814 96.0123 132.255 92.7384 134.481C89.4645 136.707 86.7485 139.658 84.802 143.105C82.8554 146.553 81.7308 150.403 81.5157 154.356C81.1722 160.67 83.1494 166.845 84.3112 173.061C85.473 179.277 85.7041 186.143 82.2767 191.457C79.6662 195.505 75.3128 198.054 71.0159 200.23C67.4346 202.044 63.5608 203.746 59.5628 203.384C55.5647 203.023 51.5463 199.856 51.6524 195.843C50.314 198.72 49.4103 201.781 48.9708 204.923C48.6895 208.079 49.4674 211.485 51.7468 213.685C55.0599 216.884 60.3094 216.65 64.8625 215.96C74.7195 214.466 84.7007 211.664 92.4881 205.439C100.275 199.215 105.443 188.965 103.392 179.208C102.535 175.133 100.522 171.412 98.8952 167.579C97.2684 163.745 95.9983 159.552 96.7456 155.455C97.1879 153.344 98.0882 151.356 99.3828 149.631C100.677 147.906 102.335 146.487 104.238 145.473C108.087 143.471 112.491 142.804 116.761 143.574C119.56 144.033 123.055 144.746 124.715 142.446C125.155 141.718 125.38 140.879 125.363 140.029C125.347 139.178 125.089 138.349 124.621 137.638C123.664 136.232 122.444 135.023 121.029 134.078" fill="#2F2E41"/>
<path d="M308.485 505.345H1.19073C1.03408 505.346 0.878868 505.315 0.734009 505.256C0.589149 505.196 0.457489 505.108 0.346558 504.998C0.235626 504.887 0.147609 504.756 0.0875549 504.611C0.0275012 504.466 -0.00341797 504.311 -0.00341797 504.154C-0.00341797 503.998 0.0275012 503.843 0.0875549 503.698C0.147609 503.553 0.235626 503.422 0.346558 503.311C0.457489 503.201 0.589149 503.113 0.734009 503.053C0.878868 502.994 1.03408 502.963 1.19073 502.964H308.485C308.641 502.963 308.797 502.994 308.941 503.053C309.086 503.113 309.218 503.201 309.329 503.311C309.44 503.422 309.528 503.553 309.588 503.698C309.648 503.843 309.679 503.998 309.679 504.154C309.679 504.311 309.648 504.466 309.588 504.611C309.528 504.756 309.44 504.887 309.329 504.998C309.218 505.108 309.086 505.196 308.941 505.256C308.797 505.315 308.641 505.346 308.485 505.345V505.345Z" fill="#1C1E21"/>
</g>
<defs>
<clipPath id="clip0_3_93">
<rect width="794.122" height="505.345" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.9 KiB

@ -0,0 +1,84 @@
<svg width="732" height="437" viewBox="0 0 732 437" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6_252)">
<rect width="731.662" height="436.38" fill="#1B1B1D"/>
<path d="M43.1117 334.772C21.5763 326.938 2.88216 308.198 0.510681 285.405C21.4169 298.968 46.4468 304.7 71.1719 301.585C80.7029 300.349 91.1751 297.982 99.3312 303.066C104.406 306.229 107.557 311.846 109.002 317.649C110.447 323.452 110.382 329.509 110.308 335.489L110.979 336.823C88.4829 341.19 64.6471 342.606 43.1117 334.772Z" fill="#606770"/>
<path d="M0.977888 285.291C11.9523 300.762 27.5225 312.382 45.4767 318.5C49.3185 319.885 53.3546 320.657 57.4366 320.786C61.417 320.783 65.324 319.714 68.7517 317.69C71.9855 315.867 75.0823 313.629 78.7029 312.624C80.5638 312.137 82.5067 312.049 84.404 312.366C86.3013 312.682 88.1102 313.397 89.7122 314.461C93.7727 317.011 96.6751 320.867 99.3823 324.737C102.388 329.034 105.442 333.544 110.134 336.153C110.703 336.469 110.179 337.333 109.612 337.017C101.448 332.479 98.4253 322.852 91.4765 317C88.2341 314.27 84.1491 312.499 79.8641 313.382C76.117 314.153 72.9216 316.459 69.6632 318.333C66.3484 320.356 62.5886 321.537 58.7123 321.772C54.6369 321.851 50.5778 321.237 46.7086 319.954C37.9519 317.206 29.6817 313.098 22.201 307.781C13.6298 301.76 6.1517 294.317 0.0903148 285.774C-0.284625 285.245 0.605398 284.766 0.977888 285.291V285.291Z" fill="#1C1E21"/>
<path d="M39.5796 316.87C38.1442 319.743 35.7343 322.012 32.7803 323.272C29.8263 324.533 26.5205 324.702 23.4533 323.75C22.8333 323.555 23.1069 322.582 23.7276 322.777C26.5822 323.669 29.6615 323.511 32.4099 322.332C35.1583 321.153 37.3947 319.03 38.7154 316.347C39.0031 315.764 39.8656 316.291 39.5796 316.87V316.87Z" fill="#1C1E21"/>
<path d="M67.2337 318.83C65.2115 312.584 60.9095 307.33 55.1853 304.115C54.618 303.797 55.1414 302.933 55.7081 303.251C61.6585 306.608 66.1244 312.085 68.2145 318.589C68.4132 319.209 67.4315 319.447 67.2337 318.83Z" fill="#1C1E21"/>
<path d="M14.7716 301.06C15.5586 300.064 16.086 298.888 16.3063 297.638C16.5266 296.388 16.433 295.103 16.0338 293.898C15.8273 293.281 16.8094 293.043 17.0146 293.657C17.4494 294.99 17.551 296.409 17.3107 297.791C17.0703 299.173 16.4953 300.475 15.6358 301.583C15.5635 301.694 15.4516 301.773 15.3228 301.805C15.194 301.837 15.0579 301.818 14.9423 301.753C14.8282 301.684 14.7463 301.572 14.7144 301.442C14.6824 301.312 14.703 301.175 14.7716 301.06V301.06Z" fill="#1C1E21"/>
<path d="M54.8632 230.035C55.0031 230.417 55.143 230.798 55.2912 231.182C57.1991 236.305 59.52 241.265 62.231 246.012C62.4348 246.382 62.6469 246.754 62.8608 247.118C69.5142 258.485 78.2202 268.517 88.536 276.706C92.644 279.961 96.9935 282.898 101.547 285.493C107.836 289.076 114.94 292.461 119.542 297.756C120.029 298.303 120.481 298.88 120.896 299.483L112.554 335.901C112.494 335.975 112.441 336.05 112.381 336.124L112.114 337.593C111.87 337.476 111.619 337.349 111.375 337.231C111.233 337.164 111.093 337.088 110.951 337.021C110.857 336.973 110.763 336.925 110.675 336.888C110.644 336.872 110.613 336.856 110.59 336.842C110.502 336.804 110.425 336.76 110.346 336.724C108.942 336.018 107.541 335.301 106.142 334.573C106.134 334.571 106.134 334.571 106.128 334.561C95.4182 329.112 85.3928 322.413 76.2617 314.602C75.9923 314.366 75.7146 314.127 75.4491 313.874C71.4325 310.306 67.7143 306.415 64.3316 302.241C62.4866 299.95 60.7589 297.567 59.1549 295.1C55.0229 288.72 51.9201 281.73 49.9603 274.385C46.0557 259.744 46.8772 244.017 54.2873 231.022C54.4771 230.69 54.6651 230.365 54.8632 230.035Z" fill="#606770"/>
<path d="M55.3067 230.223C54.7546 249.183 60.1907 267.834 70.8428 283.529C73.0759 286.948 75.8341 289.994 79.0158 292.555C82.1958 294.949 85.9588 296.448 89.914 296.896C93.5934 297.387 97.414 297.464 100.91 298.842C102.689 299.574 104.293 300.673 105.617 302.068C106.941 303.463 107.956 305.123 108.594 306.937C110.301 311.418 110.296 316.244 110.128 320.964C109.941 326.204 109.664 331.645 111.84 336.552C112.103 337.147 111.165 337.521 110.902 336.928C107.116 328.389 110.499 318.883 108.474 310.027C107.529 305.894 105.333 302.022 101.38 300.146C97.9241 298.506 93.9844 298.423 90.2547 297.958C86.3899 297.577 82.677 296.257 79.4404 294.11C76.1387 291.72 73.2677 288.786 70.9505 285.432C65.6134 277.966 61.4835 269.706 58.7119 260.957C55.4934 250.989 54.0038 240.544 54.3075 230.073C54.3266 229.425 55.3256 229.579 55.3066 230.223L55.3067 230.223Z" fill="#1C1E21"/>
<path d="M67.1154 278.677C64.2396 280.107 60.9492 280.468 57.8318 279.695C54.7145 278.923 51.9732 277.068 50.0975 274.461C49.7198 273.932 50.5237 273.32 50.902 273.85C52.6441 276.281 55.1979 278.009 58.1022 278.722C61.0065 279.435 64.0702 279.087 66.7402 277.739C67.3207 277.447 67.6926 278.387 67.1154 278.677V278.677Z" fill="#1C1E21"/>
<path d="M88.0155 296.892C90.1614 290.687 89.8899 283.902 87.2551 277.889C86.9936 277.293 87.9316 276.919 88.1928 277.514C90.923 283.776 91.1912 290.838 88.9439 297.29C88.7293 297.905 87.8021 297.503 88.0155 296.892Z" fill="#1C1E21"/>
<path d="M56.8265 251.118C58.0544 250.796 59.1834 250.175 60.1119 249.31C61.0404 248.444 61.7395 247.362 62.1462 246.159C62.353 245.542 63.28 245.944 63.0746 246.557C62.619 247.883 61.8456 249.078 60.8218 250.036C59.798 250.995 58.5551 251.688 57.2016 252.055C57.0769 252.101 56.9397 252.097 56.8178 252.045C56.6958 251.992 56.5983 251.896 56.5451 251.774C56.4961 251.65 56.4981 251.511 56.5508 251.388C56.6035 251.265 56.7025 251.168 56.8264 251.118H56.8265Z" fill="#1C1E21"/>
<path d="M694.929 334.02C715.338 323.598 731.587 302.702 731.138 279.791C712.058 295.821 687.922 304.585 663.002 304.533C653.391 304.478 642.707 303.417 635.238 309.465C630.59 313.228 628.154 319.189 627.433 325.125C626.712 331.062 627.521 337.066 628.329 342.991L627.828 344.397C650.69 345.966 674.519 344.442 694.929 334.02Z" fill="#606770"/>
<path d="M730.661 279.735C721.671 296.438 707.647 309.883 690.581 318.162C686.939 320.009 683.028 321.271 678.993 321.9C675.042 322.386 671.034 321.806 667.383 320.219C663.95 318.808 660.601 316.966 656.885 316.414C654.978 316.16 653.039 316.311 651.195 316.859C649.351 317.406 647.644 318.338 646.185 319.591C642.468 322.62 640.062 326.804 637.851 330.978C635.396 335.611 632.92 340.463 628.584 343.628C628.058 344.012 628.684 344.805 629.209 344.422C636.753 338.914 638.569 328.99 644.746 322.328C647.628 319.219 651.465 316.96 655.826 317.309C659.639 317.614 663.094 319.51 666.558 320.969C670.096 322.569 673.972 323.279 677.848 323.036C681.902 322.614 685.855 321.505 689.537 319.757C697.89 315.953 705.592 310.859 712.363 304.663C720.129 297.634 726.636 289.328 731.601 280.105C731.908 279.534 730.966 279.168 730.661 279.735V279.735Z" fill="#1C1E21"/>
<path d="M696.233 315.819C698.011 318.494 700.681 320.45 703.768 321.337C706.855 322.225 710.156 321.986 713.083 320.664C713.674 320.395 713.283 319.463 712.691 319.733C709.968 320.969 706.892 321.191 704.02 320.359C701.148 319.527 698.667 317.695 697.027 315.194C696.67 314.651 695.878 315.279 696.233 315.819Z" fill="#1C1E21"/>
<path d="M669.03 321.164C670.269 314.717 673.893 308.973 679.178 305.079C679.702 304.694 679.076 303.901 678.553 304.286C673.06 308.349 669.302 314.333 668.027 321.045C667.906 321.685 668.909 321.8 669.03 321.164H669.03Z" fill="#1C1E21"/>
<path d="M718.91 297.08C718.006 296.188 717.338 295.086 716.966 293.873C716.594 292.659 716.529 291.372 716.777 290.127C716.906 289.489 715.902 289.374 715.774 290.008C715.506 291.385 715.58 292.806 715.988 294.148C716.396 295.489 717.127 296.711 718.116 297.705C718.202 297.806 718.323 297.872 718.454 297.887C718.586 297.903 718.719 297.868 718.826 297.789C718.93 297.706 718.998 297.584 719.013 297.452C719.029 297.319 718.992 297.185 718.91 297.08H718.91Z" fill="#1C1E21"/>
<path d="M670.392 231.521C670.3 231.917 670.208 232.313 670.108 232.713C668.845 238.031 667.151 243.238 665.044 248.282C664.887 248.675 664.722 249.071 664.555 249.458C659.349 261.556 651.942 272.583 642.711 281.978C639.034 285.713 635.079 289.162 630.879 292.297C625.078 296.626 618.444 300.858 614.527 306.68C614.112 307.282 613.734 307.91 613.397 308.56L626.151 343.676C626.22 343.742 626.282 343.81 626.351 343.876L626.796 345.301C627.024 345.155 627.257 344.998 627.485 344.851C627.618 344.767 627.747 344.675 627.88 344.59C627.967 344.531 628.055 344.472 628.137 344.424C628.166 344.405 628.195 344.385 628.216 344.368C628.299 344.32 628.37 344.267 628.444 344.222C629.75 343.348 631.053 342.464 632.351 341.569C632.359 341.566 632.359 341.567 632.364 341.556C642.323 334.832 651.449 326.951 659.551 318.078C659.789 317.81 660.035 317.539 660.267 317.255C663.815 313.22 667.027 308.902 669.871 304.344C671.42 301.843 672.842 299.266 674.13 296.621C677.447 289.781 679.667 282.462 680.709 274.933C682.784 259.922 680.036 244.415 671.085 232.43C670.856 232.124 670.629 231.825 670.392 231.521Z" fill="#606770"/>
<path d="M669.975 231.762C672.853 250.51 669.751 269.689 661.109 286.574C659.313 290.242 656.95 293.604 654.107 296.536C651.246 299.303 647.695 301.253 643.825 302.183C640.234 303.124 636.452 303.67 633.152 305.466C631.477 306.411 630.02 307.7 628.877 309.247C627.734 310.794 626.932 312.566 626.522 314.445C625.378 319.101 625.976 323.891 626.723 328.554C627.553 333.732 628.497 339.097 626.94 344.235C626.752 344.857 627.729 345.113 627.917 344.492C630.625 335.552 626.1 326.534 627.02 317.496C627.45 313.279 629.153 309.166 632.845 306.819C636.074 304.766 639.974 304.2 643.618 303.279C647.407 302.427 650.929 300.66 653.877 298.132C656.86 295.354 659.348 292.089 661.236 288.476C665.615 280.41 668.698 271.706 670.373 262.682C672.342 252.394 672.537 241.845 670.948 231.491C670.85 230.85 669.877 231.125 669.975 231.762V231.762Z" fill="#1C1E21"/>
<path d="M664.212 281.301C667.241 282.366 670.551 282.32 673.55 281.17C676.549 280.021 679.041 277.842 680.582 275.025C680.892 274.454 680.019 273.945 679.709 274.517C678.279 277.144 675.957 279.172 673.162 280.237C670.367 281.302 667.284 281.333 664.469 280.324C663.857 280.106 663.603 281.084 664.212 281.301V281.301Z" fill="#1C1E21"/>
<path d="M645.709 301.946C642.817 296.053 642.252 289.285 644.128 282.994C644.314 282.371 643.337 282.114 643.151 282.737C641.211 289.288 641.813 296.329 644.837 302.455C645.125 303.039 645.996 302.527 645.709 301.946V301.946Z" fill="#1C1E21"/>
<path d="M671.035 252.686C669.777 252.518 668.58 252.04 667.552 251.295C666.524 250.55 665.698 249.562 665.146 248.419C664.865 247.831 663.994 248.344 664.274 248.927C664.889 250.188 665.803 251.278 666.937 252.104C668.071 252.929 669.39 253.464 670.778 253.662C670.907 253.692 671.043 253.671 671.158 253.604C671.272 253.537 671.357 253.43 671.395 253.302C671.428 253.173 671.409 253.035 671.342 252.92C671.274 252.804 671.164 252.72 671.035 252.685V252.686Z" fill="#1C1E21"/>
<path d="M637.329 14.9999H493.539V24.2499C493.537 24.7235 493.7 25.1832 494 25.5499C493.71 32.7799 493.539 42.0099 493.539 52.0399V299.34C493.539 322.52 494.469 341.38 495.61 341.38H635.259C636.4 341.38 637.329 322.52 637.329 299.34V52.0399C637.329 42.0099 637.159 32.78 636.869 25.5499C637.169 25.1831 637.332 24.7235 637.329 24.2499L637.329 14.9999Z" fill="#1C1E21"/>
<path d="M635.259 342.38H495.609C494.521 342.38 493.802 342.38 493.148 329.102C492.755 321.133 492.539 310.563 492.539 299.34V52.04C492.539 42.3462 492.703 32.9243 493 25.5098C493.186 21.0581 493.4 17.4922 493.634 14.9097C494.093 9.854 494.53 9 495.609 9H635.259C636.339 9 636.775 9.854 637.235 14.9097C637.47 17.5019 637.683 21.0679 637.868 25.5078L637.868 25.5098C638.166 32.9165 638.329 42.3384 638.329 52.04V299.34C638.329 310.564 638.113 321.134 637.721 329.102C637.067 342.38 636.348 342.38 635.259 342.38ZM496.178 340.38H634.691C635.415 337.647 636.329 322.81 636.329 299.34V52.04C636.329 42.3647 636.166 32.9722 635.87 25.5918H635.87C635.686 21.1836 635.475 17.6504 635.243 15.0903C635.154 13.7152 634.966 12.3483 634.682 11H496.187C495.903 12.3483 495.715 13.7152 495.625 15.0903C495.394 17.6406 495.183 21.1738 494.999 25.5918C494.702 32.9785 494.539 42.3721 494.539 52.04V299.34C494.539 322.809 495.454 337.647 496.178 340.38Z" fill="#606770"/>
<path d="M635.259 9.99988H495.609C495.061 10.0009 494.535 10.2194 494.147 10.6073C493.759 10.9953 493.54 11.5212 493.539 12.0699V24.2499C493.537 24.7235 493.7 25.1832 494 25.5499C494.194 25.7897 494.439 25.9832 494.718 26.1164C494.996 26.2495 495.301 26.3191 495.609 26.3199H635.259C635.568 26.319 635.873 26.2495 636.151 26.1163C636.429 25.9831 636.675 25.7896 636.869 25.5499C637.169 25.1831 637.332 24.7235 637.329 24.2499V12.0699C637.328 11.5212 637.11 10.9953 636.722 10.6074C636.334 10.2194 635.808 10.0009 635.259 9.99988V9.99988Z" fill="#606770"/>
<path d="M505.559 20.505C507.183 20.505 508.499 19.1889 508.499 17.5654C508.499 15.9418 507.183 14.6257 505.559 14.6257C503.936 14.6257 502.619 15.9418 502.619 17.5654C502.619 19.1889 503.936 20.505 505.559 20.505Z" fill="#1C1E21"/>
<path d="M516.717 20.505C518.34 20.505 519.656 19.1889 519.656 17.5654C519.656 15.9418 518.34 14.6257 516.717 14.6257C515.093 14.6257 513.777 15.9418 513.777 17.5654C513.777 19.1889 515.093 20.505 516.717 20.505Z" fill="#1C1E21"/>
<path d="M527.875 20.505C529.499 20.505 530.815 19.1889 530.815 17.5654C530.815 15.9418 529.499 14.6257 527.875 14.6257C526.252 14.6257 524.936 15.9418 524.936 17.5654C524.936 19.1889 526.252 20.505 527.875 20.505Z" fill="#1C1E21"/>
<path d="M624.329 13.6399H611.479C611.228 13.6416 610.987 13.7423 610.809 13.9201C610.632 14.0979 610.531 14.3385 610.529 14.5899C610.525 14.7331 610.56 14.8747 610.629 14.9999C610.706 15.161 610.826 15.2972 610.976 15.3927C611.127 15.4883 611.301 15.5393 611.479 15.5399H624.329C624.509 15.5408 624.685 15.4905 624.838 15.3949C624.99 15.2993 625.112 15.1623 625.19 14.9999C625.251 14.8721 625.282 14.7317 625.279 14.5899C625.279 14.4651 625.255 14.3416 625.207 14.2263C625.159 14.111 625.089 14.0062 625.001 13.918C624.913 13.8298 624.808 13.7598 624.693 13.7121C624.577 13.6644 624.454 13.6399 624.329 13.6399V13.6399Z" fill="#1C1E21"/>
<path d="M624.329 17.2099H611.479C611.227 17.2099 610.985 17.31 610.807 17.4882C610.629 17.6663 610.529 17.908 610.529 18.1599C610.529 18.4119 610.629 18.6535 610.807 18.8317C610.985 19.0099 611.227 19.1099 611.479 19.1099H624.329C624.581 19.1099 624.823 19.0099 625.001 18.8317C625.179 18.6535 625.279 18.4119 625.279 18.1599C625.279 17.908 625.179 17.6663 625.001 17.4882C624.823 17.31 624.581 17.2099 624.329 17.2099V17.2099Z" fill="#1C1E21"/>
<path d="M624.329 20.7799H611.479C611.227 20.7799 610.985 20.88 610.807 21.0582C610.629 21.2364 610.529 21.478 610.529 21.7299C610.529 21.9819 610.629 22.2235 610.807 22.4017C610.985 22.5798 611.227 22.6799 611.479 22.6799H624.329C624.581 22.6799 624.823 22.5798 625.001 22.4017C625.179 22.2235 625.279 21.9819 625.279 21.7299C625.279 21.478 625.179 21.2364 625.001 21.0582C624.823 20.88 624.581 20.7799 624.329 20.7799V20.7799Z" fill="#1C1E21"/>
<path d="M579.329 53.0199H552.889C551.563 53.0205 550.292 53.5474 549.354 54.485C548.417 55.4226 547.89 56.694 547.889 58.0199V80.92C547.891 82.2454 548.419 83.5158 549.356 84.453C550.293 85.3902 551.564 85.9177 552.889 85.92H579.329C580.654 85.9161 581.924 85.388 582.86 84.4512C583.797 83.5144 584.325 82.2448 584.329 80.92V58.0199C584.327 56.6945 583.8 55.424 582.862 54.4868C581.925 53.5496 580.655 53.0221 579.329 53.0199Z" fill="#1ABB9B"/>
<path d="M612.179 100.88H520.029C519.427 100.88 518.85 101.119 518.424 101.545C517.999 101.97 517.759 102.548 517.759 103.15C517.759 103.752 517.999 104.329 518.424 104.755C518.85 105.181 519.427 105.42 520.029 105.42H612.179C612.781 105.42 613.359 105.181 613.784 104.755C614.21 104.329 614.449 103.752 614.449 103.15C614.449 102.548 614.21 101.97 613.784 101.545C613.359 101.119 612.781 100.88 612.179 100.88V100.88Z" fill="#8D949E"/>
<path d="M555.029 111.52H520.029C519.427 111.52 518.85 111.759 518.424 112.185C517.999 112.611 517.759 113.188 517.759 113.79C517.759 114.392 517.999 114.969 518.424 115.395C518.85 115.821 519.427 116.06 520.029 116.06H555.029C555.631 116.06 556.209 115.821 556.635 115.395C557.06 114.969 557.299 114.392 557.299 113.79C557.299 113.188 557.06 112.611 556.635 112.185C556.209 111.759 555.631 111.52 555.029 111.52V111.52Z" fill="#8D949E"/>
<path d="M579.329 152.02H552.889C551.563 152.02 550.292 152.547 549.354 153.485C548.417 154.423 547.89 155.694 547.889 157.02V179.92C547.891 181.245 548.419 182.516 549.356 183.453C550.293 184.39 551.564 184.918 552.889 184.92H579.329C580.654 184.916 581.924 184.388 582.86 183.451C583.797 182.514 584.325 181.245 584.329 179.92V157.02C584.327 155.695 583.8 154.424 582.862 153.487C581.925 152.55 580.655 152.022 579.329 152.02Z" fill="#1ABB9B"/>
<path d="M612.179 199.88H520.029C519.427 199.88 518.85 200.119 518.424 200.545C517.999 200.97 517.759 201.548 517.759 202.15C517.759 202.752 517.999 203.329 518.424 203.755C518.85 204.181 519.427 204.42 520.029 204.42H612.179C612.781 204.42 613.359 204.181 613.784 203.755C614.21 203.329 614.449 202.752 614.449 202.15C614.449 201.548 614.21 200.97 613.784 200.545C613.359 200.119 612.781 199.88 612.179 199.88V199.88Z" fill="#8D949E"/>
<path d="M555.029 210.52H520.029C519.427 210.52 518.85 210.759 518.424 211.185C517.999 211.611 517.759 212.188 517.759 212.79C517.759 213.392 517.999 213.969 518.424 214.395C518.85 214.821 519.427 215.06 520.029 215.06H555.029C555.631 215.06 556.209 214.821 556.635 214.395C557.06 213.969 557.299 213.392 557.299 212.79C557.299 212.188 557.06 211.611 556.635 211.185C556.209 210.759 555.631 210.52 555.029 210.52V210.52Z" fill="#8D949E"/>
<path d="M579.329 251.02H552.889C551.563 251.02 550.292 251.547 549.354 252.485C548.417 253.423 547.89 254.694 547.889 256.02V278.92C547.891 280.245 548.419 281.516 549.356 282.453C550.293 283.39 551.564 283.918 552.889 283.92H579.329C580.654 283.916 581.924 283.388 582.86 282.451C583.797 281.514 584.325 280.245 584.329 278.92V256.02C584.327 254.695 583.8 253.424 582.862 252.487C581.925 251.55 580.655 251.022 579.329 251.02V251.02Z" fill="#1ABB9B"/>
<path d="M612.179 298.88H520.029C519.427 298.88 518.85 299.119 518.424 299.545C517.999 299.97 517.759 300.548 517.759 301.15C517.759 301.752 517.999 302.329 518.424 302.755C518.85 303.181 519.427 303.42 520.029 303.42H612.179C612.781 303.42 613.359 303.181 613.784 302.755C614.21 302.329 614.449 301.752 614.449 301.15C614.449 300.548 614.21 299.97 613.784 299.545C613.359 299.119 612.781 298.88 612.179 298.88V298.88Z" fill="#8D949E"/>
<path d="M555.029 309.52H520.029C519.427 309.52 518.85 309.759 518.424 310.185C517.999 310.611 517.759 311.188 517.759 311.79C517.759 312.392 517.999 312.969 518.424 313.395C518.85 313.821 519.427 314.06 520.029 314.06H555.029C555.631 314.06 556.209 313.821 556.635 313.395C557.06 312.969 557.299 312.392 557.299 311.79C557.299 311.188 557.06 310.611 556.635 310.185C556.209 309.759 555.631 309.52 555.029 309.52Z" fill="#8D949E"/>
<path d="M454.329 3.06989C454.328 2.52123 454.11 1.99535 453.722 1.60738C453.334 1.2194 452.808 1.00096 452.259 0.999878H82.6095C82.0608 1.00094 81.5349 1.21935 81.1468 1.60732C80.7588 1.99528 80.5403 2.52118 80.5392 3.06989V15.2499C80.5374 15.757 80.7267 16.2461 81.0694 16.6199C80.7394 24.8899 80.5392 35.7899 80.5392 47.7299V322.64C80.5392 348.42 81.4693 369.38 82.6095 369.38H452.259C453.4 369.38 454.329 348.42 454.329 322.64V47.7299C454.329 35.7899 454.129 24.8899 453.799 16.6199C454.142 16.2461 454.331 15.7569 454.329 15.2499V3.06989Z" fill="#1C1E21"/>
<path d="M452.259 370.38H82.6095C81.4795 370.38 80.7973 370.38 80.1477 355.722C79.7552 346.867 79.5392 335.118 79.5392 322.64V47.7299C79.5392 36.2226 79.7278 25.1601 80.0703 16.58C80.7276 -3.24249e-05 81.4763 -4.57764e-05 82.6095 -4.57764e-05H452.259C453.392 -4.57764e-05 454.141 0.00289726 454.799 16.58C455.141 25.1523 455.329 36.2148 455.329 47.7299V322.64C455.329 335.119 455.113 346.867 454.721 355.722C454.071 370.38 453.389 370.38 452.259 370.38ZM83.1932 368.38H451.676C452.494 365.245 453.329 347.64 453.329 322.64V47.7299C453.329 36.2407 453.141 25.206 452.8 16.6601V16.6596C452.384 6.15622 451.897 2.95991 451.665 1.99995H83.2041C82.9715 2.95995 82.4852 6.15622 82.0686 16.6596C81.7271 25.2143 81.5392 36.2485 81.5392 47.7299V322.64C81.5392 347.64 82.3748 365.244 83.1932 368.38V368.38Z" fill="#606770"/>
<path d="M452.259 0.999878H82.6095C82.0608 1.00094 81.5349 1.21935 81.1468 1.60732C80.7588 1.99528 80.5403 2.52118 80.5392 3.06989V15.2499C80.5374 15.757 80.7267 16.2461 81.0694 16.6199C81.2616 16.8394 81.4984 17.0153 81.7639 17.136C82.0295 17.2567 82.3177 17.3194 82.6094 17.3199H452.259C452.551 17.3194 452.839 17.2567 453.105 17.136C453.37 17.0153 453.607 16.8394 453.799 16.6199C454.142 16.2461 454.331 15.7569 454.329 15.2499V3.06989C454.328 2.52125 454.11 1.99538 453.722 1.60741C453.334 1.21944 452.808 1.00098 452.259 0.999878V0.999878Z" fill="#606770"/>
<path d="M92.559 11.505C94.1825 11.505 95.4987 10.1889 95.4987 8.56535C95.4987 6.94184 94.1825 5.62573 92.559 5.62573C90.9355 5.62573 89.6194 6.94184 89.6194 8.56535C89.6194 10.1889 90.9355 11.505 92.559 11.505Z" fill="#1C1E21"/>
<path d="M103.717 11.505C105.34 11.505 106.656 10.1889 106.656 8.56535C106.656 6.94184 105.34 5.62573 103.717 5.62573C102.093 5.62573 100.777 6.94184 100.777 8.56535C100.777 10.1889 102.093 11.505 103.717 11.505Z" fill="#1C1E21"/>
<path d="M114.875 11.505C116.499 11.505 117.815 10.1889 117.815 8.56535C117.815 6.94184 116.499 5.62573 114.875 5.62573C113.252 5.62573 111.936 6.94184 111.936 8.56535C111.936 10.1889 113.252 11.505 114.875 11.505Z" fill="#1C1E21"/>
<path d="M441.329 4.63994H428.479C428.227 4.63994 427.986 4.74002 427.807 4.91818C427.629 5.09634 427.529 5.33798 427.529 5.58994C427.529 5.84189 427.629 6.08353 427.807 6.26169C427.986 6.43985 428.227 6.53995 428.479 6.53995H441.329C441.581 6.53995 441.823 6.43985 442.001 6.26169C442.179 6.08353 442.279 5.84189 442.279 5.58994C442.279 5.33798 442.179 5.09634 442.001 4.91818C441.823 4.74002 441.581 4.63994 441.329 4.63994Z" fill="#1C1E21"/>
<path d="M441.329 8.20995H428.479C428.227 8.20995 427.986 8.31003 427.807 8.48819C427.629 8.66635 427.529 8.90799 427.529 9.15994C427.529 9.4119 427.629 9.65354 427.807 9.8317C427.986 10.0099 428.227 10.1099 428.479 10.1099H441.329C441.581 10.1099 441.823 10.0099 442.001 9.8317C442.179 9.65354 442.279 9.4119 442.279 9.15994C442.279 8.90799 442.179 8.66635 442.001 8.48819C441.823 8.31003 441.581 8.20995 441.329 8.20995V8.20995Z" fill="#1C1E21"/>
<path d="M441.329 11.7799H428.479C428.227 11.7799 427.986 11.88 427.807 12.0582C427.629 12.2364 427.529 12.478 427.529 12.7299C427.529 12.9819 427.629 13.2235 427.807 13.4017C427.986 13.5798 428.227 13.6799 428.479 13.6799H441.329C441.581 13.6799 441.823 13.5798 442.001 13.4017C442.179 13.2235 442.279 12.9819 442.279 12.7299C442.279 12.478 442.179 12.2364 442.001 12.0582C441.823 11.88 441.581 11.7799 441.329 11.7799V11.7799Z" fill="#1C1E21"/>
<path d="M202.089 62.0199H158.829C156.661 62.0226 154.582 62.8853 153.048 64.4188C151.515 65.9522 150.652 68.0313 150.65 70.2V107.67C150.652 109.839 151.515 111.918 153.048 113.451C154.582 114.985 156.661 115.847 158.829 115.85H202.089C204.258 115.847 206.337 114.985 207.871 113.451C209.404 111.918 210.267 109.839 210.269 107.67V70.2C210.267 68.0313 209.404 65.9522 207.871 64.4188C206.337 62.8853 204.258 62.0226 202.089 62.0199V62.0199Z" fill="#1ABB9B"/>
<path d="M380.519 76.5099H229.739C228.754 76.5099 227.809 76.9014 227.112 77.5981C226.416 78.2948 226.024 79.2397 226.024 80.2249C226.024 81.2102 226.416 82.1551 227.112 82.8518C227.809 83.5485 228.754 83.9399 229.739 83.9399H380.519C381.504 83.9399 382.449 83.5485 383.146 82.8518C383.843 82.1551 384.234 81.2102 384.234 80.2249C384.234 79.2397 383.843 78.2948 383.146 77.5981C382.449 76.9014 381.504 76.5099 380.519 76.5099V76.5099Z" fill="#8D949E"/>
<path d="M287.009 93.9199H229.739C228.754 93.9199 227.809 94.3113 227.112 95.008C226.416 95.7047 226.024 96.6496 226.024 97.6349C226.024 98.6201 226.416 99.5651 227.112 100.262C227.809 100.958 228.754 101.35 229.739 101.35H287.009C287.995 101.35 288.94 100.958 289.636 100.262C290.333 99.5651 290.724 98.6201 290.724 97.6349C290.724 96.6496 290.333 95.7047 289.636 95.008C288.94 94.3113 287.995 93.9199 287.009 93.9199V93.9199Z" fill="#8D949E"/>
<path d="M202.089 162.02H158.829C156.661 162.023 154.582 162.885 153.048 164.419C151.515 165.952 150.652 168.031 150.65 170.2V207.67C150.652 209.839 151.515 211.918 153.048 213.451C154.582 214.985 156.661 215.847 158.829 215.85H202.089C204.258 215.847 206.337 214.985 207.871 213.451C209.404 211.918 210.267 209.839 210.269 207.67V170.2C210.267 168.031 209.404 165.952 207.871 164.419C206.337 162.885 204.258 162.023 202.089 162.02V162.02Z" fill="#1ABB9B"/>
<path d="M380.519 176.51H229.739C228.754 176.51 227.809 176.901 227.112 177.598C226.416 178.295 226.024 179.24 226.024 180.225C226.024 181.21 226.416 182.155 227.112 182.852C227.809 183.549 228.754 183.94 229.739 183.94H380.519C381.504 183.94 382.449 183.549 383.146 182.852C383.843 182.155 384.234 181.21 384.234 180.225C384.234 179.24 383.843 178.295 383.146 177.598C382.449 176.901 381.504 176.51 380.519 176.51V176.51Z" fill="#8D949E"/>
<path d="M287.009 193.92H229.739C228.754 193.92 227.809 194.311 227.112 195.008C226.416 195.705 226.024 196.65 226.024 197.635C226.024 198.62 226.416 199.565 227.112 200.262C227.809 200.958 228.754 201.35 229.739 201.35H287.009C287.995 201.35 288.94 200.958 289.636 200.262C290.333 199.565 290.724 198.62 290.724 197.635C290.724 196.65 290.333 195.705 289.636 195.008C288.94 194.311 287.995 193.92 287.009 193.92V193.92Z" fill="#8D949E"/>
<path d="M202.089 262.02H158.829C156.661 262.023 154.582 262.885 153.048 264.419C151.515 265.952 150.652 268.031 150.65 270.2V307.67C150.652 309.839 151.515 311.918 153.048 313.451C154.582 314.985 156.661 315.847 158.829 315.85H202.089C204.258 315.847 206.337 314.985 207.871 313.451C209.404 311.918 210.267 309.839 210.269 307.67V270.2C210.267 268.031 209.404 265.952 207.871 264.419C206.337 262.885 204.258 262.023 202.089 262.02V262.02Z" fill="#1ABB9B"/>
<path d="M380.519 276.51H229.739C228.754 276.51 227.809 276.901 227.112 277.598C226.416 278.295 226.024 279.24 226.024 280.225C226.024 281.21 226.416 282.155 227.112 282.852C227.809 283.549 228.754 283.94 229.739 283.94H380.519C381.504 283.94 382.449 283.549 383.146 282.852C383.843 282.155 384.234 281.21 384.234 280.225C384.234 279.24 383.843 278.295 383.146 277.598C382.449 276.901 381.504 276.51 380.519 276.51V276.51Z" fill="#8D949E"/>
<path d="M287.009 293.92H229.739C228.754 293.92 227.809 294.311 227.112 295.008C226.416 295.705 226.024 296.65 226.024 297.635C226.024 298.62 226.416 299.565 227.112 300.262C227.809 300.958 228.754 301.35 229.739 301.35H287.009C287.995 301.35 288.94 300.958 289.636 300.262C290.333 299.565 290.724 298.62 290.724 297.635C290.724 296.65 290.333 295.705 289.636 295.008C288.94 294.311 287.995 293.92 287.009 293.92V293.92Z" fill="#8D949E"/>
<path d="M518.262 435.38H270.613C269.472 435.38 268.543 417.83 268.543 396.257V166.123C268.543 144.549 269.472 126.999 270.613 126.999H518.262C519.404 126.999 520.333 144.549 520.333 166.123V396.257C520.333 417.83 519.404 435.38 518.262 435.38Z" fill="#1C1E21"/>
<path d="M518.262 436.38H270.613C269.566 436.38 268.809 436.38 268.151 423.961C267.759 416.546 267.543 406.708 267.543 396.256V166.123C267.543 155.672 267.759 145.833 268.151 138.418C268.809 125.999 269.566 125.999 270.613 125.999H518.262C519.31 125.999 520.067 125.999 520.724 138.418C521.117 145.833 521.333 155.672 521.333 166.123V396.256C521.333 406.708 521.117 416.546 520.724 423.961C520.067 436.38 519.31 436.38 518.262 436.38ZM271.167 434.38H517.709C518.427 431.789 519.333 417.986 519.333 396.256V166.123C519.333 144.393 518.427 130.59 517.709 127.999H271.167C270.449 130.59 269.543 144.393 269.543 166.123V396.256C269.543 417.986 270.449 431.789 271.167 434.38Z" fill="#606770"/>
<path d="M518.262 143.32H270.613C270.064 143.319 269.538 143.101 269.15 142.712C268.762 142.324 268.544 141.798 268.543 141.249V129.07C268.544 128.521 268.762 127.994 269.15 127.606C269.538 127.218 270.064 127 270.613 126.999H518.262C518.811 127 519.337 127.218 519.726 127.606C520.114 127.994 520.332 128.521 520.333 129.07V141.249C520.332 141.798 520.114 142.324 519.726 142.712C519.337 143.101 518.811 143.319 518.262 143.32V143.32Z" fill="#606770"/>
<path d="M280.559 137.505C282.183 137.505 283.499 136.189 283.499 134.565C283.499 132.942 282.183 131.626 280.559 131.626C278.936 131.626 277.619 132.942 277.619 134.565C277.619 136.189 278.936 137.505 280.559 137.505Z" fill="#1C1E21"/>
<path d="M291.717 137.505C293.34 137.505 294.656 136.189 294.656 134.565C294.656 132.942 293.34 131.626 291.717 131.626C290.093 131.626 288.777 132.942 288.777 134.565C288.777 136.189 290.093 137.505 291.717 137.505Z" fill="#1C1E21"/>
<path d="M302.875 137.505C304.499 137.505 305.815 136.189 305.815 134.565C305.815 132.942 304.499 131.626 302.875 131.626C301.252 131.626 299.936 132.942 299.936 134.565C299.936 136.189 301.252 137.505 302.875 137.505Z" fill="#1C1E21"/>
<path d="M507.33 132.542H494.481C494.229 132.542 493.987 132.442 493.808 132.263C493.63 132.085 493.53 131.843 493.53 131.59C493.53 131.338 493.63 131.096 493.808 130.917C493.987 130.739 494.229 130.639 494.481 130.639H507.33C507.582 130.639 507.823 130.74 508.001 130.918C508.179 131.097 508.279 131.338 508.279 131.59C508.279 131.842 508.179 132.084 508.001 132.262C507.823 132.441 507.582 132.541 507.33 132.542Z" fill="#1C1E21"/>
<path d="M507.33 136.111H494.481C494.229 136.111 493.987 136.011 493.808 135.832C493.63 135.654 493.53 135.412 493.53 135.159C493.53 134.907 493.63 134.665 493.808 134.486C493.987 134.308 494.229 134.208 494.481 134.208H507.33C507.582 134.208 507.824 134.308 508.003 134.486C508.181 134.665 508.282 134.907 508.282 135.159C508.282 135.412 508.181 135.654 508.003 135.832C507.824 136.011 507.582 136.111 507.33 136.111V136.111Z" fill="#1C1E21"/>
<path d="M507.33 139.68H494.481C494.229 139.68 493.987 139.58 493.808 139.401C493.63 139.223 493.53 138.981 493.53 138.728C493.53 138.476 493.63 138.234 493.808 138.055C493.987 137.877 494.229 137.777 494.481 137.777H507.33C507.582 137.778 507.823 137.878 508.001 138.057C508.179 138.235 508.279 138.477 508.279 138.728C508.279 138.98 508.179 139.222 508.001 139.4C507.823 139.579 507.582 139.679 507.33 139.68V139.68Z" fill="#1C1E21"/>
<path d="M346.713 218.917H315.12C313.536 218.915 312.017 218.285 310.897 217.165C309.777 216.045 309.147 214.526 309.145 212.942V185.579C309.147 183.995 309.777 182.476 310.897 181.356C312.017 180.236 313.536 179.606 315.12 179.604H346.713C348.297 179.606 349.816 180.236 350.936 181.356C352.056 182.476 352.686 183.995 352.688 185.579V212.942C352.686 214.526 352.056 216.045 350.936 217.165C349.816 218.285 348.297 218.915 346.713 218.917Z" fill="#1ABB9B"/>
<path d="M477.018 195.616H366.907C366.188 195.616 365.498 195.33 364.989 194.821C364.481 194.313 364.195 193.623 364.195 192.903C364.195 192.184 364.481 191.494 364.989 190.985C365.498 190.477 366.188 190.191 366.907 190.191H477.018C477.737 190.191 478.427 190.477 478.936 190.985C479.444 191.494 479.73 192.184 479.73 192.903C479.73 193.623 479.444 194.313 478.936 194.821C478.427 195.33 477.737 195.616 477.018 195.616V195.616Z" fill="#8D949E"/>
<path d="M408.729 208.33H366.907C366.188 208.33 365.498 208.044 364.989 207.535C364.481 207.027 364.195 206.337 364.195 205.617C364.195 204.898 364.481 204.208 364.989 203.699C365.498 203.191 366.188 202.905 366.907 202.905H408.729C409.086 202.904 409.439 202.974 409.769 203.11C410.098 203.246 410.398 203.446 410.65 203.698C410.903 203.949 411.103 204.249 411.24 204.578C411.376 204.908 411.447 205.261 411.447 205.617C411.447 205.974 411.376 206.327 411.24 206.657C411.103 206.986 410.903 207.285 410.65 207.537C410.398 207.789 410.098 207.989 409.769 208.125C409.439 208.261 409.086 208.33 408.729 208.33Z" fill="#8D949E"/>
<path d="M346.713 299.917H315.12C313.536 299.915 312.017 299.285 310.897 298.165C309.777 297.045 309.147 295.526 309.145 293.942V266.579C309.147 264.995 309.777 263.476 310.897 262.356C312.017 261.236 313.536 260.606 315.12 260.604H346.713C348.297 260.606 349.816 261.236 350.936 262.356C352.056 263.476 352.686 264.995 352.688 266.579V293.942C352.686 295.526 352.056 297.045 350.936 298.165C349.816 299.285 348.297 299.915 346.713 299.917V299.917Z" fill="#1ABB9B"/>
<path d="M477.018 276.616H366.907C366.188 276.616 365.498 276.33 364.989 275.821C364.481 275.313 364.195 274.623 364.195 273.903C364.195 273.184 364.481 272.494 364.989 271.985C365.498 271.477 366.188 271.191 366.907 271.191H477.018C477.737 271.191 478.427 271.477 478.936 271.985C479.444 272.494 479.73 273.184 479.73 273.903C479.73 274.623 479.444 275.313 478.936 275.821C478.427 276.33 477.737 276.616 477.018 276.616V276.616Z" fill="#8D949E"/>
<path d="M408.729 289.33H366.907C366.188 289.33 365.498 289.044 364.989 288.535C364.481 288.027 364.195 287.337 364.195 286.617C364.195 285.898 364.481 285.208 364.989 284.699C365.498 284.191 366.188 283.905 366.907 283.905H408.729C409.086 283.904 409.439 283.974 409.769 284.11C410.098 284.246 410.398 284.446 410.65 284.698C410.903 284.949 411.103 285.249 411.24 285.578C411.376 285.908 411.447 286.261 411.447 286.617C411.447 286.974 411.376 287.327 411.24 287.657C411.103 287.986 410.903 288.285 410.65 288.537C410.398 288.789 410.098 288.989 409.769 289.125C409.439 289.261 409.086 289.33 408.729 289.33V289.33Z" fill="#8D949E"/>
<path d="M346.713 380.917H315.12C313.536 380.915 312.017 380.285 310.897 379.165C309.777 378.045 309.147 376.526 309.145 374.942V347.579C309.147 345.995 309.777 344.476 310.897 343.356C312.017 342.236 313.536 341.606 315.12 341.604H346.713C348.297 341.606 349.816 342.236 350.936 343.356C352.056 344.476 352.686 345.995 352.688 347.579V374.942C352.686 376.526 352.056 378.045 350.936 379.165C349.816 380.285 348.297 380.915 346.713 380.917Z" fill="#1ABB9B"/>
<path d="M477.018 357.616H366.907C366.188 357.616 365.498 357.33 364.989 356.821C364.481 356.313 364.195 355.623 364.195 354.903C364.195 354.184 364.481 353.494 364.989 352.985C365.498 352.477 366.188 352.191 366.907 352.191H477.018C477.737 352.191 478.427 352.477 478.936 352.985C479.444 353.494 479.73 354.184 479.73 354.903C479.73 355.623 479.444 356.313 478.936 356.821C478.427 357.33 477.737 357.616 477.018 357.616Z" fill="#8D949E"/>
<path d="M408.729 370.33H366.907C366.188 370.33 365.498 370.044 364.989 369.535C364.481 369.027 364.195 368.337 364.195 367.617C364.195 366.898 364.481 366.208 364.989 365.699C365.498 365.191 366.188 364.905 366.907 364.905H408.729C409.086 364.904 409.439 364.974 409.769 365.11C410.098 365.246 410.398 365.446 410.65 365.698C410.903 365.949 411.103 366.249 411.24 366.578C411.376 366.908 411.447 367.261 411.447 367.617C411.447 367.974 411.376 368.327 411.24 368.657C411.103 368.986 410.903 369.285 410.65 369.537C410.398 369.789 410.098 369.989 409.769 370.125C409.439 370.261 409.086 370.33 408.729 370.33V370.33Z" fill="#8D949E"/>
</g>
<defs>
<clipPath id="clip0_6_252">
<rect width="731.662" height="436.38" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 34 KiB

@ -0,0 +1,84 @@
<svg width="732" height="437" viewBox="0 0 732 437" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6_177)">
<rect width="731.662" height="436.38" fill="white"/>
<path d="M43.1117 334.772C21.5763 326.938 2.88216 308.198 0.510681 285.405C21.4169 298.968 46.4468 304.7 71.1719 301.585C80.7029 300.349 91.1751 297.982 99.3312 303.066C104.406 306.229 107.557 311.846 109.002 317.649C110.447 323.452 110.382 329.509 110.308 335.489L110.979 336.823C88.4829 341.19 64.6471 342.606 43.1117 334.772Z" fill="#F5F6F7"/>
<path d="M0.977888 285.291C11.9523 300.762 27.5225 312.382 45.4767 318.5C49.3185 319.885 53.3546 320.657 57.4366 320.786C61.417 320.783 65.324 319.714 68.7517 317.69C71.9855 315.867 75.0823 313.629 78.7029 312.624C80.5638 312.137 82.5067 312.049 84.404 312.366C86.3013 312.682 88.1102 313.397 89.7122 314.461C93.7727 317.011 96.6751 320.867 99.3823 324.737C102.388 329.034 105.442 333.544 110.134 336.153C110.703 336.469 110.179 337.333 109.612 337.017C101.448 332.479 98.4253 322.852 91.4765 317C88.2341 314.27 84.1491 312.499 79.8641 313.382C76.117 314.153 72.9216 316.459 69.6632 318.333C66.3484 320.356 62.5886 321.537 58.7123 321.772C54.6369 321.851 50.5778 321.237 46.7086 319.954C37.9519 317.206 29.6817 313.098 22.201 307.781C13.6298 301.76 6.1517 294.317 0.0903148 285.774C-0.284625 285.245 0.605398 284.766 0.977888 285.291V285.291Z" fill="#CCD0D5"/>
<path d="M39.5796 316.87C38.1442 319.743 35.7343 322.012 32.7803 323.272C29.8263 324.533 26.5205 324.702 23.4533 323.75C22.8333 323.555 23.1069 322.582 23.7276 322.777C26.5822 323.669 29.6615 323.511 32.4099 322.332C35.1583 321.153 37.3947 319.03 38.7154 316.347C39.0031 315.764 39.8656 316.291 39.5796 316.87V316.87Z" fill="#CCD0D5"/>
<path d="M67.2337 318.83C65.2115 312.584 60.9095 307.33 55.1853 304.115C54.618 303.797 55.1414 302.933 55.7081 303.251C61.6585 306.608 66.1244 312.085 68.2145 318.589C68.4132 319.209 67.4315 319.447 67.2337 318.83Z" fill="#CCD0D5"/>
<path d="M14.7716 301.06C15.5586 300.064 16.086 298.888 16.3063 297.638C16.5266 296.388 16.433 295.103 16.0338 293.898C15.8273 293.281 16.8094 293.043 17.0146 293.657C17.4494 294.99 17.551 296.409 17.3107 297.791C17.0703 299.173 16.4953 300.475 15.6358 301.583C15.5635 301.694 15.4516 301.773 15.3228 301.805C15.194 301.837 15.0579 301.818 14.9423 301.753C14.8282 301.684 14.7463 301.572 14.7144 301.442C14.6824 301.312 14.703 301.175 14.7716 301.06V301.06Z" fill="#CCD0D5"/>
<path d="M54.8632 230.035C55.0031 230.417 55.143 230.798 55.2912 231.182C57.1991 236.305 59.52 241.265 62.231 246.012C62.4348 246.382 62.6469 246.754 62.8608 247.118C69.5142 258.485 78.2202 268.517 88.536 276.706C92.644 279.961 96.9935 282.898 101.547 285.493C107.836 289.076 114.94 292.461 119.542 297.756C120.029 298.303 120.481 298.88 120.896 299.483L112.554 335.901C112.494 335.975 112.441 336.05 112.381 336.124L112.114 337.593C111.87 337.476 111.619 337.349 111.375 337.231C111.233 337.164 111.093 337.088 110.951 337.021C110.857 336.973 110.763 336.925 110.675 336.888C110.644 336.872 110.613 336.856 110.59 336.842C110.502 336.804 110.425 336.76 110.346 336.724C108.942 336.018 107.541 335.301 106.142 334.573C106.134 334.571 106.134 334.571 106.128 334.561C95.4182 329.112 85.3928 322.413 76.2617 314.602C75.9923 314.366 75.7146 314.127 75.4491 313.874C71.4325 310.306 67.7143 306.415 64.3316 302.241C62.4866 299.95 60.7589 297.567 59.1549 295.1C55.0229 288.72 51.9201 281.73 49.9603 274.385C46.0557 259.744 46.8772 244.017 54.2873 231.022C54.4771 230.69 54.6651 230.365 54.8632 230.035Z" fill="#F5F6F7"/>
<path d="M55.3067 230.223C54.7546 249.183 60.1907 267.834 70.8428 283.529C73.0759 286.948 75.8341 289.994 79.0158 292.555C82.1958 294.949 85.9588 296.448 89.914 296.896C93.5934 297.387 97.414 297.464 100.91 298.842C102.689 299.574 104.293 300.673 105.617 302.068C106.941 303.463 107.956 305.123 108.594 306.937C110.301 311.418 110.296 316.244 110.128 320.964C109.941 326.204 109.664 331.645 111.84 336.552C112.103 337.147 111.165 337.521 110.902 336.928C107.116 328.389 110.499 318.883 108.474 310.027C107.529 305.894 105.333 302.022 101.38 300.146C97.9241 298.506 93.9844 298.423 90.2547 297.958C86.3899 297.577 82.677 296.257 79.4404 294.11C76.1387 291.72 73.2677 288.786 70.9505 285.432C65.6134 277.966 61.4835 269.706 58.7119 260.957C55.4934 250.989 54.0038 240.544 54.3075 230.073C54.3266 229.425 55.3256 229.579 55.3066 230.223L55.3067 230.223Z" fill="#CCD0D5"/>
<path d="M67.1154 278.677C64.2396 280.107 60.9492 280.468 57.8318 279.695C54.7145 278.923 51.9732 277.068 50.0975 274.461C49.7198 273.932 50.5237 273.32 50.902 273.85C52.6441 276.281 55.1979 278.009 58.1022 278.722C61.0065 279.435 64.0702 279.087 66.7402 277.739C67.3207 277.447 67.6926 278.387 67.1154 278.677V278.677Z" fill="#CCD0D5"/>
<path d="M88.0155 296.892C90.1614 290.687 89.8899 283.902 87.2551 277.889C86.9936 277.293 87.9316 276.919 88.1928 277.514C90.923 283.776 91.1912 290.838 88.9439 297.29C88.7293 297.905 87.8021 297.503 88.0155 296.892Z" fill="white"/>
<path d="M56.8265 251.118C58.0544 250.796 59.1834 250.175 60.1119 249.31C61.0404 248.444 61.7395 247.362 62.1462 246.159C62.353 245.542 63.28 245.944 63.0746 246.557C62.619 247.883 61.8456 249.078 60.8218 250.036C59.798 250.995 58.5551 251.688 57.2016 252.055C57.0769 252.101 56.9397 252.097 56.8178 252.045C56.6958 251.992 56.5983 251.896 56.5451 251.774C56.4961 251.65 56.4981 251.511 56.5508 251.388C56.6035 251.265 56.7025 251.168 56.8264 251.118H56.8265Z" fill="#CCD0D5"/>
<path d="M694.929 334.02C715.338 323.598 731.587 302.702 731.138 279.791C712.058 295.821 687.922 304.585 663.002 304.533C653.391 304.478 642.707 303.417 635.238 309.465C630.59 313.228 628.154 319.189 627.433 325.125C626.712 331.062 627.521 337.066 628.329 342.991L627.828 344.397C650.69 345.966 674.519 344.442 694.929 334.02Z" fill="#F5F6F7"/>
<path d="M730.661 279.735C721.671 296.438 707.647 309.883 690.581 318.162C686.939 320.009 683.028 321.271 678.993 321.9C675.042 322.386 671.034 321.806 667.383 320.219C663.95 318.808 660.601 316.966 656.885 316.414C654.978 316.16 653.039 316.311 651.195 316.859C649.351 317.406 647.644 318.338 646.185 319.591C642.468 322.62 640.062 326.804 637.851 330.978C635.396 335.611 632.92 340.463 628.584 343.628C628.058 344.012 628.684 344.805 629.209 344.422C636.753 338.914 638.569 328.99 644.746 322.328C647.628 319.219 651.465 316.96 655.826 317.309C659.639 317.614 663.094 319.51 666.558 320.969C670.096 322.569 673.972 323.279 677.848 323.036C681.902 322.614 685.855 321.505 689.537 319.757C697.89 315.953 705.592 310.859 712.363 304.663C720.129 297.634 726.636 289.328 731.601 280.105C731.908 279.534 730.966 279.168 730.661 279.735V279.735Z" fill="#CCD0D5"/>
<path d="M696.233 315.819C698.011 318.494 700.681 320.45 703.768 321.337C706.855 322.225 710.156 321.986 713.083 320.664C713.674 320.395 713.283 319.463 712.691 319.733C709.968 320.969 706.892 321.191 704.02 320.359C701.148 319.527 698.667 317.695 697.027 315.194C696.67 314.651 695.878 315.279 696.233 315.819Z" fill="#CCD0D5"/>
<path d="M669.03 321.164C670.269 314.717 673.893 308.973 679.178 305.079C679.702 304.694 679.076 303.901 678.553 304.286C673.06 308.349 669.302 314.333 668.027 321.045C667.906 321.685 668.909 321.8 669.03 321.164H669.03Z" fill="#CCD0D5"/>
<path d="M718.91 297.08C718.006 296.188 717.338 295.086 716.966 293.873C716.594 292.659 716.529 291.372 716.777 290.127C716.906 289.489 715.902 289.374 715.774 290.008C715.506 291.385 715.58 292.806 715.988 294.148C716.396 295.489 717.127 296.711 718.116 297.705C718.202 297.806 718.323 297.872 718.454 297.887C718.586 297.903 718.719 297.868 718.826 297.789C718.93 297.706 718.998 297.584 719.013 297.452C719.029 297.319 718.992 297.185 718.91 297.08H718.91Z" fill="white"/>
<path d="M670.392 231.521C670.3 231.917 670.208 232.313 670.108 232.713C668.845 238.031 667.151 243.238 665.044 248.282C664.887 248.675 664.722 249.071 664.555 249.458C659.349 261.556 651.942 272.583 642.711 281.978C639.034 285.713 635.079 289.162 630.879 292.297C625.078 296.626 618.444 300.858 614.527 306.68C614.112 307.282 613.734 307.91 613.397 308.56L626.151 343.676C626.22 343.742 626.282 343.81 626.351 343.876L626.796 345.301C627.024 345.155 627.257 344.998 627.485 344.851C627.618 344.767 627.747 344.675 627.88 344.59C627.967 344.531 628.055 344.472 628.137 344.424C628.166 344.405 628.195 344.385 628.216 344.368C628.299 344.32 628.37 344.267 628.444 344.222C629.75 343.348 631.053 342.464 632.351 341.569C632.359 341.566 632.359 341.567 632.364 341.556C642.323 334.832 651.449 326.951 659.551 318.078C659.789 317.81 660.035 317.539 660.267 317.255C663.815 313.22 667.027 308.902 669.871 304.344C671.42 301.843 672.842 299.266 674.13 296.621C677.447 289.781 679.667 282.462 680.709 274.933C682.784 259.922 680.036 244.415 671.085 232.43C670.856 232.124 670.629 231.825 670.392 231.521Z" fill="#F5F6F7"/>
<path d="M669.975 231.762C672.853 250.51 669.751 269.689 661.109 286.574C659.313 290.242 656.95 293.604 654.107 296.536C651.246 299.303 647.695 301.253 643.825 302.183C640.234 303.124 636.452 303.67 633.152 305.466C631.477 306.411 630.02 307.7 628.877 309.247C627.734 310.794 626.932 312.566 626.522 314.445C625.378 319.101 625.976 323.891 626.723 328.554C627.553 333.732 628.497 339.097 626.94 344.235C626.752 344.857 627.729 345.113 627.917 344.492C630.625 335.552 626.1 326.534 627.02 317.496C627.45 313.279 629.153 309.166 632.845 306.819C636.074 304.766 639.974 304.2 643.618 303.279C647.407 302.427 650.929 300.66 653.877 298.132C656.86 295.354 659.348 292.089 661.236 288.476C665.615 280.41 668.698 271.706 670.373 262.682C672.342 252.394 672.537 241.845 670.948 231.491C670.85 230.85 669.877 231.125 669.975 231.762V231.762Z" fill="#CCD0D5"/>
<path d="M664.212 281.301C667.241 282.366 670.551 282.32 673.55 281.17C676.549 280.021 679.041 277.842 680.582 275.025C680.892 274.454 680.019 273.945 679.709 274.517C678.279 277.144 675.957 279.172 673.162 280.237C670.367 281.302 667.284 281.333 664.469 280.324C663.857 280.106 663.603 281.084 664.212 281.301V281.301Z" fill="#CCD0D5"/>
<path d="M645.709 301.946C642.817 296.053 642.252 289.285 644.128 282.994C644.314 282.371 643.337 282.114 643.151 282.737C641.211 289.288 641.813 296.329 644.837 302.455C645.125 303.039 645.996 302.527 645.709 301.946V301.946Z" fill="#CCD0D5"/>
<path d="M671.035 252.686C669.777 252.518 668.58 252.04 667.552 251.295C666.524 250.55 665.698 249.562 665.146 248.419C664.865 247.831 663.994 248.344 664.274 248.927C664.889 250.188 665.803 251.278 666.937 252.104C668.071 252.929 669.39 253.464 670.778 253.662C670.907 253.692 671.043 253.671 671.158 253.604C671.272 253.537 671.357 253.43 671.395 253.302C671.428 253.173 671.409 253.035 671.342 252.92C671.274 252.804 671.164 252.72 671.035 252.685V252.686Z" fill="#CCD0D5"/>
<path d="M637.329 14.9999H493.539V24.2499C493.537 24.7235 493.7 25.1832 494 25.5499C493.71 32.7799 493.539 42.0099 493.539 52.0399V299.34C493.539 322.52 494.469 341.38 495.61 341.38H635.259C636.4 341.38 637.329 322.52 637.329 299.34V52.0399C637.329 42.0099 637.159 32.78 636.869 25.5499C637.169 25.1831 637.332 24.7235 637.329 24.2499L637.329 14.9999Z" fill="white"/>
<path d="M635.259 342.38H495.609C494.521 342.38 493.802 342.38 493.148 329.102C492.755 321.133 492.539 310.563 492.539 299.34V52.04C492.539 42.3462 492.703 32.9243 493 25.5098C493.186 21.0581 493.4 17.4922 493.634 14.9097C494.093 9.854 494.53 9 495.609 9H635.259C636.339 9 636.775 9.854 637.235 14.9097C637.47 17.5019 637.683 21.0679 637.868 25.5078L637.868 25.5098C638.166 32.9165 638.329 42.3384 638.329 52.04V299.34C638.329 310.564 638.113 321.134 637.721 329.102C637.067 342.38 636.348 342.38 635.259 342.38ZM496.178 340.38H634.691C635.415 337.647 636.329 322.81 636.329 299.34V52.04C636.329 42.3647 636.166 32.9722 635.87 25.5918H635.87C635.686 21.1836 635.475 17.6504 635.243 15.0903C635.154 13.7152 634.966 12.3483 634.682 11H496.187C495.903 12.3483 495.715 13.7152 495.625 15.0903C495.394 17.6406 495.183 21.1738 494.999 25.5918C494.702 32.9785 494.539 42.3721 494.539 52.04V299.34C494.539 322.809 495.454 337.647 496.178 340.38Z" fill="#DADDE1"/>
<path d="M635.259 9.99988H495.609C495.061 10.0009 494.535 10.2194 494.147 10.6073C493.759 10.9953 493.54 11.5212 493.539 12.0699V24.2499C493.537 24.7235 493.7 25.1832 494 25.5499C494.194 25.7897 494.439 25.9832 494.718 26.1164C494.996 26.2495 495.301 26.3191 495.609 26.3199H635.259C635.568 26.319 635.873 26.2495 636.151 26.1163C636.429 25.9831 636.675 25.7896 636.869 25.5499C637.169 25.1831 637.332 24.7235 637.329 24.2499V12.0699C637.328 11.5212 637.11 10.9953 636.722 10.6074C636.334 10.2194 635.808 10.0009 635.259 9.99988V9.99988Z" fill="#BEC3C9"/>
<path d="M505.559 20.505C507.183 20.505 508.499 19.1889 508.499 17.5654C508.499 15.9418 507.183 14.6257 505.559 14.6257C503.936 14.6257 502.619 15.9418 502.619 17.5654C502.619 19.1889 503.936 20.505 505.559 20.505Z" fill="white"/>
<path d="M516.717 20.505C518.34 20.505 519.656 19.1889 519.656 17.5654C519.656 15.9418 518.34 14.6257 516.717 14.6257C515.093 14.6257 513.777 15.9418 513.777 17.5654C513.777 19.1889 515.093 20.505 516.717 20.505Z" fill="white"/>
<path d="M527.875 20.505C529.499 20.505 530.815 19.1889 530.815 17.5654C530.815 15.9418 529.499 14.6257 527.875 14.6257C526.252 14.6257 524.936 15.9418 524.936 17.5654C524.936 19.1889 526.252 20.505 527.875 20.505Z" fill="white"/>
<path d="M624.329 13.6399H611.479C611.228 13.6416 610.987 13.7422 610.809 13.92C610.632 14.0979 610.531 14.3385 610.529 14.5899C610.525 14.7331 610.56 14.8747 610.629 14.9999C610.706 15.161 610.826 15.2972 610.976 15.3927C611.127 15.4883 611.301 15.5393 611.479 15.5399H624.329C624.509 15.5408 624.685 15.4905 624.838 15.3949C624.99 15.2993 625.112 15.1623 625.19 14.9999C625.251 14.8721 625.282 14.7317 625.279 14.5899C625.279 14.4651 625.255 14.3416 625.207 14.2263C625.159 14.111 625.089 14.0062 625.001 13.918C624.913 13.8297 624.808 13.7598 624.693 13.7121C624.577 13.6644 624.454 13.6398 624.329 13.6399V13.6399Z" fill="white"/>
<path d="M624.329 17.2099H611.479C611.227 17.2099 610.985 17.31 610.807 17.4882C610.629 17.6663 610.529 17.908 610.529 18.1599C610.529 18.4119 610.629 18.6535 610.807 18.8317C610.985 19.0098 611.227 19.1099 611.479 19.1099H624.329C624.581 19.1099 624.823 19.0098 625.001 18.8317C625.179 18.6535 625.279 18.4119 625.279 18.1599C625.279 17.908 625.179 17.6663 625.001 17.4882C624.823 17.31 624.581 17.2099 624.329 17.2099V17.2099Z" fill="white"/>
<path d="M624.329 20.7799H611.479C611.227 20.7799 610.985 20.88 610.807 21.0582C610.629 21.2364 610.529 21.478 610.529 21.7299C610.529 21.9819 610.629 22.2235 610.807 22.4017C610.985 22.5798 611.227 22.6799 611.479 22.6799H624.329C624.581 22.6799 624.823 22.5798 625.001 22.4017C625.179 22.2235 625.279 21.9819 625.279 21.7299C625.279 21.478 625.179 21.2364 625.001 21.0582C624.823 20.88 624.581 20.7799 624.329 20.7799V20.7799Z" fill="white"/>
<path d="M579.329 53.0199H552.889C551.563 53.0205 550.292 53.5474 549.354 54.485C548.417 55.4226 547.89 56.694 547.889 58.0199V80.92C547.891 82.2454 548.419 83.5158 549.356 84.453C550.293 85.3902 551.564 85.9177 552.889 85.92H579.329C580.654 85.9161 581.924 85.388 582.86 84.4512C583.797 83.5144 584.325 82.2448 584.329 80.92V58.0199C584.327 56.6945 583.8 55.424 582.862 54.4868C581.925 53.5496 580.655 53.0221 579.329 53.0199Z" fill="#1A7A67"/>
<path d="M612.179 100.88H520.029C519.427 100.88 518.85 101.119 518.424 101.545C517.999 101.97 517.759 102.548 517.759 103.15C517.759 103.752 517.999 104.329 518.424 104.755C518.85 105.181 519.427 105.42 520.029 105.42H612.179C612.781 105.42 613.359 105.181 613.784 104.755C614.21 104.329 614.449 103.752 614.449 103.15C614.449 102.548 614.21 101.97 613.784 101.545C613.359 101.119 612.781 100.88 612.179 100.88V100.88Z" fill="#DADDE1"/>
<path d="M555.029 111.52H520.029C519.427 111.52 518.85 111.759 518.424 112.185C517.999 112.611 517.759 113.188 517.759 113.79C517.759 114.392 517.999 114.969 518.424 115.395C518.85 115.821 519.427 116.06 520.029 116.06H555.029C555.631 116.06 556.209 115.821 556.635 115.395C557.06 114.969 557.299 114.392 557.299 113.79C557.299 113.188 557.06 112.611 556.635 112.185C556.209 111.759 555.631 111.52 555.029 111.52V111.52Z" fill="#DADDE1"/>
<path d="M579.329 152.02H552.889C551.563 152.02 550.292 152.547 549.354 153.485C548.417 154.423 547.89 155.694 547.889 157.02V179.92C547.891 181.245 548.419 182.516 549.356 183.453C550.293 184.39 551.564 184.918 552.889 184.92H579.329C580.654 184.916 581.924 184.388 582.86 183.451C583.797 182.514 584.325 181.245 584.329 179.92V157.02C584.327 155.695 583.8 154.424 582.862 153.487C581.925 152.55 580.655 152.022 579.329 152.02Z" fill="#1A7A67"/>
<path d="M612.179 199.88H520.029C519.427 199.88 518.85 200.119 518.424 200.545C517.999 200.97 517.759 201.548 517.759 202.15C517.759 202.752 517.999 203.329 518.424 203.755C518.85 204.181 519.427 204.42 520.029 204.42H612.179C612.781 204.42 613.359 204.181 613.784 203.755C614.21 203.329 614.449 202.752 614.449 202.15C614.449 201.548 614.21 200.97 613.784 200.545C613.359 200.119 612.781 199.88 612.179 199.88V199.88Z" fill="#DADDE1"/>
<path d="M555.029 210.52H520.029C519.427 210.52 518.85 210.759 518.424 211.185C517.999 211.611 517.759 212.188 517.759 212.79C517.759 213.392 517.999 213.969 518.424 214.395C518.85 214.821 519.427 215.06 520.029 215.06H555.029C555.631 215.06 556.209 214.821 556.635 214.395C557.06 213.969 557.299 213.392 557.299 212.79C557.299 212.188 557.06 211.611 556.635 211.185C556.209 210.759 555.631 210.52 555.029 210.52V210.52Z" fill="#DADDE1"/>
<path d="M579.329 251.02H552.889C551.563 251.02 550.292 251.547 549.354 252.485C548.417 253.423 547.89 254.694 547.889 256.02V278.92C547.891 280.245 548.419 281.516 549.356 282.453C550.293 283.39 551.564 283.918 552.889 283.92H579.329C580.654 283.916 581.924 283.388 582.86 282.451C583.797 281.514 584.325 280.245 584.329 278.92V256.02C584.327 254.695 583.8 253.424 582.862 252.487C581.925 251.55 580.655 251.022 579.329 251.02V251.02Z" fill="#1A7A67"/>
<path d="M612.179 298.88H520.029C519.427 298.88 518.85 299.119 518.424 299.545C517.999 299.97 517.759 300.548 517.759 301.15C517.759 301.752 517.999 302.329 518.424 302.755C518.85 303.181 519.427 303.42 520.029 303.42H612.179C612.781 303.42 613.359 303.181 613.784 302.755C614.21 302.329 614.449 301.752 614.449 301.15C614.449 300.548 614.21 299.97 613.784 299.545C613.359 299.119 612.781 298.88 612.179 298.88V298.88Z" fill="#DADDE1"/>
<path d="M555.029 309.52H520.029C519.427 309.52 518.85 309.759 518.424 310.185C517.999 310.611 517.759 311.188 517.759 311.79C517.759 312.392 517.999 312.969 518.424 313.395C518.85 313.821 519.427 314.06 520.029 314.06H555.029C555.631 314.06 556.209 313.821 556.635 313.395C557.06 312.969 557.299 312.392 557.299 311.79C557.299 311.188 557.06 310.611 556.635 310.185C556.209 309.759 555.631 309.52 555.029 309.52Z" fill="#DADDE1"/>
<path d="M454.329 3.06989C454.328 2.52123 454.11 1.99535 453.722 1.60738C453.334 1.2194 452.808 1.00096 452.259 0.999878H82.6095C82.0608 1.00094 81.5349 1.21935 81.1468 1.60732C80.7588 1.99528 80.5403 2.52118 80.5392 3.06989V15.2499C80.5374 15.757 80.7267 16.2461 81.0694 16.6199C80.7394 24.8899 80.5392 35.7899 80.5392 47.7299V322.64C80.5392 348.42 81.4693 369.38 82.6095 369.38H452.259C453.4 369.38 454.329 348.42 454.329 322.64V47.7299C454.329 35.7899 454.129 24.8899 453.799 16.6199C454.142 16.2461 454.331 15.7569 454.329 15.2499V3.06989Z" fill="white"/>
<path d="M452.259 370.38H82.6095C81.4795 370.38 80.7973 370.38 80.1477 355.722C79.7552 346.867 79.5392 335.118 79.5392 322.64V47.7299C79.5392 36.2226 79.7278 25.1601 80.0703 16.58C80.7276 -4.76837e-05 81.4763 -6.10352e-05 82.6095 -6.10352e-05H452.259C453.392 -6.10352e-05 454.141 0.002882 454.799 16.58C455.141 25.1523 455.329 36.2148 455.329 47.7299V322.64C455.329 335.119 455.113 346.867 454.721 355.722C454.071 370.38 453.389 370.38 452.259 370.38ZM83.1932 368.38H451.676C452.494 365.245 453.329 347.64 453.329 322.64V47.7299C453.329 36.2407 453.141 25.206 452.8 16.6601V16.6596C452.384 6.1562 451.897 2.9599 451.665 1.99994H83.2041C82.9715 2.95994 82.4852 6.1562 82.0686 16.6596C81.7271 25.2143 81.5392 36.2485 81.5392 47.7299V322.64C81.5392 347.64 82.3748 365.244 83.1932 368.38V368.38Z" fill="#DADDE1"/>
<path d="M452.259 0.999878H82.6095C82.0608 1.00094 81.5349 1.21935 81.1468 1.60732C80.7588 1.99528 80.5403 2.52118 80.5392 3.06989V15.2499C80.5374 15.757 80.7267 16.2461 81.0694 16.6199C81.2616 16.8394 81.4984 17.0153 81.7639 17.136C82.0295 17.2567 82.3177 17.3194 82.6094 17.3199H452.259C452.551 17.3194 452.839 17.2567 453.105 17.136C453.37 17.0153 453.607 16.8394 453.799 16.6199C454.142 16.2461 454.331 15.7569 454.329 15.2499V3.06989C454.328 2.52125 454.11 1.99538 453.722 1.60741C453.334 1.21944 452.808 1.00098 452.259 0.999878V0.999878Z" fill="#BEC3C9"/>
<path d="M92.559 11.505C94.1825 11.505 95.4987 10.1889 95.4987 8.56535C95.4987 6.94184 94.1825 5.62573 92.559 5.62573C90.9355 5.62573 89.6194 6.94184 89.6194 8.56535C89.6194 10.1889 90.9355 11.505 92.559 11.505Z" fill="white"/>
<path d="M103.717 11.505C105.34 11.505 106.656 10.1889 106.656 8.56535C106.656 6.94184 105.34 5.62573 103.717 5.62573C102.093 5.62573 100.777 6.94184 100.777 8.56535C100.777 10.1889 102.093 11.505 103.717 11.505Z" fill="white"/>
<path d="M114.875 11.505C116.499 11.505 117.815 10.1889 117.815 8.56535C117.815 6.94184 116.499 5.62573 114.875 5.62573C113.252 5.62573 111.936 6.94184 111.936 8.56535C111.936 10.1889 113.252 11.505 114.875 11.505Z" fill="white"/>
<path d="M441.329 4.63992H428.479C428.227 4.63992 427.986 4.74001 427.807 4.91817C427.629 5.09633 427.529 5.33796 427.529 5.58992C427.529 5.84188 427.629 6.08351 427.807 6.26167C427.986 6.43983 428.227 6.53993 428.479 6.53993H441.329C441.581 6.53993 441.823 6.43983 442.001 6.26167C442.179 6.08351 442.279 5.84188 442.279 5.58992C442.279 5.33796 442.179 5.09633 442.001 4.91817C441.823 4.74001 441.581 4.63992 441.329 4.63992Z" fill="white"/>
<path d="M441.329 8.20993H428.479C428.227 8.20993 427.986 8.31001 427.807 8.48817C427.629 8.66633 427.529 8.90797 427.529 9.15993C427.529 9.41188 427.629 9.65352 427.807 9.83168C427.986 10.0098 428.227 10.1099 428.479 10.1099H441.329C441.581 10.1099 441.823 10.0098 442.001 9.83168C442.179 9.65352 442.279 9.41188 442.279 9.15993C442.279 8.90797 442.179 8.66633 442.001 8.48817C441.823 8.31001 441.581 8.20993 441.329 8.20993V8.20993Z" fill="white"/>
<path d="M441.329 11.7799H428.479C428.227 11.7799 427.986 11.88 427.807 12.0582C427.629 12.2364 427.529 12.478 427.529 12.7299C427.529 12.9819 427.629 13.2235 427.807 13.4017C427.986 13.5798 428.227 13.6799 428.479 13.6799H441.329C441.581 13.6799 441.823 13.5798 442.001 13.4017C442.179 13.2235 442.279 12.9819 442.279 12.7299C442.279 12.478 442.179 12.2364 442.001 12.0582C441.823 11.88 441.581 11.7799 441.329 11.7799V11.7799Z" fill="white"/>
<path d="M202.089 62.0199H158.829C156.661 62.0226 154.582 62.8853 153.048 64.4188C151.515 65.9522 150.652 68.0313 150.65 70.2V107.67C150.652 109.839 151.515 111.918 153.048 113.451C154.582 114.985 156.661 115.847 158.829 115.85H202.089C204.258 115.847 206.337 114.985 207.871 113.451C209.404 111.918 210.267 109.839 210.269 107.67V70.2C210.267 68.0313 209.404 65.9522 207.871 64.4188C206.337 62.8853 204.258 62.0226 202.089 62.0199V62.0199Z" fill="#1A7A67"/>
<path d="M380.519 76.5099H229.739C228.754 76.5099 227.809 76.9014 227.112 77.5981C226.416 78.2948 226.024 79.2397 226.024 80.2249C226.024 81.2102 226.416 82.1551 227.112 82.8518C227.809 83.5485 228.754 83.9399 229.739 83.9399H380.519C381.504 83.9399 382.449 83.5485 383.146 82.8518C383.843 82.1551 384.234 81.2102 384.234 80.2249C384.234 79.2397 383.843 78.2948 383.146 77.5981C382.449 76.9014 381.504 76.5099 380.519 76.5099V76.5099Z" fill="#DADDE1"/>
<path d="M287.009 93.9199H229.739C228.754 93.9199 227.809 94.3113 227.112 95.008C226.416 95.7047 226.024 96.6496 226.024 97.6349C226.024 98.6201 226.416 99.5651 227.112 100.262C227.809 100.958 228.754 101.35 229.739 101.35H287.009C287.995 101.35 288.94 100.958 289.636 100.262C290.333 99.5651 290.724 98.6201 290.724 97.6349C290.724 96.6496 290.333 95.7047 289.636 95.008C288.94 94.3113 287.995 93.9199 287.009 93.9199V93.9199Z" fill="#DADDE1"/>
<path d="M202.089 162.02H158.829C156.661 162.023 154.582 162.885 153.048 164.419C151.515 165.952 150.652 168.031 150.65 170.2V207.67C150.652 209.839 151.515 211.918 153.048 213.451C154.582 214.985 156.661 215.847 158.829 215.85H202.089C204.258 215.847 206.337 214.985 207.871 213.451C209.404 211.918 210.267 209.839 210.269 207.67V170.2C210.267 168.031 209.404 165.952 207.871 164.419C206.337 162.885 204.258 162.023 202.089 162.02V162.02Z" fill="#1A7A67"/>
<path d="M380.519 176.51H229.739C228.754 176.51 227.809 176.901 227.112 177.598C226.416 178.295 226.024 179.24 226.024 180.225C226.024 181.21 226.416 182.155 227.112 182.852C227.809 183.549 228.754 183.94 229.739 183.94H380.519C381.504 183.94 382.449 183.549 383.146 182.852C383.843 182.155 384.234 181.21 384.234 180.225C384.234 179.24 383.843 178.295 383.146 177.598C382.449 176.901 381.504 176.51 380.519 176.51V176.51Z" fill="#DADDE1"/>
<path d="M287.009 193.92H229.739C228.754 193.92 227.809 194.311 227.112 195.008C226.416 195.705 226.024 196.65 226.024 197.635C226.024 198.62 226.416 199.565 227.112 200.262C227.809 200.958 228.754 201.35 229.739 201.35H287.009C287.995 201.35 288.94 200.958 289.636 200.262C290.333 199.565 290.724 198.62 290.724 197.635C290.724 196.65 290.333 195.705 289.636 195.008C288.94 194.311 287.995 193.92 287.009 193.92V193.92Z" fill="#DADDE1"/>
<path d="M202.089 262.02H158.829C156.661 262.023 154.582 262.885 153.048 264.419C151.515 265.952 150.652 268.031 150.65 270.2V307.67C150.652 309.839 151.515 311.918 153.048 313.451C154.582 314.985 156.661 315.847 158.829 315.85H202.089C204.258 315.847 206.337 314.985 207.871 313.451C209.404 311.918 210.267 309.839 210.269 307.67V270.2C210.267 268.031 209.404 265.952 207.871 264.419C206.337 262.885 204.258 262.023 202.089 262.02V262.02Z" fill="#1A7A67"/>
<path d="M380.519 276.51H229.739C228.754 276.51 227.809 276.901 227.112 277.598C226.416 278.295 226.024 279.24 226.024 280.225C226.024 281.21 226.416 282.155 227.112 282.852C227.809 283.549 228.754 283.94 229.739 283.94H380.519C381.504 283.94 382.449 283.549 383.146 282.852C383.843 282.155 384.234 281.21 384.234 280.225C384.234 279.24 383.843 278.295 383.146 277.598C382.449 276.901 381.504 276.51 380.519 276.51V276.51Z" fill="#DADDE1"/>
<path d="M287.009 293.92H229.739C228.754 293.92 227.809 294.311 227.112 295.008C226.416 295.705 226.024 296.65 226.024 297.635C226.024 298.62 226.416 299.565 227.112 300.262C227.809 300.958 228.754 301.35 229.739 301.35H287.009C287.995 301.35 288.94 300.958 289.636 300.262C290.333 299.565 290.724 298.62 290.724 297.635C290.724 296.65 290.333 295.705 289.636 295.008C288.94 294.311 287.995 293.92 287.009 293.92V293.92Z" fill="#DADDE1"/>
<path d="M518.262 435.38H270.613C269.472 435.38 268.543 417.83 268.543 396.257V166.123C268.543 144.549 269.472 126.999 270.613 126.999H518.262C519.404 126.999 520.333 144.549 520.333 166.123V396.257C520.333 417.83 519.404 435.38 518.262 435.38Z" fill="white"/>
<path d="M518.262 436.38H270.613C269.566 436.38 268.809 436.38 268.151 423.961C267.759 416.546 267.543 406.708 267.543 396.256V166.123C267.543 155.672 267.759 145.833 268.151 138.418C268.809 125.999 269.566 125.999 270.613 125.999H518.262C519.31 125.999 520.067 125.999 520.724 138.418C521.117 145.833 521.333 155.672 521.333 166.123V396.256C521.333 406.708 521.117 416.546 520.724 423.961C520.067 436.38 519.31 436.38 518.262 436.38ZM271.167 434.38H517.709C518.427 431.789 519.333 417.986 519.333 396.256V166.123C519.333 144.393 518.427 130.59 517.709 127.999H271.167C270.449 130.59 269.543 144.393 269.543 166.123V396.256C269.543 417.986 270.449 431.789 271.167 434.38Z" fill="#DADDE1"/>
<path d="M518.262 143.32H270.613C270.064 143.319 269.538 143.101 269.15 142.712C268.762 142.324 268.544 141.798 268.543 141.249V129.07C268.544 128.521 268.762 127.994 269.15 127.606C269.538 127.218 270.064 127 270.613 126.999H518.262C518.811 127 519.337 127.218 519.726 127.606C520.114 127.994 520.332 128.521 520.333 129.07V141.249C520.332 141.798 520.114 142.324 519.726 142.712C519.337 143.101 518.811 143.319 518.262 143.32V143.32Z" fill="#BEC3C9"/>
<path d="M280.559 137.505C282.183 137.505 283.499 136.189 283.499 134.565C283.499 132.942 282.183 131.626 280.559 131.626C278.936 131.626 277.619 132.942 277.619 134.565C277.619 136.189 278.936 137.505 280.559 137.505Z" fill="white"/>
<path d="M291.717 137.505C293.34 137.505 294.656 136.189 294.656 134.565C294.656 132.942 293.34 131.626 291.717 131.626C290.093 131.626 288.777 132.942 288.777 134.565C288.777 136.189 290.093 137.505 291.717 137.505Z" fill="white"/>
<path d="M302.875 137.505C304.499 137.505 305.815 136.189 305.815 134.565C305.815 132.942 304.499 131.626 302.875 131.626C301.252 131.626 299.936 132.942 299.936 134.565C299.936 136.189 301.252 137.505 302.875 137.505Z" fill="white"/>
<path d="M507.33 132.542H494.481C494.229 132.542 493.987 132.442 493.808 132.263C493.63 132.085 493.53 131.843 493.53 131.59C493.53 131.338 493.63 131.096 493.808 130.917C493.987 130.739 494.229 130.639 494.481 130.639H507.33C507.582 130.639 507.823 130.74 508.001 130.918C508.179 131.097 508.279 131.338 508.279 131.59C508.279 131.842 508.179 132.084 508.001 132.262C507.823 132.441 507.582 132.541 507.33 132.542Z" fill="white"/>
<path d="M507.33 136.111H494.481C494.229 136.111 493.987 136.011 493.808 135.832C493.63 135.654 493.53 135.412 493.53 135.159C493.53 134.907 493.63 134.665 493.808 134.486C493.987 134.308 494.229 134.208 494.481 134.208H507.33C507.582 134.208 507.824 134.308 508.003 134.486C508.181 134.665 508.282 134.907 508.282 135.159C508.282 135.412 508.181 135.654 508.003 135.832C507.824 136.011 507.582 136.111 507.33 136.111V136.111Z" fill="white"/>
<path d="M507.33 139.68H494.481C494.229 139.68 493.987 139.58 493.808 139.401C493.63 139.223 493.53 138.981 493.53 138.728C493.53 138.476 493.63 138.234 493.808 138.055C493.987 137.877 494.229 137.777 494.481 137.777H507.33C507.582 137.778 507.823 137.878 508.001 138.057C508.179 138.235 508.279 138.477 508.279 138.728C508.279 138.98 508.179 139.222 508.001 139.4C507.823 139.579 507.582 139.679 507.33 139.68V139.68Z" fill="white"/>
<path d="M346.713 218.917H315.12C313.536 218.915 312.017 218.285 310.897 217.165C309.777 216.045 309.147 214.526 309.145 212.942V185.579C309.147 183.995 309.777 182.476 310.897 181.356C312.017 180.236 313.536 179.606 315.12 179.604H346.713C348.297 179.606 349.816 180.236 350.936 181.356C352.056 182.476 352.686 183.995 352.688 185.579V212.942C352.686 214.526 352.056 216.045 350.936 217.165C349.816 218.285 348.297 218.915 346.713 218.917Z" fill="#1A7A67"/>
<path d="M477.018 195.616H366.907C366.188 195.616 365.498 195.33 364.989 194.821C364.481 194.313 364.195 193.623 364.195 192.903C364.195 192.184 364.481 191.494 364.989 190.985C365.498 190.477 366.188 190.191 366.907 190.191H477.018C477.737 190.191 478.427 190.477 478.936 190.985C479.444 191.494 479.73 192.184 479.73 192.903C479.73 193.623 479.444 194.313 478.936 194.821C478.427 195.33 477.737 195.616 477.018 195.616V195.616Z" fill="#DADDE1"/>
<path d="M408.729 208.33H366.907C366.188 208.33 365.498 208.044 364.989 207.535C364.481 207.027 364.195 206.337 364.195 205.617C364.195 204.898 364.481 204.208 364.989 203.699C365.498 203.191 366.188 202.905 366.907 202.905H408.729C409.086 202.904 409.439 202.974 409.769 203.11C410.098 203.246 410.398 203.446 410.65 203.698C410.903 203.949 411.103 204.249 411.24 204.578C411.376 204.908 411.447 205.261 411.447 205.617C411.447 205.974 411.376 206.327 411.24 206.657C411.103 206.986 410.903 207.285 410.65 207.537C410.398 207.789 410.098 207.989 409.769 208.125C409.439 208.261 409.086 208.33 408.729 208.33Z" fill="#DADDE1"/>
<path d="M346.713 299.917H315.12C313.536 299.915 312.017 299.285 310.897 298.165C309.777 297.045 309.147 295.526 309.145 293.942V266.579C309.147 264.995 309.777 263.476 310.897 262.356C312.017 261.236 313.536 260.606 315.12 260.604H346.713C348.297 260.606 349.816 261.236 350.936 262.356C352.056 263.476 352.686 264.995 352.688 266.579V293.942C352.686 295.526 352.056 297.045 350.936 298.165C349.816 299.285 348.297 299.915 346.713 299.917V299.917Z" fill="#1A7A67"/>
<path d="M477.018 276.616H366.907C366.188 276.616 365.498 276.33 364.989 275.821C364.481 275.313 364.195 274.623 364.195 273.903C364.195 273.184 364.481 272.494 364.989 271.985C365.498 271.477 366.188 271.191 366.907 271.191H477.018C477.737 271.191 478.427 271.477 478.936 271.985C479.444 272.494 479.73 273.184 479.73 273.903C479.73 274.623 479.444 275.313 478.936 275.821C478.427 276.33 477.737 276.616 477.018 276.616V276.616Z" fill="#DADDE1"/>
<path d="M408.729 289.33H366.907C366.188 289.33 365.498 289.044 364.989 288.535C364.481 288.027 364.195 287.337 364.195 286.617C364.195 285.898 364.481 285.208 364.989 284.699C365.498 284.191 366.188 283.905 366.907 283.905H408.729C409.086 283.904 409.439 283.974 409.769 284.11C410.098 284.246 410.398 284.446 410.65 284.698C410.903 284.949 411.103 285.249 411.24 285.578C411.376 285.908 411.447 286.261 411.447 286.617C411.447 286.974 411.376 287.327 411.24 287.657C411.103 287.986 410.903 288.285 410.65 288.537C410.398 288.789 410.098 288.989 409.769 289.125C409.439 289.261 409.086 289.33 408.729 289.33V289.33Z" fill="#DADDE1"/>
<path d="M346.713 380.917H315.12C313.536 380.915 312.017 380.285 310.897 379.165C309.777 378.045 309.147 376.526 309.145 374.942V347.579C309.147 345.995 309.777 344.476 310.897 343.356C312.017 342.236 313.536 341.606 315.12 341.604H346.713C348.297 341.606 349.816 342.236 350.936 343.356C352.056 344.476 352.686 345.995 352.688 347.579V374.942C352.686 376.526 352.056 378.045 350.936 379.165C349.816 380.285 348.297 380.915 346.713 380.917Z" fill="#1A7A67"/>
<path d="M477.018 357.616H366.907C366.188 357.616 365.498 357.33 364.989 356.821C364.481 356.313 364.195 355.623 364.195 354.903C364.195 354.184 364.481 353.494 364.989 352.985C365.498 352.477 366.188 352.191 366.907 352.191H477.018C477.737 352.191 478.427 352.477 478.936 352.985C479.444 353.494 479.73 354.184 479.73 354.903C479.73 355.623 479.444 356.313 478.936 356.821C478.427 357.33 477.737 357.616 477.018 357.616Z" fill="#DADDE1"/>
<path d="M408.729 370.33H366.907C366.188 370.33 365.498 370.044 364.989 369.535C364.481 369.027 364.195 368.337 364.195 367.617C364.195 366.898 364.481 366.208 364.989 365.699C365.498 365.191 366.188 364.905 366.907 364.905H408.729C409.086 364.904 409.439 364.974 409.769 365.11C410.098 365.246 410.398 365.446 410.65 365.698C410.903 365.949 411.103 366.249 411.24 366.578C411.376 366.908 411.447 367.261 411.447 367.617C411.447 367.974 411.376 368.327 411.24 368.657C411.103 368.986 410.903 369.285 410.65 369.537C410.398 369.789 410.098 369.989 409.769 370.125C409.439 370.261 409.086 370.33 408.729 370.33V370.33Z" fill="#DADDE1"/>
</g>
<defs>
<clipPath id="clip0_6_177">
<rect width="731.662" height="436.38" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 34 KiB

@ -1,170 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="1088" height="687.962" viewBox="0 0 1088 687.962">
<g id="Group_12" data-name="Group 12" transform="translate(-57 -56)">
<g id="Group_11" data-name="Group 11" transform="translate(57 56)">
<path id="Path_83" data-name="Path 83" d="M1017.81,560.461c-5.27,45.15-16.22,81.4-31.25,110.31-20,38.52-54.21,54.04-84.77,70.28a193.275,193.275,0,0,1-27.46,11.94c-55.61,19.3-117.85,14.18-166.74,3.99a657.282,657.282,0,0,0-104.09-13.16q-14.97-.675-29.97-.67c-15.42.02-293.07,5.29-360.67-131.57-16.69-33.76-28.13-75-32.24-125.27-11.63-142.12,52.29-235.46,134.74-296.47,155.97-115.41,369.76-110.57,523.43,7.88C941.15,276.621,1036.99,396.031,1017.81,560.461Z" transform="translate(-56 -106.019)" fill="#3f3d56"/>
<path id="Path_84" data-name="Path 84" d="M986.56,670.771c-20,38.52-47.21,64.04-77.77,80.28a193.272,193.272,0,0,1-27.46,11.94c-55.61,19.3-117.85,14.18-166.74,3.99a657.3,657.3,0,0,0-104.09-13.16q-14.97-.675-29.97-.67-23.13.03-46.25,1.72c-100.17,7.36-253.82-6.43-321.42-143.29L382,283.981,444.95,445.6l20.09,51.59,55.37-75.98L549,381.981l130.2,149.27,36.8-81.27L970.78,657.9l14.21,11.59Z" transform="translate(-56 -106.019)" fill="#f2f2f2"/>
<path id="Path_85" data-name="Path 85" d="M302,282.962l26-57,36,83-31-60Z" opacity="0.1"/>
<path id="Path_86" data-name="Path 86" d="M610.5,753.821q-14.97-.675-29.97-.67L465.04,497.191Z" transform="translate(-56 -106.019)" opacity="0.1"/>
<path id="Path_87" data-name="Path 87" d="M464.411,315.191,493,292.962l130,150-132-128Z" opacity="0.1"/>
<path id="Path_88" data-name="Path 88" d="M908.79,751.051a193.265,193.265,0,0,1-27.46,11.94L679.2,531.251Z" transform="translate(-56 -106.019)" opacity="0.1"/>
<circle id="Ellipse_11" data-name="Ellipse 11" cx="3" cy="3" r="3" transform="translate(479 98.962)" fill="#f2f2f2"/>
<circle id="Ellipse_12" data-name="Ellipse 12" cx="3" cy="3" r="3" transform="translate(396 201.962)" fill="#f2f2f2"/>
<circle id="Ellipse_13" data-name="Ellipse 13" cx="2" cy="2" r="2" transform="translate(600 220.962)" fill="#f2f2f2"/>
<circle id="Ellipse_14" data-name="Ellipse 14" cx="2" cy="2" r="2" transform="translate(180 265.962)" fill="#f2f2f2"/>
<circle id="Ellipse_15" data-name="Ellipse 15" cx="2" cy="2" r="2" transform="translate(612 96.962)" fill="#f2f2f2"/>
<circle id="Ellipse_16" data-name="Ellipse 16" cx="2" cy="2" r="2" transform="translate(736 192.962)" fill="#f2f2f2"/>
<circle id="Ellipse_17" data-name="Ellipse 17" cx="2" cy="2" r="2" transform="translate(858 344.962)" fill="#f2f2f2"/>
<path id="Path_89" data-name="Path 89" d="M306,121.222h-2.76v-2.76h-1.48v2.76H299V122.7h2.76v2.759h1.48V122.7H306Z" fill="#f2f2f2"/>
<path id="Path_90" data-name="Path 90" d="M848,424.222h-2.76v-2.76h-1.48v2.76H841V425.7h2.76v2.759h1.48V425.7H848Z" fill="#f2f2f2"/>
<path id="Path_91" data-name="Path 91" d="M1144,719.981c0,16.569-243.557,74-544,74s-544-57.431-544-74,243.557,14,544,14S1144,703.413,1144,719.981Z" transform="translate(-56 -106.019)" fill="#3f3d56"/>
<path id="Path_92" data-name="Path 92" d="M1144,719.981c0,16.569-243.557,74-544,74s-544-57.431-544-74,243.557,14,544,14S1144,703.413,1144,719.981Z" transform="translate(-56 -106.019)" opacity="0.1"/>
<ellipse id="Ellipse_18" data-name="Ellipse 18" cx="544" cy="30" rx="544" ry="30" transform="translate(0 583.962)" fill="#3f3d56"/>
<path id="Path_93" data-name="Path 93" d="M624,677.981c0,33.137-14.775,24-33,24s-33,9.137-33-24,33-96,33-96S624,644.844,624,677.981Z" transform="translate(-56 -106.019)" fill="#ff6584"/>
<path id="Path_94" data-name="Path 94" d="M606,690.66c0,15.062-6.716,10.909-15,10.909s-15,4.153-15-10.909,15-43.636,15-43.636S606,675.6,606,690.66Z" transform="translate(-56 -106.019)" opacity="0.1"/>
<rect id="Rectangle_97" data-name="Rectangle 97" width="92" height="18" rx="9" transform="translate(489 604.962)" fill="#2f2e41"/>
<rect id="Rectangle_98" data-name="Rectangle 98" width="92" height="18" rx="9" transform="translate(489 586.962)" fill="#2f2e41"/>
<path id="Path_95" data-name="Path 95" d="M193,596.547c0,55.343,34.719,100.126,77.626,100.126" transform="translate(-56 -106.019)" fill="#3f3d56"/>
<path id="Path_96" data-name="Path 96" d="M270.626,696.673c0-55.965,38.745-101.251,86.626-101.251" transform="translate(-56 -106.019)" fill="#6c63ff"/>
<path id="Path_97" data-name="Path 97" d="M221.125,601.564c0,52.57,22.14,95.109,49.5,95.109" transform="translate(-56 -106.019)" fill="#6c63ff"/>
<path id="Path_98" data-name="Path 98" d="M270.626,696.673c0-71.511,44.783-129.377,100.126-129.377" transform="translate(-56 -106.019)" fill="#3f3d56"/>
<path id="Path_99" data-name="Path 99" d="M254.3,697.379s11.009-.339,14.326-2.7,16.934-5.183,17.757-1.395,16.544,18.844,4.115,18.945-28.879-1.936-32.19-3.953S254.3,697.379,254.3,697.379Z" transform="translate(-56 -106.019)" fill="#a8a8a8"/>
<path id="Path_100" data-name="Path 100" d="M290.716,710.909c-12.429.1-28.879-1.936-32.19-3.953-2.522-1.536-3.527-7.048-3.863-9.591l-.368.014s.7,8.879,4.009,10.9,19.761,4.053,32.19,3.953c3.588-.029,4.827-1.305,4.759-3.2C294.755,710.174,293.386,710.887,290.716,710.909Z" transform="translate(-56 -106.019)" opacity="0.2"/>
<path id="Path_101" data-name="Path 101" d="M777.429,633.081c0,38.029,23.857,68.8,53.341,68.8" transform="translate(-56 -106.019)" fill="#3f3d56"/>
<path id="Path_102" data-name="Path 102" d="M830.769,701.882c0-38.456,26.623-69.575,59.525-69.575" transform="translate(-56 -106.019)" fill="#6c63ff"/>
<path id="Path_103" data-name="Path 103" d="M796.755,636.528c0,36.124,15.213,65.354,34.014,65.354" transform="translate(-56 -106.019)" fill="#6c63ff"/>
<path id="Path_104" data-name="Path 104" d="M830.769,701.882c0-49.139,30.773-88.9,68.8-88.9" transform="translate(-56 -106.019)" fill="#3f3d56"/>
<path id="Path_105" data-name="Path 105" d="M819.548,702.367s7.565-.233,9.844-1.856,11.636-3.562,12.2-.958,11.368,12.949,2.828,13.018-19.844-1.33-22.119-2.716S819.548,702.367,819.548,702.367Z" transform="translate(-56 -106.019)" fill="#a8a8a8"/>
<path id="Path_106" data-name="Path 106" d="M844.574,711.664c-8.54.069-19.844-1.33-22.119-2.716-1.733-1.056-2.423-4.843-2.654-6.59l-.253.01s.479,6.1,2.755,7.487,13.579,2.785,22.119,2.716c2.465-.02,3.317-.9,3.27-2.2C847.349,711.159,846.409,711.649,844.574,711.664Z" transform="translate(-56 -106.019)" opacity="0.2"/>
<path id="Path_107" data-name="Path 107" d="M949.813,724.718s11.36-1.729,14.5-4.591,16.89-7.488,18.217-3.667,19.494,17.447,6.633,19.107-30.153,1.609-33.835-.065S949.813,724.718,949.813,724.718Z" transform="translate(-56 -106.019)" fill="#a8a8a8"/>
<path id="Path_108" data-name="Path 108" d="M989.228,734.173c-12.86,1.659-30.153,1.609-33.835-.065-2.8-1.275-4.535-6.858-5.2-9.45l-.379.061s1.833,9.109,5.516,10.783,20.975,1.725,33.835.065c3.712-.479,4.836-1.956,4.529-3.906C993.319,732.907,991.991,733.817,989.228,734.173Z" transform="translate(-56 -106.019)" opacity="0.2"/>
<path id="Path_109" data-name="Path 109" d="M670.26,723.9s9.587-1.459,12.237-3.875,14.255-6.32,15.374-3.095,16.452,14.725,5.6,16.125-25.448,1.358-28.555-.055S670.26,723.9,670.26,723.9Z" transform="translate(-56 -106.019)" fill="#a8a8a8"/>
<path id="Path_110" data-name="Path 110" d="M703.524,731.875c-10.853,1.4-25.448,1.358-28.555-.055-2.367-1.076-3.827-5.788-4.39-7.976l-.32.051s1.547,7.687,4.655,9.1,17.7,1.456,28.555.055c3.133-.4,4.081-1.651,3.822-3.3C706.977,730.807,705.856,731.575,703.524,731.875Z" transform="translate(-56 -106.019)" opacity="0.2"/>
<path id="Path_111" data-name="Path 111" d="M178.389,719.109s7.463-1.136,9.527-3.016,11.1-4.92,11.969-2.409,12.808,11.463,4.358,12.553-19.811,1.057-22.23-.043S178.389,719.109,178.389,719.109Z" transform="translate(-56 -106.019)" fill="#a8a8a8"/>
<path id="Path_112" data-name="Path 112" d="M204.285,725.321c-8.449,1.09-19.811,1.057-22.23-.043-1.842-.838-2.979-4.506-3.417-6.209l-.249.04s1.2,5.984,3.624,7.085,13.781,1.133,22.23.043c2.439-.315,3.177-1.285,2.976-2.566C206.973,724.489,206.1,725.087,204.285,725.321Z" transform="translate(-56 -106.019)" opacity="0.2"/>
<path id="Path_113" data-name="Path 113" d="M439.7,707.337c0,30.22-42.124,20.873-93.7,20.873s-93.074,9.347-93.074-20.873,42.118-36.793,93.694-36.793S439.7,677.117,439.7,707.337Z" transform="translate(-56 -106.019)" opacity="0.1"/>
<path id="Path_114" data-name="Path 114" d="M439.7,699.9c0,30.22-42.124,20.873-93.7,20.873s-93.074,9.347-93.074-20.873S295.04,663.1,346.616,663.1,439.7,669.676,439.7,699.9Z" transform="translate(-56 -106.019)" fill="#3f3d56"/>
</g>
<g id="docusaurus_keytar" transform="translate(312.271 493.733)">
<path id="Path_40" data-name="Path 40" d="M99,52h91.791V89.153H99Z" transform="translate(5.904 -14.001)" fill="#fff" fill-rule="evenodd"/>
<path id="Path_41" data-name="Path 41" d="M24.855,163.927A21.828,21.828,0,0,1,5.947,153a21.829,21.829,0,0,0,18.908,32.782H46.71V163.927Z" transform="translate(-3 -4.634)" fill="#3ecc5f" fill-rule="evenodd"/>
<path id="Path_42" data-name="Path 42" d="M121.861,61.1l76.514-4.782V45.39A21.854,21.854,0,0,0,176.52,23.535H78.173L75.441,18.8a3.154,3.154,0,0,0-5.464,0l-2.732,4.732L64.513,18.8a3.154,3.154,0,0,0-5.464,0l-2.732,4.732L53.586,18.8a3.154,3.154,0,0,0-5.464,0L45.39,23.535c-.024,0-.046,0-.071,0l-4.526-4.525a3.153,3.153,0,0,0-5.276,1.414l-1.5,5.577-5.674-1.521a3.154,3.154,0,0,0-3.863,3.864L26,34.023l-5.575,1.494a3.155,3.155,0,0,0-1.416,5.278l4.526,4.526c0,.023,0,.046,0,.07L18.8,48.122a3.154,3.154,0,0,0,0,5.464l4.732,2.732L18.8,59.05a3.154,3.154,0,0,0,0,5.464l4.732,2.732L18.8,69.977a3.154,3.154,0,0,0,0,5.464l4.732,2.732L18.8,80.9a3.154,3.154,0,0,0,0,5.464L23.535,89.1,18.8,91.832a3.154,3.154,0,0,0,0,5.464l4.732,2.732L18.8,102.76a3.154,3.154,0,0,0,0,5.464l4.732,2.732L18.8,113.687a3.154,3.154,0,0,0,0,5.464l4.732,2.732L18.8,124.615a3.154,3.154,0,0,0,0,5.464l4.732,2.732L18.8,135.542a3.154,3.154,0,0,0,0,5.464l4.732,2.732L18.8,146.469a3.154,3.154,0,0,0,0,5.464l4.732,2.732L18.8,157.4a3.154,3.154,0,0,0,0,5.464l4.732,2.732L18.8,168.324a3.154,3.154,0,0,0,0,5.464l4.732,2.732A21.854,21.854,0,0,0,45.39,198.375H176.52a21.854,21.854,0,0,0,21.855-21.855V89.1l-76.514-4.782a11.632,11.632,0,0,1,0-23.219" transform="translate(-1.681 -17.226)" fill="#3ecc5f" fill-rule="evenodd"/>
<path id="Path_43" data-name="Path 43" d="M143,186.71h32.782V143H143Z" transform="translate(9.984 -5.561)" fill="#3ecc5f" fill-rule="evenodd"/>
<path id="Path_44" data-name="Path 44" d="M196.71,159.855a5.438,5.438,0,0,0-.7.07c-.042-.164-.081-.329-.127-.493a5.457,5.457,0,1,0-5.4-9.372q-.181-.185-.366-.367a5.454,5.454,0,1,0-9.384-5.4c-.162-.046-.325-.084-.486-.126a5.467,5.467,0,1,0-10.788,0c-.162.042-.325.08-.486.126a5.457,5.457,0,1,0-9.384,5.4,21.843,21.843,0,1,0,36.421,21.02,5.452,5.452,0,1,0,.7-10.858" transform="translate(10.912 -6.025)" fill="#44d860" fill-rule="evenodd"/>
<path id="Path_45" data-name="Path 45" d="M153,124.855h32.782V103H153Z" transform="translate(10.912 -9.271)" fill="#3ecc5f" fill-rule="evenodd"/>
<path id="Path_46" data-name="Path 46" d="M194.855,116.765a2.732,2.732,0,1,0,0-5.464,2.811,2.811,0,0,0-.349.035c-.022-.082-.04-.164-.063-.246a2.733,2.733,0,0,0-1.052-5.253,2.7,2.7,0,0,0-1.648.566q-.09-.093-.184-.184a2.7,2.7,0,0,0,.553-1.633,2.732,2.732,0,0,0-5.245-1.07,10.928,10.928,0,1,0,0,21.031,2.732,2.732,0,0,0,5.245-1.07,2.7,2.7,0,0,0-.553-1.633q.093-.09.184-.184a2.7,2.7,0,0,0,1.648.566,2.732,2.732,0,0,0,1.052-5.253c.023-.081.042-.164.063-.246a2.814,2.814,0,0,0,.349.035" transform="translate(12.767 -9.377)" fill="#44d860" fill-rule="evenodd"/>
<path id="Path_47" data-name="Path 47" d="M65.087,56.891a2.732,2.732,0,0,1-2.732-2.732,8.2,8.2,0,0,0-16.391,0,2.732,2.732,0,0,1-5.464,0,13.659,13.659,0,0,1,27.319,0,2.732,2.732,0,0,1-2.732,2.732" transform="translate(0.478 -15.068)" fill-rule="evenodd"/>
<path id="Path_48" data-name="Path 48" d="M103,191.347h65.565a21.854,21.854,0,0,0,21.855-21.855V93H124.855A21.854,21.854,0,0,0,103,114.855Z" transform="translate(6.275 -10.199)" fill="#ffff50" fill-rule="evenodd"/>
<path id="Path_49" data-name="Path 49" d="M173.216,129.787H118.535a1.093,1.093,0,1,1,0-2.185h54.681a1.093,1.093,0,0,1,0,2.185m0,21.855H118.535a1.093,1.093,0,1,1,0-2.186h54.681a1.093,1.093,0,0,1,0,2.186m0,21.855H118.535a1.093,1.093,0,1,1,0-2.185h54.681a1.093,1.093,0,0,1,0,2.185m0-54.434H118.535a1.093,1.093,0,1,1,0-2.185h54.681a1.093,1.093,0,0,1,0,2.185m0,21.652H118.535a1.093,1.093,0,1,1,0-2.186h54.681a1.093,1.093,0,0,1,0,2.186m0,21.855H118.535a1.093,1.093,0,1,1,0-2.186h54.681a1.093,1.093,0,0,1,0,2.186M189.585,61.611c-.013,0-.024-.007-.037-.005-3.377.115-4.974,3.492-6.384,6.472-1.471,3.114-2.608,5.139-4.473,5.078-2.064-.074-3.244-2.406-4.494-4.874-1.436-2.835-3.075-6.049-6.516-5.929-3.329.114-4.932,3.053-6.346,5.646-1.5,2.762-2.529,4.442-4.5,4.364-2.106-.076-3.225-1.972-4.52-4.167-1.444-2.443-3.112-5.191-6.487-5.1-3.272.113-4.879,2.606-6.3,4.808-1.5,2.328-2.552,3.746-4.551,3.662-2.156-.076-3.27-1.65-4.558-3.472-1.447-2.047-3.077-4.363-6.442-4.251-3.2.109-4.807,2.153-6.224,3.954-1.346,1.709-2.4,3.062-4.621,2.977a1.093,1.093,0,0,0-.079,2.186c3.3.11,4.967-1.967,6.417-3.81,1.286-1.635,2.4-3.045,4.582-3.12,2.1-.09,3.091,1.218,4.584,3.327,1.417,2,3.026,4.277,6.263,4.394,3.391.114,5.022-2.42,6.467-4.663,1.292-2,2.406-3.734,4.535-3.807,1.959-.073,3.026,1.475,4.529,4.022,1.417,2.4,3.023,5.121,6.324,5.241,3.415.118,5.064-2.863,6.5-5.5,1.245-2.282,2.419-4.437,4.5-4.509,1.959-.046,2.981,1.743,4.492,4.732,1.412,2.79,3.013,5.95,6.365,6.071l.185,0c3.348,0,4.937-3.36,6.343-6.331,1.245-2.634,2.423-5.114,4.444-5.216Z" transform="translate(7.109 -13.11)" fill-rule="evenodd"/>
<path id="Path_50" data-name="Path 50" d="M83,186.71h43.71V143H83Z" transform="translate(4.42 -5.561)" fill="#3ecc5f" fill-rule="evenodd"/>
<g id="Group_8" data-name="Group 8" transform="matrix(0.966, -0.259, 0.259, 0.966, 109.327, 91.085)">
<rect id="Rectangle_3" data-name="Rectangle 3" width="92.361" height="36.462" rx="2" transform="translate(0 0)" fill="#d8d8d8"/>
<g id="Group_2" data-name="Group 2" transform="translate(1.531 23.03)">
<rect id="Rectangle_4" data-name="Rectangle 4" width="5.336" height="5.336" rx="1" transform="translate(16.797 0)" fill="#4a4a4a"/>
<rect id="Rectangle_5" data-name="Rectangle 5" width="5.336" height="5.336" rx="1" transform="translate(23.12 0)" fill="#4a4a4a"/>
<rect id="Rectangle_6" data-name="Rectangle 6" width="5.336" height="5.336" rx="1" transform="translate(29.444 0)" fill="#4a4a4a"/>
<rect id="Rectangle_7" data-name="Rectangle 7" width="5.336" height="5.336" rx="1" transform="translate(35.768 0)" fill="#4a4a4a"/>
<rect id="Rectangle_8" data-name="Rectangle 8" width="5.336" height="5.336" rx="1" transform="translate(42.091 0)" fill="#4a4a4a"/>
<rect id="Rectangle_9" data-name="Rectangle 9" width="5.336" height="5.336" rx="1" transform="translate(48.415 0)" fill="#4a4a4a"/>
<rect id="Rectangle_10" data-name="Rectangle 10" width="5.336" height="5.336" rx="1" transform="translate(54.739 0)" fill="#4a4a4a"/>
<rect id="Rectangle_11" data-name="Rectangle 11" width="5.336" height="5.336" rx="1" transform="translate(61.063 0)" fill="#4a4a4a"/>
<rect id="Rectangle_12" data-name="Rectangle 12" width="5.336" height="5.336" rx="1" transform="translate(67.386 0)" fill="#4a4a4a"/>
<path id="Path_51" data-name="Path 51" d="M1.093,0H14.518a1.093,1.093,0,0,1,1.093,1.093V4.243a1.093,1.093,0,0,1-1.093,1.093H1.093A1.093,1.093,0,0,1,0,4.243V1.093A1.093,1.093,0,0,1,1.093,0ZM75,0H88.426a1.093,1.093,0,0,1,1.093,1.093V4.243a1.093,1.093,0,0,1-1.093,1.093H75a1.093,1.093,0,0,1-1.093-1.093V1.093A1.093,1.093,0,0,1,75,0Z" transform="translate(0 0)" fill="#4a4a4a" fill-rule="evenodd"/>
</g>
<g id="Group_3" data-name="Group 3" transform="translate(1.531 10.261)">
<path id="Path_52" data-name="Path 52" d="M1.093,0H6.218A1.093,1.093,0,0,1,7.31,1.093V4.242A1.093,1.093,0,0,1,6.218,5.335H1.093A1.093,1.093,0,0,1,0,4.242V1.093A1.093,1.093,0,0,1,1.093,0Z" transform="translate(0 0)" fill="#4a4a4a" fill-rule="evenodd"/>
<rect id="Rectangle_13" data-name="Rectangle 13" width="5.336" height="5.336" rx="1" transform="translate(8.299 0)" fill="#4a4a4a"/>
<rect id="Rectangle_14" data-name="Rectangle 14" width="5.336" height="5.336" rx="1" transform="translate(14.623 0)" fill="#4a4a4a"/>
<rect id="Rectangle_15" data-name="Rectangle 15" width="5.336" height="5.336" rx="1" transform="translate(20.947 0)" fill="#4a4a4a"/>
<rect id="Rectangle_16" data-name="Rectangle 16" width="5.336" height="5.336" rx="1" transform="translate(27.271 0)" fill="#4a4a4a"/>
<rect id="Rectangle_17" data-name="Rectangle 17" width="5.336" height="5.336" rx="1" transform="translate(33.594 0)" fill="#4a4a4a"/>
<rect id="Rectangle_18" data-name="Rectangle 18" width="5.336" height="5.336" rx="1" transform="translate(39.918 0)" fill="#4a4a4a"/>
<rect id="Rectangle_19" data-name="Rectangle 19" width="5.336" height="5.336" rx="1" transform="translate(46.242 0)" fill="#4a4a4a"/>
<rect id="Rectangle_20" data-name="Rectangle 20" width="5.336" height="5.336" rx="1" transform="translate(52.565 0)" fill="#4a4a4a"/>
<rect id="Rectangle_21" data-name="Rectangle 21" width="5.336" height="5.336" rx="1" transform="translate(58.888 0)" fill="#4a4a4a"/>
<rect id="Rectangle_22" data-name="Rectangle 22" width="5.336" height="5.336" rx="1" transform="translate(65.212 0)" fill="#4a4a4a"/>
<rect id="Rectangle_23" data-name="Rectangle 23" width="5.336" height="5.336" rx="1" transform="translate(71.536 0)" fill="#4a4a4a"/>
<rect id="Rectangle_24" data-name="Rectangle 24" width="5.336" height="5.336" rx="1" transform="translate(77.859 0)" fill="#4a4a4a"/>
<rect id="Rectangle_25" data-name="Rectangle 25" width="5.336" height="5.336" rx="1" transform="translate(84.183 0)" fill="#4a4a4a"/>
</g>
<g id="Group_4" data-name="Group 4" transform="translate(91.05 9.546) rotate(180)">
<path id="Path_53" data-name="Path 53" d="M1.093,0H6.219A1.093,1.093,0,0,1,7.312,1.093v3.15A1.093,1.093,0,0,1,6.219,5.336H1.093A1.093,1.093,0,0,1,0,4.243V1.093A1.093,1.093,0,0,1,1.093,0Z" transform="translate(0 0)" fill="#4a4a4a" fill-rule="evenodd"/>
<rect id="Rectangle_26" data-name="Rectangle 26" width="5.336" height="5.336" rx="1" transform="translate(8.299 0)" fill="#4a4a4a"/>
<rect id="Rectangle_27" data-name="Rectangle 27" width="5.336" height="5.336" rx="1" transform="translate(14.623 0)" fill="#4a4a4a"/>
<rect id="Rectangle_28" data-name="Rectangle 28" width="5.336" height="5.336" rx="1" transform="translate(20.947 0)" fill="#4a4a4a"/>
<rect id="Rectangle_29" data-name="Rectangle 29" width="5.336" height="5.336" rx="1" transform="translate(27.271 0)" fill="#4a4a4a"/>
<rect id="Rectangle_30" data-name="Rectangle 30" width="5.336" height="5.336" rx="1" transform="translate(33.594 0)" fill="#4a4a4a"/>
<rect id="Rectangle_31" data-name="Rectangle 31" width="5.336" height="5.336" rx="1" transform="translate(39.918 0)" fill="#4a4a4a"/>
<rect id="Rectangle_32" data-name="Rectangle 32" width="5.336" height="5.336" rx="1" transform="translate(46.242 0)" fill="#4a4a4a"/>
<rect id="Rectangle_33" data-name="Rectangle 33" width="5.336" height="5.336" rx="1" transform="translate(52.565 0)" fill="#4a4a4a"/>
<rect id="Rectangle_34" data-name="Rectangle 34" width="5.336" height="5.336" rx="1" transform="translate(58.889 0)" fill="#4a4a4a"/>
<rect id="Rectangle_35" data-name="Rectangle 35" width="5.336" height="5.336" rx="1" transform="translate(65.213 0)" fill="#4a4a4a"/>
<rect id="Rectangle_36" data-name="Rectangle 36" width="5.336" height="5.336" rx="1" transform="translate(71.537 0)" fill="#4a4a4a"/>
<rect id="Rectangle_37" data-name="Rectangle 37" width="5.336" height="5.336" rx="1" transform="translate(77.86 0)" fill="#4a4a4a"/>
<rect id="Rectangle_38" data-name="Rectangle 38" width="5.336" height="5.336" rx="1" transform="translate(84.183 0)" fill="#4a4a4a"/>
<rect id="Rectangle_39" data-name="Rectangle 39" width="5.336" height="5.336" rx="1" transform="translate(8.299 0)" fill="#4a4a4a"/>
<rect id="Rectangle_40" data-name="Rectangle 40" width="5.336" height="5.336" rx="1" transform="translate(14.623 0)" fill="#4a4a4a"/>
<rect id="Rectangle_41" data-name="Rectangle 41" width="5.336" height="5.336" rx="1" transform="translate(20.947 0)" fill="#4a4a4a"/>
<rect id="Rectangle_42" data-name="Rectangle 42" width="5.336" height="5.336" rx="1" transform="translate(27.271 0)" fill="#4a4a4a"/>
<rect id="Rectangle_43" data-name="Rectangle 43" width="5.336" height="5.336" rx="1" transform="translate(33.594 0)" fill="#4a4a4a"/>
<rect id="Rectangle_44" data-name="Rectangle 44" width="5.336" height="5.336" rx="1" transform="translate(39.918 0)" fill="#4a4a4a"/>
<rect id="Rectangle_45" data-name="Rectangle 45" width="5.336" height="5.336" rx="1" transform="translate(46.242 0)" fill="#4a4a4a"/>
<rect id="Rectangle_46" data-name="Rectangle 46" width="5.336" height="5.336" rx="1" transform="translate(52.565 0)" fill="#4a4a4a"/>
<rect id="Rectangle_47" data-name="Rectangle 47" width="5.336" height="5.336" rx="1" transform="translate(58.889 0)" fill="#4a4a4a"/>
<rect id="Rectangle_48" data-name="Rectangle 48" width="5.336" height="5.336" rx="1" transform="translate(65.213 0)" fill="#4a4a4a"/>
<rect id="Rectangle_49" data-name="Rectangle 49" width="5.336" height="5.336" rx="1" transform="translate(71.537 0)" fill="#4a4a4a"/>
<rect id="Rectangle_50" data-name="Rectangle 50" width="5.336" height="5.336" rx="1" transform="translate(77.86 0)" fill="#4a4a4a"/>
<rect id="Rectangle_51" data-name="Rectangle 51" width="5.336" height="5.336" rx="1" transform="translate(84.183 0)" fill="#4a4a4a"/>
</g>
<g id="Group_6" data-name="Group 6" transform="translate(1.531 16.584)">
<path id="Path_54" data-name="Path 54" d="M1.093,0h7.3A1.093,1.093,0,0,1,9.485,1.093v3.15A1.093,1.093,0,0,1,8.392,5.336h-7.3A1.093,1.093,0,0,1,0,4.243V1.094A1.093,1.093,0,0,1,1.093,0Z" transform="translate(0 0)" fill="#4a4a4a" fill-rule="evenodd"/>
<g id="Group_5" data-name="Group 5" transform="translate(10.671 0)">
<rect id="Rectangle_52" data-name="Rectangle 52" width="5.336" height="5.336" rx="1" fill="#4a4a4a"/>
<rect id="Rectangle_53" data-name="Rectangle 53" width="5.336" height="5.336" rx="1" transform="translate(6.324 0)" fill="#4a4a4a"/>
<rect id="Rectangle_54" data-name="Rectangle 54" width="5.336" height="5.336" rx="1" transform="translate(12.647 0)" fill="#4a4a4a"/>
<rect id="Rectangle_55" data-name="Rectangle 55" width="5.336" height="5.336" rx="1" transform="translate(18.971 0)" fill="#4a4a4a"/>
<rect id="Rectangle_56" data-name="Rectangle 56" width="5.336" height="5.336" rx="1" transform="translate(25.295 0)" fill="#4a4a4a"/>
<rect id="Rectangle_57" data-name="Rectangle 57" width="5.336" height="5.336" rx="1" transform="translate(31.619 0)" fill="#4a4a4a"/>
<rect id="Rectangle_58" data-name="Rectangle 58" width="5.336" height="5.336" rx="1" transform="translate(37.942 0)" fill="#4a4a4a"/>
<rect id="Rectangle_59" data-name="Rectangle 59" width="5.336" height="5.336" rx="1" transform="translate(44.265 0)" fill="#4a4a4a"/>
<rect id="Rectangle_60" data-name="Rectangle 60" width="5.336" height="5.336" rx="1" transform="translate(50.589 0)" fill="#4a4a4a"/>
<rect id="Rectangle_61" data-name="Rectangle 61" width="5.336" height="5.336" rx="1" transform="translate(56.912 0)" fill="#4a4a4a"/>
<rect id="Rectangle_62" data-name="Rectangle 62" width="5.336" height="5.336" rx="1" transform="translate(63.236 0)" fill="#4a4a4a"/>
</g>
<path id="Path_55" data-name="Path 55" d="M1.094,0H8A1.093,1.093,0,0,1,9.091,1.093v3.15A1.093,1.093,0,0,1,8,5.336H1.093A1.093,1.093,0,0,1,0,4.243V1.094A1.093,1.093,0,0,1,1.093,0Z" transform="translate(80.428 0)" fill="#4a4a4a" fill-rule="evenodd"/>
</g>
<g id="Group_7" data-name="Group 7" transform="translate(1.531 29.627)">
<rect id="Rectangle_63" data-name="Rectangle 63" width="5.336" height="5.336" rx="1" transform="translate(0 0)" fill="#4a4a4a"/>
<rect id="Rectangle_64" data-name="Rectangle 64" width="5.336" height="5.336" rx="1" transform="translate(6.324 0)" fill="#4a4a4a"/>
<rect id="Rectangle_65" data-name="Rectangle 65" width="5.336" height="5.336" rx="1" transform="translate(12.647 0)" fill="#4a4a4a"/>
<rect id="Rectangle_66" data-name="Rectangle 66" width="5.336" height="5.336" rx="1" transform="translate(18.971 0)" fill="#4a4a4a"/>
<path id="Path_56" data-name="Path 56" d="M1.093,0H31.515a1.093,1.093,0,0,1,1.093,1.093V4.244a1.093,1.093,0,0,1-1.093,1.093H1.093A1.093,1.093,0,0,1,0,4.244V1.093A1.093,1.093,0,0,1,1.093,0ZM34.687,0h3.942a1.093,1.093,0,0,1,1.093,1.093V4.244a1.093,1.093,0,0,1-1.093,1.093H34.687a1.093,1.093,0,0,1-1.093-1.093V1.093A1.093,1.093,0,0,1,34.687,0Z" transform="translate(25.294 0)" fill="#4a4a4a" fill-rule="evenodd"/>
<rect id="Rectangle_67" data-name="Rectangle 67" width="5.336" height="5.336" rx="1" transform="translate(66.003 0)" fill="#4a4a4a"/>
<rect id="Rectangle_68" data-name="Rectangle 68" width="5.336" height="5.336" rx="1" transform="translate(72.327 0)" fill="#4a4a4a"/>
<rect id="Rectangle_69" data-name="Rectangle 69" width="5.336" height="5.336" rx="1" transform="translate(84.183 0)" fill="#4a4a4a"/>
<path id="Path_57" data-name="Path 57" d="M5.336,0V1.18A1.093,1.093,0,0,1,4.243,2.273H1.093A1.093,1.093,0,0,1,0,1.18V0Z" transform="translate(83.59 2.273) rotate(180)" fill="#4a4a4a"/>
<path id="Path_58" data-name="Path 58" d="M5.336,0V1.18A1.093,1.093,0,0,1,4.243,2.273H1.093A1.093,1.093,0,0,1,0,1.18V0Z" transform="translate(78.255 3.063)" fill="#4a4a4a"/>
</g>
<rect id="Rectangle_70" data-name="Rectangle 70" width="88.927" height="2.371" rx="1.085" transform="translate(1.925 1.17)" fill="#4a4a4a"/>
<rect id="Rectangle_71" data-name="Rectangle 71" width="4.986" height="1.581" rx="0.723" transform="translate(4.1 1.566)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_72" data-name="Rectangle 72" width="4.986" height="1.581" rx="0.723" transform="translate(10.923 1.566)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_73" data-name="Rectangle 73" width="4.986" height="1.581" rx="0.723" transform="translate(16.173 1.566)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_74" data-name="Rectangle 74" width="4.986" height="1.581" rx="0.723" transform="translate(21.421 1.566)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_75" data-name="Rectangle 75" width="4.986" height="1.581" rx="0.723" transform="translate(26.671 1.566)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_76" data-name="Rectangle 76" width="4.986" height="1.581" rx="0.723" transform="translate(33.232 1.566)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_77" data-name="Rectangle 77" width="4.986" height="1.581" rx="0.723" transform="translate(38.48 1.566)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_78" data-name="Rectangle 78" width="4.986" height="1.581" rx="0.723" transform="translate(43.73 1.566)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_79" data-name="Rectangle 79" width="4.986" height="1.581" rx="0.723" transform="translate(48.978 1.566)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_80" data-name="Rectangle 80" width="4.986" height="1.581" rx="0.723" transform="translate(55.54 1.566)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_81" data-name="Rectangle 81" width="4.986" height="1.581" rx="0.723" transform="translate(60.788 1.566)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_82" data-name="Rectangle 82" width="4.986" height="1.581" rx="0.723" transform="translate(66.038 1.566)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_83" data-name="Rectangle 83" width="4.986" height="1.581" rx="0.723" transform="translate(72.599 1.566)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_84" data-name="Rectangle 84" width="4.986" height="1.581" rx="0.723" transform="translate(77.847 1.566)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_85" data-name="Rectangle 85" width="4.986" height="1.581" rx="0.723" transform="translate(83.097 1.566)" fill="#d8d8d8" opacity="0.136"/>
</g>
<path id="Path_59" data-name="Path 59" d="M146.71,159.855a5.439,5.439,0,0,0-.7.07c-.042-.164-.081-.329-.127-.493a5.457,5.457,0,1,0-5.4-9.372q-.181-.185-.366-.367a5.454,5.454,0,1,0-9.384-5.4c-.162-.046-.325-.084-.486-.126a5.467,5.467,0,1,0-10.788,0c-.162.042-.325.08-.486.126a5.457,5.457,0,1,0-9.384,5.4,21.843,21.843,0,1,0,36.421,21.02,5.452,5.452,0,1,0,.7-10.858" transform="translate(6.275 -6.025)" fill="#44d860" fill-rule="evenodd"/>
<path id="Path_60" data-name="Path 60" d="M83,124.855h43.71V103H83Z" transform="translate(4.42 -9.271)" fill="#3ecc5f" fill-rule="evenodd"/>
<path id="Path_61" data-name="Path 61" d="M134.855,116.765a2.732,2.732,0,1,0,0-5.464,2.811,2.811,0,0,0-.349.035c-.022-.082-.04-.164-.063-.246a2.733,2.733,0,0,0-1.052-5.253,2.7,2.7,0,0,0-1.648.566q-.09-.093-.184-.184a2.7,2.7,0,0,0,.553-1.633,2.732,2.732,0,0,0-5.245-1.07,10.928,10.928,0,1,0,0,21.031,2.732,2.732,0,0,0,5.245-1.07,2.7,2.7,0,0,0-.553-1.633q.093-.09.184-.184a2.7,2.7,0,0,0,1.648.566,2.732,2.732,0,0,0,1.052-5.253c.023-.081.042-.164.063-.246a2.811,2.811,0,0,0,.349.035" transform="translate(7.202 -9.377)" fill="#44d860" fill-rule="evenodd"/>
<path id="Path_62" data-name="Path 62" d="M143.232,42.33a2.967,2.967,0,0,1-.535-.055,2.754,2.754,0,0,1-.514-.153,2.838,2.838,0,0,1-.471-.251,4.139,4.139,0,0,1-.415-.339,3.2,3.2,0,0,1-.338-.415A2.7,2.7,0,0,1,140.5,39.6a2.968,2.968,0,0,1,.055-.535,3.152,3.152,0,0,1,.152-.514,2.874,2.874,0,0,1,.252-.47,2.633,2.633,0,0,1,.753-.754,2.837,2.837,0,0,1,.471-.251,2.753,2.753,0,0,1,.514-.153,2.527,2.527,0,0,1,1.071,0,2.654,2.654,0,0,1,.983.4,4.139,4.139,0,0,1,.415.339,4.019,4.019,0,0,1,.339.415,2.786,2.786,0,0,1,.251.47,2.864,2.864,0,0,1,.208,1.049,2.77,2.77,0,0,1-.8,1.934,4.139,4.139,0,0,1-.415.339,2.722,2.722,0,0,1-1.519.459m21.855-1.366a2.789,2.789,0,0,1-1.935-.8,4.162,4.162,0,0,1-.338-.415,2.7,2.7,0,0,1-.459-1.519,2.789,2.789,0,0,1,.8-1.934,4.139,4.139,0,0,1,.415-.339,2.838,2.838,0,0,1,.471-.251,2.752,2.752,0,0,1,.514-.153,2.527,2.527,0,0,1,1.071,0,2.654,2.654,0,0,1,.983.4,4.139,4.139,0,0,1,.415.339,2.79,2.79,0,0,1,.8,1.934,3.069,3.069,0,0,1-.055.535,2.779,2.779,0,0,1-.153.514,3.885,3.885,0,0,1-.251.47,4.02,4.02,0,0,1-.339.415,4.138,4.138,0,0,1-.415.339,2.722,2.722,0,0,1-1.519.459" transform="translate(9.753 -15.532)" fill-rule="evenodd"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 31 KiB

@ -1,169 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="1041.277" height="554.141" viewBox="0 0 1041.277 554.141">
<g id="Group_24" data-name="Group 24" transform="translate(-440 -263)">
<g id="Group_23" data-name="Group 23" transform="translate(439.989 262.965)">
<path id="Path_299" data-name="Path 299" d="M1040.82,611.12q-1.74,3.75-3.47,7.4-2.7,5.67-5.33,11.12c-.78,1.61-1.56,3.19-2.32,4.77-8.6,17.57-16.63,33.11-23.45,45.89A73.21,73.21,0,0,1,942.44,719l-151.65,1.65h-1.6l-13,.14-11.12.12-34.1.37h-1.38l-17.36.19h-.53l-107,1.16-95.51,1-11.11.12-69,.75H429l-44.75.48h-.48l-141.5,1.53-42.33.46a87.991,87.991,0,0,1-10.79-.54h0c-1.22-.14-2.44-.3-3.65-.49a87.38,87.38,0,0,1-51.29-27.54C116,678.37,102.75,655,93.85,629.64q-1.93-5.49-3.6-11.12C59.44,514.37,97,380,164.6,290.08q4.25-5.64,8.64-11l.07-.08c20.79-25.52,44.1-46.84,68.93-62,44-26.91,92.75-34.49,140.7-11.9,40.57,19.12,78.45,28.11,115.17,30.55,3.71.24,7.42.42,11.11.53,84.23,2.65,163.17-27.7,255.87-47.29,3.69-.78,7.39-1.55,11.12-2.28,66.13-13.16,139.49-20.1,226.73-5.51a189.089,189.089,0,0,1,26.76,6.4q5.77,1.86,11.12,4c41.64,16.94,64.35,48.24,74,87.46q1.37,5.46,2.37,11.11C1134.3,384.41,1084.19,518.23,1040.82,611.12Z" transform="translate(-79.34 -172.91)" fill="#f2f2f2"/>
<path id="Path_300" data-name="Path 300" d="M576.36,618.52a95.21,95.21,0,0,1-1.87,11.12h93.7V618.52Zm-78.25,62.81,11.11-.09V653.77c-3.81-.17-7.52-.34-11.11-.52ZM265.19,618.52v11.12h198.5V618.52ZM1114.87,279h-74V191.51q-5.35-2.17-11.12-4V279H776.21V186.58c-3.73.73-7.43,1.5-11.12,2.28V279H509.22V236.15c-3.69-.11-7.4-.29-11.11-.53V279H242.24V217c-24.83,15.16-48.14,36.48-68.93,62h-.07v.08q-4.4,5.4-8.64,11h8.64V618.52h-83q1.66,5.63,3.6,11.12h79.39v93.62a87,87,0,0,0,12.2,2.79c1.21.19,2.43.35,3.65.49h0a87.991,87.991,0,0,0,10.79.54l42.33-.46v-97H498.11v94.21l11.11-.12V629.64H765.09V721l11.12-.12V629.64H1029.7v4.77c.76-1.58,1.54-3.16,2.32-4.77q2.63-5.45,5.33-11.12,1.73-3.64,3.47-7.4v-321h76.42Q1116.23,284.43,1114.87,279ZM242.24,618.52V290.08H498.11V618.52Zm267,0V290.08H765.09V618.52Zm520.48,0H776.21V290.08H1029.7Z" transform="translate(-79.34 -172.91)" opacity="0.1"/>
<path id="Path_301" data-name="Path 301" d="M863.09,533.65v13l-151.92,1.4-1.62.03-57.74.53-1.38.02-17.55.15h-.52l-106.98.99L349.77,551.4h-.15l-44.65.42-.48.01-198.4,1.82v-15l46.65-28,93.6-.78,2-.01.66-.01,2-.03,44.94-.37,2.01-.01.64-.01,2-.01L315,509.3l.38-.01,35.55-.3h.29l277.4-2.34,6.79-.05h.68l5.18-.05,37.65-.31,2-.03,1.85-.02h.96l11.71-.09,2.32-.03,3.11-.02,9.75-.09,15.47-.13,2-.02,3.48-.02h.65l74.71-.64Z" fill="#65617d"/>
<path id="Path_302" data-name="Path 302" d="M863.09,533.65v13l-151.92,1.4-1.62.03-57.74.53-1.38.02-17.55.15h-.52l-106.98.99L349.77,551.4h-.15l-44.65.42-.48.01-198.4,1.82v-15l46.65-28,93.6-.78,2-.01.66-.01,2-.03,44.94-.37,2.01-.01.64-.01,2-.01L315,509.3l.38-.01,35.55-.3h.29l277.4-2.34,6.79-.05h.68l5.18-.05,37.65-.31,2-.03,1.85-.02h.96l11.71-.09,2.32-.03,3.11-.02,9.75-.09,15.47-.13,2-.02,3.48-.02h.65l74.71-.64Z" opacity="0.2"/>
<path id="Path_303" data-name="Path 303" d="M375.44,656.57v24.49a6.13,6.13,0,0,1-3.5,5.54,6,6,0,0,1-2.5.6l-34.9.74a6,6,0,0,1-2.7-.57,6.12,6.12,0,0,1-3.57-5.57V656.57Z" transform="translate(-79.34 -172.91)" fill="#3f3d56"/>
<path id="Path_304" data-name="Path 304" d="M375.44,656.57v24.49a6.13,6.13,0,0,1-3.5,5.54,6,6,0,0,1-2.5.6l-34.9.74a6,6,0,0,1-2.7-.57,6.12,6.12,0,0,1-3.57-5.57V656.57Z" transform="translate(-79.34 -172.91)" opacity="0.1"/>
<path id="Path_305" data-name="Path 305" d="M377.44,656.57v24.49a6.13,6.13,0,0,1-3.5,5.54,6,6,0,0,1-2.5.6l-34.9.74a6,6,0,0,1-2.7-.57,6.12,6.12,0,0,1-3.57-5.57V656.57Z" transform="translate(-79.34 -172.91)" fill="#3f3d56"/>
<rect id="Rectangle_137" data-name="Rectangle 137" width="47.17" height="31.5" transform="translate(680.92 483.65)" fill="#3f3d56"/>
<rect id="Rectangle_138" data-name="Rectangle 138" width="47.17" height="31.5" transform="translate(680.92 483.65)" opacity="0.1"/>
<rect id="Rectangle_139" data-name="Rectangle 139" width="47.17" height="31.5" transform="translate(678.92 483.65)" fill="#3f3d56"/>
<path id="Path_306" data-name="Path 306" d="M298.09,483.65v4.97l-47.17,1.26v-6.23Z" opacity="0.1"/>
<path id="Path_307" data-name="Path 307" d="M460.69,485.27v168.2a4,4,0,0,1-3.85,3.95l-191.65,5.1h-.05a4,4,0,0,1-3.95-3.95V485.27a4,4,0,0,1,3.95-3.95h191.6a4,4,0,0,1,3.95,3.95Z" transform="translate(-79.34 -172.91)" fill="#65617d"/>
<path id="Path_308" data-name="Path 308" d="M265.19,481.32v181.2h-.05a4,4,0,0,1-3.95-3.95V485.27a4,4,0,0,1,3.95-3.95Z" transform="translate(-79.34 -172.91)" opacity="0.1"/>
<path id="Path_309" data-name="Path 309" d="M194.59,319.15h177.5V467.4l-177.5,4Z" fill="#39374d"/>
<path id="Path_310" data-name="Path 310" d="M726.09,483.65v6.41l-47.17-1.26v-5.15Z" opacity="0.1"/>
<path id="Path_311" data-name="Path 311" d="M867.69,485.27v173.3a4,4,0,0,1-4,3.95h0L672,657.42a4,4,0,0,1-3.85-3.95V485.27a4,4,0,0,1,3.95-3.95H863.7a4,4,0,0,1,3.99,3.95Z" transform="translate(-79.34 -172.91)" fill="#65617d"/>
<path id="Path_312" data-name="Path 312" d="M867.69,485.27v173.3a4,4,0,0,1-4,3.95h0V481.32h0a4,4,0,0,1,4,3.95Z" transform="translate(-79.34 -172.91)" opacity="0.1"/>
<path id="Path_313" data-name="Path 313" d="M775.59,319.15H598.09V467.4l177.5,4Z" fill="#39374d"/>
<path id="Path_314" data-name="Path 314" d="M663.19,485.27v168.2a4,4,0,0,1-3.85,3.95l-191.65,5.1h0a4,4,0,0,1-4-3.95V485.27a4,4,0,0,1,3.95-3.95h191.6A4,4,0,0,1,663.19,485.27Z" transform="translate(-79.34 -172.91)" fill="#65617d"/>
<path id="Path_315" data-name="Path 315" d="M397.09,319.15h177.5V467.4l-177.5,4Z" fill="#4267b2"/>
<path id="Path_316" data-name="Path 316" d="M863.09,533.65v13l-151.92,1.4-1.62.03-57.74.53-1.38.02-17.55.15h-.52l-106.98.99L349.77,551.4h-.15l-44.65.42-.48.01-198.4,1.82v-15l202.51-1.33h.48l40.99-.28h.19l283.08-1.87h.29l.17-.01h.47l4.79-.03h1.46l74.49-.5,4.4-.02.98-.01Z" opacity="0.1"/>
<circle id="Ellipse_111" data-name="Ellipse 111" cx="51.33" cy="51.33" r="51.33" transform="translate(435.93 246.82)" fill="#fbbebe"/>
<path id="Path_317" data-name="Path 317" d="M617.94,550.07s-99.5,12-90,0c3.44-4.34,4.39-17.2,4.2-31.85-.06-4.45-.22-9.06-.45-13.65-1.1-22-3.75-43.5-3.75-43.5s87-41,77-8.5c-4,13.13-2.69,31.57.35,48.88.89,5.05,1.92,10,3,14.7a344.66,344.66,0,0,0,9.65,33.92Z" transform="translate(-79.34 -172.91)" fill="#fbbebe"/>
<path id="Path_318" data-name="Path 318" d="M585.47,546c11.51-2.13,23.7-6,34.53-1.54,2.85,1.17,5.47,2.88,8.39,3.86s6.12,1.22,9.16,1.91c10.68,2.42,19.34,10.55,24.9,20s8.44,20.14,11.26,30.72l6.9,25.83c6,22.45,12,45.09,13.39,68.3a2437.506,2437.506,0,0,1-250.84,1.43c5.44-10.34,11-21.31,10.54-33s-7.19-23.22-4.76-34.74c1.55-7.34,6.57-13.39,9.64-20.22,8.75-19.52,1.94-45.79,17.32-60.65,6.92-6.68,17-9.21,26.63-8.89,12.28.41,24.85,4.24,37,6.11C555.09,547.48,569.79,548.88,585.47,546Z" transform="translate(-79.34 -172.91)" fill="#ff6584"/>
<path id="Path_319" data-name="Path 319" d="M716.37,657.17l-.1,1.43v.1l-.17,2.3-1.33,18.51-1.61,22.3-.46,6.28-1,13.44v.17l-107,1-175.59,1.9v.84h-.14v-1.12l.45-14.36.86-28.06.74-23.79.07-2.37a10.53,10.53,0,0,1,11.42-10.17c4.72.4,10.85.89,18.18,1.41l3,.22c42.33,2.94,120.56,6.74,199.5,2,1.66-.09,3.33-.19,5-.31,12.24-.77,24.47-1.76,36.58-3a10.53,10.53,0,0,1,11.6,11.23Z" transform="translate(-79.34 -172.91)" opacity="0.1"/>
<path id="Path_320" data-name="Path 320" d="M429.08,725.44v-.84l175.62-1.91,107-1h.3v-.17l1-13.44.43-6,1.64-22.61,1.29-17.9v-.44a10.617,10.617,0,0,0-.11-2.47.3.3,0,0,0,0-.1,10.391,10.391,0,0,0-2-4.64,10.54,10.54,0,0,0-9.42-4c-12.11,1.24-24.34,2.23-36.58,3-1.67.12-3.34.22-5,.31-78.94,4.69-157.17.89-199.5-2l-3-.22c-7.33-.52-13.46-1-18.18-1.41a10.54,10.54,0,0,0-11.24,8.53,11,11,0,0,0-.18,1.64l-.68,22.16L429.54,710l-.44,14.36v1.12Z" transform="translate(-79.34 -172.91)" fill="#3f3d56"/>
<path id="Path_321" data-name="Path 321" d="M716.67,664.18l-1.23,15.33-1.83,22.85-.46,5.72-1,12.81-.06.64v.17h0l-.15,1.48.11-1.48h-.29l-107,1-175.65,1.9v-.28l.49-14.36,1-28.06.64-18.65A6.36,6.36,0,0,1,434.3,658a6.25,6.25,0,0,1,3.78-.9c2.1.17,4.68.37,7.69.59,4.89.36,10.92.78,17.94,1.22,13,.82,29.31,1.7,48,2.42,52,2,122.2,2.67,188.88-3.17,3-.26,6.1-.55,9.13-.84a6.26,6.26,0,0,1,3.48.66,5.159,5.159,0,0,1,.86.54,6.14,6.14,0,0,1,2,2.46,3.564,3.564,0,0,1,.25.61A6.279,6.279,0,0,1,716.67,664.18Z" transform="translate(-79.34 -172.91)" opacity="0.1"/>
<path id="Path_322" data-name="Path 322" d="M377.44,677.87v3.19a6.13,6.13,0,0,1-3.5,5.54l-40.1.77a6.12,6.12,0,0,1-3.57-5.57v-3Z" transform="translate(-79.34 -172.91)" opacity="0.1"/>
<path id="Path_323" data-name="Path 323" d="M298.59,515.57l-52.25,1V507.9l52.25-1Z" fill="#3f3d56"/>
<path id="Path_324" data-name="Path 324" d="M298.59,515.57l-52.25,1V507.9l52.25-1Z" opacity="0.1"/>
<path id="Path_325" data-name="Path 325" d="M300.59,515.57l-52.25,1V507.9l52.25-1Z" fill="#3f3d56"/>
<path id="Path_326" data-name="Path 326" d="M758.56,679.87v3.19a6.13,6.13,0,0,0,3.5,5.54l40.1.77a6.12,6.12,0,0,0,3.57-5.57v-3Z" transform="translate(-79.34 -172.91)" opacity="0.1"/>
<path id="Path_327" data-name="Path 327" d="M678.72,517.57l52.25,1V509.9l-52.25-1Z" opacity="0.1"/>
<path id="Path_328" data-name="Path 328" d="M676.72,517.57l52.25,1V509.9l-52.25-1Z" fill="#3f3d56"/>
<path id="Path_329" data-name="Path 329" d="M534.13,486.79c.08,7-3.16,13.6-5.91,20.07a163.491,163.491,0,0,0-12.66,74.71c.73,11,2.58,22,.73,32.9s-8.43,21.77-19,24.9c17.53,10.45,41.26,9.35,57.76-2.66,8.79-6.4,15.34-15.33,21.75-24.11a97.86,97.86,0,0,1-13.31,44.75A103.43,103.43,0,0,0,637,616.53c4.31-5.81,8.06-12.19,9.72-19.23,3.09-13-1.22-26.51-4.51-39.5a266.055,266.055,0,0,1-6.17-33c-.43-3.56-.78-7.22.1-10.7,1-4.07,3.67-7.51,5.64-11.22,5.6-10.54,5.73-23.3,2.86-34.88s-8.49-22.26-14.06-32.81c-4.46-8.46-9.3-17.31-17.46-22.28-5.1-3.1-11-4.39-16.88-5.64l-25.37-5.43c-5.55-1.19-11.26-2.38-16.87-1.51-9.47,1.48-16.14,8.32-22,15.34-4.59,5.46-15.81,15.71-16.6,22.86-.72,6.59,5.1,17.63,6.09,24.58,1.3,9,2.22,6,7.3,11.52C532,478.05,534.07,482,534.13,486.79Z" transform="translate(-79.34 -172.91)" fill="#3f3d56"/>
</g>
<g id="docusaurus_keytar" transform="translate(670.271 615.768)">
<path id="Path_40" data-name="Path 40" d="M99,52h43.635V69.662H99Z" transform="translate(-49.132 -33.936)" fill="#fff" fill-rule="evenodd"/>
<path id="Path_41" data-name="Path 41" d="M13.389,158.195A10.377,10.377,0,0,1,4.4,153a10.377,10.377,0,0,0,8.988,15.584H23.779V158.195Z" transform="translate(-3 -82.47)" fill="#3ecc5f" fill-rule="evenodd"/>
<path id="Path_42" data-name="Path 42" d="M66.967,38.083l36.373-2.273V30.615A10.389,10.389,0,0,0,92.95,20.226H46.2l-1.3-2.249a1.5,1.5,0,0,0-2.6,0L41,20.226l-1.3-2.249a1.5,1.5,0,0,0-2.6,0l-1.3,2.249-1.3-2.249a1.5,1.5,0,0,0-2.6,0l-1.3,2.249-.034,0-2.152-2.151a1.5,1.5,0,0,0-2.508.672L25.21,21.4l-2.7-.723a1.5,1.5,0,0,0-1.836,1.837l.722,2.7-2.65.71a1.5,1.5,0,0,0-.673,2.509l2.152,2.152c0,.011,0,.022,0,.033l-2.249,1.3a1.5,1.5,0,0,0,0,2.6l2.249,1.3-2.249,1.3a1.5,1.5,0,0,0,0,2.6L20.226,41l-2.249,1.3a1.5,1.5,0,0,0,0,2.6l2.249,1.3-2.249,1.3a1.5,1.5,0,0,0,0,2.6l2.249,1.3-2.249,1.3a1.5,1.5,0,0,0,0,2.6l2.249,1.3-2.249,1.3a1.5,1.5,0,0,0,0,2.6l2.249,1.3-2.249,1.3a1.5,1.5,0,0,0,0,2.6l2.249,1.3-2.249,1.3a1.5,1.5,0,0,0,0,2.6l2.249,1.3-2.249,1.3a1.5,1.5,0,0,0,0,2.6l2.249,1.3-2.249,1.3a1.5,1.5,0,0,0,0,2.6l2.249,1.3-2.249,1.3a1.5,1.5,0,0,0,0,2.6l2.249,1.3-2.249,1.3a1.5,1.5,0,0,0,0,2.6l2.249,1.3A10.389,10.389,0,0,0,30.615,103.34H92.95A10.389,10.389,0,0,0,103.34,92.95V51.393L66.967,49.12a5.53,5.53,0,0,1,0-11.038" transform="translate(-9.836 -17.226)" fill="#3ecc5f" fill-rule="evenodd"/>
<path id="Path_43" data-name="Path 43" d="M143,163.779h15.584V143H143Z" transform="translate(-70.275 -77.665)" fill="#3ecc5f" fill-rule="evenodd"/>
<path id="Path_44" data-name="Path 44" d="M173.779,148.389a2.582,2.582,0,0,0-.332.033c-.02-.078-.038-.156-.06-.234a2.594,2.594,0,1,0-2.567-4.455q-.086-.088-.174-.175a2.593,2.593,0,1,0-4.461-2.569c-.077-.022-.154-.04-.231-.06a2.6,2.6,0,1,0-5.128,0c-.077.02-.154.038-.231.06a2.594,2.594,0,1,0-4.461,2.569,10.384,10.384,0,1,0,17.314,9.992,2.592,2.592,0,1,0,.332-5.161" transform="translate(-75.08 -75.262)" fill="#44d860" fill-rule="evenodd"/>
<path id="Path_45" data-name="Path 45" d="M153,113.389h15.584V103H153Z" transform="translate(-75.08 -58.444)" fill="#3ecc5f" fill-rule="evenodd"/>
<path id="Path_46" data-name="Path 46" d="M183.389,108.944a1.3,1.3,0,1,0,0-2.6,1.336,1.336,0,0,0-.166.017c-.01-.039-.019-.078-.03-.117a1.3,1.3,0,0,0-.5-2.5,1.285,1.285,0,0,0-.783.269q-.043-.044-.087-.087a1.285,1.285,0,0,0,.263-.776,1.3,1.3,0,0,0-2.493-.509,5.195,5.195,0,1,0,0,10,1.3,1.3,0,0,0,2.493-.509,1.285,1.285,0,0,0-.263-.776q.044-.043.087-.087a1.285,1.285,0,0,0,.783.269,1.3,1.3,0,0,0,.5-2.5c.011-.038.02-.078.03-.117a1.337,1.337,0,0,0,.166.017" transform="translate(-84.691 -57.894)" fill="#44d860" fill-rule="evenodd"/>
<path id="Path_47" data-name="Path 47" d="M52.188,48.292a1.3,1.3,0,0,1-1.3-1.3,3.9,3.9,0,0,0-7.792,0,1.3,1.3,0,1,1-2.6,0,6.493,6.493,0,0,1,12.987,0,1.3,1.3,0,0,1-1.3,1.3" transform="translate(-21.02 -28.41)" fill-rule="evenodd"/>
<path id="Path_48" data-name="Path 48" d="M103,139.752h31.168a10.389,10.389,0,0,0,10.389-10.389V93H113.389A10.389,10.389,0,0,0,103,103.389Z" transform="translate(-51.054 -53.638)" fill="#ffff50" fill-rule="evenodd"/>
<path id="Path_49" data-name="Path 49" d="M141.1,94.017H115.106a.519.519,0,1,1,0-1.039H141.1a.519.519,0,0,1,0,1.039m0,10.389H115.106a.519.519,0,1,1,0-1.039H141.1a.519.519,0,0,1,0,1.039m0,10.389H115.106a.519.519,0,1,1,0-1.039H141.1a.519.519,0,0,1,0,1.039m0-25.877H115.106a.519.519,0,1,1,0-1.039H141.1a.519.519,0,0,1,0,1.039m0,10.293H115.106a.519.519,0,1,1,0-1.039H141.1a.519.519,0,0,1,0,1.039m0,10.389H115.106a.519.519,0,1,1,0-1.039H141.1a.519.519,0,0,1,0,1.039m7.782-47.993c-.006,0-.011,0-.018,0-1.605.055-2.365,1.66-3.035,3.077-.7,1.48-1.24,2.443-2.126,2.414-.981-.035-1.542-1.144-2.137-2.317-.683-1.347-1.462-2.876-3.1-2.819-1.582.054-2.344,1.451-3.017,2.684-.715,1.313-1.2,2.112-2.141,2.075-1-.036-1.533-.938-2.149-1.981-.686-1.162-1.479-2.467-3.084-2.423-1.555.053-2.319,1.239-2.994,2.286-.713,1.106-1.213,1.781-2.164,1.741-1.025-.036-1.554-.784-2.167-1.65-.688-.973-1.463-2.074-3.062-2.021a3.815,3.815,0,0,0-2.959,1.879c-.64.812-1.14,1.456-2.2,1.415a.52.52,0,0,0-.037,1.039,3.588,3.588,0,0,0,3.05-1.811c.611-.777,1.139-1.448,2.178-1.483,1-.043,1.47.579,2.179,1.582.674.953,1.438,2.033,2.977,2.089,1.612.054,2.387-1.151,3.074-2.217.614-.953,1.144-1.775,2.156-1.81.931-.035,1.438.7,2.153,1.912.674,1.141,1.437,2.434,3.006,2.491,1.623.056,2.407-1.361,3.09-2.616.592-1.085,1.15-2.109,2.14-2.143.931-.022,1.417.829,2.135,2.249.671,1.326,1.432,2.828,3.026,2.886l.088,0c1.592,0,2.347-1.6,3.015-3.01.592-1.252,1.152-2.431,2.113-2.479Z" transform="translate(-55.378 -38.552)" fill-rule="evenodd"/>
<path id="Path_50" data-name="Path 50" d="M83,163.779h20.779V143H83Z" transform="translate(-41.443 -77.665)" fill="#3ecc5f" fill-rule="evenodd"/>
<g id="Group_8" data-name="Group 8" transform="matrix(0.966, -0.259, 0.259, 0.966, 51.971, 43.3)">
<rect id="Rectangle_3" data-name="Rectangle 3" width="43.906" height="17.333" rx="2" transform="translate(0 0)" fill="#d8d8d8"/>
<g id="Group_2" data-name="Group 2" transform="translate(0.728 10.948)">
<rect id="Rectangle_4" data-name="Rectangle 4" width="2.537" height="2.537" rx="1" transform="translate(7.985 0)" fill="#4a4a4a"/>
<rect id="Rectangle_5" data-name="Rectangle 5" width="2.537" height="2.537" rx="1" transform="translate(10.991 0)" fill="#4a4a4a"/>
<rect id="Rectangle_6" data-name="Rectangle 6" width="2.537" height="2.537" rx="1" transform="translate(13.997 0)" fill="#4a4a4a"/>
<rect id="Rectangle_7" data-name="Rectangle 7" width="2.537" height="2.537" rx="1" transform="translate(17.003 0)" fill="#4a4a4a"/>
<rect id="Rectangle_8" data-name="Rectangle 8" width="2.537" height="2.537" rx="1" transform="translate(20.009 0)" fill="#4a4a4a"/>
<rect id="Rectangle_9" data-name="Rectangle 9" width="2.537" height="2.537" rx="1" transform="translate(23.015 0)" fill="#4a4a4a"/>
<rect id="Rectangle_10" data-name="Rectangle 10" width="2.537" height="2.537" rx="1" transform="translate(26.021 0)" fill="#4a4a4a"/>
<rect id="Rectangle_11" data-name="Rectangle 11" width="2.537" height="2.537" rx="1" transform="translate(29.028 0)" fill="#4a4a4a"/>
<rect id="Rectangle_12" data-name="Rectangle 12" width="2.537" height="2.537" rx="1" transform="translate(32.034 0)" fill="#4a4a4a"/>
<path id="Path_51" data-name="Path 51" d="M.519,0H6.9A.519.519,0,0,1,7.421.52v1.5a.519.519,0,0,1-.519.519H.519A.519.519,0,0,1,0,2.017V.519A.519.519,0,0,1,.519,0ZM35.653,0h6.383a.519.519,0,0,1,.519.519v1.5a.519.519,0,0,1-.519.519H35.652a.519.519,0,0,1-.519-.519V.519A.519.519,0,0,1,35.652,0Z" transform="translate(0 0)" fill="#4a4a4a" fill-rule="evenodd"/>
</g>
<g id="Group_3" data-name="Group 3" transform="translate(0.728 4.878)">
<path id="Path_52" data-name="Path 52" d="M.519,0H2.956a.519.519,0,0,1,.519.519v1.5a.519.519,0,0,1-.519.519H.519A.519.519,0,0,1,0,2.017V.519A.519.519,0,0,1,.519,0Z" transform="translate(0 0)" fill="#4a4a4a" fill-rule="evenodd"/>
<rect id="Rectangle_13" data-name="Rectangle 13" width="2.537" height="2.537" rx="1" transform="translate(3.945 0)" fill="#4a4a4a"/>
<rect id="Rectangle_14" data-name="Rectangle 14" width="2.537" height="2.537" rx="1" transform="translate(6.951 0)" fill="#4a4a4a"/>
<rect id="Rectangle_15" data-name="Rectangle 15" width="2.537" height="2.537" rx="1" transform="translate(9.958 0)" fill="#4a4a4a"/>
<rect id="Rectangle_16" data-name="Rectangle 16" width="2.537" height="2.537" rx="1" transform="translate(12.964 0)" fill="#4a4a4a"/>
<rect id="Rectangle_17" data-name="Rectangle 17" width="2.537" height="2.537" rx="1" transform="translate(15.97 0)" fill="#4a4a4a"/>
<rect id="Rectangle_18" data-name="Rectangle 18" width="2.537" height="2.537" rx="1" transform="translate(18.976 0)" fill="#4a4a4a"/>
<rect id="Rectangle_19" data-name="Rectangle 19" width="2.537" height="2.537" rx="1" transform="translate(21.982 0)" fill="#4a4a4a"/>
<rect id="Rectangle_20" data-name="Rectangle 20" width="2.537" height="2.537" rx="1" transform="translate(24.988 0)" fill="#4a4a4a"/>
<rect id="Rectangle_21" data-name="Rectangle 21" width="2.537" height="2.537" rx="1" transform="translate(27.994 0)" fill="#4a4a4a"/>
<rect id="Rectangle_22" data-name="Rectangle 22" width="2.537" height="2.537" rx="1" transform="translate(31 0)" fill="#4a4a4a"/>
<rect id="Rectangle_23" data-name="Rectangle 23" width="2.537" height="2.537" rx="1" transform="translate(34.006 0)" fill="#4a4a4a"/>
<rect id="Rectangle_24" data-name="Rectangle 24" width="2.537" height="2.537" rx="1" transform="translate(37.012 0)" fill="#4a4a4a"/>
<rect id="Rectangle_25" data-name="Rectangle 25" width="2.537" height="2.537" rx="1" transform="translate(40.018 0)" fill="#4a4a4a"/>
</g>
<g id="Group_4" data-name="Group 4" transform="translate(43.283 4.538) rotate(180)">
<path id="Path_53" data-name="Path 53" d="M.519,0H2.956a.519.519,0,0,1,.519.519v1.5a.519.519,0,0,1-.519.519H.519A.519.519,0,0,1,0,2.017V.519A.519.519,0,0,1,.519,0Z" transform="translate(0 0)" fill="#4a4a4a" fill-rule="evenodd"/>
<rect id="Rectangle_26" data-name="Rectangle 26" width="2.537" height="2.537" rx="1" transform="translate(3.945 0)" fill="#4a4a4a"/>
<rect id="Rectangle_27" data-name="Rectangle 27" width="2.537" height="2.537" rx="1" transform="translate(6.951 0)" fill="#4a4a4a"/>
<rect id="Rectangle_28" data-name="Rectangle 28" width="2.537" height="2.537" rx="1" transform="translate(9.958 0)" fill="#4a4a4a"/>
<rect id="Rectangle_29" data-name="Rectangle 29" width="2.537" height="2.537" rx="1" transform="translate(12.964 0)" fill="#4a4a4a"/>
<rect id="Rectangle_30" data-name="Rectangle 30" width="2.537" height="2.537" rx="1" transform="translate(15.97 0)" fill="#4a4a4a"/>
<rect id="Rectangle_31" data-name="Rectangle 31" width="2.537" height="2.537" rx="1" transform="translate(18.976 0)" fill="#4a4a4a"/>
<rect id="Rectangle_32" data-name="Rectangle 32" width="2.537" height="2.537" rx="1" transform="translate(21.982 0)" fill="#4a4a4a"/>
<rect id="Rectangle_33" data-name="Rectangle 33" width="2.537" height="2.537" rx="1" transform="translate(24.988 0)" fill="#4a4a4a"/>
<rect id="Rectangle_34" data-name="Rectangle 34" width="2.537" height="2.537" rx="1" transform="translate(27.994 0)" fill="#4a4a4a"/>
<rect id="Rectangle_35" data-name="Rectangle 35" width="2.537" height="2.537" rx="1" transform="translate(31.001 0)" fill="#4a4a4a"/>
<rect id="Rectangle_36" data-name="Rectangle 36" width="2.537" height="2.537" rx="1" transform="translate(34.007 0)" fill="#4a4a4a"/>
<rect id="Rectangle_37" data-name="Rectangle 37" width="2.537" height="2.537" rx="1" transform="translate(37.013 0)" fill="#4a4a4a"/>
<rect id="Rectangle_38" data-name="Rectangle 38" width="2.537" height="2.537" rx="1" transform="translate(40.018 0)" fill="#4a4a4a"/>
<rect id="Rectangle_39" data-name="Rectangle 39" width="2.537" height="2.537" rx="1" transform="translate(3.945 0)" fill="#4a4a4a"/>
<rect id="Rectangle_40" data-name="Rectangle 40" width="2.537" height="2.537" rx="1" transform="translate(6.951 0)" fill="#4a4a4a"/>
<rect id="Rectangle_41" data-name="Rectangle 41" width="2.537" height="2.537" rx="1" transform="translate(9.958 0)" fill="#4a4a4a"/>
<rect id="Rectangle_42" data-name="Rectangle 42" width="2.537" height="2.537" rx="1" transform="translate(12.964 0)" fill="#4a4a4a"/>
<rect id="Rectangle_43" data-name="Rectangle 43" width="2.537" height="2.537" rx="1" transform="translate(15.97 0)" fill="#4a4a4a"/>
<rect id="Rectangle_44" data-name="Rectangle 44" width="2.537" height="2.537" rx="1" transform="translate(18.976 0)" fill="#4a4a4a"/>
<rect id="Rectangle_45" data-name="Rectangle 45" width="2.537" height="2.537" rx="1" transform="translate(21.982 0)" fill="#4a4a4a"/>
<rect id="Rectangle_46" data-name="Rectangle 46" width="2.537" height="2.537" rx="1" transform="translate(24.988 0)" fill="#4a4a4a"/>
<rect id="Rectangle_47" data-name="Rectangle 47" width="2.537" height="2.537" rx="1" transform="translate(27.994 0)" fill="#4a4a4a"/>
<rect id="Rectangle_48" data-name="Rectangle 48" width="2.537" height="2.537" rx="1" transform="translate(31.001 0)" fill="#4a4a4a"/>
<rect id="Rectangle_49" data-name="Rectangle 49" width="2.537" height="2.537" rx="1" transform="translate(34.007 0)" fill="#4a4a4a"/>
<rect id="Rectangle_50" data-name="Rectangle 50" width="2.537" height="2.537" rx="1" transform="translate(37.013 0)" fill="#4a4a4a"/>
<rect id="Rectangle_51" data-name="Rectangle 51" width="2.537" height="2.537" rx="1" transform="translate(40.018 0)" fill="#4a4a4a"/>
</g>
<g id="Group_6" data-name="Group 6" transform="translate(0.728 7.883)">
<path id="Path_54" data-name="Path 54" d="M.519,0h3.47a.519.519,0,0,1,.519.519v1.5a.519.519,0,0,1-.519.519H.519A.519.519,0,0,1,0,2.017V.52A.519.519,0,0,1,.519,0Z" transform="translate(0 0)" fill="#4a4a4a" fill-rule="evenodd"/>
<g id="Group_5" data-name="Group 5" transform="translate(5.073 0)">
<rect id="Rectangle_52" data-name="Rectangle 52" width="2.537" height="2.537" rx="1" transform="translate(0 0)" fill="#4a4a4a"/>
<rect id="Rectangle_53" data-name="Rectangle 53" width="2.537" height="2.537" rx="1" transform="translate(3.006 0)" fill="#4a4a4a"/>
<rect id="Rectangle_54" data-name="Rectangle 54" width="2.537" height="2.537" rx="1" transform="translate(6.012 0)" fill="#4a4a4a"/>
<rect id="Rectangle_55" data-name="Rectangle 55" width="2.537" height="2.537" rx="1" transform="translate(9.018 0)" fill="#4a4a4a"/>
<rect id="Rectangle_56" data-name="Rectangle 56" width="2.537" height="2.537" rx="1" transform="translate(12.025 0)" fill="#4a4a4a"/>
<rect id="Rectangle_57" data-name="Rectangle 57" width="2.537" height="2.537" rx="1" transform="translate(15.031 0)" fill="#4a4a4a"/>
<rect id="Rectangle_58" data-name="Rectangle 58" width="2.537" height="2.537" rx="1" transform="translate(18.037 0)" fill="#4a4a4a"/>
<rect id="Rectangle_59" data-name="Rectangle 59" width="2.537" height="2.537" rx="1" transform="translate(21.042 0)" fill="#4a4a4a"/>
<rect id="Rectangle_60" data-name="Rectangle 60" width="2.537" height="2.537" rx="1" transform="translate(24.049 0)" fill="#4a4a4a"/>
<rect id="Rectangle_61" data-name="Rectangle 61" width="2.537" height="2.537" rx="1" transform="translate(27.055 0)" fill="#4a4a4a"/>
<rect id="Rectangle_62" data-name="Rectangle 62" width="2.537" height="2.537" rx="1" transform="translate(30.061 0)" fill="#4a4a4a"/>
</g>
<path id="Path_55" data-name="Path 55" d="M.52,0H3.8a.519.519,0,0,1,.519.519v1.5a.519.519,0,0,1-.519.519H.519A.519.519,0,0,1,0,2.017V.52A.519.519,0,0,1,.519,0Z" transform="translate(38.234 0)" fill="#4a4a4a" fill-rule="evenodd"/>
</g>
<g id="Group_7" data-name="Group 7" transform="translate(0.728 14.084)">
<rect id="Rectangle_63" data-name="Rectangle 63" width="2.537" height="2.537" rx="1" transform="translate(0 0)" fill="#4a4a4a"/>
<rect id="Rectangle_64" data-name="Rectangle 64" width="2.537" height="2.537" rx="1" transform="translate(3.006 0)" fill="#4a4a4a"/>
<rect id="Rectangle_65" data-name="Rectangle 65" width="2.537" height="2.537" rx="1" transform="translate(6.012 0)" fill="#4a4a4a"/>
<rect id="Rectangle_66" data-name="Rectangle 66" width="2.537" height="2.537" rx="1" transform="translate(9.018 0)" fill="#4a4a4a"/>
<path id="Path_56" data-name="Path 56" d="M.519,0H14.981A.519.519,0,0,1,15.5.519v1.5a.519.519,0,0,1-.519.519H.519A.519.519,0,0,1,0,2.018V.519A.519.519,0,0,1,.519,0Zm15.97,0h1.874a.519.519,0,0,1,.519.519v1.5a.519.519,0,0,1-.519.519H16.489a.519.519,0,0,1-.519-.519V.519A.519.519,0,0,1,16.489,0Z" transform="translate(12.024 0)" fill="#4a4a4a" fill-rule="evenodd"/>
<rect id="Rectangle_67" data-name="Rectangle 67" width="2.537" height="2.537" rx="1" transform="translate(31.376 0)" fill="#4a4a4a"/>
<rect id="Rectangle_68" data-name="Rectangle 68" width="2.537" height="2.537" rx="1" transform="translate(34.382 0)" fill="#4a4a4a"/>
<rect id="Rectangle_69" data-name="Rectangle 69" width="2.537" height="2.537" rx="1" transform="translate(40.018 0)" fill="#4a4a4a"/>
<path id="Path_57" data-name="Path 57" d="M2.537,0V.561a.519.519,0,0,1-.519.519H.519A.519.519,0,0,1,0,.561V0Z" transform="translate(39.736 1.08) rotate(180)" fill="#4a4a4a"/>
<path id="Path_58" data-name="Path 58" d="M2.537,0V.561a.519.519,0,0,1-.519.519H.519A.519.519,0,0,1,0,.561V0Z" transform="translate(37.2 1.456)" fill="#4a4a4a"/>
</g>
<rect id="Rectangle_70" data-name="Rectangle 70" width="42.273" height="1.127" rx="0.564" transform="translate(0.915 0.556)" fill="#4a4a4a"/>
<rect id="Rectangle_71" data-name="Rectangle 71" width="2.37" height="0.752" rx="0.376" transform="translate(1.949 0.744)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_72" data-name="Rectangle 72" width="2.37" height="0.752" rx="0.376" transform="translate(5.193 0.744)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_73" data-name="Rectangle 73" width="2.37" height="0.752" rx="0.376" transform="translate(7.688 0.744)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_74" data-name="Rectangle 74" width="2.37" height="0.752" rx="0.376" transform="translate(10.183 0.744)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_75" data-name="Rectangle 75" width="2.37" height="0.752" rx="0.376" transform="translate(12.679 0.744)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_76" data-name="Rectangle 76" width="2.37" height="0.752" rx="0.376" transform="translate(15.797 0.744)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_77" data-name="Rectangle 77" width="2.37" height="0.752" rx="0.376" transform="translate(18.292 0.744)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_78" data-name="Rectangle 78" width="2.37" height="0.752" rx="0.376" transform="translate(20.788 0.744)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_79" data-name="Rectangle 79" width="2.37" height="0.752" rx="0.376" transform="translate(23.283 0.744)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_80" data-name="Rectangle 80" width="2.37" height="0.752" rx="0.376" transform="translate(26.402 0.744)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_81" data-name="Rectangle 81" width="2.37" height="0.752" rx="0.376" transform="translate(28.897 0.744)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_82" data-name="Rectangle 82" width="2.37" height="0.752" rx="0.376" transform="translate(31.393 0.744)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_83" data-name="Rectangle 83" width="2.37" height="0.752" rx="0.376" transform="translate(34.512 0.744)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_84" data-name="Rectangle 84" width="2.37" height="0.752" rx="0.376" transform="translate(37.007 0.744)" fill="#d8d8d8" opacity="0.136"/>
<rect id="Rectangle_85" data-name="Rectangle 85" width="2.37" height="0.752" rx="0.376" transform="translate(39.502 0.744)" fill="#d8d8d8" opacity="0.136"/>
</g>
<path id="Path_59" data-name="Path 59" d="M123.779,148.389a2.583,2.583,0,0,0-.332.033c-.02-.078-.038-.156-.06-.234a2.594,2.594,0,1,0-2.567-4.455q-.086-.088-.174-.175a2.593,2.593,0,1,0-4.461-2.569c-.077-.022-.154-.04-.231-.06a2.6,2.6,0,1,0-5.128,0c-.077.02-.154.038-.231.06a2.594,2.594,0,1,0-4.461,2.569,10.384,10.384,0,1,0,17.314,9.992,2.592,2.592,0,1,0,.332-5.161" transform="translate(-51.054 -75.262)" fill="#44d860" fill-rule="evenodd"/>
<path id="Path_60" data-name="Path 60" d="M83,113.389h20.779V103H83Z" transform="translate(-41.443 -58.444)" fill="#3ecc5f" fill-rule="evenodd"/>
<path id="Path_61" data-name="Path 61" d="M123.389,108.944a1.3,1.3,0,1,0,0-2.6,1.338,1.338,0,0,0-.166.017c-.01-.039-.019-.078-.03-.117a1.3,1.3,0,0,0-.5-2.5,1.285,1.285,0,0,0-.783.269q-.043-.044-.087-.087a1.285,1.285,0,0,0,.263-.776,1.3,1.3,0,0,0-2.493-.509,5.195,5.195,0,1,0,0,10,1.3,1.3,0,0,0,2.493-.509,1.285,1.285,0,0,0-.263-.776q.044-.043.087-.087a1.285,1.285,0,0,0,.783.269,1.3,1.3,0,0,0,.5-2.5c.011-.038.02-.078.03-.117a1.335,1.335,0,0,0,.166.017" transform="translate(-55.859 -57.894)" fill="#44d860" fill-rule="evenodd"/>
<path id="Path_62" data-name="Path 62" d="M141.8,38.745a1.41,1.41,0,0,1-.255-.026,1.309,1.309,0,0,1-.244-.073,1.349,1.349,0,0,1-.224-.119,1.967,1.967,0,0,1-.2-.161,1.52,1.52,0,0,1-.161-.2,1.282,1.282,0,0,1-.218-.722,1.41,1.41,0,0,1,.026-.255,1.5,1.5,0,0,1,.072-.244,1.364,1.364,0,0,1,.12-.223,1.252,1.252,0,0,1,.358-.358,1.349,1.349,0,0,1,.224-.119,1.309,1.309,0,0,1,.244-.073,1.2,1.2,0,0,1,.509,0,1.262,1.262,0,0,1,.468.192,1.968,1.968,0,0,1,.2.161,1.908,1.908,0,0,1,.161.2,1.322,1.322,0,0,1,.12.223,1.361,1.361,0,0,1,.1.5,1.317,1.317,0,0,1-.379.919,1.968,1.968,0,0,1-.2.161,1.346,1.346,0,0,1-.223.119,1.332,1.332,0,0,1-.5.1m10.389-.649a1.326,1.326,0,0,1-.92-.379,1.979,1.979,0,0,1-.161-.2,1.282,1.282,0,0,1-.218-.722,1.326,1.326,0,0,1,.379-.919,1.967,1.967,0,0,1,.2-.161,1.351,1.351,0,0,1,.224-.119,1.308,1.308,0,0,1,.244-.073,1.2,1.2,0,0,1,.509,0,1.262,1.262,0,0,1,.468.192,1.967,1.967,0,0,1,.2.161,1.326,1.326,0,0,1,.379.919,1.461,1.461,0,0,1-.026.255,1.323,1.323,0,0,1-.073.244,1.847,1.847,0,0,1-.119.223,1.911,1.911,0,0,1-.161.2,1.967,1.967,0,0,1-.2.161,1.294,1.294,0,0,1-.722.218" transform="translate(-69.074 -26.006)" fill-rule="evenodd"/>
</g>
<g id="React-icon" transform="translate(906.3 541.56)">
<path id="Path_330" data-name="Path 330" d="M263.668,117.179c0-5.827-7.3-11.35-18.487-14.775,2.582-11.4,1.434-20.477-3.622-23.382a7.861,7.861,0,0,0-4.016-1v4a4.152,4.152,0,0,1,2.044.466c2.439,1.4,3.5,6.724,2.672,13.574-.2,1.685-.52,3.461-.914,5.272a86.9,86.9,0,0,0-11.386-1.954,87.469,87.469,0,0,0-7.459-8.965c5.845-5.433,11.332-8.41,15.062-8.41V78h0c-4.931,0-11.386,3.514-17.913,9.611-6.527-6.061-12.982-9.539-17.913-9.539v4c3.712,0,9.216,2.959,15.062,8.356a84.687,84.687,0,0,0-7.405,8.947,83.732,83.732,0,0,0-11.4,1.972c-.412-1.793-.717-3.532-.932-5.2-.843-6.85.2-12.175,2.618-13.592a3.991,3.991,0,0,1,2.062-.466v-4h0a8,8,0,0,0-4.052,1c-5.039,2.9-6.168,11.96-3.568,23.328-11.153,3.443-18.415,8.947-18.415,14.757,0,5.828,7.3,11.35,18.487,14.775-2.582,11.4-1.434,20.477,3.622,23.382a7.882,7.882,0,0,0,4.034,1c4.931,0,11.386-3.514,17.913-9.611,6.527,6.061,12.982,9.539,17.913,9.539a8,8,0,0,0,4.052-1c5.039-2.9,6.168-11.96,3.568-23.328C256.406,128.511,263.668,122.988,263.668,117.179Zm-23.346-11.96c-.663,2.313-1.488,4.7-2.421,7.083-.735-1.434-1.506-2.869-2.349-4.3-.825-1.434-1.7-2.833-2.582-4.2C235.517,104.179,237.974,104.645,240.323,105.219Zm-8.212,19.1c-1.4,2.421-2.833,4.716-4.321,6.85-2.672.233-5.379.359-8.1.359-2.708,0-5.415-.126-8.069-.341q-2.232-3.2-4.339-6.814-2.044-3.523-3.73-7.136c1.112-2.4,2.367-4.805,3.712-7.154,1.4-2.421,2.833-4.716,4.321-6.85,2.672-.233,5.379-.359,8.1-.359,2.708,0,5.415.126,8.069.341q2.232,3.2,4.339,6.814,2.044,3.523,3.73,7.136C234.692,119.564,233.455,121.966,232.11,124.315Zm5.792-2.331c.968,2.4,1.793,4.805,2.474,7.136-2.349.574-4.823,1.058-7.387,1.434.879-1.381,1.757-2.8,2.582-4.25C236.4,124.871,237.167,123.419,237.9,121.984ZM219.72,141.116a73.921,73.921,0,0,1-4.985-5.738c1.614.072,3.263.126,4.931.126,1.685,0,3.353-.036,4.985-.126A69.993,69.993,0,0,1,219.72,141.116ZM206.38,130.555c-2.546-.377-5-.843-7.352-1.417.663-2.313,1.488-4.7,2.421-7.083.735,1.434,1.506,2.869,2.349,4.3S205.5,129.192,206.38,130.555ZM219.63,93.241a73.924,73.924,0,0,1,4.985,5.738c-1.614-.072-3.263-.126-4.931-.126-1.686,0-3.353.036-4.985.126A69.993,69.993,0,0,1,219.63,93.241ZM206.362,103.8c-.879,1.381-1.757,2.8-2.582,4.25-.825,1.434-1.6,2.869-2.331,4.3-.968-2.4-1.793-4.805-2.474-7.136C201.323,104.663,203.8,104.179,206.362,103.8Zm-16.227,22.449c-6.348-2.708-10.454-6.258-10.454-9.073s4.106-6.383,10.454-9.073c1.542-.663,3.228-1.255,4.967-1.811a86.122,86.122,0,0,0,4.034,10.92,84.9,84.9,0,0,0-3.981,10.866C193.38,127.525,191.694,126.915,190.134,126.252Zm9.647,25.623c-2.439-1.4-3.5-6.724-2.672-13.574.2-1.686.52-3.461.914-5.272a86.9,86.9,0,0,0,11.386,1.954,87.465,87.465,0,0,0,7.459,8.965c-5.845,5.433-11.332,8.41-15.062,8.41A4.279,4.279,0,0,1,199.781,151.875Zm42.532-13.663c.843,6.85-.2,12.175-2.618,13.592a3.99,3.99,0,0,1-2.062.466c-3.712,0-9.216-2.959-15.062-8.356a84.689,84.689,0,0,0,7.405-8.947,83.731,83.731,0,0,0,11.4-1.972A50.194,50.194,0,0,1,242.313,138.212Zm6.9-11.96c-1.542.663-3.228,1.255-4.967,1.811a86.12,86.12,0,0,0-4.034-10.92,84.9,84.9,0,0,0,3.981-10.866c1.775.556,3.461,1.165,5.039,1.829,6.348,2.708,10.454,6.258,10.454,9.073C259.67,119.994,255.564,123.562,249.216,126.252Z" fill="#61dafb"/>
<path id="Path_331" data-name="Path 331" d="M320.8,78.4Z" transform="translate(-119.082 -0.328)" fill="#61dafb"/>
<circle id="Ellipse_112" data-name="Ellipse 112" cx="8.194" cy="8.194" r="8.194" transform="translate(211.472 108.984)" fill="#61dafb"/>
<path id="Path_332" data-name="Path 332" d="M520.5,78.1Z" transform="translate(-282.975 -0.082)" fill="#61dafb"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 35 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 12 KiB

@ -14,28 +14,28 @@
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"@babel/preset-env": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"rollup": "^2.66.1",
"rollup-plugin-terser": "^7.0.0",
"sinon": "^13.0.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"rollup": "^2.x.x",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^14.0.0",
"turbo": "latest",
"typescript": "^4.5.5"
"typescript": "^4.7.x"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "yarn@1.22.10"
"packageManager": "yarn@1.22.19"
}

@ -1,6 +1,6 @@
The MIT License (MIT)
Copyright (c) 2014-2019 Glen Cheney
Copyright (c) 2014-2022 Glen Cheney
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save