6.3: new error and save popups

- remade error and save popups. both are now properly located and sized on mobile screens. this is the first step in modernizing cobalt ui!
- fixed >> button getting stuck in error state.
This commit is contained in:
wukko 2023-07-19 01:50:51 +06:00
parent ccab047f19
commit bbf450a1fa
13 changed files with 1687 additions and 54 deletions

View file

@ -1,7 +1,7 @@
{
"name": "cobalt",
"description": "save what you love",
"version": "6.2.4",
"version": "6.3",
"author": "wukko",
"exports": "./src/cobalt.js",
"type": "module",

View file

@ -16,7 +16,10 @@
--accent-highlight: rgb(225, 225, 225, 4%);
--accent-subtext: rgb(110, 110, 110);
--accent-hover: rgb(30, 30, 30);
--accent-hover-elevated: rgb(48, 48, 48);
--accent-button: rgb(25, 25, 25);
--accent-button-elevated: rgb(42, 42, 42);
--glass: rgba(25, 25, 25, 0.85);
--subbackground: rgb(10, 10, 10);
--background: rgb(0, 0, 0);
}
@ -27,7 +30,10 @@
--accent-highlight: rgb(25, 25, 25, 4%);
--accent-subtext: rgb(110, 110, 110);
--accent-hover: rgb(230, 230, 230);
--accent-hover-elevated: rgb(215, 215, 215);
--accent-button: rgb(225, 225, 225);
--accent-button-elevated: rgb(210, 210, 210);
--glass: rgba(230, 230, 230, 0.85);
--subbackground: rgb(240, 240, 240);
--background: rgb(255, 255, 255);
}
@ -37,7 +43,10 @@
--accent-highlight: rgb(225, 225, 225, 4%);
--accent-subtext: rgb(110, 110, 110);
--accent-hover: rgb(30, 30, 30);
--accent-hover-elevated: rgb(48, 48, 48);
--accent-button: rgb(25, 25, 25);
--accent-button-elevated: rgb(42, 42, 42);
--glass: rgba(25, 25, 25, 0.85);
--subbackground: rgb(10, 10, 10);
--background: rgb(0, 0, 0);
}
@ -46,7 +55,10 @@
--accent-highlight: rgb(25, 25, 25, 4%);
--accent-subtext: rgb(110, 110, 110);
--accent-hover: rgb(230, 230, 230);
--accent-hover-elevated: rgb(215, 215, 215);
--accent-button: rgb(225, 225, 225);
--accent-button-elevated: rgb(210, 210, 210);
--glass: rgba(230, 230, 230, 0.85);
--subbackground: rgb(240, 240, 240);
--background: rgb(255, 255, 255);
}
@ -327,7 +339,32 @@ button:active,
max-height: 85%;
}
.popup.small {
width: 20%
width: 20%;
background: var(--glass);
backdrop-filter: blur(7px);
-webkit-backdrop-filter: blur(7px);
box-shadow: 0px 0px 80px 0px var(--accent-hover);
padding: 1.7rem;
border: var(--accent-highlight) solid 0.15rem;
}
.popup.small #popup-title {
margin-bottom: .2rem;
}
.popup.small #popup-header {
padding-top: 0;
}
.popup.small .explanation {
margin-bottom: 0.8rem;
}
.popup.small .switch {
background: var(--accent-button-elevated);
}
.popup.small .switch:hover {
background: var(--accent-hover-elevated);
}
#close-error {
background: var(--accent);
color: var(--background);
}
#popup-backdrop {
opacity: 0.5;
@ -421,7 +458,6 @@ button:active,
}
#popup-header {
position: relative;
background: var(--background);
z-index: 999;
padding-top: 0.8rem;
}
@ -537,7 +573,6 @@ button:active,
#close-button {
max-width: 2.6rem;
margin-left: var(--padding-1);
background: var(--background);
border: var(--border-15);
color: var(--accent);
padding: 0.3rem 0.75rem 0.5rem;
@ -886,8 +921,24 @@ button:active,
.urgent-notice {
width: 100%;
}
}
@media screen and (max-width: 949px) {
.popup.small {
width: calc(100% - 1.7rem * 2);
height: auto;
top: unset;
bottom: 0;
left: 0;
transform: none;
position: absolute;
border: none;
border-top: var(--accent-highlight) solid 0.15rem;
padding-bottom: calc(env(safe-area-inset-bottom)/2 + 1.7rem)
}
.popup.small #popup-header {
background: none;
}
#close-error {
bottom: 3rem;
}
#picker-holder::-webkit-scrollbar {
display: none;
}
@ -903,23 +954,12 @@ button:active,
height: 20rem;
max-width: 100%;
}
#popup-header {
padding-top: 1.2rem;
}
#popup-settings #popup-header {
padding-top: 0.8rem;
}
.picker-image-container {
height: 7rem;
width: 7rem;
line-height: 7rem;
}
#close-error {
bottom: 3rem;
position: absolute;
width: var(--without-padding);
}
.popup, .popup.scrollable, .popup.small {
.popup, .popup.scrollable {
border: none;
width: 90%;
height: 95%;

View file

@ -245,11 +245,6 @@ function changeSwitcher(li, b) {
}
}
}
function internetError() {
eid("url-input-area").disabled = false
changeDownloadButton(2, '!!');
popup("error", 1, loc.noInternet);
}
function checkbox(action) {
sSet(action, !!eid(action).checked);
switch(action) {
@ -283,8 +278,9 @@ function changeButton(type, text) {
case 0: //error
eid("url-input-area").disabled = false
eid("url-clear").style.display = "block";
changeDownloadButton(2, '!!')
changeDownloadButton(2, '!!');
popup("error", 1, text);
setTimeout(() => { changeButton(1); }, 2500);
break;
case 1: //enable back
changeDownloadButton(1, '>>');
@ -299,6 +295,12 @@ function changeButton(type, text) {
break;
}
}
function internetError() {
eid("url-input-area").disabled = false
changeDownloadButton(2, '!!');
setTimeout(() => { changeButton(1); }, 2500);
popup("error", 1, loc.noInternet);
}
function resetSettings() {
localStorage.clear();
window.location.reload();

View file

@ -0,0 +1,382 @@
<svg width="100%" height="100%" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 25.942C4 28.1739 5.76327 30 7.91837 30H24.0816C26.2367 30 28 28.0725 28 25.8406V6.4297C28 5.1297 26.4099 4.5297 25.5155 5.4297L20.9736 10H11.1617L6.5 5.4297C5.6 4.5297 4 5.1297 4 6.4297V25.942Z" fill="url(#paint0_linear_6905_5272)" />
<path d="M4 25.942C4 28.1739 5.76327 30 7.91837 30H24.0816C26.2367 30 28 28.0725 28 25.8406V6.4297C28 5.1297 26.4099 4.5297 25.5155 5.4297L20.9736 10H11.1617L6.5 5.4297C5.6 4.5297 4 5.1297 4 6.4297V25.942Z" fill="url(#paint1_linear_6905_5272)" />
<path d="M4 25.942C4 28.1739 5.76327 30 7.91837 30H24.0816C26.2367 30 28 28.0725 28 25.8406V6.4297C28 5.1297 26.4099 4.5297 25.5155 5.4297L20.9736 10H11.1617L6.5 5.4297C5.6 4.5297 4 5.1297 4 6.4297V25.942Z" fill="url(#paint2_linear_6905_5272)" />
<path d="M4 25.942C4 28.1739 5.76327 30 7.91837 30H24.0816C26.2367 30 28 28.0725 28 25.8406V6.4297C28 5.1297 26.4099 4.5297 25.5155 5.4297L20.9736 10H11.1617L6.5 5.4297C5.6 4.5297 4 5.1297 4 6.4297V25.942Z" fill="url(#paint3_linear_6905_5272)" />
<path d="M4 25.942C4 28.1739 5.76327 30 7.91837 30H24.0816C26.2367 30 28 28.0725 28 25.8406V6.4297C28 5.1297 26.4099 4.5297 25.5155 5.4297L20.9736 10H11.1617L6.5 5.4297C5.6 4.5297 4 5.1297 4 6.4297V25.942Z" fill="url(#paint4_linear_6905_5272)" />
<path d="M4 25.942C4 28.1739 5.76327 30 7.91837 30H24.0816C26.2367 30 28 28.0725 28 25.8406V6.4297C28 5.1297 26.4099 4.5297 25.5155 5.4297L20.9736 10H11.1617L6.5 5.4297C5.6 4.5297 4 5.1297 4 6.4297V25.942Z" fill="url(#paint5_radial_6905_5272)" />
<g filter="url(#filter0_f_6905_5272)">
<rect x="5.09634" y="21.1274" width="2.72692" height="3.69801" rx="1.36346" fill="#D67908" />
</g>
<g filter="url(#filter1_f_6905_5272)">
<path d="M26.0196 14.4614L27.0477 5.82727C27.1024 5.36633 26.3337 4.89183 25.4479 5.71436C25.4479 5.71436 22.068 9.03597 21.881 9.22018C19.5769 11.489 22.6425 12.468 26.0196 14.4614Z" fill="url(#paint6_linear_6905_5272)" />
</g>
<path d="M6.17485 12.8104L8.97485 10.2104C9.29485 9.91045 9.29485 9.43045 8.97485 9.14045L5.96016 6.46326C5.57735 6.12733 4.78485 6.2367 4.78485 7.07045V12.2704C4.78485 13.1039 5.66485 13.2904 6.17485 12.8104Z" fill="url(#paint7_linear_6905_5272)" />
<g filter="url(#filter2_f_6905_5272)">
<path d="M26.5331 5.30772C26.591 5.16404 26.7304 5.06995 26.8853 5.06995V5.06995C27.0951 5.06995 27.2652 5.23999 27.2652 5.44976V7.69495L25.8477 7.00745L26.5331 5.30772Z" fill="url(#paint8_linear_6905_5272)" />
</g>
<g filter="url(#filter3_f_6905_5272)">
<path d="M5.26547 5.62744L8.64043 8.84698C9.39455 9.56636 9.40868 10.7655 8.67172 11.5024V11.5024" stroke="#FFDF70" stroke-linecap="round" />
</g>
<g filter="url(#filter4_f_6905_5272)">
<path d="M14.8477 20.7882L14.912 20.7732C15.3856 20.6628 15.8788 20.6679 16.35 20.7882V20.7882C16.8711 20.8864 17.1822 21.4837 16.7422 21.9137L16.1914 22.5153C15.9214 22.7853 15.3286 22.7853 15.0586 22.5153L14.5156 21.9137C14.0664 21.4059 14.3477 20.8981 14.8477 20.7882Z" fill="url(#paint9_linear_6905_5272)" />
</g>
<g filter="url(#filter5_f_6905_5272)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.654 22.274C16.0177 22.274 16.3126 22.5203 16.3126 22.824V25.574C16.3126 25.8778 16.0177 26.124 15.654 26.124C15.2903 26.124 14.9954 25.8778 14.9954 25.574V22.824C14.9954 22.5203 15.2903 22.274 15.654 22.274Z" fill="#DC8400" />
</g>
<path d="M13.1406 26.8846C14.0625 25.9731 16.3438 24.7361 18.875 26.8846" stroke="url(#paint10_radial_6905_5272)" stroke-width="1.1" stroke-linecap="round" />
<path d="M16 25.408V22.658" stroke="url(#paint11_linear_6905_5272)" stroke-width="1.1" stroke-linecap="round" />
<path d="M15.2688 20.3445L15.3331 20.3295C15.8067 20.219 16.2999 20.2242 16.7711 20.3445V20.3445C17.2922 20.4426 17.6033 21.04 17.1633 21.47L16.6125 22.0715C16.3425 22.3415 15.7497 22.3415 15.4797 22.0715L14.9367 21.47C14.4875 20.9622 14.7688 20.4543 15.2688 20.3445Z" fill="url(#paint12_radial_6905_5272)" />
<g filter="url(#filter6_f_6905_5272)">
<ellipse cx="16.3126" cy="20.8794" rx="0.761719" ry="0.274258" fill="url(#paint13_linear_6905_5272)" />
</g>
<g filter="url(#filter7_f_6905_5272)">
<path d="M24.8274 22.1993L28.632 20.3868" stroke="url(#paint14_linear_6905_5272)" stroke-width="1.2" stroke-miterlimit="10" stroke-linecap="round" />
</g>
<g filter="url(#filter8_f_6905_5272)">
<path d="M24.8274 24.2306L26.754 25.5962" stroke="url(#paint15_linear_6905_5272)" stroke-width="1.2" stroke-miterlimit="10" stroke-linecap="round" />
</g>
<path d="M25.6059 23.9764L29.4074 25.7954" stroke="url(#paint16_linear_6905_5272)" stroke-width="1.2" stroke-miterlimit="10" stroke-linecap="round" />
<g filter="url(#filter9_f_6905_5272)">
<path d="M26.2454 24.182L29.3422 25.6752" stroke="#FF8485" stroke-width="0.2" stroke-miterlimit="10" stroke-linecap="round" />
</g>
<g filter="url(#filter10_f_6905_5272)">
<ellipse cx="29.5827" cy="25.6753" rx="0.18384" ry="0.165827" transform="rotate(28.2981 29.5827 25.6753)" fill="#FFDD86" />
</g>
<g filter="url(#filter11_f_6905_5272)">
<path d="M9.90707 22.2647C9.90707 21.3498 9.1351 20.6246 8.22198 20.6817V20.6817C7.38474 20.7341 6.73308 21.4294 6.73498 22.2683L6.7415 25.1442C6.74349 26.0254 7.4648 26.7353 8.34593 26.7233V26.7233C9.21156 26.7114 9.90707 26.0064 9.90707 25.1406L9.90707 22.2647Z" fill="#CD7B00" />
</g>
<path d="M6.57037 23.9881L2.76881 25.8071" stroke="url(#paint17_linear_6905_5272)" stroke-width="1.2" stroke-miterlimit="10" stroke-linecap="round" />
<g filter="url(#filter12_f_6905_5272)">
<path d="M6.63558 23.868L2.83402 25.687" stroke="#FF8485" stroke-width="0.3" stroke-miterlimit="10" stroke-linecap="round" />
</g>
<g filter="url(#filter13_f_6905_5272)">
<ellipse rx="0.18384" ry="0.165827" transform="matrix(-0.942776 -0.333427 -0.333427 0.942776 6.68841 23.812)" fill="#FFDD86" />
</g>
<path d="M6.58199 21.8314L2.76842 20.0377" stroke="url(#paint18_linear_6905_5272)" stroke-width="1.2" stroke-miterlimit="10" stroke-linecap="round" />
<g filter="url(#filter14_f_6905_5272)">
<path d="M6.71627 21.8059L2.90269 20.0122" stroke="#FF8485" stroke-width="0.3" stroke-miterlimit="10" stroke-linecap="round" />
</g>
<g filter="url(#filter15_f_6905_5272)">
<ellipse rx="0.18384" ry="0.165827" transform="matrix(-0.338111 -0.941106 -0.941106 0.338111 6.79301 21.8114)" fill="#FFDD86" />
</g>
<g filter="url(#filter16_f_6905_5272)">
<rect x="22.1446" y="9.40869" width="4.5851" height="14.1857" fill="url(#paint19_linear_6905_5272)" />
</g>
<path d="M25.6086 21.8462L29.2923 20.1118" stroke="url(#paint20_linear_6905_5272)" stroke-width="1.2" stroke-miterlimit="10" stroke-linecap="round" />
<g filter="url(#filter17_f_6905_5272)">
<path d="M25.6086 22.0181L29.4133 20.2056" stroke="#FF5B5D" stroke-width="0.3" stroke-miterlimit="10" stroke-linecap="round" />
</g>
<path d="M25.8752 12.8104L23.0752 10.2104C22.7552 9.91045 22.7552 9.43045 23.0752 9.14045L26.0899 6.46326C26.4727 6.12733 27.2652 6.2367 27.2652 7.07045V12.2704C27.2652 13.1039 26.3852 13.2904 25.8752 12.8104Z" fill="#FFB915" />
<path d="M25.8752 12.8104L23.0752 10.2104C22.7552 9.91045 22.7552 9.43045 23.0752 9.14045L26.0899 6.46326C26.4727 6.12733 27.2652 6.2367 27.2652 7.07045V12.2704C27.2652 13.1039 26.3852 13.2904 25.8752 12.8104Z" fill="url(#paint21_linear_6905_5272)" />
<g filter="url(#filter18_f_6905_5272)">
<path d="M26.6758 6.67432L23.0508 9.79932L26.5977 12.6118L26.6758 6.67432Z" fill="url(#paint22_radial_6905_5272)" />
</g>
<g filter="url(#filter19_f_6905_5272)">
<path d="M23.7696 9.59619L26.3008 12.3306" stroke="url(#paint23_linear_6905_5272)" stroke-width="0.5" stroke-linecap="round" />
</g>
<g filter="url(#filter20_f_6905_5272)">
<path d="M5.26547 6.8064V12.7141L8.73422 9.62476L5.26547 6.8064Z" fill="#FEB33E" />
</g>
<g filter="url(#filter21_f_6905_5272)">
<path d="M5.26547 7.03369V12.2212" stroke="#FFE7A3" stroke-width="0.15" stroke-linecap="round" />
</g>
<g filter="url(#filter22_f_6905_5272)">
<ellipse rx="0.18384" ry="0.165827" transform="matrix(-0.922231 -0.386639 -0.386639 0.922231 2.85551 19.8876)" fill="#FFDD86" />
</g>
<g filter="url(#filter23_f_6905_5272)">
<ellipse cx="29.6481" cy="19.8876" rx="0.18384" ry="0.165827" transform="rotate(-22.7455 29.6481 19.8876)" fill="#FFDD86" />
</g>
<g filter="url(#filter24_f_6905_5272)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.6151 18.5322C20.0849 19.5789 21.1066 19.653 21.5454 19.4797C21.8324 19.3663 22.1569 19.5071 22.2702 19.794C22.3836 20.081 22.2428 20.4055 21.9559 20.5188C21.0781 20.8655 19.3584 20.6886 18.5958 18.9898C18.4695 18.7083 18.5952 18.3777 18.8767 18.2514C19.1581 18.125 19.4887 18.2508 19.6151 18.5322Z" fill="url(#paint24_linear_6905_5272)" />
</g>
<g filter="url(#filter25_f_6905_5272)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.2811 18.5689C11.8113 19.6155 10.7896 19.6896 10.3507 19.5163C10.0638 19.4029 9.73929 19.5437 9.62595 19.8306C9.51261 20.1176 9.65336 20.4421 9.94031 20.5554C10.8181 20.9021 12.5378 20.7252 13.3004 19.0264C13.4267 18.7449 13.301 18.4143 13.0195 18.288C12.738 18.1616 12.4074 18.2874 12.2811 18.5689Z" fill="url(#paint25_linear_6905_5272)" />
</g>
<path d="M12.8139 18.2284C12.5404 18.9471 11.392 19.9159 9.99355 19.3299" stroke="url(#paint26_radial_6905_5272)" stroke-width="1.1" stroke-linecap="round" />
<path d="M19.2706 18.2284C19.5441 18.9471 20.6925 19.9159 22.091 19.3299" stroke="url(#paint27_radial_6905_5272)" stroke-width="1.1" stroke-linecap="round" />
<path d="M11.5692 22.0531C11.5692 20.9995 10.6802 20.1644 9.62863 20.2302V20.2302C8.66448 20.2905 7.91404 21.0912 7.91623 22.0572L7.92373 25.3691C7.92603 26.3839 8.75668 27.2014 9.77137 27.1875V27.1875C10.7682 27.1739 11.5692 26.3619 11.5692 25.365L11.5692 22.0531Z" fill="url(#paint28_radial_6905_5272)" />
<path d="M11.5692 22.0531C11.5692 20.9995 10.6802 20.1644 9.62863 20.2302V20.2302C8.66448 20.2905 7.91404 21.0912 7.91623 22.0572L7.92373 25.3691C7.92603 26.3839 8.75668 27.2014 9.77137 27.1875V27.1875C10.7682 27.1739 11.5692 26.3619 11.5692 25.365L11.5692 22.0531Z" fill="url(#paint29_radial_6905_5272)" />
<path d="M11.5692 22.0531C11.5692 20.9995 10.6802 20.1644 9.62863 20.2302V20.2302C8.66448 20.2905 7.91404 21.0912 7.91623 22.0572L7.92373 25.3691C7.92603 26.3839 8.75668 27.2014 9.77137 27.1875V27.1875C10.7682 27.1739 11.5692 26.3619 11.5692 25.365L11.5692 22.0531Z" fill="url(#paint30_linear_6905_5272)" />
<g filter="url(#filter26_f_6905_5272)">
<path d="M10.3125 21.5879L10.3847 25.2051" stroke="#6BAFFF" stroke-linecap="round" />
</g>
<g filter="url(#filter27_f_6905_5272)">
<circle r="0.592704" transform="matrix(-0.724367 0.689414 0.724367 0.689414 9.75781 21.2884)" fill="#6BAFFF" />
</g>
<defs>
<filter id="filter0_f_6905_5272" x="3.59634" y="19.6274" width="5.72693" height="6.698" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.75" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter1_f_6905_5272" x="20.58" y="4.76599" width="6.97055" height="10.1954" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter2_f_6905_5272" x="24.8477" y="4.06995" width="3.41745" height="4.625" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.5" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter3_f_6905_5272" x="2.76547" y="3.12744" width="8.94989" height="10.7285" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter4_f_6905_5272" x="13.7905" y="20.194" width="3.66141" height="3.0238" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter5_f_6905_5272" x="14.4954" y="21.774" width="2.3172" height="4.84998" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter6_f_6905_5272" x="14.9508" y="20.0051" width="2.72344" height="1.74846" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.3" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter7_f_6905_5272" x="23.7272" y="19.2867" width="6.00494" height="4.0127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter8_f_6905_5272" x="23.7273" y="23.1306" width="4.12671" height="3.56567" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter9_f_6905_5272" x="25.6454" y="23.582" width="4.29688" height="2.69324" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter10_f_6905_5272" x="28.9027" y="25.0052" width="1.35999" height="1.34009" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter11_f_6905_5272" x="5.73499" y="19.6786" width="5.17209" height="8.0448" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.5" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter12_f_6905_5272" x="2.18399" y="23.2179" width="5.10162" height="3.11914" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter13_f_6905_5272" x="6.00644" y="23.144" width="1.36395" height="1.33594" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter14_f_6905_5272" x="2.25266" y="19.3622" width="5.11365" height="3.09375" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter15_f_6905_5272" x="6.12497" y="21.1295" width="1.33606" height="1.36377" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter16_f_6905_5272" x="18.1446" y="5.40869" width="12.5851" height="22.1857" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="2" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter17_f_6905_5272" x="24.9586" y="19.5555" width="5.10474" height="3.11255" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter18_f_6905_5272" x="22.4508" y="6.07432" width="4.825" height="7.1375" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.3" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter19_f_6905_5272" x="22.7696" y="8.59619" width="4.53125" height="4.73438" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.375" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter20_f_6905_5272" x="4.76547" y="6.3064" width="4.46875" height="6.90771" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter21_f_6905_5272" x="4.69046" y="6.45874" width="1.15002" height="6.3374" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter22_f_6905_5272" x="2.17419" y="19.219" width="1.36264" height="1.33728" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter23_f_6905_5272" x="28.9668" y="19.219" width="1.36264" height="1.33728" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter24_f_6905_5272" x="18.0467" y="17.7023" width="4.76276" height="3.46326" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter25_f_6905_5272" x="9.08673" y="17.7389" width="4.76276" height="3.46326" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter26_f_6905_5272" x="7.80084" y="19.0999" width="5.09555" height="8.59326" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_6905_5272" />
</filter>
<filter id="filter27_f_6905_5272" x="7.15063" y="18.7106" width="5.21436" height="5.15576" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_6905_5272" />
</filter>
<linearGradient id="paint0_linear_6905_5272" x1="7.90668" y1="1.34978" x2="7.90668" y2="30.99" gradientUnits="userSpaceOnUse">
<stop offset="0.288159" stop-color="#F2CC26" />
<stop offset="0.762024" stop-color="#E99E20" />
<stop offset="0.9925" stop-color="#E3821D" />
<stop offset="1" stop-color="#E3801D" />
</linearGradient>
<linearGradient id="paint1_linear_6905_5272" x1="8.83102" y1="12.033" x2="1.16971" y2="12.033" gradientUnits="userSpaceOnUse">
<stop stop-color="#E99E20" stop-opacity="0" />
<stop offset="0.9925" stop-color="#E3821D" />
<stop offset="1" stop-color="#E3801D" />
</linearGradient>
<linearGradient id="paint2_linear_6905_5272" x1="26.7911" y1="12.033" x2="30.245" y2="12.033" gradientUnits="userSpaceOnUse">
<stop stop-color="#E99E20" stop-opacity="0" />
<stop offset="0.9925" stop-color="#E3821D" />
<stop offset="1" stop-color="#E3801D" />
</linearGradient>
<linearGradient id="paint3_linear_6905_5272" x1="16.001" y1="-1.59459" x2="16" y2="30.99" gradientUnits="userSpaceOnUse">
<stop offset="0.77079" stop-color="#F59639" stop-opacity="0" />
<stop offset="1" stop-color="#FF63C4" />
</linearGradient>
<linearGradient id="paint4_linear_6905_5272" x1="16" y1="11.2521" x2="16" y2="32.475" gradientUnits="userSpaceOnUse">
<stop offset="0.854227" stop-color="white" stop-opacity="0" />
<stop offset="0.985362" stop-color="white" />
</linearGradient>
<radialGradient id="paint5_radial_6905_5272" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(22.1755 4.47688) rotate(55.4547) scale(5.37104 10.6707)">
<stop stop-color="#FFA720" />
<stop offset="0.921158" stop-color="#FFA720" stop-opacity="0" />
</radialGradient>
<linearGradient id="paint6_linear_6905_5272" x1="21.9503" y1="6.1586" x2="28.2071" y2="13.0023" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFA720" />
<stop offset="1" stop-color="#FFA720" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint7_linear_6905_5272" x1="10.6446" y1="9.9242" x2="4.78485" y2="9.37733" gradientUnits="userSpaceOnUse">
<stop offset="0.437473" stop-color="#ED8C1B" />
<stop offset="1" stop-color="#FFB03A" />
</linearGradient>
<linearGradient id="paint8_linear_6905_5272" x1="27.0821" y1="4.61682" x2="26.486" y2="6.95827" gradientUnits="userSpaceOnUse">
<stop offset="0.28598" stop-color="#FFE792" />
<stop offset="1" stop-color="#FFDD65" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint9_linear_6905_5272" x1="15.793" y1="22.4892" x2="15.1212" y2="23.5829" gradientUnits="userSpaceOnUse">
<stop stop-color="#E3900E" />
<stop offset="1" stop-color="#EA9D26" stop-opacity="0" />
</linearGradient>
<radialGradient id="paint10_radial_6905_5272" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(16.1985 27.2752) rotate(-90.1815) scale(5.21878 10.1877)">
<stop offset="0.191719" stop-color="#482641" />
<stop offset="0.311545" stop-color="#594253" />
<stop offset="0.386385" stop-color="#483334" />
</radialGradient>
<linearGradient id="paint11_linear_6905_5272" x1="18.1829" y1="24.447" x2="10.886" y2="24.447" gradientUnits="userSpaceOnUse">
<stop offset="0.135417" stop-color="#483637" />
<stop offset="0.276042" stop-color="#594253" />
<stop offset="0.411458" stop-color="#482641" />
</linearGradient>
<radialGradient id="paint12_radial_6905_5272" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(16.4883 21.3176) rotate(-153.246) scale(2.11729 2.12981)">
<stop stop-color="#EA088B" />
<stop offset="1" stop-color="#E61E27" />
</radialGradient>
<linearGradient id="paint13_linear_6905_5272" x1="17.2458" y1="20.8794" x2="15.7224" y2="20.8794" gradientUnits="userSpaceOnUse">
<stop stop-color="white" stop-opacity="0.9" />
<stop offset="1" stop-color="white" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint14_linear_6905_5272" x1="24.3321" y1="22.5431" x2="28.0665" y2="20.6274" gradientUnits="userSpaceOnUse">
<stop stop-color="#E88105" />
<stop offset="1" stop-color="#E37D02" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint15_linear_6905_5272" x1="24.3321" y1="23.8869" x2="28.0665" y2="25.8026" gradientUnits="userSpaceOnUse">
<stop offset="0.286458" stop-color="#DE7D07" />
<stop offset="0.817708" stop-color="#E37D02" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint16_linear_6905_5272" x1="25.1161" y1="24.0168" x2="29.1887" y2="25.9722" gradientUnits="userSpaceOnUse">
<stop stop-color="#B9230F" />
<stop offset="0.364583" stop-color="#D64A38" />
<stop offset="1" stop-color="#FB7425" />
</linearGradient>
<linearGradient id="paint17_linear_6905_5272" x1="7.06012" y1="24.0285" x2="2.98751" y2="25.984" gradientUnits="userSpaceOnUse">
<stop offset="0.15625" stop-color="#D64A38" />
<stop offset="1" stop-color="#FB7425" />
</linearGradient>
<linearGradient id="paint18_linear_6905_5272" x1="6.8605" y1="22.2363" x2="2.7698" y2="20.3189" gradientUnits="userSpaceOnUse">
<stop offset="0.15625" stop-color="#D64A38" />
<stop offset="1" stop-color="#FB7425" />
</linearGradient>
<linearGradient id="paint19_linear_6905_5272" x1="23.3946" y1="10.1457" x2="22.998" y2="22.1962" gradientUnits="userSpaceOnUse">
<stop offset="0.548257" stop-color="#FFDD65" />
<stop offset="1" stop-color="#FFDD65" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint20_linear_6905_5272" x1="25.3321" y1="22.2524" x2="29.4133" y2="20.3149" gradientUnits="userSpaceOnUse">
<stop offset="0.15625" stop-color="#C83F2D" />
<stop offset="1" stop-color="#E7671C" />
</linearGradient>
<linearGradient id="paint21_linear_6905_5272" x1="26.5821" y1="14.8148" x2="25.3321" y2="11.3461" gradientUnits="userSpaceOnUse">
<stop stop-color="#EF8A47" />
<stop offset="1" stop-color="#EF8A47" stop-opacity="0" />
</linearGradient>
<radialGradient id="paint22_radial_6905_5272" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(22.9102 7.08057) rotate(55.7389) scale(7.82686 9.38424)">
<stop stop-color="#FFDF70" />
<stop offset="1" stop-color="#FFDF70" stop-opacity="0" />
</radialGradient>
<linearGradient id="paint23_linear_6905_5272" x1="25.0977" y1="9.78369" x2="25.0977" y2="12.1274" gradientUnits="userSpaceOnUse">
<stop offset="0.432292" stop-color="#FFE7A3" />
<stop offset="1" stop-color="#FFDF83" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint24_linear_6905_5272" x1="17.5468" y1="17.8246" x2="18.3832" y2="15.8011" gradientUnits="userSpaceOnUse">
<stop stop-color="#DE8D0F" />
<stop offset="1" stop-color="#EA9D26" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint25_linear_6905_5272" x1="14.3494" y1="17.8613" x2="13.5129" y2="15.8378" gradientUnits="userSpaceOnUse">
<stop stop-color="#E69518" />
<stop offset="1" stop-color="#EA9D26" stop-opacity="0" />
</linearGradient>
<radialGradient id="paint26_radial_6905_5272" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(11.2201 18.4471) rotate(73.807) scale(3.48338 6.75247)">
<stop offset="0.135417" stop-color="#483637" />
<stop offset="0.276042" stop-color="#594253" />
<stop offset="0.411458" stop-color="#482641" />
</radialGradient>
<radialGradient id="paint27_radial_6905_5272" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(20.8644 18.4471) rotate(106.193) scale(3.48338 6.75247)">
<stop offset="0.135417" stop-color="#483637" />
<stop offset="0.276042" stop-color="#594253" />
<stop offset="0.411458" stop-color="#482641" />
</radialGradient>
<radialGradient id="paint28_radial_6905_5272" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(8.01037 27.3063) rotate(-48.5801) scale(8.69623 14.7041)">
<stop stop-color="#3D5BF1" />
<stop offset="1" stop-color="#5C98FF" />
</radialGradient>
<radialGradient id="paint29_radial_6905_5272" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(11.504 20.0466) rotate(111.857) scale(9.25859 6.48471)">
<stop offset="0.731957" stop-color="#1F2D75" stop-opacity="0" />
<stop offset="0.956392" stop-color="#1F2D75" stop-opacity="0.75" />
</radialGradient>
<linearGradient id="paint30_linear_6905_5272" x1="13.1496" y1="24.2645" x2="6.10698" y2="24.151" gradientUnits="userSpaceOnUse">
<stop offset="0.585153" stop-color="#1F2D75" stop-opacity="0" />
<stop offset="1" stop-color="#1F2D75" stop-opacity="0.75" />
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 31 KiB

View file

@ -0,0 +1,507 @@
<svg width="100%" height="100%" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M27.9617 25.9948V6.35147C27.9617 4.91397 26.6257 4.21085 25.532 5.22647L21.5184 9.17869C21.3313 9.36291 21.0793 9.46616 20.8167 9.46616H11.2204C10.9578 9.46616 10.7058 9.36291 10.5188 9.17869L6.50513 5.22647C5.41138 4.21085 4.07544 4.91397 4.07544 6.35147V25.9948C4.07544 28.2066 5.83537 29.9999 8.00597 29.9999H24.0312C26.2018 29.9999 27.9617 28.2066 27.9617 25.9948Z" fill="url(#paint0_linear_6903_5272)" />
<path d="M27.9617 25.9948V6.35147C27.9617 4.91397 26.6257 4.21085 25.532 5.22647L21.5184 9.17869C21.3313 9.36291 21.0793 9.46616 20.8167 9.46616H11.2204C10.9578 9.46616 10.7058 9.36291 10.5188 9.17869L6.50513 5.22647C5.41138 4.21085 4.07544 4.91397 4.07544 6.35147V25.9948C4.07544 28.2066 5.83537 29.9999 8.00597 29.9999H24.0312C26.2018 29.9999 27.9617 28.2066 27.9617 25.9948Z" fill="url(#paint1_linear_6903_5272)" />
<path d="M27.9617 25.9948V6.35147C27.9617 4.91397 26.6257 4.21085 25.532 5.22647L21.5184 9.17869C21.3313 9.36291 21.0793 9.46616 20.8167 9.46616H11.2204C10.9578 9.46616 10.7058 9.36291 10.5188 9.17869L6.50513 5.22647C5.41138 4.21085 4.07544 4.91397 4.07544 6.35147V25.9948C4.07544 28.2066 5.83537 29.9999 8.00597 29.9999H24.0312C26.2018 29.9999 27.9617 28.2066 27.9617 25.9948Z" fill="url(#paint2_linear_6903_5272)" />
<path d="M27.9617 25.9948V6.35147C27.9617 4.91397 26.6257 4.21085 25.532 5.22647L21.5184 9.17869C21.3313 9.36291 21.0793 9.46616 20.8167 9.46616H11.2204C10.9578 9.46616 10.7058 9.36291 10.5188 9.17869L6.50513 5.22647C5.41138 4.21085 4.07544 4.91397 4.07544 6.35147V25.9948C4.07544 28.2066 5.83537 29.9999 8.00597 29.9999H24.0312C26.2018 29.9999 27.9617 28.2066 27.9617 25.9948Z" fill="url(#paint3_linear_6903_5272)" />
<path d="M27.9617 25.9948V6.35147C27.9617 4.91397 26.6257 4.21085 25.532 5.22647L21.5184 9.17869C21.3313 9.36291 21.0793 9.46616 20.8167 9.46616H11.2204C10.9578 9.46616 10.7058 9.36291 10.5188 9.17869L6.50513 5.22647C5.41138 4.21085 4.07544 4.91397 4.07544 6.35147V25.9948C4.07544 28.2066 5.83537 29.9999 8.00597 29.9999H24.0312C26.2018 29.9999 27.9617 28.2066 27.9617 25.9948Z" fill="url(#paint4_linear_6903_5272)" />
<path d="M27.9617 25.9948V6.35147C27.9617 4.91397 26.6257 4.21085 25.532 5.22647L21.5184 9.17869C21.3313 9.36291 21.0793 9.46616 20.8167 9.46616H11.2204C10.9578 9.46616 10.7058 9.36291 10.5188 9.17869L6.50513 5.22647C5.41138 4.21085 4.07544 4.91397 4.07544 6.35147V25.9948C4.07544 28.2066 5.83537 29.9999 8.00597 29.9999H24.0312C26.2018 29.9999 27.9617 28.2066 27.9617 25.9948Z" fill="url(#paint5_radial_6903_5272)" />
<g filter="url(#filter0_f_6903_5272)">
<rect x="5.05408" y="21.75" width="2.72692" height="3.69801" rx="1.36346" fill="#D67908" />
</g>
<g filter="url(#filter1_f_6903_5272)">
<path d="M20.5855 10.165C17.6023 10.2726 25.812 15.1188 25.812 15.1188L26.937 6.0563C26.9917 5.59537 26.5729 5.10279 25.6871 5.92532C25.6871 5.92532 21.8605 9.69333 21.6734 9.87754C21.4864 10.0618 21.2654 10.1265 20.9718 10.165C20.8222 10.1846 20.7363 10.1596 20.5855 10.165Z" fill="url(#paint6_linear_6903_5272)" />
</g>
<path d="M6.13255 13.4331L8.93255 10.8331C9.25255 10.5331 9.25255 10.0531 8.93255 9.76313L5.91787 7.08594C5.53505 6.75001 4.74255 6.85938 4.74255 7.69313V12.8931C4.74255 13.7266 5.62255 13.9131 6.13255 13.4331Z" fill="url(#paint7_linear_6903_5272)" />
<g filter="url(#filter2_f_6903_5272)">
<path d="M26.4909 5.58153C26.5488 5.43784 26.6882 5.34375 26.8431 5.34375V5.34375C27.0529 5.34375 27.2229 5.5138 27.2229 5.72356V7.96875L25.8055 7.28125L26.4909 5.58153Z" fill="url(#paint8_linear_6903_5272)" />
</g>
<g filter="url(#filter3_f_6903_5272)">
<path d="M5.40601 6.0625L8.78097 9.28203C9.53508 10.0014 9.54921 11.2005 8.81226 11.9375V11.9375" stroke="#FFDF70" stroke-linecap="round" />
</g>
<g filter="url(#filter4_f_6903_5272)">
<path d="M14.8054 19.5626L14.8697 19.5476C15.3433 19.4372 15.8365 19.4423 16.3077 19.5626V19.5626C16.8288 19.6608 17.1399 20.2581 16.6999 20.6881L16.1491 21.2897C15.8791 21.5597 15.2863 21.5597 15.0163 21.2897L14.4733 20.6881C14.0241 20.1803 14.3054 19.6725 14.8054 19.5626Z" fill="url(#paint9_linear_6903_5272)" />
</g>
<path d="M15.2265 19.1189L15.2908 19.1039C15.7644 18.9935 16.2577 18.9986 16.7289 19.1189V19.1189C17.25 19.217 17.561 19.8144 17.121 20.2444L16.5703 20.8459C16.3003 21.1159 15.7075 21.1159 15.4375 20.8459L14.8945 20.2444C14.4453 19.7366 14.7265 19.2288 15.2265 19.1189Z" fill="url(#paint10_radial_6903_5272)" />
<g filter="url(#filter5_f_6903_5272)">
<ellipse cx="16.2703" cy="19.6538" rx="0.761719" ry="0.274258" fill="url(#paint11_linear_6903_5272)" />
</g>
<g filter="url(#filter6_f_6903_5272)">
<path d="M24.7851 22.8219L28.5898 21.0094" stroke="url(#paint12_linear_6903_5272)" stroke-width="1.2" stroke-miterlimit="10" stroke-linecap="round" />
</g>
<g filter="url(#filter7_f_6903_5272)">
<path d="M24.7851 24.8532L26.7117 26.2188" stroke="url(#paint13_linear_6903_5272)" stroke-width="1.2" stroke-miterlimit="10" stroke-linecap="round" />
</g>
<path d="M25.5663 22.4688L29.371 20.6562" stroke="url(#paint14_linear_6903_5272)" stroke-width="1.2" stroke-miterlimit="10" stroke-linecap="round" />
<g filter="url(#filter8_f_6903_5272)">
<path d="M25.5663 22.6406L29.371 20.8281" stroke="#FF8485" stroke-width="0.3" stroke-miterlimit="10" stroke-linecap="round" />
</g>
<path d="M25.5636 24.5989L29.3652 26.418" stroke="url(#paint15_linear_6903_5272)" stroke-width="1.2" stroke-miterlimit="10" stroke-linecap="round" />
<g filter="url(#filter9_f_6903_5272)">
<path d="M25.4984 24.4788L29.3 26.2979" stroke="#FF8485" stroke-width="0.3" stroke-miterlimit="10" stroke-linecap="round" />
</g>
<path d="M6.5281 24.6106L2.72654 26.4297" stroke="url(#paint16_linear_6903_5272)" stroke-width="1.2" stroke-miterlimit="10" stroke-linecap="round" />
<g filter="url(#filter10_f_6903_5272)">
<path d="M6.59334 24.4905L2.79179 26.3096" stroke="#FF8485" stroke-width="0.3" stroke-miterlimit="10" stroke-linecap="round" />
</g>
<g filter="url(#filter11_f_6903_5272)">
<ellipse rx="0.18384" ry="0.165827" transform="matrix(-0.942776 -0.333427 -0.333427 0.942776 6.64614 24.4345)" fill="#FFDD86" />
</g>
<path d="M6.53969 22.454L2.72612 20.6602" stroke="url(#paint17_linear_6903_5272)" stroke-width="1.2" stroke-miterlimit="10" stroke-linecap="round" />
<g filter="url(#filter12_f_6903_5272)">
<path d="M6.67403 22.4284L2.86046 20.6347" stroke="#FF8485" stroke-width="0.3" stroke-miterlimit="10" stroke-linecap="round" />
</g>
<g filter="url(#filter13_f_6903_5272)">
<ellipse rx="0.18384" ry="0.165827" transform="matrix(-0.338111 -0.941106 -0.941106 0.338111 6.75078 22.434)" fill="#FFDD86" />
</g>
<g filter="url(#filter14_f_6903_5272)">
<rect x="22.1024" y="10.0312" width="4.5851" height="14.1857" fill="url(#paint18_linear_6903_5272)" />
</g>
<path d="M25.8329 13.4331L23.0329 10.8331C22.7129 10.5331 22.7129 10.0531 23.0329 9.76313L26.0476 7.08594C26.4304 6.75001 27.2229 6.85938 27.2229 7.69313V12.8931C27.2229 13.7266 26.3429 13.9131 25.8329 13.4331Z" fill="#FFB915" />
<path d="M25.8329 13.4331L23.0329 10.8331C22.7129 10.5331 22.7129 10.0531 23.0329 9.76313L26.0476 7.08594C26.4304 6.75001 27.2229 6.85938 27.2229 7.69313V12.8931C27.2229 13.7266 26.3429 13.9131 25.8329 13.4331Z" fill="url(#paint19_linear_6903_5272)" />
<g filter="url(#filter15_f_6903_5272)">
<path d="M26.6336 7.29688L23.0086 10.4219L26.5555 13.2344L26.6336 7.29688Z" fill="url(#paint20_radial_6903_5272)" />
</g>
<g filter="url(#filter16_f_6903_5272)">
<path d="M23.7274 10.2188L26.2586 12.9531" stroke="url(#paint21_linear_6903_5272)" stroke-width="0.5" stroke-linecap="round" />
</g>
<g filter="url(#filter17_f_6903_5272)">
<path d="M5.22321 7.42896V13.3367L8.69196 10.2473L5.22321 7.42896Z" fill="#FEB33E" />
</g>
<g filter="url(#filter18_f_6903_5272)">
<path d="M5.22321 7.65625V12.8438" stroke="#FFE7A3" stroke-width="0.15" stroke-linecap="round" />
</g>
<g filter="url(#filter19_f_6903_5272)">
<circle cx="22.3076" cy="24.9852" r="3.19081" fill="url(#paint22_linear_6903_5272)" />
</g>
<path d="M20.9883 23.7969C20.9883 21.5964 22.7721 19.8125 24.9727 19.8125V19.8125C27.1732 19.8125 28.957 21.5964 28.957 23.7969V30H20.9883V23.7969Z" fill="url(#paint23_linear_6903_5272)" />
<path d="M20.9883 23.7969C20.9883 21.5964 22.7721 19.8125 24.9727 19.8125V19.8125C27.1732 19.8125 28.957 21.5964 28.957 23.7969V30H20.9883V23.7969Z" fill="url(#paint24_linear_6903_5272)" />
<path d="M20.9883 23.7969C20.9883 21.5964 22.7721 19.8125 24.9727 19.8125V19.8125C27.1732 19.8125 28.957 21.5964 28.957 23.7969V30H20.9883V23.7969Z" fill="url(#paint25_linear_6903_5272)" />
<g filter="url(#filter20_f_6903_5272)">
<path d="M26.0507 20.3399C26.0507 20.2298 26.1399 20.1406 26.25 20.1406V20.1406C26.36 20.1406 26.4492 20.2298 26.4492 20.3399V23.0586C26.4492 23.1686 26.36 23.2578 26.25 23.2578V23.2578C26.1399 23.2578 26.0507 23.1686 26.0507 23.0586V20.3399Z" fill="#DA7600" fill-opacity="0.5" />
</g>
<g filter="url(#filter21_f_6903_5272)">
<path d="M22.9727 20.3437C22.9727 20.2316 23.0636 20.1406 23.1758 20.1406V20.1406C23.288 20.1406 23.3789 20.2316 23.3789 20.3438V22.9531C23.3789 23.0653 23.288 23.1563 23.1758 23.1563V23.1563C23.0636 23.1563 22.9727 23.0653 22.9727 22.9531V20.3437Z" fill="#DA7600" fill-opacity="0.75" />
</g>
<g filter="url(#filter22_f_6903_5272)">
<ellipse cx="27.1216" cy="22.2576" rx="0.846269" ry="1.35723" transform="rotate(-27.2088 27.1216 22.2576)" fill="#FDD659" />
</g>
<path d="M23.1133 20.0547C23.1133 19.8692 23.2637 19.7188 23.4492 19.7188V19.7188C23.6348 19.7188 23.7852 19.8692 23.7852 20.0547V22.8203C23.7852 23.0058 23.6348 23.1562 23.4492 23.1562V23.1562C23.2637 23.1562 23.1133 23.0058 23.1133 22.8203V20.0547Z" fill="url(#paint26_linear_6903_5272)" />
<path d="M23.1133 20.0547C23.1133 19.8692 23.2637 19.7188 23.4492 19.7188V19.7188C23.6348 19.7188 23.7852 19.8692 23.7852 20.0547V22.8203C23.7852 23.0058 23.6348 23.1562 23.4492 23.1562V23.1562C23.2637 23.1562 23.1133 23.0058 23.1133 22.8203V20.0547Z" fill="url(#paint27_linear_6903_5272)" />
<path d="M23.1133 20.0547C23.1133 19.8692 23.2637 19.7188 23.4492 19.7188V19.7188C23.6348 19.7188 23.7852 19.8692 23.7852 20.0547V22.8203C23.7852 23.0058 23.6348 23.1562 23.4492 23.1562V23.1562C23.2637 23.1562 23.1133 23.0058 23.1133 22.8203V20.0547Z" fill="url(#paint28_linear_6903_5272)" />
<path d="M26.1602 20.0547C26.1602 19.8692 26.3106 19.7188 26.4961 19.7188V19.7188C26.6816 19.7188 26.832 19.8692 26.832 20.0547V22.8203C26.832 23.0058 26.6816 23.1562 26.4961 23.1562V23.1562C26.3106 23.1562 26.1602 23.0058 26.1602 22.8203V20.0547Z" fill="url(#paint29_linear_6903_5272)" />
<path d="M26.1602 20.0547C26.1602 19.8692 26.3106 19.7188 26.4961 19.7188V19.7188C26.6816 19.7188 26.832 19.8692 26.832 20.0547V22.8203C26.832 23.0058 26.6816 23.1562 26.4961 23.1562V23.1562C26.3106 23.1562 26.1602 23.0058 26.1602 22.8203V20.0547Z" fill="url(#paint30_linear_6903_5272)" />
<path d="M26.1602 20.0547C26.1602 19.8692 26.3106 19.7188 26.4961 19.7188V19.7188C26.6816 19.7188 26.832 19.8692 26.832 20.0547V22.8203C26.832 23.0058 26.6816 23.1562 26.4961 23.1562V23.1562C26.3106 23.1562 26.1602 23.0058 26.1602 22.8203V20.0547Z" fill="url(#paint31_linear_6903_5272)" />
<g filter="url(#filter23_f_6903_5272)">
<path d="M26.6679 22.6797V20.4688" stroke="url(#paint32_linear_6903_5272)" stroke-width="0.2" stroke-linecap="round" />
</g>
<g filter="url(#filter24_f_6903_5272)">
<path d="M23.621 22.6797V20.4688" stroke="url(#paint33_linear_6903_5272)" stroke-width="0.2" stroke-linecap="round" />
</g>
<g filter="url(#filter25_f_6903_5272)">
<path d="M23.621 22.6797V20.4688" stroke="url(#paint34_linear_6903_5272)" stroke-width="0.2" stroke-linecap="round" />
</g>
<g filter="url(#filter26_f_6903_5272)">
<circle cx="11.082" cy="15.9766" r="3.49219" fill="url(#paint35_linear_6903_5272)" />
</g>
<g filter="url(#filter27_f_6903_5272)">
<circle cx="20.0898" cy="16.0904" r="3.28912" fill="url(#paint36_linear_6903_5272)" />
</g>
<circle cx="20.4844" cy="15.5781" r="3.49219" fill="white" />
<circle cx="11.5156" cy="15.5781" r="3.49219" fill="white" />
<rect x="13.8281" y="21.8359" width="4.34375" height="5.45312" rx="2.17188" fill="url(#paint37_radial_6903_5272)" />
<path d="M3.04297 23.7969C3.04297 21.5964 4.82683 19.8125 7.02734 19.8125V19.8125C9.22785 19.8125 11.0117 21.5964 11.0117 23.7969V30H3.04297V23.7969Z" fill="url(#paint38_linear_6903_5272)" />
<path d="M3.04297 23.7969C3.04297 21.5964 4.82683 19.8125 7.02734 19.8125V19.8125C9.22785 19.8125 11.0117 21.5964 11.0117 23.7969V30H3.04297V23.7969Z" fill="url(#paint39_linear_6903_5272)" />
<path d="M3.04297 23.7969C3.04297 21.5964 4.82683 19.8125 7.02734 19.8125V19.8125C9.22785 19.8125 11.0117 21.5964 11.0117 23.7969V30H3.04297V23.7969Z" fill="url(#paint40_linear_6903_5272)" />
<g filter="url(#filter28_f_6903_5272)">
<ellipse cx="9.1763" cy="22.2576" rx="0.846269" ry="1.35723" transform="rotate(-27.2088 9.1763 22.2576)" fill="#FDD659" />
</g>
<g filter="url(#filter29_f_6903_5272)">
<path d="M8.21484 20.3437C8.21484 20.2316 8.30579 20.1406 8.41797 20.1406V20.1406C8.53015 20.1406 8.62109 20.2316 8.62109 20.3438V22.9531C8.62109 23.0653 8.53015 23.1563 8.41797 23.1563V23.1563C8.30579 23.1563 8.21484 23.0653 8.21484 22.9531V20.3437Z" fill="#DA7600" fill-opacity="0.5" />
</g>
<g filter="url(#filter30_f_6903_5272)">
<path d="M5.09766 20.3437C5.09766 20.2316 5.1886 20.1406 5.30078 20.1406V20.1406C5.41296 20.1406 5.50391 20.2316 5.50391 20.3438V22.9531C5.50391 23.0653 5.41296 23.1563 5.30078 23.1563V23.1563C5.1886 23.1563 5.09766 23.0653 5.09766 22.9531V20.3437Z" fill="#DA7600" fill-opacity="0.75" />
</g>
<path d="M5.16797 20.0547C5.16797 19.8692 5.31837 19.7188 5.50391 19.7188V19.7188C5.68944 19.7188 5.83984 19.8692 5.83984 20.0547V22.8203C5.83984 23.0058 5.68944 23.1562 5.50391 23.1562V23.1562C5.31837 23.1562 5.16797 23.0058 5.16797 22.8203V20.0547Z" fill="url(#paint41_linear_6903_5272)" />
<path d="M5.16797 20.0547C5.16797 19.8692 5.31837 19.7188 5.50391 19.7188V19.7188C5.68944 19.7188 5.83984 19.8692 5.83984 20.0547V22.8203C5.83984 23.0058 5.68944 23.1562 5.50391 23.1562V23.1562C5.31837 23.1562 5.16797 23.0058 5.16797 22.8203V20.0547Z" fill="url(#paint42_linear_6903_5272)" />
<path d="M5.16797 20.0547C5.16797 19.8692 5.31837 19.7188 5.50391 19.7188V19.7188C5.68944 19.7188 5.83984 19.8692 5.83984 20.0547V22.8203C5.83984 23.0058 5.68944 23.1562 5.50391 23.1562V23.1562C5.31837 23.1562 5.16797 23.0058 5.16797 22.8203V20.0547Z" fill="url(#paint43_linear_6903_5272)" />
<path d="M8.21484 20.0547C8.21484 19.8692 8.36525 19.7188 8.55078 19.7188V19.7188C8.73631 19.7188 8.88672 19.8692 8.88672 20.0547V22.8203C8.88672 23.0058 8.73631 23.1562 8.55078 23.1562V23.1562C8.36525 23.1562 8.21484 23.0058 8.21484 22.8203V20.0547Z" fill="url(#paint44_linear_6903_5272)" />
<path d="M8.21484 20.0547C8.21484 19.8692 8.36525 19.7188 8.55078 19.7188V19.7188C8.73631 19.7188 8.88672 19.8692 8.88672 20.0547V22.8203C8.88672 23.0058 8.73631 23.1562 8.55078 23.1562V23.1562C8.36525 23.1562 8.21484 23.0058 8.21484 22.8203V20.0547Z" fill="url(#paint45_linear_6903_5272)" />
<path d="M8.21484 20.0547C8.21484 19.8692 8.36525 19.7188 8.55078 19.7188V19.7188C8.73631 19.7188 8.88672 19.8692 8.88672 20.0547V22.8203C8.88672 23.0058 8.73631 23.1562 8.55078 23.1562V23.1562C8.36525 23.1562 8.21484 23.0058 8.21484 22.8203V20.0547Z" fill="url(#paint46_linear_6903_5272)" />
<g filter="url(#filter31_f_6903_5272)">
<path d="M8.7226 22.6797V20.4688" stroke="url(#paint47_linear_6903_5272)" stroke-width="0.2" stroke-linecap="round" />
</g>
<g filter="url(#filter32_f_6903_5272)">
<path d="M5.67572 22.6797V20.4688" stroke="url(#paint48_linear_6903_5272)" stroke-width="0.2" stroke-linecap="round" />
</g>
<defs>
<filter id="filter0_f_6903_5272" x="3.55408" y="20.25" width="5.72693" height="6.698" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.75" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter1_f_6903_5272" x="18.9327" y="4.48315" width="9.00903" height="11.6356" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.5" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter2_f_6903_5272" x="24.8055" y="4.34375" width="3.41745" height="4.625" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.5" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter3_f_6903_5272" x="2.90601" y="3.5625" width="8.94989" height="10.7285" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter4_f_6903_5272" x="13.7482" y="18.9684" width="3.66141" height="3.0238" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter5_f_6903_5272" x="14.9086" y="18.7795" width="2.72344" height="1.74846" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.3" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter6_f_6903_5272" x="23.685" y="19.9093" width="6.00494" height="4.0127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter7_f_6903_5272" x="23.6851" y="23.7532" width="4.12671" height="3.56567" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter8_f_6903_5272" x="24.9163" y="20.1781" width="5.10474" height="3.11255" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter9_f_6903_5272" x="24.8484" y="23.8287" width="5.10162" height="3.11914" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter10_f_6903_5272" x="2.14175" y="23.8405" width="5.10162" height="3.11914" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter11_f_6903_5272" x="5.96417" y="23.7666" width="1.36395" height="1.33594" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter12_f_6903_5272" x="2.21042" y="19.9847" width="5.11365" height="3.09375" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter13_f_6903_5272" x="6.08273" y="21.7521" width="1.33606" height="1.36377" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter14_f_6903_5272" x="18.1024" y="6.03125" width="12.5851" height="22.1857" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="2" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter15_f_6903_5272" x="22.4086" y="6.69687" width="4.825" height="7.1375" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.3" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter16_f_6903_5272" x="22.7274" y="9.21875" width="4.53125" height="4.73438" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.375" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter17_f_6903_5272" x="4.72321" y="6.92896" width="4.46875" height="6.90771" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter18_f_6903_5272" x="4.64819" y="7.0813" width="1.15002" height="6.3374" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter19_f_6903_5272" x="17.1168" y="19.7944" width="10.3816" height="10.3816" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter20_f_6903_5272" x="25.5507" y="19.6406" width="1.3985" height="4.11719" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter21_f_6903_5272" x="22.4727" y="19.6406" width="1.40625" height="4.01562" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter22_f_6903_5272" x="24.6461" y="19.4897" width="4.95099" height="5.53577" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.75" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter23_f_6903_5272" x="26.3679" y="20.1688" width="0.600012" height="2.81089" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.1" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter24_f_6903_5272" x="23.321" y="20.1688" width="0.600012" height="2.81089" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.1" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter25_f_6903_5272" x="23.321" y="20.1688" width="0.600012" height="2.81089" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.1" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter26_f_6903_5272" x="6.58978" y="11.4844" width="8.98438" height="8.98438" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.5" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter27_f_6903_5272" x="15.8007" y="11.8013" width="8.57825" height="8.57825" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.5" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter28_f_6903_5272" x="6.70081" y="19.4897" width="4.95099" height="5.53577" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.75" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter29_f_6903_5272" x="7.71484" y="19.6406" width="1.40625" height="4.01562" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter30_f_6903_5272" x="4.59766" y="19.6406" width="1.40625" height="4.01562" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter31_f_6903_5272" x="8.42259" y="20.1688" width="0.600012" height="2.81089" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.1" result="effect1_foregroundBlur_6903_5272" />
</filter>
<filter id="filter32_f_6903_5272" x="5.37571" y="20.1688" width="0.600012" height="2.81089" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.1" result="effect1_foregroundBlur_6903_5272" />
</filter>
<linearGradient id="paint0_linear_6903_5272" x1="7.96361" y1="1.05993" x2="7.96361" y2="30.9999" gradientUnits="userSpaceOnUse">
<stop offset="0.288159" stop-color="#F2CC26" />
<stop offset="0.762024" stop-color="#E99E20" />
<stop offset="0.9925" stop-color="#E3821D" />
<stop offset="1" stop-color="#E3801D" />
</linearGradient>
<linearGradient id="paint1_linear_6903_5272" x1="8.88356" y1="11.8512" x2="1.25856" y2="11.8512" gradientUnits="userSpaceOnUse">
<stop stop-color="#E99E20" stop-opacity="0" />
<stop offset="0.9925" stop-color="#E3821D" />
<stop offset="1" stop-color="#E3801D" />
</linearGradient>
<linearGradient id="paint2_linear_6903_5272" x1="26.7586" y1="11.8512" x2="30.1961" y2="11.8512" gradientUnits="userSpaceOnUse">
<stop stop-color="#E99E20" stop-opacity="0" />
<stop offset="0.9925" stop-color="#E3821D" />
<stop offset="1" stop-color="#E3801D" />
</linearGradient>
<linearGradient id="paint3_linear_6903_5272" x1="16.0195" y1="-1.91422" x2="16.0186" y2="30.5233" gradientUnits="userSpaceOnUse">
<stop offset="0.77079" stop-color="#F59639" stop-opacity="0" />
<stop offset="1" stop-color="#FF63C4" />
</linearGradient>
<linearGradient id="paint4_linear_6903_5272" x1="16.0186" y1="11.0624" x2="16.0186" y2="32.3358" gradientUnits="userSpaceOnUse">
<stop offset="0.854227" stop-color="white" stop-opacity="0" />
<stop offset="0.985362" stop-color="white" />
</linearGradient>
<radialGradient id="paint5_radial_6903_5272" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(22.1648 4.21866) rotate(55.8501) scale(5.39983 10.6704)">
<stop stop-color="#FFA720" />
<stop offset="0.921158" stop-color="#FFA720" stop-opacity="0" />
</radialGradient>
<linearGradient id="paint6_linear_6903_5272" x1="23.4373" y1="8.96438" x2="27.9996" y2="13.6597" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFA720" />
<stop offset="1" stop-color="#FFA720" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint7_linear_6903_5272" x1="10.6023" y1="10.5469" x2="4.74255" y2="10" gradientUnits="userSpaceOnUse">
<stop offset="0.437473" stop-color="#ED8C1B" />
<stop offset="1" stop-color="#FFB03A" />
</linearGradient>
<linearGradient id="paint8_linear_6903_5272" x1="27.0399" y1="4.89063" x2="26.4438" y2="7.23208" gradientUnits="userSpaceOnUse">
<stop offset="0.28598" stop-color="#FFE792" />
<stop offset="1" stop-color="#FFDD65" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint9_linear_6903_5272" x1="15.7507" y1="21.2636" x2="15.0789" y2="22.3573" gradientUnits="userSpaceOnUse">
<stop stop-color="#E3900E" />
<stop offset="1" stop-color="#EA9D26" stop-opacity="0" />
</linearGradient>
<radialGradient id="paint10_radial_6903_5272" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(16.4461 20.092) rotate(-153.246) scale(2.11729 2.12981)">
<stop stop-color="#EA088B" />
<stop offset="1" stop-color="#E61E27" />
</radialGradient>
<linearGradient id="paint11_linear_6903_5272" x1="17.2036" y1="19.6538" x2="15.6801" y2="19.6538" gradientUnits="userSpaceOnUse">
<stop stop-color="white" stop-opacity="0.9" />
<stop offset="1" stop-color="white" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint12_linear_6903_5272" x1="24.2898" y1="23.1656" x2="28.0242" y2="21.2499" gradientUnits="userSpaceOnUse">
<stop stop-color="#E88105" />
<stop offset="1" stop-color="#E37D02" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint13_linear_6903_5272" x1="24.2898" y1="24.5095" x2="28.0242" y2="26.4252" gradientUnits="userSpaceOnUse">
<stop offset="0.286458" stop-color="#DE7D07" />
<stop offset="0.817708" stop-color="#E37D02" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint14_linear_6903_5272" x1="25.2898" y1="22.875" x2="29.5273" y2="20.7422" gradientUnits="userSpaceOnUse">
<stop offset="0.75086" stop-color="#D64A38" />
<stop offset="1" stop-color="#FB7425" />
</linearGradient>
<linearGradient id="paint15_linear_6903_5272" x1="25.0739" y1="24.6393" x2="29.8242" y2="26.9765" gradientUnits="userSpaceOnUse">
<stop offset="0.792349" stop-color="#D64A38" />
<stop offset="1" stop-color="#FB7425" />
</linearGradient>
<linearGradient id="paint16_linear_6903_5272" x1="7.01785" y1="24.651" x2="2.02727" y2="27.1484" gradientUnits="userSpaceOnUse">
<stop offset="0.75156" stop-color="#D64A38" />
<stop offset="1" stop-color="#FB7425" />
</linearGradient>
<linearGradient id="paint17_linear_6903_5272" x1="6.8182" y1="22.8588" x2="2.72751" y2="20.9415" gradientUnits="userSpaceOnUse">
<stop offset="0.664576" stop-color="#D64A38" />
<stop offset="1" stop-color="#FB7425" />
</linearGradient>
<linearGradient id="paint18_linear_6903_5272" x1="23.3524" y1="10.7682" x2="22.9558" y2="22.8188" gradientUnits="userSpaceOnUse">
<stop offset="0.548257" stop-color="#FFDD65" />
<stop offset="1" stop-color="#FFDD65" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint19_linear_6903_5272" x1="26.5398" y1="15.4375" x2="25.2898" y2="11.9688" gradientUnits="userSpaceOnUse">
<stop stop-color="#EF8A47" />
<stop offset="1" stop-color="#EF8A47" stop-opacity="0" />
</linearGradient>
<radialGradient id="paint20_radial_6903_5272" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(22.868 7.70313) rotate(55.7389) scale(7.82686 9.38424)">
<stop stop-color="#FFDF70" />
<stop offset="1" stop-color="#FFDF70" stop-opacity="0" />
</radialGradient>
<linearGradient id="paint21_linear_6903_5272" x1="25.0555" y1="10.4063" x2="25.0555" y2="12.75" gradientUnits="userSpaceOnUse">
<stop offset="0.432292" stop-color="#FFE7A3" />
<stop offset="1" stop-color="#FFDF83" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint22_linear_6903_5272" x1="22.3076" y1="26.9378" x2="15.2054" y2="30.4582" gradientUnits="userSpaceOnUse">
<stop stop-color="#DA7600" />
<stop offset="1" stop-color="#DA8400" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint23_linear_6903_5272" x1="28.957" y1="30.4034" x2="20.9883" y2="30.4034" gradientUnits="userSpaceOnUse">
<stop offset="0.160663" stop-color="#F2CC26" />
<stop offset="0.642165" stop-color="#E99E20" />
<stop offset="0.9925" stop-color="#E3821D" />
<stop offset="1" stop-color="#E3801D" />
</linearGradient>
<linearGradient id="paint24_linear_6903_5272" x1="28.957" y1="30.4034" x2="20.9883" y2="30.5625" gradientUnits="userSpaceOnUse">
<stop offset="0.865694" stop-color="#E3821D" stop-opacity="0" />
<stop offset="1" stop-color="#D37516" />
</linearGradient>
<linearGradient id="paint25_linear_6903_5272" x1="26.621" y1="30.4034" x2="34.8085" y2="30.4034" gradientUnits="userSpaceOnUse">
<stop stop-color="#E99E20" stop-opacity="0" />
<stop offset="1" stop-color="#E99E20" />
</linearGradient>
<linearGradient id="paint26_linear_6903_5272" x1="23.7852" y1="22" x2="22.8242" y2="22" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFB445" />
<stop offset="1" stop-color="#E9A239" stop-opacity="0.921875" />
</linearGradient>
<linearGradient id="paint27_linear_6903_5272" x1="22.3398" y1="22.1094" x2="23.621" y2="22.0312" gradientUnits="userSpaceOnUse">
<stop offset="0.366667" stop-color="#D6850E" />
<stop offset="1" stop-color="#CC861F" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint28_linear_6903_5272" x1="23.4492" y1="24.2188" x2="23.4492" y2="22.6484" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF91B9" />
<stop offset="1" stop-color="#FD679E" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint29_linear_6903_5272" x1="26.832" y1="22" x2="25.871" y2="22" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFB445" />
<stop offset="1" stop-color="#E9A239" stop-opacity="0.921875" />
</linearGradient>
<linearGradient id="paint30_linear_6903_5272" x1="25.4335" y1="22.0469" x2="26.371" y2="22.0469" gradientUnits="userSpaceOnUse">
<stop offset="0.366667" stop-color="#D6850E" />
<stop offset="1" stop-color="#CC861F" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint31_linear_6903_5272" x1="26.4961" y1="24.2188" x2="26.4961" y2="22.6484" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF91B9" />
<stop offset="1" stop-color="#FD679E" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint32_linear_6903_5272" x1="27.082" y1="23.3047" x2="26.5405" y2="18.9978" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFC270" />
<stop offset="0.769643" stop-color="#FFE2BB" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint33_linear_6903_5272" x1="24.0351" y1="23.3047" x2="23.4936" y2="18.9978" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFC270" />
<stop offset="0.769643" stop-color="#FFE2BB" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint34_linear_6903_5272" x1="24.0351" y1="23.3047" x2="23.4936" y2="18.9978" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFC270" />
<stop offset="0.769643" stop-color="#FFE2BB" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint35_linear_6903_5272" x1="16.7421" y1="17.596" x2="18.0686" y2="26.3006" gradientUnits="userSpaceOnUse">
<stop stop-color="#CF8209" />
<stop offset="1" stop-color="#C88216" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint36_linear_6903_5272" x1="25.4208" y1="17.6157" x2="26.6701" y2="25.8141" gradientUnits="userSpaceOnUse">
<stop stop-color="#CF8209" />
<stop offset="1" stop-color="#C88216" stop-opacity="0" />
</linearGradient>
<radialGradient id="paint37_radial_6903_5272" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(16 28.5009) rotate(-90) scale(5.91493 9.37069)">
<stop stop-color="#F70A8D" />
<stop offset="1" stop-color="#89029C" />
</radialGradient>
<linearGradient id="paint38_linear_6903_5272" x1="11.0117" y1="30.4034" x2="3.04297" y2="30.4034" gradientUnits="userSpaceOnUse">
<stop offset="0.160663" stop-color="#F2CC26" />
<stop offset="0.642165" stop-color="#E99E20" />
<stop offset="0.9925" stop-color="#E3821D" />
<stop offset="1" stop-color="#E3801D" />
</linearGradient>
<linearGradient id="paint39_linear_6903_5272" x1="11.0117" y1="30.4034" x2="3.04297" y2="30.5625" gradientUnits="userSpaceOnUse">
<stop offset="0.865694" stop-color="#E3821D" stop-opacity="0" />
<stop offset="1" stop-color="#D37516" />
</linearGradient>
<linearGradient id="paint40_linear_6903_5272" x1="8.67572" y1="30.4034" x2="16.8632" y2="30.4034" gradientUnits="userSpaceOnUse">
<stop stop-color="#E99E20" stop-opacity="0" />
<stop offset="1" stop-color="#E99E20" />
</linearGradient>
<linearGradient id="paint41_linear_6903_5272" x1="5.83984" y1="22" x2="4.87885" y2="22" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFB445" />
<stop offset="1" stop-color="#E9A239" stop-opacity="0.921875" />
</linearGradient>
<linearGradient id="paint42_linear_6903_5272" x1="4.39447" y1="22.1094" x2="5.67572" y2="22.0312" gradientUnits="userSpaceOnUse">
<stop offset="0.366667" stop-color="#D6850E" />
<stop offset="1" stop-color="#CC861F" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint43_linear_6903_5272" x1="5.50391" y1="24.2188" x2="5.50391" y2="22.6484" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF91B9" />
<stop offset="1" stop-color="#FD679E" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint44_linear_6903_5272" x1="8.88672" y1="22" x2="7.92572" y2="22" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFB445" />
<stop offset="1" stop-color="#E9A239" stop-opacity="0.921875" />
</linearGradient>
<linearGradient id="paint45_linear_6903_5272" x1="7.48822" y1="22.0469" x2="8.42572" y2="22.0469" gradientUnits="userSpaceOnUse">
<stop offset="0.366667" stop-color="#D6850E" />
<stop offset="1" stop-color="#CC861F" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint46_linear_6903_5272" x1="8.55078" y1="24.2188" x2="8.55078" y2="22.6484" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF91B9" />
<stop offset="1" stop-color="#FD679E" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint47_linear_6903_5272" x1="9.13666" y1="23.3047" x2="8.59516" y2="18.9978" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFC270" />
<stop offset="0.769643" stop-color="#FFE2BB" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint48_linear_6903_5272" x1="6.08978" y1="23.3047" x2="5.54828" y2="18.9978" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFC270" />
<stop offset="0.769643" stop-color="#FFE2BB" stop-opacity="0" />
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 42 KiB

View file

@ -0,0 +1,632 @@
<svg width="100%" height="100%" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.47635 11.8789C3.78963 11.6524 4.22723 11.7227 4.45376 12.036C4.49826 12.0975 4.54182 12.1724 4.56886 12.2189C4.57087 12.2223 4.5728 12.2256 4.57462 12.2288L4.5756 12.2305C4.6092 12.2881 4.64178 12.344 4.68034 12.4046C4.757 12.5251 4.85103 12.6537 4.97419 12.7744C5.20677 13.0024 5.58168 13.2422 6.24089 13.2743C6.62703 13.2931 6.92481 13.6214 6.906 14.0076C6.88718 14.3937 6.5589 14.6915 6.17276 14.6727C5.14838 14.6227 4.45493 14.2258 3.99415 13.7741C3.77063 13.555 3.61173 13.333 3.49918 13.1562C3.44576 13.0722 3.40139 12.9961 3.36913 12.9407C3.36777 12.9384 3.36644 12.9361 3.36512 12.9338C3.33664 12.885 3.32453 12.8651 3.32058 12.8586C3.31896 12.8559 3.31871 12.8555 3.31927 12.8563C3.09274 12.543 3.16307 12.1054 3.47635 11.8789Z" fill="url(#paint0_linear_4002_4179)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.47635 11.8789C3.78963 11.6524 4.22723 11.7227 4.45376 12.036C4.49826 12.0975 4.54182 12.1724 4.56886 12.2189C4.57087 12.2223 4.5728 12.2256 4.57462 12.2288L4.5756 12.2305C4.6092 12.2881 4.64178 12.344 4.68034 12.4046C4.757 12.5251 4.85103 12.6537 4.97419 12.7744C5.20677 13.0024 5.58168 13.2422 6.24089 13.2743C6.62703 13.2931 6.92481 13.6214 6.906 14.0076C6.88718 14.3937 6.5589 14.6915 6.17276 14.6727C5.14838 14.6227 4.45493 14.2258 3.99415 13.7741C3.77063 13.555 3.61173 13.333 3.49918 13.1562C3.44576 13.0722 3.40139 12.9961 3.36913 12.9407C3.36777 12.9384 3.36644 12.9361 3.36512 12.9338C3.33664 12.885 3.32453 12.8651 3.32058 12.8586C3.31896 12.8559 3.31871 12.8555 3.31927 12.8563C3.09274 12.543 3.16307 12.1054 3.47635 11.8789Z" fill="url(#paint1_radial_4002_4179)" />
<g filter="url(#filter0_f_4002_4179)">
<path d="M4.00635 12.2659C4.20239 12.7677 5.02389 13.6534 6.05826 13.8048" stroke="url(#paint2_linear_4002_4179)" stroke-width="0.6" stroke-linecap="round" />
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.43729 12.1953C2.75057 11.9688 3.18817 12.0391 3.4147 12.3524C3.44871 12.3994 3.48674 12.4563 3.52962 12.5204C3.79115 12.9115 4.23314 13.5723 5.04481 13.9198C5.40021 14.072 5.56498 14.4834 5.41284 14.8388C5.26069 15.1942 4.84924 15.359 4.49384 15.2068C3.2482 14.6736 2.55932 13.6039 2.33855 13.2611C2.31276 13.221 2.29336 13.1909 2.28021 13.1727C2.05368 12.8594 2.12401 12.4218 2.43729 12.1953Z" fill="url(#paint3_linear_4002_4179)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.43729 12.1953C2.75057 11.9688 3.18817 12.0391 3.4147 12.3524C3.44871 12.3994 3.48674 12.4563 3.52962 12.5204C3.79115 12.9115 4.23314 13.5723 5.04481 13.9198C5.40021 14.072 5.56498 14.4834 5.41284 14.8388C5.26069 15.1942 4.84924 15.359 4.49384 15.2068C3.2482 14.6736 2.55932 13.6039 2.33855 13.2611C2.31276 13.221 2.29336 13.1909 2.28021 13.1727C2.05368 12.8594 2.12401 12.4218 2.43729 12.1953Z" fill="url(#paint4_radial_4002_4179)" />
<g filter="url(#filter1_f_4002_4179)">
<path d="M2.92773 12.5459C3.12378 13.0477 3.77211 14.0044 5.05481 14.2691" stroke="url(#paint5_linear_4002_4179)" stroke-width="0.6" stroke-linecap="round" />
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.4051 13.2174C2.7148 12.986 3.15345 13.0495 3.38484 13.3592C3.41226 13.3959 3.4409 13.4357 3.47115 13.4778C3.7726 13.897 4.23441 14.5391 5.24985 14.5391C5.63645 14.5391 5.94985 14.8525 5.94985 15.2391C5.94985 15.6257 5.63645 15.9391 5.24985 15.9391C3.4745 15.9391 2.61317 14.6991 2.32549 14.285C2.3005 14.249 2.27985 14.2193 2.26329 14.1971C2.0319 13.8874 2.09539 13.4488 2.4051 13.2174Z" fill="url(#paint6_linear_4002_4179)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.4051 13.2174C2.7148 12.986 3.15345 13.0495 3.38484 13.3592C3.41226 13.3959 3.4409 13.4357 3.47115 13.4778C3.7726 13.897 4.23441 14.5391 5.24985 14.5391C5.63645 14.5391 5.94985 14.8525 5.94985 15.2391C5.94985 15.6257 5.63645 15.9391 5.24985 15.9391C3.4745 15.9391 2.61317 14.6991 2.32549 14.285C2.3005 14.249 2.27985 14.2193 2.26329 14.1971C2.0319 13.8874 2.09539 13.4488 2.4051 13.2174Z" fill="url(#paint7_radial_4002_4179)" />
<g filter="url(#filter2_f_4002_4179)">
<path d="M2.85779 13.5552C3.09615 14.0383 3.82417 14.9359 5.12484 15.0895" stroke="url(#paint8_linear_4002_4179)" stroke-width="0.6" stroke-linecap="round" />
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.7176 14.2486C3.0273 14.0173 3.46595 14.0807 3.69734 14.3904C3.87833 14.6327 4.35059 15.2305 5.57016 15.2305C5.95676 15.2305 6.27016 15.5439 6.27016 15.9305C6.27016 16.3171 5.95676 16.6305 5.57016 16.6305C3.74285 16.6305 2.90262 15.6658 2.57579 15.2284C2.3444 14.9187 2.40789 14.48 2.7176 14.2486Z" fill="url(#paint9_linear_4002_4179)" />
<path d="M5.95689 11.6866C6.28532 11.4342 6.75618 11.4959 7.00858 11.8243L7.81316 12.8713C8.18243 13.3518 8.38263 13.9409 8.38263 14.5469V16.6875H5.12482V13.9895H6.75146C6.71577 13.9179 6.6731 13.8494 6.62378 13.7853L5.8192 12.7383C5.5668 12.4099 5.62845 11.939 5.95689 11.6866Z" fill="#E0A32A" />
<path d="M5.95689 11.6866C6.28532 11.4342 6.75618 11.4959 7.00858 11.8243L7.81316 12.8713C8.18243 13.3518 8.38263 13.9409 8.38263 14.5469V16.6875H5.12482V13.9895H6.75146C6.71577 13.9179 6.6731 13.8494 6.62378 13.7853L5.8192 12.7383C5.5668 12.4099 5.62845 11.939 5.95689 11.6866Z" fill="url(#paint10_radial_4002_4179)" />
<path d="M5.95689 11.6866C6.28532 11.4342 6.75618 11.4959 7.00858 11.8243L7.81316 12.8713C8.18243 13.3518 8.38263 13.9409 8.38263 14.5469V16.6875H5.12482V13.9895H6.75146C6.71577 13.9179 6.6731 13.8494 6.62378 13.7853L5.8192 12.7383C5.5668 12.4099 5.62845 11.939 5.95689 11.6866Z" fill="url(#paint11_linear_4002_4179)" />
<path d="M5.95689 11.6866C6.28532 11.4342 6.75618 11.4959 7.00858 11.8243L7.81316 12.8713C8.18243 13.3518 8.38263 13.9409 8.38263 14.5469V16.6875H5.12482V13.9895H6.75146C6.71577 13.9179 6.6731 13.8494 6.62378 13.7853L5.8192 12.7383C5.5668 12.4099 5.62845 11.939 5.95689 11.6866Z" fill="url(#paint12_linear_4002_4179)" />
<path d="M5.95689 11.6866C6.28532 11.4342 6.75618 11.4959 7.00858 11.8243L7.81316 12.8713C8.18243 13.3518 8.38263 13.9409 8.38263 14.5469V16.6875H5.12482V13.9895H6.75146C6.71577 13.9179 6.6731 13.8494 6.62378 13.7853L5.8192 12.7383C5.5668 12.4099 5.62845 11.939 5.95689 11.6866Z" fill="url(#paint13_radial_4002_4179)" />
<path d="M5.95689 11.6866C6.28532 11.4342 6.75618 11.4959 7.00858 11.8243L7.81316 12.8713C8.18243 13.3518 8.38263 13.9409 8.38263 14.5469V16.6875H5.12482V13.9895H6.75146C6.71577 13.9179 6.6731 13.8494 6.62378 13.7853L5.8192 12.7383C5.5668 12.4099 5.62845 11.939 5.95689 11.6866Z" fill="url(#paint14_radial_4002_4179)" />
<g filter="url(#filter3_i_4002_4179)">
<path d="M26.1646 11.6866C25.8362 11.4342 25.3653 11.4959 25.1129 11.8243L24.3084 12.8713C23.9391 13.3518 23.7389 13.9409 23.7389 14.5469V16.6875H26.9967V13.9895H25.3701C25.4057 13.9179 25.4484 13.8494 25.4977 13.7853L26.3023 12.7383C26.5547 12.4099 26.4931 11.939 26.1646 11.6866Z" fill="#FFD02E" />
<path d="M26.1646 11.6866C25.8362 11.4342 25.3653 11.4959 25.1129 11.8243L24.3084 12.8713C23.9391 13.3518 23.7389 13.9409 23.7389 14.5469V16.6875H26.9967V13.9895H25.3701C25.4057 13.9179 25.4484 13.8494 25.4977 13.7853L26.3023 12.7383C26.5547 12.4099 26.4931 11.939 26.1646 11.6866Z" fill="url(#paint15_linear_4002_4179)" />
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.6452 11.8789C28.3319 11.6524 27.8943 11.7227 27.6678 12.036C27.6233 12.0975 27.5797 12.1724 27.5527 12.2189C27.5506 12.2223 27.5487 12.2256 27.5469 12.2288L27.5459 12.2305C27.5123 12.2881 27.4797 12.344 27.4412 12.4046C27.3645 12.5251 27.2705 12.6537 27.1473 12.7744C26.9148 13.0024 26.5398 13.2422 25.8806 13.2743C25.4945 13.2931 25.1967 13.6214 25.2155 14.0076C25.2343 14.3937 25.5626 14.6915 25.9488 14.6727C26.9731 14.6227 27.6666 14.2258 28.1274 13.7741C28.3509 13.555 28.5098 13.333 28.6223 13.1562C28.6758 13.0722 28.7201 12.9961 28.7524 12.9407C28.7537 12.9384 28.7551 12.9361 28.7564 12.9338C28.7849 12.885 28.797 12.8651 28.8009 12.8586C28.8026 12.8559 28.8023 12.8563 28.8023 12.8563C29.0288 12.543 28.9585 12.1054 28.6452 11.8789Z" fill="url(#paint16_linear_4002_4179)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.6452 11.8789C28.3319 11.6524 27.8943 11.7227 27.6678 12.036C27.6233 12.0975 27.5797 12.1724 27.5527 12.2189C27.5506 12.2223 27.5487 12.2256 27.5469 12.2288L27.5459 12.2305C27.5123 12.2881 27.4797 12.344 27.4412 12.4046C27.3645 12.5251 27.2705 12.6537 27.1473 12.7744C26.9148 13.0024 26.5398 13.2422 25.8806 13.2743C25.4945 13.2931 25.1967 13.6214 25.2155 14.0076C25.2343 14.3937 25.5626 14.6915 25.9488 14.6727C26.9731 14.6227 27.6666 14.2258 28.1274 13.7741C28.3509 13.555 28.5098 13.333 28.6223 13.1562C28.6758 13.0722 28.7201 12.9961 28.7524 12.9407C28.7537 12.9384 28.7551 12.9361 28.7564 12.9338C28.7849 12.885 28.797 12.8651 28.8009 12.8586C28.8026 12.8559 28.8023 12.8563 28.8023 12.8563C29.0288 12.543 28.9585 12.1054 28.6452 11.8789Z" fill="url(#paint17_radial_4002_4179)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.6452 11.8789C28.3319 11.6524 27.8943 11.7227 27.6678 12.036C27.6233 12.0975 27.5797 12.1724 27.5527 12.2189C27.5506 12.2223 27.5487 12.2256 27.5469 12.2288L27.5459 12.2305C27.5123 12.2881 27.4797 12.344 27.4412 12.4046C27.3645 12.5251 27.2705 12.6537 27.1473 12.7744C26.9148 13.0024 26.5398 13.2422 25.8806 13.2743C25.4945 13.2931 25.1967 13.6214 25.2155 14.0076C25.2343 14.3937 25.5626 14.6915 25.9488 14.6727C26.9731 14.6227 27.6666 14.2258 28.1274 13.7741C28.3509 13.555 28.5098 13.333 28.6223 13.1562C28.6758 13.0722 28.7201 12.9961 28.7524 12.9407C28.7537 12.9384 28.7551 12.9361 28.7564 12.9338C28.7849 12.885 28.797 12.8651 28.8009 12.8586C28.8026 12.8559 28.8023 12.8563 28.8023 12.8563C29.0288 12.543 28.9585 12.1054 28.6452 11.8789Z" fill="url(#paint18_radial_4002_4179)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.6452 11.8789C28.3319 11.6524 27.8943 11.7227 27.6678 12.036C27.6233 12.0975 27.5797 12.1724 27.5527 12.2189C27.5506 12.2223 27.5487 12.2256 27.5469 12.2288L27.5459 12.2305C27.5123 12.2881 27.4797 12.344 27.4412 12.4046C27.3645 12.5251 27.2705 12.6537 27.1473 12.7744C26.9148 13.0024 26.5398 13.2422 25.8806 13.2743C25.4945 13.2931 25.1967 13.6214 25.2155 14.0076C25.2343 14.3937 25.5626 14.6915 25.9488 14.6727C26.9731 14.6227 27.6666 14.2258 28.1274 13.7741C28.3509 13.555 28.5098 13.333 28.6223 13.1562C28.6758 13.0722 28.7201 12.9961 28.7524 12.9407C28.7537 12.9384 28.7551 12.9361 28.7564 12.9338C28.7849 12.885 28.797 12.8651 28.8009 12.8586C28.8026 12.8559 28.8023 12.8563 28.8023 12.8563C29.0288 12.543 28.9585 12.1054 28.6452 11.8789Z" fill="url(#paint19_radial_4002_4179)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.6842 12.1953C29.371 11.9688 28.9334 12.0391 28.7068 12.3524C28.6728 12.3994 28.6348 12.4563 28.5919 12.5204C28.3304 12.9115 27.6709 13.6338 26.8592 13.9813C26.5038 14.1334 26.3564 14.4301 26.5389 14.8563C26.6911 15.2117 27.2723 15.359 27.6277 15.2068C28.8733 14.6736 29.5622 13.6039 29.783 13.2611C29.8088 13.221 29.8282 13.1909 29.8413 13.1727C30.0678 12.8594 29.9975 12.4218 29.6842 12.1953Z" fill="url(#paint20_linear_4002_4179)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.6842 12.1953C29.371 11.9688 28.9334 12.0391 28.7068 12.3524C28.6728 12.3994 28.6348 12.4563 28.5919 12.5204C28.3304 12.9115 27.6709 13.6338 26.8592 13.9813C26.5038 14.1334 26.3564 14.4301 26.5389 14.8563C26.6911 15.2117 27.2723 15.359 27.6277 15.2068C28.8733 14.6736 29.5622 13.6039 29.783 13.2611C29.8088 13.221 29.8282 13.1909 29.8413 13.1727C30.0678 12.8594 29.9975 12.4218 29.6842 12.1953Z" fill="url(#paint21_radial_4002_4179)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.6842 12.1953C29.371 11.9688 28.9334 12.0391 28.7068 12.3524C28.6728 12.3994 28.6348 12.4563 28.5919 12.5204C28.3304 12.9115 27.6709 13.6338 26.8592 13.9813C26.5038 14.1334 26.3564 14.4301 26.5389 14.8563C26.6911 15.2117 27.2723 15.359 27.6277 15.2068C28.8733 14.6736 29.5622 13.6039 29.783 13.2611C29.8088 13.221 29.8282 13.1909 29.8413 13.1727C30.0678 12.8594 29.9975 12.4218 29.6842 12.1953Z" fill="url(#paint22_radial_4002_4179)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.6842 12.1953C29.371 11.9688 28.9334 12.0391 28.7068 12.3524C28.6728 12.3994 28.6348 12.4563 28.5919 12.5204C28.3304 12.9115 27.6709 13.6338 26.8592 13.9813C26.5038 14.1334 26.3564 14.4301 26.5389 14.8563C26.6911 15.2117 27.2723 15.359 27.6277 15.2068C28.8733 14.6736 29.5622 13.6039 29.783 13.2611C29.8088 13.221 29.8282 13.1909 29.8413 13.1727C30.0678 12.8594 29.9975 12.4218 29.6842 12.1953Z" fill="url(#paint23_radial_4002_4179)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.7165 13.2174C29.4068 12.986 28.9681 13.0495 28.7367 13.3592C28.7093 13.3959 28.6807 13.4357 28.6504 13.4778C28.349 13.897 27.8872 14.5391 26.8717 14.5391C26.4851 14.5391 26.1717 14.8525 26.1717 15.2391C26.1717 15.6257 26.4851 15.9391 26.8717 15.9391C28.6471 15.9391 29.5084 14.6991 29.7961 14.285C29.8211 14.249 29.8417 14.2193 29.8583 14.1971C30.0897 13.8874 30.0262 13.4488 29.7165 13.2174Z" fill="url(#paint24_linear_4002_4179)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.7165 13.2174C29.4068 12.986 28.9681 13.0495 28.7367 13.3592C28.7093 13.3959 28.6807 13.4357 28.6504 13.4778C28.349 13.897 27.8872 14.5391 26.8717 14.5391C26.4851 14.5391 26.1717 14.8525 26.1717 15.2391C26.1717 15.6257 26.4851 15.9391 26.8717 15.9391C28.6471 15.9391 29.5084 14.6991 29.7961 14.285C29.8211 14.249 29.8417 14.2193 29.8583 14.1971C30.0897 13.8874 30.0262 13.4488 29.7165 13.2174Z" fill="url(#paint25_radial_4002_4179)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.7165 13.2174C29.4068 12.986 28.9681 13.0495 28.7367 13.3592C28.7093 13.3959 28.6807 13.4357 28.6504 13.4778C28.349 13.897 27.8872 14.5391 26.8717 14.5391C26.4851 14.5391 26.1717 14.8525 26.1717 15.2391C26.1717 15.6257 26.4851 15.9391 26.8717 15.9391C28.6471 15.9391 29.5084 14.6991 29.7961 14.285C29.8211 14.249 29.8417 14.2193 29.8583 14.1971C30.0897 13.8874 30.0262 13.4488 29.7165 13.2174Z" fill="url(#paint26_radial_4002_4179)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.7165 13.2174C29.4068 12.986 28.9681 13.0495 28.7367 13.3592C28.7093 13.3959 28.6807 13.4357 28.6504 13.4778C28.349 13.897 27.8872 14.5391 26.8717 14.5391C26.4851 14.5391 26.1717 14.8525 26.1717 15.2391C26.1717 15.6257 26.4851 15.9391 26.8717 15.9391C28.6471 15.9391 29.5084 14.6991 29.7961 14.285C29.8211 14.249 29.8417 14.2193 29.8583 14.1971C30.0897 13.8874 30.0262 13.4488 29.7165 13.2174Z" fill="url(#paint27_radial_4002_4179)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.404 14.2486C29.0943 14.0173 28.6556 14.0807 28.4242 14.3904C28.2433 14.6327 27.771 15.2305 26.5514 15.2305C26.1648 15.2305 25.8514 15.5439 25.8514 15.9305C25.8514 16.3171 26.1648 16.6305 26.5514 16.6305C28.3787 16.6305 29.219 15.6658 29.5458 15.2284C29.7772 14.9187 29.7137 14.48 29.404 14.2486Z" fill="url(#paint28_linear_4002_4179)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.404 14.2486C29.0943 14.0173 28.6556 14.0807 28.4242 14.3904C28.2433 14.6327 27.771 15.2305 26.5514 15.2305C26.1648 15.2305 25.8514 15.5439 25.8514 15.9305C25.8514 16.3171 26.1648 16.6305 26.5514 16.6305C28.3787 16.6305 29.219 15.6658 29.5458 15.2284C29.7772 14.9187 29.7137 14.48 29.404 14.2486Z" fill="url(#paint29_radial_4002_4179)" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.404 14.2486C29.0943 14.0173 28.6556 14.0807 28.4242 14.3904C28.2433 14.6327 27.771 15.2305 26.5514 15.2305C26.1648 15.2305 25.8514 15.5439 25.8514 15.9305C25.8514 16.3171 26.1648 16.6305 26.5514 16.6305C28.3787 16.6305 29.219 15.6658 29.5458 15.2284C29.7772 14.9187 29.7137 14.48 29.404 14.2486Z" fill="url(#paint30_radial_4002_4179)" />
<path d="M27.1295 16.7236C27.1295 16.5856 27.0176 16.4736 26.8795 16.4736H23.9498C23.8118 16.4736 23.6998 16.5856 23.6998 16.7236V17.5674H27.1295V16.7236Z" fill="url(#paint31_radial_4002_4179)" />
<path d="M4.992 16.7236C4.992 16.5856 5.10393 16.4736 5.242 16.4736H8.17169C8.30976 16.4736 8.42169 16.5856 8.42169 16.7236V17.5674H4.992V16.7236Z" fill="url(#paint32_radial_4002_4179)" />
<g filter="url(#filter4_i_4002_4179)">
<path d="M9.34391 20.8421C9.17724 20.9387 8.9686 20.8184 8.9686 20.6258V17.7611C8.9686 17.4297 8.69997 17.1611 8.3686 17.1611H5.08423C4.75286 17.1611 4.48423 17.4297 4.48423 17.7611V22.3486C4.47902 23.1975 4.59619 24.8557 5.9686 25.7314C7.11718 26.4642 8.46915 26.3009 9.18181 26.0784C9.28311 26.0468 9.39047 26.1203 9.39047 26.2264V29.933C9.39047 30.0158 9.45763 30.083 9.54047 30.083H22.5344C22.6173 30.083 22.6844 30.0158 22.6844 29.933V26.2264C22.6844 26.1203 22.7918 26.0468 22.8931 26.0784C23.6058 26.3009 24.9577 26.4642 26.1063 25.7314C27.4787 24.8557 27.5959 23.1975 27.5907 22.3486V17.7611C27.5907 17.4297 27.3221 17.1611 26.9907 17.1611H23.7063C23.3749 17.1611 23.1063 17.4297 23.1063 17.7611V20.6258C23.1063 20.8184 22.8977 20.9387 22.731 20.8421L16.0375 16.9104L9.34391 20.8421Z" fill="url(#paint33_radial_4002_4179)" />
<path d="M9.34391 20.8421C9.17724 20.9387 8.9686 20.8184 8.9686 20.6258V17.7611C8.9686 17.4297 8.69997 17.1611 8.3686 17.1611H5.08423C4.75286 17.1611 4.48423 17.4297 4.48423 17.7611V22.3486C4.47902 23.1975 4.59619 24.8557 5.9686 25.7314C7.11718 26.4642 8.46915 26.3009 9.18181 26.0784C9.28311 26.0468 9.39047 26.1203 9.39047 26.2264V29.933C9.39047 30.0158 9.45763 30.083 9.54047 30.083H22.5344C22.6173 30.083 22.6844 30.0158 22.6844 29.933V26.2264C22.6844 26.1203 22.7918 26.0468 22.8931 26.0784C23.6058 26.3009 24.9577 26.4642 26.1063 25.7314C27.4787 24.8557 27.5959 23.1975 27.5907 22.3486V17.7611C27.5907 17.4297 27.3221 17.1611 26.9907 17.1611H23.7063C23.3749 17.1611 23.1063 17.4297 23.1063 17.7611V20.6258C23.1063 20.8184 22.8977 20.9387 22.731 20.8421L16.0375 16.9104L9.34391 20.8421Z" fill="url(#paint34_radial_4002_4179)" />
<path d="M9.34391 20.8421C9.17724 20.9387 8.9686 20.8184 8.9686 20.6258V17.7611C8.9686 17.4297 8.69997 17.1611 8.3686 17.1611H5.08423C4.75286 17.1611 4.48423 17.4297 4.48423 17.7611V22.3486C4.47902 23.1975 4.59619 24.8557 5.9686 25.7314C7.11718 26.4642 8.46915 26.3009 9.18181 26.0784C9.28311 26.0468 9.39047 26.1203 9.39047 26.2264V29.933C9.39047 30.0158 9.45763 30.083 9.54047 30.083H22.5344C22.6173 30.083 22.6844 30.0158 22.6844 29.933V26.2264C22.6844 26.1203 22.7918 26.0468 22.8931 26.0784C23.6058 26.3009 24.9577 26.4642 26.1063 25.7314C27.4787 24.8557 27.5959 23.1975 27.5907 22.3486V17.7611C27.5907 17.4297 27.3221 17.1611 26.9907 17.1611H23.7063C23.3749 17.1611 23.1063 17.4297 23.1063 17.7611V20.6258C23.1063 20.8184 22.8977 20.9387 22.731 20.8421L16.0375 16.9104L9.34391 20.8421Z" fill="url(#paint35_radial_4002_4179)" />
<path d="M9.34391 20.8421C9.17724 20.9387 8.9686 20.8184 8.9686 20.6258V17.7611C8.9686 17.4297 8.69997 17.1611 8.3686 17.1611H5.08423C4.75286 17.1611 4.48423 17.4297 4.48423 17.7611V22.3486C4.47902 23.1975 4.59619 24.8557 5.9686 25.7314C7.11718 26.4642 8.46915 26.3009 9.18181 26.0784C9.28311 26.0468 9.39047 26.1203 9.39047 26.2264V29.933C9.39047 30.0158 9.45763 30.083 9.54047 30.083H22.5344C22.6173 30.083 22.6844 30.0158 22.6844 29.933V26.2264C22.6844 26.1203 22.7918 26.0468 22.8931 26.0784C23.6058 26.3009 24.9577 26.4642 26.1063 25.7314C27.4787 24.8557 27.5959 23.1975 27.5907 22.3486V17.7611C27.5907 17.4297 27.3221 17.1611 26.9907 17.1611H23.7063C23.3749 17.1611 23.1063 17.4297 23.1063 17.7611V20.6258C23.1063 20.8184 22.8977 20.9387 22.731 20.8421L16.0375 16.9104L9.34391 20.8421Z" fill="url(#paint36_radial_4002_4179)" />
<path d="M9.34391 20.8421C9.17724 20.9387 8.9686 20.8184 8.9686 20.6258V17.7611C8.9686 17.4297 8.69997 17.1611 8.3686 17.1611H5.08423C4.75286 17.1611 4.48423 17.4297 4.48423 17.7611V22.3486C4.47902 23.1975 4.59619 24.8557 5.9686 25.7314C7.11718 26.4642 8.46915 26.3009 9.18181 26.0784C9.28311 26.0468 9.39047 26.1203 9.39047 26.2264V29.933C9.39047 30.0158 9.45763 30.083 9.54047 30.083H22.5344C22.6173 30.083 22.6844 30.0158 22.6844 29.933V26.2264C22.6844 26.1203 22.7918 26.0468 22.8931 26.0784C23.6058 26.3009 24.9577 26.4642 26.1063 25.7314C27.4787 24.8557 27.5959 23.1975 27.5907 22.3486V17.7611C27.5907 17.4297 27.3221 17.1611 26.9907 17.1611H23.7063C23.3749 17.1611 23.1063 17.4297 23.1063 17.7611V20.6258C23.1063 20.8184 22.8977 20.9387 22.731 20.8421L16.0375 16.9104L9.34391 20.8421Z" fill="url(#paint37_radial_4002_4179)" />
<path d="M9.34391 20.8421C9.17724 20.9387 8.9686 20.8184 8.9686 20.6258V17.7611C8.9686 17.4297 8.69997 17.1611 8.3686 17.1611H5.08423C4.75286 17.1611 4.48423 17.4297 4.48423 17.7611V22.3486C4.47902 23.1975 4.59619 24.8557 5.9686 25.7314C7.11718 26.4642 8.46915 26.3009 9.18181 26.0784C9.28311 26.0468 9.39047 26.1203 9.39047 26.2264V29.933C9.39047 30.0158 9.45763 30.083 9.54047 30.083H22.5344C22.6173 30.083 22.6844 30.0158 22.6844 29.933V26.2264C22.6844 26.1203 22.7918 26.0468 22.8931 26.0784C23.6058 26.3009 24.9577 26.4642 26.1063 25.7314C27.4787 24.8557 27.5959 23.1975 27.5907 22.3486V17.7611C27.5907 17.4297 27.3221 17.1611 26.9907 17.1611H23.7063C23.3749 17.1611 23.1063 17.4297 23.1063 17.7611V20.6258C23.1063 20.8184 22.8977 20.9387 22.731 20.8421L16.0375 16.9104L9.34391 20.8421Z" fill="url(#paint38_radial_4002_4179)" />
</g>
<path d="M16.0311 20.9345C14.9268 20.9345 14.0311 20.1329 14.0311 19.1446V17.0299C14.0311 16.0416 14.9268 15.24 16.0311 15.24C17.1353 15.24 18.0311 16.0416 18.0311 17.0299V19.1446C18.0311 20.1329 17.1353 20.9345 16.0311 20.9345Z" fill="url(#paint39_linear_4002_4179)" />
<path d="M20.5123 14.1961C20.8266 14.1605 21.1131 14.0298 21.3392 13.8374L21.4099 14.7126C21.4777 15.5522 21.0379 16.3407 20.3027 16.7125C20.4352 16.3586 20.5152 15.9783 20.5382 15.5769L20.5123 14.1961Z" fill="url(#paint40_radial_4002_4179)" />
<path d="M20.5123 14.1961C20.8266 14.1605 21.1131 14.0298 21.3392 13.8374L21.4099 14.7126C21.4777 15.5522 21.0379 16.3407 20.3027 16.7125C20.4352 16.3586 20.5152 15.9783 20.5382 15.5769L20.5123 14.1961Z" fill="url(#paint41_radial_4002_4179)" />
<path d="M11.3722 14.9342C11.0562 14.9495 10.7524 14.8665 10.4984 14.7129L10.569 15.5881C10.6369 16.4277 11.1975 17.1353 11.9829 17.3843C11.7953 17.0563 11.6553 16.6937 11.5682 16.3013L11.3722 14.9342Z" fill="url(#paint42_radial_4002_4179)" />
<path d="M11.3722 14.9342C11.0562 14.9495 10.7524 14.8665 10.4984 14.7129L10.569 15.5881C10.6369 16.4277 11.1975 17.1353 11.9829 17.3843C11.7953 17.0563 11.6553 16.6937 11.5682 16.3013L11.3722 14.9342Z" fill="url(#paint43_radial_4002_4179)" />
<g filter="url(#filter5_ii_4002_4179)">
<path d="M11.5215 16.356C11.9116 18.1718 13.5839 19.4121 15.433 19.2628L17.2065 19.1195C19.0557 18.9701 20.5072 17.4775 20.6008 15.6226C20.5687 13.8428 20.5378 12.0701 20.4771 10.2935C20.4089 9.57328 19.7924 9.0242 19.072 9.05195L17.7557 9.15827C16.8582 9.23076 16.0027 8.76696 15.5669 7.96983C15.4531 7.7405 15.2111 7.60271 14.9568 7.62325L13.7602 7.71991C12.025 7.86006 10.7338 9.39555 10.8755 11.1503C11.0168 12.8995 11.2651 14.6116 11.5215 16.356Z" fill="url(#paint44_radial_4002_4179)" />
</g>
<path d="M11.5215 16.356C11.9116 18.1718 13.5839 19.4121 15.433 19.2628L17.2065 19.1195C19.0557 18.9701 20.5072 17.4775 20.6008 15.6226C20.5687 13.8428 20.5378 12.0701 20.4771 10.2935C20.4089 9.57328 19.7924 9.0242 19.072 9.05195L17.7557 9.15827C16.8582 9.23076 16.0027 8.76696 15.5669 7.96983C15.4531 7.7405 15.2111 7.60271 14.9568 7.62325L13.7602 7.71991C12.025 7.86006 10.7338 9.39555 10.8755 11.1503C11.0168 12.8995 11.2651 14.6116 11.5215 16.356Z" fill="url(#paint45_radial_4002_4179)" />
<path d="M11.5215 16.356C11.9116 18.1718 13.5839 19.4121 15.433 19.2628L17.2065 19.1195C19.0557 18.9701 20.5072 17.4775 20.6008 15.6226C20.5687 13.8428 20.5378 12.0701 20.4771 10.2935C20.4089 9.57328 19.7924 9.0242 19.072 9.05195L17.7557 9.15827C16.8582 9.23076 16.0027 8.76696 15.5669 7.96983C15.4531 7.7405 15.2111 7.60271 14.9568 7.62325L13.7602 7.71991C12.025 7.86006 10.7338 9.39555 10.8755 11.1503C11.0168 12.8995 11.2651 14.6116 11.5215 16.356Z" fill="url(#paint46_radial_4002_4179)" />
<path d="M11.5215 16.356C11.9116 18.1718 13.5839 19.4121 15.433 19.2628L17.2065 19.1195C19.0557 18.9701 20.5072 17.4775 20.6008 15.6226C20.5687 13.8428 20.5378 12.0701 20.4771 10.2935C20.4089 9.57328 19.7924 9.0242 19.072 9.05195L17.7557 9.15827C16.8582 9.23076 16.0027 8.76696 15.5669 7.96983C15.4531 7.7405 15.2111 7.60271 14.9568 7.62325L13.7602 7.71991C12.025 7.86006 10.7338 9.39555 10.8755 11.1503C11.0168 12.8995 11.2651 14.6116 11.5215 16.356Z" fill="url(#paint47_radial_4002_4179)" />
<path d="M11.5215 16.356C11.9116 18.1718 13.5839 19.4121 15.433 19.2628L17.2065 19.1195C19.0557 18.9701 20.5072 17.4775 20.6008 15.6226C20.5687 13.8428 20.5378 12.0701 20.4771 10.2935C20.4089 9.57328 19.7924 9.0242 19.072 9.05195L17.7557 9.15827C16.8582 9.23076 16.0027 8.76696 15.5669 7.96983C15.4531 7.7405 15.2111 7.60271 14.9568 7.62325L13.7602 7.71991C12.025 7.86006 10.7338 9.39555 10.8755 11.1503C11.0168 12.8995 11.2651 14.6116 11.5215 16.356Z" fill="url(#paint48_radial_4002_4179)" />
<g filter="url(#filter6_f_4002_4179)">
<path d="M15.351 12.9394L14.8936 14.7158C14.8204 15.0796 15.0938 15.4153 15.4405 15.3873L16.1798 15.3276C16.5264 15.2996 16.742 14.9188 16.6118 14.5771L15.9725 12.8892C15.8346 12.515 15.4322 12.5475 15.351 12.9394Z" fill="#EE9020" />
</g>
<g filter="url(#filter7_f_4002_4179)">
<path d="M15.4337 12.7473L15.0736 14.5159C15.0004 14.8796 15.2738 15.2153 15.6205 15.1873L16.3597 15.1276C16.7064 15.0996 16.922 14.7189 16.7918 14.3771L16.1525 12.6893C16.0145 12.3151 15.5149 12.3554 15.4337 12.7473Z" fill="url(#paint49_linear_4002_4179)" />
<path d="M15.4337 12.7473L15.0736 14.5159C15.0004 14.8796 15.2738 15.2153 15.6205 15.1873L16.3597 15.1276C16.7064 15.0996 16.922 14.7189 16.7918 14.3771L16.1525 12.6893C16.0145 12.3151 15.5149 12.3554 15.4337 12.7473Z" fill="url(#paint50_linear_4002_4179)" />
<path d="M15.4337 12.7473L15.0736 14.5159C15.0004 14.8796 15.2738 15.2153 15.6205 15.1873L16.3597 15.1276C16.7064 15.0996 16.922 14.7189 16.7918 14.3771L16.1525 12.6893C16.0145 12.3151 15.5149 12.3554 15.4337 12.7473Z" fill="url(#paint51_linear_4002_4179)" />
<path d="M15.4337 12.7473L15.0736 14.5159C15.0004 14.8796 15.2738 15.2153 15.6205 15.1873L16.3597 15.1276C16.7064 15.0996 16.922 14.7189 16.7918 14.3771L16.1525 12.6893C16.0145 12.3151 15.5149 12.3554 15.4337 12.7473Z" fill="url(#paint52_linear_4002_4179)" />
</g>
<g filter="url(#filter8_ii_4002_4179)">
<path d="M19.9069 6.77676C20.404 6.90409 20.8651 7.20689 21.1784 7.6688C21.6795 8.40482 21.6892 9.3328 21.2705 10.0518C21.1255 10.3071 21.059 10.6017 21.0826 10.8942L21.1728 12.0111C20.9871 11.9028 20.7478 11.8307 20.5252 11.8096L20.477 10.2935C20.4088 9.57324 19.7924 9.02417 19.0719 9.05191L17.7556 9.15823C16.8581 9.23072 16.0027 8.76693 15.5669 7.9698C15.453 7.74046 15.211 7.60268 14.9567 7.62322L13.7601 7.71987C12.025 7.86003 10.7338 9.39552 10.8755 11.1502L11.021 12.5931C10.7851 12.6475 10.5421 12.7475 10.3641 12.8957L10.2729 11.7673C10.2493 11.4749 10.1363 11.1947 9.95225 10.966C9.45015 10.3417 9.2987 9.46068 9.63191 8.67756C9.86419 8.13606 10.2786 7.73717 10.768 7.52002C11.291 7.28492 11.7204 6.88482 11.985 6.37115C12.3238 5.71954 12.9735 5.2509 13.7563 5.18767C14.0605 5.1631 14.3549 5.20529 14.6331 5.29448C15.0048 5.42179 15.4086 5.38917 15.755 5.20386C16.0103 5.07159 16.2942 4.98268 16.5983 4.95811C17.3911 4.89408 18.1188 5.26669 18.554 5.87101C18.8819 6.32666 19.3637 6.63793 19.9069 6.77676Z" fill="url(#paint53_linear_4002_4179)" />
<path d="M19.9069 6.77676C20.404 6.90409 20.8651 7.20689 21.1784 7.6688C21.6795 8.40482 21.6892 9.3328 21.2705 10.0518C21.1255 10.3071 21.059 10.6017 21.0826 10.8942L21.1728 12.0111C20.9871 11.9028 20.7478 11.8307 20.5252 11.8096L20.477 10.2935C20.4088 9.57324 19.7924 9.02417 19.0719 9.05191L17.7556 9.15823C16.8581 9.23072 16.0027 8.76693 15.5669 7.9698C15.453 7.74046 15.211 7.60268 14.9567 7.62322L13.7601 7.71987C12.025 7.86003 10.7338 9.39552 10.8755 11.1502L11.021 12.5931C10.7851 12.6475 10.5421 12.7475 10.3641 12.8957L10.2729 11.7673C10.2493 11.4749 10.1363 11.1947 9.95225 10.966C9.45015 10.3417 9.2987 9.46068 9.63191 8.67756C9.86419 8.13606 10.2786 7.73717 10.768 7.52002C11.291 7.28492 11.7204 6.88482 11.985 6.37115C12.3238 5.71954 12.9735 5.2509 13.7563 5.18767C14.0605 5.1631 14.3549 5.20529 14.6331 5.29448C15.0048 5.42179 15.4086 5.38917 15.755 5.20386C16.0103 5.07159 16.2942 4.98268 16.5983 4.95811C17.3911 4.89408 18.1188 5.26669 18.554 5.87101C18.8819 6.32666 19.3637 6.63793 19.9069 6.77676Z" fill="url(#paint54_radial_4002_4179)" />
<path d="M19.9069 6.77676C20.404 6.90409 20.8651 7.20689 21.1784 7.6688C21.6795 8.40482 21.6892 9.3328 21.2705 10.0518C21.1255 10.3071 21.059 10.6017 21.0826 10.8942L21.1728 12.0111C20.9871 11.9028 20.7478 11.8307 20.5252 11.8096L20.477 10.2935C20.4088 9.57324 19.7924 9.02417 19.0719 9.05191L17.7556 9.15823C16.8581 9.23072 16.0027 8.76693 15.5669 7.9698C15.453 7.74046 15.211 7.60268 14.9567 7.62322L13.7601 7.71987C12.025 7.86003 10.7338 9.39552 10.8755 11.1502L11.021 12.5931C10.7851 12.6475 10.5421 12.7475 10.3641 12.8957L10.2729 11.7673C10.2493 11.4749 10.1363 11.1947 9.95225 10.966C9.45015 10.3417 9.2987 9.46068 9.63191 8.67756C9.86419 8.13606 10.2786 7.73717 10.768 7.52002C11.291 7.28492 11.7204 6.88482 11.985 6.37115C12.3238 5.71954 12.9735 5.2509 13.7563 5.18767C14.0605 5.1631 14.3549 5.20529 14.6331 5.29448C15.0048 5.42179 15.4086 5.38917 15.755 5.20386C16.0103 5.07159 16.2942 4.98268 16.5983 4.95811C17.3911 4.89408 18.1188 5.26669 18.554 5.87101C18.8819 6.32666 19.3637 6.63793 19.9069 6.77676Z" fill="url(#paint55_radial_4002_4179)" />
<path d="M19.9069 6.77676C20.404 6.90409 20.8651 7.20689 21.1784 7.6688C21.6795 8.40482 21.6892 9.3328 21.2705 10.0518C21.1255 10.3071 21.059 10.6017 21.0826 10.8942L21.1728 12.0111C20.9871 11.9028 20.7478 11.8307 20.5252 11.8096L20.477 10.2935C20.4088 9.57324 19.7924 9.02417 19.0719 9.05191L17.7556 9.15823C16.8581 9.23072 16.0027 8.76693 15.5669 7.9698C15.453 7.74046 15.211 7.60268 14.9567 7.62322L13.7601 7.71987C12.025 7.86003 10.7338 9.39552 10.8755 11.1502L11.021 12.5931C10.7851 12.6475 10.5421 12.7475 10.3641 12.8957L10.2729 11.7673C10.2493 11.4749 10.1363 11.1947 9.95225 10.966C9.45015 10.3417 9.2987 9.46068 9.63191 8.67756C9.86419 8.13606 10.2786 7.73717 10.768 7.52002C11.291 7.28492 11.7204 6.88482 11.985 6.37115C12.3238 5.71954 12.9735 5.2509 13.7563 5.18767C14.0605 5.1631 14.3549 5.20529 14.6331 5.29448C15.0048 5.42179 15.4086 5.38917 15.755 5.20386C16.0103 5.07159 16.2942 4.98268 16.5983 4.95811C17.3911 4.89408 18.1188 5.26669 18.554 5.87101C18.8819 6.32666 19.3637 6.63793 19.9069 6.77676Z" fill="url(#paint56_radial_4002_4179)" />
<path d="M19.9069 6.77676C20.404 6.90409 20.8651 7.20689 21.1784 7.6688C21.6795 8.40482 21.6892 9.3328 21.2705 10.0518C21.1255 10.3071 21.059 10.6017 21.0826 10.8942L21.1728 12.0111C20.9871 11.9028 20.7478 11.8307 20.5252 11.8096L20.477 10.2935C20.4088 9.57324 19.7924 9.02417 19.0719 9.05191L17.7556 9.15823C16.8581 9.23072 16.0027 8.76693 15.5669 7.9698C15.453 7.74046 15.211 7.60268 14.9567 7.62322L13.7601 7.71987C12.025 7.86003 10.7338 9.39552 10.8755 11.1502L11.021 12.5931C10.7851 12.6475 10.5421 12.7475 10.3641 12.8957L10.2729 11.7673C10.2493 11.4749 10.1363 11.1947 9.95225 10.966C9.45015 10.3417 9.2987 9.46068 9.63191 8.67756C9.86419 8.13606 10.2786 7.73717 10.768 7.52002C11.291 7.28492 11.7204 6.88482 11.985 6.37115C12.3238 5.71954 12.9735 5.2509 13.7563 5.18767C14.0605 5.1631 14.3549 5.20529 14.6331 5.29448C15.0048 5.42179 15.4086 5.38917 15.755 5.20386C16.0103 5.07159 16.2942 4.98268 16.5983 4.95811C17.3911 4.89408 18.1188 5.26669 18.554 5.87101C18.8819 6.32666 19.3637 6.63793 19.9069 6.77676Z" fill="url(#paint57_radial_4002_4179)" />
</g>
<g filter="url(#filter9_i_4002_4179)">
<path d="M19.1304 10.3056C18.9541 10.1755 18.7503 10.039 18.4528 9.97108C18.1595 9.90414 17.7993 9.90889 17.3086 10.0096C17.1671 10.0386 17.0759 10.1768 17.105 10.3183C17.134 10.4598 17.2722 10.551 17.4137 10.522C17.8616 10.4301 18.141 10.4365 18.3364 10.4811C18.5275 10.5247 18.6613 10.6096 18.8196 10.7265C18.9359 10.8123 19.0996 10.7876 19.1854 10.6714C19.2712 10.5552 19.2466 10.3914 19.1304 10.3056Z" fill="#C05029" />
</g>
<g filter="url(#filter10_i_4002_4179)">
<path d="M12.4063 10.7457C12.4869 10.6881 12.6036 10.6134 12.7526 10.5404C13.0507 10.3945 13.4821 10.2539 14.0137 10.2758C14.158 10.2817 14.2702 10.4035 14.2643 10.5479C14.2584 10.6922 14.1365 10.8044 13.9922 10.7985C13.5665 10.7809 13.2216 10.8933 12.9826 11.0103C12.8631 11.0688 12.7711 11.128 12.7102 11.1715C12.6798 11.1932 12.6573 11.2108 12.6432 11.2223C12.6362 11.2281 12.6313 11.2323 12.6285 11.2346L12.6261 11.2368C12.5196 11.3336 12.3547 11.3261 12.2574 11.2199C12.1598 11.1133 12.167 10.9479 12.2735 10.8503L12.4063 10.7457Z" fill="#C05029" />
</g>
<g filter="url(#filter11_f_4002_4179)">
<path d="M15.6249 8.01383C15.5996 7.97358 15.5754 7.93237 15.5523 7.89024C15.4384 7.6609 15.1965 7.52312 14.9422 7.54366L13.7455 7.64031C12.0104 7.78046 10.7192 9.31596 10.8609 11.0707L10.8818 11.3293C10.5425 11.1119 10.0991 10.6313 10.032 9.80095C9.95063 8.79333 10.6444 8.22465 11.0869 7.8619C11.2119 7.7595 11.3168 7.6735 11.3786 7.59868C11.4048 7.56689 11.4333 7.53131 11.4643 7.49262C11.7647 7.11756 12.3001 6.44931 13.3005 6.09534C13.7713 5.92877 14.2557 5.8546 14.6592 5.82851C15.1311 5.79801 15.4965 6.17823 15.5346 6.64954L15.6437 7.99959L15.6249 8.01383Z" fill="url(#paint58_radial_4002_4179)" />
<path d="M15.6249 8.01383C15.5996 7.97358 15.5754 7.93237 15.5523 7.89024C15.4384 7.6609 15.1965 7.52312 14.9422 7.54366L13.7455 7.64031C12.0104 7.78046 10.7192 9.31596 10.8609 11.0707L10.8818 11.3293C10.5425 11.1119 10.0991 10.6313 10.032 9.80095C9.95063 8.79333 10.6444 8.22465 11.0869 7.8619C11.2119 7.7595 11.3168 7.6735 11.3786 7.59868C11.4048 7.56689 11.4333 7.53131 11.4643 7.49262C11.7647 7.11756 12.3001 6.44931 13.3005 6.09534C13.7713 5.92877 14.2557 5.8546 14.6592 5.82851C15.1311 5.79801 15.4965 6.17823 15.5346 6.64954L15.6437 7.99959L15.6249 8.01383Z" fill="url(#paint59_radial_4002_4179)" />
</g>
<g filter="url(#filter12_f_4002_4179)">
<path d="M20.5545 10.7699L20.4794 10.1787C20.4115 9.46179 19.7767 8.91697 19.0636 8.94425L17.7608 9.04948C16.9338 9.11628 16.1426 8.72037 15.689 8.02492C15.689 8.02492 15.6436 7.93873 15.585 7.78532C15.2264 6.84679 16.0983 6.03858 17.0885 6.20882C17.9504 6.35701 18.9137 6.62209 19.6742 7.03965C21.3838 7.97823 21.3355 9.79307 20.5545 10.7699Z" fill="url(#paint60_radial_4002_4179)" />
<path d="M20.5545 10.7699L20.4794 10.1787C20.4115 9.46179 19.7767 8.91697 19.0636 8.94425L17.7608 9.04948C16.9338 9.11628 16.1426 8.72037 15.689 8.02492C15.689 8.02492 15.6436 7.93873 15.585 7.78532C15.2264 6.84679 16.0983 6.03858 17.0885 6.20882C17.9504 6.35701 18.9137 6.62209 19.6742 7.03965C21.3838 7.97823 21.3355 9.79307 20.5545 10.7699Z" fill="url(#paint61_radial_4002_4179)" />
<path d="M20.5545 10.7699L20.4794 10.1787C20.4115 9.46179 19.7767 8.91697 19.0636 8.94425L17.7608 9.04948C16.9338 9.11628 16.1426 8.72037 15.689 8.02492C15.689 8.02492 15.6436 7.93873 15.585 7.78532C15.2264 6.84679 16.0983 6.03858 17.0885 6.20882C17.9504 6.35701 18.9137 6.62209 19.6742 7.03965C21.3838 7.97823 21.3355 9.79307 20.5545 10.7699Z" fill="url(#paint62_radial_4002_4179)" />
<path d="M20.5545 10.7699L20.4794 10.1787C20.4115 9.46179 19.7767 8.91697 19.0636 8.94425L17.7608 9.04948C16.9338 9.11628 16.1426 8.72037 15.689 8.02492C15.689 8.02492 15.6436 7.93873 15.585 7.78532C15.2264 6.84679 16.0983 6.03858 17.0885 6.20882C17.9504 6.35701 18.9137 6.62209 19.6742 7.03965C21.3838 7.97823 21.3355 9.79307 20.5545 10.7699Z" fill="url(#paint63_radial_4002_4179)" />
<path d="M20.5545 10.7699L20.4794 10.1787C20.4115 9.46179 19.7767 8.91697 19.0636 8.94425L17.7608 9.04948C16.9338 9.11628 16.1426 8.72037 15.689 8.02492C15.689 8.02492 15.6436 7.93873 15.585 7.78532C15.2264 6.84679 16.0983 6.03858 17.0885 6.20882C17.9504 6.35701 18.9137 6.62209 19.6742 7.03965C21.3838 7.97823 21.3355 9.79307 20.5545 10.7699Z" fill="url(#paint64_radial_4002_4179)" />
</g>
<path d="M17.9688 11.6434C18.5827 11.5938 19.1356 11.9752 19.3229 12.5358C19.3781 12.6964 19.2649 12.8629 19.0971 12.8765L16.9996 13.0459C16.8661 13.0567 16.7495 12.9433 16.7654 12.8076C16.835 12.1955 17.3281 11.6951 17.9688 11.6434Z" fill="white" />
<path d="M17.7947 11.9146C18.26 11.877 18.6642 12.2244 18.7015 12.6858C18.7076 12.7621 18.7023 12.8393 18.6888 12.9095L17.068 13.0404C17.0431 12.9695 17.0258 12.8979 17.0197 12.8216C16.9824 12.3602 17.3294 11.9522 17.7947 11.9146Z" fill="url(#paint65_radial_4002_4179)" />
<path d="M17.382 12.7925C17.3605 12.5256 17.5568 12.2948 17.8237 12.2732C18.0907 12.2516 18.3215 12.4479 18.343 12.7149C18.3495 12.795 18.3366 12.8728 18.3075 12.9404L17.4571 13.0091C17.4137 12.9473 17.3885 12.8726 17.382 12.7925Z" fill="black" />
<g filter="url(#filter13_f_4002_4179)">
<path d="M17.7459 12.0978C17.812 12.1727 17.6952 12.28 17.562 12.3974C17.4289 12.5148 17.3298 12.5978 17.2637 12.5229C17.1977 12.4479 17.252 12.292 17.3852 12.1746C17.5183 12.0573 17.6798 12.0228 17.7459 12.0978Z" fill="#C7A7A3" />
<path d="M17.7459 12.0978C17.812 12.1727 17.6952 12.28 17.562 12.3974C17.4289 12.5148 17.3298 12.5978 17.2637 12.5229C17.1977 12.4479 17.252 12.292 17.3852 12.1746C17.5183 12.0573 17.6798 12.0228 17.7459 12.0978Z" fill="url(#paint66_radial_4002_4179)" />
</g>
<g filter="url(#filter14_f_4002_4179)">
<path d="M18.6009 12.5827C18.5524 12.3683 18.4123 12.2151 18.3483 12.1653L18.1257 12.4532L18.2532 12.6588L18.6009 12.5827Z" fill="url(#paint67_linear_4002_4179)" />
</g>
<path d="M13.4733 12.0066C12.8593 12.0562 12.3748 12.5214 12.2799 13.1048C12.2512 13.2722 12.3897 13.4184 12.5575 13.4049L14.655 13.2354C14.7885 13.2247 14.8854 13.094 14.848 12.9627C14.6811 12.3696 14.1102 11.9551 13.4733 12.0066Z" fill="white" />
<path d="M13.6883 12.2462C13.2231 12.2838 12.8798 12.6915 12.9171 13.153C12.9232 13.2293 12.9408 13.3046 12.9655 13.3717L14.5863 13.2408C14.5995 13.1668 14.6051 13.0934 14.5989 13.0171C14.5579 12.556 14.1536 12.2086 13.6883 12.2462Z" fill="url(#paint68_radial_4002_4179)" />
<path d="M14.2366 13.0465C14.2151 12.7795 13.9843 12.5832 13.7173 12.6047C13.4503 12.6263 13.254 12.8571 13.2756 13.1241C13.282 13.2042 13.3073 13.2789 13.3468 13.341L14.1973 13.2723C14.2264 13.2047 14.2431 13.1265 14.2366 13.0465Z" fill="black" />
<g filter="url(#filter15_f_4002_4179)">
<path d="M14.5132 12.9237C14.4914 12.6533 14.2569 12.4907 14.1931 12.441L13.9437 12.7244L14.1375 13.0498L14.5132 12.9237Z" fill="url(#paint69_linear_4002_4179)" />
</g>
<g filter="url(#filter16_f_4002_4179)">
<ellipse cx="13.4631" cy="12.6253" rx="0.366552" ry="0.185509" transform="rotate(-32.5319 13.4631 12.6253)" fill="#C7A7A3" fill-opacity="0.9" />
<ellipse cx="13.4631" cy="12.6253" rx="0.366552" ry="0.185509" transform="rotate(-32.5319 13.4631 12.6253)" fill="url(#paint70_radial_4002_4179)" />
</g>
<path d="M20.5761 14.2769C20.5572 13.2715 20.5361 12.2675 20.5073 11.2628C21.2277 11.3297 21.8176 11.9059 21.8778 12.6518C21.9429 13.4574 21.3664 14.1668 20.5761 14.2769Z" fill="url(#paint71_linear_4002_4179)" />
<path d="M20.5761 14.2769C20.5572 13.2715 20.5361 12.2675 20.5073 11.2628C21.2277 11.3297 21.8176 11.9059 21.8778 12.6518C21.9429 13.4574 21.3664 14.1668 20.5761 14.2769Z" fill="url(#paint72_radial_4002_4179)" />
<path d="M20.5761 14.2769C20.5572 13.2715 20.5361 12.2675 20.5073 11.2628C21.2277 11.3297 21.8176 11.9059 21.8778 12.6518C21.9429 13.4574 21.3664 14.1668 20.5761 14.2769Z" fill="url(#paint73_radial_4002_4179)" />
<path d="M10.9551 12.0266C10.2289 12.1895 9.71486 12.8663 9.7765 13.6294C9.84173 14.437 10.5279 15.0456 11.3282 15.0243C11.1864 14.0247 11.0557 13.0299 10.9551 12.0266Z" fill="url(#paint74_linear_4002_4179)" />
<path d="M10.9551 12.0266C10.2289 12.1895 9.71486 12.8663 9.7765 13.6294C9.84173 14.437 10.5279 15.0456 11.3282 15.0243C11.1864 14.0247 11.0557 13.0299 10.9551 12.0266Z" fill="url(#paint75_radial_4002_4179)" />
<g filter="url(#filter17_f_4002_4179)">
<path d="M11.0211 12.6468C10.6272 12.7691 10.3565 13.1515 10.391 13.5798C10.4279 14.0355 10.7977 14.3845 11.2422 14.4072C11.162 13.8206 11.087 13.2346 11.0211 12.6468Z" fill="#DD8224" />
</g>
<g filter="url(#filter18_f_4002_4179)">
<path d="M20.5643 13.6621C20.5523 13.0627 20.5392 12.4636 20.5237 11.8644C20.9712 11.8839 21.3445 12.2341 21.3815 12.6921C21.4214 13.1854 21.0561 13.6179 20.5643 13.6621Z" fill="#FFC837" />
</g>
<g filter="url(#filter19_f_4002_4179)">
<path d="M12.463 11.0057C12.6906 10.8129 13.2681 10.4594 13.99 10.5216" stroke="#C96953" stroke-width="0.25" stroke-linecap="round" />
</g>
<g filter="url(#filter20_f_4002_4179)">
<path d="M18.9782 10.4359C18.7226 10.2821 18.0957 10.0258 17.3932 10.2031" stroke="#C96953" stroke-width="0.25" stroke-linecap="round" />
</g>
<g filter="url(#filter21_f_4002_4179)">
<path d="M3.15607 14.6064C3.44946 15.0583 4.27775 15.8643 5.58747 15.8643" stroke="url(#paint76_linear_4002_4179)" stroke-width="0.6" stroke-linecap="round" />
</g>
<g filter="url(#filter22_f_4002_4179)">
<ellipse cx="16.031" cy="16.3864" rx="0.74003" ry="0.731624" stroke="url(#paint77_linear_4002_4179)" stroke-width="0.2" />
</g>
<ellipse cx="16.031" cy="16.3864" rx="0.74003" ry="0.731624" fill="#88004D" />
<g filter="url(#filter23_f_4002_4179)">
<path d="M9.56232 25.6924C9.7394 24.5465 10.5186 21.8111 12.2186 20.0361" stroke="url(#paint78_linear_4002_4179)" stroke-width="0.4" stroke-linecap="round" />
</g>
<defs>
<filter id="filter0_f_4002_4179" x="3.20624" y="11.4658" width="3.65204" height="3.13892" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_4002_4179" />
</filter>
<filter id="filter1_f_4002_4179" x="2.12762" y="11.7458" width="3.72723" height="3.32324" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_4002_4179" />
</filter>
<filter id="filter2_f_4002_4179" x="2.05774" y="12.7551" width="3.86713" height="3.13452" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_4002_4179" />
</filter>
<filter id="filter3_i_4002_4179" x="23.7389" y="11.5312" width="3.40781" height="5.15625" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha" />
<feOffset dx="0.15" />
<feGaussianBlur stdDeviation="0.2" />
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1" />
<feColorMatrix type="matrix" values="0 0 0 0 0.843137 0 0 0 0 0.611765 0 0 0 0 0.25098 0 0 0 1 0" />
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_4002_4179" />
</filter>
<filter id="filter4_i_4002_4179" x="4.48407" y="16.6604" width="23.1068" height="13.4226" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha" />
<feOffset dy="-0.25" />
<feGaussianBlur stdDeviation="0.25" />
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1" />
<feColorMatrix type="matrix" values="0 0 0 0 0.894118 0 0 0 0 0.294118 0 0 0 0 0.388235 0 0 0 1 0" />
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_4002_4179" />
</filter>
<filter id="filter5_ii_4002_4179" x="10.8649" y="7.62134" width="10.4859" height="11.8536" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha" />
<feOffset dx="0.75" />
<feGaussianBlur stdDeviation="0.6" />
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1" />
<feColorMatrix type="matrix" values="0 0 0 0 0.823529 0 0 0 0 0.623529 0 0 0 0 0.313726 0 0 0 1 0" />
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_4002_4179" />
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha" />
<feOffset dy="0.2" />
<feGaussianBlur stdDeviation="0.375" />
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1" />
<feColorMatrix type="matrix" values="0 0 0 0 0.980392 0 0 0 0 0.54902 0 0 0 0 0.0941176 0 0 0 1 0" />
<feBlend mode="normal" in2="effect1_innerShadow_4002_4179" result="effect2_innerShadow_4002_4179" />
</filter>
<filter id="filter6_f_4002_4179" x="13.8817" y="11.6262" width="3.76843" height="4.7627" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.5" result="effect1_foregroundBlur_4002_4179" />
</filter>
<filter id="filter7_f_4002_4179" x="14.9617" y="12.3299" width="1.96843" height="2.95903" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.05" result="effect1_foregroundBlur_4002_4179" />
</filter>
<filter id="filter8_ii_4002_4179" x="9.45422" y="4.45093" width="12.1162" height="8.44482" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha" />
<feOffset dy="-0.5" />
<feGaussianBlur stdDeviation="0.625" />
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1" />
<feColorMatrix type="matrix" values="0 0 0 0 0.945098 0 0 0 0 0.509804 0 0 0 0 0.0627451 0 0 0 1 0" />
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_4002_4179" />
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha" />
<feOffset dy="-0.2" />
<feGaussianBlur stdDeviation="0.2" />
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1" />
<feColorMatrix type="matrix" values="0 0 0 0 0.862745 0 0 0 0 0.486275 0 0 0 0 0.0470588 0 0 0 1 0" />
<feBlend mode="normal" in2="effect1_innerShadow_4002_4179" result="effect2_innerShadow_4002_4179" />
</filter>
<filter id="filter9_i_4002_4179" x="17.0995" y="9.72651" width="2.23702" height="1.05107" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha" />
<feOffset dx="0.1" dy="-0.2" />
<feGaussianBlur stdDeviation="0.125" />
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1" />
<feColorMatrix type="matrix" values="0 0 0 0 0.603922 0 0 0 0 0.243137 0 0 0 0 0.152941 0 0 0 1 0" />
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_4002_4179" />
</filter>
<filter id="filter10_i_4002_4179" x="12.1887" y="10.0734" width="2.17587" height="1.23125" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha" />
<feOffset dx="0.1" dy="-0.2" />
<feGaussianBlur stdDeviation="0.125" />
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1" />
<feColorMatrix type="matrix" values="0 0 0 0 0.603922 0 0 0 0 0.243137 0 0 0 0 0.152941 0 0 0 1 0" />
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_4002_4179" />
</filter>
<filter id="filter11_f_4002_4179" x="9.82545" y="5.6269" width="6.01823" height="5.90244" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.1" result="effect1_foregroundBlur_4002_4179" />
</filter>
<filter id="filter12_f_4002_4179" x="15.0028" y="5.68604" width="6.5722" height="5.58374" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_4002_4179" />
</filter>
<filter id="filter13_f_4002_4179" x="17.1356" y="11.9581" width="0.729358" height="0.693408" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.05" result="effect1_foregroundBlur_4002_4179" />
</filter>
<filter id="filter14_f_4002_4179" x="17.9257" y="11.9653" width="0.875281" height="0.893408" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.1" result="effect1_foregroundBlur_4002_4179" />
</filter>
<filter id="filter15_f_4002_4179" x="13.7437" y="12.2412" width="0.969519" height="1.00864" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.1" result="effect1_foregroundBlur_4002_4179" />
</filter>
<filter id="filter16_f_4002_4179" x="13.0383" y="12.2735" width="0.849658" height="0.703418" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.05" result="effect1_foregroundBlur_4002_4179" />
</filter>
<filter id="filter17_f_4002_4179" x="10.1381" y="12.3967" width="1.35413" height="2.2605" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.125" result="effect1_foregroundBlur_4002_4179" />
</filter>
<filter id="filter18_f_4002_4179" x="20.2737" y="11.6145" width="1.36078" height="2.29761" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.125" result="effect1_foregroundBlur_4002_4179" />
</filter>
<filter id="filter19_f_4002_4179" x="12.088" y="10.1394" width="2.2771" height="1.24146" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.125" result="effect1_foregroundBlur_4002_4179" />
</filter>
<filter id="filter20_f_4002_4179" x="17.0182" y="9.76807" width="2.33502" height="1.04297" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.125" result="effect1_foregroundBlur_4002_4179" />
</filter>
<filter id="filter21_f_4002_4179" x="2.35602" y="13.8064" width="4.03143" height="2.85791" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.25" result="effect1_foregroundBlur_4002_4179" />
</filter>
<filter id="filter22_f_4002_4179" x="15.091" y="15.4547" width="1.88005" height="1.86333" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.05" result="effect1_foregroundBlur_4002_4179" />
</filter>
<filter id="filter23_f_4002_4179" x="8.5623" y="19.0362" width="4.65627" height="7.65615" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
<feGaussianBlur stdDeviation="0.4" result="effect1_foregroundBlur_4002_4179" />
</filter>
<linearGradient id="paint0_linear_4002_4179" x1="3.02013" y1="11.3672" x2="5.01943" y2="13.7042" gradientUnits="userSpaceOnUse">
<stop stop-color="#EA9C30" />
<stop offset="1" stop-color="#E0A32A" />
</linearGradient>
<radialGradient id="paint1_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(5.04665 12.3499) rotate(160.563) scale(1.8701 4.54015)">
<stop offset="0.52464" stop-color="#CD9143" stop-opacity="0" />
<stop offset="0.901758" stop-color="#CD9143" />
</radialGradient>
<linearGradient id="paint2_linear_4002_4179" x1="4.2027" y1="12.1164" x2="6.61286" y2="14.3303" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFBA34" />
<stop offset="1" stop-color="#FFBA34" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint3_linear_4002_4179" x1="2.1474" y1="12.2154" x2="5.13556" y2="13.3814" gradientUnits="userSpaceOnUse">
<stop stop-color="#EA9C30" />
<stop offset="0.987535" stop-color="#E0A32A" />
</linearGradient>
<radialGradient id="paint4_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(3.65779 12.725) rotate(136.506) scale(1.61772 4.05037)">
<stop offset="0.52464" stop-color="#CD9143" stop-opacity="0" />
<stop offset="0.901758" stop-color="#CD9143" />
</radialGradient>
<linearGradient id="paint5_linear_4002_4179" x1="3.13916" y1="12.4898" x2="5.54932" y2="14.7036" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFBA34" />
<stop offset="1" stop-color="#FFBA34" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint6_linear_4002_4179" x1="1.95297" y1="12.7079" x2="6.68735" y2="14.8016" gradientUnits="userSpaceOnUse">
<stop stop-color="#EA9C30" />
<stop offset="0.709319" stop-color="#E0A32A" />
</linearGradient>
<radialGradient id="paint7_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(3.86343 13.6702) rotate(139.057) scale(1.68109 3.24272)">
<stop offset="0.603648" stop-color="#CD9143" stop-opacity="0" />
<stop offset="0.924703" stop-color="#CD9143" />
</radialGradient>
<linearGradient id="paint8_linear_4002_4179" x1="3.06362" y1="13.4811" x2="5.65481" y2="15.4801" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFBA34" />
<stop offset="1" stop-color="#FFBA34" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint9_linear_4002_4179" x1="3.17172" y1="15.286" x2="5.9686" y2="15.286" gradientUnits="userSpaceOnUse">
<stop stop-color="#EA9C30" />
<stop offset="1" stop-color="#E0A32A" />
</linearGradient>
<radialGradient id="paint10_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(4.88935 13.8216) rotate(37.355) scale(1.78792 1.12963)">
<stop stop-color="#E9A92E" />
<stop offset="1" stop-color="#E9A92E" stop-opacity="0" />
</radialGradient>
<linearGradient id="paint11_linear_4002_4179" x1="7.63925" y1="16.6875" x2="7.63925" y2="15.9324" gradientUnits="userSpaceOnUse">
<stop stop-color="#F0A330" />
<stop offset="1" stop-color="#F0A330" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint12_linear_4002_4179" x1="8.69884" y1="15.7642" x2="7.85789" y2="15.7642" gradientUnits="userSpaceOnUse">
<stop offset="0.00547168" stop-color="#D6933E" />
<stop offset="1" stop-color="#D6933E" stop-opacity="0" />
</linearGradient>
<radialGradient id="paint13_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(7.00013 11.5312) rotate(120.958) scale(1.01355 1.1912)">
<stop stop-color="#EAA82A" />
<stop offset="1" stop-color="#EAA82A" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint14_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(6.28107 16.3172) rotate(174.245) scale(2.02583 0.817883)">
<stop offset="0.20345" stop-color="#F4A82E" />
<stop offset="1" stop-color="#F4A82E" stop-opacity="0" />
</radialGradient>
<linearGradient id="paint15_linear_4002_4179" x1="23.1968" y1="15.6633" x2="25.6523" y2="15.6633" gradientUnits="userSpaceOnUse">
<stop stop-color="#F4A421" />
<stop offset="1" stop-color="#F4A421" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint16_linear_4002_4179" x1="28.2108" y1="12.5594" x2="26.0735" y2="14.2609" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFB620" />
<stop offset="1" stop-color="#FFD02E" />
</linearGradient>
<radialGradient id="paint17_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(28.8842 12.1054) rotate(137.523) scale(1.18214 1.08071)">
<stop stop-color="#FFDB42" />
<stop offset="1" stop-color="#FFDB42" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint18_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(26.1952 12.3172) rotate(38.1572) scale(2.50376 5.64399)">
<stop offset="0.674553" stop-color="#E6B03B" stop-opacity="0" />
<stop offset="0.926996" stop-color="#E6B03B" />
</radialGradient>
<radialGradient id="paint19_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(27.8592 13.536) rotate(-138.24) scale(1.17302 1.32995)">
<stop stop-color="#EEA324" />
<stop offset="1" stop-color="#EEA324" stop-opacity="0" />
</radialGradient>
<linearGradient id="paint20_linear_4002_4179" x1="29.1014" y1="13.1219" x2="26.5786" y2="14.8141" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFB620" />
<stop offset="1" stop-color="#FFD02E" />
</linearGradient>
<radialGradient id="paint21_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(29.9287 12.4554) rotate(131.73) scale(1.16966 1.06648)">
<stop stop-color="#FFDB42" />
<stop offset="1" stop-color="#FFDB42" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint22_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(28.158 13.4139) rotate(48.8311) scale(1.64887 6.81453)">
<stop offset="0.555533" stop-color="#E6B03B" stop-opacity="0" />
<stop offset="0.912113" stop-color="#E6B03B" />
</radialGradient>
<radialGradient id="paint23_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(28.958 14.0215) rotate(-134.288) scale(1.55128 1.67148)">
<stop stop-color="#EEA324" />
<stop offset="1" stop-color="#EEA324" stop-opacity="0" />
</radialGradient>
<linearGradient id="paint24_linear_4002_4179" x1="29.3804" y1="15.2041" x2="26.6107" y2="15.1598" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFB620" />
<stop offset="1" stop-color="#FFD02E" />
</linearGradient>
<radialGradient id="paint25_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(27.9061 14.286) rotate(40.2001) scale(1.45245 4.92664)">
<stop offset="0.715311" stop-color="#E6B03B" stop-opacity="0" />
<stop offset="1" stop-color="#E6B03B" />
</radialGradient>
<radialGradient id="paint26_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(29.9453 13.4293) rotate(138.972) scale(1.18852 1.0803)">
<stop stop-color="#FFDB42" />
<stop offset="1" stop-color="#FFDB42" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint27_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(28.8912 14.8274) rotate(-137.781) scale(1.45679 1.64014)">
<stop stop-color="#EEA324" />
<stop offset="1" stop-color="#EEA324" stop-opacity="0" />
</radialGradient>
<linearGradient id="paint28_linear_4002_4179" x1="29.0666" y1="15.9828" x2="26.2915" y2="15.9324" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFB620" />
<stop offset="1" stop-color="#FFD02E" />
</linearGradient>
<radialGradient id="paint29_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(27.3749 14.7704) rotate(68.4563) scale(1.99987 3.99753)">
<stop offset="0.700138" stop-color="#E08F52" stop-opacity="0" />
<stop offset="1" stop-color="#E08F52" />
</radialGradient>
<radialGradient id="paint30_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(29.6327 14.4188) rotate(142.576) scale(1.1313 1.00216)">
<stop stop-color="#FFDB42" />
<stop offset="1" stop-color="#FFDB42" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint31_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(26.4686 17.0205) rotate(180) scale(2.59375 2.7696)">
<stop stop-color="#FE7047" />
<stop offset="1" stop-color="#DC4724" />
</radialGradient>
<radialGradient id="paint32_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(7.20294 16.6064) rotate(90) scale(0.71875 1.32031)">
<stop stop-color="#D45533" />
<stop offset="1" stop-color="#CC4525" />
</radialGradient>
<radialGradient id="paint33_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(19.7811 29.3486) rotate(-90) scale(13.75 8.9375)">
<stop offset="0.154545" stop-color="#FF7E34" />
<stop offset="1" stop-color="#F05419" />
</radialGradient>
<radialGradient id="paint34_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(9.8436 19.9736) rotate(132.137) scale(4.75104 1.17962)">
<stop stop-color="#FF6F3A" />
<stop offset="1" stop-color="#FF6F3A" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint35_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(19.9998 20.3798) rotate(31.7014) scale(6.24414 1.7784)">
<stop stop-color="#FF7E32" />
<stop offset="1" stop-color="#FF7E32" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint36_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(24.3436 26.1923) rotate(-124.363) scale(4.42924 1.56352)">
<stop stop-color="#FB4B61" />
<stop offset="1" stop-color="#FF4412" stop-opacity="0" />
<stop offset="1" stop-color="#FB4B61" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint37_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(26.8748 16.9104) rotate(90) scale(7.46944 4.08022)">
<stop stop-color="#FF8A36" />
<stop offset="1" stop-color="#FF8A36" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint38_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(13.5936 18.4423) rotate(149.436) scale(4.60914 2.83955)">
<stop offset="0.221247" stop-color="#C94829" />
<stop offset="1" stop-color="#C94829" stop-opacity="0" />
</radialGradient>
<linearGradient id="paint39_linear_4002_4179" x1="15.0311" y1="19.6923" x2="16.9654" y2="21.3083" gradientUnits="userSpaceOnUse">
<stop stop-color="#DA7E19" />
<stop offset="1" stop-color="#FFC63B" />
</linearGradient>
<radialGradient id="paint40_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(21.1344 13.8539) rotate(99.0611) scale(3.07501 3.65288)">
<stop offset="0.0431525" stop-color="#FFC135" />
<stop offset="0.909006" stop-color="#E26839" />
</radialGradient>
<radialGradient id="paint41_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(20.4536 14.1627) rotate(49.2838) scale(0.469553 0.398893)">
<stop stop-color="#E18C2A" />
<stop offset="1" stop-color="#E18C2A" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint42_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(10.7121 14.8066) rotate(59.9744) scale(2.80019 1.27281)">
<stop stop-color="#D57A26" />
<stop offset="1" stop-color="#D06A3C" />
</radialGradient>
<radialGradient id="paint43_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(11.3339 14.7485) rotate(67.6724) scale(0.987394 0.866149)">
<stop offset="0.263377" stop-color="#BE691E" />
<stop offset="0.977292" stop-color="#BE691E" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint44_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.4869 13.1771) rotate(175.382) scale(4.93064 8.72226)">
<stop stop-color="#FFE846" />
<stop offset="1" stop-color="#F5A129" />
</radialGradient>
<radialGradient id="paint45_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(16.1462 19.3608) rotate(-94.6179) scale(3.19334 12.4224)">
<stop offset="0.0824176" stop-color="#E27426" />
<stop offset="1" stop-color="#FFA041" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint46_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(20.678 12.7809) rotate(89.1566) scale(5.76753 2.12039)">
<stop offset="0.389903" stop-color="#FFD930" />
<stop offset="1" stop-color="#FFD930" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint47_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(13.7916 12.4394) rotate(-94.6179) scale(1.33348 1.60544)">
<stop offset="0.276316" stop-color="#F59632" />
<stop offset="1" stop-color="#F59632" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint48_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.066 11.7047) rotate(-94.6179) scale(1.44796 1.87805)">
<stop offset="0.178218" stop-color="#FFBE3A" />
<stop offset="1" stop-color="#FFBE3A" stop-opacity="0" />
</radialGradient>
<linearGradient id="paint49_linear_4002_4179" x1="15.9103" y1="14.1692" x2="16.7139" y2="14.1043" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFC92F" />
<stop offset="1" stop-color="#FFEA47" />
</linearGradient>
<linearGradient id="paint50_linear_4002_4179" x1="14.89" y1="14.1044" x2="15.9043" y2="14.0786" gradientUnits="userSpaceOnUse">
<stop stop-color="#F49F22" />
<stop offset="1" stop-color="#E88830" stop-opacity="0" />
<stop offset="1" stop-color="#F49F22" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint51_linear_4002_4179" x1="15.9406" y1="14.5441" x2="16.0053" y2="15.3449" gradientUnits="userSpaceOnUse">
<stop stop-color="#E88830" stop-opacity="0" />
<stop offset="0.844655" stop-color="#E88830" />
</linearGradient>
<linearGradient id="paint52_linear_4002_4179" x1="15.7699" y1="12.4312" x2="15.8018" y2="12.8254" gradientUnits="userSpaceOnUse">
<stop stop-color="#FAC137" />
<stop offset="1" stop-color="#FAC137" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint53_linear_4002_4179" x1="20.4596" y1="7.65961" x2="10.9423" y2="8.42834" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFE235" />
<stop offset="1" stop-color="#D29935" />
</linearGradient>
<radialGradient id="paint54_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(10.811 12.3002) rotate(-94.6179) scale(5.39385 9.55683)">
<stop offset="0.314517" stop-color="#C98537" />
<stop offset="1" stop-color="#C98537" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint55_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(20.2968 11.534) rotate(-94.6179) scale(3.42613 6.07043)">
<stop stop-color="#FFB52A" />
<stop offset="1" stop-color="#FFB52A" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint56_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(19.1111 5.69088) rotate(-163.739) scale(3.28237 1.74808)">
<stop stop-color="#FFE639" />
<stop offset="1" stop-color="#FFE639" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint57_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(14.2788 4.57451) rotate(53.8473) scale(1.63218 3.77935)">
<stop offset="0.286771" stop-color="#F3C130" />
<stop offset="1" stop-color="#F3C130" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint58_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.463 5.76285) rotate(155.542) scale(3.81706 1.06238)">
<stop stop-color="#FFDD30" />
<stop offset="1" stop-color="#FFDC2B" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint59_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(10.4808 10.6687) rotate(-62.3423) scale(5.684 6.29729)">
<stop offset="0.0926981" stop-color="#D67227" />
<stop offset="0.233498" stop-color="#EF8A23" />
<stop offset="1" stop-color="#EF8A23" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint60_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.7234 6.56079) rotate(8.82252) scale(3.24953 1.83418)">
<stop stop-color="#FFDE38" />
<stop offset="1" stop-color="#FFDE38" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint61_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(20.4766 10.7762) rotate(-124.481) scale(4.02799 2.23482)">
<stop stop-color="#EB8F29" />
<stop offset="1" stop-color="#EB8F29" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint62_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(19.8768 10.5406) rotate(-125.055) scale(2.40908 1.71695)">
<stop offset="0.394122" stop-color="#E48421" />
<stop offset="1" stop-color="#E48421" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint63_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(19.8062 6.36282) rotate(161.757) scale(4.60891 5.02836)">
<stop offset="0.734853" stop-color="#F29415" stop-opacity="0" />
<stop offset="1" stop-color="#F29415" />
</radialGradient>
<radialGradient id="paint64_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.5233 6.45403) rotate(101.75) scale(0.498732 3.57223)">
<stop offset="0.575925" stop-color="#EFBB27" />
<stop offset="1" stop-color="#EFBB27" stop-opacity="0" />
</radialGradient>
<radialGradient id="paint65_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.829 12.3632) rotate(85.3821) scale(0.765195 1.21713)">
<stop offset="0.80198" stop-color="#925C51" />
<stop offset="1" stop-color="#694B43" />
<stop offset="1" stop-color="#804D49" />
<stop offset="1" stop-color="#85534D" />
</radialGradient>
<radialGradient id="paint66_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.6198 12.4595) rotate(-132.43) scale(0.355889 0.489973)">
<stop offset="0.765532" stop-color="#FFE6E2" stop-opacity="0" />
<stop offset="0.966159" stop-color="#FFE6E2" />
</radialGradient>
<linearGradient id="paint67_linear_4002_4179" x1="18.5645" y1="12.3548" x2="18.2843" y2="12.5603" gradientUnits="userSpaceOnUse">
<stop stop-color="#B4948D" />
<stop offset="1" stop-color="#B4948D" stop-opacity="0" />
</linearGradient>
<radialGradient id="paint68_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(13.7265 12.6945) rotate(85.3821) scale(0.765234 1.21719)">
<stop offset="0.80198" stop-color="#925C51" />
<stop offset="1" stop-color="#694B43" />
<stop offset="1" stop-color="#804D49" />
<stop offset="1" stop-color="#85534D" />
</radialGradient>
<linearGradient id="paint69_linear_4002_4179" x1="14.4286" y1="12.6883" x2="14.149" y2="12.8933" gradientUnits="userSpaceOnUse">
<stop stop-color="#B4948D" />
<stop offset="1" stop-color="#B4948D" stop-opacity="0" />
</linearGradient>
<radialGradient id="paint70_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(13.4489 12.9216) rotate(-90.897) scale(0.464885 0.558811)">
<stop offset="0.765532" stop-color="#FFE6E2" stop-opacity="0" />
<stop offset="0.966159" stop-color="#FFE6E2" />
</radialGradient>
<linearGradient id="paint71_linear_4002_4179" x1="21.8346" y1="12.1161" x2="20.8653" y2="14.2536" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFE343" />
<stop offset="1" stop-color="#FFC136" />
</linearGradient>
<radialGradient id="paint72_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(20.1198 12.1912) rotate(69.7296) scale(2.19722 2.09632)">
<stop offset="0.856273" stop-color="#E1943D" stop-opacity="0" />
<stop offset="1" stop-color="#E08F2E" />
</radialGradient>
<radialGradient id="paint73_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(20.5 12.6759) rotate(-58.5377) scale(1.26163 1.0575)">
<stop offset="0.663731" stop-color="#FFBD22" />
<stop offset="1" stop-color="#FFBD22" stop-opacity="0" />
</radialGradient>
<linearGradient id="paint74_linear_4002_4179" x1="10.3382" y1="13.7109" x2="11.6994" y2="13.4804" gradientUnits="userSpaceOnUse">
<stop stop-color="#E39726" />
<stop offset="1" stop-color="#D9851D" />
</linearGradient>
<radialGradient id="paint75_radial_4002_4179" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(10.8439 13.0991) rotate(96.6299) scale(1.99635 1.96259)">
<stop offset="0.77507" stop-color="#C77937" stop-opacity="0" />
<stop offset="1" stop-color="#C77937" />
</radialGradient>
<linearGradient id="paint76_linear_4002_4179" x1="3.35179" y1="14.5088" x2="6.15959" y2="16.1899" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFBA34" />
<stop offset="1" stop-color="#FFBA34" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint77_linear_4002_4179" x1="15.6639" y1="17.118" x2="15.9607" y2="16.0125" gradientUnits="userSpaceOnUse">
<stop stop-color="#FFB63A" />
<stop offset="1" stop-color="#FFB63A" stop-opacity="0" />
</linearGradient>
<linearGradient id="paint78_linear_4002_4179" x1="9.56232" y1="26.1611" x2="12.5623" y2="20.5049" gradientUnits="userSpaceOnUse">
<stop stop-color="#C13318" />
<stop offset="1" stop-color="#C13318" stop-opacity="0" />
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 77 KiB

View file

@ -0,0 +1,14 @@
<svg width="100%" height="100%" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 25.942C4 28.1739 5.76327 30 7.91837 30H24.0816C26.2367 30 28 28.0725 28 25.8406V6.4297C28 5.1297 26.4099 4.5297 25.5155 5.4297L20.9736 10H11.1617L6.5 5.4297C5.6 4.5297 4 5.1297 4 6.4297V25.942Z" fill="#FFB02E" />
<path d="M9.00005 10.9265L6.20005 13.5265C5.70005 14.0265 4.80005 13.6265 4.80005 12.9265V7.72648C4.80005 7.12648 5.70005 6.72648 6.20005 7.22648L9.00005 9.82648C9.30005 10.1265 9.30005 10.6265 9.00005 10.9265Z" fill="#FF822D" />
<path d="M23.05 10.9265L25.85 13.5265C26.35 14.0265 27.25 13.6265 27.25 12.9265V7.72648C27.25 7.12648 26.35 6.72648 25.85 7.22648L23.05 9.82648C22.75 10.1265 22.75 10.6265 23.05 10.9265Z" fill="#FF822D" />
<path d="M2.72372 20.0528C2.47673 19.9293 2.17639 20.0294 2.0529 20.2764C1.9294 20.5234 2.02951 20.8237 2.2765 20.9472L6.2765 22.9472C6.52349 23.0707 6.82383 22.9706 6.94732 22.7236C7.07082 22.4766 6.97071 22.1763 6.72372 22.0528L2.72372 20.0528Z" fill="#FF6723" />
<path d="M2.72372 26.9472C2.47673 27.0707 2.17639 26.9706 2.0529 26.7236C1.9294 26.4766 2.02951 26.1763 2.2765 26.0528L6.2765 24.0528C6.52349 23.9293 6.82383 24.0294 6.94732 24.2764C7.07082 24.5234 6.97071 24.8237 6.72372 24.9472L2.72372 26.9472Z" fill="#FF6723" />
<path d="M29.9473 20.2764C29.8238 20.0294 29.5235 19.9293 29.2765 20.0528L25.2765 22.0528C25.0295 22.1763 24.9294 22.4766 25.0529 22.7236C25.1764 22.9706 25.4767 23.0707 25.7237 22.9472L29.7237 20.9472C29.9707 20.8237 30.0708 20.5234 29.9473 20.2764Z" fill="#FF6723" />
<path d="M29.2765 26.9472C29.5235 27.0707 29.8238 26.9706 29.9473 26.7236C30.0708 26.4766 29.9707 26.1763 29.7237 26.0528L25.7237 24.0528C25.4767 23.9293 25.1764 24.0294 25.0529 24.2764C24.9294 24.5234 25.0295 24.8237 25.2765 24.9472L29.2765 26.9472Z" fill="#FF6723" />
<path d="M12.6213 17.0149C12.8892 17.0819 13.052 17.3534 12.9851 17.6213C12.8392 18.2046 12.5727 18.6457 12.2151 18.9507C11.8588 19.2546 11.445 19.3955 11.0498 19.435C10.6581 19.4742 10.2759 19.4153 9.95546 19.3117C9.64377 19.2108 9.34567 19.0528 9.14645 18.8535C8.95118 18.6583 8.95118 18.3417 9.14645 18.1464C9.34171 17.9512 9.65829 17.9512 9.85355 18.1464C9.90433 18.1972 10.0437 18.2892 10.2633 18.3602C10.4741 18.4284 10.7169 18.4633 10.9502 18.44C11.18 18.417 11.3912 18.3391 11.5662 18.1899C11.7398 18.0418 11.9108 17.7954 12.0149 17.3787C12.0819 17.1108 12.3534 16.948 12.6213 17.0149Z" fill="#402A32" />
<path d="M16 24.5C14.6098 24.5 13.6831 25.3767 13.416 25.7773C13.2628 26.0071 12.9524 26.0692 12.7226 25.916C12.4929 25.7628 12.4308 25.4524 12.584 25.2226C12.9456 24.6803 13.9679 23.709 15.5 23.5291V21C15.5 20.7239 15.7239 20.5 16 20.5C16.2761 20.5 16.5 20.7239 16.5 21V23.5291C18.0321 23.709 19.0544 24.6803 19.416 25.2226C19.5692 25.4524 19.5071 25.7628 19.2773 25.916C19.0476 26.0692 18.7372 26.0071 18.584 25.7773C18.3169 25.3767 17.3902 24.5 16 24.5Z" fill="#402A32" />
<path d="M19.0149 17.6213C18.948 17.3534 19.1108 17.0819 19.3787 17.0149C19.6466 16.948 19.9181 17.1108 19.9851 17.3787C20.0892 17.7954 20.2602 18.0418 20.4338 18.1899C20.6088 18.3391 20.82 18.417 21.0498 18.44C21.2831 18.4633 21.5259 18.4284 21.7367 18.3602C21.9563 18.2892 22.0957 18.1972 22.1464 18.1464C22.3417 17.9512 22.6583 17.9512 22.8536 18.1464C23.0488 18.3417 23.0488 18.6583 22.8536 18.8535C22.6543 19.0528 22.3562 19.2108 22.0445 19.3117C21.7241 19.4153 21.3419 19.4742 20.9502 19.435C20.555 19.3955 20.1412 19.2546 19.7849 18.9507C19.4273 18.6457 19.1608 18.2046 19.0149 17.6213Z" fill="#402A32" />
<path d="M17.0429 20H14.9571C14.5117 20 14.2886 20.5386 14.6036 20.8536L15.6465 21.8964C15.8417 22.0917 16.1583 22.0917 16.3536 21.8964L17.3965 20.8536C17.7114 20.5386 17.4884 20 17.0429 20Z" fill="#F70A8D" />
<path d="M8 23C8 21.8954 8.89543 21 10 21C11.1046 21 12 21.8954 12 23V26C12 27.1046 11.1046 28 10 28C8.89543 28 8 27.1046 8 26V23Z" fill="#5092FF" />
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -0,0 +1,21 @@
<svg width="100%" height="100%" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 25.942C4 28.1739 5.76327 30 7.91837 30H24.0816C26.2367 30 28 28.0725 28 25.8406V6.4297C28 5.1297 26.4099 4.5297 25.5155 5.4297L20.9736 10H11.1617L6.5 5.4297C5.6 4.5297 4 5.1297 4 6.4297V25.942Z" fill="#FFB02E" />
<path d="M9.00005 10.9265L6.20005 13.5265C5.70005 14.0265 4.80005 13.6265 4.80005 12.9265V7.72648C4.80005 7.12648 5.70005 6.72648 6.20005 7.22648L9.00005 9.82648C9.30005 10.1265 9.30005 10.6265 9.00005 10.9265Z" fill="#FF822D" />
<path d="M23.05 10.9265L25.85 13.5265C26.35 14.0265 27.25 13.6265 27.25 12.9265V7.72648C27.25 7.12648 26.35 6.72648 25.85 7.22648L23.05 9.82648C22.75 10.1265 22.75 10.6265 23.05 10.9265Z" fill="#FF822D" />
<path d="M2.72372 20.0528C2.47673 19.9293 2.17639 20.0294 2.0529 20.2764C1.9294 20.5234 2.02951 20.8237 2.2765 20.9472L6.2765 22.9472C6.52349 23.0707 6.82383 22.9706 6.94732 22.7236C7.07082 22.4766 6.97071 22.1763 6.72372 22.0528L2.72372 20.0528Z" fill="#FF6723" />
<path d="M2.72372 26.9472C2.47673 27.0707 2.17639 26.9706 2.0529 26.7236C1.9294 26.4766 2.02951 26.1763 2.2765 26.0528L6.2765 24.0528C6.52349 23.9293 6.82383 24.0294 6.94732 24.2764C7.07082 24.5234 6.97071 24.8237 6.72372 24.9472L2.72372 26.9472Z" fill="#FF6723" />
<path d="M29.9473 20.2764C29.8238 20.0294 29.5235 19.9293 29.2765 20.0528L25.2765 22.0528C25.0295 22.1763 24.9294 22.4766 25.0529 22.7236C25.1764 22.9706 25.4767 23.0707 25.7237 22.9472L29.7237 20.9472C29.9707 20.8237 30.0708 20.5234 29.9473 20.2764Z" fill="#FF6723" />
<path d="M29.2765 26.9472C29.5235 27.0707 29.8238 26.9706 29.9473 26.7236C30.0708 26.4766 29.9707 26.1763 29.7237 26.0528L25.7237 24.0528C25.4767 23.9293 25.1764 24.0294 25.0529 24.2764C24.9294 24.5234 25.0295 24.8237 25.2765 24.9472L29.2765 26.9472Z" fill="#FF6723" />
<path d="M12 24V30L7.91837 30C5.76327 30 4 28.1739 4 25.942V19.9996C4.83566 19.3719 5.87439 19 7 19C9.76142 19 12 21.2386 12 24Z" fill="#FF822D" />
<path d="M24.0816 30L20 30V24C20 21.2386 22.2386 19 25 19C26.1256 19 27.1643 19.3719 28 19.9996V25.8406C28 28.0725 26.2367 30 24.0816 30Z" fill="#FF822D" />
<path d="M17.0429 19H14.9571C14.5117 19 14.2886 19.5386 14.6036 19.8536L15.6465 20.8964C15.8417 21.0917 16.1583 21.0917 16.3536 20.8964L17.3965 19.8536C17.7114 19.5386 17.4884 19 17.0429 19Z" fill="#F70A8D" />
<path d="M7 20C4.79086 20 3 21.7909 3 24V30H11V24C11 21.7909 9.20914 20 7 20Z" fill="#FFB02E" />
<path d="M25 20C22.7909 20 21 21.7909 21 24V30H29V24C29 21.7909 27.2091 20 25 20Z" fill="#FFB02E" />
<path d="M14 24C14 22.8954 14.8954 22 16 22C17.1046 22 18 22.8954 18 24V25C18 26.1046 17.1046 27 16 27C14.8954 27 14 26.1046 14 25V24Z" fill="#BB1D80" />
<path d="M11.5 19C13.433 19 15 17.433 15 15.5C15 13.567 13.433 12 11.5 12C9.567 12 8 13.567 8 15.5C8 17.433 9.567 19 11.5 19Z" fill="white" />
<path d="M20.5 19C22.433 19 24 17.433 24 15.5C24 13.567 22.433 12 20.5 12C18.567 12 17 13.567 17 15.5C17 17.433 18.567 19 20.5 19Z" fill="white" />
<path d="M5 20.5351C5.30951 20.356 5.64523 20.2173 6 20.126V23.5C6 23.7761 5.77614 24 5.5 24C5.22386 24 5 23.7761 5 23.5V20.5351Z" fill="#FF6723" />
<path d="M8 20.126C8.35477 20.2173 8.69049 20.356 9 20.5351V23.5C9 23.7761 8.77614 24 8.5 24C8.22386 24 8 23.7761 8 23.5V20.126Z" fill="#FF6723" />
<path d="M23 20.5351C23.3095 20.356 23.6452 20.2173 24 20.126V23.5C24 23.7761 23.7761 24 23.5 24C23.2239 24 23 23.7761 23 23.5V20.5351Z" fill="#FF6723" />
<path d="M26 20.126C26.3548 20.2173 26.6905 20.356 27 20.5351V23.5C27 23.7761 26.7761 24 26.5 24C26.2239 24 26 23.7761 26 23.5V20.126Z" fill="#FF6723" />
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View file

@ -0,0 +1,24 @@
<svg width="100%" height="100%" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.31377 15.4089L6.79229 14.9114L4.99377 15.4089V17.0489H8.31377V15.4089Z" fill="#F95725" />
<path d="M23.6738 15.4089L25.229 14.8022L27.0038 15.4089V17.0489H23.6738V15.4089Z" fill="#F95725" />
<path d="M26.7538 16.4089H23.8738C23.4638 16.4089 23.1338 16.7389 23.1338 17.1489V19.5889C23.1338 19.7189 22.9938 19.7989 22.8738 19.7389L20.2938 18.3489C20.2538 18.3289 20.2138 18.2989 20.1738 18.2789L20.1238 18.2489C19.5038 17.9389 18.8038 17.7589 18.0538 17.7589H13.9638C13.2038 17.7589 12.4938 17.9389 11.8638 18.2689L9.09377 19.7289C8.99377 19.7989 8.84377 19.7189 8.84377 19.5889V17.1489C8.84377 16.7389 8.51377 16.4089 8.10377 16.4089H5.23377C4.82377 16.4089 4.49377 16.7389 4.49377 17.1489V22.2189C4.49377 23.2689 5.05377 24.2489 5.95377 24.7789C6.41377 25.0489 6.94377 25.1889 7.46377 25.1889C7.96377 25.1889 8.45377 25.0689 8.90377 24.8189L9.38377 24.5689V28.9989H22.6538V24.5989L23.0738 24.8189C23.5238 25.0689 24.0138 25.1889 24.5138 25.1889C25.0338 25.1889 25.5638 25.0489 26.0238 24.7789C26.9238 24.2489 27.4838 23.2689 27.4838 22.2189V17.1489C27.4938 16.7389 27.1638 16.4089 26.7538 16.4089Z" fill="#FF6723" />
<path d="M14.0238 17.5981V18.3288C14.0238 19.4188 14.9038 20.2988 15.9938 20.2988C17.0838 20.2988 17.9638 19.4188 17.9638 18.3288V17.4055L15.9938 17.0173L14.0238 17.5981Z" fill="#FCB100" />
<path d="M2.1438 12.9287L2.39206 13.2188C2.17218 13.4317 2.15033 13.7866 2.35381 14.0288C2.35381 14.0288 2.54381 14.2488 2.89381 14.6588C3.30381 15.1388 3.90381 15.4088 4.53381 15.4088H8.31381V13.5988C8.31381 12.7388 8.00381 11.9188 7.43381 11.2688L6.94381 10.7088C6.67381 10.3988 6.20381 10.3588 5.89381 10.6288C5.58381 10.8988 5.55381 11.3688 5.81381 11.6788L6.14381 12.0588C6.21381 12.1288 6.15381 12.2488 6.05381 12.2488L5.19942 12.2389L4.2838 11.1688C4.0738 10.9188 3.6938 10.8888 3.4538 11.1088C3.38944 11.1629 3.33966 11.2275 3.30481 11.2978C3.08958 11.1054 2.7618 11.0981 2.53381 11.2987C2.33485 11.4728 2.28021 11.7569 2.38697 11.9913C2.32138 12.0146 2.25914 12.0503 2.2038 12.0987C1.9538 12.3087 1.9338 12.6787 2.1438 12.9287Z" fill="#FFC83D" />
<path d="M29.8538 12.9289L29.6002 13.2234C29.8157 13.4368 29.8362 13.7887 29.6438 14.0388C29.6438 14.0388 29.4538 14.2588 29.1038 14.6688C28.6938 15.1488 28.0938 15.4188 27.4638 15.4188H23.6838V13.6088C23.6838 12.7588 23.9938 11.9288 24.5538 11.2788L25.0438 10.7188C25.3138 10.4088 25.7838 10.3688 26.0938 10.6388C26.4038 10.9088 26.4438 11.3788 26.1738 11.6888L25.8438 12.0588C25.7738 12.1288 25.8338 12.2488 25.9338 12.2488L26.7927 12.2388L27.7138 11.1689C27.9238 10.9189 28.2938 10.8989 28.5438 11.1089C28.6066 11.1617 28.6549 11.2245 28.6886 11.293C28.9039 11.1071 29.2279 11.109 29.4538 11.2988C29.6604 11.4724 29.7099 11.7552 29.6023 11.9893C29.6703 12.0133 29.7353 12.0498 29.7938 12.0989C30.0438 12.3089 30.0638 12.6789 29.8538 12.9289Z" fill="#FFC83D" />
<path d="M20.8537 6.57886C20.5437 6.13886 20.1037 5.84886 19.6137 5.72886C19.0837 5.59886 18.6137 5.30886 18.2937 4.86886C17.8637 4.28886 17.1537 3.93886 16.3837 4.00886C16.0837 4.03886 15.8137 4.11886 15.5637 4.24886C15.2337 4.42886 14.8337 4.45886 14.4737 4.34886C14.2037 4.25886 13.9237 4.22886 13.6237 4.24886C12.8637 4.31886 12.2337 4.76886 11.9137 5.39886C11.6737 5.88886 11.2637 6.27886 10.7537 6.50886C10.2837 6.71886 9.88373 7.10886 9.65373 7.62886C9.34373 8.37886 9.49373 9.21886 9.98373 9.81886C10.1637 10.0389 10.2737 10.2989 10.3037 10.5789L10.6337 14.2989C10.7007 15.0926 11.999 15.9899 11.999 15.9899C11.999 15.9899 16.7398 15.2423 20.1246 15.2423C20.1246 15.2423 21.1683 14.1447 21.1037 13.3789L20.7737 9.65886C20.7537 9.37886 20.8137 9.09886 20.9537 8.84886C21.3637 8.16886 21.3437 7.27886 20.8537 6.57886Z" fill="#F1A11E" />
<path d="M10.9497 10.7235C10.2972 10.8862 9.81372 11.4761 9.81372 12.179C9.81372 13.0074 10.4853 13.679 11.3137 13.679C11.3439 13.679 11.3738 13.6781 11.4036 13.6764L11.9793 12.179L10.9497 10.7235Z" fill="#FDBB11" />
<path d="M20.2908 12.9004C21.0066 12.7867 21.5537 12.1668 21.5537 11.419C21.5537 10.6456 20.9683 10.0089 20.2165 9.92773L19.1866 11.6354L20.2908 12.9004Z" fill="#FDBB11" />
<path d="M17.5437 8.02872L18.8167 7.91566C19.5056 7.88705 20.1048 8.39328 20.1951 9.07263L20.3237 14.2187C20.2437 15.9987 18.8537 17.4387 17.0837 17.5987L15.3837 17.7387C13.6037 17.8987 11.9937 16.7187 11.6037 14.9787L10.9393 10.6558L10.8837 9.9888C10.7337 8.3088 11.9837 6.8288 13.6637 6.6788L14.9129 6.56812C15.1213 6.58256 15.3174 6.70729 15.4137 6.90872C15.8437 7.66872 16.6737 8.10872 17.5437 8.02872Z" fill="#FFC83D" />
<path d="M15.9638 15.4789C16.2565 15.4789 16.4938 15.2417 16.4938 14.9489C16.4938 14.6562 16.2565 14.4189 15.9638 14.4189C15.6711 14.4189 15.4338 14.6562 15.4338 14.9489C15.4338 15.2417 15.6711 15.4789 15.9638 15.4789Z" fill="#990839" />
<path d="M15.3338 11.5789L14.9938 13.1489C14.9238 13.4689 15.1838 13.7689 15.5138 13.7389L16.2138 13.6789C16.5438 13.6489 16.7438 13.3089 16.6238 13.0089L16.0138 11.5189C15.8838 11.1889 15.4038 11.2289 15.3338 11.5789Z" fill="#ED9200" />
<path d="M19.0938 11.2289C18.9038 10.6789 18.3738 10.3189 17.7738 10.3689C17.1538 10.4189 16.6738 10.9089 16.6138 11.5089C16.6038 11.6389 16.7138 11.7489 16.8438 11.7389L18.8738 11.5589C19.0338 11.5489 19.1438 11.3789 19.0938 11.2289Z" fill="white" />
<path d="M12.2538 11.8189C12.3438 11.2589 12.8038 10.7989 13.4038 10.7489C14.0238 10.6889 14.5838 11.0889 14.7438 11.6689C14.7738 11.7889 14.6838 11.9189 14.5538 11.9289L12.5238 12.1089C12.3638 12.1189 12.2238 11.9789 12.2538 11.8189Z" fill="white" />
<path d="M18.4938 11.3688C18.4538 10.9188 18.0538 10.5888 17.6038 10.6288C17.1538 10.6688 16.8238 11.0588 16.8638 11.5188C16.8738 11.5888 16.8938 11.6588 16.9138 11.7288L18.4838 11.5888C18.4938 11.5188 18.5038 11.4388 18.4938 11.3688Z" fill="#7D4533" />
<path d="M12.8738 11.8689C12.8338 11.4189 13.1638 11.0189 13.6138 10.9789C14.0638 10.9389 14.4638 11.2689 14.5038 11.7189C14.5138 11.7989 14.5038 11.8689 14.4938 11.9389L12.9238 12.0789C12.8955 12.0224 12.885 11.9481 12.8755 11.8812C12.8749 11.8771 12.8744 11.873 12.8738 11.8689Z" fill="#7D4533" />
<path d="M17.6337 10.979C17.3737 10.999 17.1837 11.229 17.2137 11.479C17.2137 11.559 17.2437 11.629 17.2937 11.689L18.1137 11.619C18.1337 11.549 18.1537 11.479 18.1437 11.399C18.1137 11.149 17.8937 10.959 17.6337 10.979Z" fill="black" />
<path d="M13.6438 11.3288C13.9038 11.2988 14.1338 11.4888 14.1538 11.7488C14.1638 11.8288 14.1438 11.8988 14.1138 11.9788L13.2938 12.0488C13.2538 11.9888 13.2338 11.9188 13.2238 11.8388C13.1938 11.5788 13.3838 11.3488 13.6438 11.3288Z" fill="black" />
<path d="M17.5438 11.1388C17.5438 11.2216 17.4766 11.2888 17.3938 11.2888C17.3109 11.2888 17.2438 11.2216 17.2438 11.1388C17.2438 11.0559 17.3109 10.9888 17.3938 10.9888C17.4766 10.9888 17.5438 11.0559 17.5438 11.1388Z" fill="white" />
<path d="M13.5338 11.4889C13.5338 11.5717 13.4666 11.6389 13.3838 11.6389C13.3009 11.6389 13.2338 11.5717 13.2338 11.4889C13.2338 11.406 13.3009 11.3389 13.3838 11.3389C13.4666 11.3389 13.5338 11.406 13.5338 11.4889Z" fill="white" />
<path d="M18.4638 9.1088C18.5038 9.1388 18.5438 9.1488 18.5938 9.1488C18.6738 9.1488 18.7638 9.1088 18.8138 9.0388C18.8838 8.9188 18.8538 8.7588 18.7338 8.6888C18.7038 8.6688 17.9838 8.2088 16.9938 8.4188C16.8638 8.4488 16.7738 8.5788 16.8038 8.7188C16.8338 8.8488 16.9738 8.9388 17.1038 8.9088C17.8153 8.76285 18.3521 9.04959 18.4484 9.10107C18.4577 9.10602 18.4638 9.1088 18.4638 9.1088Z" fill="#D37034" />
<path d="M12.1637 9.61876C12.2037 9.66876 12.2737 9.69876 12.3437 9.69876C12.4037 9.69876 12.4637 9.67876 12.5037 9.63876C12.5037 9.63876 12.5104 9.63427 12.5205 9.62619C12.6144 9.55168 13.092 9.17268 13.8137 9.20876C13.9537 9.20876 14.0737 9.10876 14.0737 8.96876C14.0837 8.82876 13.9737 8.70876 13.8337 8.70876C12.8858 8.67159 12.2919 9.16992 12.1887 9.25656C12.1808 9.26314 12.1758 9.26735 12.1737 9.26876C12.0737 9.35876 12.0737 9.51876 12.1637 9.61876Z" fill="#D37034" />
</svg>

After

Width:  |  Height:  |  Size: 7.8 KiB

View file

@ -19,7 +19,7 @@
"TitlePopupError": "uh-oh...",
"TitlePopupChangelog": "what's new?",
"TitlePopupDonate": "support {appName}",
"TitlePopupDownload": "how to continue?",
"TitlePopupDownload": "how to save?",
"ErrorSomethingWentWrong": "something went wrong and i couldn't get anything for you. try again, but if issue persists, {ContactLink}.",
"ErrorUnsupported": "it seems like this service is not supported yet or your link is invalid. have you pasted the right link?",
"ErrorBrokenLink": "{s} is supported, but something is wrong with your link. maybe you didn't copy it fully?",
@ -49,7 +49,6 @@
"NoScriptMessage": "{appName} uses javascript for api requests and interactive interface. you have to allow javascript to use this site. there are no pesty scripts, pinky promise.",
"DownloadPopupDescriptionIOS": "easiest way to save videos on ios:\n1. add <a class=\"text-backdrop italic\" href=\"{saveToGalleryShortcut}\" target=\"_blank\">this siri shortcut</a>.\n2. press \"share\" above and select \"save to photos\" in appeared share sheet.\nif asked, review the permission request, and press \"always allow\".\n\nalternative method:\npress and hold the download button, hide the video preview, and select \"download linked file\" to download.\nthen, open safari downloads, select the file you downloaded, open share menu, and finally press \"save video\".",
"DownloadPopupDescription": "download button opens a new tab with requested file. you can disable this popup in settings.",
"DownloadPopupWayToSave": "pick a way to save",
"ClickToCopy": "press to copy",
"Download": "download",
"CopyURL": "copy",
@ -121,6 +120,7 @@
"ShareURL": "share",
"ErrorTweetUnavailable": "couldn't find anything about this tweet. this could be because its visibility is limited. try another one!",
"ErrorTwitterRIP": "twitter has restricted access to any content to unauthenticated users. while there's a way to get regular tweets, spaces are, unfortunately, impossible to get at this time. i am looking into possible solutions.",
"UrgentDonate": "{appName} needs your help!"
"UrgentDonate": "{appName} needs your help!",
"PopupCloseDone": "done"
}
}

View file

@ -19,7 +19,7 @@
"TitlePopupError": "опаньки...",
"TitlePopupChangelog": "что нового?",
"TitlePopupDonate": "поддержи {appName}",
"TitlePopupDownload": "как продолжить?",
"TitlePopupDownload": "как сохранить?",
"ErrorSomethingWentWrong": "что-то пошло совсем не так и у меня не получилось ничего для тебя достать. попробуй ещё раз, но если так и не получится, {ContactLink}.",
"ErrorUnsupported": "с твоей ссылкой что-то не так, или же этот сервис ещё не поддерживается. может быть, ты вставил не ту ссылку?",
"ErrorBrokenLink": "{s} поддерживается, но с твоей ссылкой что-то не так. может быть, ты её не полностью скопировал?",
@ -49,7 +49,6 @@
"NoScriptMessage": "{appName} использует javascript для обработки ссылок и интерактивного интерфейса. ты должен разрешить использование javascript, чтобы пользоваться сайтом. тут нет никаких зловредных скриптов, обещаю.",
"DownloadPopupDescriptionIOS": "наиболее простой метод скачивания видео на ios:\n1. добавь <a class=\"text-backdrop italic\" href=\"{saveToGalleryShortcut}\" target=\"_blank\">этот сценарий siri</a>.\n2. нажми \"поделиться\" выше и выбери \"save to photos\" в открывшемся окне.\nесли появляется окно с запросом разрешения, то прочитай его, потом нажми \"всегда разрешать\".\n\nальтернативный метод:\nзажми кнопку \"скачать\", затем скрой превью и выбери \"загрузить файл по ссылке\" в появившемся окне.\nпотом открой загрузки в safari, выбери скачанный файл, нажми иконку \"поделиться\", и, наконец, нажми \"сохранить видео\".",
"DownloadPopupDescription": "кнопка скачивания открывает новое окно с файлом. ты можешь отключить выбор метода скачивания файла в настройках.",
"DownloadPopupWayToSave": "выбери, как сохранить",
"ClickToCopy": "нажми, чтобы скопировать",
"Download": "скачать",
"CopyURL": "скопировать",
@ -121,6 +120,7 @@
"ShareURL": "поделиться",
"ErrorTweetUnavailable": "не смог найти что-либо об этом твите. возможно его видимость была ограничена. попробуй другой!",
"ErrorTwitterRIP": "твиттер ограничил доступ к любому контенту на сайте для пользователей без аккаунтов. я нашёл лазейку, чтобы доставать обычные твиты, а для spaces, к сожалению, нет. я ищу возможные варианты выхода из ситуации.",
"UrgentDonate": "нужна твоя помощь!"
"UrgentDonate": "нужна твоя помощь!",
"PopupCloseDone": "готово"
}
}

View file

@ -24,19 +24,27 @@ const names = {
"🔮": "crystal_ball",
"💪": "biceps",
"💖": "sparkling_heart",
"👾": "alien_monster"
"👾": "alien_monster",
"😿": "cat_crying",
"🙀": "cat_flabbergasted",
"🤷": "person_shrugging"
}
let sizing = {
18: 0.8,
22: 0.4,
30: 0.7,
48: 0.9,
64: 0.9
64: 0.9,
78: 0.9
}
export default function(emoji, size, disablePadding) {
export default function(emoji, size, disablePadding, fluent) {
if (!size) size = 22;
let padding = size !== 22 ? `margin-right:${sizing[size] ? sizing[size] : "0.4"}rem;` : false;
if (disablePadding) padding = 'margin-right:0!important;';
if (!names[emoji]) emoji = "❓";
return `<img class="emoji" draggable=false height="${size}" width="${size}" ${padding ? `style="${padding}"` : ''}alt="${emoji}" src="emoji/${names[emoji]}.svg" loading="lazy">`
let filePath = `emoji/${names[emoji]}.svg`;
if (fluent) filePath = `emoji/3d/${names[emoji]}.svg`;
return `<img class="emoji" draggable=false height="${size}" width="${size}" ${padding ? `style="${padding}"` : ''}alt="${emoji}" src="${filePath}" loading="lazy">`
}

View file

@ -44,7 +44,7 @@ export default function(obj) {
<html lang="${obj.lang}">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=${isIOS ? `1` : `5`}" />
<meta name="viewport" content="viewport-fit=cover width=device-width, initial-scale=1, maximum-scale=${isIOS ? `1` : `5`}" />
<title>${appName}</title>
@ -324,22 +324,6 @@ export default function(obj) {
})
}],
})}
${popup({
name: "download",
standalone: true,
header: {
closeAria: t('AccessibilityClosePopup'),
subtitle: t('TitlePopupDownload')
},
body: switcher({
name: "download",
subtitle: t('DownloadPopupWayToSave'),
explanation: `${!isIOS ? t('DownloadPopupDescription') : t('DownloadPopupDescriptionIOS')}`,
items: `<a id="pd-download" class="switch full" target="_blank" href="/">${t('Download')}</a>
<div id="pd-share" class="switch full">${t('ShareURL')}</div>
<div id="pd-copy" class="switch full">${t('CopyURL')}</div>`
})
})}
${popupWithBottomButtons({
name: "picker",
closeAria: t('AccessibilityClosePopup'),
@ -350,18 +334,37 @@ export default function(obj) {
buttons: [`<a id="picker-download" class="switch" target="_blank" href="/">${t('ImagePickerDownloadAudio')}</a>`],
content: '<div id="picker-holder"></div>'
})}
${popup({
name: "download",
standalone: true,
buttonOnly: true,
classes: ["small"],
header: {
closeAria: t('AccessibilityClosePopup'),
emoji: emoji("🤷", 78, 1, 1),
title: t('TitlePopupDownload')
},
body: switcher({
name: "download",
explanation: `${!isIOS ? t('DownloadPopupDescription') : t('DownloadPopupDescriptionIOS')}`,
items: `<a id="pd-download" class="switch full" target="_blank" href="/">${t('Download')}</a>
<div id="pd-share" class="switch full">${t('ShareURL')}</div>
<div id="pd-copy" class="switch full">${t('CopyURL')}</div>`
}),
buttonText: t('PopupCloseDone')
})}
${popup({
name: "error",
standalone: true,
buttonOnly: true,
classes: ["small"],
buttonText: t('ErrorPopupCloseButton'),
header: {
closeAria: t('AccessibilityClosePopup'),
title: t('TitlePopupError'),
emoji: emoji("☹️", 64, 1),
emoji: emoji("😿", 78, 1, 1),
},
body: `<div id="desc-error" class="desc-padding subtext"></div>`
body: `<div id="desc-error" class="desc-padding subtext"></div>`,
buttonText: t('ErrorPopupCloseButton')
})}
<div id="popup-backdrop" style="visibility: hidden;" onclick="hideAllPopups()"></div>
<div id="urgent-notice" class="urgent-notice explanation center" onclick="popup('about', 1, 'donate')" style="visibility: hidden;">${emoji("💖", 18)} ${t("UrgentDonate")}</div>