feat: add assets
All checks were successful
Deploy to VPS (dist) / deploy (push) Successful in 1m37s
@@ -0,0 +1,102 @@
|
||||
:root {
|
||||
--navigation-height: 74px;
|
||||
--navigation-padding: var(--tg-viewport-safe-area-inset-bottom, 0px);
|
||||
--navigation-total: calc(var(--navigation-height) + var(--navigation-padding));
|
||||
}
|
||||
|
||||
@layer base {
|
||||
.navigation {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 10;
|
||||
max-width: 500px;
|
||||
margin: auto;
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
justify-content: space-evenly;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.bar {
|
||||
width: 54px;
|
||||
border-radius: 27px 27px 0 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
padding-bottom: var(--navigation-padding);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.safeContent {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
height: 64px;
|
||||
margin-top: -10px;
|
||||
}
|
||||
|
||||
.icon {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
margin-bottom: -6px;
|
||||
}
|
||||
|
||||
.label {
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
-webkit-text-stroke: 1px #331b01;
|
||||
text-shadow: 0px 2px 2px #0000008c;
|
||||
line-height: 1;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.active .label {
|
||||
color: #ffbd42;
|
||||
}
|
||||
|
||||
.menuOverlay {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: calc(var(--navigation-total) + 16px);
|
||||
z-index: 9;
|
||||
padding-bottom: 8px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-end;
|
||||
gap: 8px;
|
||||
overflow: hidden;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.menuOverlay > * {
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
.menuBar {
|
||||
height: 54px;
|
||||
width: 94px;
|
||||
border-radius: 27px 0 0 27px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
padding-right: 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.menuBarContent {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 54px;
|
||||
height: 100%;
|
||||
margin-left: -10px;
|
||||
}
|
||||
}
|
||||
229
src/routes/-/RootLayout/components/Navigation/Navigation.tsx
Normal file
@@ -0,0 +1,229 @@
|
||||
import { type AnyRoute, useMatchRoute, useNavigate } from "@tanstack/react-router";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import { AnimatePresence } from "motion/react";
|
||||
|
||||
import GlassSurface from "@components/surface/GlassSurface";
|
||||
|
||||
import classes from "./Navigation.module.css";
|
||||
import ShopRoute from "@/routes/shop";
|
||||
import ApiaryRoute from "@/routes/apiary";
|
||||
import GameRoute from "@/routes/game";
|
||||
import CashdeskRoute from "@/routes/cashdesk";
|
||||
import RouletteRoute from "@/routes/roulette";
|
||||
import TasksRoute from "@/routes/tasks";
|
||||
import EarningsRoute from "@/routes/earnings";
|
||||
import { useCallback, useEffect, useRef, useState } from "react";
|
||||
|
||||
import shopIcon from "./assets/shop.svg";
|
||||
import apiaryIcon from "./assets/apiary.svg";
|
||||
import gameIcon from "./assets/game.svg";
|
||||
import cashdeskIcon from "./assets/cashdesk.svg";
|
||||
import menuIcon from "./assets/menu.svg";
|
||||
import rouletteIcon from "./assets/roulette.svg";
|
||||
import tasksIcon from "./assets/tasks.svg";
|
||||
import earningsIcon from "./assets/earnings.svg";
|
||||
import tg from "@/tg";
|
||||
|
||||
const ANIMATION_DURATION = 0.2;
|
||||
const SPRING_ANIMATION = {
|
||||
type: "spring",
|
||||
stiffness: 400,
|
||||
damping: 20,
|
||||
duration: ANIMATION_DURATION,
|
||||
} as const;
|
||||
|
||||
const BAR_HEIGHT = 64;
|
||||
const ACTIVE_BAR_HEIGHT = 74;
|
||||
const OFFSCREEN_BAR_OFFSET = 20;
|
||||
|
||||
const NAV_ITEMS = [
|
||||
{ key: "nav.shop", route: ShopRoute, icon: shopIcon },
|
||||
{ key: "nav.apiary", route: ApiaryRoute, icon: apiaryIcon },
|
||||
{ key: "nav.game", route: GameRoute, icon: gameIcon },
|
||||
{ key: "nav.cashdesk", route: CashdeskRoute, icon: cashdeskIcon },
|
||||
{ key: "nav.menu", isMenu: true, icon: menuIcon },
|
||||
];
|
||||
const HORIZONTAL_ENTRANCE_DELAYS = [0.2, 0.1, 0, 0.1, 0.2];
|
||||
|
||||
const MENU_ITEMS = [
|
||||
{ key: "nav.roulette", route: RouletteRoute, icon: rouletteIcon, delay: 0.1 },
|
||||
{ key: "nav.tasks", route: TasksRoute, icon: tasksIcon, delay: 0.05 },
|
||||
{ key: "nav.earnings", route: EarningsRoute, icon: earningsIcon, delay: 0 },
|
||||
];
|
||||
|
||||
type BarProps = {
|
||||
labelKey: string;
|
||||
icon: string;
|
||||
active: boolean;
|
||||
entranceDelay: number;
|
||||
onClick: () => void;
|
||||
};
|
||||
|
||||
function NavBar({ labelKey, icon, active, entranceDelay, onClick }: BarProps) {
|
||||
const { t } = useTranslation();
|
||||
|
||||
const isInitial = useRef(true);
|
||||
useEffect(() => {
|
||||
isInitial.current = false;
|
||||
}, []);
|
||||
|
||||
const height = active ? ACTIVE_BAR_HEIGHT : BAR_HEIGHT;
|
||||
return (
|
||||
<GlassSurface
|
||||
className={[classes.bar, active && classes.active]}
|
||||
variants={{
|
||||
hidden: {
|
||||
translateY: ACTIVE_BAR_HEIGHT + OFFSCREEN_BAR_OFFSET,
|
||||
height,
|
||||
},
|
||||
visible: {
|
||||
translateY: OFFSCREEN_BAR_OFFSET,
|
||||
height: height + OFFSCREEN_BAR_OFFSET,
|
||||
transition: { ...SPRING_ANIMATION, delay: entranceDelay },
|
||||
},
|
||||
ready: {
|
||||
translateY: OFFSCREEN_BAR_OFFSET,
|
||||
height: height + OFFSCREEN_BAR_OFFSET,
|
||||
transition: SPRING_ANIMATION,
|
||||
},
|
||||
}}
|
||||
initial="hidden"
|
||||
animate={isInitial.current ? "visible" : "ready"}
|
||||
whileTap={{ scale: 0.95 }}
|
||||
onClick={onClick}
|
||||
>
|
||||
<div className={classes.safeContent}>
|
||||
<img src={icon} className={classes.icon} alt="" />
|
||||
<span className={classes.label}>{t(labelKey)}</span>
|
||||
</div>
|
||||
</GlassSurface>
|
||||
);
|
||||
}
|
||||
|
||||
type MenuBarProps = {
|
||||
labelKey: string;
|
||||
icon: string;
|
||||
active: boolean;
|
||||
delay: number;
|
||||
onClick: () => void;
|
||||
};
|
||||
|
||||
const MENU_BAR_WIDTH = 94;
|
||||
const ACTIVE_MENU_BAR_WIDTH = 104;
|
||||
const OFFSCREEN_MENU_BAR_OFFSET = 20;
|
||||
|
||||
function MenuBar({ labelKey, icon, delay, active, onClick }: MenuBarProps) {
|
||||
const { t } = useTranslation();
|
||||
|
||||
const [isReady, setIsReady] = useState(false);
|
||||
|
||||
const width = active ? ACTIVE_MENU_BAR_WIDTH : MENU_BAR_WIDTH;
|
||||
return (
|
||||
<GlassSurface
|
||||
className={[classes.menuBar, active && classes.active]}
|
||||
variants={{
|
||||
hidden: {
|
||||
translateX: width + OFFSCREEN_MENU_BAR_OFFSET,
|
||||
width,
|
||||
},
|
||||
visible: {
|
||||
translateX: OFFSCREEN_MENU_BAR_OFFSET,
|
||||
transition: { ...SPRING_ANIMATION, delay: delay },
|
||||
width,
|
||||
},
|
||||
ready: {
|
||||
translateX: OFFSCREEN_MENU_BAR_OFFSET,
|
||||
transition: SPRING_ANIMATION,
|
||||
width,
|
||||
},
|
||||
exit: {
|
||||
translateX: width + OFFSCREEN_MENU_BAR_OFFSET + 10,
|
||||
transition: { ...SPRING_ANIMATION, delay: delay },
|
||||
width,
|
||||
},
|
||||
}}
|
||||
onAnimationComplete={(variant) => variant === "visible" && setIsReady(true)}
|
||||
initial="hidden"
|
||||
animate={isReady ? "ready" : "visible"}
|
||||
exit="exit"
|
||||
whileTap={{ scale: 0.95 }}
|
||||
onClick={onClick}
|
||||
>
|
||||
<div className={classes.menuBarContent}>
|
||||
<img src={icon} className={classes.icon} alt="" />
|
||||
<span className={classes.label}>{t(labelKey)}</span>
|
||||
</div>
|
||||
</GlassSurface>
|
||||
);
|
||||
}
|
||||
|
||||
export default function Navigation() {
|
||||
const matchRoute = useMatchRoute();
|
||||
const navigate = useNavigate();
|
||||
const [menuOpen, setMenuOpen] = useState<number>(0);
|
||||
const navRef = useRef<HTMLDivElement>(null);
|
||||
|
||||
const handleOutsideClick = useCallback((e: MouseEvent) => {
|
||||
if (navRef.current && !navRef.current.contains(e.target as Node)) {
|
||||
setMenuOpen(0);
|
||||
}
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
if (menuOpen) {
|
||||
document.addEventListener("click", handleOutsideClick);
|
||||
return () => document.removeEventListener("click", handleOutsideClick);
|
||||
}
|
||||
}, [menuOpen, handleOutsideClick]);
|
||||
|
||||
const navigateRoute = async (route: AnyRoute, wait = false) => {
|
||||
tg.hapticFeedback.click();
|
||||
const redirection = navigate({ to: route.to });
|
||||
if (wait) {
|
||||
await new Promise((resolve) => setTimeout(resolve, 1000 * ANIMATION_DURATION - 100));
|
||||
await redirection;
|
||||
}
|
||||
setMenuOpen(0);
|
||||
};
|
||||
|
||||
return (
|
||||
<div ref={navRef}>
|
||||
<div className={classes.menuOverlay}>
|
||||
<AnimatePresence>
|
||||
{menuOpen &&
|
||||
MENU_ITEMS.map((item) => (
|
||||
<MenuBar
|
||||
key={`${item.key} ${menuOpen}`}
|
||||
active={Boolean(matchRoute({ to: item.route.to }))}
|
||||
labelKey={item.key}
|
||||
icon={item.icon}
|
||||
delay={item.delay}
|
||||
onClick={() => navigateRoute(item.route, true)}
|
||||
/>
|
||||
))}
|
||||
</AnimatePresence>
|
||||
</div>
|
||||
<nav className={classes.navigation}>
|
||||
{NAV_ITEMS.map((item, index) => {
|
||||
const active = Boolean(item.isMenu ? menuOpen : matchRoute({ to: item.route!.to }));
|
||||
return (
|
||||
<NavBar
|
||||
key={item.key}
|
||||
labelKey={item.key}
|
||||
icon={item.icon}
|
||||
active={active}
|
||||
entranceDelay={HORIZONTAL_ENTRANCE_DELAYS[index]}
|
||||
onClick={
|
||||
item.isMenu
|
||||
? () => setMenuOpen((v) => (v ? 0 : Math.random()))
|
||||
: active
|
||||
? () => {}
|
||||
: () => navigateRoute(item.route!)
|
||||
}
|
||||
/>
|
||||
);
|
||||
})}
|
||||
</nav>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
1039
src/routes/-/RootLayout/components/Navigation/assets/apiary.svg
Normal file
|
After Width: | Height: | Size: 269 KiB |
|
After Width: | Height: | Size: 89 KiB |
|
After Width: | Height: | Size: 200 KiB |
280
src/routes/-/RootLayout/components/Navigation/assets/game.svg
Normal file
|
After Width: | Height: | Size: 81 KiB |
@@ -0,0 +1,81 @@
|
||||
<svg width="124" height="126" viewBox="0 0 124 126" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.3 0.5H47.22C53.73 0.5 59.02 5.78999 59.02 12.3V47.73C59.02 54.24 53.73 59.53 47.22 59.53H12.3C5.79002 59.53 0.5 54.24 0.5 47.73V12.3C0.5 5.78999 5.79002 0.5 12.3 0.5Z" fill="#1D4171"/>
|
||||
<path d="M47.22 60.03H12.3C5.52002 60.03 0 54.51 0 47.73V12.3C0 5.51999 5.52002 0 12.3 0H47.22C54 0 59.52 5.51999 59.52 12.3V47.73C59.52 54.51 54 60.03 47.22 60.03ZM12.3 1C6.07002 1 1 6.06999 1 12.3V47.73C1 53.96 6.07002 59.03 12.3 59.03H47.22C53.45 59.03 58.52 53.96 58.52 47.73V12.3C58.52 6.06999 53.45 1 47.22 1H12.3Z" fill="#1D4171"/>
|
||||
<path d="M76.64 0.5H111.56C118.07 0.5 123.36 5.78999 123.36 12.3V47.73C123.36 54.24 118.07 59.53 111.56 59.53H76.64C70.13 59.53 64.84 54.24 64.84 47.73V12.3C64.84 5.78999 70.13 0.5 76.64 0.5Z" fill="#194C2B"/>
|
||||
<path d="M111.56 60.03H76.64C69.86 60.03 64.34 54.51 64.34 47.73V12.3C64.34 5.51999 69.86 0 76.64 0H111.56C118.34 0 123.86 5.51999 123.86 12.3V47.73C123.86 54.51 118.34 60.03 111.56 60.03ZM76.64 1C70.41 1 65.34 6.06999 65.34 12.3V47.73C65.34 53.96 70.41 59.03 76.64 59.03H111.56C117.79 59.03 122.86 53.96 122.86 47.73V12.3C122.86 6.06999 117.79 1 111.56 1H76.64Z" fill="#194C2B"/>
|
||||
<path d="M12.3 65.52H47.22C53.73 65.52 59.02 70.8099 59.02 77.3199V112.75C59.02 119.26 53.73 124.55 47.22 124.55H12.3C5.79002 124.55 0.5 119.26 0.5 112.75V77.3199C0.5 70.8099 5.79002 65.52 12.3 65.52Z" fill="#520715"/>
|
||||
<path d="M47.22 125.05H12.3C5.52002 125.05 0 119.53 0 112.75V77.3199C0 70.5399 5.52002 65.02 12.3 65.02H47.22C54 65.02 59.52 70.5399 59.52 77.3199V112.75C59.52 119.53 54 125.05 47.22 125.05ZM12.3 66.02C6.07002 66.02 1 71.0899 1 77.3199V112.75C1 118.98 6.07002 124.05 12.3 124.05H47.22C53.45 124.05 58.52 118.98 58.52 112.75V77.3199C58.52 71.0899 53.45 66.02 47.22 66.02H12.3Z" fill="#520715"/>
|
||||
<path d="M76.64 65.52H111.56C118.07 65.52 123.36 70.8099 123.36 77.3199V112.75C123.36 119.26 118.07 124.55 111.56 124.55H76.64C70.13 124.55 64.84 119.26 64.84 112.75V77.3199C64.84 70.8099 70.13 65.52 76.64 65.52Z" fill="#794422"/>
|
||||
<path d="M111.56 125.05H76.64C69.86 125.05 64.34 119.53 64.34 112.75V77.3199C64.34 70.5399 69.86 65.02 76.64 65.02H111.56C118.34 65.02 123.86 70.5399 123.86 77.3199V112.75C123.86 119.53 118.34 125.05 111.56 125.05ZM76.64 66.02C70.41 66.02 65.34 71.0899 65.34 77.3199V112.75C65.34 118.98 70.41 124.05 76.64 124.05H111.56C117.79 124.05 122.86 118.98 122.86 112.75V77.3199C122.86 71.0899 117.79 66.02 111.56 66.02H76.64Z" fill="#794422"/>
|
||||
<path d="M47.23 1.5H12.3C6.33534 1.5 1.5 6.33531 1.5 12.3V47.74C1.5 53.7047 6.33534 58.54 12.3 58.54H47.23C53.1947 58.54 58.03 53.7047 58.03 47.74V12.3C58.03 6.33531 53.1947 1.5 47.23 1.5Z" fill="#3E62A8"/>
|
||||
<path d="M47.22 59.53H12.3C5.79002 59.53 0.5 54.24 0.5 47.73V12.3C0.5 5.78999 5.79002 0.5 12.3 0.5H47.22C53.73 0.5 59.02 5.78999 59.02 12.3V47.73C59.02 54.24 53.73 59.53 47.22 59.53ZM12.3 2.5C6.89002 2.5 2.5 6.89999 2.5 12.3V47.73C2.5 53.14 6.90002 57.53 12.3 57.53H47.22C52.63 57.53 57.02 53.13 57.02 47.73V12.3C57.02 6.88999 52.62 2.5 47.22 2.5H12.3Z" fill="#1D4171"/>
|
||||
<path d="M45.68 2.60986H13.85C7.87998 2.60986 3.04999 7.43985 3.04999 13.4099V41.7299C3.04999 47.6999 7.87998 52.5399 13.85 52.5399H45.68C51.65 52.5399 56.48 47.6999 56.48 41.7299V13.4099C56.48 7.43985 51.65 2.60986 45.68 2.60986ZM54.47 39.2999C54.47 45.2699 49.64 50.1099 43.67 50.1099H15.44C9.46997 50.1099 4.63998 45.2699 4.63998 39.2999V14.6498C4.63998 8.67984 9.46997 3.83984 15.44 3.83984H43.67C49.64 3.83984 54.47 8.67984 54.47 14.6498V39.2999Z" fill="#4EB8EA"/>
|
||||
<path d="M54.47 14.6498V39.2999C54.47 45.2699 49.64 50.1099 43.67 50.1099H15.44C9.47 50.1099 4.64001 45.2699 4.64001 39.2999V14.6498C4.64001 8.67984 9.47 3.83984 15.44 3.83984H43.67C49.64 3.83984 54.47 8.67984 54.47 14.6498Z" fill="url(#paint0_linear_227_43)"/>
|
||||
<path d="M53.77 16.0499C53.77 15.9399 53.79 15.8298 53.79 15.7198V15.0699C53.79 9.45989 49.01 4.87988 43.17 4.87988H15.63C9.79 4.87988 5.01001 9.46989 5.01001 15.0699V15.7198C5.01001 15.9598 5.03002 16.1899 5.05002 16.4199C5.05002 16.4499 5.05002 16.4699 5.05002 16.4999C5.05002 22.6199 15.96 27.5799 29.43 27.5799C42.9 27.5799 53.81 22.6199 53.81 16.4999C53.81 16.3499 53.8 16.1899 53.78 16.0399L53.77 16.0499Z" fill="url(#paint1_linear_227_43)"/>
|
||||
<path d="M14.1562 13.0245C16.7387 11.7431 18.2372 9.50508 17.5032 8.02583C16.7692 6.54659 14.0807 6.38621 11.4982 7.66761C8.91567 8.94901 7.41715 11.1869 8.15113 12.6662C8.88511 14.1454 11.5737 14.3059 14.1562 13.0245Z" fill="#C5EDFB"/>
|
||||
<path d="M22.35 10.2602C23.7583 10.2602 24.9 9.45426 24.9 8.46014C24.9 7.46603 23.7583 6.66016 22.35 6.66016C20.9416 6.66016 19.8 7.46603 19.8 8.46014C19.8 9.45426 20.9416 10.2602 22.35 10.2602Z" fill="#C5EDFB"/>
|
||||
<path d="M111.57 1.5H76.64C70.6753 1.5 65.84 6.33531 65.84 12.3V47.74C65.84 53.7047 70.6753 58.54 76.64 58.54H111.57C117.535 58.54 122.37 53.7047 122.37 47.74V12.3C122.37 6.33531 117.535 1.5 111.57 1.5Z" fill="#458145"/>
|
||||
<path d="M111.56 59.53H76.64C70.13 59.53 64.84 54.24 64.84 47.73V12.3C64.84 5.78999 70.13 0.5 76.64 0.5H111.56C118.07 0.5 123.36 5.78999 123.36 12.3V47.73C123.36 54.24 118.07 59.53 111.56 59.53ZM76.64 2.5C71.23 2.5 66.84 6.89999 66.84 12.3V47.73C66.84 53.14 71.24 57.53 76.64 57.53H111.56C116.97 57.53 121.36 53.13 121.36 47.73V12.3C121.36 6.88999 116.96 2.5 111.56 2.5H76.64Z" fill="#194C2B"/>
|
||||
<path d="M110.02 2.60986H78.19C72.22 2.60986 67.39 7.43985 67.39 13.4099V41.7299C67.39 47.6999 72.22 52.5399 78.19 52.5399H110.02C115.99 52.5399 120.82 47.6999 120.82 41.7299V13.4099C120.82 7.43985 115.99 2.60986 110.02 2.60986ZM118.81 39.2999C118.81 45.2699 113.98 50.1099 108.01 50.1099H79.78C73.81 50.1099 68.98 45.2699 68.98 39.2999V14.6498C68.98 8.67984 73.81 3.83984 79.78 3.83984H108.01C113.98 3.83984 118.81 8.67984 118.81 14.6498V39.2999Z" fill="#99D955"/>
|
||||
<path d="M118.81 14.6498V39.2999C118.81 45.2699 113.98 50.1099 108.01 50.1099H79.78C73.81 50.1099 68.98 45.2699 68.98 39.2999V14.6498C68.98 8.67984 73.81 3.83984 79.78 3.83984H108.01C113.98 3.83984 118.81 8.67984 118.81 14.6498Z" fill="url(#paint2_linear_227_43)"/>
|
||||
<path d="M118.11 16.0499C118.11 15.9399 118.13 15.8298 118.13 15.7198V15.0699C118.13 9.45989 113.35 4.87988 107.51 4.87988H79.97C74.13 4.87988 69.35 9.46989 69.35 15.0699V15.7198C69.35 15.9598 69.37 16.1899 69.39 16.4199C69.39 16.4499 69.39 16.4699 69.39 16.4999C69.39 22.6199 80.3 27.5799 93.7701 27.5799C107.24 27.5799 118.15 22.6199 118.15 16.4999C118.15 16.3499 118.14 16.1899 118.12 16.0399L118.11 16.0499Z" fill="url(#paint3_linear_227_43)"/>
|
||||
<path d="M78.5013 13.0269C81.0838 11.7455 82.5822 9.50752 81.8483 8.02828C81.1143 6.54903 78.4258 6.38865 75.8433 7.67005C73.2608 8.95145 71.7622 11.1894 72.4962 12.6686C73.2302 14.1479 75.9188 14.3083 78.5013 13.0269Z" fill="#F0FCCC"/>
|
||||
<path d="M86.69 10.2602C88.0983 10.2602 89.24 9.45426 89.24 8.46014C89.24 7.46603 88.0983 6.66016 86.69 6.66016C85.2817 6.66016 84.14 7.46603 84.14 8.46014C84.14 9.45426 85.2817 10.2602 86.69 10.2602Z" fill="#F0FCCC"/>
|
||||
<path d="M47.23 66.52H12.3C6.33534 66.52 1.5 71.3553 1.5 77.3199V112.76C1.5 118.725 6.33534 123.56 12.3 123.56H47.23C53.1947 123.56 58.03 118.725 58.03 112.76V77.3199C58.03 71.3553 53.1947 66.52 47.23 66.52Z" fill="#962331"/>
|
||||
<path d="M47.22 124.55H12.3C5.79002 124.55 0.5 119.26 0.5 112.75V77.3199C0.5 70.8099 5.79002 65.52 12.3 65.52H47.22C53.73 65.52 59.02 70.8099 59.02 77.3199V112.75C59.02 119.26 53.73 124.55 47.22 124.55ZM12.3 67.52C6.89002 67.52 2.5 71.9199 2.5 77.3199V112.75C2.5 118.16 6.90002 122.55 12.3 122.55H47.22C52.63 122.55 57.02 118.15 57.02 112.75V77.3199C57.02 71.9099 52.62 67.52 47.22 67.52H12.3Z" fill="#520715"/>
|
||||
<path d="M45.68 67.6299H13.85C7.87998 67.6299 3.04999 72.4598 3.04999 78.4298V106.75C3.04999 112.72 7.87998 117.56 13.85 117.56H45.68C51.65 117.56 56.48 112.72 56.48 106.75V78.4298C56.48 72.4598 51.65 67.6299 45.68 67.6299ZM54.47 104.32C54.47 110.29 49.64 115.13 43.67 115.13H15.44C9.46997 115.13 4.63998 110.29 4.63998 104.32V79.6699C4.63998 73.6999 9.46997 68.8599 15.44 68.8599H43.67C49.64 68.8599 54.47 73.6999 54.47 79.6699V104.32Z" fill="#F35453"/>
|
||||
<path d="M54.47 79.6699V104.32C54.47 110.29 49.64 115.13 43.67 115.13H15.44C9.47 115.13 4.64001 110.29 4.64001 104.32V79.6699C4.64001 73.6999 9.47 68.8599 15.44 68.8599H43.67C49.64 68.8599 54.47 73.6999 54.47 79.6699Z" fill="url(#paint4_linear_227_43)"/>
|
||||
<path d="M53.77 81.0698C53.77 80.9598 53.79 80.8499 53.79 80.7399V80.0898C53.79 74.4798 49.01 69.8999 43.17 69.8999H15.63C9.79 69.8999 5.01001 74.4898 5.01001 80.0898V80.7399C5.01001 80.9799 5.03002 81.2098 5.05002 81.4398C5.05002 81.4698 5.05002 81.4899 5.05002 81.5199C5.05002 87.6399 15.96 92.5999 29.43 92.5999C42.9 92.5999 53.81 87.6399 53.81 81.5199C53.81 81.3699 53.8 81.2098 53.78 81.0598L53.77 81.0698Z" fill="url(#paint5_linear_227_43)"/>
|
||||
<path d="M14.1562 78.0485C16.7387 76.7671 18.2372 74.5291 17.5032 73.0499C16.7692 71.5706 14.0807 71.4101 11.4982 72.6915C8.91567 73.9729 7.4172 76.211 8.15119 77.6902C8.88517 79.1695 11.5737 79.3299 14.1562 78.0485Z" fill="#FEC1C1"/>
|
||||
<path d="M22.35 75.2798C23.7583 75.2798 24.9 74.4738 24.9 73.4797C24.9 72.4856 23.7583 71.6797 22.35 71.6797C20.9416 71.6797 19.8 72.4856 19.8 73.4797C19.8 74.4738 20.9416 75.2798 22.35 75.2798Z" fill="#FEC1C1"/>
|
||||
<path d="M111.57 66.52H76.64C70.6753 66.52 65.84 71.3553 65.84 77.3199V112.76C65.84 118.725 70.6753 123.56 76.64 123.56H111.57C117.535 123.56 122.37 118.725 122.37 112.76V77.3199C122.37 71.3553 117.535 66.52 111.57 66.52Z" fill="#BF7229"/>
|
||||
<path d="M111.56 124.55H76.64C70.13 124.55 64.84 119.26 64.84 112.75V77.3199C64.84 70.8099 70.13 65.52 76.64 65.52H111.56C118.07 65.52 123.36 70.8099 123.36 77.3199V112.75C123.36 119.26 118.07 124.55 111.56 124.55ZM76.64 67.52C71.23 67.52 66.84 71.9199 66.84 77.3199V112.75C66.84 118.16 71.24 122.55 76.64 122.55H111.56C116.97 122.55 121.36 118.15 121.36 112.75V77.3199C121.36 71.9099 116.96 67.52 111.56 67.52H76.64Z" fill="#794422"/>
|
||||
<path d="M110.02 67.6299H78.19C72.22 67.6299 67.39 72.4598 67.39 78.4298V106.75C67.39 112.72 72.22 117.56 78.19 117.56H110.02C115.99 117.56 120.82 112.72 120.82 106.75V78.4298C120.82 72.4598 115.99 67.6299 110.02 67.6299ZM118.81 104.32C118.81 110.29 113.98 115.13 108.01 115.13H79.78C73.81 115.13 68.98 110.29 68.98 104.32V79.6699C68.98 73.6999 73.81 68.8599 79.78 68.8599H108.01C113.98 68.8599 118.81 73.6999 118.81 79.6699V104.32Z" fill="#F9D346"/>
|
||||
<path d="M118.81 79.6699V104.32C118.81 110.29 113.98 115.13 108.01 115.13H79.78C73.81 115.13 68.98 110.29 68.98 104.32V79.6699C68.98 73.6999 73.81 68.8599 79.78 68.8599H108.01C113.98 68.8599 118.81 73.6999 118.81 79.6699Z" fill="url(#paint6_linear_227_43)"/>
|
||||
<path d="M118.11 81.0698C118.11 80.9598 118.13 80.8499 118.13 80.7399V80.0898C118.13 74.4798 113.35 69.8999 107.51 69.8999H79.97C74.13 69.8999 69.35 74.4898 69.35 80.0898V80.7399C69.35 80.9799 69.37 81.2098 69.39 81.4398C69.39 81.4698 69.39 81.4899 69.39 81.5199C69.39 87.6399 80.3 92.5999 93.7701 92.5999C107.24 92.5999 118.15 87.6399 118.15 81.5199C118.15 81.3699 118.14 81.2098 118.12 81.0598L118.11 81.0698Z" fill="url(#paint7_linear_227_43)"/>
|
||||
<path d="M78.5013 78.0509C81.0838 76.7695 82.5823 74.5316 81.8483 73.0523C81.1143 71.5731 78.4258 71.4126 75.8433 72.694C73.2608 73.9754 71.7623 76.2134 72.4963 77.6927C73.2303 79.1719 75.9188 79.3323 78.5013 78.0509Z" fill="#FEF7D3"/>
|
||||
<path d="M86.69 75.2798C88.0983 75.2798 89.24 74.4738 89.24 73.4797C89.24 72.4856 88.0983 71.6797 86.69 71.6797C85.2817 71.6797 84.14 72.4856 84.14 73.4797C84.14 74.4738 85.2817 75.2798 86.69 75.2798Z" fill="#FEF7D3"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_227_43" x1="29.31" y1="3.79984" x2="29.8" y2="49.2699" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#48B5E1"/>
|
||||
<stop offset="0.31" stop-color="#46B0DF"/>
|
||||
<stop offset="0.64" stop-color="#44A3DD"/>
|
||||
<stop offset="0.99" stop-color="#3F8DD8"/>
|
||||
<stop offset="1" stop-color="#3F8DD8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_227_43" x1="29.68" y1="3.65988" x2="29.15" y2="26.6099" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#76D9F4"/>
|
||||
<stop offset="1" stop-color="#69C2DA" stop-opacity="0.6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_227_43" x1="93" y1="51.3599" x2="94.22" y2="18.2099" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#68B242"/>
|
||||
<stop offset="0.5" stop-color="#80C144"/>
|
||||
<stop offset="0.95" stop-color="#93CD46"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_227_43" x1="94.01" y1="3.65988" x2="93.49" y2="26.6099" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#AFE057"/>
|
||||
<stop offset="1" stop-color="#A8DD63" stop-opacity="0.6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_227_43" x1="28.59" y1="67.9099" x2="30.17" y2="107.26" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FD716C"/>
|
||||
<stop offset="0.25" stop-color="#FB6C67"/>
|
||||
<stop offset="0.52" stop-color="#F65F5A"/>
|
||||
<stop offset="0.8" stop-color="#EE4945"/>
|
||||
<stop offset="1" stop-color="#E73531"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_227_43" x1="29.4" y1="93.5999" x2="29.4" y2="72.1199" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F6706D"/>
|
||||
<stop offset="1" stop-color="#F98282"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_227_43" x1="93.65" y1="68.8199" x2="94.13" y2="114.29" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FAD430"/>
|
||||
<stop offset="0.35" stop-color="#F9CF2F"/>
|
||||
<stop offset="0.72" stop-color="#F8C22D"/>
|
||||
<stop offset="1" stop-color="#F8B42C"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_227_43" x1="93.91" y1="68.6499" x2="93.46" y2="100.08" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.1" stop-color="#FFE164"/>
|
||||
<stop offset="1" stop-color="#E8CC5B" stop-opacity="0.6"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
@@ -0,0 +1,89 @@
|
||||
<svg width="149" height="163" viewBox="0 0 149 163" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M105.4 148.58H34.5699L40.34 135.43C48.39 140.33 58.8 143.28 70.18 143.28C81.56 143.28 92.48 140.18 100.61 135.06L105.4 148.58Z" fill="#C18556"/>
|
||||
<path d="M100.61 135.06C92.48 140.18 81.84 143.28 70.18 143.28C58.52 143.28 48.39 140.33 40.34 135.43L42.21 131.15C44.13 132.03 46.1 132.82 48.11 133.51C55 135.88 62.4 137.17 70.09 137.17C77.78 137.17 84.66 135.97 91.34 133.76C93.99 132.88 96.56 131.84 99.05 130.65L100.61 135.06Z" fill="#9F6143"/>
|
||||
<path d="M107.45 148.72H32.2L41.37 127.79L42.7599 128.43C44.6499 129.29 46.59 130.07 48.52 130.73C55.43 133.11 62.6599 134.31 70.0099 134.31C77.3599 134.31 84.0999 133.19 90.7899 130.98C93.3399 130.13 95.8799 129.11 98.3199 127.94L99.8199 127.22L107.43 148.72H107.45ZM36.7899 145.72H103.2L98.11 131.34C96.02 132.28 93.89 133.11 91.74 133.82C84.75 136.13 77.44 137.31 70.02 137.31C62.6 137.31 54.77 136.05 47.55 133.57C46 133.04 44.44 132.44 42.91 131.78L36.8 145.73L36.7899 145.72Z" fill="#613218"/>
|
||||
<path d="M107.8 148.97H31.8199L31.97 148.62L41.24 127.46L42.86 128.2C44.74 129.06 46.68 129.84 48.6 130.49C55.48 132.86 62.6799 134.06 70.0099 134.06C77.34 134.06 84.05 132.94 90.71 130.74C93.25 129.9 95.77 128.88 98.21 127.71L99.96 126.87L107.79 148.97H107.8ZM32.58 148.47H107.09L99.69 127.56L98.44 128.16C95.98 129.34 93.43 130.36 90.88 131.21C84.17 133.43 77.15 134.56 70.02 134.56C62.89 134.56 55.38 133.35 48.44 130.97C46.5 130.3 44.56 129.53 42.66 128.66L41.5 128.13L32.58 148.48V148.47ZM103.56 145.97H36.41L42.78 131.45L43.0099 131.55C44.5399 132.21 46.09 132.81 47.63 133.34C54.82 135.81 62.35 137.07 70.02 137.07C77.69 137.07 84.7 135.9 91.66 133.6C93.8 132.89 95.9399 132.06 98.0099 131.13L98.2599 131.02L98.35 131.28L103.56 145.99V145.97ZM37.18 145.47H102.85L97.97 131.68C95.96 132.57 93.8999 133.37 91.8199 134.06C84.7999 136.38 77.47 137.56 70.02 137.56C62.57 137.56 54.71 136.3 47.47 133.8C45.99 133.29 44.4999 132.72 43.0399 132.1L37.18 145.47Z" fill="#592C16"/>
|
||||
<path d="M131.16 77.5601C132.79 78.4701 134.7 79.8301 136.7 80.8201C134.92 91.5001 130.62 101.34 124.45 109.69C117.87 118.61 109.15 125.85 99.05 130.65C96.56 131.84 93.99 132.88 91.34 133.76C84.66 135.97 77.52 137.17 70.09 137.17C62.66 137.17 55 135.88 48.11 133.51C46.1 132.82 44.13 132.03 42.21 131.15C31.52 126.3 22.32 118.74 15.47 109.34C7.33003 98.1701 2.53003 84.4101 2.53003 69.5201C2.53003 54.7301 7.26001 41.0601 15.29 29.9301C23.56 18.4601 35.34 9.69009 49.04 5.19009C55.67 3.02009 62.74 1.84009 70.09 1.84009C77.8 1.84009 85.2 3.13011 92.1 5.52011C105.62 10.1801 117.2 19.0201 125.3 30.5001C131.16 38.8001 135.2 48.4901 136.83 58.9701L135.58 59.5901C133.88 50.5901 130 42.2701 124.46 35.1101C116.51 24.8001 105.13 16.8601 91.84 12.6801C85.06 10.5301 77.79 9.37009 70.21 9.37009C62.63 9.37009 56.05 10.4301 49.53 12.3801C36.07 16.4201 24.49 24.3001 16.37 34.6001C12.42 39.6001 9.29001 45.1601 7.14001 51.1401C4.99001 57.1201 3.83002 63.5101 3.83002 70.1501C3.83002 83.5301 8.55001 95.8801 16.54 105.92C23.28 114.36 32.32 121.15 42.82 125.5C44.71 126.29 46.64 127 48.62 127.62C55.39 129.75 62.66 130.91 70.21 130.91C77.76 130.91 84.53 129.83 91.1 127.85C93.7 127.06 96.22 126.12 98.67 125.06C108.6 120.74 117.16 114.24 123.63 106.23C129.69 98.7301 133.92 89.8901 135.67 80.3001C133.7 79.4101 131.82 78.1901 130.22 77.3801C129.16 76.8301 128.1 76.2901 127.03 75.7501C127.05 75.6001 127.06 75.4401 127.08 75.2901C128.44 76.0501 129.8 76.8001 131.16 77.5601Z" fill="url(#paint0_linear_227_407)"/>
|
||||
<path d="M54.41 21.5102C44.13 24.8702 35.3 31.4402 29.11 40.0402L23.59 36.0002C30.61 26.2502 40.61 18.7902 52.26 14.9802L54.41 21.5102Z" fill="#3275B4"/>
|
||||
<path d="M29.22 40.7401L22.89 36.1101L23.18 35.7101C30.31 25.8001 40.58 18.2701 52.1 14.5101L52.57 14.3601L55.03 21.8401L54.55 22.0001C44.56 25.2601 35.67 31.7801 29.5 40.3501L29.21 40.7601L29.22 40.7401ZM24.29 35.8901L29 39.3401C35.18 30.9401 43.94 24.5201 53.78 21.1901L51.94 15.6101C40.97 19.3101 31.18 26.4901 24.29 35.8901Z" fill="#2B6DA3"/>
|
||||
<path d="M29.11 40.04C23.13 48.33 19.61 58.51 19.61 69.51V69.76L12.81 69.66V69.51C12.81 57 16.8 45.43 23.59 36L29.11 40.04Z" fill="#C13534"/>
|
||||
<path d="M20.11 70.26L12.31 70.14V69.5C12.31 57.27 16.07 45.58 23.18 35.7L23.47 35.29L29.8 39.92L29.51 40.32C23.36 48.85 20.1 58.94 20.1 69.5V70.26H20.11ZM13.31 69.16L19.11 69.2401C19.16 58.7301 22.37 48.68 28.41 40.14L23.7 36.69C16.96 46.22 13.38 57.43 13.31 69.16Z" fill="#AD3131"/>
|
||||
<path d="M127.09 75.2902C126.04 85.8402 122.13 95.5401 116.15 103.62L110.64 99.5901C116.49 91.7201 120.1 82.0901 120.53 71.6501C122.72 72.8601 124.91 74.0702 127.09 75.2902Z" fill="#3275B4"/>
|
||||
<path d="M116.25 104.31L109.93 99.6901L110.23 99.2901C116.22 91.2301 119.61 81.6601 120.02 71.6301L120.05 70.8201L120.76 71.2101C122.95 72.4201 125.14 73.6301 127.32 74.8501L127.61 75.0101L127.58 75.3401C126.55 85.6701 122.74 95.5501 116.55 103.92L116.25 104.32V104.31ZM111.34 99.4801L116.04 102.92C121.89 94.8701 125.52 85.4301 126.56 75.5601C124.71 74.5201 122.85 73.5001 120.99 72.4701C120.43 82.2401 117.11 91.5501 111.34 99.4801Z" fill="#2B6DA3"/>
|
||||
<path d="M29.38 99.3599L23.83 103.34C16.93 93.8899 12.84 82.2499 12.81 69.6599L19.61 69.7599C19.66 80.8299 23.28 91.0599 29.38 99.3599Z" fill="#589D43"/>
|
||||
<path d="M23.72 104.03L23.43 103.63C16.19 93.7099 12.34 81.9599 12.31 69.6599V69.1499L20.11 69.2699V69.7599C20.16 80.3899 23.5 90.5199 29.78 99.0699L30.08 99.4799L23.72 104.04V104.03ZM13.32 70.1599C13.45 81.8999 17.12 93.1099 23.95 102.64L28.69 99.2399C22.57 90.7399 19.27 80.7399 19.13 70.2499L13.33 70.1599H13.32Z" fill="#4C8938"/>
|
||||
<path d="M127.09 63.82L120.51 67.1C120.05 57.22 116.74 48.08 111.39 40.49L116.95 36.5C122.49 44.38 126.1 53.71 127.09 63.82Z" fill="#589D43"/>
|
||||
<path d="M120.05 67.89L120.01 67.12C119.57 57.64 116.45 48.5301 110.98 40.7701L110.69 40.36L117.06 35.79L117.35 36.2C123.07 44.34 126.61 53.87 127.58 63.76L127.61 64.1L120.03 67.88L120.05 67.89ZM112.09 40.6C117.34 48.21 120.41 57.07 120.98 66.31L126.57 63.5201C125.59 54.09 122.23 45.01 116.84 37.19L112.09 40.6Z" fill="#4C8938"/>
|
||||
<path d="M116.95 36.5L111.39 40.49C105.34 31.88 96.66 25.25 86.52 21.76L88.76 15.26C100.25 19.22 110.08 26.74 116.95 36.5Z" fill="#EB992A"/>
|
||||
<path d="M111.27 41.1901L110.98 40.7801C104.96 32.2201 96.22 25.6301 86.36 22.2401L85.89 22.0801L88.46 14.6301L88.93 14.7901C100.3 18.7101 110.4 26.3201 117.37 36.2101L117.66 36.6201L111.29 41.1901H111.27ZM87.16 21.4501C96.87 24.9001 105.48 31.3901 111.51 39.7901L116.26 36.3801C109.52 26.9901 99.9 19.7401 89.08 15.8901L87.17 21.4401L87.16 21.4501Z" fill="#D18428"/>
|
||||
<path d="M53.69 117.26L51.46 123.77C49.72 123.17 48.01 122.48 46.35 121.72C37.35 117.62 29.61 111.25 23.83 103.34L29.38 99.3599C35.11 107.16 43.04 113.26 52.25 116.74C52.73 116.92 53.21 117.09 53.69 117.26Z" fill="#EB992A"/>
|
||||
<path d="M51.77 124.4L51.3 124.24C49.58 123.65 47.85 122.95 46.15 122.17C37.16 118.07 29.3 111.66 23.43 103.63L23.13 103.22L29.49 98.6599L29.78 99.0599C35.54 106.9 43.37 112.85 52.42 116.27C52.9 116.45 53.37 116.62 53.85 116.79L54.32 116.96L51.77 124.41V124.4ZM24.54 103.45C30.28 111.15 37.88 117.31 46.56 121.26C48.08 121.95 49.62 122.58 51.15 123.13L53.06 117.56C52.73 117.44 52.4 117.32 52.08 117.2C42.99 113.77 35.12 107.84 29.28 100.04L24.54 103.44V103.45Z" fill="#D18428"/>
|
||||
<path d="M88.76 15.2601L86.52 21.7601C81.37 19.9901 75.84 19.0301 70.09 19.0301C64.34 19.0301 59.34 19.9001 54.41 21.5101L52.26 14.9801C57.87 13.1301 63.87 12.1401 70.09 12.1401C76.63 12.1401 82.91 13.2401 88.76 15.2601Z" fill="#C13534"/>
|
||||
<path d="M86.83 22.3901L86.36 22.2301C81.14 20.4401 75.67 19.5301 70.09 19.5301C64.51 19.5301 59.55 20.3601 54.56 21.9901L54.09 22.1401L51.63 14.6601L52.1 14.5001C57.86 12.6001 63.91 11.6301 70.09 11.6301C76.27 11.6301 82.88 12.6901 88.92 14.7801L89.39 14.9401L86.82 22.3901H86.83ZM70.09 18.5301C75.61 18.5301 81.03 19.4001 86.21 21.1301L88.12 15.5701C82.32 13.6201 76.26 12.6401 70.09 12.6401C63.92 12.6401 58.41 13.5301 52.89 15.3001L54.73 20.8801C59.68 19.3201 64.84 18.5301 70.09 18.5301Z" fill="#AD3131"/>
|
||||
<path d="M66.39 57.92C63.78 58.74 61.55 60.42 60.03 62.62L29.11 40.04C35.3 31.44 44.13 24.87 54.41 21.51L66.39 57.92Z" fill="#49A6DF"/>
|
||||
<path d="M60.15 63.3199L28.41 40.1499L28.7 39.7499C34.99 31.0099 44.06 24.3699 54.25 21.0399L54.72 20.8899L67.01 58.2499L66.53 58.3999C64.07 59.1699 61.91 60.7699 60.43 62.9099L60.14 63.3299L60.15 63.3199ZM29.81 39.9299L59.92 61.9199C61.41 59.9499 63.45 58.4399 65.76 57.5999L54.09 22.1399C44.45 25.3999 35.86 31.6899 29.81 39.9299Z" fill="#3FA1D1"/>
|
||||
<path d="M57.88 69.51C57.88 69.77 57.89 70.03 57.91 70.29L19.61 69.76V69.51C19.61 58.51 23.13 48.33 29.11 40.04L60.03 62.62C58.67 64.58 57.88 66.95 57.88 69.51Z" fill="#E9554F"/>
|
||||
<path d="M58.45 70.7901L19.11 70.2501V69.5101C19.11 58.7401 22.43 48.4501 28.7 39.7501L28.99 39.3401L60.71 62.5001L60.43 62.9001C59.08 64.8401 58.37 67.1301 58.37 69.5101C58.37 69.7601 58.38 70.0001 58.4 70.2501L58.44 70.7901H58.45ZM20.11 69.2601L57.38 69.7801C57.38 69.6901 57.38 69.6001 57.38 69.5101C57.38 67.0901 58.06 64.7601 59.35 62.7401L29.23 40.7401C23.31 49.1201 20.17 58.9601 20.12 69.2701L20.11 69.2601Z" fill="#D84A4A"/>
|
||||
<path d="M60.5 77.02L29.38 99.36C23.28 91.06 19.66 80.83 19.61 69.76L57.91 70.29C58.07 72.82 59.01 75.14 60.5 77.02Z" fill="#79C153"/>
|
||||
<path d="M29.27 100.05L28.98 99.65C22.57 90.93 19.16 80.6 19.11 69.76V69.25L58.38 69.79L58.41 70.25C58.56 72.61 59.42 74.84 60.89 76.7L61.22 77.11L29.27 100.04V100.05ZM20.12 70.26C20.27 80.54 23.5 90.33 29.5 98.66L59.8 76.91C58.48 75.1 57.68 73 57.46 70.78L20.13 70.26H20.12Z" fill="#6EAA4B"/>
|
||||
<path d="M66.15 81.01L53.88 116.71L53.69 117.26C53.21 117.09 52.73 116.92 52.25 116.74C43.04 113.26 35.11 107.16 29.38 99.36L60.5 77.02C61.94 78.85 63.9 80.25 66.15 81.01Z" fill="#FBD348"/>
|
||||
<path d="M54 117.9L53.52 117.73C53.04 117.56 52.56 117.39 52.07 117.21C42.83 113.72 34.84 107.65 28.97 99.6601L28.67 99.2501L60.59 76.3401L60.89 76.7201C62.29 78.5001 64.16 79.8201 66.31 80.5501L66.79 80.7101L54 117.91V117.9ZM30.09 99.4701C35.82 107.11 43.53 112.91 52.43 116.27C52.75 116.39 53.07 116.5 53.39 116.62L53.42 116.55L65.53 81.3201C63.55 80.5601 61.8 79.3201 60.42 77.7101L30.09 99.4801V99.4701Z" fill="#E5BE42"/>
|
||||
<path d="M85.97 117.43C80.98 119.08 75.64 119.98 70.09 119.98C64.54 119.98 58.83 119.02 53.69 117.26L53.88 116.71L66.15 81.01C67.39 81.43 68.71 81.66 70.09 81.66C71.47 81.66 72.77 81.44 73.99 81.02L85.53 116.1L85.97 117.43Z" fill="#79C153"/>
|
||||
<path d="M70.09 120.48C64.42 120.48 58.85 119.56 53.53 117.73L53.06 117.57L65.84 80.3801L66.31 80.5401C68.76 81.3701 71.48 81.3601 73.83 80.5501L74.31 80.3801L86.61 117.75L86.14 117.91C80.97 119.62 75.57 120.49 70.1 120.49L70.09 120.48ZM54.33 116.94C64.3 120.24 75.31 120.31 85.34 117.1L85.06 116.25L73.67 81.6401C71.39 82.3201 68.83 82.3201 66.46 81.6301L54.32 116.94H54.33Z" fill="#6EAA4B"/>
|
||||
<path d="M120.55 71.1701C120.55 71.3301 120.54 71.4901 120.53 71.6501C120.1 82.0901 116.49 91.7201 110.64 99.5901L79.72 77.0001C81.13 75.2101 82.0399 73.0201 82.2599 70.6301L119.64 71.1601H120.55V71.1701Z" fill="#49A6DF"/>
|
||||
<path d="M110.74 100.28L79 77.0901L79.32 76.6801C80.71 74.9201 81.55 72.8101 81.75 70.5701L81.79 70.1101L121.04 70.6601V71.1601C121.04 71.3301 121.04 71.5001 121.02 71.6701C120.6 81.9001 117.15 91.6501 111.03 99.8801L110.73 100.28H110.74ZM80.42 76.8901L110.53 98.8901C116.33 90.9201 119.61 81.5201 120.03 71.6601H119.64L82.71 71.1301C82.44 73.2101 81.66 75.1901 80.43 76.8901H80.42Z" fill="#3FA1D1"/>
|
||||
<path d="M110.63 99.59C105.29 106.77 98.08 112.49 89.72 116.02C88.49 116.54 87.24 117.01 85.97 117.43L85.53 116.1L73.99 81.02C76.27 80.26 78.25 78.85 79.71 77L110.63 99.59Z" fill="#E9554F"/>
|
||||
<path d="M85.66 118.06L85.06 116.26L73.36 80.7101L73.83 80.5501C76 79.8301 77.9 78.4901 79.32 76.6901L79.62 76.3101L111.34 99.4801L111.04 99.8901C105.6 107.21 98.29 112.95 89.92 116.48C88.68 117.01 87.4 117.48 86.13 117.9L85.66 118.06ZM74.62 81.3201L86.29 116.79C87.38 116.42 88.46 116 89.53 115.55C97.58 112.15 104.62 106.67 109.93 99.6901L79.8 77.6801C78.4 79.3201 76.63 80.5701 74.62 81.3301V81.3201Z" fill="#D84A4A"/>
|
||||
<path d="M119.58 71.12C119.58 71.12 119.62 71.14 119.64 71.16L82.26 70.63C82.29 70.26 82.31 69.89 82.31 69.51C82.31 67.04 81.57 64.74 80.3 62.82L111.4 40.49C116.75 48.08 120.06 57.22 120.52 67.1L119.67 67.52C118.2 68.25 118.15 70.32 119.58 71.12Z" fill="#79C153"/>
|
||||
<path d="M120.91 71.67L81.72 71.11L81.76 70.58C81.79 70.22 81.81 69.87 81.81 69.5C81.81 67.21 81.14 64.99 79.88 63.09L79.61 62.69L80 62.41L111.51 39.79L111.8 40.2C117.38 48.11 120.56 57.4 121.01 67.08L121.03 67.41L119.89 67.97C119.37 68.23 119.05 68.73 119.04 69.31C119.03 69.88 119.32 70.39 119.81 70.68L119.98 70.8L120.9 71.68L120.91 71.67ZM82.79 70.13L118.39 70.63C118.15 70.23 118.02 69.76 118.03 69.2701C118.05 68.3101 118.58 67.49 119.44 67.06L120 66.79C119.51 57.59 116.5 48.76 111.28 41.18L80.97 62.94C82.17 64.92 82.81 67.17 82.81 69.5C82.81 69.71 82.81 69.92 82.79 70.13Z" fill="#6EAA4B"/>
|
||||
<path d="M111.39 40.49L80.29 62.82C78.82 60.6 76.64 58.89 74.06 58.01L86.52 21.76C96.66 25.25 105.34 31.88 111.39 40.49Z" fill="#FBD348"/>
|
||||
<path d="M80.16 63.5199L79.87 63.0899C78.45 60.9399 76.33 59.3099 73.9 58.4799L73.43 58.3199L86.22 21.1199L86.69 21.2799C96.75 24.7399 105.67 31.4599 111.81 40.1999L112.09 40.5999L111.69 40.8899L80.17 63.5199H80.16ZM74.7 57.6999C76.98 58.5799 78.98 60.1299 80.42 62.1099L110.7 40.3699C104.79 32.1399 96.35 25.7799 86.83 22.3899L74.69 57.6999H74.7Z" fill="#E5BE42"/>
|
||||
<path d="M86.52 21.76L74.06 58.01C72.82 57.58 71.48 57.35 70.09 57.35C68.8 57.35 67.56 57.55 66.39 57.92L54.41 21.51C59.34 19.9 64.62 19.03 70.09 19.03C75.84 19.03 81.37 19.99 86.52 21.76Z" fill="#E9554F"/>
|
||||
<path d="M74.37 58.64L73.9 58.48C71.58 57.68 68.95 57.64 66.54 58.39L66.07 58.54L53.78 21.19L54.26 21.03C59.35 19.37 64.68 18.53 70.1 18.53C75.79 18.53 81.37 19.46 86.69 21.29L87.16 21.45L74.37 58.65V58.64ZM70.09 56.85C71.35 56.85 72.57 57.03 73.75 57.38L85.89 22.07C80.81 20.38 75.5 19.53 70.1 19.53C64.7 19.53 59.9 20.3 55.05 21.83L66.72 57.3C67.82 57 68.95 56.85 70.1 56.85H70.09Z" fill="#D84A4A"/>
|
||||
<path d="M88.12 123.97C82.45 125.85 76.39 126.87 70.09 126.87C63.79 126.87 57.3 125.78 51.46 123.77L53.69 117.26C58.83 119.02 64.35 119.98 70.09 119.98C75.83 119.98 80.98 119.08 85.97 117.43L88.12 123.97Z" fill="#589D43"/>
|
||||
<path d="M70.09 127.36C63.65 127.36 57.33 126.31 51.3 124.23L50.83 124.07L53.38 116.61L53.85 116.77C59.07 118.56 64.53 119.46 70.09 119.46C75.65 119.46 80.75 118.61 85.81 116.94L86.2899 116.78L88.75 124.27L88.28 124.43C82.43 126.37 76.31 127.35 70.09 127.35V127.36ZM52.1 123.45C57.88 125.38 63.93 126.36 70.1 126.36C76.27 126.36 81.89 125.44 87.5 123.64L85.66 118.05C75.43 121.32 64.1899 121.26 54.0099 117.88L52.1 123.44V123.45Z" fill="#4C8938"/>
|
||||
<path d="M116.14 103.62C110.78 110.88 103.73 116.83 95.59 120.88C93.19 122.08 90.7 123.12 88.12 123.97L85.97 117.43C87.24 117.01 88.49 116.54 89.72 116.02C98.08 112.49 105.29 106.77 110.63 99.5901L116.14 103.62Z" fill="#C13534"/>
|
||||
<path d="M87.8 124.6L85.34 117.11L85.81 116.95C87.05 116.54 88.3 116.07 89.52 115.55C97.73 112.09 104.88 106.46 110.22 99.2801L110.52 98.8801L116.84 103.5L116.54 103.9C111.12 111.24 103.95 117.26 95.81 121.31C93.34 122.54 90.81 123.59 88.27 124.43L87.8 124.59V124.6ZM86.6 117.74L88.44 123.33C90.77 122.54 93.1 121.56 95.37 120.43C103.22 116.52 110.15 110.75 115.44 103.72L110.73 100.28C105.32 107.41 98.13 113 89.91 116.48C88.82 116.94 87.71 117.36 86.6 117.74Z" fill="#AD3131"/>
|
||||
<path d="M114.8 158V160.31H114.28C112.99 155.97 108.98 152.81 104.24 152.81H35.56C30.81 152.81 26.8 155.97 25.51 160.31H25.16V158C25.16 152.21 29.86 147.52 35.64 147.52H104.32C110.11 147.52 114.8 152.21 114.8 158Z" fill="#D9AA76"/>
|
||||
<path d="M135.67 80.2999C133.92 89.8899 129.69 98.7299 123.63 106.23C117.16 114.24 108.6 120.74 98.67 125.06C96.22 126.12 93.7 127.06 91.1 127.85C84.53 129.83 77.52 130.91 70.21 130.91C62.9 130.91 55.39 129.75 48.62 127.62C46.64 127 44.7099 126.29 42.8199 125.5C32.3199 121.15 23.2799 114.36 16.5399 105.92C8.54995 95.8799 3.82996 83.5299 3.82996 70.1499C3.82996 63.5099 4.98995 57.1199 7.13995 51.1399C9.28995 45.1599 12.42 39.5999 16.37 34.5999C24.49 24.2999 36.07 16.4199 49.53 12.3799C56.05 10.4299 62.99 9.36987 70.21 9.36987C77.79 9.36987 85.06 10.5299 91.84 12.6799C105.13 16.8599 116.51 24.7999 124.46 35.1099C130 42.2699 133.88 50.5899 135.58 59.5899L127.09 63.8199C126.1 53.7099 122.49 44.3799 116.95 36.4999C110.08 26.7399 100.25 19.2199 88.7599 15.2599C82.91 13.2399 76.63 12.1399 70.09 12.1399C63.55 12.1399 57.8699 13.1299 52.2599 14.9799C40.6099 18.7899 30.61 26.2499 23.59 35.9999C16.8 45.4299 12.81 56.9999 12.81 69.5099V69.6599C12.84 82.2499 16.93 93.8899 23.83 103.34C29.61 111.25 37.35 117.62 46.35 121.72C48.01 122.48 49.72 123.17 51.46 123.77C57.3 125.78 63.57 126.87 70.09 126.87C76.61 126.87 82.45 125.85 88.12 123.97C90.7 123.12 93.19 122.08 95.59 120.88C103.73 116.83 110.78 110.88 116.14 103.62C122.03 95.6599 125.92 86.1199 127.03 75.7499C128.1 76.2899 129.16 76.8299 130.22 77.3799C131.82 78.1899 133.7 79.4099 135.67 80.2999Z" fill="url(#paint1_linear_227_407)"/>
|
||||
<path d="M70.47 10.1999C72.0275 10.1999 73.29 8.95524 73.29 7.41989C73.29 5.88454 72.0275 4.63989 70.47 4.63989C68.9126 4.63989 67.65 5.88454 67.65 7.41989C67.65 8.95524 68.9126 10.1999 70.47 10.1999Z" fill="#F7D369"/>
|
||||
<path d="M70.47 10.4499C68.78 10.4499 67.4 9.08989 67.4 7.41989C67.4 5.74989 68.78 4.38989 70.47 4.38989C72.16 4.38989 73.54 5.74989 73.54 7.41989C73.54 9.08989 72.16 10.4499 70.47 10.4499ZM70.47 4.88989C69.05 4.88989 67.9 6.02989 67.9 7.41989C67.9 8.80989 69.05 9.94989 70.47 9.94989C71.89 9.94989 73.04 8.80989 73.04 7.41989C73.04 6.02989 71.89 4.88989 70.47 4.88989Z" fill="#CEA43C"/>
|
||||
<path d="M71.658 134.573C73.0543 133.935 73.6613 132.269 73.0137 130.852C72.3661 129.436 70.7092 128.805 69.3128 129.444C67.9165 130.082 67.3095 131.748 67.9571 133.164C68.6047 134.581 70.2616 135.211 71.658 134.573Z" fill="#F7D369"/>
|
||||
<path d="M70.49 135.11C70.13 135.11 69.76 135.04 69.41 134.91C68.65 134.62 68.04 134.05 67.7 133.31C67.36 132.57 67.33 131.74 67.61 130.97C67.89 130.2 68.45 129.6 69.19 129.26C70.71 128.57 72.52 129.26 73.22 130.79C73.56 131.53 73.59 132.36 73.31 133.13C73.03 133.89 72.47 134.5 71.73 134.84C71.33 135.02 70.91 135.11 70.48 135.11H70.49ZM70.44 129.49C70.09 129.49 69.74 129.56 69.4 129.72C68.79 130 68.32 130.51 68.09 131.15C67.86 131.79 67.88 132.49 68.17 133.11C68.46 133.73 68.96 134.21 69.6 134.45C70.23 134.69 70.92 134.67 71.54 134.39C72.15 134.11 72.62 133.6 72.86 132.96C73.09 132.32 73.07 131.62 72.78 131C72.35 130.05 71.42 129.49 70.45 129.49H70.44Z" fill="#CEA43C"/>
|
||||
<path d="M116.316 27.5324C117.421 26.4664 117.44 24.6936 116.358 23.5727C115.277 22.4518 113.505 22.4073 112.4 23.4732C111.295 24.5392 111.276 26.312 112.357 27.4329C113.438 28.5538 115.211 28.5983 116.316 27.5324Z" fill="#F7D369"/>
|
||||
<path d="M114.39 28.5599C113.59 28.5599 112.78 28.2399 112.18 27.6199C111.61 27.0299 111.3 26.2599 111.31 25.4399C111.32 24.6199 111.65 23.87 112.23 23.3C112.8 22.75 113.54 22.46 114.32 22.46H114.39C115.2 22.48 115.96 22.8099 116.53 23.3999C117.7 24.6199 117.68 26.55 116.48 27.71C115.9 28.27 115.14 28.55 114.38 28.55L114.39 28.5599ZM114.32 22.96C113.66 22.96 113.05 23.2099 112.57 23.6599C112.08 24.1299 111.81 24.7599 111.8 25.4399C111.8 26.1199 112.05 26.7699 112.53 27.2599C113.51 28.2799 115.13 28.3199 116.13 27.3499C117.13 26.3799 117.15 24.7599 116.17 23.7499C115.69 23.2599 115.06 22.98 114.38 22.96H114.32Z" fill="#CEA43C"/>
|
||||
<path d="M28.4023 114.458C28.9721 113.008 28.2757 111.378 26.8468 110.816C25.4179 110.254 23.7976 110.974 23.2278 112.424C22.658 113.873 23.3545 115.503 24.7834 116.065C26.2123 116.627 27.8325 115.907 28.4023 114.458Z" fill="#F7D369"/>
|
||||
<path d="M25.8 116.54C25.43 116.54 25.06 116.47 24.7 116.33C23.15 115.72 22.38 113.94 23 112.37C23.62 110.8 25.39 110.02 26.94 110.63C27.69 110.93 28.29 111.5 28.61 112.25C28.93 113 28.94 113.83 28.64 114.59C28.34 115.35 27.77 115.95 27.02 116.28C26.63 116.45 26.21 116.54 25.8 116.54ZM25.85 110.91C24.83 110.91 23.87 111.53 23.47 112.54C22.95 113.86 23.59 115.34 24.89 115.85C25.52 116.1 26.21 116.08 26.83 115.81C27.45 115.53 27.93 115.03 28.19 114.39C28.44 113.75 28.43 113.06 28.16 112.43C27.89 111.81 27.4 111.32 26.77 111.08C26.47 110.96 26.16 110.91 25.86 110.91H25.85Z" fill="#CEA43C"/>
|
||||
<path d="M28.0758 27.4024C29.287 26.4588 29.4929 24.6979 28.5358 23.4693C27.5787 22.2407 25.8209 22.0096 24.6097 22.9531C23.3985 23.8967 23.1925 25.6576 24.1497 26.8862C25.1068 28.1149 26.8646 28.3459 28.0758 27.4024Z" fill="#F7D369"/>
|
||||
<path d="M26.37 28.2601C25.46 28.2601 24.5501 27.8501 23.9401 27.0701C23.4401 26.4201 23.21 25.6201 23.31 24.8201C23.41 24.0101 23.81 23.2901 24.45 22.7901C25.09 22.2901 25.8801 22.0701 26.6901 22.1801C27.5001 22.2901 28.2201 22.7001 28.7201 23.3401C29.7601 24.6701 29.53 26.5901 28.21 27.6201C27.66 28.0501 27.01 28.2501 26.36 28.2501L26.37 28.2601ZM26.3 22.6601C25.74 22.6601 25.21 22.8401 24.76 23.1901C24.23 23.6101 23.89 24.2101 23.81 24.8801C23.73 25.5601 23.92 26.2301 24.34 26.7701C25.21 27.8801 26.81 28.1001 27.92 27.2401C29.02 26.3801 29.21 24.7801 28.34 23.6601C27.92 23.1201 27.31 22.7701 26.64 22.6901C26.53 22.6801 26.42 22.6701 26.31 22.6701L26.3 22.6601Z" fill="#CEA43C"/>
|
||||
<path d="M117.112 114.862C117.664 113.429 116.934 111.814 115.48 111.254C114.027 110.694 112.401 111.402 111.849 112.834C111.297 114.267 112.028 115.882 113.481 116.442C114.935 117.002 116.56 116.295 117.112 114.862Z" fill="#F7D369"/>
|
||||
<path d="M114.52 116.9C114.14 116.9 113.77 116.83 113.41 116.69C112.65 116.4 112.04 115.83 111.71 115.08C111.38 114.34 111.35 113.51 111.64 112.75C111.93 111.99 112.5 111.4 113.25 111.07C114 110.74 114.83 110.73 115.59 111.02C117.17 111.63 117.96 113.39 117.36 114.95C117.07 115.71 116.5 116.3 115.75 116.63C115.36 116.8 114.94 116.89 114.52 116.89V116.9ZM114.47 111.33C114.12 111.33 113.77 111.4 113.44 111.55C112.82 111.82 112.34 112.32 112.1 112.95C111.86 113.58 111.88 114.27 112.16 114.89C112.44 115.51 112.95 115.99 113.59 116.23C114.23 116.48 114.93 116.46 115.55 116.19C116.17 115.92 116.65 115.42 116.89 114.79C117.39 113.49 116.73 112.01 115.41 111.5C115.11 111.38 114.79 111.33 114.48 111.33H114.47Z" fill="#CEA43C"/>
|
||||
<path d="M9.02174 71.8926C10.2329 70.949 10.4389 69.1881 9.48173 67.9595C8.52458 66.7309 6.7668 66.4998 5.55561 67.4434C4.34441 68.3869 4.13847 70.1479 5.09561 71.3765C6.05276 72.6051 7.81054 72.8362 9.02174 71.8926Z" fill="#F7D369"/>
|
||||
<path d="M7.31994 72.7501C7.18994 72.7501 7.04994 72.7501 6.91994 72.7201C6.10994 72.6201 5.38994 72.2001 4.88994 71.5601C3.84994 70.2301 4.07995 68.3101 5.39995 67.2801C6.71995 66.2501 8.63995 66.5001 9.67995 67.8301C10.18 68.4801 10.41 69.2801 10.31 70.0801C10.21 70.8901 9.80994 71.6101 9.16994 72.1101C8.63994 72.5301 7.98995 72.7401 7.32995 72.7401L7.31994 72.7501ZM7.23995 67.1501C6.69995 67.1501 6.15994 67.3201 5.69994 67.6801C4.59994 68.5401 4.40996 70.1401 5.27996 71.2601C5.69996 71.8001 6.30994 72.1501 6.97994 72.2401C7.65994 72.3301 8.31997 72.1501 8.84997 71.7301C9.37997 71.3101 9.71995 70.7101 9.79995 70.0401C9.87995 69.3601 9.68995 68.6901 9.26995 68.1501C8.75995 67.5001 7.99995 67.1501 7.23995 67.1501Z" fill="#CEA43C"/>
|
||||
<path d="M114.28 160.31H25.51C26.8 155.97 30.81 152.81 35.56 152.81H104.24C108.98 152.81 112.99 155.97 114.28 160.31Z" fill="#C78754"/>
|
||||
<path d="M82.15 70.0001C82.15 71.0501 82.01 72.0701 81.73 73.0401C81.73 72.2001 81.69 71.3801 81.59 70.5401C81.43 69.1801 81.08 67.8201 80.54 66.5501C79.77 64.6801 78.59 63.0101 76.96 61.8401C74.64 60.1801 71.59 59.6801 68.8 60.2701C64.24 61.2401 60.47 65.1801 59.75 69.7701C59.47 71.5501 59.65 73.3701 60.22 75.0801C60.7 76.5601 61.47 77.9401 62.48 79.1401C60.57 77.7001 59.14 75.7101 58.41 73.4301C58.06 72.3501 57.88 71.2001 57.88 70.0001C57.88 63.5701 63.31 58.3501 70.02 58.3501C74.65 58.3501 78.68 60.8501 80.71 64.5101C81.62 66.1501 82.15 68.0101 82.15 70.0001Z" fill="#DBAB77"/>
|
||||
<path d="M81.7299 73.04V73.06C80.33 78.01 75.62 81.65 70.02 81.65C67.17 81.65 64.5499 80.71 62.4799 79.13C61.4699 77.94 60.69 76.55 60.22 75.07C62.46 76.78 65.27 77.79 68.1 77.75C72.92 77.68 77.5699 74.6101 79.5099 70.2101C80.0299 69.0401 80.36 67.8 80.53 66.54C81.06 67.81 81.41 69.18 81.58 70.53C81.68 71.37 81.72 72.19 81.72 73.03L81.7299 73.04Z" fill="#B5724C"/>
|
||||
<path d="M80.54 66.5501C80.37 67.8101 80.04 69.0501 79.52 70.2201C77.58 74.6201 72.93 77.6901 68.11 77.7601C65.28 77.8001 62.47 76.7901 60.23 75.0801C59.66 73.3801 59.48 71.5501 59.76 69.7701C60.48 65.1801 64.25 61.2301 68.81 60.2701C71.6 59.6801 74.65 60.1801 76.97 61.8401C78.6 63.0101 79.78 64.6801 80.55 66.5501H80.54Z" fill="#CC8E55"/>
|
||||
<path d="M70.51 83.17C62.71 83.17 56.37 76.97 56.37 69.36C56.37 61.75 62.71 55.55 70.51 55.55C78.31 55.55 84.65 61.75 84.65 69.36C84.65 76.97 78.31 83.17 70.51 83.17ZM70.51 58.54C64.37 58.54 59.37 63.39 59.37 69.35C59.37 75.31 64.37 80.16 70.51 80.16C76.65 80.16 81.65 75.31 81.65 69.35C81.65 63.39 76.65 58.54 70.51 58.54Z" fill="#613218"/>
|
||||
<path d="M117.17 161.87H24.53V158.06C24.53 151.45 29.9 146.08 36.51 146.08H105.19C111.8 146.08 117.17 151.45 117.17 158.06V161.87ZM27.53 158.87H114.17V158.06C114.17 153.11 110.14 149.08 105.19 149.08H36.51C31.56 149.08 27.53 153.11 27.53 158.06V158.87Z" fill="#613218"/>
|
||||
<path d="M117.42 162.12H24.28V158.06C24.28 151.32 29.77 145.83 36.51 145.83H105.19C111.93 145.83 117.42 151.32 117.42 158.06V162.12ZM24.78 161.62H116.92V158.06C116.92 151.59 111.66 146.33 105.19 146.33H36.51C30.04 146.33 24.78 151.59 24.78 158.06V161.62ZM114.42 159.12H27.28V158.06C27.28 152.97 31.42 148.83 36.51 148.83H105.19C110.28 148.83 114.42 152.97 114.42 158.06V159.12ZM27.78 158.62H113.92V158.06C113.92 153.25 110 149.33 105.19 149.33H36.51C31.7 149.33 27.78 153.25 27.78 158.06V158.62Z" fill="#592C16"/>
|
||||
<path d="M70.29 138.59C31.67 138.59 0.25 107.56 0.25 69.42C0.25 31.28 31.67 0.25 70.29 0.25C108.91 0.25 140.33 31.28 140.33 69.42C140.33 107.56 108.91 138.59 70.29 138.59ZM70.29 3.26001C33.33 3.26001 3.25 32.94 3.25 69.43C3.25 105.92 33.32 135.6 70.29 135.6C107.26 135.6 137.33 105.92 137.33 69.43C137.33 32.94 107.26 3.26001 70.29 3.26001Z" fill="#613218"/>
|
||||
<path d="M70.29 138.84C31.54 138.84 0 107.7 0 69.42C0 31.14 31.53 0 70.29 0C109.05 0 140.58 31.14 140.58 69.42C140.58 107.7 109.05 138.84 70.29 138.84ZM70.29 0.51001C31.81 0.51001 0.5 31.43 0.5 69.43C0.5 107.43 31.81 138.35 70.29 138.35C108.77 138.35 140.08 107.43 140.08 69.43C140.08 31.43 108.77 0.51001 70.29 0.51001ZM70.29 135.84C33.19 135.84 3 106.05 3 69.42C3 32.79 33.18 3 70.29 3C107.4 3 137.58 32.79 137.58 69.42C137.58 106.05 107.4 135.84 70.29 135.84ZM70.29 3.51001C33.46 3.51001 3.5 33.08 3.5 69.43C3.5 105.78 33.46 135.35 70.29 135.35C107.12 135.35 137.08 105.78 137.08 69.43C137.08 33.08 107.12 3.51001 70.29 3.51001Z" fill="#592C16"/>
|
||||
<path d="M70.29 127.14C38.07 127.14 11.86 101.25 11.86 69.43C11.86 37.61 38.07 11.72 70.29 11.72C102.51 11.72 128.72 37.61 128.72 69.43C128.72 101.25 102.51 127.14 70.29 127.14ZM70.29 14.71C39.72 14.71 14.86 39.25 14.86 69.42C14.86 99.59 39.73 124.13 70.29 124.13C100.85 124.13 125.72 99.59 125.72 69.42C125.72 39.25 100.85 14.71 70.29 14.71Z" fill="#613218"/>
|
||||
<path d="M70.29 127.39C37.93 127.39 11.61 101.39 11.61 69.43C11.61 37.47 37.94 11.47 70.29 11.47C102.64 11.47 128.97 37.47 128.97 69.43C128.97 101.39 102.64 127.39 70.29 127.39ZM70.29 11.96C38.21 11.96 12.11 37.74 12.11 69.42C12.11 101.1 38.21 126.88 70.29 126.88C102.37 126.88 128.47 101.1 128.47 69.42C128.47 37.74 102.37 11.96 70.29 11.96ZM70.29 124.39C39.59 124.39 14.61 99.73 14.61 69.43C14.61 39.13 39.59 14.47 70.29 14.47C100.99 14.47 125.97 39.13 125.97 69.43C125.97 99.73 100.99 124.39 70.29 124.39ZM70.29 14.96C39.86 14.96 15.11 39.39 15.11 69.42C15.11 99.45 39.86 123.88 70.29 123.88C100.72 123.88 125.47 99.45 125.47 69.42C125.47 39.39 100.72 14.96 70.29 14.96Z" fill="#592C16"/>
|
||||
<path d="M147.11 72.21C147.03 73.32 146.88 74.42 146.67 75.5C146.39 76.89 146.02 78.27 145.44 79.56C145.48 75.36 145.19 71.15 144.59 66.99C144.41 65.78 144.16 64.47 143.24 63.66C141.85 62.43 139.68 62.94 137.92 63.55C131.63 65.76 125.53 68.51 119.7 71.76C118.32 70.94 118.39 68.91 119.84 68.19L120.69 67.77L127.27 64.49L137.01 59.64L139.31 58.5C140.28 58.02 141.72 57.32 142.85 57.57C145.08 58.08 146.04 61.56 146.47 63.44C147.12 66.31 147.34 69.28 147.11 72.21Z" fill="#F9C56B"/>
|
||||
<path d="M145.44 79.5599C145.3 79.8499 145.16 80.1299 145.01 80.4099C144.48 81.3899 143.71 82.3499 142.62 82.5999C141.36 82.8799 140.07 82.7099 138.79 82.2899C138.15 82.0799 137.51 81.8099 136.88 81.4899C134.88 80.4999 132.97 79.1399 131.34 78.2299C129.98 77.4699 128.62 76.7199 127.26 75.9599C125.08 74.7399 119.81 71.8299 119.81 71.8299C119.79 71.8099 119.77 71.7999 119.75 71.7899C119.73 71.7799 119.72 71.7699 119.7 71.7599C125.53 68.5099 131.63 65.7599 137.92 63.5499C139.68 62.9399 141.85 62.4299 143.24 63.6599C144.16 64.4699 144.41 65.7799 144.59 66.9899C145.19 71.1499 145.48 75.3599 145.44 79.5599Z" fill="#ED8B4C"/>
|
||||
<path d="M132.42 70.8799C133.48 71.8099 134.55 72.7399 135.79 73.3999C137.03 74.0599 138.49 74.4199 139.86 74.1299C142.31 73.6099 143.92 71.1099 144.3 68.6299C144.46 67.5499 144.44 66.4299 144.04 65.4099C143.64 64.3899 142.83 63.5099 141.79 63.1999C140.55 62.8299 139.24 63.2999 138.04 63.7599C135.9 64.5799 132.3 65.2099 130.52 66.6299C128.46 68.2799 130.85 69.4999 132.42 70.8699V70.8799Z" fill="#FC5155"/>
|
||||
<path d="M142.64 83.5898C140.1 83.5898 126.9 76.8998 126.77 76.8298C124.59 75.6098 119.32 72.6998 119.32 72.6998L119.16 72.5998C118.2 71.9898 117.67 70.9798 117.71 69.8998C117.75 68.7698 118.38 67.7998 119.4 67.2898L126.83 63.5898C141.59 56.2698 142.71 56.5098 143.07 56.5898C146.09 57.2798 147.11 61.7498 147.45 63.2098C148.13 66.1998 148.35 69.2498 148.11 72.2798C148.03 73.3898 147.88 74.5398 147.65 75.6798C147.3 77.3998 146.89 78.7598 146.35 79.9598C146.19 80.2898 146.05 80.5798 145.89 80.8698C145.07 82.3798 144.05 83.2898 142.84 83.5598C142.78 83.5698 142.72 83.5798 142.64 83.5798V83.5898ZM120.36 70.9898C121 71.3498 125.71 73.9498 127.74 75.0798C129.31 75.9598 140.77 81.4098 142.47 81.5998C143.06 81.4298 143.62 80.8698 144.12 79.9298C144.26 79.6698 144.4 79.3998 144.53 79.1198C145 78.0798 145.37 76.8598 145.68 75.2998C145.89 74.2398 146.03 73.1698 146.1 72.1398C146.32 69.2998 146.11 66.4498 145.48 63.6598C144.63 59.9398 143.53 58.8198 142.72 58.5698C141.43 58.8098 134.15 62.1798 127.7 65.3798L120.27 69.0798C119.77 69.3298 119.7 69.7898 119.69 69.9698C119.68 70.3498 119.86 70.6998 120.19 70.8998C120.23 70.9198 120.28 70.9498 120.35 70.9898H120.36Z" fill="#613218"/>
|
||||
<path d="M142.64 83.8399C140.02 83.8399 126.77 77.1199 126.65 77.0499C124.91 76.0699 121.19 74.0199 119.77 73.2299C119.47 73.0599 119.3 72.9699 119.2 72.8999L118.77 72.6399H118.78C117.91 71.9699 117.42 70.9599 117.46 69.8799C117.51 68.6599 118.19 67.5999 119.28 67.0599L126.71 63.3599C141.54 55.9999 142.69 56.2399 143.11 56.3399C146.29 57.0699 147.34 61.6499 147.68 63.1499C148.36 66.1699 148.59 69.2399 148.35 72.2999C148.27 73.4199 148.12 74.5799 147.89 75.7299C147.54 77.4699 147.12 78.8499 146.57 80.0599C146.41 80.3999 146.26 80.6899 146.1 80.9899C145.25 82.5699 144.17 83.5099 142.89 83.8099C142.81 83.8299 142.73 83.8299 142.63 83.8299L142.64 83.8399ZM119.49 72.5099L120.01 72.7999C121.43 73.5799 125.15 75.6399 126.89 76.6199C127.86 77.1399 140.29 83.3499 142.64 83.3499C142.71 83.3499 142.76 83.3499 142.79 83.3399C143.92 83.0799 144.89 82.2199 145.67 80.7699C145.83 80.4799 145.97 80.1899 146.13 79.8699C146.66 78.6899 147.07 77.3499 147.41 75.6499C147.63 74.5199 147.78 73.3799 147.86 72.2799C148.1 69.2699 147.88 66.2499 147.2 63.2799C146.87 61.8499 145.88 57.4999 143.01 56.8399C141.86 56.5699 133.63 60.4999 126.94 63.8199L119.51 67.5199C118.58 67.9799 118 68.8799 117.96 69.9099C117.92 70.9099 118.42 71.8299 119.29 72.3899L119.49 72.5199V72.5099ZM142.49 81.8599H142.44C140.68 81.6599 129.17 76.1699 127.62 75.3099C125.59 74.1799 120.88 71.5699 120.24 71.2199L120.22 71.1999C120.22 71.1999 120.13 71.1399 120.09 71.1199C119.67 70.8699 119.44 70.4399 119.45 69.9599C119.45 69.7299 119.55 69.1599 120.17 68.8599L127.6 65.1599C133.9 62.0399 141.33 58.5799 142.68 58.3299H142.74H142.8C144.03 58.7099 145.02 60.4899 145.73 63.5999C146.37 66.4199 146.58 69.2899 146.35 72.1499C146.27 73.1999 146.13 74.2699 145.92 75.3399C145.6 76.9199 145.23 78.1499 144.75 79.2199C144.61 79.5099 144.48 79.7799 144.33 80.0399C143.79 81.0399 143.18 81.6499 142.52 81.8299H142.47L142.49 81.8599ZM120.5 70.7799C121.19 71.1599 125.85 73.7399 127.87 74.8699C129.37 75.7099 140.63 81.0799 142.45 81.3499C142.95 81.1799 143.45 80.6699 143.91 79.8099C144.05 79.5499 144.18 79.2899 144.31 79.0099C144.77 77.9799 145.13 76.7899 145.44 75.2499C145.64 74.1999 145.78 73.1499 145.86 72.1199C146.08 69.3099 145.87 66.4799 145.25 63.7199C144.4 59.9999 143.32 59.0599 142.72 58.8399C141.29 59.1699 134.09 62.5099 127.83 65.6199L120.4 69.3199C120.03 69.4999 119.97 69.8199 119.96 69.9899C119.95 70.2799 120.09 70.5399 120.34 70.6899C120.37 70.7099 120.43 70.7399 120.5 70.7899V70.7799Z" fill="#592C16"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_227_407" x1="69.58" y1="1.84009" x2="69.81" y2="140.77" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.09" stop-color="#D8AA7A"/>
|
||||
<stop offset="1" stop-color="#A96847"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_227_407" x1="31.14" y1="15.8399" x2="105.59" y2="119.3" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.09" stop-color="#C18D63"/>
|
||||
<stop offset="1" stop-color="#CD8D57"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 33 KiB |
353
src/routes/-/RootLayout/components/Navigation/assets/shop.svg
Normal file
|
After Width: | Height: | Size: 146 KiB |
|
After Width: | Height: | Size: 33 KiB |
1
src/routes/-/RootLayout/components/Navigation/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export { default } from "./Navigation";
|
||||