Website: Add Fleet Premium landing page (#9572)
Changes: - Added a new page: `/upgrade-to-fleet-premium` - Added a new action `deliver-premium-upgrade-form.js` - Updated policies, routes, importer.less, and regenerated cloud.setup.js . --------- Co-authored-by: Mike Thomas <mthomas@fleetdm.com>
This commit is contained in:
@@ -0,0 +1,72 @@
|
||||
module.exports = {
|
||||
|
||||
|
||||
friendlyName: 'Deliver premium upgrade form',
|
||||
|
||||
|
||||
description: 'Delivers a Fleet Premium upgrade form submission to a Zapier webhook',
|
||||
|
||||
|
||||
inputs: {
|
||||
organization: {
|
||||
type: 'string',
|
||||
required: true,
|
||||
},
|
||||
|
||||
monthsUsingFleetFree: {
|
||||
type: 'string',
|
||||
required: true,
|
||||
example: '1 - 3 months'
|
||||
},
|
||||
|
||||
emailAddress: {
|
||||
type: 'string',
|
||||
isEmail: true,
|
||||
required: true,
|
||||
},
|
||||
|
||||
numberOfHosts: {
|
||||
type: 'number',
|
||||
required: true,
|
||||
isInteger: true,
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
exits: {
|
||||
success: {
|
||||
description: 'The Fleet Premium upgrade form submission was sent to Zapier successfully.'
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
fn: async function ({organization, monthsUsingFleetFree, emailAddress, numberOfHosts}) {
|
||||
|
||||
if(!sails.config.custom.zapierSandboxWebhookSecret) {
|
||||
throw new Error('Message not delivered: zapierSandboxWebhookSecret needs to be configured in sails.config.custom.');
|
||||
}
|
||||
|
||||
// Send a POST request to Zapier
|
||||
await sails.helpers.http.post(
|
||||
'https://hooks.zapier.com/hooks/catch/3627242/bvxxkjf/',
|
||||
{
|
||||
'emailAddress': emailAddress,
|
||||
'organization': organization,
|
||||
'numberOfHosts': numberOfHosts,
|
||||
'monthsUsingFleetFree': monthsUsingFleetFree,
|
||||
'webhookSecret': sails.config.custom.zapierSandboxWebhookSecret
|
||||
}
|
||||
)
|
||||
.timeout(5000)
|
||||
.tolerate(['non200Response', 'requestFailed', {name: 'TimeoutError'}], (err)=>{
|
||||
// Note that Zapier responds with a 2xx status code even if something goes wrong, so just because this message is not logged doesn't mean everything is hunky dory. More info: https://github.com/fleetdm/fleet/pull/6380#issuecomment-1204395762
|
||||
sails.log.warn(`When a user submitted the Fleet Premium upgrade form, an error occurred while sending a request to Zapier. Raw error: ${require('util').inspect(err)}`);
|
||||
return;
|
||||
});//∞
|
||||
|
||||
// All done.
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
};
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
module.exports = {
|
||||
|
||||
|
||||
friendlyName: 'View upgrade',
|
||||
|
||||
|
||||
description: 'Display "Upgrade" page.',
|
||||
|
||||
|
||||
exits: {
|
||||
|
||||
success: {
|
||||
viewTemplatePath: 'pages/upgrade'
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
|
||||
fn: async function () {
|
||||
|
||||
// Respond with view.
|
||||
return {};
|
||||
|
||||
}
|
||||
|
||||
|
||||
};
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 355 B |
@@ -0,0 +1,72 @@
|
||||
<svg width="160" height="121" viewBox="0 0 160 121" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M118.919 64.7295C140.728 77.6026 140.845 98.4721 119.176 111.345C97.5048 124.218 62.2579 124.218 40.4482 111.345C18.6385 98.4721 18.5222 77.6026 40.1934 64.7295C61.8621 51.8564 97.109 51.8564 118.919 64.7295Z" fill="#C5C7D1"/>
|
||||
<path d="M116.811 54.8649C138.135 67.1764 138.249 87.1404 117.063 99.4543C95.8743 111.768 61.4092 111.766 40.0844 99.4543C18.7596 87.1429 18.6458 67.1788 39.8345 54.8649C61.0208 42.5535 95.4858 42.5535 116.811 54.8649Z" fill="#624937" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M132.873 77.7929C132.843 78.837 132.725 79.8787 132.517 80.9153C132.311 81.9421 132.017 82.9664 131.638 83.9808C131.248 85.0224 130.765 86.0566 130.189 87.076C129.565 88.177 128.835 89.2631 127.999 90.327C127.022 91.5691 125.896 92.7814 124.624 93.9566C122.672 95.7578 120.376 97.47 117.731 99.0608C117.513 99.192 117.291 99.3231 117.068 99.4542C113.439 101.565 109.418 103.311 105.14 104.699C101.837 105.771 98.3832 106.624 94.8353 107.265C92.5541 107.676 90.2334 108 87.8928 108.233C85.8937 108.43 83.8772 108.567 81.8558 108.636C80.0002 108.7 78.1396 108.708 76.2816 108.661C74.4903 108.616 72.699 108.52 70.92 108.374C69.1436 108.228 67.377 108.03 65.6278 107.782C63.8093 107.525 62.0056 107.211 60.2317 106.845C58.3043 106.446 56.4091 105.981 54.5535 105.452C52.2822 104.806 50.0728 104.061 47.9425 103.22C45.1789 102.129 42.5464 100.874 40.0895 99.4542C29.3591 93.2589 23.9976 85.1264 24.0223 77.0062L24.0001 85.0744C23.9778 93.1946 29.3368 101.327 40.0673 107.522C42.5241 108.94 45.1541 110.195 47.9203 111.288C50.0505 112.129 52.2599 112.874 54.5312 113.52C56.3868 114.049 58.282 114.512 60.2094 114.913C61.9859 115.281 63.787 115.593 65.6056 115.851C67.3548 116.098 69.1213 116.296 70.8978 116.442C72.6767 116.588 74.468 116.684 76.2593 116.729C78.1174 116.776 79.9779 116.766 81.8336 116.704C83.855 116.635 85.8714 116.501 87.8705 116.301C90.2111 116.068 92.5318 115.744 94.813 115.333C98.361 114.693 101.815 113.839 105.118 112.768C109.396 111.38 113.416 109.633 117.046 107.522C117.269 107.391 117.491 107.263 117.709 107.129C120.351 105.538 122.65 103.829 124.602 102.025C125.874 100.85 126.999 99.6373 127.977 98.3953C128.815 97.3314 129.545 96.2452 130.166 95.1442C130.743 94.1249 131.225 93.0932 131.616 92.0491C131.997 91.0347 132.289 90.0128 132.494 88.9836C132.702 87.9469 132.821 86.9028 132.851 85.8612C132.856 85.7028 132.858 85.542 132.858 85.3837L132.88 77.3154C132.88 77.4738 132.878 77.6346 132.873 77.7929Z" fill="#F1EEEA"/>
|
||||
<path d="M132.514 80.9178C132.309 81.9446 132.015 82.9689 131.636 83.9833C131.245 85.0249 130.763 86.0591 130.186 87.0785C129.563 88.1795 128.833 89.2656 127.996 90.3295C127.019 91.5716 125.893 92.7839 124.622 93.9591C122.67 95.7603 120.374 97.4724 117.729 99.0633C117.511 99.1945 117.288 99.3256 117.066 99.4567C113.436 101.567 109.416 103.314 105.138 104.702C103.71 105.165 102.255 105.585 100.776 105.966V114.027C102.248 113.646 103.695 113.228 105.115 112.768C109.393 111.38 113.414 109.633 117.043 107.522C117.266 107.391 117.489 107.263 117.706 107.129C120.349 105.538 122.647 103.829 124.599 102.025C125.871 100.85 126.997 99.6373 127.974 98.3953C128.813 97.3314 129.543 96.2453 130.164 95.1443C130.74 94.1249 131.223 93.0932 131.614 92.0491C131.995 91.0347 132.287 90.0128 132.492 88.9836C132.7 87.9469 132.819 86.9028 132.848 85.8612C132.853 85.7029 132.856 85.542 132.856 85.3837L132.878 77.3154C132.878 77.4738 132.876 77.6346 132.871 77.793C132.841 78.8371 132.722 79.8787 132.514 80.9153V80.9178Z" fill="#E2DED5"/>
|
||||
<path d="M132.873 77.7929C132.843 78.837 132.725 79.8787 132.517 80.9153C132.311 81.9421 132.017 82.9664 131.638 83.9808C131.248 85.0224 130.765 86.0566 130.189 87.076C129.565 88.177 128.835 89.2631 127.999 90.327C127.022 91.5691 125.896 92.7814 124.624 93.9566C122.672 95.7578 120.376 97.47 117.731 99.0608C117.513 99.192 117.291 99.3231 117.068 99.4542C113.439 101.565 109.418 103.311 105.14 104.699C101.837 105.771 98.3832 106.624 94.8353 107.265C92.5541 107.676 90.2334 108 87.8928 108.233C85.8937 108.43 83.8772 108.567 81.8558 108.636C80.0002 108.7 78.1396 108.708 76.2816 108.661C74.4903 108.616 72.699 108.52 70.92 108.374C69.1436 108.228 67.377 108.03 65.6278 107.782C63.8093 107.525 62.0056 107.211 60.2317 106.845C58.3043 106.446 56.4091 105.981 54.5535 105.452C52.2822 104.806 50.0728 104.061 47.9425 103.22C45.1789 102.129 42.5464 100.874 40.0895 99.4542C29.3591 93.2589 23.9976 85.1264 24.0223 77.0062L24.0001 85.0744C23.9778 93.1946 29.3368 101.327 40.0673 107.522C42.5241 108.94 45.1541 110.195 47.9203 111.288C50.0505 112.129 52.2599 112.874 54.5312 113.52C56.3868 114.049 58.282 114.512 60.2094 114.913C61.9859 115.281 63.787 115.593 65.6056 115.851C67.3548 116.098 69.1213 116.296 70.8978 116.442C72.6767 116.588 74.468 116.684 76.2593 116.729C78.1174 116.776 79.9779 116.766 81.8336 116.704C83.855 116.635 85.8714 116.501 87.8705 116.301C90.2111 116.068 92.5318 115.744 94.813 115.333C98.361 114.693 101.815 113.839 105.118 112.768C109.396 111.38 113.416 109.633 117.046 107.522C117.269 107.391 117.491 107.263 117.709 107.129C120.351 105.538 122.65 103.829 124.602 102.025C125.874 100.85 126.999 99.6373 127.977 98.3953C128.815 97.3314 129.545 96.2452 130.166 95.1442C130.743 94.1249 131.225 93.0932 131.616 92.0491C131.997 91.0347 132.289 90.0128 132.494 88.9836C132.702 87.9469 132.821 86.9028 132.851 85.8612C132.856 85.7028 132.858 85.542 132.858 85.3837L132.88 77.3154C132.88 77.4738 132.878 77.6346 132.873 77.7929Z" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M132.873 69.6283C132.843 70.6724 132.725 71.7141 132.517 72.7507C132.311 73.7775 132.017 74.8018 131.638 75.8162C131.248 76.8578 130.765 77.892 130.189 78.9114C129.565 80.0124 128.835 81.0986 127.999 82.1624C127.022 83.4045 125.896 84.6168 124.624 85.792C122.672 87.5932 120.376 89.3054 117.731 90.8962C117.511 91.0274 117.291 91.1585 117.068 91.2896C113.439 93.4001 109.418 95.1468 105.14 96.5348C101.837 97.6062 98.3832 98.4597 94.8353 99.1006C92.5541 99.5113 90.2334 99.8354 87.8928 100.068C85.8937 100.266 83.8772 100.402 81.8558 100.471C80.0002 100.536 78.1396 100.543 76.2816 100.496C74.4903 100.451 72.699 100.355 70.92 100.209C69.1436 100.063 67.377 99.8651 65.6278 99.6177C63.8093 99.3603 62.0056 99.0461 60.2317 98.6799C58.3043 98.2816 56.4091 97.8165 54.5535 97.287C52.2822 96.6412 50.0728 95.8965 47.9425 95.0553C45.1789 93.9642 42.5464 92.7098 40.0895 91.2896C29.3591 85.0943 23.9976 76.9618 24.0223 68.8416L24.0001 76.9098C23.9778 85.03 29.3368 93.1626 40.0673 99.3579C42.5241 100.776 45.1541 102.03 47.9203 103.124C50.0505 103.965 52.2599 104.709 54.5312 105.355C56.3868 105.885 58.282 106.347 60.2094 106.748C61.9859 107.117 63.787 107.429 65.6056 107.686C67.3548 107.933 69.1213 108.131 70.8978 108.277C72.6767 108.423 74.468 108.52 76.2593 108.564C78.1174 108.611 79.9779 108.601 81.8336 108.539C83.855 108.47 85.8714 108.337 87.8705 108.136C90.2111 107.904 92.5318 107.58 94.813 107.169C98.361 106.528 101.815 105.674 105.118 104.603C109.396 103.218 113.414 101.468 117.046 99.3579C117.269 99.2267 117.491 99.0981 117.709 98.9645C120.354 97.3736 122.65 95.6615 124.602 93.8603C125.874 92.6851 126.999 91.4727 127.977 90.2307C128.815 89.1668 129.545 88.0806 130.166 86.9796C130.743 85.9603 131.225 84.9286 131.616 83.8845C131.997 82.8701 132.289 81.8482 132.494 80.819C132.702 79.7823 132.821 78.7382 132.851 77.6966C132.856 77.5382 132.858 77.3774 132.858 77.2191L132.88 69.1508C132.88 69.3092 132.878 69.47 132.873 69.6283Z" fill="#F1EEEA"/>
|
||||
<path d="M132.514 72.7508C132.309 73.7776 132.015 74.8019 131.636 75.8163C131.245 76.8579 130.763 77.8921 130.186 78.9115C129.563 80.0125 128.833 81.0986 127.996 82.1625C127.019 83.4046 125.893 84.6169 124.622 85.7921C122.67 87.5933 120.374 89.3054 117.729 90.8963C117.509 91.0275 117.288 91.1586 117.066 91.2897C113.436 93.4002 109.416 95.1469 105.138 96.5349C103.71 96.9976 102.255 97.4182 100.776 97.7992V105.86C102.248 105.479 103.695 105.061 105.115 104.601C109.393 103.215 113.411 101.466 117.043 99.3555C117.266 99.2244 117.489 99.0957 117.706 98.9621C120.351 97.3712 122.647 95.6591 124.599 93.8579C125.871 92.6827 126.997 91.4703 127.974 90.2283C128.813 89.1644 129.543 88.0783 130.164 86.9773C130.74 85.9579 131.223 84.9262 131.614 83.8821C131.995 82.8677 132.287 81.8458 132.492 80.8166C132.7 79.7799 132.819 78.7358 132.848 77.6942C132.853 77.5359 132.856 77.375 132.856 77.2167L132.878 69.1484C132.878 69.3068 132.876 69.4676 132.871 69.6259C132.841 70.67 132.722 71.7117 132.514 72.7483V72.7508Z" fill="#E2DED5"/>
|
||||
<path d="M132.873 69.6283C132.843 70.6724 132.725 71.7141 132.517 72.7507C132.311 73.7775 132.017 74.8018 131.638 75.8162C131.248 76.8578 130.765 77.892 130.189 78.9114C129.565 80.0124 128.835 81.0986 127.999 82.1624C127.022 83.4045 125.896 84.6168 124.624 85.792C122.672 87.5932 120.376 89.3054 117.731 90.8962C117.511 91.0274 117.291 91.1585 117.068 91.2896C113.439 93.4001 109.418 95.1468 105.14 96.5348C101.837 97.6062 98.3832 98.4597 94.8353 99.1006C92.5541 99.5113 90.2334 99.8354 87.8928 100.068C85.8937 100.266 83.8772 100.402 81.8558 100.471C80.0002 100.536 78.1396 100.543 76.2816 100.496C74.4903 100.451 72.699 100.355 70.92 100.209C69.1436 100.063 67.377 99.8651 65.6278 99.6177C63.8093 99.3603 62.0056 99.0461 60.2317 98.6799C58.3043 98.2816 56.4091 97.8165 54.5535 97.287C52.2822 96.6412 50.0728 95.8965 47.9425 95.0553C45.1789 93.9642 42.5464 92.7098 40.0895 91.2896C29.3591 85.0943 23.9976 76.9618 24.0223 68.8416L24.0001 76.9098C23.9778 85.03 29.3368 93.1626 40.0673 99.3579C42.5241 100.776 45.1541 102.03 47.9203 103.124C50.0505 103.965 52.2599 104.709 54.5312 105.355C56.3868 105.885 58.282 106.347 60.2094 106.748C61.9859 107.117 63.787 107.429 65.6056 107.686C67.3548 107.933 69.1213 108.131 70.8978 108.277C72.6767 108.423 74.468 108.52 76.2593 108.564C78.1174 108.611 79.9779 108.601 81.8336 108.539C83.855 108.47 85.8714 108.337 87.8705 108.136C90.2111 107.904 92.5318 107.58 94.813 107.169C98.361 106.528 101.815 105.674 105.118 104.603C109.396 103.218 113.414 101.468 117.046 99.3579C117.269 99.2267 117.491 99.0981 117.709 98.9645C120.354 97.3736 122.65 95.6615 124.602 93.8603C125.874 92.6851 126.999 91.4727 127.977 90.2307C128.815 89.1668 129.545 88.0806 130.166 86.9796C130.743 85.9603 131.225 84.9286 131.616 83.8845C131.997 82.8701 132.289 81.8482 132.494 80.819C132.702 79.7823 132.821 78.7382 132.851 77.6966C132.856 77.5382 132.858 77.3774 132.858 77.2191L132.88 69.1508C132.88 69.3092 132.878 69.47 132.873 69.6283Z" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M116.811 46.7002C138.135 59.0116 138.249 78.9756 117.061 91.2895C95.8743 103.601 61.4092 103.601 40.082 91.2895C18.7572 78.9781 18.6434 59.0141 39.8321 46.7027C61.0208 34.3887 95.4834 34.3887 116.811 46.7027V46.7002Z" fill="white" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path opacity="0.5" d="M78.3091 14C49.9726 14 27 36.9726 27 65.3092C27 67.8947 27.193 70.4356 27.5616 72.9197C29.1302 79.0383 33.992 84.9318 42.1443 89.6376C62.2469 101.244 94.7326 101.244 114.707 89.6376C122.602 85.0505 127.357 79.3352 128.98 73.3848C129.396 70.7548 129.613 68.058 129.613 65.3117C129.613 36.9751 106.641 14.0025 78.3042 14.0025L78.3091 14Z" fill="#BEE8EE"/>
|
||||
<mask id="path-11-inside-1_3133_20446" fill="white">
|
||||
<path d="M78.4489 13.6233C106.785 13.6233 129.758 36.5959 129.758 64.9325C129.758 67.6788 129.54 70.3757 129.125 73.0057C127.499 78.9561 122.744 84.6714 114.851 89.2585C104.866 95.0628 91.75 97.9626 78.6196 97.9626C65.4892 97.9626 52.3416 95.0604 42.289 89.2585C34.1367 84.5501 29.2749 78.6567 27.7063 72.5406C27.3377 70.0565 27.1447 67.518 27.1447 64.93C27.1447 36.5935 50.1173 13.6209 78.4538 13.6209M78.4538 13.126C71.4619 13.126 64.6752 14.4967 58.2894 17.196C52.1214 19.8063 46.5817 23.5398 41.8239 28.2976C37.0661 33.0554 33.3326 38.595 30.7223 44.7631C28.0206 51.1489 26.6523 57.9331 26.6523 64.9276C26.6523 67.4908 26.8429 70.0738 27.2214 72.6098L27.2264 72.6346L27.2338 72.6593C28.9014 79.1639 34.0253 85.0499 42.049 89.684C51.8467 95.34 64.8361 98.4549 78.627 98.4549C92.418 98.4549 105.375 95.34 115.109 89.684C122.872 85.1711 127.888 79.4484 129.612 73.1343L129.619 73.1071L129.624 73.0799C130.05 70.3905 130.265 67.6491 130.265 64.9276C130.265 57.9356 128.895 51.1489 126.195 44.7631C123.585 38.595 119.852 33.0554 115.094 28.2976C110.336 23.5398 104.796 19.8063 98.6282 17.196C92.2423 14.4942 85.4582 13.126 78.4637 13.126H78.4538Z"/>
|
||||
</mask>
|
||||
<path d="M78.4489 13.6233C106.785 13.6233 129.758 36.5959 129.758 64.9325C129.758 67.6788 129.54 70.3757 129.125 73.0057C127.499 78.9561 122.744 84.6714 114.851 89.2585C104.866 95.0628 91.75 97.9626 78.6196 97.9626C65.4892 97.9626 52.3416 95.0604 42.289 89.2585C34.1367 84.5501 29.2749 78.6567 27.7063 72.5406C27.3377 70.0565 27.1447 67.518 27.1447 64.93C27.1447 36.5935 50.1173 13.6209 78.4538 13.6209M78.4538 13.126C71.4619 13.126 64.6752 14.4967 58.2894 17.196C52.1214 19.8063 46.5817 23.5398 41.8239 28.2976C37.0661 33.0554 33.3326 38.595 30.7223 44.7631C28.0206 51.1489 26.6523 57.9331 26.6523 64.9276C26.6523 67.4908 26.8429 70.0738 27.2214 72.6098L27.2264 72.6346L27.2338 72.6593C28.9014 79.1639 34.0253 85.0499 42.049 89.684C51.8467 95.34 64.8361 98.4549 78.627 98.4549C92.418 98.4549 105.375 95.34 115.109 89.684C122.872 85.1711 127.888 79.4484 129.612 73.1343L129.619 73.1071L129.624 73.0799C130.05 70.3905 130.265 67.6491 130.265 64.9276C130.265 57.9356 128.895 51.1489 126.195 44.7631C123.585 38.595 119.852 33.0554 115.094 28.2976C110.336 23.5398 104.796 19.8063 98.6282 17.196C92.2423 14.4942 85.4582 13.126 78.4637 13.126H78.4538Z" fill="white"/>
|
||||
<path d="M129.125 73.0057L129.511 73.1111L129.516 73.0899L129.52 73.0681L129.125 73.0057ZM114.851 89.2585L114.65 88.9126L114.65 88.9126L114.851 89.2585ZM42.289 89.2585L42.089 89.6048L42.0891 89.6049L42.289 89.2585ZM27.7063 72.5406L27.3107 72.5993L27.3137 72.6198L27.3189 72.6399L27.7063 72.5406ZM58.2894 17.196L58.1337 16.8276L58.1335 16.8276L58.2894 17.196ZM30.7223 44.7631L30.354 44.6072L30.3539 44.6073L30.7223 44.7631ZM27.2214 72.6098L26.8258 72.6689L26.8272 72.6787L26.8292 72.6883L27.2214 72.6098ZM27.2264 72.6346L26.8341 72.7131L26.8378 72.7315L26.8432 72.7495L27.2264 72.6346ZM27.2338 72.6593L27.6212 72.56L27.6192 72.5521L27.6169 72.5444L27.2338 72.6593ZM42.049 89.684L41.849 90.0304L41.8491 90.0304L42.049 89.684ZM115.109 89.684L115.31 90.0299L115.31 90.0298L115.109 89.684ZM129.612 73.1343L129.998 73.2397L129.998 73.2395L129.612 73.1343ZM129.619 73.1071L130.005 73.2123L130.01 73.1957L130.013 73.1787L129.619 73.1071ZM129.624 73.0799L130.018 73.1515L130.02 73.1424L129.624 73.0799ZM126.195 44.7631L126.564 44.6074L126.564 44.6072L126.195 44.7631ZM98.6282 17.196L98.784 16.8276L98.784 16.8276L98.6282 17.196ZM78.4489 14.0233C106.565 14.0233 129.358 36.8168 129.358 64.9325H130.158C130.158 36.375 107.006 13.2233 78.4489 13.2233V14.0233ZM129.358 64.9325C129.358 67.6576 129.142 70.3336 128.73 72.9433L129.52 73.0681C129.939 70.4177 130.158 67.7 130.158 64.9325H129.358ZM128.739 72.9003C127.149 78.7192 122.483 84.3602 114.65 88.9126L115.052 89.6043C123.004 84.9825 127.849 79.1929 129.511 73.1111L128.739 72.9003ZM114.65 88.9126C104.74 94.6731 91.6983 97.5626 78.6196 97.5626V98.3626C91.8017 98.3626 104.991 95.4526 115.052 89.6043L114.65 88.9126ZM78.6196 97.5626C65.5411 97.5626 52.4666 94.6707 42.489 88.912L42.0891 89.6049C52.2165 95.45 65.4373 98.3626 78.6196 98.3626V97.5626ZM42.4891 88.9121C34.397 84.2386 29.6275 78.4214 28.0938 72.4412L27.3189 72.6399C28.9224 78.892 33.8763 84.8617 42.089 89.6048L42.4891 88.9121ZM28.102 72.4818C27.7362 70.0169 27.5447 67.4981 27.5447 64.93H26.7447C26.7447 67.538 26.9392 70.0961 27.3107 72.5993L28.102 72.4818ZM27.5447 64.93C27.5447 36.8144 50.3382 14.0209 78.4538 14.0209V13.2209C49.8964 13.2209 26.7447 36.3725 26.7447 64.93H27.5447ZM78.4538 12.726C71.4088 12.726 64.5692 14.1073 58.1337 16.8276L58.4452 17.5645C64.7813 14.8861 71.515 13.526 78.4538 13.526V12.726ZM58.1335 16.8276C51.9179 19.458 46.3352 23.2206 41.5411 28.0147L42.1067 28.5804C46.8283 23.8589 52.3248 20.1545 58.4453 17.5644L58.1335 16.8276ZM41.5411 28.0147C36.7469 32.8088 32.9843 38.3916 30.354 44.6072L31.0907 44.919C33.6808 38.7985 37.3852 33.3019 42.1067 28.5804L41.5411 28.0147ZM30.3539 44.6073C27.6311 51.0429 26.2523 57.8801 26.2523 64.9276H27.0523C27.0523 57.9861 28.41 51.255 31.0907 44.919L30.3539 44.6073ZM26.2523 64.9276C26.2523 67.5104 26.4443 70.1132 26.8258 72.6689L27.617 72.5508C27.2414 70.0344 27.0523 67.4711 27.0523 64.9276H26.2523ZM26.8292 72.6883L26.8341 72.7131L27.6186 72.5561L27.6136 72.5313L26.8292 72.6883ZM26.8432 72.7495L26.8506 72.7742L27.6169 72.5444L27.6095 72.5196L26.8432 72.7495ZM26.8463 72.7586C28.5495 79.402 33.7684 85.3635 41.849 90.0304L42.2491 89.3376C34.2822 84.7364 29.2532 78.9257 27.6212 72.56L26.8463 72.7586ZM41.8491 90.0304C51.7196 95.7284 64.7812 98.8549 78.627 98.8549V98.0549C64.891 98.0549 51.9739 94.9515 42.249 89.3376L41.8491 90.0304ZM78.627 98.8549C92.4728 98.8549 105.503 95.7285 115.31 90.0299L114.908 89.3382C105.248 94.9515 92.3632 98.0549 78.627 98.0549V98.8549ZM115.31 90.0298C123.13 85.4842 128.237 79.688 129.998 73.2397L129.226 73.029C127.538 79.2089 122.615 84.8581 114.908 89.3382L115.31 90.0298ZM129.998 73.2395L130.005 73.2123L129.234 73.002L129.226 73.0292L129.998 73.2395ZM130.013 73.1787L130.018 73.1515L129.231 73.0083L129.226 73.0355L130.013 73.1787ZM130.02 73.1424C130.448 70.4323 130.665 67.67 130.665 64.9276H129.865C129.865 67.6282 129.652 70.3487 129.229 73.0174L130.02 73.1424ZM130.665 64.9276C130.665 57.8825 129.284 51.0429 126.564 44.6074L125.827 44.9189C128.505 51.255 129.865 57.9887 129.865 64.9276H130.665ZM126.564 44.6072C123.933 38.3916 120.171 32.8088 115.377 28.0147L114.811 28.5804C119.532 33.3019 123.237 38.7985 125.827 44.919L126.564 44.6072ZM115.377 28.0147C110.582 23.2206 105 19.458 98.784 16.8276L98.4723 17.5644C104.593 20.1545 110.089 23.8589 114.811 28.5804L115.377 28.0147ZM98.784 16.8276C92.3484 14.1048 85.5112 12.726 78.4637 12.726V13.526C85.4052 13.526 92.1363 14.8837 98.4723 17.5644L98.784 16.8276ZM78.4637 12.726H78.4538V13.526H78.4637V12.726Z" fill="white" mask="url(#path-11-inside-1_3133_20446)"/>
|
||||
<path opacity="0.5" d="M78.6148 98.4598C64.8238 98.4598 51.8345 95.3448 42.0368 89.6889C34.0131 85.0573 28.8891 79.1688 27.2215 72.6642L27.2141 72.6394L27.2092 72.6147C26.8331 70.0812 26.6426 67.4957 26.6426 64.9324C26.6426 36.3682 49.8824 13.1284 78.4466 13.1284C107.011 13.1284 130.251 36.3682 130.251 64.9324C130.251 67.654 130.035 70.3954 129.61 73.0848L129.605 73.112L129.597 73.1392C127.873 79.4558 122.858 85.1785 115.094 89.6889C105.36 95.3448 92.4033 98.4598 78.6123 98.4598H78.6148Z" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M114.609 47.2296C134.711 58.8359 134.818 77.6544 114.846 89.2607C94.8725 100.867 62.3867 100.867 42.2842 89.2607C22.1816 77.6544 22.0752 58.8384 42.0491 47.2296C62.0205 35.6233 94.5063 35.6233 114.609 47.2296Z" fill="#93CE9E" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M104.895 73.416C104.895 73.416 100.484 51.5914 95.9884 49.8199C91.4928 48.0484 81.1038 41.2667 72.3824 39.3591C63.661 37.4516 60.259 44.2901 60.259 44.2901C60.259 44.2901 51.5054 56.5892 48.5166 60.7879C45.8841 64.4867 45.0949 71.4688 44.9464 73.0795C44.9341 73.1859 44.9242 73.2923 44.9192 73.3987C44.9192 73.411 44.9192 73.4185 44.9192 73.4185C44.8499 74.9104 45.5526 76.4345 47.0297 77.288L69.8167 90.4432C73.0331 92.2988 76.9967 92.2938 80.2057 90.4283L102.79 77.3054C104.269 76.4468 104.967 74.9153 104.89 73.4185H104.898L104.895 73.416Z" fill="#51A27F"/>
|
||||
<path d="M93.3853 76.5807C93.3853 76.5807 89.7581 73.2084 93.2789 70.8406C96.7996 68.4728 100.288 69.507 102.126 69.507C103.965 69.507 114.267 72.4884 114.609 75.7592C114.953 79.0697 111.283 83.9586 103.759 83.9512C95.4784 83.9438 92.6702 79.8119 93.3853 76.5782V76.5807Z" fill="#51A27F"/>
|
||||
<path d="M56.4364 41.8258C54.3186 40.1632 54.0934 37.2165 55.3453 34.866C56.6195 32.716 58.3292 30.4645 61.1423 28.5346C64.7521 25.8873 70.262 23.0445 77.1476 26.0679C78.8474 26.773 76.3757 33.5126 77.3975 36.6796C78.4194 39.8465 73.7704 44.7033 65.4919 44.4979C61.4441 44.3989 58.3465 43.3252 56.4364 41.8258Z" fill="#FF5C83"/>
|
||||
<path d="M76.0692 36.3135C76.0692 36.3135 73.7435 39.9208 66.8628 40.1781C59.9822 40.4355 56.0136 37.605 55.066 35.5341C55.066 35.5341 53.2079 39.1761 57.0528 42.3406C60.1059 44.8518 67.1498 46.0147 71.6404 43.496C76.1311 40.9798 76.0717 36.311 76.0717 36.311L76.0692 36.3135Z" fill="#E33D65"/>
|
||||
<path d="M104.23 70.2146C104.23 70.2146 103.74 43.3798 99.2419 41.6083C94.7464 39.8368 80.4383 38.0653 71.7169 36.1577C62.9955 34.2501 59.5935 41.0887 59.5935 41.0887C59.5935 41.0887 50.8399 53.3878 47.8511 57.5864C45.2186 61.2853 44.4294 68.2674 44.2809 69.8781C44.2685 69.9845 44.2586 70.0909 44.2537 70.1973C44.2537 70.2096 44.2537 70.217 44.2537 70.217C44.1844 71.709 44.8871 73.233 46.3641 74.0866L69.1512 87.2418C72.3676 89.0974 76.3312 89.0924 79.5402 87.2269L102.124 74.104C103.604 73.2454 104.302 71.7139 104.225 70.217H104.232L104.23 70.2146Z" fill="#E33D65" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M69.4504 76.6375L49.8625 66.7755C46.7797 65.2242 45.8049 61.2878 47.8065 58.4771L60.9294 40.0397C62.5426 37.7734 65.5685 37.0237 68.0525 38.2756L87.6405 48.1376C90.7233 49.6889 91.6981 53.6253 89.6965 56.436L76.5736 74.8734C74.9604 77.1398 71.9345 77.8894 69.4504 76.6375Z" fill="#FF5C83" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M68.3719 69.3114C66.5237 69.3114 64.673 68.871 63.0178 68.0372C59.9103 66.4711 57.6464 63.6357 56.8101 60.2585C55.9739 56.8812 56.6518 53.316 58.6682 50.4806L58.9305 50.1144C61.1622 46.9796 64.7943 45.1067 68.6465 45.1067C70.4947 45.1067 72.3454 45.5471 74.0006 46.3809C77.1082 47.947 79.372 50.7824 80.2083 54.1597C81.0446 57.5369 80.3666 61.1022 78.3502 63.9376L78.0904 64.3037C75.8587 67.4385 72.2266 69.3114 68.3744 69.3114H68.3719Z" fill="#E33D65" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M63.6163 66.8447C57.8243 63.9277 55.9934 56.5373 59.7541 51.2525L60.0164 50.8863C63.0472 46.6283 68.7328 45.2205 73.3991 47.571C79.1911 50.488 81.022 57.8783 77.2613 63.1631L76.999 63.5293C73.9682 67.7873 68.2825 69.1951 63.6163 66.8447Z" fill="#847C89" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M63.4409 65.9366C57.7825 63.0864 55.9937 55.8643 59.6679 50.7032L59.9227 50.3444C62.8843 46.1854 68.4388 44.8073 72.9986 47.1058C78.657 49.956 80.4459 57.1781 76.7717 62.3392L76.5169 62.6979C73.5553 66.857 68.0008 68.2351 63.4409 65.9366Z" fill="white" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M73.0834 56.0983C73.7269 55.9341 74.1153 55.2793 73.9511 54.6358C73.7868 53.9924 73.132 53.6039 72.4886 53.7681C71.8451 53.9324 71.4566 54.5872 71.6209 55.2306C71.7851 55.8741 72.4399 56.2626 73.0834 56.0983Z" fill="#D66C7B"/>
|
||||
<path d="M70.0143 54.5473C70.6577 54.383 71.0462 53.7282 70.882 53.0848C70.7177 52.4413 70.0629 52.0529 69.4195 52.2171C68.776 52.3814 68.3875 53.0361 68.5518 53.6796C68.7161 54.3231 69.3708 54.7115 70.0143 54.5473Z" fill="#5CABDF"/>
|
||||
<path d="M66.9454 52.9995C67.5889 52.8352 67.9774 52.1804 67.8131 51.537C67.6489 50.8935 66.9941 50.5051 66.3506 50.6693C65.7072 50.8336 65.3187 51.4883 65.483 52.1318C65.6472 52.7752 66.302 53.1637 66.9454 52.9995Z" fill="#63C740"/>
|
||||
<path d="M65.3969 56.0683C66.0403 55.904 66.4288 55.2493 66.2645 54.6058C66.1003 53.9623 65.4455 53.5739 64.8021 53.7381C64.1586 53.9024 63.7701 54.5572 63.9344 55.2006C64.0986 55.8441 64.7534 56.2326 65.3969 56.0683Z" fill="#C98DEF"/>
|
||||
<path d="M68.4638 57.619C69.1072 57.4548 69.4957 56.8 69.3314 56.1565C69.1672 55.5131 68.5124 55.1246 67.8689 55.2889C67.2255 55.4531 66.837 56.1079 67.0013 56.7514C67.1655 57.3948 67.8203 57.7833 68.4638 57.619Z" fill="#FAA669"/>
|
||||
<path d="M63.8466 59.1369C64.49 58.9727 64.8785 58.3179 64.7142 57.6744C64.55 57.031 63.8952 56.6425 63.2517 56.8068C62.6083 56.971 62.2198 57.6258 62.3841 58.2692C62.5483 58.9127 63.2031 59.3012 63.8466 59.1369Z" fill="#3AEFC3"/>
|
||||
<path d="M69.0991 35.9943C69.0991 35.9943 83.2587 43.5108 87.1828 45.3145C92.9748 47.9767 92.668 50.0203 92.9748 51.9131C93.2816 53.8033 88.6722 68.777 104.059 65.4542L102.941 51.9626C102.941 51.9626 101.919 47.0563 90.5229 42.3059C79.1269 37.553 70.7469 33.5672 70.7469 33.5672L69.0991 35.9918V35.9943Z" fill="#BC2247"/>
|
||||
<path d="M112.637 46.3513C114.54 50.1863 100.469 47.7418 100.469 47.7418L65.7441 29.2771L70.0838 26.7782C72.6693 25.2888 75.8412 25.2368 78.4762 26.6372C88.8083 31.6201 98.6455 36.6204 107.896 41.643C107.896 41.643 111.115 43.2784 112.639 46.3513H112.637Z" fill="#FF5C83"/>
|
||||
<path d="M94.9145 56.3816C94.9145 56.3816 97.5396 49.8869 101.06 47.5216C104.581 45.1538 108.814 44.2854 110.655 44.2854C112.496 44.2854 115.799 52.2918 116.14 55.5601C116.484 58.8706 112.815 63.7595 105.291 63.7521C97.0101 63.7447 94.2019 59.6128 94.9169 56.3791L94.9145 56.3816Z" fill="#FF5C83"/>
|
||||
<path d="M68.958 29.7866C68.958 29.7866 70.8309 33.1811 70.4227 34.3044L96.7651 49.0158C96.7651 49.0158 98.4921 47.7391 102.376 47.2616L68.958 29.7866Z" fill="#E33D65"/>
|
||||
<path d="M102.129 47.2964C102.129 47.2964 97.4183 51.3515 97.0101 58.0466C96.8839 60.1051 92.1211 55.951 95.9882 49.82C95.9882 49.82 98.3065 46.7694 102.129 47.2988V47.2964Z" fill="#FF83A1"/>
|
||||
<path d="M77.3678 38.1173C77.2886 36.5041 77.6474 34.4555 77.5756 33.8073C77.4742 32.8869 76.1109 32.2065 76.1109 32.2065L75.4404 37.1078L77.3653 38.1173H77.3678Z" fill="#BC2247"/>
|
||||
<path d="M116.079 55.9189C116.079 55.9189 113.753 59.5263 106.872 59.7836C99.9916 60.0409 95.4367 56.8294 94.4817 54.761C94.4817 54.761 93.6429 59.2912 97.0845 61.6565C100.286 63.9748 106.843 65.6919 111.647 63.1014C116.18 60.6594 116.079 55.9165 116.079 55.9165V55.9189Z" fill="#E33D65"/>
|
||||
<path d="M58.161 43.1002C58.161 43.1002 53.0024 40.4924 55.0658 35.5367C57.1293 30.5784 63.7773 26.4862 65.7443 25.8676C67.7113 25.2491 71.4101 23.6557 76.8261 25.9394C82.242 28.223 104.784 39.6017 107.503 41.445C110.222 43.2882 111.4 43.5158 113.58 48.1153C115.759 52.7148 116.497 55.3646 115.95 57.6408C115.403 59.9171 112.914 64.0959 107.112 64.4052C101.31 64.7169 96.8222 62.1463 95.3105 59.8527C93.7988 57.5592 94.2194 52.4822 95.6099 50.4658C97.0004 48.4468 96.7653 49.0184 96.7653 49.0184L90.2459 45.4061L75.8859 37.3774" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M94.4814 54.761C94.4814 54.761 97.7523 61.1122 110.066 59.3803C110.066 59.3803 113.332 59.123 116.078 55.9189" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M54.9893 35.6281C54.9893 35.6281 56.4589 38.2656 60.7169 39.4804" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M68.1665 37.5359C68.1665 37.5359 69.0894 33.7726 70.6555 31.9319C70.9771 31.5533 71.4868 31.1896 71.9668 30.8952C72.6893 30.4523 73.5923 30.4152 74.3544 30.7888L75.8785 31.5385C76.6752 31.9294 77.1007 32.8127 76.9151 33.6786L75.6162 39.7106C75.6162 39.7106 72.6299 41.4351 68.1665 37.5359Z" fill="#E33D65"/>
|
||||
<path d="M71.3087 39.5596C72.0583 39.8688 72.7288 40.0173 73.3028 40.0693C73.5874 38.805 74.3915 34.6459 74.9902 33.4459C75.5147 32.3944 75.7646 31.8328 76.3263 31.8476C76.2966 31.8204 76.2644 31.7932 76.2322 31.7684C76.2248 31.7635 76.2199 31.7585 76.2124 31.7536C76.1852 31.7313 76.1555 31.7091 76.1259 31.6893C76.1085 31.6769 76.0937 31.667 76.0764 31.6571C76.0541 31.6423 76.0318 31.6274 76.0096 31.615C75.9675 31.5903 75.923 31.5656 75.8784 31.5433L74.3543 30.7936C74.0203 30.6303 73.6616 30.5437 73.3004 30.5388C72.8896 30.5314 72.4765 30.6254 72.1053 30.8208C72.0583 30.8456 72.0138 30.8703 71.9668 30.9C71.7862 31.0113 71.6031 31.1301 71.4274 31.2563C71.133 31.4691 70.8584 31.6992 70.658 31.9367C70.314 32.34 70.0023 32.8323 69.7252 33.3618C69.6856 33.436 69.646 33.5127 69.6089 33.5894C68.6885 35.4228 68.1689 37.5407 68.1689 37.5407C69.0374 38.3002 70.2398 39.0276 71.3087 39.5645V39.5596Z" fill="#FF5C83"/>
|
||||
<path d="M82.4351 44.4709C82.4351 44.4709 83.3579 40.7077 84.9241 38.8669C85.2457 38.4884 85.7554 38.1247 86.2354 37.8302C86.9578 37.3874 87.8609 37.3502 88.6229 37.7238L90.147 38.4735C90.9437 38.8644 91.3693 39.7477 91.1837 40.6137L89.8848 46.6457C89.8848 46.6457 86.8984 48.3702 82.4351 44.4709Z" fill="#E33D65"/>
|
||||
<path d="M85.5772 46.4946C86.3269 46.8039 86.9974 46.9523 87.5714 47.0043C87.8559 45.74 88.66 41.5809 89.2588 40.381C89.7833 39.3294 90.0332 38.7678 90.5948 38.7826C90.5651 38.7554 90.533 38.7282 90.5008 38.7035C90.4934 38.6985 90.4884 38.6936 90.481 38.6886C90.4538 38.6664 90.4241 38.6441 90.3944 38.6243C90.3771 38.6119 90.3622 38.602 90.3449 38.5921C90.3227 38.5773 90.3004 38.5624 90.2781 38.5501C90.2361 38.5253 90.1915 38.5006 90.147 38.4783L88.6229 37.7287C88.2889 37.5654 87.9302 37.4788 87.5689 37.4738C87.1582 37.4664 86.745 37.5604 86.3739 37.7559C86.3269 37.7806 86.2824 37.8054 86.2353 37.835C86.0547 37.9464 85.8716 38.0651 85.696 38.1913C85.4016 38.4041 85.1269 38.6342 84.9265 38.8717C84.5826 39.275 84.2709 39.7674 83.9938 40.2968C83.9542 40.3711 83.9146 40.4478 83.8775 40.5245C82.9571 42.3578 82.4375 44.4757 82.4375 44.4757C83.3059 45.2353 84.5084 45.9627 85.5772 46.4996V46.4946Z" fill="#FF5C83"/>
|
||||
<path d="M82.4351 44.4709C82.4351 44.4709 83.3579 40.7077 84.9241 38.8669C85.2457 38.4884 85.7554 38.1247 86.2354 37.8302C86.9578 37.3874 87.8609 37.3502 88.6229 37.7238L90.147 38.4735C90.9437 38.8644 91.3693 39.7477 91.1837 40.6137L89.8848 46.6457C89.8848 46.6457 86.8984 48.3702 82.4351 44.4709Z" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M68.1665 37.5359C68.1665 37.5359 69.0894 33.7726 70.6555 31.9319C70.9771 31.5533 71.4868 31.1896 71.9668 30.8952C72.6893 30.4523 73.5923 30.4152 74.3544 30.7888L75.8785 31.5385C76.6752 31.9294 77.1007 32.8127 76.9151 33.6786L75.6162 39.7106C75.6162 39.7106 72.6299 41.4351 68.1665 37.5359Z" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M89.1224 14.2913C95.0554 17.718 95.0876 23.2725 89.1916 26.6968C83.2957 30.1235 73.7059 30.1235 67.7728 26.6968C61.8398 23.27 61.8076 17.7155 67.7035 14.2913C73.5995 10.8671 83.1868 10.8646 89.1199 14.2913H89.1224Z" fill="#FBE95A"/>
|
||||
<path d="M89.1223 14.2912C84.1121 11.3989 76.4967 10.9486 70.6997 12.9403C79.9902 15.2017 87.2692 24.361 89.053 26.7734C89.1001 26.7461 89.1471 26.7239 89.1916 26.6967C95.0875 23.2699 95.0554 17.7154 89.1223 14.2912Z" fill="#EDB312"/>
|
||||
<path d="M89.1224 14.2913C95.0554 17.718 95.0876 23.2725 89.1916 26.6968C83.2957 30.1235 73.7059 30.1235 67.7728 26.6968C61.8398 23.27 61.8076 17.7155 67.7035 14.2913C73.5995 10.8671 83.1868 10.8646 89.1199 14.2913H89.1224Z" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M85.9777 13.3954C90.1639 15.8127 90.1862 19.7293 86.0272 22.1466C81.8681 24.5638 75.1037 24.5638 70.9199 22.1466C66.7337 19.7293 66.7114 15.8127 70.8704 13.3954C75.0295 10.9782 81.7914 10.9782 85.9777 13.3954Z" fill="#FBE95A"/>
|
||||
<path d="M85.9774 13.3956C84.9333 12.7944 83.7309 12.3416 82.4493 12.0398C79.8341 11.6216 77.0655 11.6167 74.4503 12.0249C73.3493 12.2798 72.3102 12.6459 71.3799 13.121C77.1966 14.7613 82.1747 19.0293 85.4282 22.4684C85.6335 22.3669 85.8339 22.2605 86.0294 22.1467C90.1885 19.7295 90.1662 15.8129 85.9799 13.3956H85.9774Z" fill="#EDB312"/>
|
||||
<path d="M85.9777 13.3954C90.1639 15.8127 90.1862 19.7293 86.0272 22.1466C81.8681 24.5638 75.1037 24.5638 70.9199 22.1466C66.7337 19.7293 66.7114 15.8127 70.8704 13.3954C75.0295 10.9782 81.7914 10.9782 85.9777 13.3954Z" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M83.298 12.646C83.2956 12.7351 83.2857 12.8266 83.2683 12.9157C83.251 13.0048 83.2263 13.0938 83.1917 13.1804C83.157 13.2695 83.115 13.361 83.0655 13.4476C83.011 13.5441 82.9492 13.6357 82.875 13.7297C82.7908 13.8361 82.6919 13.9425 82.583 14.0439C82.4148 14.1998 82.2143 14.3482 81.9867 14.4843C81.9669 14.4967 81.9496 14.5066 81.9298 14.5189C81.6156 14.702 81.2692 14.853 80.9006 14.9717C80.616 15.0633 80.3167 15.1375 80.0099 15.1944C79.8119 15.229 79.6115 15.2587 79.4111 15.2785C79.2379 15.2958 79.0647 15.3082 78.8891 15.3132C78.7283 15.3181 78.5674 15.3206 78.4066 15.3132C78.2507 15.3082 78.0973 15.3008 77.944 15.2884C77.7906 15.276 77.6372 15.2587 77.4862 15.2365C77.3279 15.2142 77.172 15.187 77.0186 15.1548C76.8528 15.1202 76.6871 15.0806 76.5287 15.0336C76.3333 14.9767 76.1403 14.9123 75.9572 14.8406C75.7172 14.7466 75.4896 14.6377 75.2793 14.514C74.3515 13.9796 73.8888 13.2769 73.8913 12.5743L73.8789 16.5205C73.8789 17.2232 74.3391 17.9259 75.2669 18.4603C75.4797 18.584 75.7073 18.6904 75.9448 18.7869C76.1279 18.8586 76.3209 18.923 76.5164 18.9799C76.6772 19.0244 76.8405 19.0665 77.0062 19.1011C77.1596 19.1333 77.3155 19.1605 77.4739 19.1827C77.6248 19.205 77.7782 19.2223 77.9316 19.2347C78.085 19.2471 78.2409 19.2545 78.3942 19.2594C78.5551 19.2644 78.7159 19.2619 78.8767 19.2594C79.0524 19.2545 79.2256 19.2421 79.3988 19.2248C79.6016 19.205 79.802 19.1778 79.9975 19.1407C80.3043 19.0863 80.6037 19.012 80.8882 18.918C81.2569 18.7992 81.6057 18.6483 81.9175 18.4652C81.9372 18.4529 81.957 18.443 81.9744 18.4306C82.202 18.292 82.4024 18.1461 82.5706 17.9902C82.6795 17.8888 82.7785 17.7848 82.8626 17.676C82.9343 17.5844 82.9987 17.4904 83.0531 17.3939C83.1026 17.3049 83.1446 17.2158 83.1793 17.1267C83.2114 17.0401 83.2386 16.951 83.256 16.862C83.2733 16.7729 83.2832 16.6814 83.2857 16.5923C83.2857 16.5774 83.2857 16.5651 83.2857 16.5502L83.2956 12.6039C83.2956 12.6188 83.2956 12.6312 83.2956 12.646H83.298Z" fill="#FBE95A"/>
|
||||
<path d="M83.2979 12.6458C83.2979 12.6755 83.2904 12.7052 83.288 12.7349C83.283 12.7943 83.2806 12.8561 83.2682 12.9155C83.2509 13.0046 83.2261 13.0937 83.1915 13.1803C83.1569 13.2693 83.1148 13.3609 83.0653 13.4475C83.0109 13.5415 82.949 13.6355 82.8773 13.727C82.8599 13.7493 82.8401 13.7691 82.8228 13.7914C82.7511 13.8755 82.6744 13.9596 82.5853 14.0413C82.4171 14.1971 82.2167 14.3456 81.989 14.4817C81.9692 14.494 81.9519 14.5039 81.9321 14.5163C81.6179 14.6994 81.2715 14.8503 80.9029 14.9691C80.6184 15.0606 80.319 15.1348 80.0122 15.1917C79.8143 15.2264 79.6138 15.2561 79.4134 15.2759C79.3194 15.2858 79.2229 15.2882 79.1289 15.2957V19.242C79.2205 19.237 79.312 19.2321 79.4035 19.2246C79.6064 19.2048 79.8068 19.1776 80.0023 19.1405C80.3091 19.0861 80.6085 19.0119 80.893 18.9178C81.2616 18.7991 81.6105 18.6482 81.9222 18.4651C81.9222 18.4651 81.9321 18.4601 81.9371 18.4576C81.9519 18.4502 81.9668 18.4403 81.9791 18.4329C82.2068 18.2944 82.4072 18.1484 82.5754 17.9925C82.6571 17.9158 82.7313 17.8366 82.7981 17.7575C82.8204 17.7302 82.8451 17.7055 82.8674 17.6783C82.9391 17.5867 83.0034 17.4927 83.0554 17.3962C83.1049 17.3072 83.1469 17.2181 83.1816 17.129C83.2137 17.0424 83.2385 16.9534 83.2583 16.8643C83.2707 16.8049 83.2731 16.7455 83.2781 16.6837C83.2806 16.654 83.288 16.6243 83.288 16.5946C83.288 16.5798 83.288 16.5674 83.288 16.5525L83.2979 12.6063C83.2979 12.6211 83.2979 12.6335 83.2979 12.6483V12.6458Z" fill="#EDB312"/>
|
||||
<path d="M83.298 12.646C83.2956 12.7351 83.2857 12.8266 83.2684 12.9157C83.251 13.0048 83.2263 13.0938 83.1917 13.1804C83.157 13.2695 83.115 13.361 83.0655 13.4476C83.011 13.5441 82.9492 13.6357 82.875 13.7297C82.7908 13.8361 82.6919 13.9425 82.583 14.0439C82.4148 14.1998 82.2143 14.3482 81.9867 14.4843C81.9669 14.4967 81.9496 14.5066 81.9298 14.5189C81.6156 14.702 81.2692 14.853 80.9006 14.9717C80.616 15.0633 80.3167 15.1375 80.0099 15.1944C79.8119 15.229 79.6115 15.2587 79.4111 15.2785C79.2379 15.2958 79.0647 15.3082 78.8891 15.3132C78.7283 15.3181 78.5674 15.3206 78.4066 15.3132C78.2507 15.3082 78.0973 15.3008 77.944 15.2884C77.7906 15.276 77.6372 15.2587 77.4862 15.2365C77.3279 15.2142 77.172 15.187 77.0186 15.1548C76.8528 15.1202 76.6871 15.0806 76.5287 15.0336C76.3333 14.9767 76.1403 14.9123 75.9572 14.8406C75.7172 14.7466 75.4896 14.6377 75.2793 14.514C74.3515 13.9796 73.8888 13.2769 73.8913 12.5743L73.8789 16.5205C73.8789 17.2232 74.3391 17.9259 75.2669 18.4603C75.4797 18.584 75.7073 18.6904 75.9448 18.7869C76.1279 18.8586 76.3209 18.923 76.5164 18.9799C76.6772 19.0244 76.8405 19.0665 77.0062 19.1011C77.1596 19.1333 77.3155 19.1605 77.4739 19.1827C77.6248 19.205 77.7782 19.2223 77.9316 19.2347C78.085 19.2471 78.2409 19.2545 78.3942 19.2594C78.5551 19.2644 78.7159 19.2619 78.8767 19.2594C79.0524 19.2545 79.2256 19.2421 79.3988 19.2248C79.6016 19.205 79.802 19.1778 79.9975 19.1407C80.3043 19.0863 80.6037 19.012 80.8882 18.918C81.2569 18.7992 81.6057 18.6483 81.9175 18.4652C81.9372 18.4529 81.957 18.443 81.9744 18.4306C82.202 18.292 82.4024 18.1461 82.5706 17.9902C82.6795 17.8888 82.7785 17.7848 82.8626 17.676C82.9343 17.5844 82.9987 17.4904 83.0531 17.3939C83.1026 17.3049 83.1446 17.2158 83.1793 17.1267C83.2114 17.0401 83.2386 16.951 83.256 16.862C83.2733 16.7729 83.2832 16.6814 83.2857 16.5923C83.2857 16.5774 83.2857 16.5651 83.2857 16.5502L83.2956 12.6039C83.2956 12.6188 83.2956 12.6312 83.2956 12.646H83.298Z" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M81.9074 10.6641C83.7507 11.728 83.7606 13.4549 81.9297 14.5188C80.0988 15.5827 77.1199 15.5827 75.2766 14.5188C73.4334 13.4549 73.4235 11.7305 75.2544 10.6666C77.0853 9.60268 80.0666 9.60268 81.9074 10.6666V10.6641Z" fill="#EDB312" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M70.4155 7.03695C72.0825 7.03695 73.4339 5.68554 73.4339 4.01848C73.4339 2.35142 72.0825 1 70.4155 1C68.7484 1 67.397 2.35142 67.397 4.01848C67.397 5.68554 68.7484 7.03695 70.4155 7.03695Z" fill="#EDB312"/>
|
||||
<path d="M69.7277 5.09456C70.702 5.09456 71.4918 4.30476 71.4918 3.33049C71.4918 2.35621 70.702 1.56641 69.7277 1.56641C68.7534 1.56641 67.9636 2.35621 67.9636 3.33049C67.9636 4.30476 68.7534 5.09456 69.7277 5.09456Z" fill="#FBE95A"/>
|
||||
<path d="M73.1217 5.22481C73.5029 4.13343 73.0379 2.97845 72.0833 2.64508C71.1287 2.31171 70.0458 2.92618 69.6647 4.01756C69.2836 5.10893 69.7485 6.26393 70.7031 6.5973C71.6578 6.93067 72.7406 6.31618 73.1217 5.22481Z" fill="#EDB312"/>
|
||||
<path d="M70.4155 7.03695C72.0825 7.03695 73.4339 5.68554 73.4339 4.01848C73.4339 2.35142 72.0825 1 70.4155 1C68.7484 1 67.397 2.35142 67.397 4.01848C67.397 5.68554 68.7484 7.03695 70.4155 7.03695Z" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M77.9713 6.49527C77.9713 6.49527 77.9886 6.50269 77.996 6.50764L72.3574 3.43968C70.858 2.66279 69.5022 5.25076 70.9397 6.04744L76.5783 9.11541C76.5734 9.11293 76.5684 9.10798 76.5635 9.10551C76.7713 9.22179 77.0187 9.27375 77.2835 9.23664C78.0133 9.1352 78.6071 8.41027 78.6071 7.62349C78.6071 7.10639 78.3523 6.69073 77.9688 6.49527H77.9713ZM77.8723 6.45073C77.8723 6.45073 77.85 6.44331 77.8401 6.43836C77.85 6.44331 77.8624 6.44578 77.8723 6.45073Z" fill="#FBE95A" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M78.7285 14.4422C81.7238 14.4422 84.1519 12.0141 84.1519 9.01885C84.1519 6.02361 81.7238 3.59549 78.7285 3.59549C75.7333 3.59549 73.3052 6.02361 73.3052 9.01885C73.3052 12.0141 75.7333 14.4422 78.7285 14.4422Z" fill="#EDB312"/>
|
||||
<path d="M77.4914 10.9486C79.2404 10.9486 80.6583 9.53071 80.6583 7.78167C80.6583 6.03262 79.2404 4.61474 77.4914 4.61474C75.7423 4.61474 74.3245 6.03262 74.3245 7.78167C74.3245 9.53071 75.7423 10.9486 77.4914 10.9486Z" fill="#FBE95A"/>
|
||||
<path d="M78.7285 14.4422C81.7238 14.4422 84.1519 12.0141 84.1519 9.01885C84.1519 6.02361 81.7238 3.59549 78.7285 3.59549C75.7333 3.59549 73.3052 6.02361 73.3052 9.01885C73.3052 12.0141 75.7333 14.4422 78.7285 14.4422Z" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M87.8409 12.099C87.8409 12.099 87.8582 12.1065 87.8656 12.1114L82.227 9.04345C80.7277 8.26657 79.3718 10.8545 80.8093 11.6512L86.4479 14.7192C86.443 14.7167 86.438 14.7118 86.4331 14.7093C86.6409 14.8256 86.8883 14.8775 87.1531 14.8404C87.8829 14.739 88.4768 14.014 88.4768 13.2273C88.4768 12.7102 88.2219 12.2945 87.8384 12.099H87.8409ZM87.7419 12.0545C87.7419 12.0545 87.7196 12.0471 87.7098 12.0421C87.7196 12.0471 87.732 12.0496 87.7419 12.0545Z" fill="#FBE95A" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
<path d="M87.2397 16.4389C88.9067 16.4389 90.2581 15.0875 90.2581 13.4204C90.2581 11.7533 88.9067 10.4019 87.2397 10.4019C85.5726 10.4019 84.2212 11.7533 84.2212 13.4204C84.2212 15.0875 85.5726 16.4389 87.2397 16.4389Z" fill="#EDB312"/>
|
||||
<path d="M86.5517 14.4967C87.5259 14.4967 88.3158 13.7069 88.3158 12.7326C88.3158 11.7584 87.5259 10.9686 86.5517 10.9686C85.5774 10.9686 84.7876 11.7584 84.7876 12.7326C84.7876 13.7069 85.5774 14.4967 86.5517 14.4967Z" fill="#FBE95A"/>
|
||||
<path d="M87.2397 16.4389C88.9067 16.4389 90.2581 15.0875 90.2581 13.4204C90.2581 11.7533 88.9067 10.4019 87.2397 10.4019C85.5726 10.4019 84.2212 11.7533 84.2212 13.4204C84.2212 15.0875 85.5726 16.4389 87.2397 16.4389Z" stroke="#192147" stroke-width="0.2" stroke-miterlimit="10"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 40 KiB |
+148
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 100 KiB |
+231
@@ -0,0 +1,231 @@
|
||||
<svg width="160" height="119" viewBox="0 0 160 119" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M157.65 72.0811C159.234 72.9956 159.236 74.4962 157.654 75.4149L85.9298 117.096C84.3481 118.014 81.7584 118.019 80.1746 117.104L7.95328 75.4066C6.36952 74.4921 6.36744 72.9914 7.94913 72.0728L47.9922 48.8027C49.5739 47.884 52.1844 47.8424 53.7952 48.7092L80.5176 63.1189C82.1283 63.9877 84.7451 63.9565 86.333 63.0503L111.455 48.7237C113.043 47.8175 115.639 47.8237 117.225 48.7382L157.654 72.079L157.65 72.0811Z" fill="#C5C7D1"/>
|
||||
<path d="M9.68064 100.256C13.3948 102.443 19.4638 102.48 23.1676 100.344C26.8713 98.2071 26.8713 94.6966 23.1676 92.5475C19.4638 90.3963 13.3948 90.3589 9.68064 92.4602C5.96648 94.5636 5.96648 98.072 9.68064 100.256Z" fill="#C5C7D1"/>
|
||||
<path d="M156.561 58.9954C158.145 59.9099 158.147 61.4105 156.565 62.3292L84.8407 104.01C83.259 104.929 80.6693 104.933 79.0855 104.018L6.86416 62.3209C5.28039 61.4064 5.27831 59.9078 6.86208 58.9913L43.0538 38.0116C44.6355 37.095 47.2211 37.1012 48.7986 38.0261L78.94 55.7073C80.5175 56.6322 83.101 56.6364 84.6806 55.7136L114.737 38.1799C116.316 37.2592 118.906 37.253 120.49 38.1675L156.561 58.9933V58.9954Z" fill="white"/>
|
||||
<path d="M157.673 61.0321L157.737 64.9583C157.625 65.534 157.374 66.0515 156.931 66.4859L85.2418 108.102C84.24 108.709 83.1426 108.982 81.96 108.975L81.9641 104.667C82.9888 104.64 84.0093 104.403 85.0236 103.904L156.858 62.1358C157.208 61.8136 157.476 61.4437 157.671 61.0321H157.673Z" fill="#8C8679"/>
|
||||
<path d="M81.9662 104.667L81.962 109.002C81.1099 109.046 80.1767 108.851 79.1645 108.431L7.02629 66.7852C6.34664 66.4526 5.90186 65.9205 5.7439 65.1495L5.79793 60.6372C5.7439 61.2399 6.07229 61.8281 6.98472 62.3955L79.4638 104.23C80.3388 104.521 81.166 104.644 81.9662 104.667Z" fill="#F1EEEA"/>
|
||||
<path d="M84.6808 55.8278C83.1012 56.7486 80.5177 56.7402 78.9443 55.8091L48.7655 37.9886C47.19 37.0596 44.6086 37.0492 43.0269 37.9679L6.85806 58.987C5.27638 59.9057 5.27845 61.4063 6.86222 62.3208L79.0835 104.018C80.6673 104.933 83.257 104.929 84.8387 104.01L156.563 62.3291C158.145 61.4105 158.143 59.9098 156.559 58.9953L120.617 38.2443C119.033 37.3298 116.443 37.3339 114.864 38.2547L84.6808 55.8278Z" stroke="#192147" stroke-width="0.155882" stroke-miterlimit="10"/>
|
||||
<path d="M5.76671 64.8626C5.69396 65.5485 6.10757 66.2469 7.00753 66.7665L78.9441 108.3C80.6069 109.26 83.3234 109.256 84.984 108.291L156.424 66.7748C157.293 66.2697 157.706 65.5984 157.665 64.9354" stroke="#192147" stroke-width="0.155882" stroke-miterlimit="10"/>
|
||||
<path d="M5.75635 60.5958V65.0062" stroke="#192147" stroke-width="0.155882" stroke-miterlimit="10"/>
|
||||
<path d="M157.654 60.868L157.663 65.081" stroke="#192147" stroke-width="0.155882" stroke-miterlimit="10"/>
|
||||
<path d="M80.63 100.14C81.2244 100.483 82.1971 100.483 82.7915 100.14L113.428 82.5022C114.022 82.1592 114.022 81.6001 113.428 81.2572L82.7915 63.6196C82.1971 63.2767 81.2244 63.2788 80.63 63.6196L50.0874 81.253C49.493 81.596 49.493 82.1572 50.0874 82.5001L80.63 100.136V100.14Z" fill="#8C8679"/>
|
||||
<path d="M82.935 99.868L112.162 82.9828L82.378 65.5697C81.9665 65.3286 81.4573 65.3307 81.0478 65.576L51.6006 83.1283L80.6633 99.9407C81.2806 100.296 82.2637 100.286 82.935 99.868Z" fill="#F1EEEA"/>
|
||||
<path d="M51.4553 83.1278L81.0376 65.6337C81.445 65.3926 81.9521 65.3905 82.3616 65.6295L112.268 83.0551" stroke="black" stroke-width="0.155882" stroke-miterlimit="10"/>
|
||||
<path d="M81.7128 63.5222C82.0953 63.5222 82.4507 63.6053 82.7146 63.757L113.351 81.3946C113.588 81.5317 113.719 81.7043 113.719 81.8809C113.719 82.0576 113.588 82.2322 113.351 82.3673L82.7146 100.005C82.4507 100.157 82.0953 100.24 81.7128 100.24C81.3304 100.24 80.9729 100.157 80.709 100.003L50.1664 82.3673C49.9295 82.2301 49.7985 82.0576 49.7985 81.8789C49.7985 81.7001 49.9295 81.5276 50.1664 81.3904L80.709 63.757C80.9729 63.6053 81.3304 63.5201 81.7128 63.5201M81.7128 63.3642C81.32 63.3642 80.9293 63.4494 80.63 63.6219L50.0874 81.2553C49.493 81.5983 49.493 82.1594 50.0874 82.5024L80.63 100.138C80.9272 100.31 81.32 100.396 81.7128 100.396C82.1057 100.396 82.4943 100.31 82.7915 100.14L113.428 82.5024C114.022 82.1594 114.022 81.6003 113.428 81.2574L82.7915 63.6198C82.4943 63.4494 82.1036 63.3642 81.7128 63.3642Z" fill="black"/>
|
||||
<path d="M43.7713 78.9837C44.3658 79.3267 45.3385 79.3267 45.9329 78.9837L76.569 61.3462C77.1634 61.0032 77.1634 60.4441 76.569 60.1012L45.9329 42.4636C45.3385 42.1207 44.3658 42.1228 43.7713 42.4636L13.2288 60.097C12.6344 60.44 12.6344 61.0012 13.2288 61.3441L43.7713 78.9796V78.9837Z" fill="#8C8679"/>
|
||||
<path d="M46.0742 78.7116L75.3011 61.8264L45.5172 44.4133C45.1056 44.1722 44.5964 44.1743 44.187 44.4196L14.7397 61.9719L43.8025 78.7843C44.4197 79.1398 45.4028 79.1294 46.0742 78.7116Z" fill="#F1EEEA"/>
|
||||
<path d="M14.5942 61.9718L44.1765 44.4777C44.5839 44.2366 45.0911 44.2345 45.5005 44.4735L75.4071 61.8991" stroke="black" stroke-width="0.155882" stroke-miterlimit="10"/>
|
||||
<path d="M44.852 42.3661C45.2344 42.3661 45.5898 42.4492 45.8538 42.6009L76.4899 60.2385C76.7268 60.3757 76.8577 60.5482 76.8577 60.7249C76.8577 60.9015 76.7268 61.0761 76.4899 61.2112L45.8538 78.8488C45.5898 79.0005 45.2344 79.0836 44.852 79.0836C44.4696 79.0836 44.1121 79.0005 43.8481 78.8467L13.3056 61.2112C13.0686 61.074 12.9377 60.9015 12.9377 60.7228C12.9377 60.544 13.0686 60.3715 13.3056 60.2344L43.8481 42.6009C44.1121 42.4492 44.4696 42.364 44.852 42.364M44.852 42.2081C44.4592 42.2081 44.0684 42.2933 43.7691 42.4659L13.2266 60.0993C12.6322 60.4422 12.6322 61.0034 13.2266 61.3463L43.7691 78.9818C44.0663 79.1543 44.4592 79.2395 44.852 79.2395C45.2448 79.2395 45.6335 79.1543 45.9307 78.9839L76.5668 61.3463C77.1612 61.0034 77.1612 60.4443 76.5668 60.1013L45.9307 42.4638C45.6335 42.2933 45.2427 42.2081 44.852 42.2081Z" fill="black"/>
|
||||
<path d="M117.709 78.7655C118.304 79.1085 119.276 79.1085 119.871 78.7655L150.507 61.1279C151.101 60.785 151.101 60.2259 150.507 59.883L119.871 42.2454C119.276 41.9025 118.304 41.9045 117.709 42.2454L87.1668 59.8788C86.5723 60.2218 86.5723 60.7829 87.1668 61.1259L117.709 78.7613V78.7655Z" fill="#8C8679"/>
|
||||
<path d="M120.012 78.4932L149.239 61.608L119.455 44.1949C119.044 43.9538 118.534 43.9559 118.125 44.2011L88.6777 61.7535L117.74 78.5659C118.358 78.9213 119.341 78.9109 120.012 78.4932Z" fill="#F1EEEA"/>
|
||||
<path d="M88.532 61.7534L118.114 44.2592C118.522 44.0181 119.029 44.0161 119.438 44.2551L149.345 61.6806" stroke="black" stroke-width="0.155882" stroke-miterlimit="10"/>
|
||||
<path d="M118.79 42.1477C119.173 42.1477 119.528 42.2308 119.792 42.3825L150.428 60.0201C150.665 60.1573 150.796 60.3298 150.796 60.5065C150.796 60.6831 150.665 60.8577 150.428 60.9928L119.792 78.6304C119.528 78.7821 119.173 78.8652 118.79 78.8652C118.408 78.8652 118.05 78.7821 117.786 78.6283L87.2438 60.9928C87.0069 60.8556 86.8759 60.6831 86.8759 60.5044C86.8759 60.3256 87.0069 60.1531 87.2438 60.0159L117.786 42.3825C118.05 42.2308 118.408 42.1456 118.79 42.1456M118.79 41.9897C118.397 41.9897 118.007 42.0749 117.707 42.2474L87.1648 59.8808C86.5704 60.2238 86.5704 60.785 87.1648 61.1279L117.707 78.7634C118.005 78.9359 118.397 79.0211 118.79 79.0211C119.183 79.0211 119.572 78.9359 119.869 78.7655L150.505 61.1279C151.099 60.785 151.099 60.2259 150.505 59.8829L119.869 42.2454C119.572 42.0749 119.181 41.9897 118.79 41.9897Z" fill="black"/>
|
||||
<g opacity="0.51">
|
||||
<path d="M15.2864 19.7318L104.927 47.032C107.872 48.0733 112.056 47.6244 115.07 45.8328C118.599 51.6544 123.059 53.1634 127.393 53.2486C139.934 51.721 142.443 38.4169 135.027 31.4376C139.498 20.9685 131.425 14.6376 124.666 13.8811L15.5774 12.0271L15.2864 19.7339V19.7318Z" fill="#BEE8EE"/>
|
||||
<path d="M15.3007 19.3183L15.2861 19.7319L15.6831 19.8545" stroke="black" stroke-width="0.155882" stroke-miterlimit="10" stroke-dasharray="1.48 1.48"/>
|
||||
<path d="M16.4751 20.0957L104.927 47.0343C107.641 47.9945 111.407 47.6869 114.34 46.2299" stroke="black" stroke-width="0.155882" stroke-miterlimit="10" stroke-dasharray="1.48 1.48"/>
|
||||
<path d="M114.708 46.0386C114.831 45.972 114.951 45.9035 115.07 45.8328C115.142 45.9533 115.215 46.0697 115.288 46.1861" stroke="black" stroke-width="0.155882" stroke-miterlimit="10" stroke-dasharray="1.48 1.48"/>
|
||||
<path d="M115.741 46.8741C119.154 51.8374 123.329 53.1675 127.392 53.2486C139.591 51.7625 142.297 39.1361 135.611 32.0237" stroke="black" stroke-width="0.155882" stroke-miterlimit="10" stroke-dasharray="1.48 1.48"/>
|
||||
<path d="M135.324 31.7266C135.226 31.6289 135.126 31.5333 135.025 31.4377C135.079 31.3088 135.133 31.1821 135.185 31.0532" stroke="black" stroke-width="0.155882" stroke-miterlimit="10" stroke-dasharray="1.48 1.48"/>
|
||||
<path d="M135.478 30.2737C138.893 20.4989 131.171 14.6086 124.666 13.8791L16.4087 12.0396" stroke="black" stroke-width="0.155882" stroke-miterlimit="10" stroke-dasharray="1.48 1.48"/>
|
||||
<path d="M15.9929 12.0334L15.5772 12.0272L15.5605 12.4429" stroke="black" stroke-width="0.155882" stroke-miterlimit="10" stroke-dasharray="1.48 1.48"/>
|
||||
<path d="M15.5313 13.2055L15.3152 18.9358" stroke="black" stroke-width="0.155882" stroke-miterlimit="10" stroke-dasharray="1.48 1.48"/>
|
||||
</g>
|
||||
<path opacity="0.5" d="M131.221 60.9052C130.714 60.6101 130.157 60.3606 129.567 60.1549C131.419 58.2677 130.959 55.8089 128.185 54.196C124.857 52.2631 119.401 52.2277 116.063 54.1191C115.122 54.6512 114.446 55.2851 114.037 55.9627C111.056 55.3807 107.633 55.7528 105.27 57.0913C101.932 58.9806 101.932 62.1356 105.27 64.0997C108.358 65.9184 113.259 66.0826 116.612 64.5736C116.722 65.7542 117.551 66.9222 119.102 67.8368C122.44 69.8009 127.896 69.8362 131.223 67.9137C134.551 65.9911 134.551 62.8381 131.223 60.9052H131.221Z" fill="#8C8679"/>
|
||||
<g clip-path="url(#clip0_3133_20615)">
|
||||
<path d="M131.35 33.1345C127.586 37.457 121.007 37.9113 116.685 34.1472C112.362 30.3831 111.908 23.8039 115.672 19.4814C119.436 15.159 126.015 14.7047 130.338 18.4688C134.66 22.2329 135.114 28.8121 131.35 33.1345Z" fill="#3E4771" stroke="#192147" stroke-width="0.179265" stroke-miterlimit="10"/>
|
||||
<path d="M134.232 24.5222C133.817 22.1638 132.62 19.9238 130.673 18.2285C126.151 14.2936 119.299 14.7667 115.362 19.2875C113.431 21.5046 112.561 24.2838 112.712 27.0044L114.982 26.7442C115.002 25.6044 115.404 24.4653 116.21 23.5406C118.023 21.4586 121.193 21.2397 123.274 23.0527C124.077 23.7512 124.603 24.6534 124.842 25.6128L134.232 24.5222Z" fill="#F1EEEA"/>
|
||||
<path d="M134.232 24.5222C133.817 22.1638 132.62 19.9238 130.673 18.2285C126.151 14.2936 119.299 14.7667 115.362 19.2875C113.431 21.5046 112.561 24.2838 112.712 27.0044L114.982 26.7442C115.002 25.6044 115.404 24.4653 116.21 23.5406C118.023 21.4586 121.193 21.2397 123.274 23.0527C124.077 23.7512 124.603 24.6534 124.842 25.6128L134.232 24.5222Z" fill="#ED6E85" stroke="#192147" stroke-width="0.179265" stroke-miterlimit="10"/>
|
||||
<path d="M123.581 15.5636C124.648 16.0049 125.665 16.6175 126.584 17.418C128.879 19.4162 130.132 22.1623 130.299 24.9766L134.23 24.5205C133.815 22.1621 132.619 19.922 130.672 18.2268C128.624 16.4436 126.099 15.5693 123.583 15.5618L123.581 15.5636Z" fill="#BC3857"/>
|
||||
<path d="M124.992 26.7985C125 27.9754 124.596 29.1604 123.763 30.1176C121.95 32.1995 118.78 32.4184 116.698 30.6054C115.865 29.8802 115.331 28.9362 115.104 27.9337L112.841 28.1882C113.235 30.5886 114.438 32.8723 116.419 34.594C120.938 38.5292 127.794 38.0558 131.729 33.5369C133.688 31.2873 134.555 28.4609 134.375 25.7017L124.994 26.7967L124.992 26.7985Z" fill="#F1EEEA"/>
|
||||
<path d="M127.646 32.7806C125.53 35.2104 122.573 36.4734 119.586 36.5154C123.737 38.1431 128.635 37.0933 131.731 33.5387C133.69 31.2892 134.557 28.4628 134.376 25.7036L130.308 26.1794C130.191 28.5338 129.315 30.8678 127.648 32.7821L127.646 32.7806Z" fill="#E2DED5"/>
|
||||
<path d="M124.992 26.7985C125 27.9754 124.596 29.1604 123.763 30.1176C121.95 32.1995 118.78 32.4184 116.698 30.6054C115.865 29.8802 115.331 28.9362 115.104 27.9337L112.841 28.1882C113.235 30.5886 114.438 32.8723 116.419 34.594C120.938 38.5292 127.794 38.0558 131.729 33.5369C133.688 31.2873 134.555 28.4609 134.375 25.7017L124.994 26.7967L124.992 26.7985Z" stroke="#192147" stroke-width="0.179265" stroke-miterlimit="10"/>
|
||||
<path d="M123.041 29.4898C121.574 31.1752 119.011 31.3522 117.326 29.8845C115.64 28.4169 115.463 25.854 116.931 24.1686C118.399 22.4832 120.963 22.3078 122.647 23.7739C124.33 25.24 124.508 27.8063 123.041 29.4898Z" fill="#E2DED5"/>
|
||||
<path d="M117.324 29.8831C117.841 30.3336 118.439 30.6261 119.064 30.771C120.145 30.6573 121.188 30.1584 121.958 29.2751C123.521 27.4798 123.379 24.779 121.679 23.1497C120.086 22.416 118.136 22.7811 116.929 24.1672C115.461 25.8526 115.64 28.417 117.324 29.8831Z" fill="#F1EEEA"/>
|
||||
<path d="M123.041 29.4898C121.574 31.1752 119.011 31.3522 117.326 29.8845C115.64 28.4169 115.463 25.854 116.931 24.1686C118.399 22.4832 120.963 22.3078 122.647 23.7739C124.33 25.24 124.508 27.8063 123.041 29.4898Z" stroke="#192147" stroke-width="0.179265" stroke-miterlimit="10"/>
|
||||
<path d="M121.501 24.3576C121.2 24.0955 120.862 23.9054 120.506 23.7792C119.477 23.6062 118.385 23.951 117.65 24.7946C116.529 26.0816 116.665 28.0409 117.952 29.1616C118.253 29.4238 118.591 29.6139 118.947 29.7401C119.976 29.913 121.068 29.5682 121.803 28.7246C122.924 27.4376 122.788 25.4784 121.501 24.3576Z" fill="white"/>
|
||||
<path d="M121.944 24.4323C121.412 23.998 120.778 23.769 120.135 23.7388C119.324 23.7898 118.532 24.146 117.956 24.8076C116.816 26.1162 116.954 28.1092 118.263 29.2488C118.569 29.5156 118.913 29.7104 119.274 29.8379C120.321 30.0147 121.432 29.6635 122.178 28.8073C123.297 27.5221 123.182 25.5835 121.942 24.4341L121.944 24.4323Z" fill="#F1EEEA"/>
|
||||
<path d="M120.624 23.7998C120.83 23.9093 121.027 24.043 121.211 24.2032C122.532 25.3537 122.671 27.3669 121.521 28.6882C120.875 29.429 119.959 29.7973 119.048 29.7772C120.188 30.139 121.487 29.8188 122.32 28.8617C123.441 27.5747 123.306 25.6154 122.019 24.4947C121.606 24.1352 121.124 23.9059 120.622 23.8016L120.624 23.7998Z" fill="#E2DED5"/>
|
||||
<path d="M122.32 28.8617C121.2 30.1487 119.24 30.284 117.953 29.1633C116.666 28.0425 116.531 26.0833 117.652 24.7962C118.773 23.5092 120.732 23.3739 122.019 24.4947C123.306 25.6155 123.441 27.5747 122.32 28.8617Z" stroke="#192147" stroke-width="0.179265" stroke-miterlimit="10"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip1_3133_20615)">
|
||||
<path d="M113.034 44.3846C107.945 47.0214 101.659 45.0262 99.0224 39.9371C96.3855 34.848 98.3807 28.5621 103.47 25.9253C108.559 23.2885 114.845 25.2837 117.482 30.3728C120.119 35.4619 118.123 41.7478 113.034 44.3846Z" fill="#3E4771" stroke="#192147" stroke-width="0.179265" stroke-miterlimit="10"/>
|
||||
<path d="M118.879 37.4341C119.36 35.0881 119.07 32.5651 117.882 30.2731C115.122 24.9516 108.576 22.8736 103.253 25.6314C100.643 26.9839 98.812 29.2488 97.9523 31.8343L100.16 32.4269C100.597 31.374 101.39 30.4624 102.479 29.8983C104.93 28.6283 107.958 29.5896 109.228 32.0408C109.718 32.9852 109.876 34.0177 109.746 34.9978L118.879 37.4341Z" fill="#F1EEEA"/>
|
||||
<path d="M118.879 37.4341C119.36 35.0881 119.07 32.5651 117.882 30.2731C115.122 24.9516 108.576 22.8736 103.253 25.6314C100.643 26.9839 98.812 29.2488 97.9523 31.8343L100.16 32.4269C100.597 31.374 101.39 30.4624 102.479 29.8983C104.93 28.6283 107.958 29.5896 109.228 32.0408C109.718 32.9852 109.876 34.0177 109.746 34.9978L118.879 37.4341Z" fill="#ED6E85" stroke="#192147" stroke-width="0.179265" stroke-miterlimit="10"/>
|
||||
<path d="M112.265 25.1884C113.095 25.9911 113.816 26.9343 114.376 28.0166C115.776 30.7183 115.933 33.7328 115.054 36.4117L118.878 37.4321C119.358 35.0861 119.069 32.563 117.881 30.271C116.632 27.8602 114.605 26.119 112.267 25.1873L112.265 25.1884Z" fill="#BC3857"/>
|
||||
<path d="M109.449 36.1553C109.024 37.2529 108.213 38.2064 107.086 38.7903C104.635 40.0604 101.606 39.0991 100.336 36.6479C99.8281 35.6674 99.6779 34.593 99.8354 33.5773L97.6375 32.9825C97.1222 35.36 97.4018 37.9259 98.6113 40.2551C101.368 45.5755 107.918 47.6546 113.238 44.8979C115.887 43.5256 117.732 41.2155 118.578 38.5832L109.451 36.1542L109.449 36.1553Z" fill="#F1EEEA"/>
|
||||
<path d="M109.72 42.6938C106.859 44.176 103.644 44.264 100.851 43.2053C104.113 46.2446 109.055 47.0682 113.24 44.8998C115.888 43.5275 117.733 41.2175 118.579 38.5851L114.621 37.5324C113.647 39.6792 111.974 41.5281 109.721 42.6959L109.72 42.6938Z" fill="#E2DED5"/>
|
||||
<path d="M109.449 36.1553C109.024 37.2529 108.213 38.2064 107.086 38.7903C104.635 40.0604 101.606 39.0991 100.336 36.6479C99.8281 35.6674 99.6779 34.593 99.8354 33.5773L97.6375 32.9825C97.1222 35.36 97.4018 37.9259 98.6113 40.2551C101.368 45.5755 107.918 47.6546 113.238 44.8979C115.887 43.5256 117.732 41.2155 118.578 38.5832L109.451 36.1542L109.449 36.1553Z" stroke="#192147" stroke-width="0.179265" stroke-miterlimit="10"/>
|
||||
<path d="M106.646 37.9417C104.662 38.9698 102.213 38.1926 101.185 36.2083C100.157 34.224 100.934 31.7754 102.918 30.7473C104.903 29.7192 107.352 30.4985 108.38 32.4807C109.407 34.4629 108.628 36.9147 106.646 37.9417Z" fill="#E2DED5"/>
|
||||
<path d="M101.184 36.2058C101.499 36.8149 101.948 37.3066 102.476 37.671C103.524 37.9627 104.677 37.882 105.717 37.3432C107.831 36.248 108.691 33.6838 107.708 31.5438C106.497 30.2763 104.549 29.8992 102.917 30.7448C100.933 31.7729 100.157 34.2236 101.184 36.2058Z" fill="#F1EEEA"/>
|
||||
<path d="M106.646 37.9417C104.662 38.9698 102.213 38.1926 101.185 36.2083C100.157 34.224 100.934 31.7754 102.918 30.7473C104.903 29.7192 107.352 30.4985 108.38 32.4807C109.407 34.4629 108.628 36.9147 106.646 37.9417Z" stroke="#192147" stroke-width="0.179265" stroke-miterlimit="10"/>
|
||||
<path d="M107.1 32.6027C106.916 32.2483 106.671 31.9471 106.386 31.6989C105.493 31.1602 104.351 31.0794 103.357 31.594C101.842 32.3791 101.248 34.251 102.033 35.7662C102.217 36.1207 102.461 36.4218 102.746 36.67C103.639 37.2088 104.782 37.2896 105.775 36.775C107.291 35.9899 107.885 34.118 107.1 32.6027Z" fill="white"/>
|
||||
<path d="M107.483 32.8342C107.149 32.235 106.643 31.789 106.056 31.5248C105.283 31.2741 104.416 31.3144 103.637 31.7179C102.096 32.5162 101.492 34.4203 102.29 35.9611C102.477 36.3219 102.725 36.6294 103.014 36.8807C103.923 37.4299 105.085 37.5115 106.093 36.9892C107.607 36.2052 108.212 34.3599 107.481 32.8353L107.483 32.8342Z" fill="#F1EEEA"/>
|
||||
<path d="M106.489 31.7616C106.64 31.939 106.774 32.1359 106.886 32.3524C107.692 33.908 107.082 35.8315 105.526 36.6375C104.654 37.0894 103.666 37.0951 102.826 36.7416C103.753 37.4968 105.079 37.6766 106.206 37.0927C107.722 36.3076 108.316 34.4357 107.531 32.9204C107.279 32.4344 106.915 32.0441 106.487 31.7627L106.489 31.7616Z" fill="#E2DED5"/>
|
||||
<path d="M106.206 37.0925C104.691 37.8776 102.819 37.2834 102.034 35.7681C101.249 34.2529 101.843 32.381 103.358 31.5959C104.873 30.8107 106.745 31.4049 107.53 32.9202C108.316 34.4355 107.721 36.3074 106.206 37.0925Z" stroke="#192147" stroke-width="0.179265" stroke-miterlimit="10"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip2_3133_20615)">
|
||||
<path d="M126.757 50.8789C121.026 50.8789 116.362 46.2156 116.362 40.4839C116.362 34.7522 121.026 30.089 126.757 30.089C132.489 30.089 137.152 34.7522 137.152 40.4839C137.152 46.2156 132.489 50.8789 126.757 50.8789Z" fill="#3E4771" stroke="#192147" stroke-width="0.179265" stroke-miterlimit="10"/>
|
||||
<path d="M135.144 47.3963C136.65 45.5343 137.554 43.1609 137.554 40.5794C137.551 34.5848 132.694 29.728 126.7 29.728C123.76 29.728 121.092 30.8968 119.14 32.797L120.827 34.3387C121.7 33.6049 122.823 33.1603 124.049 33.1603C126.81 33.1603 129.057 35.4071 129.057 38.1677C129.057 39.2314 128.722 40.2209 128.155 41.0312L135.144 47.3963Z" fill="#F1EEEA"/>
|
||||
<path d="M135.144 47.3963C136.65 45.5343 137.554 43.1609 137.554 40.5794C137.551 34.5848 132.694 29.728 126.7 29.728C123.76 29.728 121.092 30.8968 119.14 32.797L120.827 34.3387C121.7 33.6049 122.823 33.1603 124.049 33.1603C126.81 33.1603 129.057 35.4071 129.057 38.1677C129.057 39.2314 128.722 40.2209 128.155 41.0312L135.144 47.3963Z" fill="#ED6E85" stroke="#192147" stroke-width="0.179265" stroke-miterlimit="10"/>
|
||||
<path d="M134.905 33.481C135.274 34.5757 135.479 35.7445 135.479 36.9635C135.479 40.0062 134.231 42.755 132.219 44.7293L135.144 47.3943C136.65 45.5324 137.554 43.1589 137.554 40.5775C137.554 37.8622 136.555 35.3836 134.908 33.481H134.905Z" fill="#BC3857"/>
|
||||
<path d="M127.36 41.923C126.478 42.7022 125.319 43.1755 124.049 43.1755C121.289 43.1755 119.042 40.9287 119.042 38.168C119.042 37.0637 119.403 36.0407 120.01 35.2113L118.332 33.6721C116.781 35.546 115.849 37.9529 115.851 40.5773C115.851 46.5695 120.71 51.4288 126.703 51.4288C129.686 51.4288 132.386 50.2265 134.349 48.2785L127.362 41.923H127.36Z" fill="#F1EEEA"/>
|
||||
<path d="M124.592 47.8528C121.37 47.8528 118.475 46.4521 116.482 44.2269C117.98 48.4264 121.989 51.4309 126.702 51.4309C129.685 51.4309 132.386 50.2286 134.349 48.2806L131.318 45.5247C129.465 46.9828 127.13 47.8552 124.592 47.8552V47.8528Z" fill="#E2DED5"/>
|
||||
<path d="M127.36 41.923C126.478 42.7022 125.319 43.1755 124.049 43.1755C121.289 43.1755 119.042 40.9287 119.042 38.168C119.042 37.0637 119.403 36.0407 120.01 35.2113L118.332 33.6721C116.781 35.546 115.849 37.9529 115.851 40.5773C115.851 46.5695 120.71 51.4288 126.703 51.4288C129.686 51.4288 132.386 50.2265 134.349 48.2785L127.362 41.923H127.36Z" stroke="#192147" stroke-width="0.179265" stroke-miterlimit="10"/>
|
||||
<path d="M124.049 42.2192C121.814 42.2192 119.998 40.4027 119.998 38.1678C119.998 35.933 121.814 34.1165 124.049 34.1165C126.284 34.1165 128.101 35.9354 128.101 38.1678C128.101 40.4003 126.282 42.2192 124.049 42.2192Z" fill="#E2DED5"/>
|
||||
<path d="M119.998 38.1655C119.998 38.8515 120.17 39.4944 120.471 40.0609C121.267 40.8019 122.328 41.2608 123.5 41.2608C125.88 41.2608 127.823 39.3797 127.936 37.0278C127.443 35.3451 125.887 34.1141 124.049 34.1141C121.814 34.1141 119.998 35.933 119.998 38.1655Z" fill="#F1EEEA"/>
|
||||
<path d="M124.049 42.2192C121.814 42.2192 119.998 40.4027 119.998 38.1678C119.998 35.933 121.814 34.1165 124.049 34.1165C126.284 34.1165 128.101 35.9354 128.101 38.1678C128.101 40.4003 126.282 42.2192 124.049 42.2192Z" stroke="#192147" stroke-width="0.179265" stroke-miterlimit="10"/>
|
||||
<path d="M126.908 37.6874C126.908 37.2883 126.829 36.9082 126.691 36.5569C126.146 35.6677 125.168 35.0702 124.049 35.0702C122.343 35.0702 120.954 36.4589 120.954 38.1655C120.954 38.5646 121.033 38.9447 121.172 39.296C121.717 40.1852 122.694 40.7827 123.813 40.7827C125.519 40.7827 126.908 39.394 126.908 37.6874Z" fill="white"/>
|
||||
<path d="M127.142 38.0698C127.121 37.3838 126.877 36.7552 126.478 36.2508C125.907 35.6724 125.118 35.3091 124.241 35.3091C122.505 35.3091 121.093 36.7217 121.093 38.457C121.093 38.8633 121.172 39.2505 121.313 39.6067C121.867 40.5126 122.861 41.1197 123.997 41.1197C125.701 41.1197 127.087 39.7597 127.14 38.0698H127.142Z" fill="#F1EEEA"/>
|
||||
<path d="M126.753 36.6596C126.805 36.8866 126.834 37.1233 126.834 37.3671C126.834 39.1191 125.407 40.546 123.655 40.546C122.673 40.546 121.793 40.0967 121.21 39.3963C121.685 40.4934 122.78 41.2631 124.049 41.2631C125.756 41.2631 127.145 39.8744 127.145 38.1678C127.145 37.6204 127.001 37.1065 126.75 36.6596H126.753Z" fill="#E2DED5"/>
|
||||
<path d="M124.049 41.2631C122.343 41.2631 120.954 39.8744 120.954 38.1678C120.954 36.4612 122.343 35.0725 124.049 35.0725C125.756 35.0725 127.145 36.4612 127.145 38.1678C127.145 39.8744 125.756 41.2631 124.049 41.2631Z" stroke="#192147" stroke-width="0.179265" stroke-miterlimit="10"/>
|
||||
</g>
|
||||
<path opacity="0.5" d="M71.4705 88.4507L81.3201 85.8901L95.9107 90.0844L106.673 82.4752L90.2408 78.8775L80.6093 79.6382L71.4705 88.4507Z" fill="#8C8679"/>
|
||||
<g clip-path="url(#clip3_3133_20615)">
|
||||
<path d="M72.5032 75.0715L83.3463 68.4796L94.2872 75.0715L83.3952 81.3605L72.5032 75.0715Z" fill="#02BE9E"/>
|
||||
<path opacity="0.75" d="M83.3698 57.3939L83.3952 68.4793L72.5032 75.0712L83.3698 57.3939Z" fill="#02BE9E"/>
|
||||
<path opacity="0.75" d="M83.3696 57.3939L83.395 68.4793L94.287 75.0712L83.3696 57.3939Z" fill="#02BE9E"/>
|
||||
<path opacity="0.5" d="M83.3696 57.3939L83.395 81.3602L94.287 75.0712L83.3696 57.3939Z" fill="#02BE9E"/>
|
||||
<path opacity="0.25" d="M83.3698 57.3939L83.3952 81.3602L72.5032 75.0712L83.3698 57.3939Z" fill="#02BE9E"/>
|
||||
<path d="M83.3931 81.2258L83.3462 57.5896" stroke="white" stroke-width="0.146529" stroke-miterlimit="10"/>
|
||||
<path d="M72.5032 75.0712L83.3463 57.3939L94.2872 75.0712L83.3952 81.3602L72.5032 75.0712Z" stroke="#192147" stroke-width="0.146529" stroke-miterlimit="10"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip4_3133_20615)">
|
||||
<path d="M60.5273 82.049L71.3705 75.4571L82.3114 82.049L71.4194 88.338L60.5273 82.049Z" fill="#02BE9E"/>
|
||||
<path opacity="0.5" d="M71.394 64.3716L71.4194 75.457L60.5273 82.0489L71.394 64.3716Z" fill="#02BE9E"/>
|
||||
<path opacity="0.75" d="M71.3938 64.3717L71.4192 75.4571L82.3112 82.049L71.3938 64.3717Z" fill="#02BE9E"/>
|
||||
<path opacity="0.5" d="M71.3938 64.3717L71.4192 88.338L82.3112 82.049L71.3938 64.3717Z" fill="#02BE9E"/>
|
||||
<path opacity="0.25" d="M71.394 64.3716L71.4194 88.3379L60.5273 82.0489L71.394 64.3716Z" fill="#02BE9E"/>
|
||||
<path d="M71.4173 88.2032L71.3704 64.5671" stroke="white" stroke-width="0.146529" stroke-miterlimit="10"/>
|
||||
<path d="M60.5273 82.0489L71.3705 64.3716L82.3114 82.0489L71.4194 88.3379L60.5273 82.0489Z" stroke="#192147" stroke-width="0.146529" stroke-miterlimit="10"/>
|
||||
</g>
|
||||
<path d="M103.019 81.6623L90.2407 78.8772L81.3201 85.8898L95.9107 90.0841L103.019 81.6623Z" fill="#02BE9E"/>
|
||||
<path opacity="0.75" d="M92.0759 66.5791L95.9106 90.084L103.019 81.6622L92.0759 66.5791Z" fill="#02BE9E"/>
|
||||
<path opacity="0.5" d="M92.0757 66.5791L103.019 81.6622L90.2405 78.8771L92.0757 66.5791Z" fill="#02BE9E"/>
|
||||
<path opacity="0.75" d="M92.076 66.5791L81.3201 85.8898L90.2407 78.8771L92.076 66.5791Z" fill="#02BE9E"/>
|
||||
<path opacity="0.5" d="M92.076 66.5791L95.9107 90.084L81.3201 85.8898L92.076 66.5791Z" fill="#02BE9E"/>
|
||||
<path d="M95.9106 90.084L92.0759 66.5791" stroke="white" stroke-width="0.155882" stroke-linejoin="round"/>
|
||||
<path d="M92.076 66.5791L103.019 81.6622L95.9107 90.084L81.3201 85.8898L92.076 66.5791Z" stroke="black" stroke-width="0.155882" stroke-linejoin="round"/>
|
||||
<path d="M29.9431 64.809L43.9663 60.7727L54.109 66.9893L67.4131 59.2471L47.1297 50.3036L29.9431 64.809Z" fill="#A49DD4"/>
|
||||
<g clip-path="url(#clip5_3133_20615)">
|
||||
<path d="M52.7036 51.8037L41.8376 58.0103V55.828L52.7036 50.3219V51.8037Z" fill="#7067AB"/>
|
||||
<path d="M41.8374 58.0102L31.9427 52.0917L31.875 50.0664L41.8374 55.8278V58.0102Z" fill="#A49DD4"/>
|
||||
<path d="M42.4966 56.2079L53.5677 49.8224V39.2358L42.5075 45.6192L42.4966 56.2079Z" fill="#9A97F1"/>
|
||||
<path d="M43.3803 46.1231L52.6946 40.7458V49.3181L43.3716 54.6954L43.3803 46.1231Z" fill="#7067AB" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M43.3803 46.123L51.8784 41.2192L51.8217 48.9513L43.3716 53.6433L43.3803 46.123Z" fill="#323A60"/>
|
||||
<path d="M43.3803 46.123L51.8784 41.217L51.8238 42.8385C49.0195 43.7551 46.2021 45.3766 43.3716 47.5306L43.3803 46.1208V46.123Z" fill="#192147"/>
|
||||
<path d="M43.3803 46.123L51.8784 41.2192L51.8217 48.9513L43.3716 53.6433L43.3803 46.123Z" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M31.4932 49.8461L42.4966 56.2077L42.5075 45.6189L32.7808 39.9579C32.2919 39.469 31.5324 40.1543 31.5303 40.7959L31.4932 49.8461Z" fill="#DECEFD"/>
|
||||
<path d="M40.9712 55.3499L42.4967 56.2076L42.5076 45.6188L40.9712 44.7066V55.3499Z" fill="#B3B1FD"/>
|
||||
<path d="M43.8191 33.6595L53.5699 39.2333L42.5097 45.6166L32.2483 39.7046L42.5097 33.6639C42.9134 33.4282 43.4132 33.426 43.8191 33.6595Z" fill="#EAE0FF"/>
|
||||
<path d="M51.9223 38.3298L53.5699 39.2333L42.5098 45.6166L40.9734 44.7066C40.9734 44.7066 48.8517 40.1193 51.9223 38.3298Z" fill="#DECEFD"/>
|
||||
<path d="M31.5352 41.1974L31.5024 49.8461L31.8756 50.0665L31.9433 52.0917L41.8381 58.0103L52.704 51.8058V50.324L53.5682 49.8243V39.2355M53.5682 39.2355L42.508 45.6189L32.814 39.9775M53.5682 39.2355L43.9026 33.653C43.4945 33.4174 42.9903 33.4195 42.5844 33.6574L31.9913 39.8858" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M31.4932 49.8461L42.4966 56.2077V45.6189" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M53.5679 49.8221L42.4968 56.2076" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M51.9222 38.3298L40.9712 44.7066V55.3499" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M41.8376 55.828V58.0104" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M52.695 49.3182L51.822 48.9516" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M31.5282 41.4877C31.5282 41.4877 31.4496 39.1351 32.8136 39.9775" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M39.293 45.6189V52.6046L34.6555 49.9443V43L39.293 45.6189Z" fill="#C6B4EB"/>
|
||||
<path d="M39.293 52.1812V52.6046L34.6555 49.9443V43L35.0287 43.2204V49.8221L39.293 52.1812Z" fill="#A49DD4"/>
|
||||
<path d="M39.293 45.6189V52.6046L34.6555 49.9443V43L39.293 45.6189Z" stroke="black" stroke-width="0.163676" stroke-miterlimit="10"/>
|
||||
<path d="M35.0286 43.1682V49.8221L39.2449 52.1485" stroke="black" stroke-width="0.163676" stroke-miterlimit="10"/>
|
||||
<path d="M34.6555 49.9443L35.0287 49.8221" stroke="black" stroke-width="0.163676" stroke-miterlimit="10"/>
|
||||
<path d="M36.2901 50.0578L35.4456 49.6039V48.3491L36.2901 48.803V50.0578Z" fill="#F9AE3B" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M36.2901 48.5301L35.4456 48.0761V46.8213L36.2901 47.2752V48.5301Z" fill="#F5911E" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M37.3901 44.543V51.125" stroke="black" stroke-width="0.163676" stroke-miterlimit="10"/>
|
||||
<path d="M39.2451 50.3219L37.3901 49.3595" stroke="black" stroke-width="0.163676" stroke-miterlimit="10"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip6_3133_20615)">
|
||||
<path d="M40.8147 58.6189L29.9487 64.8255V62.6432L40.8147 57.1371V58.6189Z" fill="#7067AB"/>
|
||||
<path d="M29.949 64.8254L20.0542 58.9069L19.9866 56.8817L29.949 62.6431V64.8254Z" fill="#A49DD4"/>
|
||||
<path d="M30.6079 63.0229L41.679 56.6373V46.0507L30.6188 52.4341L30.6079 63.0229Z" fill="#9A97F1"/>
|
||||
<path d="M31.4919 52.9383L40.8062 47.561V56.1333L31.4832 61.5106L31.4919 52.9383Z" fill="#7067AB" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M31.4919 52.9383L39.99 48.0346L39.9332 55.7666L31.4832 60.4587L31.4919 52.9383Z" fill="#323A60"/>
|
||||
<path d="M31.4919 52.9383L39.99 48.0324L39.9354 49.6539C37.1311 50.5705 34.3137 52.192 31.4832 54.346L31.4919 52.9362V52.9383Z" fill="#192147"/>
|
||||
<path d="M31.4919 52.9383L39.99 48.0346L39.9332 55.7666L31.4832 60.4587L31.4919 52.9383Z" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M19.6045 56.6613L30.6079 63.0228L30.6188 52.4341L20.8921 46.7731C20.4032 46.2842 19.6438 46.9695 19.6416 47.6111L19.6045 56.6613Z" fill="#DECEFD"/>
|
||||
<path d="M29.0825 62.1651L30.608 63.0228L30.6189 52.434L29.0825 51.5218V62.1651Z" fill="#B3B1FD"/>
|
||||
<path d="M31.9302 40.4749L41.681 46.0487L30.6208 52.432L20.3594 46.52L30.6208 40.4793C31.0245 40.2436 31.5243 40.2414 31.9302 40.4749Z" fill="#EAE0FF"/>
|
||||
<path d="M40.0336 45.145L41.6813 46.0485L30.6211 52.4318L29.0847 51.5218C29.0847 51.5218 36.963 46.9345 40.0336 45.145Z" fill="#DECEFD"/>
|
||||
<path d="M19.6463 48.0127L19.6135 56.6613L19.9867 56.8817L20.0544 58.9069L29.9491 64.8255L40.8151 58.6211V57.1392L41.6793 56.6395V46.0507M41.6793 46.0507L30.6191 52.4341L20.9251 46.7927M41.6793 46.0507L32.0137 40.4683C31.6056 40.2326 31.1014 40.2348 30.6955 40.4726L20.1024 46.7011" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M19.6045 56.6613L30.6079 63.0229V52.4341" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M41.679 56.6373L30.6079 63.0228" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M40.0336 45.145L29.0825 51.5218V62.1651" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M29.9487 62.6432V64.8255" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M40.8063 56.1332L39.9333 55.7666" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M19.6398 48.3029C19.6398 48.3029 19.5612 45.9503 20.9252 46.7927" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M27.4043 52.434V59.4197L22.7668 56.7595V49.8152L27.4043 52.434Z" fill="#C6B4EB"/>
|
||||
<path d="M27.4043 58.9964V59.4197L22.7668 56.7595V49.8152L23.14 50.0356V56.6372L27.4043 58.9964Z" fill="#A49DD4"/>
|
||||
<path d="M27.4043 52.434V59.4197L22.7668 56.7595V49.8152L27.4043 52.434Z" stroke="black" stroke-width="0.163676" stroke-miterlimit="10"/>
|
||||
<path d="M23.1401 49.9833V56.6373L27.3564 58.9637" stroke="black" stroke-width="0.163676" stroke-miterlimit="10"/>
|
||||
<path d="M22.7668 56.7595L23.14 56.6373" stroke="black" stroke-width="0.163676" stroke-miterlimit="10"/>
|
||||
<path d="M24.4015 56.873L23.5569 56.4191V55.1642L24.4015 55.6182V56.873Z" fill="#F9AE3B" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M24.4015 55.3453L23.5569 54.8913V53.6365L24.4015 54.0904V55.3453Z" fill="#F5911E" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M25.5012 51.3582V57.9402" stroke="black" stroke-width="0.163676" stroke-miterlimit="10"/>
|
||||
<path d="M27.3562 57.1371L25.5012 56.1747" stroke="black" stroke-width="0.163676" stroke-miterlimit="10"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip7_3133_20615)">
|
||||
<path d="M65.1342 58.3466L54.2683 64.5532V62.3709L65.1342 56.8648V58.3466Z" fill="#7067AB"/>
|
||||
<path d="M54.2681 64.5531L44.3733 58.6346L44.3057 56.6094L54.2681 62.3708V64.5531Z" fill="#A49DD4"/>
|
||||
<path d="M54.9275 62.7506L65.9986 56.365V45.7784L54.9384 52.1618L54.9275 62.7506Z" fill="#9A97F1"/>
|
||||
<path d="M55.8112 52.666L65.1255 47.2887V55.861L55.8025 61.2383L55.8112 52.666Z" fill="#7067AB" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M55.8112 52.666L64.3093 47.7623L64.2526 55.4943L55.8025 60.1864L55.8112 52.666Z" fill="#323A60"/>
|
||||
<path d="M55.8112 52.666L64.3093 47.7601L64.2547 49.3816C61.4504 50.2982 58.633 51.9197 55.8025 54.0736L55.8112 52.6638V52.666Z" fill="#192147"/>
|
||||
<path d="M55.8112 52.666L64.3093 47.7623L64.2526 55.4943L55.8025 60.1864L55.8112 52.666Z" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M43.9241 56.389L54.9275 62.7506L54.9384 52.1618L45.2117 46.5008C44.7228 46.0119 43.9634 46.6972 43.9612 47.3388L43.9241 56.389Z" fill="#DECEFD"/>
|
||||
<path d="M53.4021 61.8928L54.9276 62.7505L54.9385 52.1617L53.4021 51.2495V61.8928Z" fill="#B3B1FD"/>
|
||||
<path d="M56.25 40.2026L66.0008 45.7763L54.9406 52.1597L44.6792 46.2477L54.9406 40.207C55.3444 39.9713 55.8441 39.9691 56.25 40.2026Z" fill="#EAE0FF"/>
|
||||
<path d="M64.3529 44.8727L66.0006 45.7761L54.9404 52.1595L53.4041 51.2495C53.4041 51.2495 61.2823 46.6622 64.3529 44.8727Z" fill="#DECEFD"/>
|
||||
<path d="M43.9654 47.7403L43.9326 56.389L44.3058 56.6094L44.3735 58.6346L54.2682 64.5532L65.1342 58.3488V56.8669L65.9984 56.3672V45.7784M65.9984 45.7784L54.9382 52.1618L45.2442 46.5204M65.9984 45.7784L56.3327 40.196C55.9246 39.9603 55.4205 39.9624 55.0146 40.2003L44.4215 46.4287" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M43.9241 56.389L54.9275 62.7506V52.1618" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M65.9986 56.365L54.9275 62.7505" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M64.3531 44.8727L53.4021 51.2495V61.8928" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M54.2683 62.3709V64.5532" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M65.1254 55.8609L64.2524 55.4943" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M43.9588 48.0306C43.9588 48.0306 43.8803 45.678 45.2443 46.5204" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M51.7237 52.1618V59.1475L47.0862 56.4872V49.5429L51.7237 52.1618Z" fill="#C6B4EB"/>
|
||||
<path d="M51.7237 58.7241V59.1475L47.0862 56.4872V49.5429L47.4594 49.7634V56.365L51.7237 58.7241Z" fill="#A49DD4"/>
|
||||
<path d="M51.7237 52.1618V59.1475L47.0862 56.4872V49.5429L51.7237 52.1618Z" stroke="black" stroke-width="0.163676" stroke-miterlimit="10"/>
|
||||
<path d="M47.4595 49.7111V56.365L51.6758 58.6914" stroke="black" stroke-width="0.163676" stroke-miterlimit="10"/>
|
||||
<path d="M47.0862 56.4872L47.4594 56.365" stroke="black" stroke-width="0.163676" stroke-miterlimit="10"/>
|
||||
<path d="M48.7205 56.6007L47.876 56.1468V54.892L48.7205 55.3459V56.6007Z" fill="#F9AE3B" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M48.7205 55.0732L47.876 54.6192V53.3644L48.7205 53.8183V55.0732Z" fill="#F5911E" stroke="black" stroke-width="0.163676" stroke-linejoin="round"/>
|
||||
<path d="M49.8208 51.0859V57.6679" stroke="black" stroke-width="0.163676" stroke-miterlimit="10"/>
|
||||
<path d="M51.6758 56.8648L49.8208 55.9024" stroke="black" stroke-width="0.163676" stroke-miterlimit="10"/>
|
||||
</g>
|
||||
<path d="M16.4002 31.8138C24.9129 31.8138 31.8139 24.9129 31.8139 16.4002C31.8139 7.88749 24.9129 0.986572 16.4002 0.986572C7.8875 0.986572 0.986572 7.88749 0.986572 16.4002C0.986572 24.9129 7.8875 31.8138 16.4002 31.8138Z" fill="#F1EEEA" stroke="#192147" stroke-width="0.155882" stroke-miterlimit="10"/>
|
||||
<path d="M13.5091 28.5382C20.2977 28.5382 25.801 22.9093 25.801 15.9657C25.801 9.02217 20.2977 3.39331 13.5091 3.39331C6.72053 3.39331 1.21729 9.02217 1.21729 15.9657C1.21729 22.9093 6.72053 28.5382 13.5091 28.5382Z" fill="white"/>
|
||||
<path d="M13.6722 15.1865C14.1438 14.7149 14.1787 13.9852 13.7501 13.5566C13.3215 13.128 12.5918 13.1629 12.1202 13.6345C11.6487 14.1061 11.6138 14.8358 12.0423 15.2644C12.4709 15.6929 13.2006 15.6581 13.6722 15.1865Z" fill="#D66C7B"/>
|
||||
<path d="M10.7048 14.1609C10.9287 13.5327 10.6755 12.8684 10.1392 12.6773C9.60288 12.4861 8.98659 12.8404 8.76266 13.4686C8.53872 14.0968 8.79193 14.761 9.32822 14.9522C9.86452 15.1434 10.4808 14.7891 10.7048 14.1609Z" fill="#5CABDF"/>
|
||||
<path d="M7.83996 13.5183C8.04798 12.8955 7.84591 12.2668 7.38863 12.1141C6.93135 11.9613 6.39203 12.3424 6.18401 12.9651C5.976 13.5879 6.17807 14.2166 6.63535 14.3693C7.09263 14.5221 7.63195 14.141 7.83996 13.5183Z" fill="#63C740"/>
|
||||
<path d="M6.51182 17.7764C6.983 17.7526 7.33808 17.2008 7.30492 16.5439C7.27176 15.887 6.86291 15.3737 6.39173 15.3975C5.92055 15.4213 5.56546 15.9731 5.59862 16.63C5.63178 17.2869 6.04064 17.8002 6.51182 17.7764Z" fill="#C98DEF"/>
|
||||
<path d="M9.30561 18.4199C9.86763 18.3537 10.2601 17.764 10.1822 17.1028C10.1043 16.4416 9.5855 15.9593 9.02348 16.0255C8.46146 16.0917 8.06902 16.6814 8.14692 17.3426C8.22483 18.0038 8.74359 18.4861 9.30561 18.4199Z" fill="#FAA669"/>
|
||||
<path d="M6.70387 20.945C7.13529 20.7947 7.31907 20.1965 7.11436 19.609C6.90965 19.0215 6.39397 18.6671 5.96255 18.8174C5.53113 18.9677 5.34735 19.5659 5.55205 20.1534C5.75676 20.7409 6.27245 21.0953 6.70387 20.945Z" fill="#3AEFC3"/>
|
||||
<defs>
|
||||
<clipPath id="clip0_3133_20615">
|
||||
<rect width="21.8822" height="21.8822" fill="white" transform="translate(108.109 27.4781) rotate(-48.95)"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip1_3133_20615">
|
||||
<rect width="21.8822" height="21.8822" fill="white" transform="translate(93.4976 30.583) rotate(-27.39)"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2_3133_20615">
|
||||
<rect width="21.8822" height="21.8822" fill="white" transform="translate(115.76 29.6376)"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3_3133_20615">
|
||||
<rect width="21.9872" height="24.1891" fill="white" transform="translate(72.4016 57.2556)"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip4_3133_20615">
|
||||
<rect width="21.9872" height="24.1891" fill="white" transform="translate(60.4255 64.2329)"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip5_3133_20615">
|
||||
<rect width="22.2316" height="24.6955" fill="white" transform="translate(31.4189 33.3958)"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip6_3133_20615">
|
||||
<rect width="22.2316" height="24.6955" fill="white" transform="translate(19.5305 40.2107)"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip7_3133_20615">
|
||||
<rect width="22.2316" height="24.6955" fill="white" transform="translate(43.8501 39.9388)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 39 KiB |
+123
@@ -0,0 +1,123 @@
|
||||
<svg width="160" height="121" viewBox="0 0 160 121" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M131.036 80.538L77.375 111.519C75.4255 112.645 73.0256 112.645 71.0762 111.519L27.8638 86.5716C26.1903 85.6066 26.1921 83.1907 27.8638 82.2275L81.0015 51.5986" fill="#C5C7D1"/>
|
||||
<path d="M121.778 100.48C129.609 100.48 135.957 96.8146 135.957 92.2936C135.957 87.7726 129.609 84.1076 121.778 84.1076C113.948 84.1076 107.6 87.7726 107.6 92.2936C107.6 96.8146 113.948 100.48 121.778 100.48Z" fill="#C5C7D1"/>
|
||||
<path d="M37.597 84.448L39.5714 85.5963L71.3344 104.055C72.2156 104.566 73.1984 104.824 74.1829 104.826L74.1028 88.322C74.0618 88.3273 74.0209 88.3345 73.9799 88.338C73.6933 88.3629 73.4067 88.3665 73.1183 88.3487C72.2566 88.2935 71.4002 88.0425 70.6204 87.5885L36.1798 67.574C35.9751 67.4547 35.7953 67.314 35.6351 67.1609L34.7627 65.2702V79.5236C34.7627 81.5532 35.8416 83.4296 37.597 84.4498V84.448Z" fill="#E2DED5"/>
|
||||
<path d="M74.1829 104.891C73.1717 104.89 72.1747 104.619 71.3006 104.111L37.5632 84.5047C35.7935 83.4774 34.6951 81.5671 34.6951 79.5215V65.2681C34.6951 65.2361 34.7164 65.2094 34.7467 65.2022C34.777 65.1951 34.809 65.2111 34.8215 65.2396L35.6885 67.1197C35.8523 67.2746 36.0285 67.4081 36.2119 67.5149L70.6525 87.5294C71.4038 87.9656 72.2566 88.2256 73.1218 88.2808C73.4049 88.2986 73.6916 88.295 73.9729 88.2701C73.9942 88.2683 74.0174 88.2647 74.0387 88.2629L74.0939 88.2558C74.1135 88.2558 74.1313 88.2594 74.1455 88.2718C74.1598 88.2843 74.1669 88.3021 74.1669 88.3217L74.247 104.825C74.247 104.843 74.2399 104.861 74.2274 104.873C74.215 104.886 74.1972 104.893 74.1794 104.893L74.1829 104.891ZM37.6291 84.3889L71.3664 103.996C72.2014 104.48 73.1503 104.744 74.1153 104.758L74.0369 88.3983C74.0209 88.4 74.0031 88.4018 73.9871 88.4036C73.6987 88.4285 73.4049 88.4321 73.1147 88.4143C72.2299 88.3573 71.3558 88.092 70.5867 87.6452L36.146 67.6306C35.9484 67.5167 35.7615 67.3743 35.5888 67.2069C35.5835 67.2016 35.5781 67.1944 35.5746 67.1873L34.8304 65.5726V79.5215C34.8304 81.519 35.9039 83.3848 37.6308 84.3889H37.6291Z" fill="#192147"/>
|
||||
<path d="M98.9599 68.2715L57.5528 44.2085C57.3161 44.5841 56.992 44.9634 56.6075 45.339L35.774 62.9341C35.5853 63.0925 35.425 63.2688 35.2897 63.4575C35.0868 63.7406 34.9443 64.0521 34.8589 64.3744C34.8019 64.5898 34.7699 64.8088 34.7645 65.0295C34.7556 65.3909 34.8162 65.7523 34.9408 66.0942C34.9924 66.2366 35.0565 66.3737 35.1313 66.5072C35.2043 66.639 35.2862 66.7671 35.3823 66.8864C35.5959 67.1535 35.8612 67.3885 36.1817 67.5736L70.6223 87.5882C71.4021 88.0422 72.2584 88.2932 73.1201 88.3484C73.4067 88.3662 73.6951 88.3626 73.9818 88.3377C74.2684 88.3128 74.5515 88.2665 74.831 88.197C75.6695 87.9923 76.4689 87.5971 77.1597 87.0149L98.0145 69.402C98.3955 69.0798 98.7142 68.697 98.9599 68.2715Z" fill="#F1EEEA"/>
|
||||
<path d="M118.743 25.2978C118.743 24.769 118.599 24.2598 118.344 23.8165L105.725 31.1017L105.309 31.342C105.531 31.8476 105.608 32.4173 105.506 32.987L102.108 52.0527L99.4639 66.8846C99.3553 67.4971 99.1132 68.0739 98.7625 68.5777C98.7625 68.5777 98.7625 68.5777 98.7625 68.5795C98.7019 68.6668 98.6343 68.7522 98.5666 68.8359C98.5559 68.8484 98.5488 68.8608 98.5381 68.8733C98.4794 68.9445 98.4153 69.0121 98.3512 69.078C98.3298 69.1012 98.3103 69.1243 98.2889 69.1475C98.2408 69.1973 98.1874 69.2418 98.1358 69.2881C98.0948 69.3255 98.0575 69.3647 98.0147 69.4003L77.1599 87.0131C76.4709 87.5953 75.6715 87.9923 74.8312 88.1953C74.5908 88.254 74.3469 88.2932 74.103 88.3199V88.4071L74.176 104.824C75.1677 104.827 76.1593 104.574 77.0459 104.062L94.6481 93.8995L117.468 80.7232C117.744 80.563 117.988 80.3618 118.191 80.1286C118.232 80.0823 118.271 80.0342 118.309 79.9844C118.384 79.8864 118.453 79.7832 118.514 79.6764C118.544 79.623 118.574 79.5678 118.601 79.5126C118.656 79.4022 118.702 79.2882 118.743 79.1707C118.843 78.877 118.895 78.5654 118.895 78.2468L118.745 25.296L118.743 25.2978Z" fill="#8C8679"/>
|
||||
<path d="M74.1972 104.891C74.1527 104.891 74.1082 104.868 74.1082 104.826L74.0352 88.3218C74.0352 88.288 74.0601 88.2595 74.0939 88.2542C74.3556 88.2257 74.5906 88.1847 74.8132 88.1313C75.6553 87.9266 76.4511 87.5225 77.1134 86.9616L97.9682 69.3488C97.9931 69.3274 98.0181 69.3043 98.043 69.2811L98.132 69.1992C98.1676 69.1672 98.2032 69.1351 98.2388 69.1013C98.2495 69.0906 98.2602 69.0782 98.2691 69.0675C98.2798 69.0568 98.2887 69.0443 98.2994 69.0337C98.3617 68.9678 98.4258 68.9019 98.4827 68.8325L98.5112 68.7951C98.5896 68.699 98.6519 68.6171 98.7035 68.5423C99.0542 68.0384 99.2874 67.4776 99.3943 66.8741L105.437 32.9747C105.533 32.4317 105.467 31.8762 105.243 31.3689C105.228 31.3368 105.243 31.3012 105.271 31.2834L118.307 23.7561C118.339 23.7383 118.38 23.749 118.398 23.7811C118.663 24.2404 118.804 24.7638 118.805 25.2961L118.955 78.2469C118.955 78.5691 118.903 78.8878 118.8 79.1923C118.759 79.3115 118.711 79.429 118.654 79.543C118.625 79.6 118.597 79.6551 118.565 79.7103C118.503 79.8189 118.431 79.9258 118.355 80.0255C118.316 80.0753 118.277 80.1252 118.236 80.1732C118.024 80.4153 117.776 80.6201 117.497 80.7821L77.0724 104.121C76.1983 104.626 75.2013 104.891 74.19 104.891H74.1972ZM74.1705 88.3806V88.4073L74.2417 104.756C75.2137 104.749 76.1698 104.489 77.0119 104.003L117.436 80.6646C117.703 80.5115 117.94 80.3157 118.141 80.0842C118.18 80.0379 118.22 79.9916 118.255 79.9436C118.328 79.8474 118.396 79.7477 118.455 79.6427C118.485 79.5911 118.513 79.5376 118.54 79.4842C118.593 79.3756 118.64 79.2635 118.679 79.1495C118.777 78.8593 118.827 78.5549 118.827 78.2469L118.677 25.2961C118.677 24.8101 118.552 24.3312 118.319 23.9057L105.392 31.3689C105.608 31.8869 105.67 32.4477 105.572 32.9979L99.5296 66.8973C99.4192 67.5186 99.1788 68.0972 98.8174 68.6171C98.7623 68.6972 98.6982 68.7791 98.618 68.8788L98.6074 68.893C98.6074 68.893 98.5949 68.909 98.5896 68.9162C98.529 68.9874 98.4649 69.0568 98.4008 69.1245C98.3919 69.1351 98.383 69.144 98.3741 69.1547C98.3617 69.169 98.351 69.1814 98.3367 69.1939C98.3011 69.2295 98.2638 69.2633 98.2246 69.2971L98.1374 69.3773C98.1106 69.4022 98.0857 69.4271 98.0572 69.4503L77.2024 87.0631C76.5241 87.6364 75.7087 88.0512 74.847 88.2595C74.6351 88.3111 74.4144 88.3503 74.1705 88.3788V88.3806Z" fill="#192147"/>
|
||||
<path d="M57.5527 44.2069L98.9598 68.2699C99.2055 67.8444 99.3764 67.378 99.4636 66.8866L105.506 32.989C105.533 32.8412 105.547 32.6935 105.551 32.5475C105.556 32.3285 105.535 32.1113 105.49 31.8994C105.46 31.7588 105.421 31.6217 105.371 31.4882C105.321 31.3547 105.26 31.2247 105.191 31.1001C104.947 30.6639 104.587 30.2882 104.135 30.0265L66.2105 7.98774C65.3559 7.49103 64.2664 7.99486 64.0919 8.96871L58.0566 42.8236C57.9693 43.315 57.7966 43.7814 57.5527 44.2069Z" fill="#E2DED5"/>
|
||||
<path d="M98.9597 68.3374C98.9473 68.3374 98.9366 68.3338 98.9259 68.3285L57.5189 44.2655C57.4868 44.2477 57.4761 44.2067 57.4939 44.1747C57.7378 43.751 57.9052 43.2934 57.9906 42.8127L64.026 8.95784C64.1132 8.47181 64.4194 8.07479 64.8663 7.8665C65.3149 7.6582 65.8152 7.68134 66.2425 7.93059L104.167 29.9694C104.619 30.2329 104.993 30.6121 105.248 31.0696C105.319 31.196 105.381 31.3296 105.433 31.4666C105.485 31.6037 105.526 31.7461 105.556 31.8886C105.602 32.1058 105.624 32.3283 105.618 32.5509C105.615 32.7022 105.6 32.8535 105.574 33.0013L99.5312 66.8989C99.4422 67.3956 99.2713 67.8674 99.0185 68.3036C99.0096 68.3196 98.9954 68.3303 98.9776 68.3338C98.9722 68.3338 98.9669 68.3356 98.9597 68.3356V68.3374ZM57.6435 44.1818L98.9348 68.179C99.1609 67.7713 99.3158 67.3333 99.3977 66.8757L105.44 32.9781C105.465 32.8357 105.479 32.6915 105.483 32.5473C105.488 32.3354 105.467 32.1236 105.424 31.9153C105.396 31.78 105.356 31.6447 105.307 31.5129C105.257 31.383 105.198 31.2548 105.13 31.1337C104.886 30.6975 104.53 30.3361 104.1 30.0851L66.1749 8.04631C65.7867 7.82021 65.3292 7.80062 64.9215 7.98756C64.5138 8.17627 64.2343 8.53946 64.1559 8.98099L58.1206 42.8359C58.0369 43.3094 57.8749 43.7634 57.6417 44.1836L57.6435 44.1818Z" fill="#192147"/>
|
||||
<path d="M61.9894 41.0447L66.791 14.1029C66.921 13.373 67.7381 12.9938 68.3791 13.3676L100.619 32.1039C101.395 32.5543 101.807 33.4427 101.648 34.3257L96.8466 61.2676C96.7167 61.9975 95.8995 62.3767 95.2586 62.0028L63.0185 43.2666C62.2422 42.8162 61.831 41.9278 61.9894 41.0447Z" fill="#8C8679"/>
|
||||
<path d="M95.7963 62.2168C95.6004 62.2168 95.4046 62.1652 95.2283 62.0619L62.9882 43.3257C62.1906 42.8628 61.7651 41.9424 61.9272 41.0344L66.7287 14.0926C66.7946 13.7222 67.0278 13.4196 67.3696 13.2611C67.7115 13.1027 68.0925 13.1205 68.4165 13.3092L100.657 32.0455C101.454 32.5084 101.88 33.4288 101.719 34.3368L96.9179 61.2786C96.852 61.6489 96.6188 61.9515 96.2787 62.11C96.1239 62.1812 95.9618 62.2168 95.7998 62.2168H95.7963ZM67.845 13.2896C67.7026 13.2896 67.5584 13.3217 67.4231 13.384C67.1222 13.5228 66.9157 13.7899 66.8587 14.1175L62.0571 41.0593C61.9058 41.9121 62.3064 42.7773 63.0541 43.2117L95.2942 61.948C95.5809 62.1153 95.9173 62.1296 96.2182 61.9907C96.5191 61.8518 96.7256 61.5848 96.7826 61.2572L101.584 34.3154C101.735 33.4626 101.335 32.5974 100.587 32.163L68.347 13.4267C68.1904 13.3359 68.0177 13.2896 67.845 13.2896Z" fill="#192147"/>
|
||||
<path d="M63.3734 41.5738L68.296 13.4L100.563 32.1772C101.341 32.6294 101.75 33.5214 101.59 34.4062L96.776 60.903L63.3716 41.5738H63.3734Z" fill="#192147"/>
|
||||
<path d="M65.9951 38.586L69.8976 14.2897L100.562 32.1768C101.34 32.629 101.75 33.5209 101.589 34.4058L97.1314 58.232L67.4069 41.406C66.3779 40.8666 65.81 39.7325 65.9933 38.586H65.9951Z" fill="#3E4771"/>
|
||||
<path d="M69.782 25.992L70.2965 26.3053C70.8377 26.6347 71.1421 27.183 71.0282 27.9308C70.9143 28.6785 70.503 28.8138 69.9867 28.4987L69.4473 28.1694L69.782 25.992ZM70.001 28.0732C70.2912 28.2495 70.5155 28.1889 70.5956 27.6673C70.6757 27.1457 70.503 26.8644 70.2128 26.6881L70.1434 26.6454L69.9315 28.0305L70.001 28.0732Z" fill="#3DB67B"/>
|
||||
<path d="M71.2387 28.8102L71.6748 29.0754L71.8831 27.7242L71.447 27.4589L71.511 27.0458L72.8036 27.8345L72.7395 28.2476L72.3033 27.9823L72.095 29.3336L72.5312 29.5988L72.4671 30.0119L71.1746 29.2232L71.2387 28.8102Z" fill="#3DB67B"/>
|
||||
<path d="M72.8692 29.9552L73.163 29.7647C73.284 29.9855 73.4425 30.1831 73.6241 30.2935C73.8057 30.4038 73.8982 30.3718 73.9143 30.265C73.9392 30.1083 73.8342 30.0033 73.6704 29.8092L73.446 29.5404C73.2538 29.3232 73.0935 29.0223 73.1416 28.7054C73.1968 28.344 73.519 28.2265 73.925 28.4722C74.1493 28.6093 74.3611 28.846 74.5 29.1345L74.2401 29.316C74.1261 29.1255 74.0193 28.9956 73.8359 28.8834C73.6971 28.798 73.592 28.8087 73.5724 28.9351C73.5529 29.0615 73.6704 29.1896 73.8377 29.3766L74.0478 29.6294C74.2757 29.8858 74.4021 30.1564 74.3558 30.4644C74.3006 30.8258 73.9926 30.9807 73.5297 30.6994C73.2769 30.5463 73.033 30.2792 72.8674 29.9516L72.8692 29.9552Z" fill="#3DB67B"/>
|
||||
<path d="M74.9271 29.1271L75.3543 29.387L75.2173 30.2754L75.2279 30.2825L75.9134 29.7288L76.3816 30.0137L75.1087 30.9697L75.0179 31.5644L74.5906 31.3044L74.9253 29.1271H74.9271ZM75.3543 30.6635L75.6606 30.4303L76.1003 32.2249L75.6321 31.94L75.3543 30.6653V30.6635Z" fill="#3DB67B"/>
|
||||
<path d="M78.4363 31.2655L79.6737 32.0185L79.6096 32.4316L78.796 31.9349L78.7283 32.371L79.4209 32.793L79.3568 33.206L78.6642 32.7841L78.5877 33.2861L79.4298 33.7989L79.3657 34.2119L78.0999 33.441L78.4346 31.2637L78.4363 31.2655Z" fill="#3DB67B"/>
|
||||
<path d="M80.0797 32.2659L80.5123 32.5294L80.7384 33.8504L80.8256 34.4273L80.8345 34.4326C80.8505 34.1923 80.8577 33.8629 80.8986 33.6047L81.0161 32.8356L81.4185 33.0813L81.0838 35.2587L80.6511 34.9952L80.425 33.6706L80.3378 33.0973L80.3271 33.092C80.3093 33.3448 80.304 33.6599 80.2648 33.9163L80.1455 34.689L79.7432 34.4433L80.0779 32.2659H80.0797Z" fill="#3DB67B"/>
|
||||
<path d="M81.5945 34.3934C81.7049 33.6706 82.1607 33.4908 82.661 33.7952C82.8977 33.9394 83.0704 34.1887 83.1755 34.4112L82.896 34.575C82.8212 34.4237 82.7304 34.3026 82.5951 34.2207C82.3298 34.0587 82.0966 34.2047 82.0289 34.6409C81.9613 35.0771 82.1144 35.4669 82.3957 35.6379C82.531 35.7198 82.6538 35.7109 82.7607 35.6503L82.9476 36.0901C82.7624 36.2076 82.5381 36.1898 82.2871 36.0367C81.8224 35.7536 81.4824 35.1287 81.5945 34.3934Z" fill="#3DB67B"/>
|
||||
<path d="M83.5242 34.3647L84.1865 34.7689C84.5817 35.0092 84.8826 35.3689 84.8025 35.8869C84.7224 36.405 84.3681 36.405 83.9729 36.1647L83.7325 36.0187L83.6115 36.802L83.1877 36.5439L83.5224 34.3665L83.5242 34.3647ZM83.9996 35.7516C84.2203 35.8869 84.3574 35.8478 84.3895 35.6341C84.4215 35.4205 84.3147 35.2745 84.0921 35.1392L83.8856 35.0146L83.7913 35.627L83.9978 35.7516H83.9996ZM84.2577 35.8495L84.6636 37.4412L84.1918 37.1528L83.9177 35.9866L84.2577 35.8495Z" fill="#3DB67B"/>
|
||||
<path d="M85.4708 37.128L85.0916 35.321L85.542 35.5952L85.6506 36.2343C85.6791 36.4355 85.7111 36.6278 85.7432 36.8361L85.7538 36.8432C85.8393 36.7043 85.923 36.5832 86.0049 36.4497L86.2719 36.0402L86.7117 36.3091L85.8891 37.3844L85.7752 38.1215L85.3533 37.8633L85.4672 37.1262L85.4708 37.128Z" fill="#3DB67B"/>
|
||||
<path d="M86.9765 36.4674L87.6388 36.8698C88.043 37.1172 88.3439 37.4858 88.262 38.0163C88.1801 38.5468 87.8133 38.5504 87.4181 38.3101L87.1777 38.1641L87.0638 38.9029L86.6418 38.6465L86.9765 36.4692V36.4674ZM87.4519 37.9041C87.6833 38.0448 87.8115 37.9914 87.8471 37.7653C87.8827 37.5392 87.7759 37.3843 87.5534 37.2472L87.338 37.1155L87.2365 37.7724L87.4519 37.9041Z" fill="#3DB67B"/>
|
||||
<path d="M89.0649 38.1925L88.5059 37.8525L88.5699 37.4395L90.1099 38.3777L90.0458 38.7907L89.4868 38.4507L89.2162 40.215L88.7943 39.9586L89.0649 38.1943V38.1925Z" fill="#3DB67B"/>
|
||||
<path d="M90.1403 40.3255L90.5764 40.5908L90.7847 39.2395L90.3486 38.9743L90.4126 38.5612L91.7052 39.3499L91.6411 39.7629L91.2049 39.4977L90.9966 40.8489L91.4328 41.1142L91.3687 41.5273L90.0762 40.7386L90.1403 40.3255Z" fill="#3DB67B"/>
|
||||
<path d="M91.8602 40.6226C91.9723 39.8945 92.3373 39.6897 92.7824 39.9603C93.2274 40.231 93.4731 40.8096 93.361 41.5359C93.2488 42.2623 92.8803 42.4884 92.4352 42.2178C91.9901 41.9472 91.7462 41.3668 91.8602 40.6208V40.6226ZM92.9284 41.2724C92.9978 40.8202 92.9123 40.5051 92.7165 40.3858C92.5207 40.2666 92.3622 40.4339 92.2928 40.8861C92.2233 41.3383 92.3052 41.6748 92.5011 41.7923C92.6969 41.9098 92.8554 41.7425 92.9284 41.2724Z" fill="#3DB67B"/>
|
||||
<path d="M93.8255 40.6404L94.2581 40.9039L94.4842 42.2249L94.5697 42.8018L94.5786 42.8071C94.5946 42.5668 94.6017 42.2374 94.6427 41.9793L94.7602 41.2102L95.1625 41.4558L94.8278 43.6332L94.3952 43.3697L94.1691 42.0451L94.0819 41.4719L94.073 41.4665C94.0552 41.7193 94.0498 42.0344 94.0107 42.2908L93.8914 43.0635L93.489 42.8178L93.8237 40.6404H93.8255Z" fill="#3DB67B"/>
|
||||
<path d="M69.2283 30.0441L70.4657 30.7972L70.4016 31.2102L69.588 30.7135L69.5203 31.1497L70.2129 31.5716L70.1488 31.9846L69.4562 31.5627L69.3797 32.0648L70.2218 32.5775L70.1577 32.9905L68.8918 32.2197L69.2265 30.0423L69.2283 30.0441Z" fill="#3DB67B"/>
|
||||
<path d="M70.8717 31.0446L71.3043 31.308L71.5304 32.6291L71.6159 33.2059L71.6248 33.2112C71.6408 32.9709 71.6479 32.6415 71.6889 32.3834L71.8064 31.6143L72.2087 31.8599L71.874 34.0373L71.4414 33.7738L71.2153 32.4492L71.1281 31.876L71.1174 31.8706C71.0996 32.1234 71.0943 32.4386 71.0551 32.6949L70.9358 33.4676L70.5334 33.2219L70.8682 31.0446H70.8717Z" fill="#3DB67B"/>
|
||||
<path d="M73.0062 32.346L73.5118 32.654L73.7575 35.1856L73.3106 34.9132L73.2394 33.6634C73.2251 33.4177 73.2073 33.1275 73.1984 32.8694L73.1877 32.8623C73.1076 33.0652 73.0151 33.2878 72.9349 33.4765L72.5237 34.4307L72.0911 34.1673L73.0062 32.3424V32.346ZM72.6145 33.5014L73.5064 34.0444L73.4477 34.429L72.5557 33.886L72.6145 33.5014Z" fill="#3DB67B"/>
|
||||
<path d="M74.3288 33.1525L74.9555 33.5352C75.3436 33.772 75.6196 34.0747 75.5555 34.4913C75.5252 34.6871 75.3935 34.8349 75.1638 34.7672V34.7797C75.4202 34.9987 75.5341 35.2479 75.4896 35.5399C75.422 35.9832 75.0801 35.9921 74.6742 35.7446L73.9941 35.3298L74.3288 33.1525ZM74.8024 34.3969C75.0071 34.5215 75.1086 34.4735 75.1335 34.3079C75.1585 34.1423 75.0766 34.0266 74.8807 33.9073L74.6902 33.7916L74.6155 34.283L74.8024 34.3969ZM74.6991 35.3405C74.9288 35.4811 75.0534 35.4509 75.0837 35.2515C75.114 35.0521 75.0178 34.9168 74.7864 34.7743L74.5621 34.6373L74.4748 35.2034L74.6991 35.3405Z" fill="#3DB67B"/>
|
||||
<path d="M76.1418 34.2563L76.5638 34.5127L76.2932 36.277L77.1228 36.7826L77.0587 37.1957L75.8071 36.4337L76.1418 34.2563Z" fill="#3DB67B"/>
|
||||
<path d="M77.8184 35.2783L79.0558 36.0314L78.9917 36.4444L78.1781 35.9477L78.1104 36.3839L78.803 36.8058L78.7389 37.2188L78.0463 36.7969L77.9698 37.299L78.8119 37.8117L78.7478 38.2247L77.4819 37.4538L77.8166 35.2765L77.8184 35.2783Z" fill="#3DB67B"/>
|
||||
<path d="M79.4745 36.2861L79.9908 36.5994C80.532 36.9288 80.8365 37.4771 80.7225 38.2249C80.6086 38.9726 80.1973 39.1079 79.681 38.7928L79.1416 38.4634L79.4763 36.2861H79.4745ZM79.6935 38.3673C79.9837 38.5435 80.208 38.483 80.2881 37.9614C80.3683 37.4415 80.1956 37.1584 79.9054 36.9822L79.8359 36.9395L79.6241 38.3246L79.6935 38.3673Z" fill="#3DB67B"/>
|
||||
<path d="M81.9327 38.3369C81.9541 38.1998 81.8722 38.0716 81.7529 37.9986C81.6336 37.9256 81.5375 37.9381 81.436 37.9737L81.2402 37.582C81.4057 37.4877 81.6158 37.4805 81.8419 37.6176C82.1695 37.817 82.4009 38.1517 82.344 38.5203C82.2763 38.96 81.801 38.7303 81.776 39.138L81.4075 38.9137C81.4146 38.4312 81.8918 38.5861 81.9309 38.3369H81.9327ZM81.2348 39.4122C81.2651 39.2128 81.4075 39.1523 81.5731 39.252C81.7387 39.3517 81.8384 39.5617 81.8081 39.7611C81.7778 39.9605 81.6336 40.0264 81.4698 39.9267C81.306 39.827 81.2046 39.6116 81.2366 39.4122H81.2348Z" fill="#3DB67B"/>
|
||||
<path d="M66.9211 22.1039C79.047 24.5911 90.2133 30.6923 100.313 40.8224L101.593 34.4915C101.766 33.5319 101.319 32.5687 100.477 32.0791L68.4344 13.5031L66.9229 22.1057L66.9211 22.1039Z" fill="#192147"/>
|
||||
<path d="M96.8324 61.0721C96.8217 61.0721 96.8092 61.0686 96.7985 61.0632L63.3941 41.7341C63.3692 41.7199 63.3567 41.6932 63.3621 41.6647L68.2847 13.4909C68.2918 13.4553 68.3239 13.4286 68.3612 13.4375C68.3968 13.4446 68.4218 13.4784 68.4147 13.514L63.5009 41.6415L96.8644 60.9475C96.8965 60.9653 96.9072 61.0063 96.8894 61.0383C96.8769 61.0597 96.8537 61.0721 96.8324 61.0721Z" fill="#192147"/>
|
||||
<path d="M62.1674 42.4104C62.1443 42.4104 62.1211 42.3979 62.1087 42.3747C62.0909 42.3427 62.1033 42.3018 62.1372 42.284L63.3976 41.6145C63.4297 41.5967 63.4706 41.6092 63.4884 41.643C63.5062 41.6751 63.4938 41.716 63.46 41.7338L62.1995 42.4032C62.1888 42.4086 62.1781 42.4104 62.1674 42.4104Z" fill="#192147"/>
|
||||
<path d="M117.262 22.7305L109.177 18.0322L79.791 0.955207C78.9079 0.44247 77.8166 0.44069 76.9317 0.953427L64.8433 7.95371C65.3346 7.81128 65.7957 7.80416 66.2088 7.98754L104.134 30.0263C104.668 30.3361 105.072 30.8025 105.309 31.3438L118.344 23.8165C118.088 23.3732 117.719 22.9958 117.262 22.7305Z" fill="#F1EEEA"/>
|
||||
<path d="M105.309 31.4097C105.309 31.4097 105.294 31.4097 105.287 31.4061C105.269 31.4008 105.255 31.3865 105.246 31.3687C105.008 30.824 104.611 30.3789 104.098 30.0816L66.1732 8.04278C65.7994 7.87721 65.3668 7.86831 64.8594 8.01608C64.8273 8.02498 64.7935 8.00895 64.7792 7.97869C64.7668 7.94842 64.7792 7.91103 64.8077 7.89501L76.8962 0.89473C77.7988 0.373092 78.9204 0.373091 79.8213 0.89651L117.292 22.6718C117.751 22.9389 118.134 23.3234 118.399 23.7827C118.417 23.8148 118.407 23.8557 118.374 23.8735L105.339 31.4008C105.328 31.4061 105.317 31.4097 105.305 31.4097H105.309ZM65.527 7.77929C65.7798 7.77929 66.0148 7.82736 66.2356 7.92528L104.166 29.9676C104.68 30.2667 105.084 30.7082 105.337 31.2477L118.252 23.7916C117.999 23.3768 117.646 23.0314 117.226 22.7875L79.7554 1.01223C78.8955 0.511959 77.8255 0.511957 76.9639 1.01045L65.2403 7.79887C65.3383 7.78641 65.4326 7.77929 65.5252 7.77929H65.527Z" fill="#192147"/>
|
||||
<path d="M73.4814 88.4481C73.3585 88.4481 73.2357 88.4446 73.1128 88.4357C72.2245 88.3787 71.3467 88.1116 70.5759 87.6648L36.1353 67.6502C34.3603 66.4788 34.5027 65.3055 34.5098 65.2557L34.6861 65.2806C34.6861 65.2913 34.5597 66.3969 36.2296 67.4989L70.6667 87.5117C71.4144 87.9461 72.2654 88.2042 73.1271 88.2594C73.4084 88.2772 73.695 88.2736 73.9745 88.2487C73.9959 88.2469 74.0173 88.2434 74.0404 88.2416L74.0956 88.2345L74.1152 88.4107L74.0653 88.4179C74.0404 88.4214 74.0155 88.425 73.9905 88.4268C73.8232 88.441 73.6523 88.4481 73.4832 88.4481H73.4814Z" fill="#192147"/>
|
||||
<path d="M74.1134 88.411L74.0938 88.2347C74.3555 88.2062 74.5887 88.1671 74.8112 88.1119C75.6498 87.9071 76.442 87.5048 77.1025 86.9475L97.9574 69.3346C97.9823 69.3133 98.0073 69.2901 98.0304 69.267L98.1194 69.1851C98.155 69.1531 98.1906 69.121 98.2244 69.0872C98.2351 69.0765 98.244 69.0658 98.2547 69.0534C98.2654 69.0409 98.2761 69.0302 98.2868 69.0178C98.3491 68.9519 98.4114 68.886 98.4701 68.8166L98.4986 68.7792C98.577 68.683 98.6375 68.6029 98.6909 68.5282L98.7016 68.5139C99.0398 68.0261 99.2713 67.4689 99.3781 66.8689L105.298 33.0336C105.495 31.9031 104.963 30.7548 103.973 30.1762L66.7695 8.42756C65.8864 7.92195 65.1992 7.76172 64.7274 7.95399C64.3981 8.08752 64.1613 8.40086 64.0242 8.88689L63.8533 8.83882C64.0064 8.29938 64.2788 7.94509 64.6616 7.7902C65.1868 7.57656 65.9256 7.73857 66.8603 8.27445L104.066 30.0248C105.12 30.6408 105.686 31.8639 105.476 33.0656L99.5561 66.9009C99.444 67.5258 99.2036 68.108 98.8404 68.6296C98.7853 68.7098 98.7212 68.7934 98.6393 68.8931C98.6232 68.9145 98.6161 68.9234 98.609 68.9323C98.5485 69.0035 98.4844 69.0729 98.4185 69.1406L98.3918 69.1709C98.3793 69.1851 98.3669 69.1993 98.3544 69.2118C98.3188 69.2474 98.2796 69.283 98.2423 69.3168L98.1568 69.3952C98.1301 69.4201 98.1034 69.445 98.0767 69.47L77.2218 87.0828C76.54 87.6579 75.7228 88.0745 74.8575 88.2845C74.6279 88.3397 74.3857 88.3807 74.1169 88.411H74.1134Z" fill="#192147"/>
|
||||
<path d="M78.3595 0.568973C78.8544 0.568973 79.3475 0.697157 79.7908 0.955306L109.177 18.0323L117.262 22.7306C117.719 22.9959 118.089 23.3733 118.344 23.8166C118.6 24.2599 118.741 24.7691 118.743 25.2978L118.892 78.2486C118.892 78.5673 118.841 78.8789 118.741 79.1726C118.702 79.2901 118.654 79.4041 118.599 79.5144C118.572 79.5696 118.542 79.6248 118.511 79.6782C118.449 79.785 118.381 79.8883 118.307 79.9862C118.269 80.0361 118.23 80.0824 118.189 80.1304C117.986 80.3637 117.742 80.5648 117.466 80.7251L94.646 93.9013L77.0438 104.063C76.1625 104.573 75.1798 104.825 74.1953 104.825C74.1899 104.825 74.1863 104.825 74.181 104.825C74.181 104.825 74.1757 104.825 74.1721 104.825C73.1911 104.822 72.2102 104.566 71.3325 104.055L39.5695 85.5961L37.5951 84.4477C35.8397 83.4276 34.7608 81.5511 34.7608 79.5216L34.7679 65.3483V65.2824C34.7626 65.1988 34.7608 65.1133 34.7626 65.0278C34.7679 64.8071 34.8 64.5881 34.8569 64.3727C34.9424 64.0504 35.0848 63.7389 35.2878 63.4558C35.4231 63.2671 35.5833 63.0908 35.772 62.9324L56.6055 45.3373C56.9901 44.9617 57.3141 44.5807 57.5509 44.2068C57.7966 43.7813 57.9675 43.3149 58.0547 42.8235L64.0901 8.9686C64.1737 8.50215 64.4675 8.14608 64.8431 7.95381L64.9945 7.86479L76.9316 0.951744C77.3732 0.695376 77.8663 0.568973 78.3595 0.568973ZM78.3595 0.39094C77.8271 0.39094 77.3037 0.531585 76.8426 0.798635L64.9055 7.71168L64.7577 7.79892C64.3108 8.03036 64.0028 8.44518 63.9156 8.93833L57.8802 42.7932C57.7966 43.2614 57.6346 43.7065 57.3978 44.1196C57.1841 44.4578 56.8761 44.8264 56.4862 45.2073L35.6581 62.7971C35.4623 62.9627 35.2896 63.1496 35.1436 63.3525C34.9317 63.6481 34.7786 63.9757 34.6842 64.3264C34.6237 64.5525 34.5899 64.7875 34.5845 65.0225C34.5828 65.1062 34.5845 65.1916 34.5899 65.286V65.3465L34.5828 79.5198C34.5828 81.6046 35.7026 83.5522 37.5061 84.5991L39.4805 85.7474L71.2435 104.206C72.1318 104.722 73.1449 104.996 74.1721 105.002H74.181H74.359V104.998C75.3329 104.971 76.2889 104.701 77.1328 104.215L94.735 94.0527L117.555 80.8764C117.846 80.709 118.104 80.4972 118.323 80.2444C118.365 80.1945 118.408 80.1429 118.447 80.0913C118.527 79.988 118.6 79.8776 118.664 79.7637C118.697 79.7067 118.729 79.648 118.757 79.591C118.814 79.4735 118.866 79.3506 118.907 79.2278C119.013 78.9109 119.069 78.5815 119.067 78.2468L118.917 25.2961C118.917 24.7459 118.77 24.2029 118.494 23.7258C118.218 23.2487 117.821 22.8517 117.345 22.5739L109.261 17.8756L79.8745 0.798635C79.4134 0.529805 78.8882 0.38916 78.3541 0.38916L78.3595 0.39094Z" fill="#192147"/>
|
||||
<path d="M91.9844 70.2517C91.9684 69.8938 91.8794 69.536 91.7191 69.187C91.5821 68.8879 91.3916 68.596 91.1476 68.3147C90.9287 68.0619 90.667 67.8179 90.3625 67.5883C90.1756 67.4476 89.9726 67.3105 89.7536 67.1788C89.6326 67.1076 89.5097 67.0382 89.3833 66.9705C89.0291 66.7836 88.6534 66.6198 88.2599 66.4773C87.8505 66.3296 87.4232 66.205 86.9834 66.1035C86.5045 65.9931 86.0114 65.9112 85.5111 65.8578C84.9183 65.7937 84.3147 65.7706 83.713 65.7866C82.7142 65.8115 81.7208 65.9468 80.7932 66.1925C79.9992 66.4026 79.2532 66.6928 78.5909 67.0649C78.5429 67.0916 78.4966 67.1183 78.4503 67.145C77.6491 67.6168 77.0616 68.1669 76.6878 68.7526C76.4563 69.114 76.3068 69.4897 76.2391 69.8707C76.1821 70.1876 76.1839 70.508 76.2409 70.8249C76.2943 71.1133 76.394 71.3982 76.54 71.6777C76.6789 71.9412 76.8587 72.1976 77.0812 72.4468C77.2984 72.6907 77.5566 72.9257 77.8557 73.1483C78.0337 73.28 78.2242 73.4082 78.4307 73.5328C78.5803 73.6218 78.7334 73.7073 78.8918 73.7874C79.3049 73.9975 79.7464 74.1791 80.2093 74.3322C80.7505 74.5102 81.322 74.6491 81.9077 74.747C82.6804 74.877 83.4797 74.9375 84.2773 74.9286C86.1983 74.9055 88.1086 74.48 89.5952 73.6468C90.6225 73.0699 91.3203 72.3703 91.6853 71.6279C91.9061 71.1792 92.0058 70.7163 91.9844 70.2534V70.2517Z" fill="#E2DED5"/>
|
||||
<path d="M84.1152 74.9965C83.3639 74.9965 82.618 74.936 81.8951 74.8132C81.3005 74.7135 80.7255 74.5728 80.1878 74.3948C79.716 74.2399 79.2691 74.0547 78.8614 73.8464C78.7012 73.7645 78.5445 73.6791 78.395 73.5901C78.1885 73.4672 77.9944 73.3373 77.8146 73.202C77.5173 72.9794 77.252 72.7409 77.0295 72.4916C76.8069 72.2424 76.6218 71.9789 76.4794 71.71C76.3298 71.427 76.2265 71.1332 76.1731 70.8377C76.1144 70.5136 76.1126 70.1843 76.1714 69.8585C76.2408 69.4668 76.3939 69.0823 76.6289 68.7173C77.0206 68.1049 77.6206 67.5565 78.4146 67.0883C78.4609 67.0616 78.5089 67.0349 78.5552 67.0064C79.2086 66.6396 79.9546 66.3441 80.7735 66.1269C81.6993 65.8812 82.6856 65.7441 83.7093 65.7174C84.3146 65.7014 84.9217 65.7263 85.5163 65.7904C86.022 65.8438 86.5205 65.9275 86.9976 66.0361C87.4427 66.1376 87.8753 66.264 88.283 66.4118C88.6836 66.556 89.0646 66.7233 89.4153 66.9085C89.5399 66.9743 89.6663 67.0438 89.7891 67.1185C90.0081 67.2485 90.2147 67.3892 90.4051 67.5316C90.7096 67.7612 90.9766 68.0087 91.201 68.2686C91.4466 68.5499 91.6407 68.849 91.7831 69.1552C91.9469 69.5095 92.0377 69.8763 92.0537 70.2448C92.0751 70.7219 91.9718 71.1955 91.7475 71.6513C91.3647 72.4293 90.633 73.1361 89.6307 73.7005C88.1886 74.5105 86.289 74.9681 84.2808 74.9912C84.2274 74.9912 84.1722 74.9912 84.1188 74.9912L84.1152 74.9965ZM84.0636 65.8492C83.9461 65.8492 83.8304 65.8492 83.7129 65.8545C82.7016 65.8812 81.7242 66.0165 80.8091 66.2586C80.0009 66.4723 79.2656 66.7643 78.6211 67.1257C78.5748 67.1524 78.5285 67.1791 78.4822 67.2058C77.7078 67.6633 77.1221 68.1956 76.7428 68.7921C76.5185 69.1428 76.3708 69.5113 76.3049 69.8852C76.2497 70.195 76.2515 70.5083 76.3067 70.8163C76.3583 71.0994 76.4562 71.3789 76.6004 71.6513C76.7375 71.9112 76.9155 72.164 77.131 72.4061C77.3482 72.6483 77.6045 72.8815 77.8965 73.0987C78.0728 73.2304 78.265 73.3586 78.4662 73.4779C78.6122 73.5651 78.7671 73.6506 78.9238 73.7307C79.3261 73.9355 79.7659 74.1171 80.2305 74.2702C80.7628 74.4446 81.3308 74.5835 81.9201 74.6832C82.6874 74.8114 83.4832 74.8719 84.279 74.863C86.2641 74.8399 88.1423 74.3877 89.5648 73.5883C90.544 73.0382 91.2579 72.351 91.6282 71.5979C91.8437 71.1617 91.9416 70.7095 91.9202 70.2555C91.9042 69.9048 91.817 69.5558 91.6621 69.2158C91.5268 68.9202 91.338 68.6318 91.1013 68.3594C90.8823 68.1084 90.6223 67.8663 90.325 67.642C90.1399 67.5013 89.9369 67.3642 89.7215 67.2361C89.6004 67.1631 89.4776 67.0954 89.3547 67.0295C89.0094 66.8479 88.6337 66.6824 88.2385 66.5399C87.8361 66.394 87.4088 66.2693 86.9691 66.1678C86.4973 66.0592 86.0042 65.9774 85.5039 65.9239C85.0303 65.8723 84.5478 65.8474 84.0654 65.8474L84.0636 65.8492Z" fill="#192147"/>
|
||||
<path d="M91.2062 68.8185C91.2027 68.9556 91.1866 69.0909 91.1599 69.2262C91.1332 69.3615 91.0941 69.4951 91.0442 69.6268C90.9926 69.7621 90.9303 69.8974 90.8555 70.0309C90.7736 70.1751 90.6775 70.3176 90.5689 70.4564C90.4425 70.6167 90.2965 70.7751 90.1327 70.9264C89.8745 71.165 89.5701 71.3929 89.2194 71.603C89.1642 71.6368 89.109 71.6689 89.0502 71.7009C88.5945 71.9555 88.096 72.1691 87.569 72.34C87.1399 72.4789 86.6931 72.5893 86.2338 72.6712C85.9347 72.7246 85.632 72.7673 85.324 72.7976C85.0605 72.8243 84.7952 72.8421 84.53 72.851C84.2878 72.8599 84.0457 72.8599 83.8036 72.8546C83.5686 72.8492 83.3354 72.8367 83.1021 72.8172C82.8689 72.7976 82.6392 72.7727 82.4096 72.7406C82.171 72.7068 81.936 72.6658 81.7028 72.6178C81.4482 72.5644 81.199 72.5038 80.9551 72.4344C80.6577 72.3489 80.3693 72.2528 80.0916 72.1424C79.6981 71.9875 79.3243 71.8059 78.9789 71.5994C77.6312 70.7929 76.9618 69.7532 76.9635 68.7153L76.96 69.9241C76.9564 70.9621 77.6258 72.0036 78.9753 72.8083C79.3207 73.0148 79.6928 73.1946 80.088 73.3513C80.3658 73.4616 80.6542 73.5578 80.9515 73.6432C81.1954 73.7127 81.4446 73.7732 81.6992 73.8266C81.9307 73.8747 82.1675 73.9156 82.406 73.9495C82.6357 73.9815 82.8654 74.0082 83.0986 74.026C83.3318 74.0456 83.565 74.0581 83.8 74.0634C84.0422 74.0687 84.2843 74.0687 84.5264 74.0598C84.7917 74.0509 85.0569 74.0331 85.3204 74.0064C85.6267 73.9762 85.9311 73.9334 86.2302 73.88C86.6895 73.7964 87.1364 73.686 87.5654 73.5489C88.0942 73.378 88.5927 73.1661 89.0467 72.9097C89.1037 72.8777 89.1606 72.8457 89.2158 72.8118C89.5665 72.6017 89.871 72.3756 90.1291 72.1353C90.2929 71.984 90.4389 71.8255 90.5653 71.6653C90.6757 71.5264 90.7701 71.384 90.8519 71.2398C90.9267 71.1063 90.9908 70.971 91.0407 70.8356C91.0905 70.7021 91.1297 70.5686 91.1564 70.4351C91.1831 70.2998 91.1991 70.1627 91.2027 70.0274C91.2027 70.006 91.2027 69.9847 91.2027 69.9633L91.2062 68.7544C91.2062 68.7758 91.2062 68.7972 91.2062 68.8185Z" fill="#BC3857"/>
|
||||
<path d="M91.2044 68.6403C91.1901 68.3181 91.11 67.9941 90.9658 67.6807C90.8412 67.4119 90.6703 67.1484 90.4513 66.8956C90.2537 66.6677 90.0169 66.4487 89.7427 66.2404C89.5736 66.1122 89.3902 65.9894 89.1926 65.8719C89.084 65.8078 88.9718 65.7437 88.8579 65.6849C88.5392 65.5176 88.1992 65.3681 87.8449 65.2399C87.4763 65.1063 87.09 64.9942 86.693 64.9034C86.2622 64.8037 85.8171 64.7307 85.3649 64.6826C84.8308 64.6257 84.286 64.6043 83.7447 64.6185C82.8439 64.6417 81.9484 64.7645 81.1116 64.9853C80.3959 65.174 79.723 65.4375 79.1248 65.7722C79.0821 65.7953 79.0393 65.8203 78.9984 65.8452C78.2756 66.2707 77.7468 66.7656 77.4085 67.2944C77.2002 67.6202 77.0649 67.9602 77.0044 68.302C76.9528 68.5887 76.9545 68.8771 77.0062 69.1637C77.0542 69.4237 77.1433 69.6818 77.2768 69.9328C77.4014 70.1696 77.5634 70.4028 77.7646 70.6254C77.9604 70.8444 78.1937 71.0562 78.4625 71.2574C78.6227 71.3767 78.7954 71.4924 78.9806 71.6028C79.1159 71.6829 79.2547 71.7595 79.3972 71.8325C79.7693 72.023 80.1681 72.185 80.5846 72.3238C81.0725 72.4841 81.587 72.6105 82.1157 72.6977C82.8119 72.8152 83.5329 72.8686 84.2539 72.8615C85.9862 72.8419 87.7096 72.4573 89.0502 71.7043C89.9759 71.1844 90.6062 70.5542 90.9355 69.883C91.1349 69.4788 91.2239 69.0605 91.2061 68.6439L91.2044 68.6403Z" fill="#D66C7B"/>
|
||||
<path d="M83.7944 71.6741C83.7713 71.6741 83.7464 71.6723 83.7214 71.6687C83.4793 71.6296 83.3137 71.3999 83.3529 71.1578L84.2395 65.7117C84.2787 65.4696 84.5066 65.3058 84.7505 65.3432C84.9926 65.3824 85.1582 65.612 85.119 65.8542L84.2324 71.3002C84.1968 71.5192 84.0081 71.6741 83.7944 71.6741Z" fill="white"/>
|
||||
<path d="M80.3887 69.4719C80.1679 69.4719 79.9775 69.3081 79.9472 69.0838C79.9151 68.8399 80.0878 68.6173 80.3317 68.5853L88.1884 67.5616C88.4323 67.5295 88.6548 67.7022 88.6869 67.9461C88.7189 68.19 88.5462 68.4126 88.3023 68.4446L80.4457 69.4683C80.4261 69.4701 80.4065 69.4719 80.3869 69.4719H80.3887Z" fill="white"/>
|
||||
<path d="M84.1257 74.1487C82.1567 74.1487 80.1805 73.6876 78.7954 72.7689C77.2785 71.7648 76.6234 70.3583 76.9011 68.7026L77.0329 68.724C76.6946 70.7465 77.8447 71.9785 78.8702 72.6568C81.5549 74.4353 86.4811 74.4763 89.205 72.7422C90.2501 72.0764 91.4304 70.8568 91.1509 68.813H91.142V68.7507L91.2755 68.7418C91.5284 70.4403 90.8358 71.8627 89.2762 72.8544C87.9196 73.7161 86.0271 74.1451 84.1275 74.1451L84.1257 74.1487Z" fill="#192147"/>
|
||||
<path d="M84.1845 72.9506C81.0031 72.9506 77.6382 71.724 76.9403 69.1763C76.8228 66.1747 80.0809 64.8234 82.908 64.5742C86.6966 64.2412 90.8608 65.6655 91.2703 68.6315V68.6387V68.6458C91.1136 70.4546 89.4543 72.5216 85.2705 72.9026C84.9145 72.9346 84.5495 72.9506 84.1845 72.9506ZM84.0065 64.6596C83.6433 64.6596 83.2801 64.6756 82.9205 64.7077C80.1521 64.9516 76.9599 66.2637 77.0739 69.1567C77.8305 71.9127 81.8558 73.0788 85.2599 72.7708C89.3564 72.3987 90.9819 70.3976 91.1385 68.644C90.7718 66.0412 87.3998 64.6614 84.0065 64.6614V64.6596Z" fill="#192147"/>
|
||||
<path d="M79.522 62.9524C79.506 62.5946 79.417 62.2367 79.2567 61.8878C79.1197 61.5887 78.9292 61.2967 78.6852 61.0154C78.4663 60.7626 78.2046 60.5187 77.9001 60.289C77.7132 60.1484 77.5102 60.0113 77.2912 59.8795C77.1702 59.8083 77.0473 59.7389 76.9209 59.6712C76.5667 59.4843 76.191 59.3205 75.7975 59.1781C75.3881 59.0303 74.9608 58.9057 74.521 58.8042C74.0421 58.6938 73.549 58.6119 73.0487 58.5585C72.4559 58.4944 71.8523 58.4713 71.2506 58.4873C70.2518 58.5122 69.2584 58.6476 68.3308 58.8932C67.5368 59.1033 66.7908 59.3935 66.1285 59.7656C66.0805 59.7923 66.0342 59.819 65.9879 59.8457C65.1867 60.3175 64.5992 60.8676 64.2254 61.4534C63.9939 61.8148 63.8444 62.1904 63.7767 62.5714C63.7197 62.8883 63.7215 63.2088 63.7785 63.5257C63.8319 63.8141 63.9316 64.0989 64.0776 64.3785C64.2165 64.6419 64.3963 64.8983 64.6188 65.1476C64.836 65.3915 65.0942 65.6265 65.3933 65.849C65.5713 65.9808 65.7618 66.1089 65.9683 66.2336C66.1179 66.3226 66.271 66.408 66.4294 66.4882C66.8425 66.6982 67.284 66.8798 67.7469 67.0329C68.2881 67.211 68.8596 67.3498 69.4453 67.4478C70.218 67.5777 71.0173 67.6383 71.8149 67.6294C73.7359 67.6062 75.6462 67.1807 77.1328 66.3475C78.1601 65.7707 78.8579 65.071 79.2229 64.3286C79.4437 63.88 79.5434 63.4171 79.522 62.9542V62.9524Z" fill="#E2DED5"/>
|
||||
<path d="M71.6528 67.6971C70.9015 67.6971 70.1556 67.6366 69.4327 67.5137C68.8381 67.414 68.2631 67.2734 67.7254 67.0953C67.2536 66.9405 66.8067 66.7553 66.399 66.547C66.2388 66.4651 66.0821 66.3796 65.9326 66.2906C65.7261 66.1678 65.532 66.0378 65.3522 65.9025C65.0549 65.68 64.7896 65.4414 64.5671 65.1922C64.3445 64.9429 64.1594 64.6794 64.0169 64.4106C63.8674 64.1275 63.7641 63.8338 63.7107 63.5382C63.652 63.2142 63.6502 62.8848 63.709 62.559C63.7784 62.1674 63.9315 61.7828 64.1665 61.4179C64.5582 60.8054 65.1582 60.2571 65.9522 59.7888C65.9985 59.7621 66.0465 59.7354 66.0928 59.7069C66.7462 59.3402 67.4922 59.0447 68.3111 58.8275C69.2369 58.5818 70.2232 58.4447 71.2469 58.418C71.8522 58.4037 72.4593 58.4269 73.0539 58.491C73.5596 58.5444 74.058 58.6281 74.5352 58.7367C74.9803 58.8381 75.4129 58.9645 75.8206 59.1123C76.2212 59.2565 76.6022 59.4239 76.9529 59.609C77.0775 59.6749 77.2039 59.7443 77.3267 59.8191C77.5457 59.9491 77.7522 60.0897 77.9427 60.2321C78.2472 60.4618 78.5142 60.7093 78.7386 60.9692C78.9842 61.2505 79.1783 61.5496 79.3207 61.8558C79.4845 62.2101 79.5753 62.5768 79.5913 62.9454C79.6127 63.4225 79.5094 63.8961 79.2851 64.3518C78.9023 65.1299 78.1706 65.8366 77.1683 66.401C75.7262 67.2111 73.8266 67.6686 71.8184 67.6918C71.765 67.6918 71.7098 67.6918 71.6564 67.6918L71.6528 67.6971ZM71.6012 58.5497C71.4837 58.5497 71.368 58.5497 71.2505 58.5551C70.2392 58.5818 69.2618 58.7171 68.3467 58.9592C67.5385 59.1728 66.8032 59.4648 66.1587 59.8262C66.1124 59.8529 66.0661 59.8796 66.0198 59.9063C65.2454 60.3639 64.6597 60.8962 64.2804 61.4926C64.0561 61.8434 63.9084 62.2119 63.8425 62.5858C63.7873 62.8955 63.7891 63.2089 63.8443 63.5169C63.8959 63.7999 63.9938 64.0795 64.138 64.3518C64.2751 64.6118 64.4531 64.8646 64.6686 65.1067C64.8858 65.3488 65.1421 65.5821 65.4341 65.7993C65.6104 65.931 65.8026 66.0592 66.0038 66.1785C66.1498 66.2657 66.3047 66.3512 66.4614 66.4313C66.8637 66.636 67.3035 66.8176 67.7681 66.9707C68.3004 67.1452 68.8684 67.2841 69.4577 67.3838C70.225 67.5119 71.0208 67.5725 71.8166 67.5636C73.8017 67.5404 75.6799 67.0882 77.1024 66.2889C78.0816 65.7387 78.7955 65.0515 79.1658 64.2984C79.3813 63.8623 79.4792 63.41 79.4578 62.9561C79.4418 62.6053 79.3546 62.2564 79.1997 61.9163C79.0644 61.6208 78.8756 61.3324 78.6389 61.06C78.4199 60.809 78.1599 60.5669 77.8626 60.3425C77.6775 60.2019 77.4745 60.0648 77.2591 59.9366C77.138 59.8636 77.0152 59.796 76.8923 59.7301C76.547 59.5485 76.1713 59.3829 75.7761 59.2405C75.3737 59.0945 74.9464 58.9699 74.5067 58.8684C74.0349 58.7598 73.5417 58.6779 73.0415 58.6245C72.5679 58.5729 72.0854 58.5479 71.603 58.5479L71.6012 58.5497Z" fill="#192147"/>
|
||||
<path d="M78.7492 61.5372C78.7456 61.6742 78.7296 61.8095 78.7029 61.9449C78.6762 62.0802 78.637 62.2137 78.5872 62.3454C78.5356 62.4807 78.4732 62.616 78.3985 62.7496C78.3166 62.8938 78.2204 63.0362 78.1118 63.1751C77.9854 63.3353 77.8394 63.4937 77.6757 63.6451C77.4175 63.8836 77.1131 64.1115 76.7623 64.3216C76.7071 64.3554 76.652 64.3875 76.5932 64.4195C76.1374 64.6741 75.6389 64.8877 75.112 65.0587C74.6829 65.1975 74.236 65.3079 73.7767 65.3898C73.4776 65.4432 73.175 65.4859 72.867 65.5162C72.6035 65.5429 72.3382 65.5607 72.0729 65.5696C71.8308 65.5785 71.5887 65.5785 71.3466 65.5732C71.1116 65.5678 70.8783 65.5554 70.6451 65.5358C70.4119 65.5162 70.1822 65.4913 69.9526 65.4592C69.714 65.4254 69.479 65.3845 69.2458 65.3364C68.9912 65.283 68.7419 65.2225 68.498 65.153C68.2007 65.0676 67.9123 64.9714 67.6345 64.861C67.2411 64.7062 66.8672 64.5246 66.5218 64.318C65.1741 63.5115 64.5047 62.4718 64.5065 61.4339L64.5029 62.6427C64.4994 63.6807 65.1688 64.7222 66.5183 65.5269C66.8637 65.7334 67.2358 65.9132 67.631 66.0699C67.9087 66.1803 68.1971 66.2764 68.4945 66.3619C68.7384 66.4313 68.9876 66.4918 69.2422 66.5452C69.4736 66.5933 69.7104 66.6343 69.949 66.6681C70.1787 66.7001 70.4083 66.7268 70.6415 66.7446C70.8748 66.7642 71.108 66.7767 71.343 66.782C71.5851 66.7874 71.8272 66.7874 72.0694 66.7785C72.3346 66.7696 72.5999 66.7518 72.8634 66.7251C73.1696 66.6948 73.4741 66.6521 73.7732 66.5987C74.2325 66.515 74.6793 66.4046 75.1084 66.2675C75.6372 66.0966 76.1357 65.8847 76.5897 65.6284C76.6466 65.5963 76.7036 65.5643 76.7588 65.5304C77.1095 65.3204 77.4139 65.0943 77.6721 64.8539C77.8359 64.7026 77.9819 64.5441 78.1083 64.3839C78.2187 64.245 78.313 64.1026 78.3949 63.9584C78.4697 63.8249 78.5338 63.6896 78.5836 63.5543C78.6335 63.4208 78.6726 63.2872 78.6993 63.1537C78.726 63.0184 78.7421 62.8813 78.7456 62.746C78.7456 62.7246 78.7456 62.7033 78.7456 62.6819L78.7492 61.4731C78.7492 61.4944 78.7492 61.5158 78.7492 61.5372Z" fill="#336C42"/>
|
||||
<path d="M78.7473 61.3607C78.7331 61.0385 78.653 60.7144 78.5088 60.4011C78.3841 60.1323 78.2132 59.8688 77.9942 59.616C77.7966 59.3881 77.5598 59.1691 77.2857 58.9608C77.1165 58.8326 76.9332 58.7098 76.7355 58.5923C76.6269 58.5282 76.5148 58.4641 76.4008 58.4053C76.0822 58.238 75.7421 58.0884 75.3878 57.9603C75.0193 57.8267 74.633 57.7146 74.236 57.6238C73.8051 57.5241 73.36 57.4511 72.9078 57.403C72.3737 57.346 71.8289 57.3247 71.2877 57.3389C70.3869 57.3621 69.4914 57.4849 68.6546 57.7057C67.9389 57.8944 67.2659 58.1579 66.6677 58.4926C66.625 58.5157 66.5823 58.5407 66.5413 58.5656C65.8185 58.9911 65.2898 59.486 64.9515 60.0148C64.7432 60.3406 64.6079 60.6806 64.5474 61.0224C64.4957 61.3091 64.4975 61.5975 64.5491 61.8841C64.5972 62.1441 64.6862 62.4022 64.8198 62.6532C64.9444 62.89 65.1064 63.1232 65.3076 63.3458C65.5034 63.5648 65.7366 63.7766 66.0055 63.9778C66.1657 64.0971 66.3384 64.2128 66.5235 64.3232C66.6588 64.4033 66.7977 64.4799 66.9401 64.5528C67.3122 64.7433 67.711 64.9054 68.1276 65.0442C68.6154 65.2045 69.1299 65.3309 69.6587 65.4181C70.3548 65.5356 71.0759 65.589 71.7969 65.5819C73.5292 65.5623 75.2525 65.1777 76.5931 64.4247C77.5189 63.9048 78.1491 63.2746 78.4785 62.6034C78.6779 62.1992 78.7669 61.7809 78.7491 61.3643L78.7473 61.3607Z" fill="#3DB67B"/>
|
||||
<path d="M71.6687 66.8691C69.6996 66.8691 67.7235 66.408 66.3384 65.4893C64.8215 64.4852 64.1664 63.0787 64.4441 61.423L64.5758 61.4444C64.2376 63.4669 65.3877 64.6989 66.4131 65.3772C69.0979 67.1557 74.0241 67.1967 76.748 65.4626C77.793 64.7968 78.9734 63.5772 78.6939 61.5334H78.685V61.4711L78.8185 61.4622C79.0713 63.1606 78.3788 64.5831 76.8192 65.5748C75.4626 66.4365 73.5683 66.8655 71.6705 66.8655L71.6687 66.8691Z" fill="#192147"/>
|
||||
<path d="M71.7275 65.671C68.546 65.671 65.183 64.4444 64.4833 61.8967C64.3658 58.8951 67.6238 57.5438 70.4492 57.2946C74.2395 56.9616 78.402 58.3859 78.8115 61.3519V61.3591V61.3662C78.6548 63.175 76.9955 65.242 72.8117 65.623C72.4557 65.655 72.0907 65.671 71.7257 65.671H71.7275ZM71.5495 57.3782C71.1863 57.3782 70.8231 57.3943 70.4635 57.4263C67.695 57.6702 64.5029 58.9823 64.6168 61.8754C65.3735 64.6313 69.4006 65.7974 72.8046 65.4895C76.9012 65.1174 78.5266 63.1145 78.6833 61.3626C78.3165 58.7598 74.9446 57.38 71.5512 57.38L71.5495 57.3782Z" fill="#192147"/>
|
||||
<path d="M69.1811 62.9578C69.1045 62.9578 69.028 62.9382 68.9603 62.8991C68.8535 62.8385 68.777 62.7353 68.7485 62.6142L68.2037 60.2873C68.1485 60.0487 68.2963 59.8084 68.5348 59.7532C68.7752 59.6962 69.0137 59.8458 69.0689 60.0843L69.5051 61.9466L75.0918 60.2125C75.3268 60.1395 75.5761 60.2713 75.6491 60.5063C75.7221 60.7413 75.5903 60.9905 75.3553 61.0635L69.3128 62.94C69.2701 62.9542 69.2256 62.9596 69.1811 62.9596V62.9578Z" fill="white"/>
|
||||
<path d="M39.6176 67.049L38.0812 66.1571C37.2284 65.6621 37.1251 64.4711 37.88 63.8355L56.2531 48.3733C57.1735 47.5988 58.4785 47.4867 59.5182 48.0902L61.0546 48.9822C61.9074 49.4771 62.0107 50.6681 61.2558 51.3037L42.8827 66.7659C41.9623 67.5404 40.6573 67.6526 39.6176 67.049Z" fill="#E2DED5"/>
|
||||
<path d="M41.047 67.5011C40.5432 67.5011 40.0375 67.3711 39.5836 67.1076L38.0471 66.2157C37.6216 65.9682 37.3528 65.5463 37.3101 65.0549C37.2673 64.5635 37.4596 64.1024 37.8353 63.7855L56.2083 48.3233C57.1466 47.5328 58.4907 47.4171 59.55 48.0331L61.0865 48.9251C61.512 49.1725 61.7808 49.5945 61.8235 50.0858C61.8662 50.5772 61.674 51.0383 61.2983 51.3552L42.9252 66.8175C42.3876 67.2697 41.72 67.5011 41.047 67.5011ZM58.0884 47.7732C57.4457 47.7732 56.8083 47.994 56.2956 48.4248L37.9225 63.887C37.5807 64.1754 37.4062 64.5974 37.4436 65.0425C37.4828 65.4893 37.7267 65.8739 38.1148 66.0982L39.6512 66.9901C40.6624 67.5777 41.9443 67.4673 42.8398 66.7142L61.2129 51.252C61.5547 50.9636 61.7292 50.5416 61.6918 50.0965C61.6544 49.6514 61.4087 49.2651 61.0206 49.0408L59.4842 48.1488C59.0515 47.8978 58.5691 47.7732 58.0884 47.7732Z" fill="#192147"/>
|
||||
<path d="M41.0488 65.6552C40.8601 65.6552 40.6749 65.6054 40.5129 65.511L39.8524 65.1265C39.6388 65.0018 39.6138 64.7045 39.8026 64.5461L57.4012 49.7355C57.5935 49.5735 57.8374 49.4844 58.0902 49.4844C58.2789 49.4844 58.464 49.5343 58.626 49.6286L59.2866 50.0132C59.5002 50.1378 59.5251 50.4351 59.3364 50.5936L41.7378 65.4042C41.5455 65.5662 41.3016 65.6552 41.0488 65.6552Z" fill="#8C8679"/>
|
||||
<path d="M41.0489 65.7227C40.8495 65.7227 40.6519 65.6693 40.4792 65.5696L39.8187 65.185C39.6976 65.1156 39.6228 64.9945 39.6104 64.8557C39.5979 64.7168 39.6531 64.5851 39.7599 64.496L57.3586 49.6854C57.7164 49.3846 58.2558 49.3383 58.66 49.5733L59.3205 49.9578C59.4415 50.0273 59.5163 50.1483 59.5288 50.2872C59.5412 50.4261 59.486 50.5578 59.3792 50.6468L41.7824 65.4574C41.5776 65.6301 41.3177 65.7245 41.0507 65.7245L41.0489 65.7227ZM58.0885 49.5537C57.8517 49.5537 57.6238 49.6374 57.4422 49.7887L39.8436 64.5993C39.7706 64.6598 39.7332 64.7506 39.7421 64.845C39.751 64.9394 39.8026 65.0212 39.8845 65.0693L40.5451 65.4539C40.9029 65.6622 41.3782 65.6194 41.6934 65.3542L59.292 50.5436C59.365 50.483 59.4024 50.3922 59.3935 50.2979C59.3846 50.2035 59.3329 50.1216 59.251 50.0735L58.5905 49.689C58.4374 49.6 58.2647 49.5537 58.0885 49.5537Z" fill="#192147"/>
|
||||
<path d="M41.1503 65.7936L40.1836 65.2399L58.0297 50.0269C58.2237 50.1213 59.2065 50.6109 59.2065 50.6109L41.1503 65.7936Z" fill="#192147"/>
|
||||
<path d="M54.6003 54.4141L52.3286 56.3725L54.6431 36.7211H56.9148L54.6003 54.4141Z" fill="#E2DED5"/>
|
||||
<path d="M52.3288 56.44C52.3181 56.44 52.3074 56.4382 52.2968 56.4329C52.2718 56.4204 52.2594 56.3937 52.2612 56.3652L54.5756 36.7138C54.5792 36.68 54.6076 36.6551 54.6415 36.6551H56.9132C56.9328 36.6551 56.9506 36.664 56.963 36.6782C56.9755 36.6925 56.9808 36.7121 56.979 36.7316L54.6646 54.4246C54.6628 54.4407 54.6539 54.4549 54.6415 54.4674L52.3698 56.4257C52.3573 56.4364 52.3413 56.4418 52.327 56.4418L52.3288 56.44ZM54.702 36.7886L52.4143 56.2121L54.5364 54.3819L56.8384 36.7886H54.702Z" fill="#192147"/>
|
||||
<path d="M54.2445 40.8193C54.7412 41.0472 55.2914 41.0187 55.7329 40.9974L53.908 54.9285L52.4197 56.1979L54.2445 40.8193Z" fill="white"/>
|
||||
<path d="M55.3404 40.0028C57.7002 40.0028 59.6132 38.0898 59.6132 35.73C59.6132 33.3702 57.7002 31.4572 55.3404 31.4572C52.9806 31.4572 51.0676 33.3702 51.0676 35.73C51.0676 38.0898 52.9806 40.0028 55.3404 40.0028Z" fill="#6A67FE"/>
|
||||
<path d="M55.3405 40.0706C52.9477 40.0706 51 38.1247 51 35.7302C51 33.3356 52.9459 31.3897 55.3405 31.3897C57.735 31.3897 59.6809 33.3356 59.6809 35.7302C59.6809 38.1247 57.735 40.0706 55.3405 40.0706ZM55.3405 31.525C53.0207 31.525 51.1353 33.4122 51.1353 35.7302C51.1353 38.0482 53.0225 39.9353 55.3405 39.9353C57.6585 39.9353 59.5456 38.0482 59.5456 35.7302C59.5456 33.4122 57.6585 31.525 55.3405 31.525Z" fill="#192147"/>
|
||||
<path d="M54.7912 37.7303C56.3644 37.7303 57.6397 36.4549 57.6397 34.8817C57.6397 33.3085 56.3644 32.0332 54.7912 32.0332C53.218 32.0332 51.9426 33.3085 51.9426 34.8817C51.9426 36.4549 53.218 37.7303 54.7912 37.7303Z" fill="#B4B2FE"/>
|
||||
<path d="M46.1547 70.8183L44.6183 69.9264C43.7655 69.4314 43.6622 68.2404 44.4171 67.6048L62.7902 52.1426C63.7106 51.3681 65.0156 51.256 66.0553 51.8595L67.5917 52.7515C68.4445 53.2464 68.5478 54.4374 67.7929 55.073L49.4198 70.5352C48.4994 71.3097 47.1944 71.4218 46.1547 70.8183Z" fill="#E2DED5"/>
|
||||
<path d="M47.5841 71.2687C47.0803 71.2687 46.5747 71.1387 46.1207 70.8752L44.5842 69.9833C44.1587 69.7358 43.8899 69.3139 43.8472 68.8225C43.8044 68.3311 43.9967 67.87 44.3724 67.5531L62.7454 52.0909C63.6837 51.3004 65.0278 51.1847 66.0871 51.8007L67.6236 52.6926C68.0491 52.9401 68.3179 53.3621 68.3588 53.8534C68.4016 54.343 68.2093 54.8059 67.8336 55.1228L49.4606 70.585C48.9229 71.0372 48.2553 71.2687 47.5823 71.2687H47.5841ZM64.6255 51.5408C63.9828 51.5408 63.3454 51.7615 62.8327 52.1924L44.4596 67.6546C44.116 67.943 43.9433 68.3649 43.9807 68.81C44.0199 69.2569 44.2638 69.6415 44.6519 69.8658L46.1883 70.7577C47.1995 71.3452 48.4814 71.2348 49.3769 70.4818L67.75 55.0195C68.0918 54.7311 68.2663 54.3092 68.2289 53.8641C68.1915 53.419 67.9458 53.0327 67.5595 52.8084L66.023 51.9164C65.5904 51.6654 65.108 51.5408 64.6273 51.5408H64.6255Z" fill="#192147"/>
|
||||
<path d="M47.5864 69.424C47.3977 69.424 47.2125 69.3741 47.0505 69.2798L46.39 68.8952C46.1764 68.7706 46.1514 68.4733 46.3401 68.3148L63.9388 53.5042C64.131 53.3422 64.375 53.2532 64.6278 53.2532C64.8165 53.2532 65.0016 53.303 65.1636 53.3974L65.8242 53.7819C66.0378 53.9066 66.0627 54.2039 65.874 54.3623L48.2754 69.1729C48.0831 69.335 47.8392 69.424 47.5864 69.424Z" fill="#8C8679"/>
|
||||
<path d="M47.5862 69.49C47.3868 69.49 47.1892 69.4366 47.0165 69.3369L46.356 68.9523C46.235 68.8829 46.1584 68.7618 46.1477 68.6229C46.1353 68.4841 46.1905 68.3523 46.2973 68.2633L63.8959 53.4527C64.2537 53.1518 64.7914 53.1055 65.1973 53.3405L65.8578 53.7251C65.9789 53.7945 66.0554 53.9156 66.0661 54.0545C66.0786 54.1933 66.0234 54.3251 65.9166 54.4141L48.3197 69.2247C48.115 69.3974 47.8551 69.4918 47.588 69.4918L47.5862 69.49ZM64.6258 53.321C64.3891 53.321 64.1612 53.4046 63.9796 53.556L46.3827 68.3666C46.3097 68.4271 46.2724 68.5179 46.2813 68.6123C46.2902 68.7066 46.3418 68.7903 46.4237 68.8384L47.0842 69.2229C47.442 69.4294 47.9174 69.3885 48.2325 69.1232L65.8311 54.3126C65.9041 54.2521 65.9415 54.1613 65.9326 54.0669C65.9237 53.9726 65.8721 53.8889 65.7902 53.8408L65.1297 53.4563C64.9766 53.3672 64.8039 53.321 64.6276 53.321H64.6258Z" fill="#192147"/>
|
||||
<path d="M47.6877 69.5627L46.7209 69.009L64.567 53.796C64.7611 53.8904 65.7438 54.38 65.7438 54.38L47.6877 69.5627Z" fill="#192147"/>
|
||||
<path d="M55.4768 63.111L53.9421 64.4035L41.3694 49.8421L42.904 48.1668L55.4768 63.111Z" fill="#E2DED5"/>
|
||||
<path d="M53.942 64.4691C53.9242 64.4691 53.9046 64.462 53.8922 64.446L41.3212 49.8846C41.2998 49.8597 41.2998 49.8205 41.3212 49.7956L42.8558 48.1203C42.8683 48.1061 42.8861 48.0989 42.9057 48.0989C42.9253 48.0989 42.9431 48.1078 42.9555 48.1221L55.5265 63.068C55.5496 63.0965 55.5461 63.1374 55.5176 63.1624L53.9829 64.4531C53.9705 64.4638 53.9545 64.4691 53.9402 64.4691H53.942ZM41.4601 49.8419L53.9491 64.3071L55.3823 63.1001L42.9021 48.2645L41.4601 49.8401V49.8419Z" fill="#192147"/>
|
||||
<path d="M44.1233 52.9043C44.6253 52.6924 44.9778 52.2669 45.2591 51.9269L54.9762 63.4421L53.9454 64.3002L44.1233 52.9025V52.9043Z" fill="white"/>
|
||||
<path d="M44.3911 51.4569C46.0598 49.7882 46.0598 47.0829 44.3911 45.4142C42.7225 43.7456 40.0171 43.7456 38.3485 45.4142C36.6798 47.0829 36.6798 49.7882 38.3485 51.4569C40.0171 53.1255 42.7225 53.1255 44.3911 51.4569Z" fill="#AE6DDF"/>
|
||||
<path d="M41.3673 52.7743C40.3204 52.7743 39.27 52.3986 38.4386 51.6366C37.5841 50.8533 37.0856 49.7851 37.0339 48.6279C36.9823 47.4706 37.3864 46.3615 38.168 45.5069C39.7846 43.7426 42.5334 43.6216 44.2995 45.2363C45.1541 46.0197 45.6525 47.0879 45.7042 48.2451C45.7558 49.4023 45.3517 50.5115 44.5701 51.366C43.7155 52.2989 42.5441 52.7725 41.3673 52.7725V52.7743ZM41.3708 44.2322C40.2314 44.2322 39.0956 44.6915 38.2677 45.5959C37.5093 46.4238 37.1176 47.4991 37.1675 48.6207C37.2173 49.7424 37.6998 50.7785 38.5294 51.5369C40.2403 53.1036 42.9055 52.9861 44.4722 51.2752C45.2306 50.4474 45.6223 49.372 45.5724 48.2504C45.5226 47.1288 45.0401 46.0927 44.2105 45.3342C43.404 44.5972 42.3874 44.2322 41.3726 44.2322H41.3708Z" fill="#192147"/>
|
||||
<path d="M41.7783 50.2574C43.1784 49.54 43.7319 47.8235 43.0145 46.4233C42.2971 45.0232 40.5805 44.4698 39.1804 45.1872C37.7803 45.9046 37.2268 47.6212 37.9442 49.0213C38.6616 50.4214 40.3782 50.9748 41.7783 50.2574Z" fill="#C98DEF"/>
|
||||
<path d="M21.6948 110.752L39.1653 120.389L63.6075 106.661L45.562 96.5983L21.6948 110.752Z" fill="#C5C7D1"/>
|
||||
<path d="M57.909 67.4131C58.6798 66.8096 60.0062 66.717 60.8536 67.2066L79.3246 77.869C80.1721 78.3586 80.2433 79.263 79.4813 79.8772L76.7734 82.0617C76.0114 82.6759 74.6922 82.781 73.843 82.2949L55.1993 71.6218C54.3501 71.1358 54.286 70.2438 55.0569 69.6403L57.9072 67.4131H57.909Z" fill="#8C8679"/>
|
||||
<path d="M75.0981 82.6674C74.637 82.6674 74.1812 82.5641 73.8109 82.3522L55.1672 71.6791C54.7364 71.4317 54.4836 71.0774 54.4551 70.6786C54.4266 70.2798 54.626 69.8935 55.0177 69.5872L57.868 67.36C58.6602 66.7405 60.0151 66.6461 60.8874 67.1482L79.3584 77.8106C79.7875 78.0581 80.0421 78.4177 80.0741 78.8201C80.1062 79.2224 79.9103 79.6159 79.524 79.9274L76.8161 82.1119C76.3639 82.4769 75.7265 82.6656 75.0981 82.6656V82.6674ZM57.9089 67.4117L57.9499 67.4651L55.0996 69.6923C54.7453 69.97 54.5637 70.3172 54.5886 70.6697C54.6135 71.0222 54.8432 71.3391 55.2349 71.5634L73.8785 82.2365C74.7082 82.7119 75.99 82.6104 76.7342 82.0086L79.4421 79.8242C79.7928 79.5411 79.9708 79.1886 79.9424 78.8307C79.9139 78.4729 79.6842 78.1524 79.2943 77.9263L60.8233 67.2639C59.9955 66.785 58.7065 66.8758 57.9534 67.4651L57.9125 67.4117H57.9089Z" fill="#192147"/>
|
||||
<path d="M58.3842 71.3925C57.5349 70.9064 57.4299 70.0465 58.1509 69.4839C58.872 68.9214 60.1556 68.859 61.003 69.3486L76.1875 78.1132C77.035 78.6028 77.1649 79.4592 76.4742 80.0164C75.7834 80.5737 74.5229 80.6324 73.6737 80.1446L58.3859 71.3925H58.3842Z" fill="#192147"/>
|
||||
<path d="M65.5035 100.665L69.6036 86.997L66.2477 85.0457L61.3643 98.0956L65.5035 100.665Z" fill="#847C89"/>
|
||||
<path opacity="0.25" d="M69.6036 86.9026C69.6036 86.9026 71.6332 80.6661 76.1001 79.8329L72.4148 78.0829C72.4148 78.0829 67.2518 76.5696 66.6287 85.263L69.6036 86.9026Z" fill="#8C8679"/>
|
||||
<path d="M58.8363 69.8648L76.102 79.8329C76.102 79.8329 74.9572 79.1724 73.2268 79.3469C70.4548 79.6264 67.8555 83.6571 66.2995 86.6302C65.4431 88.2681 64.7808 89.9986 64.3126 91.7861C63.3103 95.6031 60.9798 103.812 58.8363 106.376C57.1022 108.45 45.1615 115.009 41.6133 116.725C40.6377 117.197 39.4929 117.158 38.5529 116.618C34.467 114.275 25.2698 108.911 22.7222 107.533C26.2739 105.854 39.646 98.6991 41.5261 96.447C43.6785 93.8691 46.0197 85.5941 47.0149 81.7966C47.4777 80.0269 48.1329 78.3143 48.975 76.6906C50.5346 73.6818 53.1588 69.5871 55.9557 69.3805C57.7663 69.247 58.8345 69.8648 58.8345 69.8648H58.8363Z" fill="white"/>
|
||||
<path d="M53.5629 70.4418C52.3433 71.4014 51.2182 72.8844 50.2764 74.3959L67.6436 84.2821C68.5978 82.7706 69.7372 81.2929 70.9674 80.3493L53.5611 70.4418H53.5629Z" fill="#F1EEEA"/>
|
||||
<path d="M42.3521 95.2117L59.6302 105.196C61.2165 102.415 62.8028 97.2716 63.7944 93.6985L46.5091 83.6769C45.5246 87.2323 43.9401 92.3935 42.3521 95.21V95.2117Z" fill="#F1EEEA"/>
|
||||
<path d="M73.7877 78.4979L58.1475 69.5944C57.6526 69.4484 56.9084 69.3113 55.9559 69.3808C55.1245 69.4413 54.3073 69.849 53.5293 70.4668L70.9339 80.3743C71.6709 79.8046 72.44 79.4254 73.2234 79.3453C74.9556 79.1708 76.0986 79.8313 76.0986 79.8313L73.786 78.4961L73.7877 78.4979Z" fill="#E2DED5"/>
|
||||
<path d="M39.6817 114.619L39.6194 114.501C39.7761 114.418 55.3736 106.091 56.6109 104.608C57.8981 103.068 59.8262 97.8035 61.6457 90.8708C62.162 88.9036 62.8902 87.0146 63.8124 85.2539C65.2188 82.5638 67.8377 77.5593 72.3598 77.5593V77.6928C67.9196 77.6928 65.3239 82.6528 63.9299 85.3162C63.013 87.068 62.2884 88.9481 61.7739 90.9047C59.949 97.8551 58.0103 103.139 56.7124 104.693C55.4573 106.196 40.3244 114.275 39.6799 114.619H39.6817Z" fill="#646F71"/>
|
||||
<path d="M37.2 113.234L37.1377 113.116C39.0249 112.128 52.607 104.804 53.912 103.243C55.2953 101.587 57.243 96.3224 59.1213 89.1619C59.5788 87.4189 60.2625 85.644 61.2132 83.7337C63.6416 78.8502 66.6824 76.274 70.0116 76.274C70.049 76.274 70.0846 76.274 70.1202 76.274V76.4076C70.0828 76.4076 70.049 76.4076 70.0134 76.4076C67.7043 76.4076 64.3573 77.7108 61.3307 83.7942C60.3853 85.6956 59.7035 87.4635 59.2495 89.1957C57.3659 96.374 55.4093 101.656 54.0135 103.328C52.5697 105.059 37.3513 113.155 37.2 113.236V113.234Z" fill="#646F71"/>
|
||||
<path d="M34.72 111.847L34.6577 111.729C37.0897 110.456 49.7496 103.625 51.2131 101.873C52.6961 100.098 54.6562 94.8411 56.595 87.451C57.0081 85.8789 57.6294 84.2642 58.6121 82.2114C59.9474 79.4252 62.9259 74.7839 67.8806 74.9886L67.8752 75.1221C67.7702 75.1168 67.6652 75.115 67.5619 75.115C62.8707 75.115 60.0257 79.5712 58.7332 82.2684C57.754 84.3122 57.1345 85.9199 56.725 87.483C54.7826 94.8928 52.81 100.168 51.3163 101.957C49.8386 103.727 37.1573 110.57 34.72 111.845V111.847Z" fill="#646F71"/>
|
||||
<path d="M32.2396 110.462L32.1772 110.344C35.2252 108.749 46.9273 102.407 48.5136 100.508C50.65 97.9476 52.911 90.1568 54.0683 85.7416C54.5472 83.915 55.3216 82.1773 56.0106 80.6908C59.484 73.1973 64.1165 73.5801 65.6405 73.7047L65.6298 73.8382C64.1307 73.7136 59.5659 73.338 56.1317 80.746C55.4462 82.2254 54.6736 83.9577 54.1982 85.7736C53.0374 90.2013 50.7693 98.0116 48.6169 100.591C47.0431 102.475 35.9889 108.5 32.2396 110.46V110.462Z" fill="#646F71"/>
|
||||
<path d="M29.7579 109.075L29.6956 108.957C34.5612 106.412 44.1911 101.085 45.8129 99.1406C48.0579 96.4523 50.3653 88.5209 51.5421 84.0309C51.9871 82.3342 52.71 80.7266 53.4096 79.1706C56.9436 71.3104 61.4817 72.092 63.1908 72.3857C63.2674 72.3982 63.3386 72.4106 63.4044 72.4213L63.3831 72.5531C63.3172 72.5424 63.246 72.5299 63.1677 72.5175C61.487 72.229 57.0237 71.4599 53.5325 79.224C52.8346 80.7764 52.1136 82.3787 51.672 84.0647C50.4934 88.5636 48.1772 96.5164 45.9162 99.2261C44.2801 101.186 34.6307 106.527 29.7579 109.077V109.075Z" fill="#646F71"/>
|
||||
<path d="M27.2779 107.69L27.2156 107.572C30.4309 105.89 41.0808 100.211 43.1158 97.7735C45.3501 95.0958 47.5595 87.8926 49.0176 82.3219C49.3986 80.8638 50.0092 79.4734 50.6003 78.131L50.8104 77.6503C53.3936 71.7307 56.9312 69.4626 61.042 71.0916C61.0954 71.1129 61.1399 71.1307 61.1755 71.1432L61.1292 71.2678C61.0918 71.2536 61.0473 71.2358 60.9939 71.2144C58.1827 70.1017 54.1556 70.3225 50.9332 77.7037L50.7214 78.1844C50.1338 79.5232 49.525 80.9083 49.1458 82.3558C47.6841 87.9407 45.4676 95.1635 43.2172 97.8589C41.1663 100.316 30.4985 106.004 27.2779 107.69Z" fill="#646F71"/>
|
||||
<path d="M40.6659 114.097C40.6143 114.097 40.568 114.062 40.5573 114.008L39.012 106.618L46.9932 107.508L47.9742 104.122L54.7181 105.518L50.1782 97.3763H56.6106L50.1587 89.0462L56.648 88.2681L54.3638 84.7075L53.5253 78.6792L60.6715 78.7683V74.7162L61.9 72.2451L64.3853 73.1299C64.4441 73.1513 64.4726 73.2136 64.453 73.2724C64.4334 73.3311 64.3693 73.3596 64.3105 73.34L62.0121 72.5211L60.8941 74.7679V78.9944L53.7816 78.9054L54.5792 84.6274L57.0272 88.4444L50.5752 89.2171L57.0646 97.5953H50.5574L55.1489 105.831L48.1308 104.378L47.1534 107.747L39.2897 106.869L40.7709 113.958C40.7834 114.019 40.7442 114.078 40.6855 114.09C40.6784 114.09 40.6695 114.092 40.6623 114.092L40.6659 114.097Z" fill="#6A67FE"/>
|
||||
<path d="M40.1838 117.12C39.6087 117.12 39.0337 116.973 38.5192 116.677C37.207 115.924 35.3519 114.852 33.3882 113.716C29.1831 111.284 24.4171 108.527 22.6902 107.592L22.5745 107.53L22.6937 107.473C25.9571 105.929 39.5927 98.66 41.4763 96.4044C43.6412 93.8104 46.0268 85.3129 46.9508 81.7807C47.4173 79.9986 48.0778 78.277 48.9163 76.6622C50.597 73.4238 53.1802 69.5195 55.9522 69.3165C57.761 69.183 58.8257 69.783 58.8702 69.8097L76.1359 79.7778L76.0682 79.8935C76.0575 79.8864 74.9217 79.2455 73.2322 79.4164C71.7473 79.5659 69.351 80.9457 66.3583 86.6659C65.5162 88.2753 64.8503 90.0041 64.3768 91.8075C63.451 95.3344 61.0636 103.819 58.888 106.424C57.1664 108.486 45.3467 114.998 41.6436 116.789C41.1825 117.012 40.684 117.124 40.1855 117.124L40.1838 117.12ZM22.87 107.537C24.6877 108.528 29.3397 111.22 33.4559 113.601C35.4196 114.736 37.2729 115.808 38.5868 116.561C39.5072 117.09 40.6289 117.129 41.5849 116.666C45.2827 114.877 57.0738 108.384 58.7847 106.335C60.9425 103.752 63.3228 95.2899 64.2468 91.7701C64.7221 89.9578 65.3933 88.2184 66.239 86.6018C67.9054 83.415 70.4691 79.5588 73.2179 79.2829C74.0832 79.1956 74.8006 79.3113 75.3062 79.4538L58.8025 69.9254C58.7883 69.9183 57.7254 69.3219 55.9611 69.4501C54.4656 69.5604 52.0497 70.9117 49.0338 76.7245C48.2006 78.3304 47.5437 80.0431 47.079 81.8163C46.1515 85.3574 43.7587 93.8781 41.5778 96.4916C39.6693 98.7775 26.436 105.835 22.8682 107.539L22.87 107.537Z" fill="#192147"/>
|
||||
<path d="M42.1063 116.485C39.3575 117.884 37.5059 115.317 37.5059 115.317L20.2402 105.349C20.2402 105.349 21.223 106.7 22.722 107.533C24.2211 108.366 36.3274 115.522 36.3274 115.522C39.0566 117.16 40.4987 117.542 42.1063 116.485Z" fill="#8C8679"/>
|
||||
<path d="M40.2727 117.144C39.16 117.144 37.9387 116.565 36.2936 115.579C36.1726 115.507 24.1713 108.415 22.6901 107.59C21.1946 106.759 20.1958 105.4 20.1852 105.386L20 105.132L37.5595 115.276C37.5773 115.301 39.411 117.781 42.0762 116.424L42.1438 116.54C41.5154 116.953 40.9118 117.144 40.2727 117.144ZM20.5145 105.582C20.883 106.018 21.6931 106.882 22.756 107.473C24.239 108.299 36.242 115.392 36.3631 115.463C38.5493 116.775 39.8436 117.218 40.9991 116.925C38.9517 117.249 37.5862 115.529 37.4633 115.367L20.5163 105.582H20.5145Z" fill="#192147"/>
|
||||
<path d="M138.47 72.2532C138.367 71.1244 137.945 70.3767 137.506 70.1203L133.599 68.0516C136.542 71.2277 132.038 79.4119 129.28 81.9186L133.044 84.1067C136.096 81.0017 138.47 75.9331 138.47 72.2532Z" fill="#8C8679"/>
|
||||
<path d="M135.387 69.2673C143.21 66.2194 137.869 81.9629 132.98 85.2459L133.042 84.1064C136.389 80.6081 138.1 76.4136 138.451 72.6393C138.495 72.1657 138.462 71.6868 138.321 71.2328C137.441 68.4039 134.329 71.1171 132.944 72.7443L132.941 71.475C133.834 70.4299 134.653 69.6911 135.385 69.2691L135.387 69.2673Z" fill="#F1EEEA"/>
|
||||
<path d="M132.907 85.3759L132.978 84.0781L132.996 84.0603C136.088 80.8272 138.002 76.7698 138.387 72.6323C138.433 72.1374 138.39 71.6727 138.259 71.2525C138.05 70.5831 137.701 70.1932 137.219 70.0935C135.921 69.83 133.954 71.6602 132.998 72.7854L132.88 72.9225L132.877 71.4466L132.893 71.427C133.79 70.3784 134.618 69.6324 135.355 69.2051L135.364 69.2016C136.61 68.7155 138.257 68.4432 139.017 69.8977C139.791 71.3807 139.421 74.4411 138.048 77.8843C136.694 81.2829 134.767 84.1244 133.019 85.2976L132.909 85.3724L132.907 85.3759ZM133.11 84.135L133.056 85.1142C134.753 83.9107 136.608 81.1423 137.926 77.838C139.284 74.4304 139.656 71.4128 138.899 69.9618C138.326 68.8651 137.155 68.6515 135.419 69.3262C134.7 69.7428 133.89 70.4727 133.012 71.4964L133.015 72.5629C133.582 71.9237 135.72 69.6502 137.249 69.96C137.783 70.0686 138.166 70.4888 138.39 71.2098C138.526 71.6478 138.572 72.1302 138.524 72.643C138.137 76.8018 136.217 80.8806 133.113 84.1333L133.11 84.135Z" fill="#192147"/>
|
||||
<path d="M135.595 69.2193C136.295 68.9309 137.47 68.7066 138.153 69.1018C134.025 66.7536 132.937 64.959 129.179 69.287L132.942 71.475C133.777 70.5261 134.427 69.7392 135.595 69.2211V69.2193Z" fill="white"/>
|
||||
<path d="M132.957 71.5587L129.076 69.303L129.129 69.2425C132.38 65.5002 133.692 66.3067 136.567 68.0746C137.043 68.3665 137.582 68.6995 138.175 69.0359C138.179 69.0377 138.182 69.0413 138.187 69.0431L138.122 69.1588C138.122 69.1588 138.114 69.1534 138.109 69.1517C137.475 68.7956 136.379 68.9683 135.622 69.2798C134.531 69.7659 133.909 70.4727 133.126 71.3664L132.957 71.5587ZM129.282 69.2692L132.928 71.3878L133.024 71.2792C133.788 70.4086 134.449 69.6555 135.569 69.1588C136.154 68.9167 136.945 68.7564 137.586 68.849C137.194 68.6176 136.829 68.3932 136.496 68.1885C133.619 66.4188 132.417 65.6818 129.28 69.2692H129.282Z" fill="#192147"/>
|
||||
<path d="M134.039 88.8975C134.039 88.9242 134.039 88.9492 134.039 88.9759C134.036 89.2002 134.013 89.4245 133.972 89.647C133.931 89.8678 133.87 90.0886 133.792 90.3058C133.712 90.5301 133.612 90.7526 133.491 90.9716C133.363 91.2066 133.211 91.4398 133.039 91.6659C132.836 91.9312 132.603 92.1911 132.339 92.4439C131.953 92.8125 131.501 93.165 130.984 93.4944C130.806 93.6083 130.619 93.7205 130.425 93.8273C129.642 94.2635 128.78 94.6267 127.87 94.9133C127.197 95.1251 126.498 95.296 125.78 95.426C125.296 95.5132 124.805 95.5827 124.308 95.6343C123.881 95.6788 123.45 95.7073 123.017 95.7251C122.62 95.7394 122.223 95.7429 121.826 95.7358C121.442 95.7269 121.059 95.7091 120.678 95.6788C120.297 95.6486 119.918 95.6076 119.542 95.5578C119.152 95.5044 118.766 95.4385 118.385 95.3619C117.966 95.2782 117.553 95.1786 117.151 95.0664C116.663 94.9293 116.19 94.7726 115.734 94.5964C115.05 94.3311 114.406 94.0196 113.813 93.6635C111.632 92.3514 110.546 90.6601 110.541 88.9687L110.544 90.2274C110.55 91.9188 111.636 93.6083 113.816 94.9222C114.409 95.28 115.054 95.5898 115.737 95.8551C116.193 96.0331 116.669 96.1898 117.155 96.3251C117.557 96.4373 117.97 96.5369 118.388 96.6206C118.769 96.6972 119.156 96.763 119.546 96.8165C119.921 96.8681 120.3 96.909 120.681 96.9375C121.062 96.9678 121.445 96.9856 121.83 96.9945C122.227 97.0034 122.624 96.9998 123.021 96.9838C123.453 96.9678 123.884 96.9375 124.312 96.893C124.808 96.8414 125.3 96.7737 125.784 96.6847C126.501 96.5547 127.201 96.3838 127.874 96.172C128.786 95.8853 129.645 95.5239 130.429 95.086C130.623 94.9774 130.81 94.867 130.988 94.7531C131.504 94.4237 131.956 94.0712 132.343 93.7026C132.606 93.4498 132.839 93.1917 133.042 92.9246C133.215 92.6968 133.366 92.4653 133.495 92.2303C133.614 92.0113 133.714 91.7888 133.795 91.5645C133.874 91.3455 133.934 91.1265 133.975 90.9057C134.016 90.6832 134.039 90.4589 134.043 90.2346C134.043 90.2079 134.043 90.1829 134.043 90.1562L134.039 88.8975Z" fill="#F1EEEA"/>
|
||||
<path d="M122.254 97.0639C122.111 97.0639 121.969 97.0639 121.826 97.0585C121.44 97.0496 121.052 97.0318 120.674 97.0016C120.293 96.9713 119.909 96.9304 119.533 96.8787C119.14 96.8253 118.748 96.7594 118.371 96.6829C117.949 96.5974 117.532 96.4977 117.132 96.3856C116.64 96.2485 116.161 96.0883 115.707 95.912C115.013 95.6414 114.363 95.3263 113.776 94.9738C111.65 93.6955 110.477 92.0077 110.471 90.222L110.468 88.9651H110.601C110.607 90.701 111.757 92.3478 113.84 93.6011C114.42 93.9501 115.063 94.2616 115.75 94.5287C116.199 94.7032 116.674 94.8598 117.162 94.9969C117.561 95.1091 117.974 95.207 118.39 95.2924C118.768 95.369 119.156 95.4349 119.544 95.4865C119.918 95.5381 120.299 95.5791 120.676 95.6076C121.055 95.6378 121.44 95.6556 121.821 95.6645C122.214 95.6734 122.613 95.6699 123.008 95.6556C123.438 95.6396 123.87 95.6093 124.296 95.5666C124.791 95.5168 125.284 95.4455 125.763 95.3601C126.482 95.2301 127.183 95.0574 127.846 94.8491C128.768 94.5589 129.624 94.1958 130.388 93.7685C130.58 93.6617 130.767 93.5495 130.943 93.4373C131.449 93.1151 131.901 92.7644 132.289 92.3941C132.548 92.1466 132.781 91.8884 132.982 91.6249C133.151 91.4024 133.302 91.171 133.429 90.9377C133.546 90.7241 133.646 90.5033 133.724 90.2826C133.801 90.0689 133.861 89.85 133.901 89.6328C133.942 89.4138 133.965 89.1912 133.968 88.9722V88.8957H134.102L134.105 90.1526C134.105 90.1793 134.105 90.2042 134.105 90.2309C134.102 90.457 134.079 90.6867 134.036 90.9128C133.995 91.1371 133.933 91.3615 133.852 91.5822C133.771 91.8083 133.669 92.0362 133.548 92.257C133.418 92.4938 133.265 92.7305 133.091 92.9602C132.884 93.229 132.647 93.4943 132.384 93.7453C131.99 94.121 131.531 94.477 131.018 94.8046C130.838 94.9186 130.65 95.0325 130.456 95.1393C129.685 95.5702 128.819 95.9369 127.888 96.2307C127.221 96.4408 126.516 96.6135 125.789 96.7452C125.309 96.8324 124.81 96.9019 124.312 96.9535C123.886 96.998 123.45 97.0283 123.016 97.0443C122.761 97.0532 122.503 97.0585 122.246 97.0585L122.254 97.0639ZM110.608 90.0048V90.2256C110.614 91.9614 111.764 93.6082 113.849 94.8634C114.429 95.2123 115.072 95.5239 115.759 95.7909C116.208 95.9654 116.683 96.1239 117.171 96.2592C117.568 96.3696 117.981 96.4692 118.399 96.5547C118.775 96.6295 119.163 96.6954 119.553 96.7488C119.927 96.8004 120.308 96.8413 120.685 96.8698C121.061 96.9001 121.447 96.9179 121.83 96.9268C122.223 96.9357 122.624 96.9321 123.017 96.9161C123.448 96.9001 123.881 96.8698 124.305 96.8271C124.799 96.7755 125.293 96.706 125.772 96.6206C126.491 96.4906 127.192 96.3179 127.855 96.1096C128.779 95.8194 129.633 95.4562 130.397 95.029C130.589 94.9221 130.776 94.81 130.952 94.6978C131.458 94.3756 131.91 94.0248 132.296 93.6545C132.555 93.4089 132.788 93.1489 132.989 92.8854C133.16 92.6611 133.309 92.4297 133.436 92.1982C133.553 91.9828 133.653 91.762 133.731 91.5431C133.808 91.3294 133.869 91.1104 133.908 90.8932C133.949 90.6743 133.972 90.4517 133.975 90.2327C133.975 90.2078 133.975 90.1811 133.975 90.1562V89.9336C133.94 90.0672 133.901 90.1989 133.852 90.3289C133.771 90.5568 133.667 90.7829 133.548 91.0036C133.418 91.2422 133.263 91.479 133.089 91.7068C132.884 91.9757 132.647 92.2409 132.382 92.492C131.988 92.8676 131.529 93.2237 131.016 93.5513C130.837 93.6652 130.648 93.7792 130.454 93.886C129.681 94.3168 128.818 94.6836 127.887 94.9773C127.219 95.1874 126.514 95.3601 125.788 95.4918C125.305 95.5791 124.808 95.6503 124.31 95.7001C123.881 95.7447 123.446 95.7749 123.014 95.7909C122.617 95.8052 122.214 95.8087 121.819 95.7998C121.436 95.7927 121.048 95.7731 120.667 95.7429C120.286 95.7126 119.902 95.6717 119.526 95.62C119.136 95.5666 118.745 95.5007 118.364 95.4242C117.943 95.3387 117.527 95.239 117.124 95.1269C116.633 94.9898 116.154 94.8296 115.7 94.6551C115.006 94.3845 114.356 94.0694 113.769 93.7168C112.061 92.6896 110.966 91.3971 110.601 90.0031L110.608 90.0048Z" fill="#192147"/>
|
||||
<path d="M133.489 86.7222C133.475 81.9064 133.462 77.2757 133.448 72.4706C133.445 71.0089 133.439 69.3603 133.436 67.8506C133.567 65.627 130.959 63.3321 128.477 62.4793C128.036 62.3102 127.587 62.1607 127.131 62.0325C126.742 61.9239 126.348 61.8295 125.951 61.7494C125.584 61.6764 125.214 61.6141 124.844 61.5625C124.484 61.5126 124.121 61.477 123.759 61.4467C123.395 61.4183 123.03 61.4022 122.665 61.3933C122.284 61.3862 121.904 61.3898 121.523 61.4022C121.112 61.4183 120.701 61.4485 120.29 61.4877C119.816 61.5358 119.346 61.6052 118.878 61.6871C118.203 61.8099 117.537 61.9719 116.884 62.1767C116.884 62.1767 116.884 62.1767 116.884 62.1785C115.812 62.5203 114.838 62.944 113.928 63.5244C113.928 63.5244 113.928 63.5244 113.928 63.5226C113.467 63.8217 113.022 64.1529 112.627 64.5303C112.387 64.7617 112.164 65.0056 111.963 65.2691C111.803 65.4792 111.655 65.7017 111.527 65.935C111.416 66.1397 111.32 66.3516 111.238 66.5706C111.165 66.7771 111.107 66.9889 111.067 67.2061C111.067 67.2044 111.067 67.2026 111.067 67.2008C110.97 67.7064 111.009 68.2245 111.003 68.739C111.007 69.9728 111.01 71.3525 111.014 72.5365C111.028 77.5712 111.043 82.5313 111.057 87.5572C111.317 83.174 116.914 81.4381 120.617 81.1034C125.093 80.6281 133.135 82.2233 133.489 87.4913C133.489 87.2545 133.489 86.991 133.487 86.7204L133.489 86.7222Z" fill="#E2DED5"/>
|
||||
<path d="M133.5 90.5299C133.486 85.7141 133.473 81.0835 133.459 76.2783C133.455 74.8167 133.45 73.1681 133.447 71.6584C133.578 69.4347 130.97 67.1399 128.488 66.2871C128.047 66.1179 127.598 65.9684 127.142 65.8402C126.753 65.7316 126.359 65.6373 125.962 65.5571C125.595 65.4842 125.225 65.4218 124.855 65.3702C124.495 65.3204 124.132 65.2848 123.77 65.2545C123.405 65.226 123.041 65.21 122.676 65.2011C122.295 65.194 121.915 65.1975 121.534 65.21C121.123 65.226 120.712 65.2563 120.301 65.2954C119.827 65.3435 119.357 65.4129 118.889 65.4948C118.214 65.6177 117.548 65.7797 116.895 65.9844C116.895 65.9844 116.895 65.9844 116.895 65.9862C115.823 66.328 114.849 66.7517 113.939 67.3321C113.939 67.3321 113.939 67.3321 113.939 67.3304C113.478 67.6295 113.033 67.9606 112.638 68.338C112.398 68.5695 112.175 68.8134 111.974 69.0769C111.814 69.2869 111.666 69.5095 111.538 69.7427C111.427 69.9475 111.331 70.1593 111.249 70.3783C111.176 70.5848 111.118 70.7967 111.078 71.0139C111.078 71.0121 111.078 71.0103 111.078 71.0085C110.981 71.5142 111.02 72.0322 111.014 72.5467C111.018 73.7805 111.021 75.1603 111.025 76.3442C111.039 81.379 111.054 86.339 111.068 91.3649C111.328 86.9817 116.925 85.2459 120.628 84.9112C125.104 84.4358 133.146 86.031 133.5 91.299C133.5 91.0622 133.5 90.7988 133.498 90.5281L133.5 90.5299Z" fill="#BD707E"/>
|
||||
<path d="M124.208 72.7604C127.822 72.7604 130.751 71.3982 130.751 69.7178C130.751 68.0374 127.822 66.6752 124.208 66.6752C120.595 66.6752 117.666 68.0374 117.666 69.7178C117.666 71.3982 120.595 72.7604 124.208 72.7604Z" fill="#C67F8F"/>
|
||||
<path d="M134.344 90.2805C134.41 90.0811 134.465 89.8781 134.502 89.6716C134.502 89.6734 134.502 89.6752 134.502 89.6787C134.689 82.4363 134.468 75.2936 134.515 68.0939C133.596 77.681 110.763 77.5529 109.944 68.1651C109.958 73.0842 109.971 77.8502 109.985 82.8191C110.108 88.3915 108.703 92.2762 115.433 94.8506C115.915 95.0375 116.409 95.1996 116.907 95.3402C117.334 95.4577 117.765 95.5627 118.2 95.65C118.602 95.7301 119.006 95.7977 119.414 95.8547C119.809 95.9099 120.204 95.9491 120.601 95.9829C121 96.0149 121.401 96.031 121.801 96.0416C122.218 96.0488 122.634 96.0452 123.051 96.031C123.501 96.0132 123.952 95.9811 124.402 95.9366C124.92 95.8832 125.435 95.8066 125.948 95.7176C126.686 95.5841 127.416 95.4061 128.132 95.1817C128.132 95.1817 128.132 95.1818 128.132 95.18C129.307 94.8061 130.373 94.3414 131.369 93.7058C131.369 93.7058 131.369 93.7076 131.369 93.7094C131.873 93.3818 132.362 93.0204 132.795 92.6056C133.058 92.3528 133.302 92.0857 133.521 91.7956C133.521 91.7956 133.521 91.7956 133.521 91.7973C133.696 91.5641 133.858 91.3202 133.998 91.0656C134.119 90.8413 134.224 90.6098 134.313 90.3695C134.322 90.341 134.333 90.3125 134.344 90.2823V90.2805Z" fill="white"/>
|
||||
<path d="M122.234 96.1128C122.09 96.1128 121.946 96.1128 121.8 96.1092C121.367 96.0985 121.006 96.0807 120.667 96.054L120.594 96.0487C120.165 96.0131 119.809 95.9757 119.478 95.9312L119.401 95.9223C119.015 95.8689 118.632 95.8048 118.264 95.7318L118.184 95.7158C117.748 95.6267 117.311 95.5217 116.886 95.4042C116.378 95.2618 115.88 95.0962 115.406 94.9128C109.725 92.7391 109.797 89.6591 109.896 85.3969C109.916 84.5744 109.935 83.7216 109.916 82.8208L109.875 68.1651L110.008 68.1597C110.425 72.947 116.578 75.1547 122.12 75.1778C122.15 75.1778 122.181 75.1778 122.211 75.1778C127.794 75.1778 133.979 72.9666 134.445 68.0867L134.579 68.0939C134.559 70.9513 134.584 73.8479 134.607 76.6502C134.643 80.9087 134.679 85.3115 134.566 89.6786H134.543L134.565 89.6822C134.529 89.8798 134.476 90.081 134.404 90.3L134.392 90.3374C134.387 90.3534 134.381 90.3694 134.376 90.3854L134.246 90.802V90.7077C134.189 90.8376 134.125 90.9676 134.057 91.094L133.931 91.3272V91.3094C133.826 91.4821 133.708 91.6548 133.575 91.8329L133.455 91.9931V91.9842C133.274 92.2085 133.073 92.4275 132.841 92.6483L132.729 92.7568V92.7533C132.359 93.0933 131.924 93.4245 131.406 93.7592L131.303 93.8251V93.8197C130.391 94.3894 129.361 94.8523 128.157 95.2351L128.152 95.2386C127.461 95.4558 126.742 95.6321 126.015 95.7656L125.96 95.7763C125.394 95.876 124.887 95.9472 124.41 95.9953C123.945 96.0398 123.523 96.0701 123.119 96.0861L123.055 96.0896C122.789 96.0985 122.515 96.1039 122.236 96.1039L122.234 96.1128ZM120.555 95.9116L120.607 95.9152C120.961 95.9436 121.34 95.9632 121.803 95.9757C122.209 95.9828 122.608 95.9793 122.991 95.9668L123.048 95.9632C123.466 95.949 123.907 95.9187 124.393 95.8707C124.855 95.8244 125.346 95.7549 125.893 95.6606L125.935 95.6517C126.66 95.5199 127.376 95.3455 128.066 95.1318V95.1194L128.111 95.1158C129.352 94.7206 130.404 94.2416 131.331 93.6488L131.413 93.5972C131.94 93.2518 132.377 92.91 132.747 92.5557L132.781 92.5236C133.044 92.2673 133.268 92.0144 133.468 91.7545L133.53 91.6744C133.689 91.4554 133.824 91.2453 133.94 91.0335L133.961 90.9961C134.075 90.7807 134.171 90.5635 134.251 90.3463C134.257 90.3285 134.262 90.3124 134.267 90.2964L134.28 90.2608C134.349 90.0507 134.401 89.8549 134.435 89.6644C134.547 85.3026 134.509 80.9051 134.476 76.6537C134.454 74.1238 134.433 71.5157 134.443 68.9288C133.391 73.3156 127.532 75.3131 122.213 75.3131C122.182 75.3131 122.152 75.3131 122.122 75.3131C116.856 75.29 111.039 73.3031 110.014 69.0143L110.053 82.8208C110.072 83.7252 110.053 84.578 110.033 85.4023C109.935 89.611 109.862 92.65 115.456 94.79C115.928 94.9716 116.421 95.1354 116.925 95.2778C117.333 95.39 117.751 95.4915 118.168 95.5787L118.212 95.5876C118.581 95.6606 118.963 95.7264 119.352 95.7816L119.421 95.7905C119.756 95.8368 120.117 95.8778 120.553 95.9134L120.555 95.9116Z" fill="#192147"/>
|
||||
<path d="M131.219 73.1023C132.896 72.0466 133.988 70.6775 134.42 69.1001C134.411 71.63 134.433 74.1776 134.454 76.6523C134.49 80.9037 134.525 85.3012 134.413 89.6612C134.379 89.8499 134.328 90.0422 134.258 90.2523L134.23 90.336C134.146 90.5656 134.041 90.7953 133.92 91.0214C133.801 91.2386 133.664 91.4522 133.498 91.6765L133.45 91.7389C133.244 92.0095 133.009 92.2712 132.733 92.5382C132.371 92.8854 131.944 93.2201 131.431 93.5601L131.321 93.6296C131.287 93.6509 131.253 93.6723 131.219 93.6919V73.1023Z" fill="#F1EEEA"/>
|
||||
<path d="M131.095 63.1875C135.791 66.0147 135.631 70.519 130.735 73.25C125.839 75.981 118.063 75.9009 113.366 73.0737C108.67 70.2466 108.83 65.7423 113.726 63.0113C118.622 60.282 126.398 60.3604 131.095 63.1875ZM130.324 63.6184C126.035 61.0369 118.935 60.9657 114.465 63.4581C109.994 65.9506 109.848 70.0632 114.135 72.6447C118.424 75.2262 125.524 75.2974 129.994 72.8049C134.465 70.3124 134.611 66.1999 130.324 63.6184Z" fill="white"/>
|
||||
<path d="M122.191 75.308C118.96 75.308 115.738 74.5799 113.33 73.1307C111.073 71.7723 109.846 69.9795 109.878 68.0852C109.91 66.1286 111.265 64.3073 113.692 62.9543C118.599 60.2179 126.421 60.298 131.129 63.1305C133.386 64.4889 134.613 66.2817 134.581 68.176C134.549 70.1326 133.194 71.9539 130.767 73.3069C128.371 74.6439 125.277 75.308 122.191 75.308ZM122.268 61.0831C119.206 61.0831 116.136 61.7436 113.758 63.07C111.374 64.3999 110.044 66.1802 110.012 68.087C109.982 69.9332 111.183 71.6832 113.4 73.0167C118.072 75.8279 125.834 75.9062 130.703 73.1912C133.087 71.8631 134.417 70.0809 134.449 68.1742C134.479 66.328 133.277 64.5779 131.061 63.2445C128.672 61.8059 125.474 61.0831 122.27 61.0831H122.268ZM122.195 74.6885C119.243 74.6885 116.3 74.0226 114.101 72.6998C112.038 71.4589 110.918 69.821 110.947 68.0887C110.977 66.3013 112.214 64.6349 114.431 63.3993C118.912 60.8997 126.056 60.9727 130.356 63.5613C132.419 64.8022 133.539 66.4402 133.511 68.1724C133.48 69.9599 132.243 71.6263 130.026 72.8618C127.837 74.0831 125.013 74.6902 122.195 74.6902V74.6885ZM122.264 61.7009C119.469 61.7009 116.669 62.3027 114.497 63.5133C112.323 64.7257 111.109 66.3511 111.08 68.0887C111.052 69.7712 112.15 71.3681 114.169 72.5841C118.433 75.1496 125.517 75.2208 129.961 72.7443C132.134 71.5319 133.349 69.9065 133.377 68.1689C133.406 66.4864 132.307 64.8895 130.286 63.6735C128.106 62.3614 125.188 61.7009 122.262 61.7009H122.264Z" fill="#192147"/>
|
||||
<path d="M126.411 82.0537C127.099 82.0537 127.657 81.4957 127.657 80.8075C127.657 80.1192 127.099 79.5612 126.411 79.5612C125.722 79.5612 125.164 80.1192 125.164 80.8075C125.164 81.4957 125.722 82.0537 126.411 82.0537Z" fill="#D66C7B"/>
|
||||
<path d="M122.85 82.0537C123.538 82.0537 124.096 81.4957 124.096 80.8075C124.096 80.1192 123.538 79.5612 122.85 79.5612C122.162 79.5612 121.604 80.1192 121.604 80.8075C121.604 81.4957 122.162 82.0537 122.85 82.0537Z" fill="#5CABDF"/>
|
||||
<path d="M119.289 82.0539C119.978 82.0539 120.536 81.4959 120.536 80.8076C120.536 80.1194 119.978 79.5614 119.289 79.5614C118.601 79.5614 118.043 80.1194 118.043 80.8076C118.043 81.4959 118.601 82.0539 119.289 82.0539Z" fill="#63C740"/>
|
||||
<path d="M119.289 85.6144C119.978 85.6144 120.536 85.0565 120.536 84.3682C120.536 83.6799 119.978 83.1219 119.289 83.1219C118.601 83.1219 118.043 83.6799 118.043 84.3682C118.043 85.0565 118.601 85.6144 119.289 85.6144Z" fill="#C98DEF"/>
|
||||
<path d="M122.85 85.6144C123.538 85.6144 124.096 85.0565 124.096 84.3682C124.096 83.6799 123.538 83.1219 122.85 83.1219C122.162 83.1219 121.604 83.6799 121.604 84.3682C121.604 85.0565 122.162 85.6144 122.85 85.6144Z" fill="#FAA669"/>
|
||||
<path d="M119.289 89.1749C119.978 89.1749 120.536 88.6169 120.536 87.9287C120.536 87.2404 119.978 86.6824 119.289 86.6824C118.601 86.6824 118.043 87.2404 118.043 87.9287C118.043 88.6169 118.601 89.1749 119.289 89.1749Z" fill="#3AEFC3"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 76 KiB |
@@ -0,0 +1,74 @@
|
||||
<svg width="117" height="123" viewBox="0 0 117 123" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M32.8355 73.2284C15.0297 84.5049 16.7036 101.35 36.5554 110.661C56.4072 119.972 86.8693 118.363 104.253 107.082C121.638 95.8009 119.961 78.9553 100.534 69.6491C81.1056 60.3428 50.6413 61.9519 32.8355 73.2284Z" fill="#C5C7D1"/>
|
||||
<path d="M78.4499 44.57C96.2341 54.8365 96.3271 71.4831 78.6575 81.7518C60.9901 92.0205 32.2495 92.0205 14.4674 81.7518C-3.31676 71.4831 -3.41192 54.8365 14.2577 44.57C31.9272 34.3013 60.6657 34.3013 78.4499 44.57Z" fill="white" stroke="#192147" stroke-width="0.3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M46.6059 85.822C35.1087 85.822 24.3405 83.2592 16.2821 78.6071C8.82065 74.2989 4.70495 68.7883 4.6963 63.0895C4.68765 57.4404 8.73197 51.9795 16.0788 47.7081C24.0788 43.0582 34.8146 40.4975 46.3074 40.4975C57.8002 40.4975 68.5728 43.0603 76.6311 47.7124C84.0926 52.0206 88.2061 57.5312 88.2148 63.2279C88.2234 68.8769 84.1791 74.34 76.8301 78.6114C68.8301 83.2613 58.0943 85.8198 46.6015 85.8198L46.6059 85.822Z" fill="#8C8679"/>
|
||||
<path d="M76.6354 51.3459C68.577 46.6938 57.8087 44.131 46.3116 44.131C34.8145 44.131 24.083 46.6917 16.083 51.3416C9.53208 55.148 5.61103 59.9038 4.84326 64.8933C5.61968 69.9433 9.6121 74.7554 16.2863 78.6094C24.3447 83.2614 35.1129 85.8243 46.6101 85.8243C58.1072 85.8243 68.8387 83.2636 76.8387 78.6158C83.3896 74.8073 87.3128 70.0536 88.0806 65.0641C87.3041 60.0163 83.3117 55.202 76.6397 51.3502L76.6354 51.3459Z" fill="#B4B2FE" stroke="#192147" stroke-width="0.3" stroke-miterlimit="10"/>
|
||||
<path opacity="0.75" d="M55.3529 78.1841L74.0026 62.4415L49.6512 56.1148L29.9521 70.8102L55.3529 78.1841Z" fill="#7F7DCE"/>
|
||||
<mask id="mask0_3141_17502" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="4" y="44" width="85" height="42">
|
||||
<path d="M16.1584 51.4712L16.1584 51.4712C24.1305 46.8375 34.8346 44.281 46.3116 44.281C57.7804 44.281 68.5143 46.836 76.5433 51.4659L76.5476 51.4702L76.5647 51.4801C83.2071 55.3149 87.1536 60.0882 87.9288 65.0641C87.1623 69.9821 83.2845 74.6948 76.7633 78.4861C68.7911 83.1177 58.087 85.6743 46.6101 85.6743C35.1331 85.6743 24.3921 83.1156 16.3613 78.4795C9.71668 74.6425 5.7702 69.8714 4.99505 64.8933C5.76154 59.9753 9.63717 55.2604 16.1584 51.4712Z" fill="white" stroke="white" stroke-width="0.3"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_3141_17502)">
|
||||
<path d="M-8.16113 65.0508L46.5237 96.6224" stroke="#F1F0FF" stroke-width="0.3" stroke-miterlimit="10"/>
|
||||
<path d="M-0.349365 60.5416L54.3355 92.1132" stroke="#F1F0FF" stroke-width="0.3" stroke-miterlimit="10"/>
|
||||
<path d="M7.4646 56.03L62.1473 87.6016" stroke="#F1F0FF" stroke-width="0.3" stroke-miterlimit="10"/>
|
||||
<path d="M15.2764 51.5203L69.959 83.0919" stroke="#F1F0FF" stroke-width="0.3" stroke-miterlimit="10"/>
|
||||
<path d="M23.0884 47.0092L77.7732 78.5808" stroke="#F1F0FF" stroke-width="0.3" stroke-miterlimit="10"/>
|
||||
<path d="M30.8999 42.4999L85.5847 74.0716" stroke="#F1F0FF" stroke-width="0.3" stroke-miterlimit="10"/>
|
||||
<path d="M38.7119 37.9886L93.3967 69.5625" stroke="#F1F0FF" stroke-width="0.3" stroke-miterlimit="10"/>
|
||||
<path d="M46.5237 33.4791L101.209 65.0508" stroke="#F1F0FF" stroke-width="0.3" stroke-miterlimit="10"/>
|
||||
<path d="M-8.16113 65.0508L46.5237 33.4791" stroke="#F1F0FF" stroke-width="0.3" stroke-miterlimit="10"/>
|
||||
<path d="M-0.349365 69.5625L54.3355 37.9886" stroke="#F1F0FF" stroke-width="0.3" stroke-miterlimit="10"/>
|
||||
<path d="M7.4646 74.0716L62.1473 42.4999" stroke="#F1F0FF" stroke-width="0.3" stroke-miterlimit="10"/>
|
||||
<path d="M15.2766 78.583L69.9614 47.0092" stroke="#F1F0FF" stroke-width="0.3" stroke-miterlimit="10"/>
|
||||
<path d="M23.0881 83.0919L77.773 51.5203" stroke="#F1F0FF" stroke-width="0.3" stroke-miterlimit="10"/>
|
||||
<path d="M30.8999 87.6016L85.5847 56.03" stroke="#F1F0FF" stroke-width="0.3" stroke-miterlimit="10"/>
|
||||
<path d="M38.7119 92.1132L93.3967 60.5416" stroke="#F1F0FF" stroke-width="0.3" stroke-miterlimit="10"/>
|
||||
<path d="M46.5237 96.6224L101.209 65.0508" stroke="#F1F0FF" stroke-width="0.3" stroke-miterlimit="10"/>
|
||||
</g>
|
||||
<path d="M46.6059 85.822C35.1087 85.822 24.3405 83.2592 16.2821 78.6071C8.82065 74.2989 4.70495 68.7883 4.6963 63.0895C4.68765 57.4404 8.73197 51.9795 16.0788 47.7081C24.0788 43.0582 34.8146 40.4975 46.3074 40.4975C57.8002 40.4975 68.5728 43.0603 76.6311 47.7124C84.0926 52.0206 88.2061 57.5312 88.2148 63.2279C88.2234 68.8769 84.1791 74.34 76.8301 78.6114C68.8301 83.2613 58.0943 85.8198 46.6015 85.8198L46.6059 85.822Z" stroke="#192147" stroke-width="0.3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M78.718 81.7192C78.6986 81.7301 78.6791 81.7409 78.6597 81.7538C76.9316 82.7573 75.0976 83.6635 73.1793 84.4724C71.5486 85.1602 69.8552 85.7744 68.112 86.3194C66.4618 86.8363 64.7684 87.2883 63.0425 87.6754C61.3037 88.0669 59.5324 88.3935 57.7395 88.6551C55.8082 88.9363 53.8509 89.1439 51.8806 89.278C49.5665 89.4337 47.2329 89.4878 44.9058 89.4359C41.2573 89.358 37.6195 89.025 34.0791 88.4389C29.8488 87.7381 25.7591 86.6762 21.9527 85.2531C19.3033 84.2626 16.7924 83.0947 14.4696 81.7538C14.13 81.5592 13.7991 81.3602 13.4726 81.1612C11.8462 80.1642 10.382 79.111 9.07572 78.0123C7.94677 77.0629 6.93677 76.081 6.04572 75.0731C5.19576 74.1107 4.45611 73.1245 3.82242 72.121C3.17793 71.098 2.64806 70.0577 2.22849 69.0067C1.77215 67.8604 1.4499 66.699 1.26391 65.5311C1.12982 64.7006 1.06493 63.868 1.0671 63.0353L1.00005 86.7173C0.99789 87.55 1.06277 88.3826 1.19686 89.2131C1.38502 90.381 1.70727 91.5424 2.16144 92.6886C2.57885 93.7419 3.11089 94.7822 3.75322 95.803C4.38474 96.8065 5.12656 97.7927 5.97651 98.7551C6.86756 99.763 7.87756 100.745 9.00651 101.694C10.3128 102.793 11.7791 103.846 13.4034 104.843C13.7299 105.042 14.0608 105.241 14.4004 105.436C16.7232 106.777 19.2341 107.945 21.8835 108.935C25.6899 110.358 29.7796 111.42 34.0099 112.121C37.5503 112.707 41.1859 113.04 44.8366 113.118C47.1637 113.168 49.4973 113.116 51.8114 112.96C53.7817 112.828 55.739 112.62 57.6703 112.337C59.4654 112.075 61.2366 111.749 62.9733 111.357C64.6992 110.968 66.3926 110.516 68.0428 110.001C69.7859 109.456 71.4794 108.84 73.1101 108.154C75.0284 107.348 76.8624 106.441 78.5904 105.436C78.6099 105.425 78.6294 105.414 78.6488 105.401C87.3885 100.304 91.7615 93.6446 91.781 86.9725L91.848 63.2905C91.8286 69.9604 87.4555 76.6217 78.7159 81.7192H78.718Z" fill="#F1EEEA"/>
|
||||
<path d="M91.7832 64.6595C91.2101 70.8665 86.8586 76.9698 78.7181 81.7192C69.2626 86.9508 58.3365 89.4358 47.3887 89.505V113.126C58.2564 113.053 69.1718 110.743 78.5927 105.434C96.2795 96.4409 91.2317 79.5824 91.7832 64.6595Z" fill="#E2DED5"/>
|
||||
<path d="M91.7831 64.6598C91.8242 64.2034 91.848 63.7471 91.8501 63.2908C91.822 63.7449 91.8004 64.2013 91.7831 64.6598Z" fill="#E2DED5"/>
|
||||
<path d="M85.016 77.117V100.736C89.5145 96.5362 91.7681 91.7566 91.7832 86.9726L91.8502 63.2906C91.8373 68.0984 89.5599 72.9018 85.016 77.117Z" fill="#8C8679"/>
|
||||
<path d="M78.718 81.7192C78.6986 81.7301 78.6791 81.7409 78.6597 81.7538C76.9316 82.7573 75.0976 83.6635 73.1793 84.4724C71.5486 85.1602 69.8552 85.7744 68.112 86.3194C66.4618 86.8363 64.7684 87.2883 63.0425 87.6754C61.3037 88.0669 59.5324 88.3935 57.7395 88.6551C55.8082 88.9363 53.8509 89.1439 51.8806 89.278C49.5665 89.4337 47.2329 89.4878 44.9058 89.4359C41.2573 89.358 37.6195 89.025 34.0791 88.4389C29.8488 87.7381 25.7591 86.6762 21.9527 85.2531C19.3033 84.2626 16.7924 83.0947 14.4696 81.7538C14.13 81.5592 13.7991 81.3602 13.4726 81.1612C11.8462 80.1642 10.382 79.111 9.07572 78.0123C7.94677 77.0629 6.93677 76.081 6.04572 75.0731C5.19576 74.1107 4.45611 73.1245 3.82242 72.121C3.17793 71.098 2.64806 70.0577 2.22849 69.0067C1.77215 67.8604 1.4499 66.699 1.26391 65.5311C1.12982 64.7006 1.06493 63.868 1.0671 63.0353L1.00005 86.7173C0.99789 87.55 1.06277 88.3826 1.19686 89.2131C1.38502 90.381 1.70727 91.5424 2.16144 92.6886C2.57885 93.7419 3.11089 94.7822 3.75322 95.803C4.38474 96.8065 5.12656 97.7927 5.97651 98.7551C6.86756 99.763 7.87756 100.745 9.00651 101.694C10.3128 102.793 11.7791 103.846 13.4034 104.843C13.7299 105.042 14.0608 105.241 14.4004 105.436C16.7232 106.777 19.2341 107.945 21.8835 108.935C25.6899 110.358 29.7796 111.42 34.0099 112.121C37.5503 112.707 41.1859 113.04 44.8366 113.118C47.1637 113.168 49.4973 113.116 51.8114 112.96C53.7817 112.828 55.739 112.62 57.6703 112.337C59.4654 112.075 61.2366 111.749 62.9733 111.357C64.6992 110.968 66.3926 110.516 68.0428 110.001C69.7859 109.456 71.4794 108.84 73.1101 108.154C75.0284 107.348 76.8624 106.441 78.5904 105.436C78.6099 105.425 78.6294 105.414 78.6488 105.401C87.3885 100.304 91.7615 93.6446 91.781 86.9725L91.848 63.2905C91.8286 69.9604 87.4555 76.6217 78.7159 81.7192H78.718Z" stroke="#192147" stroke-width="0.3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M68.0429 109.999L68.0732 91.5014L76.6874 106.641V106.476C73.9969 107.895 71.1032 109.052 68.0408 109.997L68.0429 109.999Z" fill="#8C8679"/>
|
||||
<path d="M1 82.3875C1.20979 93.7678 12.1532 100.931 21.8834 104.607C34.7798 109.344 49.5232 109.984 62.9733 107.03C75.1192 104.954 92.4752 94.713 91.7831 82.6449" stroke="#192147" stroke-width="0.3" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M78.4499 25.1051C96.2341 35.3717 96.3271 52.0182 78.6575 62.2869C60.9901 72.5556 32.2495 72.5556 14.4674 62.2869C-3.31676 52.0182 -3.41192 35.3717 14.2577 25.1051C31.9272 14.8365 60.6657 14.8365 78.4499 25.1051Z" stroke="#192147" stroke-width="0.162205" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M24.7341 70.2068C26.6452 70.2068 28.1945 68.6576 28.1945 66.7465C28.1945 64.8353 26.6452 63.2861 24.7341 63.2861C22.8229 63.2861 21.2737 64.8353 21.2737 66.7465C21.2737 68.6576 22.8229 70.2068 24.7341 70.2068Z" fill="#ED6E85"/>
|
||||
<path d="M75.1258 26.087C76.5591 26.087 77.7211 24.925 77.7211 23.4917C77.7211 22.0584 76.5591 20.8964 75.1258 20.8964C73.6925 20.8964 72.5305 22.0584 72.5305 23.4917C72.5305 24.925 73.6925 26.087 75.1258 26.087Z" fill="#3AEFC3"/>
|
||||
<path opacity="0.75" d="M56.8983 64.7394L74.503 43.7609L47.5314 39.005L29.9268 59.9836L56.8983 64.7394Z" fill="#FF9901"/>
|
||||
<path opacity="0.75" d="M74.5029 43.761L65.1014 17.9357L38.1321 13.1799L47.4989 38.9143L74.5029 43.761Z" fill="#FFE600"/>
|
||||
<path opacity="0.75" d="M29.9266 59.9836L47.4989 38.9142L38.132 13.1798L20.5273 34.1584L29.9266 59.9836Z" fill="#FDFFAE"/>
|
||||
<path opacity="0.75" d="M47.4989 38.9142L65.1014 17.9357L38.132 13.1798L20.5273 34.1584L47.4989 38.9142Z" fill="#FFF064"/>
|
||||
<path opacity="0.75" d="M20.5273 34.1583L29.9266 59.9836L56.8981 64.7395L47.4989 38.9142L20.5273 34.1583Z" fill="#FFD600"/>
|
||||
<path opacity="0.75" d="M56.898 64.7394L47.4988 38.9141L65.1013 17.9355L74.5027 43.7608L56.898 64.7394Z" fill="#EAB703"/>
|
||||
<path d="M56.8981 64.7394L47.5312 39.0049L65.1013 17.9355" stroke="white" stroke-width="0.216274" stroke-miterlimit="10"/>
|
||||
<path d="M20.5273 34.1583L47.5313 39.005" stroke="white" stroke-width="0.216274" stroke-miterlimit="10"/>
|
||||
<path d="M61.1519 59.4692L56.5193 46.7415" stroke="white" stroke-width="0.216274" stroke-miterlimit="10"/>
|
||||
<path d="M63.3582 47.8161L65.7004 54.2502" stroke="white" stroke-width="0.216274" stroke-miterlimit="10"/>
|
||||
<path d="M62.6876 48.4522C62.2226 48.9929 61.6408 48.8869 61.3986 48.2164L60.7476 46.4257C60.5032 45.7552 60.6784 44.7582 61.1369 44.2132L62.4432 42.656C62.9017 42.1089 63.477 42.2105 63.7214 42.881L64.394 44.7301C64.6384 45.4006 64.4567 46.3933 63.9917 46.9339L62.6876 48.4522Z" stroke="white" stroke-width="0.216274" stroke-miterlimit="10"/>
|
||||
<path d="M55.8533 47.5849C55.3884 48.1256 54.8066 48.0196 54.5644 47.3492L53.9134 45.5585C53.669 44.888 53.8442 43.891 54.3027 43.346L55.609 41.7888C56.0675 41.2416 56.6427 41.3433 56.8871 42.0137L57.5597 43.8629C57.8041 44.5333 57.6225 45.526 57.1575 46.0667L55.8533 47.5849Z" stroke="white" stroke-width="0.216274" stroke-miterlimit="10"/>
|
||||
<path d="M20.5273 34.1583L29.9266 59.9836L56.8981 64.7394L74.5028 43.7609L65.1014 17.9356L38.1645 13.2684L20.5273 34.1583Z" stroke="#192147" stroke-width="0.216274" stroke-miterlimit="10"/>
|
||||
<path d="M78.4499 7.80356C96.2341 18.0701 96.3271 34.7167 78.6575 44.9854C60.9901 55.254 32.2495 55.254 14.4674 44.9854C-3.31676 34.7167 -3.41192 18.0701 14.2577 7.80356C31.9272 -2.46512 60.6657 -2.46512 78.4499 7.80356Z" stroke="#192147" stroke-width="0.162205" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M83.5604 45.338C85.4715 45.338 87.0207 43.7887 87.0207 41.8776C87.0207 39.9665 85.4715 38.4172 83.5604 38.4172C81.6492 38.4172 80.1 39.9665 80.1 41.8776C80.1 43.7887 81.6492 45.338 83.5604 45.338Z" fill="#5CABDF"/>
|
||||
<path d="M10.2437 13.3271C11.6771 13.3271 12.839 12.1652 12.839 10.7318C12.839 9.29848 11.6771 8.13654 10.2437 8.13654C8.81039 8.13654 7.64844 9.29848 7.64844 10.7318C7.64844 12.1652 8.81039 13.3271 10.2437 13.3271Z" fill="#63C740"/>
|
||||
<path d="M24.8203 115.724V119.684L76.6893 122.39V115.646L24.8203 115.724Z" fill="#C5C7D1"/>
|
||||
<path d="M24.8203 91.5014H68.0751V115.724C68.0751 116.68 67.3008 117.454 66.3449 117.454H26.5505C25.5946 117.454 24.8203 116.68 24.8203 115.724V91.5014Z" fill="#F1EEEA" stroke="#192147" stroke-width="0.162205" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M24.8203 91.5014H68.0751V107.073C68.0751 108.029 67.3008 108.803 66.3449 108.803H26.5505C25.5946 108.803 24.8203 108.029 24.8203 107.073V91.5014Z" fill="white" stroke="#192147" stroke-width="0.162205" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M68.0751 91.5014H24.8203V108.803H68.0751V91.5014Z" fill="white" stroke="#192147" stroke-width="0.162205" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M66.7776 106.641V93.6645C66.7776 93.1867 66.3903 92.7994 65.9125 92.7994H26.9832C26.5054 92.7994 26.1181 93.1867 26.1181 93.6645V106.641C26.1181 107.119 26.5054 107.506 26.9832 107.506H65.9125C66.3903 107.506 66.7776 107.119 66.7776 106.641Z" fill="#F1EEEA" stroke="#192147" stroke-width="0.162205" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M65.4797 106.208V94.0967H27.4155V106.208H65.4797Z" fill="#8C8679"/>
|
||||
<path d="M65.4797 106.208V95.1784H27.4155V106.208H65.4797Z" fill="#3E4771"/>
|
||||
<path d="M65.4797 106.208V94.0967H27.4155V106.208H65.4797Z" stroke="#192147" stroke-width="0.162205" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M41.5007 101.807C41.5007 100.709 42.1959 100.07 43.0849 100.07C43.5062 100.07 43.8499 100.272 44.0747 100.492L43.6612 100.957C43.5036 100.809 43.3253 100.719 43.0849 100.719C42.6146 100.719 42.2709 101.12 42.2709 101.784C42.2709 102.448 42.6146 102.861 43.1134 102.861C43.3537 102.861 43.5501 102.743 43.7104 102.569L44.1238 103.024C43.8525 103.345 43.4829 103.51 43.0358 103.51C42.2114 103.51 41.5007 102.929 41.5007 101.81V101.807Z" fill="#FF5C83"/>
|
||||
<path d="M44.5039 100.132H45.6824C46.3853 100.132 46.9616 100.375 46.9616 101.166C46.9616 101.957 46.3827 102.256 45.6824 102.256H45.256V103.448H44.5039V100.132ZM45.6203 101.659C46.0157 101.659 46.2251 101.489 46.2251 101.166C46.2251 100.843 46.0132 100.729 45.6203 100.729H45.2534V101.659H45.6203ZM46.0623 101.577L47.1193 103.448H46.2793L45.5428 102.057L46.0623 101.577Z" fill="#FF5C83"/>
|
||||
<path d="M47.4526 102.817H48.2279V100.76H47.4526V100.132H49.7501V100.76H48.9748V102.817H49.7501V103.445H47.4526V102.817Z" fill="#FF5C83"/>
|
||||
<path d="M51.1506 100.76H50.1582V100.132H52.895V100.76H51.9V103.445H51.1506V100.76Z" fill="#FF5C83"/>
|
||||
<path d="M53.3037 102.817H54.079V100.76H53.3037V100.132H55.6012V100.76H54.8259V102.817H55.6012V103.445H53.3037V102.817Z" fill="#FF5C83"/>
|
||||
<path d="M56.1257 101.807C56.1257 100.709 56.8209 100.07 57.7099 100.07C58.1312 100.07 58.4749 100.272 58.6997 100.491L58.2862 100.957C58.1286 100.809 57.9503 100.719 57.7099 100.719C57.2396 100.719 56.8959 101.119 56.8959 101.784C56.8959 102.448 57.2396 102.861 57.7384 102.861C57.9787 102.861 58.1751 102.742 58.3353 102.569L58.7488 103.024C58.4775 103.345 58.1079 103.51 57.6608 103.51C56.8364 103.51 56.1257 102.928 56.1257 101.809V101.807Z" fill="#FF5C83"/>
|
||||
<path d="M59.8518 100.132H60.7512L61.7849 103.448H60.989L60.56 101.771C60.4747 101.44 60.3739 101.052 60.2964 100.701H60.2757C60.1956 101.05 60.1025 101.44 60.0173 101.771L59.5857 103.448H58.8181L59.8518 100.132ZM59.503 102.073H61.0898V102.657H59.503V102.073Z" fill="#FF5C83"/>
|
||||
<path d="M62.2424 100.132H62.9919V102.817H64.4675V103.445H62.2424V100.129V100.132Z" fill="#FF5C83"/>
|
||||
<path d="M28.7861 102.784L29.4891 101.988C29.6751 102.158 30.0034 102.332 30.3161 102.332C30.8846 102.332 31.3782 101.941 31.3782 100.755C31.3782 99.5689 30.9182 99.2743 30.5823 99.2743C30.2463 99.2743 29.9439 99.4371 29.9439 99.9617C29.9439 100.398 30.2101 100.554 30.5512 100.554C30.8174 100.554 31.0965 100.429 31.3627 100.086L31.4248 100.928C31.081 101.287 30.59 101.489 30.254 101.489C29.4115 101.489 28.7241 101.021 28.7241 99.9591C28.7241 98.8969 29.5744 98.2741 30.5487 98.2741C31.523 98.2741 32.5929 98.9615 32.5929 100.755C32.5929 102.549 31.5411 103.407 30.4401 103.407C29.6984 103.407 29.1299 103.109 28.7861 102.781V102.784Z" fill="#FF5C83"/>
|
||||
<path d="M33.575 102.394C33.575 101.841 33.9807 101.381 34.588 101.381C35.1953 101.381 35.6011 101.841 35.6011 102.394C35.6011 102.947 35.1953 103.407 34.588 103.407C33.9807 103.407 33.575 102.955 33.575 102.394Z" fill="#FF5C83"/>
|
||||
<path d="M36.5548 102.551C37.8729 101.473 38.8394 100.649 38.8394 99.9771C38.8394 99.5326 38.5577 99.3206 38.1209 99.3206C37.754 99.3206 37.4645 99.5558 37.2009 99.7884L36.4902 99.07C37.0278 98.5247 37.5266 98.274 38.307 98.274C39.3666 98.274 40.1083 98.9123 40.1083 99.897C40.1083 100.693 39.2813 101.566 38.4698 102.254C38.7438 102.223 39.1159 102.192 39.3588 102.192H40.3564V103.316H36.5497V102.551H36.5548Z" fill="#FF5C83"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 17 KiB |
Vendored
+1
-1
@@ -13,7 +13,7 @@
|
||||
Cloud.setup({
|
||||
|
||||
/* eslint-disable */
|
||||
methods: {"downloadSitemap":{"verb":"GET","url":"/sitemap.xml","args":[]},"receiveUsageAnalytics":{"verb":"POST","url":"/api/v1/webhooks/receive-usage-analytics","args":["anonymousIdentifier","fleetVersion","licenseTier","numHostsEnrolled","numUsers","numTeams","numPolicies","numLabels","softwareInventoryEnabled","vulnDetectionEnabled","systemUsersEnabled","hostStatusWebhookEnabled","numWeeklyActiveUsers","numWeeklyPolicyViolationDaysActual","numWeeklyPolicyViolationDaysPossible","hostsEnrolledByOperatingSystem","hostsEnrolledByOrbitVersion","hostsEnrolledByOsqueryVersion","storedErrors","numHostsNotResponding","organization"]},"receiveFromGithub":{"verb":"GET","url":"/api/v1/webhooks/github","args":["botSignature","action","sender","repository","changes","issue","comment","pull_request","label"]},"receiveFromStripe":{"verb":"POST","url":"/api/v1/webhooks/receive-from-stripe","args":["id","type","data","webhookSecret"]},"deliverContactFormMessage":{"verb":"POST","url":"/api/v1/deliver-contact-form-message","args":["emailAddress","topic","firstName","lastName","message"]},"sendPasswordRecoveryEmail":{"verb":"POST","url":"/api/v1/entrance/send-password-recovery-email","args":["emailAddress"]},"signup":{"verb":"POST","url":"/api/v1/customers/signup","args":["emailAddress","password","organization","firstName","lastName","signupReason"]},"updateProfile":{"verb":"POST","url":"/api/v1/account/update-profile","args":["firstName","lastName","organization","emailAddress"]},"updatePassword":{"verb":"POST","url":"/api/v1/account/update-password","args":["oldPassword","newPassword"]},"updateBillingCard":{"verb":"POST","url":"/api/v1/account/update-billing-card","args":["stripeToken","billingCardLast4","billingCardBrand","billingCardExpMonth","billingCardExpYear"]},"login":{"verb":"POST","url":"/api/v1/customers/login","args":["emailAddress","password","rememberMe"]},"logout":{"verb":"GET","url":"/api/v1/account/logout","args":[]},"createQuote":{"verb":"POST","url":"/api/v1/customers/create-quote","args":["numberOfHosts"]},"saveBillingInfoAndSubscribe":{"verb":"POST","url":"/api/v1/customers/save-billing-info-and-subscribe","args":["quoteId","organization","firstName","lastName","paymentSource"]},"updatePasswordAndLogin":{"verb":"POST","url":"/api/v1/entrance/update-password-and-login","args":["password","token"]},"deliverDemoSignup":{"verb":"POST","url":"/api/v1/deliver-demo-signup","args":["emailAddress"]},"createOrUpdateOneNewsletterSubscription":{"verb":"POST","url":"/api/v1/create-or-update-one-newsletter-subscription","args":["emailAddress","subscribeTo"]},"unsubscribeFromAllNewsletters":{"verb":"GET","url":"/api/v1/unsubscribe-from-all-newsletters","args":["emailAddress"]},"generateLicenseKey":{"verb":"POST","url":"/api/v1/admin/generate-license-key","args":["numberOfHosts","organization","expiresAt"]},"createVantaAuthorizationRequest":{"verb":"POST","url":"/api/v1/create-vanta-authorization-request","args":["emailAddress","fleetInstanceUrl","fleetApiKey"]},"deliverMdmBetaSignup":{"verb":"POST","url":"/api/v1/deliver-mdm-beta-signup","args":["emailAddress","fullName","jobTitle"]},"deliverAppleCsr":{"verb":"POST","url":"/api/v1/deliver-apple-csr","args":["csr"]}}
|
||||
methods: {"downloadSitemap":{"verb":"GET","url":"/sitemap.xml","args":[]},"downloadRssFeed":{"verb":"GET","url":"/rss/:categoryName","args":["categoryName"]},"receiveUsageAnalytics":{"verb":"POST","url":"/api/v1/webhooks/receive-usage-analytics","args":["anonymousIdentifier","fleetVersion","licenseTier","numHostsEnrolled","numUsers","numTeams","numPolicies","numLabels","softwareInventoryEnabled","vulnDetectionEnabled","systemUsersEnabled","hostStatusWebhookEnabled","numWeeklyActiveUsers","numWeeklyPolicyViolationDaysActual","numWeeklyPolicyViolationDaysPossible","hostsEnrolledByOperatingSystem","hostsEnrolledByOrbitVersion","hostsEnrolledByOsqueryVersion","storedErrors","numHostsNotResponding","organization"]},"receiveFromGithub":{"verb":"GET","url":"/api/v1/webhooks/github","args":["botSignature","action","sender","repository","changes","issue","comment","pull_request","label"]},"receiveFromStripe":{"verb":"POST","url":"/api/v1/webhooks/receive-from-stripe","args":["id","type","data","webhookSecret"]},"deliverContactFormMessage":{"verb":"POST","url":"/api/v1/deliver-contact-form-message","args":["emailAddress","topic","firstName","lastName","message"]},"sendPasswordRecoveryEmail":{"verb":"POST","url":"/api/v1/entrance/send-password-recovery-email","args":["emailAddress"]},"signup":{"verb":"POST","url":"/api/v1/customers/signup","args":["emailAddress","password","organization","firstName","lastName","signupReason"]},"updateProfile":{"verb":"POST","url":"/api/v1/account/update-profile","args":["firstName","lastName","organization","emailAddress"]},"updatePassword":{"verb":"POST","url":"/api/v1/account/update-password","args":["oldPassword","newPassword"]},"updateBillingCard":{"verb":"POST","url":"/api/v1/account/update-billing-card","args":["stripeToken","billingCardLast4","billingCardBrand","billingCardExpMonth","billingCardExpYear"]},"login":{"verb":"POST","url":"/api/v1/customers/login","args":["emailAddress","password","rememberMe"]},"logout":{"verb":"GET","url":"/api/v1/account/logout","args":[]},"createQuote":{"verb":"POST","url":"/api/v1/customers/create-quote","args":["numberOfHosts"]},"saveBillingInfoAndSubscribe":{"verb":"POST","url":"/api/v1/customers/save-billing-info-and-subscribe","args":["quoteId","organization","firstName","lastName","paymentSource"]},"updatePasswordAndLogin":{"verb":"POST","url":"/api/v1/entrance/update-password-and-login","args":["password","token"]},"deliverDemoSignup":{"verb":"POST","url":"/api/v1/deliver-demo-signup","args":["emailAddress"]},"createOrUpdateOneNewsletterSubscription":{"verb":"POST","url":"/api/v1/create-or-update-one-newsletter-subscription","args":["emailAddress","subscribeTo"]},"unsubscribeFromAllNewsletters":{"verb":"GET","url":"/api/v1/unsubscribe-from-all-newsletters","args":["emailAddress"]},"generateLicenseKey":{"verb":"POST","url":"/api/v1/admin/generate-license-key","args":["numberOfHosts","organization","expiresAt"]},"createVantaAuthorizationRequest":{"verb":"POST","url":"/api/v1/create-vanta-authorization-request","args":["emailAddress","fleetInstanceUrl","fleetApiKey"]},"deliverMdmBetaSignup":{"verb":"POST","url":"/api/v1/deliver-mdm-beta-signup","args":["emailAddress","fullName","jobTitle","numberOfHosts"]},"deliverAppleCsr":{"verb":"POST","url":"/api/v1/deliver-apple-csr","args":["unsignedCsrData"]},"deliverPremiumUpgradeForm":{"verb":"POST","url":"/api/v1/deliver-premium-upgrade-form","args":["organization","monthsUsingFleetFree","emailAddress","numberOfHosts"]}}
|
||||
/* eslint-enable */
|
||||
|
||||
});
|
||||
|
||||
+65
@@ -0,0 +1,65 @@
|
||||
parasails.registerPage('upgrade', {
|
||||
// ╦╔╗╔╦╔╦╗╦╔═╗╦ ╔═╗╔╦╗╔═╗╔╦╗╔═╗
|
||||
// ║║║║║ ║ ║╠═╣║ ╚═╗ ║ ╠═╣ ║ ║╣
|
||||
// ╩╝╚╝╩ ╩ ╩╩ ╩╩═╝ ╚═╝ ╩ ╩ ╩ ╩ ╚═╝
|
||||
data: {
|
||||
formData: {
|
||||
monthsUsingFleetFree: 'Please select one',
|
||||
},
|
||||
|
||||
// For tracking client-side validation errors in our form.
|
||||
// > Has property set to `true` for each invalid property in `formData`.
|
||||
formErrors: { /* … */ },
|
||||
|
||||
// Form rules
|
||||
formRules: {
|
||||
organization: {required: true },
|
||||
monthsUsingFleetFree: {
|
||||
required: true,
|
||||
isIn:[
|
||||
'1 - 3 months',
|
||||
'3 - 6 months',
|
||||
'6 - 12 months',
|
||||
'12+ months',
|
||||
]
|
||||
},
|
||||
emailAddress: {required: true, isEmail: true},
|
||||
numberOfHosts: {required: true },
|
||||
},
|
||||
cloudError: '',
|
||||
// Syncing / loading state
|
||||
syncing: false,
|
||||
cloudSuccess: false,
|
||||
},
|
||||
|
||||
// ╦ ╦╔═╗╔═╗╔═╗╦ ╦╔═╗╦ ╔═╗
|
||||
// ║ ║╠╣ ║╣ ║ ╚╦╝║ ║ ║╣
|
||||
// ╩═╝╩╚ ╚═╝╚═╝ ╩ ╚═╝╩═╝╚═╝
|
||||
beforeMount: function() {
|
||||
//…
|
||||
},
|
||||
mounted: async function() {
|
||||
//…
|
||||
},
|
||||
|
||||
// ╦╔╗╔╔╦╗╔═╗╦═╗╔═╗╔═╗╔╦╗╦╔═╗╔╗╔╔═╗
|
||||
// ║║║║ ║ ║╣ ╠╦╝╠═╣║ ║ ║║ ║║║║╚═╗
|
||||
// ╩╝╚╝ ╩ ╚═╝╩╚═╩ ╩╚═╝ ╩ ╩╚═╝╝╚╝╚═╝
|
||||
methods: {
|
||||
typeClearOneFormError: async function(field) {
|
||||
if(this.formErrors[field]){
|
||||
this.formErrors = _.omit(this.formErrors, field);
|
||||
}
|
||||
},
|
||||
submittedForm: function() {
|
||||
this.cloudSuccess = true;
|
||||
},
|
||||
_resetForms: async function() {
|
||||
this.cloudError = '';
|
||||
this.formData = {};
|
||||
this.formRules = {};
|
||||
this.formErrors = {};
|
||||
await this.forceRender();
|
||||
},
|
||||
}
|
||||
});
|
||||
Vendored
+1
@@ -69,6 +69,7 @@
|
||||
@import 'pages/vanta-authorization.less';
|
||||
@import 'pages/admin/generate-license.less';
|
||||
@import 'pages/fleet-mdm.less';
|
||||
@import 'pages/upgrade.less';
|
||||
|
||||
@import 'pages/transparency.less';
|
||||
@import 'pages/press-kit.less';
|
||||
|
||||
+185
@@ -0,0 +1,185 @@
|
||||
#upgrade {
|
||||
background: linear-gradient(180deg, rgba(232, 241, 246, 0.5) 4.75%, rgba(255, 255, 255, 0) 37.29%);
|
||||
[purpose='page-container'] {
|
||||
padding-top: 100px;
|
||||
padding-bottom: 120px;
|
||||
max-width: 1200px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding-left: 40px;
|
||||
padding-right: 40px;
|
||||
}
|
||||
h1 {
|
||||
font-weight: 800;
|
||||
font-size: 40px;
|
||||
line-height: 48px;
|
||||
text-align: left;
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
h2 {
|
||||
font-weight: 800;
|
||||
font-size: 28px;
|
||||
line-height: 38px;
|
||||
}
|
||||
h3 {
|
||||
font-weight: 700;
|
||||
font-size: 20px;
|
||||
line-height: 24px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
[purpose='feature'] {
|
||||
img {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
[purpose='feature-image'] {
|
||||
min-width: 160px;
|
||||
margin-right: 40px;
|
||||
}
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
[purpose='upgrade-form'] {
|
||||
margin-left: 80px;
|
||||
padding: 40px;
|
||||
background: #F9FAFC;
|
||||
box-shadow: 0px 0px 0px 1px #E2E4EA;
|
||||
border-radius: 8px;
|
||||
width: 480px;
|
||||
input {
|
||||
border: 1px solid #C5C7D1;
|
||||
border-radius: 6px;
|
||||
height: 48px;
|
||||
font-size: 16px;
|
||||
color: @core-fleet-black;
|
||||
}
|
||||
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
input[type='number'] {
|
||||
-moz-appearance: textfield;
|
||||
}
|
||||
select {
|
||||
font-size: 16px;
|
||||
border: 1px solid #C5C7D1;
|
||||
background-color: #FFF;
|
||||
height: 48px;
|
||||
width: 100%;
|
||||
margin-right: 0;
|
||||
margin-left: 0;
|
||||
border-radius: 8px;
|
||||
padding: 12px;
|
||||
background: url('/images/chevron-down-fleet-black-8x8@2x.png') no-repeat 96% 50%, #FFF;
|
||||
background-size: 16px 16px;
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
[purpose='submit-button'] {
|
||||
position: relative;
|
||||
}
|
||||
[purpose='submit-button']::before {
|
||||
background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
|
||||
opacity: 1;
|
||||
content: ' ';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -5px;
|
||||
width: 233px;
|
||||
max-width: 60%;
|
||||
height: 100%;
|
||||
transform: skew(-10deg);
|
||||
transition: left 0.5s ease-in, opacity 0.50s ease-in, width 0.5s ease-in;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1201px) {
|
||||
[purpose='upgrade-form'] {
|
||||
padding: 24px;
|
||||
width: 400px;
|
||||
}
|
||||
[purpose='feature'] {
|
||||
[purpose='feature-image'] {
|
||||
margin-right: 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 1024px) {
|
||||
[purpose='page-container'] {
|
||||
padding-top: 60px;
|
||||
padding-bottom: 80px;
|
||||
}
|
||||
[purpose='upgrade-form'] {
|
||||
margin-left: 40px;
|
||||
}
|
||||
h1 {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
[purpose='feature'] {
|
||||
text-align: center;
|
||||
width: 50%;
|
||||
[purpose='feature-image'] {
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
width: auto;
|
||||
margin-bottom: 40px;
|
||||
img {
|
||||
height: 160px;
|
||||
}
|
||||
}
|
||||
}
|
||||
[purpose='feature-row'] {
|
||||
[purpose='feature']:first-child {
|
||||
margin-right: 80px;
|
||||
}
|
||||
[purpose='feature']:only-child {
|
||||
margin-right: 0px;
|
||||
width: 415px;
|
||||
img {
|
||||
margin-left: 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
[purpose='upgrade-form'] {
|
||||
width: 100%;
|
||||
padding: 40px;
|
||||
margin-left: auto;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
h1 {
|
||||
text-align: center;
|
||||
font-size: 32px;
|
||||
line-height: 38px;
|
||||
}
|
||||
[purpose='page-container'] {
|
||||
padding-top: 60px;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
padding-bottom: 80px;
|
||||
}
|
||||
[purpose='feature-row'] {
|
||||
[purpose='feature']:first-child {
|
||||
margin-right: unset;
|
||||
}
|
||||
[purpose='feature']:only-child {
|
||||
margin-right: unset;
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
[purpose='feature'] {
|
||||
width: 100%;
|
||||
max-width: 440px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 481px) {
|
||||
[purpose='upgrade-form'] {
|
||||
padding: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Vendored
+2
@@ -51,4 +51,6 @@ module.exports.policies = {
|
||||
'deliver-mdm-beta-signup': true,
|
||||
'deliver-apple-csr': true,
|
||||
'download-rss-feed': true,
|
||||
'view-upgrade': true,
|
||||
'deliver-premium-upgrade-form': true,
|
||||
};
|
||||
|
||||
Vendored
+9
@@ -257,6 +257,14 @@ module.exports.routes = {
|
||||
}
|
||||
},
|
||||
|
||||
'GET /upgrade': {
|
||||
action: 'view-upgrade',
|
||||
locals: {
|
||||
pageTitleForMeta: 'Upgrade to Fleet Premium | Fleet for osquery',
|
||||
pageDescriptionForMeta: 'Learn about the benefits of upgrading to Fleet Premium',
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
|
||||
// ╦ ╔═╗╔═╗╔═╗╔═╗╦ ╦ ╦═╗╔═╗╔╦╗╦╦═╗╔═╗╔═╗╔╦╗╔═╗
|
||||
@@ -409,4 +417,5 @@ module.exports.routes = {
|
||||
'POST /api/v1/create-vanta-authorization-request': { action: 'create-vanta-authorization-request' },
|
||||
'POST /api/v1/deliver-mdm-beta-signup': { action: 'deliver-mdm-beta-signup' },
|
||||
'POST /api/v1/deliver-apple-csr ': { action: 'deliver-apple-csr', csrf: false},
|
||||
'POST /api/v1/deliver-premium-upgrade-form': { action: 'deliver-premium-upgrade-form' },
|
||||
};
|
||||
|
||||
+1
@@ -236,6 +236,7 @@
|
||||
<script src="/js/pages/try-fleet/sandbox-expired.page.js"></script>
|
||||
<script src="/js/pages/try-fleet/sandbox-login.page.js"></script>
|
||||
<script src="/js/pages/try-fleet/sandbox-teleporter.page.js"></script>
|
||||
<script src="/js/pages/upgrade.page.js"></script>
|
||||
<script src="/js/pages/vanta-authorization.page.js"></script>
|
||||
<!--SCRIPTS END-->
|
||||
|
||||
|
||||
+1
@@ -243,6 +243,7 @@
|
||||
<script src="/js/pages/try-fleet/sandbox-expired.page.js"></script>
|
||||
<script src="/js/pages/try-fleet/sandbox-login.page.js"></script>
|
||||
<script src="/js/pages/try-fleet/sandbox-teleporter.page.js"></script>
|
||||
<script src="/js/pages/upgrade.page.js"></script>
|
||||
<script src="/js/pages/vanta-authorization.page.js"></script>
|
||||
<!--SCRIPTS END-->
|
||||
|
||||
|
||||
+1
@@ -346,6 +346,7 @@
|
||||
<script src="/js/pages/try-fleet/sandbox-expired.page.js"></script>
|
||||
<script src="/js/pages/try-fleet/sandbox-login.page.js"></script>
|
||||
<script src="/js/pages/try-fleet/sandbox-teleporter.page.js"></script>
|
||||
<script src="/js/pages/upgrade.page.js"></script>
|
||||
<script src="/js/pages/vanta-authorization.page.js"></script>
|
||||
<!--SCRIPTS END-->
|
||||
|
||||
|
||||
Vendored
+1
@@ -450,6 +450,7 @@ Fleet Managed Cloud. <a href="https://kqphpqst851.typeform.com/to/yoo5smT9">Join
|
||||
<script src="/js/pages/try-fleet/sandbox-expired.page.js"></script>
|
||||
<script src="/js/pages/try-fleet/sandbox-login.page.js"></script>
|
||||
<script src="/js/pages/try-fleet/sandbox-teleporter.page.js"></script>
|
||||
<script src="/js/pages/upgrade.page.js"></script>
|
||||
<script src="/js/pages/vanta-authorization.page.js"></script>
|
||||
<!--SCRIPTS END-->
|
||||
|
||||
|
||||
Vendored
+108
@@ -0,0 +1,108 @@
|
||||
<div id="upgrade" v-cloak>
|
||||
<div purpose="page-container" class="container-lg">
|
||||
<h1>Get even more control with Fleet Premium</h1>
|
||||
<div class="d-flex flex-lg-row flex-column justify-content-between">
|
||||
<div class="d-flex flex-column justify-content-center">
|
||||
<%// First row with two bullet points %>
|
||||
<div purpose="feature-row" class="d-flex flex-column flex-md-row flex-lg-column justify-content-center align-items-center align-items-md-start">
|
||||
<div purpose="feature" class="d-flex flex-lg-row flex-column align-items-center">
|
||||
<div purpose="feature-image">
|
||||
<img alt="Expertise on-demand" src="/images/premium-landing-feature-1.svg">
|
||||
</div>
|
||||
<div purpose="feature-text">
|
||||
<h3>Expertise on-demand</h3>
|
||||
<p>Get your own private Slack channel with Fleet experts. Meet regularly with osquery co-creator Zach Wasserman to learn best practices for your business.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div purpose="feature" class="d-flex flex-lg-row flex-column align-items-center">
|
||||
<div purpose="feature-image">
|
||||
<img alt="Custom solutions" src="/images/premium-landing-feature-2.svg">
|
||||
</div>
|
||||
<div purpose="feature-text">
|
||||
<h3>Custom solutions</h3>
|
||||
<p>Customize your Fleet deployment with queries and policies tailored to your needs, training specific to the roles of your users, and dashboards relevant to your executives.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<%// Second row with two bullet points %>
|
||||
<div purpose="feature-row" class="d-flex flex-column flex-md-row flex-lg-column justify-content-center align-items-center align-items-md-start">
|
||||
<div purpose="feature" class="d-flex flex-lg-row flex-column align-items-center">
|
||||
<div purpose="feature-image">
|
||||
<img alt="Target and configure specific device groups" src="/images/premium-landing-feature-3.svg">
|
||||
</div>
|
||||
<div purpose="feature-text">
|
||||
<h3>Target and configure specific device groups</h3>
|
||||
<p>Improve your security posture with unique configurations for specific groups of endpoints. Give appropriate access to every employee with RBAC.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div purpose="feature" class="d-flex flex-lg-row flex-column align-items-center">
|
||||
<div purpose="feature-image">
|
||||
<img alt="Open source CIS compliance policies" src="/images/premium-landing-feature-4.svg">
|
||||
</div>
|
||||
<div purpose="feature-text">
|
||||
<h3>Open source CIS compliance policies</h3>
|
||||
<p>Strengthen your IT risk management strategy with our out-of-the-box CIS compliance policies that protect your systems and data from cyber threats.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<%// Third row with one bullet point %>
|
||||
<div purpose="feature-row" class="d-flex flex-column flex-md-row flex-lg-column justify-content-center align-items-center">
|
||||
<div purpose="feature" class="d-flex flex-lg-row flex-column align-items-center">
|
||||
<div purpose="feature-image">
|
||||
<img alt="See vulnerability scores and probability of exploit" src="/images/premium-landing-feature-5.svg">
|
||||
</div>
|
||||
<div purpose="feature-text">
|
||||
<h3>See vulnerability scores and probability of exploit</h3>
|
||||
<p>Fleet Premium provides richer software vulnerability data, including real-time EPSS and CVSS scores, as well as CISA-known exploited vulnerabilities.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="d-flex flex-column justify-content-start">
|
||||
<%// Form %>
|
||||
<div purpose="upgrade-form" v-if="!cloudSuccess">
|
||||
<h2 class="text-center">Upgrade to Fleet Premium</h2>
|
||||
<p class="text-center">Complete the form below and a member of our team will be in touch within one business day.</p>
|
||||
<ajax-form action="deliverPremiumUpgradeForm" :syncing.sync="syncing" :cloud-error.sync="cloudError" :form-data="formData" :form-rules="formRules" :form-errors.sync="formErrors" @submitted="submittedForm()">
|
||||
<div class="form-group">
|
||||
<label for="organization">Company</label>
|
||||
<input class="form-control" id="organization" :class="[formErrors.organization ? 'is-invalid' : '']" v-model.trim="formData.organization" @input="typeClearOneFormError('organization')">
|
||||
<div class="invalid-feedback" v-if="formErrors.organization">Please enter the name of your company.</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="monthsUsingFleetFree">Months using Fleet Free</label>
|
||||
<select class="form-control" id="monthsUsingFleetFree" :class="[formErrors.monthsUsingFleetFree ? 'is-invalid' : '']" v-model.trim="formData.monthsUsingFleetFree" @input="typeClearOneFormError('monthsUsingFleetFree')">
|
||||
<option value="Please select one" disabled selected hidden>Please select one</option>
|
||||
<option value="1 - 3 months">1 - 3 months</option>
|
||||
<option value="3 - 6 months">3 - 6 months</option>
|
||||
<option value="6 - 12 months">6 - 12 months</option>
|
||||
<option value="12+ months">12+ months</option>
|
||||
</select>
|
||||
<div class="invalid-feedback" v-if="formErrors.monthsUsingFleetFree" focus-first>Please select an option</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="emailAddress">Email</label>
|
||||
<input class="form-control" id="emailAddress" :class="[formErrors.emailAddress ? 'is-invalid' : '']" v-model.trim="formData.emailAddress" @input="typeClearOneFormError('emailAddress')">
|
||||
<div class="invalid-feedback" v-if="formErrors.emailAddress" focus-first>This doesn’t appear to be a valid email address</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="numberOfHosts">Number of devices</label>
|
||||
<input class="form-control" id="numberOfHosts" type="number" min="0" :class="[formErrors.numberOfHosts ? 'is-invalid' : '']" v-model.trim="formData.numberOfHosts" @input="typeClearOneFormError('numberOfHosts')">
|
||||
<div class="invalid-feedback" v-if="formErrors.numberOfHosts">Please enter a number of devices.</div>
|
||||
</div>
|
||||
<cloud-error v-if="cloudError"></cloud-error>
|
||||
<div class="border-0 justify-content-center">
|
||||
<ajax-button purpose="submit-button" spinner="true" type="submit" :syncing="syncing" class="btn btn-sm btn-block btn-primary">Submit</ajax-button>
|
||||
</div>
|
||||
</ajax-form>
|
||||
</div>
|
||||
<%// Form success state %>
|
||||
<div purpose="upgrade-form" v-else>
|
||||
<h2>We’ll be in touch soon!</h2>
|
||||
<p>A member of our team will be in touch within one business day.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<%- /* Expose server-rendered data as window.SAILS_LOCALS :: */ exposeLocalsToBrowser() %>
|
||||
Reference in New Issue
Block a user