Compare commits

...

10 Commits

332 changed files with 90051 additions and 2340 deletions
+9
View File
@@ -0,0 +1,9 @@
node_modules
dist
.git
.gitignore
.env.local
.tmp
*.log
docker-compose*.yml
Dockerfile*
+14
View File
@@ -6,6 +6,20 @@ CORS_ORIGIN=http://localhost:5173
UPLOAD_DIR=./server/uploads UPLOAD_DIR=./server/uploads
DATA_DIR=./server/data DATA_DIR=./server/data
# SMTP Mail Service Settings for Contact Us Form
SMTP_HOST=smtp.gmail.com
SMTP_PORT=465
SMTP_SECURE=true
SMTP_USER=info@cavinfotech.com
SMTP_PASS=your-smtp-password-or-app-password
SMTP_FROM="Cavin Infotech Contact Form <info@cavinfotech.com>"
SMTP_TO=info@cavinfotech.com
# Cloudflare Turnstile Settings (Use Cloudflare testing keys by default)
# Sitekey for frontend: 1x00000000000000000000AA (Always Passes - Visible Widget)
VITE_TURNSTILE_SITE_KEY=1x00000000000000000000AA
# Secret key for backend: 1x000000000000000000000000000000AA
TURNSTILE_SECRET_KEY=1x000000000000000000000000000000AA
# Production (demo.cavinkare.in/citpl_website): # Production (demo.cavinkare.in/citpl_website):
# 1. Copy dist/ + server/ + package.json + .env to the host # 1. Copy dist/ + server/ + package.json + .env to the host
# 2. npm install --omit=dev && npm run server (or pm2 start server/index.js) # 2. npm install --omit=dev && npm run server (or pm2 start server/index.js)
+22
View File
@@ -0,0 +1,22 @@
FROM node:22-alpine
WORKDIR /app
# Copy root package files and install dependencies
COPY package*.json ./
RUN npm install --omit=dev
# Copy server code and assets
COPY server/ ./server/
COPY scripts/ ./scripts/
COPY public/ ./public/
# Create uploads and data directories
RUN mkdir -p server/uploads server/data
ENV PORT=3005
ENV NODE_ENV=production
EXPOSE 3005
CMD ["node", "server/index.js"]
+21
View File
@@ -0,0 +1,21 @@
# Build Stage
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
ENV VITE_BASE=/
RUN npm run build
# Production Stage
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
+132 -25
View File
@@ -1,5 +1,6 @@
import nodemailer from 'nodemailer';
export default async function handler(req, res) { export default async function handler(req, res) {
// Set CORS headers for local development if needed
res.setHeader('Access-Control-Allow-Origin', '*'); res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Methods', 'POST, OPTIONS'); res.setHeader('Access-Control-Allow-Methods', 'POST, OPTIONS');
res.setHeader('Access-Control-Allow-Headers', 'Content-Type'); res.setHeader('Access-Control-Allow-Headers', 'Content-Type');
@@ -12,41 +13,147 @@ export default async function handler(req, res) {
return res.status(405).json({ error: 'Method Not Allowed' }); return res.status(405).json({ error: 'Method Not Allowed' });
} }
const { type, name, email, phone, mobile, designation, dateTime, interests, resumeName } = req.body; const { type, name, email, phone, mobile, subject, message, interests, designation, dateTime, resumeName, turnstileToken } = req.body;
const serviceId = process.env.EMAILJS_SERVICE_ID || 'vishva_cavintest'; const contactName = name?.trim();
const publicKey = process.env.EMAILJS_PUBLIC_KEY || 'YOUR_EMAILJS_PUBLIC_KEY'; const contactEmail = email?.trim();
const contactPhone = (phone || mobile || '').trim();
let templateId = ''; const contactSubject = (subject || interests || type || 'General Inquiry').trim();
if (type === 'careers') { const contactMessage = (message || req.body.comments || '').trim();
templateId = process.env.EMAILJS_TEMPLATE_ID_CAREERS || 'YOUR_EMAILJS_TEMPLATE_ID_CAREERS';
} else { if (!contactName || !contactEmail) {
templateId = process.env.EMAILJS_TEMPLATE_ID_STRATEGY || 'YOUR_EMAILJS_TEMPLATE_ID_STRATEGY'; return res.status(400).json({ error: 'Name and Email are required.' });
} }
const templateParams = { // Verify Cloudflare Turnstile Token
type: type, if (turnstileToken) {
name: name, const secretKey = process.env.TURNSTILE_SECRET_KEY || '1x000000000000000000000000000000AA';
email: email, try {
phone: phone || mobile || '', const formData = new URLSearchParams();
mobile: mobile || phone || '', formData.append('secret', secretKey);
designation: designation || 'N/A', formData.append('response', turnstileToken);
dateTime: dateTime || 'N/A', const turnstileRes = await fetch('https://challenges.cloudflare.com/turnstile/v0/siteverify', {
interests: interests || 'N/A', method: 'POST',
resumeName: resumeName || 'None' body: formData
}; });
const turnstileOutcome = await turnstileRes.json();
if (!turnstileOutcome.success) {
return res.status(400).json({ error: 'Cloudflare Turnstile verification failed. Please try again.' });
}
} catch (err) {
console.error('Turnstile verification error:', err);
}
}
// Determine per-form subject prefix and body label
let mailSubject, formLabel, accentColor;
if (type === 'careers') {
mailSubject = `[Careers Application] New Application from ${contactName}`;
formLabel = 'Careers / Job Application';
accentColor = '#38bdf8';
} else if (type === 'strategy') {
mailSubject = `[Strategy Call Booking] New Session Request from ${contactName}`;
formLabel = 'Strategy Call Session Request';
accentColor = '#38bdf8';
} else {
mailSubject = `[Contact Inquiry] ${contactSubject ? contactSubject : `New Inquiry from ${contactName}`}`;
formLabel = 'Contact Us Inquiry';
accentColor = '#ffaa00';
}
// 1. Try sending via SMTP (nodemailer)
const smtpHost = process.env.SMTP_HOST;
const smtpUser = process.env.SMTP_USER;
const smtpPass = process.env.SMTP_PASS;
if (smtpHost && smtpUser && smtpPass) {
try {
const port = parseInt(process.env.SMTP_PORT || '465', 10);
const secure = process.env.SMTP_SECURE === 'true' || port === 465;
const transporter = nodemailer.createTransport({
host: smtpHost,
port,
secure,
auth: { user: smtpUser, pass: smtpPass },
tls: { rejectUnauthorized: false }
});
const toEmail = process.env.SMTP_TO || smtpUser;
const fromEmail = process.env.SMTP_FROM || `"Cavin Infotech" <${smtpUser}>`;
let bodyRows = `
<tr><td style="padding:10px 0;font-weight:600;color:${accentColor};width:140px;">Name:</td><td style="padding:10px 0;color:#fff;">${contactName}</td></tr>
<tr><td style="padding:10px 0;font-weight:600;color:${accentColor};">Email:</td><td style="padding:10px 0;"><a href="mailto:${contactEmail}" style="color:#38bdf8;text-decoration:none;">${contactEmail}</a></td></tr>
<tr><td style="padding:10px 0;font-weight:600;color:${accentColor};">Phone:</td><td style="padding:10px 0;color:#fff;">${contactPhone || 'Not provided'}</td></tr>
`;
if (type === 'strategy') {
bodyRows += `
<tr><td style="padding:10px 0;font-weight:600;color:${accentColor};">Designation:</td><td style="padding:10px 0;color:#fff;">${designation || 'N/A'}</td></tr>
<tr><td style="padding:10px 0;font-weight:600;color:${accentColor};">Preferred Slot:</td><td style="padding:10px 0;color:#ffaa00;font-weight:600;">${dateTime || 'Flexible'}</td></tr>
<tr><td style="padding:10px 0;font-weight:600;color:${accentColor};">Interests:</td><td style="padding:10px 0;color:#fff;">${interests || 'General Consultation'}</td></tr>
`;
} else if (type === 'careers') {
bodyRows += `
<tr><td style="padding:10px 0;font-weight:600;color:${accentColor};">Resume:</td><td style="padding:10px 0;color:#ffaa00;font-weight:600;">${resumeName || 'Attached'}</td></tr>
`;
} else {
bodyRows += `
<tr><td style="padding:10px 0;font-weight:600;color:${accentColor};">Subject:</td><td style="padding:10px 0;color:#fff;">${contactSubject}</td></tr>
`;
}
const info = await transporter.sendMail({
from: fromEmail,
to: toEmail,
replyTo: `"${contactName}" <${contactEmail}>`,
subject: mailSubject,
text: `${formLabel}\n\nName: ${contactName}\nEmail: ${contactEmail}\nPhone: ${contactPhone}\nSubject/Type: ${contactSubject}\n\nMessage:\n${contactMessage}`,
html: `
<div style="font-family:'Segoe UI',Helvetica,Arial,sans-serif;background-color:#020710;color:#f8fafc;padding:40px 20px;max-width:650px;margin:0 auto;border-radius:16px;border:1px solid #1e293b;">
<div style="text-align:center;padding-bottom:24px;border-bottom:1px solid #334155;">
<h2 style="color:${accentColor};font-size:24px;margin:0;font-weight:700;">Cavin Infotech</h2>
<p style="color:#94a3b8;font-size:14px;margin-top:6px;">${formLabel}</p>
</div>
<div style="padding:24px 0;">
<table style="width:100%;border-collapse:collapse;font-size:15px;">${bodyRows}</table>
${contactMessage ? `<div style="margin-top:24px;padding:20px;background:#0b1528;border-left:4px solid ${accentColor};border-radius:8px;"><p style="margin:0;color:#f1f5f9;font-size:15px;line-height:1.6;white-space:pre-line;">${contactMessage}</p></div>` : ''}
</div>
<div style="text-align:center;padding-top:20px;border-top:1px solid #334155;color:#64748b;font-size:12px;">
Submitted on ${new Date().toLocaleString()} from Cavin Infotech Website
</div>
</div>
`
});
return res.status(200).json({ success: true, messageId: info.messageId, message: 'Message sent via SMTP!' });
} catch (smtpErr) {
console.error('SMTP Send Error:', smtpErr);
return res.status(500).json({ error: `SMTP Send Error: ${smtpErr.message}` });
}
}
// 2. Fallback to EmailJS API if SMTP env vars are not set
const serviceId = process.env.EMAILJS_SERVICE_ID || 'vishva_cavintest';
const publicKey = process.env.EMAILJS_PUBLIC_KEY || 'YOUR_EMAILJS_PUBLIC_KEY';
const templateId = process.env.EMAILJS_TEMPLATE_ID_STRATEGY || 'YOUR_EMAILJS_TEMPLATE_ID_STRATEGY';
try { try {
const response = await fetch('https://api.emailjs.com/api/v1.0/email/send', { const response = await fetch('https://api.emailjs.com/api/v1.0/email/send', {
method: 'POST', method: 'POST',
headers: { headers: { 'Content-Type': 'application/json' },
'Content-Type': 'application/json',
},
body: JSON.stringify({ body: JSON.stringify({
service_id: serviceId, service_id: serviceId,
template_id: templateId, template_id: templateId,
user_id: publicKey, user_id: publicKey,
template_params: templateParams template_params: {
name: contactName,
email: contactEmail,
phone: contactPhone,
interests: contactSubject,
message: contactMessage
}
}), }),
}); });
+2 -2
View File
@@ -7,8 +7,8 @@
<meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" /> <meta http-equiv="Expires" content="0" />
<title>CITPL Admin</title> <title>CITPL Admin</title>
<script type="module" crossorigin src="/citpl_website/assets/admin-Dt4w1w-p.js"></script> <script type="module" crossorigin src="/citpl_website/assets/admin-DFobP14U.js"></script>
<link rel="modulepreload" crossorigin href="/citpl_website/assets/x-CWfp5ET4.js"> <link rel="modulepreload" crossorigin href="/citpl_website/assets/x-CKbD_O50.js">
<link rel="stylesheet" crossorigin href="/citpl_website/assets/admin-yhMCgkf-.css"> <link rel="stylesheet" crossorigin href="/citpl_website/assets/admin-yhMCgkf-.css">
</head> </head>
<body> <body>
-1
View File
File diff suppressed because one or more lines are too long
+14 -1
View File
File diff suppressed because one or more lines are too long
@@ -1 +1 @@
@import "https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap";:root{--lightningcss-light: ;--lightningcss-dark:initial;color-scheme:dark;color:#ffffffde;font-synthesis:none;text-rendering:optimizelegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;--bg-primary:#020710;--bg-secondary:#051022;--bg-tertiary:#08162d;--bg-card:#0a192fb3;--accent-gold:#fa0;--accent-orange:#f50;--accent-cyan:#00f0ff;--accent-blue:#07f;--text-primary:#fff;--text-secondary:#a0aec0;--text-muted:#64748b;--border-glow:#00f0ff26;--border-gold:#fa03;--border-glass:#ffffff14;--gradient-gold:linear-gradient(135deg, #ffca28 0%, #ff8f00 50%, #ff6f00 100%);--gradient-neon:linear-gradient(135deg, #00f0ff 0%, #0072ff 100%);--gradient-dark:linear-gradient(180deg, #020710 0%, #051022 100%);--gradient-glow-orange:radial-gradient(circle at 50% 50%, #ff550026 0%, transparent 60%);--gradient-glow-blue:radial-gradient(circle at 50% 50%, #00f0ff1a 0%, transparent 60%);background-color:#020710;font-family:Schibsted Grotesk,sans-serif;font-weight:400;line-height:1.5}html{scroll-behavior:smooth}*{box-sizing:border-box;margin:0;padding:0}body{background-color:var(--bg-primary);color:var(--text-primary);overflow-x:hidden}@keyframes float{0%{transform:translateY(0)}50%{transform:translateY(-10px)}to{transform:translateY(0)}}@keyframes spin-slow{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes pulse-slow{0%,to{opacity:.6}50%{opacity:.9}}@keyframes marquee{0%{transform:translate(0%)}to{transform:translate(-50%)}}.animate-float{animation:6s ease-in-out infinite float}.animate-spin-slow{animation:20s linear infinite spin-slow}.animate-pulse-slow{animation:4s ease-in-out infinite pulse-slow}.glass{-webkit-backdrop-filter:blur(16px)saturate(120%);border:1px solid var(--border-glass);background:#05102266}.glass-card{-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);background:#0a192f59;border:1px solid #ffffff0d;border-radius:16px;transition:all .3s cubic-bezier(.4,0,.2,1)}.glass-card:hover{border-color:#00f0ff4d;transform:translateY(-4px);box-shadow:0 10px 30px -10px #00f0ff26}.gradient-text-gold{background:var(--gradient-gold);-webkit-text-fill-color:transparent;-webkit-background-clip:text}.gradient-text-cyan{background:var(--gradient-neon);-webkit-text-fill-color:transparent;-webkit-background-clip:text}.btn-sparkle-wrapper{vertical-align:middle;justify-content:center;align-items:center;display:inline-flex;position:relative}.btn-sparkles{pointer-events:none;z-index:1;mix-blend-mode:screen;opacity:0;filter:invert()brightness(2);width:430px;height:96px;transition:all .3s cubic-bezier(.4,0,.2,1);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.btn-sparkle-wrapper:hover .btn-sparkles{opacity:.2;transform:translate(-50%,-50%)scale(1.05)}.btn-talk{z-index:2;color:#fff;cursor:pointer;background:linear-gradient(135deg,#2a1810 0%,#150c08 100%);border:1.5px solid #ffaa0073;border-radius:9999px;justify-content:center;align-items:center;min-width:260px;height:54px;padding:0 36px;font-size:.95rem;font-weight:600;line-height:1;transition:all .3s cubic-bezier(.4,0,.2,1);display:inline-flex;position:relative;box-shadow:0 4px 20px #0006,0 0 15px #ffaa0026}.btn-talk:hover{background:linear-gradient(135deg,#382112 0%,#1e120a 100%);border-color:#fa0;transform:translateY(-2px);box-shadow:0 6px 25px #00000080,0 0 25px #ffaa0059}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-track{background:var(--bg-primary)}::-webkit-scrollbar-thumb{background:var(--bg-tertiary);border-radius:4px}::-webkit-scrollbar-thumb:hover{background:var(--border-glow)}.blog-carousel::-webkit-scrollbar{display:none}.services-carousel::-webkit-scrollbar{display:none}.blog-card:hover .blog-card-img{transform:scale(1.05)}.blog-card:hover .blog-read-more{color:#fa0}#contactus{scroll-margin-top:88px}@media (width<=1023px){#contactus{scroll-margin-top:72px}.btn-sparkles{display:none}.btn-sparkle-wrapper{width:100%}.btn-talk{min-width:unset;width:100%;height:48px;padding:0 1.25rem;font-size:.88rem}}@media (prefers-reduced-motion:reduce){.reveal-on-scroll{opacity:1!important;transition:none!important;transform:none!important}} @import "https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap";:root{--lightningcss-light: ;--lightningcss-dark:initial;color-scheme:dark;color:#ffffffde;font-synthesis:none;text-rendering:optimizelegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;--bg-primary:#020710;--bg-secondary:#051022;--bg-tertiary:#08162d;--bg-card:#0a192fb3;--accent-gold:#fa0;--accent-orange:#f50;--accent-cyan:#00f0ff;--accent-blue:#07f;--text-primary:#fff;--text-secondary:#a0aec0;--text-muted:#64748b;--border-glow:#00f0ff26;--border-gold:#fa03;--border-glass:#ffffff14;--gradient-gold:linear-gradient(135deg, #ffca28 0%, #ff8f00 50%, #ff6f00 100%);--gradient-neon:linear-gradient(135deg, #00f0ff 0%, #0072ff 100%);--gradient-dark:linear-gradient(180deg, #020710 0%, #051022 100%);--gradient-glow-orange:radial-gradient(circle at 50% 50%, #ff550026 0%, transparent 60%);--gradient-glow-blue:radial-gradient(circle at 50% 50%, #00f0ff1a 0%, transparent 60%);background-color:#020710;font-family:Schibsted Grotesk,sans-serif;font-weight:400;line-height:1.5}html{scroll-behavior:smooth}*{box-sizing:border-box;margin:0;padding:0}body{background-color:var(--bg-primary);color:var(--text-primary);overflow-x:hidden}@keyframes float{0%{transform:translateY(0)}50%{transform:translateY(-10px)}to{transform:translateY(0)}}@keyframes spin-slow{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes pulse-slow{0%,to{opacity:.6}50%{opacity:.9}}@keyframes marquee{0%{transform:translate(0%)}to{transform:translate(-50%)}}.animate-float{animation:6s ease-in-out infinite float}.animate-spin-slow{animation:20s linear infinite spin-slow}.animate-pulse-slow{animation:4s ease-in-out infinite pulse-slow}.glass{-webkit-backdrop-filter:blur(16px)saturate(120%);border:1px solid var(--border-glass);background:#05102266}.glass-card{-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);background:#0a192f59;border:1px solid #ffffff0d;border-radius:16px;transition:all .3s cubic-bezier(.4,0,.2,1)}.glass-card:hover{border-color:#00f0ff4d;transform:translateY(-4px);box-shadow:0 10px 30px -10px #00f0ff26}.gradient-text-gold{background:var(--gradient-gold);-webkit-text-fill-color:transparent;-webkit-background-clip:text}.gradient-text-cyan{background:var(--gradient-neon);-webkit-text-fill-color:transparent;-webkit-background-clip:text}.btn-sparkle-wrapper{vertical-align:middle;justify-content:center;align-items:center;display:inline-flex;position:relative}.btn-sparkles{pointer-events:none;z-index:1;mix-blend-mode:screen;opacity:0;filter:invert()brightness(2);width:430px;height:96px;transition:all .3s cubic-bezier(.4,0,.2,1);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.btn-sparkle-wrapper:hover .btn-sparkles{opacity:.2;transform:translate(-50%,-50%)scale(1.05)}.btn-talk{z-index:2;color:#fff;cursor:pointer;background:linear-gradient(135deg,#2a1810 0%,#150c08 100%);border:1.5px solid #ffaa0073;border-radius:9999px;justify-content:center;align-items:center;min-width:260px;height:54px;padding:0 36px;font-size:.95rem;font-weight:600;line-height:1;transition:all .3s cubic-bezier(.4,0,.2,1);display:inline-flex;position:relative;box-shadow:0 4px 20px #0006,0 0 15px #ffaa0026}.btn-talk:hover{background:linear-gradient(135deg,#382112 0%,#1e120a 100%);border-color:#fa0;transform:translateY(-2px);box-shadow:0 6px 25px #00000080,0 0 25px #ffaa0059}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-track{background:var(--bg-primary)}::-webkit-scrollbar-thumb{background:var(--bg-tertiary);border-radius:4px}::-webkit-scrollbar-thumb:hover{background:var(--border-glow)}.blog-carousel,.services-carousel{touch-action:pan-x pan-y;overscroll-behavior-x:contain;overscroll-behavior-y:auto;-webkit-overflow-scrolling:touch;overflow:auto hidden}.blog-carousel::-webkit-scrollbar{width:0!important;height:0!important;display:none!important}.services-carousel::-webkit-scrollbar{width:0!important;height:0!important;display:none!important}.blog-card:hover .blog-card-img{transform:scale(1.05)}.blog-card:hover .blog-read-more{color:#fa0}#contactus{scroll-margin-top:88px}@media (width<=1023px){#contactus{scroll-margin-top:72px}.btn-sparkles{display:none}.btn-sparkle-wrapper{width:100%}.btn-talk{min-width:unset;width:100%;height:48px;padding:0 1.25rem;font-size:.88rem}}@media (prefers-reduced-motion:reduce){.reveal-on-scroll{opacity:1!important;transition:none!important;transform:none!important}}
+14
View File
File diff suppressed because one or more lines are too long
+14 -1
View File
File diff suppressed because one or more lines are too long
+14 -1
View File
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 169 KiB

+9
View File
@@ -0,0 +1,9 @@
<svg width="1728" height="1016" viewBox="0 0 1728 1016" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="1728" height="1016" fill="url(#paint0_linear_288_7058)"/>
<defs>
<linearGradient id="paint0_linear_288_7058" x1="864" y1="0" x2="864" y2="1016" gradientUnits="userSpaceOnUse">
<stop stop-color="#2FA0B6"/>
<stop offset="1" stop-color="#01040B"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 395 B

+9
View File
@@ -0,0 +1,9 @@
<svg width="1728" height="1107" viewBox="0 0 1728 1107" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="1728" height="1107" fill="url(#paint0_linear_288_7119)"/>
<defs>
<linearGradient id="paint0_linear_288_7119" x1="864" y1="0" x2="864" y2="1107" gradientUnits="userSpaceOnUse">
<stop offset="0.591346" stop-color="#01040B"/>
<stop offset="1" stop-color="#2FA0B6"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 413 B

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 231 KiB

+16
View File
@@ -0,0 +1,16 @@
<svg width="615" height="565" viewBox="0 0 615 565" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_120_14849)">
<rect x="63" y="-134" width="352" height="499" fill="url(#paint0_linear_120_14849)"/>
</g>
<defs>
<filter id="filter0_f_120_14849" x="-137" y="-334" width="752" height="899" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="100" result="effect1_foregroundBlur_120_14849"/>
</filter>
<linearGradient id="paint0_linear_120_14849" x1="239" y1="-134" x2="239" y2="365" gradientUnits="userSpaceOnUse">
<stop stop-color="#184BFF" stop-opacity="0"/>
<stop offset="1" stop-color="#0387DA"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 841 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 37 KiB

+67
View File
@@ -0,0 +1,67 @@
<svg width="157" height="124" viewBox="0 0 157 124" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M98.7744 49.6857C102.716 49.3264 107.473 50.1756 110.686 52.66C113.391 54.7528 114.265 57.4007 114.687 60.6464C115.165 64.3181 114.532 69.102 112.1 72.0445C109.715 74.9308 106.059 75.9434 102.478 76.3244C94.4873 76.9028 86.9145 73.3325 86.615 64.4344C86.4917 60.7844 86.9819 56.5755 89.5021 53.7356C91.6691 51.2938 95.5712 49.9002 98.7744 49.6857ZM101.191 69.8657C105.039 69.5279 104.854 66.9278 104.92 63.7903C104.951 62.3568 104.897 61.0205 104.829 59.589C104.704 56.9302 102.785 55.921 100.212 56.1753C97.6459 56.4181 96.7927 57.5016 96.5651 60.0285C96.3941 61.9219 96.4372 63.8367 96.5416 65.7339C96.6505 67.2939 97.1202 68.9899 98.7638 69.5169C99.4907 69.7499 100.432 69.9689 101.191 69.8657Z" fill="white"/>
<path d="M69.829 49.6703C73.038 49.4157 76.7616 50.1402 79.4679 51.9374C79.4157 51.4677 79.4241 50.8014 79.4158 50.3156C81.1244 50.2762 83.3973 50.2497 85.0885 50.3206C85.0242 53.2387 85.239 56.3409 85.1044 59.2235C83.3776 59.2543 81.3521 59.2667 79.6404 59.2134C79.4263 58.9502 79.207 58.6913 78.9831 58.4369C77.3917 56.6517 75.1152 55.864 72.8057 55.5423C71.6894 55.3869 70.1681 55.2674 69.2433 56.051C68.753 56.4664 69.1944 57.1699 69.6313 57.3744C70.5075 57.7846 71.59 58.0652 72.5192 58.331L77.462 59.7379C78.4514 60.0224 79.5595 60.2984 80.5072 60.6876C83.4026 61.8765 85.8373 64.6104 85.9931 67.8096C86.1036 69.8781 85.3828 71.9049 83.991 73.439C81.9897 75.641 79.114 76.2245 76.2904 76.3593C72.6039 76.446 70.157 75.7128 66.9789 73.9841C67.0607 74.5421 67.0019 75.2863 66.9777 75.8638C65.6488 75.7648 62.4795 75.7931 61.17 75.8884C61.0722 72.8464 61.1412 69.3395 61.1515 66.2626C62.873 66.3141 64.6808 66.1967 66.3405 66.2772C66.6547 66.586 67.0333 67.1922 67.3671 67.5712C68.4407 68.7901 70.0842 69.5929 71.6636 70.0155C73.1907 70.4243 75.9786 70.5005 77.4749 69.7274C77.7033 69.6091 77.754 69.4303 77.7994 69.2188C77.6194 68.564 76.8365 68.3362 76.2522 68.1226C72.1481 66.6235 66.9825 66.0381 63.4833 63.3544C60.3349 60.9398 60.144 55.6859 62.5658 52.7554C64.2065 50.7701 67.3082 49.8585 69.829 49.6703Z" fill="white"/>
<path d="M77.3921 78.4759C77.7914 78.4798 78.1068 78.4254 78.3973 78.6748C78.541 78.9727 78.4737 79.323 78.4517 79.6695C80.4493 79.7387 83.5459 80.1091 85.4935 80.5906C85.8052 79.7837 86.0162 79.2132 86.5313 78.5004L87.6099 78.5391C87.2982 79.3185 86.9533 80.0525 86.6001 80.8138C88.5009 81.3498 89.9327 81.843 91.7457 82.6424C92.7736 81.3612 93.7622 80.0346 94.7689 78.7405C95.0193 78.4181 95.765 78.5233 96.175 78.5379C95.3717 79.7143 93.7856 82.2348 92.7312 83.094C93.6896 83.544 95.0132 84.3049 95.942 84.8435C97.6991 83.3882 99.2701 81.8717 100.668 80.0631C101.069 79.5432 101.482 78.9883 101.936 78.5183C102.296 78.5051 102.771 78.5336 103.14 78.5456C102.099 80.1945 100.882 81.7257 99.5113 83.1137C93.9218 88.8575 86.2552 92.1092 78.2407 92.1357C75.5476 92.144 72.8644 91.8149 70.2537 91.1554C63.3482 89.4135 56.2711 84.6839 52.5898 78.5264C52.8702 78.5256 53.6616 78.4891 53.8506 78.6626C54.7897 79.5242 55.5262 80.8045 56.4332 81.7477C57.5584 82.9178 58.6721 83.9139 59.9372 84.901C60.9194 84.2694 61.9866 83.774 62.9628 83.1038C61.7677 81.9186 60.4246 79.9203 59.5383 78.5071C59.938 78.5101 60.3537 78.5306 60.7545 78.5447C61.1773 78.9706 61.7623 79.8241 62.1513 80.3415C62.7534 81.1479 63.3981 81.9216 64.0827 82.6598C65.6558 81.9284 67.5791 81.3309 69.2478 80.8478C68.8866 80.1016 68.5401 79.2685 68.2059 78.5038C68.6187 78.4984 68.9566 78.5267 69.3686 78.5596C69.7819 79.1524 70.1193 79.8849 70.4313 80.5384C72.5087 80.0122 75.1897 79.8148 77.3308 79.6741C77.2968 79.2996 77.2461 78.8208 77.3921 78.4759ZM78.4979 87.1754C79.4479 87.2699 80.0038 87.3244 80.9372 87.5657C81.5105 86.829 82.0626 86.0764 82.5921 85.3071C83.2819 84.3042 83.9248 83.305 84.5307 82.2499C84.6608 82.023 84.7939 81.8036 84.9527 81.5964C82.608 81.1834 80.9054 80.8917 78.4986 80.8632C78.4918 82.9397 78.5274 85.1127 78.4979 87.1754ZM70.9695 81.5934C71.9677 83.3065 72.6818 84.5114 73.8556 86.1059C74.1664 86.5158 74.6604 87.1285 74.9208 87.5384C75.7503 87.2971 76.4886 87.248 77.3467 87.1822C77.3202 85.2073 77.2219 82.8028 77.2733 80.8721C76.852 80.8787 76.2873 80.871 75.8786 80.9094C74.067 81.0765 72.7586 81.2658 70.9695 81.5934ZM79.4116 90.9512C81.4137 90.8839 82.7956 90.4542 84.5299 90.3264C81.9537 88.7032 79.7708 88.1186 76.697 88.3848C74.4558 88.7637 73.3005 89.0141 71.3653 90.3612C72.0694 90.4315 72.7993 90.5276 73.4964 90.6562C75.4786 91.0223 77.4042 91.0692 79.4116 90.9512ZM85.9443 89.8885L87.4291 89.3915C90.2927 88.4181 92.3818 87.3289 94.8234 85.593C94.1691 85.2202 92.5686 84.2754 91.931 84.0629C90.2216 85.649 87.2029 88.2608 85.0616 89.2637L85.9443 89.8885ZM82.1791 87.9106C82.7767 88.0777 83.356 88.3031 83.9097 88.5837C84.5314 88.2025 85.157 87.8289 85.7878 87.4628C87.8209 86.2019 89.0855 85.1067 90.776 83.4487C89.3624 82.9238 87.5312 82.1871 86.0608 81.8929C84.9482 84.01 83.6495 86.0242 82.1791 87.9106ZM73.6482 87.8629C72.5465 86.4999 71.5212 84.8458 70.5787 83.3663C70.3036 82.9352 70.022 82.2953 69.7852 81.9436C69.653 81.933 69.6699 81.9201 69.5475 81.9511C68.3779 82.2756 67.2611 82.6326 66.1382 83.0925C65.7697 83.2438 65.3509 83.4139 64.9703 83.5115C66.7433 85.3139 68.0897 86.2745 70.2034 87.6405C70.7908 87.9711 71.4046 88.2956 71.9843 88.6291C72.5478 88.2585 73.0268 88.1102 73.6482 87.8629ZM68.4686 89.4634C68.9274 89.598 69.5074 89.7508 69.9483 89.9104L70.6887 89.3167C68.9305 88.2819 67.2579 87.1096 65.6866 85.8086C65.4018 85.5741 63.9211 84.1408 63.7349 84.1174C62.8152 84.6249 61.8843 85.1634 60.9651 85.6611C63.5984 87.4303 65.4984 88.3916 68.4686 89.4634Z" fill="white"/>
<path d="M76.2447 33.7129C78.6795 33.5902 81.1196 33.7447 83.5195 34.1734C90.0107 35.4015 95.9202 38.7263 100.339 43.6373C100.831 44.1804 102.882 46.4754 102.771 47.0805C101.561 47.6171 100.836 45.8823 100.141 45.0864C98.7861 43.5223 97.2779 42.0972 95.6404 40.832C94.614 41.2953 93.5974 42.0791 92.5483 42.494C93.3924 43.3679 95.6116 46.0328 95.9641 47.1556L94.803 47.1368C94.5708 46.8736 94.3575 46.5957 94.1526 46.3111C93.3281 45.1664 92.4477 44.1055 91.5219 43.0411C89.777 43.7991 88.1772 44.3389 86.3597 44.8821C86.7727 45.4849 87.1418 46.479 87.3573 47.1779C86.9897 47.1937 86.604 47.1783 86.2341 47.1704C85.8824 46.5656 85.477 45.7277 85.2108 45.0863C83.5354 45.7001 80.1158 45.9388 78.3414 46.0038C78.3838 46.379 78.3422 46.7739 78.3172 47.1524L77.1857 47.1686C77.1683 46.7768 77.1751 46.3697 77.1758 45.9763C74.8161 45.9264 72.4668 45.6533 70.1588 45.1609C69.8511 45.8411 69.5697 46.4835 69.2073 47.1372C68.8291 47.1596 68.3994 47.1599 68.0163 47.1688C68.3479 46.3379 68.6266 45.6867 69.0177 44.8837C67.4606 44.4039 65.4591 43.805 63.9724 43.1365C63.3268 43.8316 62.8395 44.3913 62.2609 45.1401C61.8099 45.7237 61.1973 46.6578 60.6988 47.1422L59.5058 47.2176C60.304 45.7209 61.7339 43.8805 62.8785 42.6379C62.1201 42.2409 60.4933 41.4238 59.8832 40.8903C58.2795 41.8976 56.5214 43.7582 55.3104 45.2073C54.7784 45.8438 54.3132 46.5576 53.7277 47.1398L52.5527 47.1551C53.2286 45.927 54.2253 44.6647 55.1664 43.6253C60.7642 37.4428 67.9845 34.1742 76.2447 33.7129ZM70.7098 44.1701C71.6385 44.2009 72.6723 44.4691 73.6291 44.5945C74.5574 44.7719 76.1691 44.8353 77.1305 44.8374L77.1267 38.5529C76.2363 38.4861 75.5108 38.3618 74.6387 38.2614C74.074 39.0808 73.454 39.8419 72.879 40.6601C72.075 41.8041 71.4056 42.9621 70.7098 44.1701ZM79.5629 37.2806C81.5635 36.9391 82.5014 36.4402 84.2373 35.4751C80.6695 34.8312 79.4563 34.7221 75.725 34.8493C74.0287 34.9837 72.7013 35.3009 71.1579 35.4611C73.8539 37.042 76.3782 37.8991 79.5629 37.2806ZM81.9561 37.917C82.8653 39.1162 85.3083 42.4502 85.8476 43.8112C86.5987 43.565 87.3543 43.3334 88.1145 43.1162C88.948 42.8007 89.7929 42.4948 90.5984 42.1127C89.0002 40.756 85.6374 37.8581 83.6458 37.1688C83.1383 37.4048 82.4712 37.7379 81.9561 37.917ZM62.6546 41.1778C63.0054 41.36 63.3846 41.5673 63.7368 41.7388C65.3147 40.0093 68.4827 37.6158 70.5345 36.4697C70.1865 36.1693 69.9712 35.9017 69.4855 35.9531C66.0365 37.0061 63.7457 38.148 60.8218 40.1774C61.3844 40.4803 62.1043 40.9069 62.6546 41.1778ZM91.7753 41.6761C92.3131 41.3127 92.6784 41.11 93.2449 40.8075C93.673 40.5688 94.2184 40.2443 94.6518 40.0395C93.7419 39.543 92.8955 38.9607 91.9969 38.4507C90.4577 37.5945 88.8428 36.8821 87.1735 36.3227C86.7273 36.1723 85.9603 35.893 85.5148 35.9321C85.3136 36.0983 85.0701 36.2884 84.8795 36.4593C87.0941 37.5898 90.078 39.866 91.7753 41.6761ZM69.5699 43.8506C70.4366 42.1782 72.2242 39.2484 73.4879 37.8483C72.7782 37.6503 72.318 37.3961 71.7497 37.222C69.0551 38.7228 67.0112 40.1357 64.7972 42.3213C65.5713 42.4564 66.6258 42.9438 67.4235 43.1791L69.5699 43.8506ZM78.3875 44.8702C79.6151 44.7817 80.8858 44.7121 82.0991 44.5248C82.9386 44.412 83.7782 44.2051 84.5883 44.1051C84.1299 43.1015 81.3934 38.9023 80.6937 38.3236L80.5946 38.3295C79.8602 38.431 79.1235 38.5202 78.386 38.5973C78.3565 40.6654 78.2847 42.8061 78.3875 44.8702Z" fill="white"/>
<path d="M42.8333 49.8865C46.7578 49.8098 50.7961 49.9567 54.7289 49.8987C56.3415 49.8749 58.0343 49.9493 59.6397 49.8723C59.7025 52.0048 59.6781 54.2249 59.6822 56.3642C58.4571 56.319 57.0313 56.3463 55.7909 56.3444L55.7972 69.5506C57.121 69.5165 58.2921 69.668 59.6748 69.5243C59.7601 71.3973 59.6846 73.9112 59.6973 75.8415C58.5671 75.9423 56.348 75.8749 55.1546 75.8744L47.5406 75.8704C46.0063 75.8701 44.2916 75.8381 42.7768 75.9142C42.6703 73.9226 42.7125 71.6062 42.7477 69.6047C44.0106 69.5733 45.3179 69.5215 46.5773 69.5596L46.5766 56.3095C45.368 56.3411 44.0723 56.2951 42.8317 56.3183C42.7671 55.4294 42.6729 50.5972 42.8333 49.8865Z" fill="white"/>
<path d="M95.5896 97.5378C99.6211 97.2655 99.4796 103.076 98.3655 105.61C98.0221 106.39 97.3103 106.756 96.5267 106.989C94.4475 107.106 93.4581 106.25 93.0943 104.198C92.7971 102.519 92.8039 100.148 93.7448 98.6368C94.1737 97.9485 94.8249 97.6793 95.5896 97.5378ZM96.2015 105.541C96.6228 105.276 96.8679 104.974 96.9374 104.409C97.1243 102.897 97.3171 100.794 96.6175 99.3992C96.442 99.0506 96.0585 99.0203 95.7273 99.0332C94.7629 99.6072 94.8884 101.254 94.8688 102.261C94.8499 103.261 94.7167 105.589 96.2015 105.541Z" fill="white"/>
<path d="M62.6323 97.5378C65.6241 97.3533 66.0668 100.29 65.9958 102.619C65.9367 104.557 65.6246 106.352 63.5637 106.984C61.4711 107.13 60.3426 106.166 60.0657 104.089C59.7551 101.758 59.6649 98.0264 62.6323 97.5378ZM63.1848 105.551C64.3025 104.886 64.1323 102.494 64.0936 101.311C64.0622 100.35 63.9204 99.0929 62.754 99.0264C62.3729 99.2397 62.1204 99.5467 62.0548 99.9877C61.8682 101.246 61.2225 105.493 63.1848 105.551Z" fill="white"/>
<path d="M69.7245 97.5499C71.3592 97.4607 72.5334 98.2329 72.8935 99.8561C73.4161 102.212 73.6084 106.216 70.6772 106.996C67.5215 107.043 67.191 105.091 67.1148 102.278C67.0621 100.334 67.4532 97.95 69.7245 97.5499ZM70.3049 105.549C71.3933 104.935 71.2294 103.385 71.2701 102.278C71.295 101.598 71.2569 100.73 71.0952 100.076C70.9282 99.4 70.7615 99.1375 70.0614 99.0241C69.7692 99.1126 69.5769 99.1602 69.4406 99.4605C69.0546 100.311 69.033 101.364 69.0191 102.291C69.0067 103.115 68.9951 104.048 69.3166 104.815C69.5394 105.347 69.746 105.486 70.3049 105.549Z" fill="white"/>
<path d="M48.3052 97.5463C48.4346 97.5417 48.5642 97.5395 48.6937 97.541C50.2583 97.5607 51.7309 98.5273 51.6599 100.209C51.5757 102.206 49.2739 103.966 47.8935 105.244C48.9773 105.135 50.5483 105.161 51.6704 105.147L51.6451 106.889C49.9933 106.859 48.3184 106.865 46.6645 106.857L45.3281 106.862C45.8034 104.628 46.9244 103.817 48.4943 102.308C49.1115 101.715 50.0889 100.787 49.7561 99.8404C49.6478 99.5234 49.4079 99.2693 49.0982 99.143C47.8993 98.6589 47.6021 99.6172 47.356 100.481C46.8141 100.476 46.1069 100.399 45.5548 100.354C45.8285 98.5439 46.4901 97.8587 48.3052 97.5463Z" fill="white"/>
<path d="M110.086 97.5423C110.14 97.5408 110.195 97.54 110.25 97.54C111.048 97.5393 112.145 97.7836 112.676 98.4031C114.886 100.979 111.27 103.726 109.63 105.236C110.642 105.137 112.318 105.164 113.381 105.15L113.358 106.884L108.4 106.859C107.949 106.854 107.472 106.868 107.019 106.873C107.855 103.418 110.882 102.572 111.459 100.652C111.567 100.293 111.551 99.8886 111.351 99.5633C111.193 99.3084 110.939 99.1277 110.646 99.0619C109.602 98.8244 109.251 99.6889 109.068 100.492L107.259 100.328C107.626 98.45 108.167 97.8464 110.086 97.5423Z" fill="white"/>
<path d="M88.4974 97.5461C90.1281 97.4259 91.8216 98.3184 91.8383 100.09C91.8579 102.121 89.4466 103.925 88.1237 105.238C89.2227 105.141 90.7355 105.164 91.8662 105.148L91.8556 106.873L87.1268 106.85C86.5421 106.84 86.1095 106.836 85.5195 106.882C86.1844 103.618 88.4762 103.272 89.8982 100.731C90.647 99.394 88.0927 97.7859 87.5557 100.497L85.7169 100.348C86.0172 98.5529 86.676 97.8078 88.4974 97.5461Z" fill="white"/>
<path d="M102.883 97.5474C104.434 97.316 106.285 98.4762 106.18 100.202C106.054 102.253 103.899 103.884 102.457 105.232C103.401 105.141 105.179 105.157 106.186 105.14L106.179 106.876C104.618 106.878 103.057 106.87 101.497 106.851C100.92 106.829 100.446 106.839 99.873 106.858C100.596 103.42 102.906 103.351 104.262 100.689C104.402 100.412 104.389 99.9663 104.238 99.6668C104.1 99.3952 103.858 99.191 103.566 99.1025C102.511 98.7886 102.095 99.6668 101.879 100.49L100.073 100.326C100.379 98.5133 101.055 97.8137 102.883 97.5474Z" fill="white"/>
<path d="M47.202 28.8569C49.8608 28.4772 53.6857 33.4954 49.5666 34.8323C49.175 34.9093 48.7699 34.8793 48.394 34.7455C48.0415 34.6173 47.7212 34.4314 47.4254 34.2002C45.4804 32.68 44.2623 30.1252 47.202 28.8569ZM49.4326 34.1372C50.4684 33.5627 50.9747 32.8215 50.2323 31.6966C49.6963 30.8844 48.5513 29.6384 47.5148 29.6027C44.4583 30.7856 47.998 34.1258 49.4326 34.1372Z" fill="white"/>
<path d="M52.8992 97.7079C54.7587 97.7836 57.0055 97.714 58.8928 97.7026C58.9475 99.4604 58.594 99.1965 57.6974 100.575C56.4276 102.525 55.9918 104.539 55.7692 106.829C55.4813 106.919 54.3369 106.888 53.9768 106.885C54.2176 104.141 55.0072 101.469 56.8588 99.3591C55.8117 99.4506 53.8648 99.4098 52.7583 99.4204C52.7248 98.931 52.6031 98.0627 52.8992 97.7079Z" fill="white"/>
<path d="M77.5171 97.5173L78.8627 97.5105C78.9519 99.1654 78.9012 100.848 78.9035 102.505C78.905 103.963 78.9451 105.409 78.9118 106.868L77.0723 106.884C77.0368 106.323 77.0549 105.601 77.0527 105.027C77.0496 103.723 76.9959 101.408 77.1381 100.171C76.267 100.854 75.7665 101.127 74.7911 101.611C74.7556 100.998 74.7698 100.542 74.7918 99.9354C76.3686 98.9151 76.3021 99.2804 77.5171 97.5173Z" fill="white"/>
<path d="M55.6376 24.5925C55.8737 24.7555 55.822 24.6725 55.918 24.9119C55.8974 24.9456 55.8775 24.9797 55.8583 25.0143C55.5855 25.5065 56.5105 25.7664 56.6767 26.5727C56.9548 27.9219 54.8394 28.3911 54.5772 28.8099L54.6127 28.9313C55.4991 29.3528 58.1462 26.8666 58.5866 29.6923C58.4022 30.0901 58.3667 30.1734 58.0843 30.5079C56.9552 31.573 54.8758 32.286 54.7444 29.9723C54.7136 29.4291 54.1377 29.8699 53.9463 28.6935C53.1498 28.1445 53.0731 27.9678 52.834 27.0469C53.2463 25.7252 54.4445 25.2764 55.6376 24.5925ZM54.7094 27.9705C55.2916 27.6925 55.58 27.5944 55.8171 26.9312C56.0443 26.2958 55.4673 25.8532 54.8725 25.8913C54.3586 26.1422 53.3991 26.6327 53.7391 27.5232C53.8509 27.8163 54.3848 27.98 54.7094 27.9705ZM56.1436 30.8675C56.7977 30.6909 57.9064 30.1534 57.772 29.3366C57.6341 29.1432 57.4231 29.0006 57.1786 29.0016C56.8805 29.0733 56.5932 29.1467 56.3002 29.2371C55.2532 29.56 55.0728 30.3388 56.1436 30.8675Z" fill="white"/>
<path d="M115.718 42.1606C117.082 42.0637 117.558 43.0932 117.885 44.1908C117.96 44.1409 118.034 44.0919 118.11 44.0438C118.497 43.7977 119.017 43.4286 119.459 43.5278C119.586 43.7071 119.667 43.7775 119.661 43.9947C119.405 44.3856 117.179 45.38 116.671 45.6297C115.853 46.0488 114.936 46.5627 114.065 46.8221C112.01 44.4782 112.917 42.9032 115.718 42.1606ZM114.916 45.5977C115.713 45.2043 116.506 44.8032 117.295 44.3943C116.96 43.7355 116.74 42.9495 115.915 42.917C115.018 43.1924 113.278 43.7669 113.814 45.0558C113.927 45.3279 114.085 45.6536 114.302 45.856C114.568 45.8132 114.684 45.7274 114.916 45.5977Z" fill="white"/>
<path d="M119.166 53.3749C120.011 53.0964 121.006 53.6062 121.285 54.4422C121.472 55.0054 121.506 55.2792 121.545 55.8778C122.026 55.7348 122.789 55.4249 123.238 55.7042C123.374 55.9775 123.345 55.8591 123.323 56.1673C122.88 56.4937 121.113 56.7338 120.47 56.8514C119.464 56.9444 118.278 57.3279 117.095 57.409C116.269 54.8923 116.336 53.8056 119.166 53.3749ZM117.551 56.6023C117.876 56.5244 118.331 56.4006 118.65 56.3441C119.4 56.2231 120.148 56.0842 120.892 55.9274C120.712 54.828 120.777 54.1945 119.464 54.1324C117.412 54.4799 117.237 54.5231 117.551 56.6023Z" fill="white"/>
<path d="M83.4095 19.0266C85.7232 19.0325 85.8866 21.5559 84.9555 23.1062C84.6447 23.6239 84.2044 23.7911 83.6432 23.896C82.5578 23.8504 81.66 23.482 81.5193 22.299C81.3439 20.8185 81.7651 19.2721 83.4095 19.0266ZM83.7415 23.1979C84.8527 22.5215 85.3246 19.6695 83.2507 19.7638C82.9519 19.9349 82.7651 20.0291 82.6115 20.3609C82.101 21.4646 81.9686 23.3834 83.7415 23.1979Z" fill="white"/>
<path d="M96.8795 23.4792C100.271 23.176 99.7787 27.1175 97.5277 28.179C94.0242 28.608 94.7125 24.4942 96.8795 23.4792ZM96.999 27.5906C98.2417 27.106 99.5223 24.498 97.471 24.1731C96.2532 24.442 94.7813 26.9988 96.999 27.5906Z" fill="white"/>
<path d="M37.7202 45.4165C40.4583 45.1451 42.7313 48.3156 39.747 49.5796C36.7958 49.8953 34.6471 46.7881 37.7202 45.4165ZM39.6691 48.8544C41.6244 47.4469 39.1292 46.0781 37.6116 46.2518C35.7311 47.5596 38.4948 49.0693 39.6691 48.8544Z" fill="white"/>
<path d="M117.222 73.2542C118.134 73.3664 119.461 73.6352 119.998 74.4574C120.819 75.714 120.106 77.139 118.683 77.3761C117.56 77.4096 116.364 76.9963 115.626 76.1265C115.595 75.9881 115.567 75.849 115.543 75.7094C115.324 74.4374 115.913 73.4867 117.222 73.2542ZM118.867 76.6642C120.899 75.2232 118.44 73.9923 116.974 74.0717C116.644 74.2035 116.621 74.2851 116.397 74.5316C115.582 75.4289 116.875 76.2368 117.657 76.4537C118.068 76.5673 118.421 76.6642 118.867 76.6642Z" fill="white"/>
<path d="M37.6642 66.7742C37.77 66.8034 37.9071 66.8577 38.0136 66.8957C38.2631 67.1416 38.3525 67.4 38.436 67.7252C39.055 70.1375 37.4013 70.9712 35.2752 70.8009C34.7798 70.7612 34.5548 70.5887 34.1697 70.3397C33.7314 69.5991 33.6369 69.2343 33.7005 68.3885C34.0936 67.1769 35.0065 67.071 36.0929 66.9486C36.2662 67.5077 36.4767 69.3802 36.5287 70.0192C39.1368 69.1007 37.0016 67.9599 37.6642 66.7742ZM35.121 70.01C35.3909 70.0542 35.6018 70.1199 35.8557 70.0385C35.9394 69.7289 35.7001 68.3629 35.6366 67.9505C35.5354 67.819 35.5793 67.8251 35.4612 67.7834C35.0077 67.9857 34.681 68.0879 34.4914 68.5939C34.2716 69.1805 34.5835 69.7416 35.121 70.01Z" fill="white"/>
<path d="M111.104 33.9463C113.565 35.7448 112.834 36.9898 110.709 38.4641C110.281 38.7615 110.015 38.9706 109.529 39.2167C109.272 39.1371 109.359 39.2137 109.232 39.0153C109.235 38.966 109.238 38.9168 109.24 38.8675C109.26 38.3692 108.579 38.2287 108.151 37.7602C107.943 37.4236 107.813 37.201 107.842 36.7809C107.9 35.9606 108.688 35.3196 109.508 35.4723C110.306 35.6207 110.856 36.362 111.282 36.9974C111.53 36.7534 111.807 36.4068 112.036 36.1348C111.641 35.327 110.971 34.8986 110.824 34.3659C110.889 34.1006 110.883 34.1719 111.104 33.9463ZM109.852 38.1518C110.162 37.8593 110.476 37.5533 110.801 37.2794C110.377 36.7904 109.983 36.1371 109.299 36.162C108.084 36.9002 108.839 37.5935 109.703 38.1833L109.852 38.1518Z" fill="white"/>
<path d="M58.6594 23.0236C59.1698 22.9915 59.2706 22.9631 59.7323 23.279C60.3506 23.7023 61.5088 26.109 61.5825 26.7316C61.3836 27.2314 61.0506 26.8742 60.8314 27.0122C59.8737 27.615 58.9745 28.7255 58.071 27.2959C58.0203 27.205 57.9737 27.1117 57.9314 27.0166C57.316 25.6113 58.6792 25.0617 59.7103 24.6463C58.8199 22.6677 58.1597 24.4848 56.986 24.4484L56.8848 24.3143C56.9091 23.6183 58.0745 23.1678 58.6594 23.0236ZM58.4596 26.2261C58.7147 26.7613 58.7879 26.9768 59.2809 27.3283C59.9061 27.0257 60.0928 26.8268 60.597 26.3524C60.4555 26.0547 60.1232 25.2248 59.864 25.1302C59.1714 25.5118 58.9307 25.616 58.4596 26.2261Z" fill="white"/>
<path d="M118.325 64.023L118.431 64.0227C120.343 64.0232 120.193 65.4201 120.094 66.8776C120.421 66.8555 120.732 66.8499 121.045 66.7487C121.696 66.189 121.039 64.6156 121.764 64.4491C122.203 64.7506 122.099 65.8054 122.082 66.2906C121.833 67.4559 121.167 67.6531 120.039 67.6332C119.583 67.6251 117.461 67.5381 117.231 67.2961C117.167 66.9213 117.431 66.6185 117.407 66.4525C117.31 65.7502 117.214 65.5969 117.308 64.8487C117.651 64.3095 117.726 64.2373 118.325 64.023ZM118.103 66.6424C118.514 66.6932 118.908 66.7495 119.323 66.7592L119.467 66.7488C119.587 66.5317 119.595 65.7708 119.514 65.5173C119.278 64.7873 118.925 64.8155 118.297 64.8518C117.682 65.4108 117.911 65.9415 118.103 66.6424Z" fill="white"/>
<path d="M41.9877 37.1634C42.8227 37.1094 45.6557 38.8188 45.8031 39.4728C45.6462 39.784 45.2734 39.8628 45.2328 40.0127C44.8289 41.5019 43.9389 42.4594 42.4017 41.1103C41.6346 39.5757 43.1449 39.0885 42.9677 38.2891C41.6706 37.2142 41.4717 39.1582 40.7942 39.5597C40.5156 39.56 40.6257 39.6096 40.4416 39.4338C40.2443 38.7248 41.3834 37.5001 41.9877 37.1634ZM43.9406 41.0255C44.4029 40.5919 44.5252 40.2102 44.7615 39.619C44.3708 39.2264 44.0783 39.0157 43.5917 38.7408C42.9633 39.6849 42.2784 40.6297 43.9406 41.0255Z" fill="white"/>
<path d="M118.287 46.2878C118.937 46.3023 119.043 46.6791 119.266 47.2093C119.469 47.6905 119.769 48.5829 119.459 49.0461C119.065 49.634 115.896 50.8871 115.417 50.6251L115.361 50.4305C115.594 49.5345 115.304 50.0012 114.819 49.1094C114.682 48.8014 114.625 48.4399 114.558 48.1075C114.942 47.3359 115.713 46.612 116.632 47.0946C117.439 47.5174 117.711 48.3882 117.954 49.198C119.887 48.113 118.065 47.5624 118.287 46.2878ZM116.639 49.5431L117.374 49.33C117.07 48.5596 116.917 47.6331 115.927 47.7646C115.054 48.3561 115.325 49.3831 116.192 49.6855C116.43 49.6529 116.422 49.652 116.639 49.5431Z" fill="white"/>
<path d="M34.6802 55.0235C35.3752 54.9745 38.1803 55.2242 38.6538 55.565C38.7769 56.0128 38.2909 56.1453 38.4666 56.9343C38.8432 58.6255 37.1278 59.2708 35.969 58.3106C35.5395 57.4204 35.6868 56.7845 35.8339 55.8366C33.7184 55.5808 34.7999 57.2842 34.1863 58.043C33.9757 58.0508 33.9482 58.0122 33.7762 57.8929C33.4162 57.308 33.8263 56.178 34.0887 55.5867C34.1975 55.3417 34.4598 55.1681 34.6802 55.0235ZM37.7006 57.8667C37.9734 57.1647 37.8848 56.9338 37.7772 56.1879C37.2626 56.0557 36.8857 55.9875 36.3591 55.9031C36.3035 56.822 36.1222 58.504 37.7006 57.8667Z" fill="white"/>
<path d="M73.4712 18.8906C75.9997 18.3147 75.3473 21.7647 75.6871 23.1838C75.7213 23.3263 75.6168 23.4127 75.5293 23.4849C75.4206 23.5076 75.2921 23.5361 75.2084 23.4721C74.7198 23.0991 73.9377 23.7628 73.3509 23.731C72.8694 23.7049 72.7228 23.6205 72.3822 23.2469C72.3404 23.1556 72.3009 23.0633 72.2637 22.9702C71.4872 21.0091 73.0691 20.9299 74.4338 20.7367C74.7973 20.6853 74.5455 19.9806 74.4369 19.7612C73.735 19.2229 72.4852 20.0068 72.1103 19.5164L72.1727 19.2562C72.4931 18.9008 73.0001 18.9244 73.4712 18.8906ZM73.2717 23.0178C73.9231 23.1213 74.2031 22.9506 74.8031 22.6877C74.7759 22.2373 74.7618 21.7445 74.6632 21.3083L74.5716 21.2438C74.0399 21.3213 72.6226 21.5047 72.8343 22.3586C72.8999 22.6221 73.0544 22.8549 73.2717 23.0178Z" fill="white"/>
<path d="M105.946 27.5674C106.094 27.5546 106.242 27.551 106.39 27.5564C107.332 27.5877 109.426 29.137 108.722 29.777C108.016 29.7497 107.397 28.5664 106.764 28.4066C105.552 28.1475 105.779 29.2945 106.018 30.0285C106.481 31.4531 107.04 32.7653 105.397 33.5708C104.411 33.7454 102.64 32.7808 102.418 31.8587C102.47 31.5624 102.414 31.6601 102.604 31.446C103.503 31.4215 104.745 34.1507 105.738 32.0576C105.364 30.458 104.142 28.6534 105.946 27.5674Z" fill="white"/>
<path d="M86.9536 19.624C87.3877 19.7288 87.4513 19.7982 87.8052 20.0573C88.4845 20.0549 89.7786 20.0434 90.0441 20.8748C90.2695 21.5795 89.6576 24.929 88.9534 25.13C88.2553 24.7821 89.1319 22.4256 89.3051 21.6742C89.4057 20.5209 88.2719 20.6984 87.4762 20.7202C87.3189 21.4162 86.8598 24.174 86.2078 24.4358C85.9945 24.3707 86.0595 24.3881 85.8962 24.1684C85.7956 23.5985 86.7365 20.3529 86.9536 19.624Z" fill="white"/>
<path d="M63.4172 21.0693C64.4887 21.2168 64.7958 22.0372 65.1555 22.9587C65.3452 23.4445 65.9095 24.828 65.7645 25.2656C65.4832 25.3986 65.5997 25.3881 65.3068 25.3508C64.226 24.5029 64.5382 20.2619 62.0454 22.5271L61.9834 22.5839C62.1831 23.0999 63.1621 25.7012 63.1436 26.096C62.9794 26.3155 63.0824 26.2449 62.8311 26.326C62.0332 26.0817 61.4619 23.3024 61.0884 22.5353C60.9639 22.2793 60.9609 22.1078 61.0981 21.8767C61.5097 21.7417 61.7145 21.9414 61.7797 21.8987C62.463 21.4513 62.5901 21.2373 63.4172 21.0693Z" fill="white"/>
<path d="M39.4721 41.0229C40.0107 40.9891 40.4758 41.0906 40.9495 41.3513C41.4603 41.6325 43.4234 42.4151 43.5326 42.977C43.451 43.2192 43.4506 43.2299 43.2482 43.3703C42.5934 43.461 41.1136 42.1083 40.3626 41.931C39.265 41.672 39.1026 42.6065 38.8916 43.4318L39.4907 43.7564C40.1318 44.1027 41.97 44.8482 42.1306 45.524C42.052 45.772 42.1274 45.6956 41.9447 45.8017C41.0759 45.6475 38.7205 44.2921 37.8918 43.7576C37.818 43.71 37.8446 43.6966 37.834 43.5751C38.0035 43.293 38.0354 43.2624 38.2936 43.057C38.3072 42.9879 38.3213 42.9189 38.3361 42.85C38.5297 41.9488 38.681 41.5321 39.4721 41.0229Z" fill="white"/>
<path d="M113.793 37.6005C114.054 37.5982 113.938 37.5614 114.15 37.7204C114.514 38.7779 116.317 39.6267 115.141 40.903C114.616 41.4717 112.483 43.077 111.754 42.7856L111.728 42.6487C111.993 41.9422 113.405 41.189 114.049 40.7893C115.228 39.9709 114.644 39.3834 113.732 38.6638C112.803 39.1395 111.334 40.3204 110.538 40.5341C110.289 40.4765 110.379 40.5196 110.192 40.2936C110.247 39.6424 113.114 38.0285 113.793 37.6005Z" fill="white"/>
<path d="M114.879 77.1406C115.449 77.3866 118.899 78.7695 119.057 79.1554C119.002 79.4175 118.824 79.5437 118.626 79.7406C118.291 83.1199 116.064 81.7055 114.05 80.7256C113.78 80.6102 113.649 80.5705 113.415 80.3843L113.416 80.2284C113.632 79.8423 113.773 79.7131 114.256 79.8895C115.061 80.1832 116.315 81.1321 117.174 81.0557C117.808 80.9993 117.94 79.9843 118.046 79.4468C117.462 79.1307 114.861 78.091 114.613 77.8613C114.594 77.5804 114.738 77.3976 114.879 77.1406Z" fill="white"/>
<path d="M39.4019 74.0032L39.5998 74.1131C39.7239 74.373 39.7132 74.2692 39.6981 74.5439C38.9477 75.722 34.6201 74.8609 36.8741 77.8465C37.5826 77.5492 40.1765 76.4631 40.7113 76.9452C40.7251 77.3924 40.4918 77.4071 40.1446 77.5667C39.2249 77.8424 37.0721 78.7123 36.29 78.7449C35.8501 78.4428 36.4404 78.1876 35.8372 77.444C33.9561 75.1249 37.8539 74.477 39.4019 74.0032Z" fill="white"/>
<path d="M34.6563 59.5012C35.5574 59.4668 36.8539 59.5331 37.7765 59.5878C37.9484 59.5979 38.0895 59.7809 38.1808 59.9217C38.2191 60.1884 38.2496 60.0756 38.1275 60.2795C37.4384 60.5938 35.6653 60.1312 34.8438 60.2931C33.7416 60.5105 34.0736 61.5076 34.28 62.2832L36.3496 62.3555C36.7648 62.3547 37.6266 62.3072 37.9856 62.4615C38.195 62.7993 38.1775 63.006 37.8288 63.2142C37.1341 63.2038 33.9008 63.1362 33.4226 62.9725C33.4785 61.427 32.8591 59.8829 34.6563 59.5012Z" fill="white"/>
<path d="M117.649 59.9995C118.682 60.0339 120.634 61.7867 121.525 62.4812C121.428 61.937 121.403 61.3589 121.362 60.8063C121.332 60.4022 121.324 60.1254 121.78 60.0169L121.935 60.119C122.176 60.6122 122.122 61.9363 122.134 62.5289C122.142 62.9856 122.064 63.0789 121.778 63.3437C120.514 63.0308 119.138 61.5495 117.94 60.8367C118.063 61.3627 118.256 62.8643 117.963 63.3232C117.695 63.4234 117.829 63.4126 117.545 63.3516C117.25 62.9953 117.37 61.3017 117.352 60.7758C117.339 60.4086 117.39 60.2425 117.649 59.9995Z" fill="white"/>
<path d="M70.4845 19.3409C70.7182 19.3344 70.6105 19.3103 70.8195 19.4174C71.2114 20.1892 69.534 23.0095 69.0247 23.7151C69.5596 23.577 71.3457 23.0284 71.6813 23.4844C71.6754 23.5786 71.6853 23.7596 71.6253 23.7983C71.1327 24.1159 69.5389 24.298 68.9738 24.3917C68.7786 24.3969 68.7651 24.3872 68.5819 24.3445C67.907 23.7157 69.0266 22.1644 69.3326 21.519C69.5566 21.0466 69.9208 20.4665 70.2073 20.0187C69.7344 20.1465 67.96 20.6688 67.7021 20.1613C68.0433 19.5556 69.7976 19.4269 70.4845 19.3409Z" fill="white"/>
<path d="M95.204 20.5042C95.7145 20.5244 96.4731 20.6868 96.5458 21.2941L96.3983 21.4144C96.0715 21.468 95.8204 21.322 95.5012 21.1941L94.9861 22.2158C95.3613 22.3549 95.9119 22.4697 95.8166 22.9678L95.6237 23.077C95.2841 23.1068 95.0489 22.9667 94.7282 22.8304C94.3719 23.7598 94.0066 24.6858 93.633 25.6083C93.4772 26.0257 93.2669 26.5238 92.7284 26.5359L92.6172 26.3921C92.5173 25.754 93.7268 23.2083 94.0323 22.4982C93.6776 22.3511 93.2064 22.2197 93.3365 21.7522L93.543 21.6675C93.8463 21.6774 93.9801 21.7845 94.2464 21.9328C94.5353 21.2941 94.6352 20.9313 95.204 20.5042Z" fill="white"/>
<path d="M108.254 31.136C108.56 31.1692 108.59 31.1705 108.822 31.3827L109.166 31.6949C109.496 31.3692 109.718 31.1079 110.196 31.3126C110.509 31.8016 110.034 32.0243 109.67 32.2725C110.039 32.6213 110.333 32.78 110.204 33.3167C109.765 33.5958 109.512 33.096 109.293 32.7776C108.581 33.4365 107.882 34.1106 107.199 34.7995L106.808 35.2343C107.078 35.4856 107.525 35.8018 107.361 36.1965C106.749 36.4008 105.935 35.4932 106.092 35.0258C106.41 34.0819 108.008 32.8337 108.749 32.2132C108.289 31.7909 108.074 31.7462 108.254 31.136Z" fill="white"/>
<path d="M77.1616 17.6082C77.3863 17.6189 77.4574 17.6006 77.6298 17.7443C77.7909 18.016 77.7554 18.3628 77.7622 18.6947C78.1222 18.6982 78.8241 18.6144 78.834 19.1124C78.4785 19.4858 78.2168 19.3843 77.7183 19.3588C77.7735 20.4038 77.7562 21.8783 77.9142 22.8605C78.2864 22.8515 78.8279 22.791 79.0397 23.1471C78.8975 23.3914 78.9497 23.313 78.6835 23.4743C78.3575 23.4786 77.4627 23.5334 77.2963 23.2955C76.8266 22.6234 76.9529 20.179 76.9499 19.3417C76.6152 19.3615 76.1933 19.4246 75.944 19.2123C75.9191 18.9362 75.9059 19.045 76.0346 18.7862C76.2461 18.6569 76.53 18.72 76.7963 18.7408C77.0058 18.5534 76.8137 18.061 77.1616 17.6082Z" fill="white"/>
<path d="M38.6251 70.7268C38.8711 70.8767 39.0462 71.3855 39.0972 71.686C39.3767 73.3353 36.3574 73.0583 35.3736 73.5612C35.23 73.6345 35.5248 74.2435 35.2862 74.5969C35.0245 74.6526 35.1449 74.6683 34.911 74.5624C34.7424 74.2976 34.7527 74.0275 34.7231 73.7068C34.4003 73.786 34.0513 73.8909 33.7287 73.9815C33.5145 73.7142 33.3991 73.5021 33.5898 73.202C33.8837 73.0141 34.176 73.0079 34.5278 72.9583L34.4667 72.7804C34.3333 72.3949 34.2198 72.2252 34.4706 71.8714C35.0273 71.7436 35.0678 72.4022 35.1524 72.8102C36.2432 72.4798 37.327 72.2852 38.4305 72.0027C38.3461 71.4331 38.1497 71.0951 38.6251 70.7268Z" fill="white"/>
<path d="M35.0418 51.269C35.3353 51.3605 35.3733 51.3662 35.511 51.5804C35.5449 51.9011 35.3766 52.2023 35.2486 52.5142C36.2617 52.6804 37.6079 53.0597 38.6283 53.3172C38.7427 52.8856 38.7606 52.5866 39.1054 52.3239C39.7548 52.3668 39.429 53.5748 38.9885 53.8323C38.5558 54.0853 38.409 54.0073 37.9478 53.9309C37.3505 53.8713 35.7383 53.4322 35.0809 53.2613C35.0143 53.6037 34.95 54.2175 34.4697 54.1174L34.3527 53.9378C34.2979 53.6322 34.4257 53.3783 34.5305 53.0743C33.9886 53.0352 33.6818 53.1078 33.499 52.5344C33.6177 52.2729 33.5498 52.3634 33.8165 52.2009C34.1211 52.1571 34.3171 52.2638 34.6121 52.3702C34.7567 51.9071 34.8209 51.6949 35.0418 51.269Z" fill="white"/>
<path d="M117.482 69.5829C117.424 69.9808 117.409 70.4617 117.021 70.665L116.875 70.5862C116.611 70.1291 116.693 69.1695 117.081 68.9858C117.864 68.6151 120.217 69.2151 121.053 69.318C121.232 69.32 121.429 69.2988 121.58 69.3798C122.005 69.544 122.54 69.4513 122.723 70.1054L122.643 70.2217C122.223 70.4024 121.964 70.3105 121.545 70.1867C121.485 70.5663 121.442 71.2268 120.956 71.2615C120.619 70.8814 120.769 70.5924 120.868 70.1181C119.742 69.9256 118.613 69.7472 117.482 69.5829Z" fill="white"/>
<path d="M42.0005 33.9399C42.4119 34.1527 46.5041 37.4624 46.9155 37.8738C46.9303 38.1269 46.7921 38.2647 46.6431 38.4852C46.288 38.4761 41.7652 34.9022 41.6465 34.531C41.6622 34.2759 41.8253 34.1446 42.0005 33.9399Z" fill="white"/>
<path d="M40.974 78.4448C41.1516 78.4666 41.2252 78.539 41.372 78.6411C41.4545 78.9017 41.4546 78.7735 41.362 79.0389C40.8477 79.5698 36.6875 81.2072 35.7905 81.5642C35.5374 81.5369 35.4317 81.3705 35.4053 81.1467C35.6441 80.5039 40.0129 78.8954 40.974 78.4448Z" fill="white"/>
<path d="M51.6915 27.0613C51.975 27.198 51.898 27.1132 52.0374 27.3653C52.0434 27.8157 51.582 28.2333 51.2747 28.5819C51.9256 29.4283 52.7585 30.3789 53.296 31.2942C53.445 31.5478 53.3945 31.6717 53.3165 31.8978C53.0955 32.074 53.1997 32.027 52.9128 32.0541C52.4929 31.5968 50.3763 28.873 50.2539 28.3802C50.8155 27.8862 51.1746 27.616 51.6915 27.0613Z" fill="white"/>
<path d="M33.6204 63.8894L33.6437 63.9045C34.0817 64.1811 34.1572 64.8001 34.296 65.3201C34.9983 65.3167 37.76 65.0145 38.1705 65.2934C38.2391 65.5319 38.2136 65.5559 38.1236 65.8024C37.9417 65.9748 38.0172 65.922 37.7355 65.9685C36.4189 66.0351 34.934 66.1522 33.62 66.1528C33.5235 66.1529 33.5406 66.1246 33.4519 66.0132C33.4164 65.8123 33.4194 65.7945 33.5145 65.6059C33.879 64.883 32.8856 64.7349 33.6204 63.8894Z" fill="white"/>
<path d="M101.006 25.311C101.343 25.3898 101.381 25.572 101.541 25.8595C101.96 25.9965 102.591 26.1273 102.699 26.6044C102.353 26.9572 101.563 26.6128 101.17 26.4814L99.7716 28.6597L99.6922 28.7839C99.4789 29.1141 99.3223 29.4664 98.9532 29.546C98.7535 29.4635 98.6688 29.4537 98.5645 29.2669C98.6446 28.6988 100.579 25.8131 101.006 25.311Z" fill="white"/>
<path d="M120.085 50.4822C120.162 50.4931 120.27 50.5377 120.344 50.5637C120.432 50.8501 120.281 51.1811 120.319 51.2693C120.482 51.6492 121.046 52.1682 120.774 52.5785C120.56 52.6407 120.531 52.6211 120.321 52.5658C120.109 52.3556 119.796 51.6981 119.641 51.4031C118.89 51.6237 118.138 51.839 117.384 52.0489C117.15 52.1169 116.915 52.1823 116.68 52.2451C116.362 52.3292 116.204 52.3877 115.92 52.2217C115.773 51.9647 115.809 52.0998 115.814 51.8C116.132 51.4188 119.321 50.6839 120.085 50.4822Z" fill="white"/>
<path d="M65.9118 20.2083C66.1528 20.2065 66.1795 20.1952 66.3887 20.2977C66.7013 20.7836 67.4604 23.7571 67.5704 24.4994C67.6007 24.704 67.5376 24.7361 67.4242 24.8606C67.2363 24.8885 67.1759 24.8902 66.9843 24.8915C66.6759 24.604 66.0162 21.6164 65.8252 21.0444C65.6987 20.6656 65.7279 20.5284 65.9118 20.2083Z" fill="white"/>
<path d="M121.418 57.9927C121.883 57.9933 121.944 58.1718 121.885 58.6012C121.511 58.9764 118.342 59.1207 117.657 59.1892C117.367 59.1891 117.382 59.2395 117.212 59.0972C117.156 58.8306 117.161 58.7981 117.24 58.5365C117.495 58.2701 120.788 58.0543 121.418 57.9927Z" fill="white"/>
<path d="M80.0378 18.7458C80.332 18.7619 80.4704 18.7512 80.6512 18.9952C80.7087 19.5441 80.5257 23.0971 80.3532 23.5388L80.2496 23.5446C79.9553 23.5586 79.9001 23.5549 79.7171 23.3854C79.6112 22.7766 79.7579 19.2422 80.0378 18.7458Z" fill="white"/>
<path d="M35.4666 49.6008C35.9303 49.6784 39.4838 50.8186 39.8342 51.0571C39.8809 51.3052 39.7927 51.4061 39.6934 51.6716C39.2871 51.6845 35.5094 50.5449 35.3058 50.2953C35.2532 50.0541 35.3732 49.8442 35.4666 49.6008Z" fill="white"/>
<path d="M116.574 71.2493C117.224 71.3862 120.776 72.093 121.058 72.4069C121.069 72.7458 121.013 72.7353 120.847 73.0579C120.085 72.8335 116.821 72.2003 116.449 71.9786C116.382 71.7219 116.489 71.5132 116.574 71.2493Z" fill="white"/>
<path d="M82.1514 104.998C82.7746 105.014 83.3971 105.017 84.0204 105.007C84.0325 105.551 84.0741 106.359 84.0105 106.878C83.3532 106.871 82.8351 106.877 82.1771 106.917L82.1514 104.998Z" fill="white"/>
<path d="M82.2937 100.128C82.8466 100.141 83.4669 100.111 84.0243 100.096C84.022 100.725 84.0258 101.355 84.0356 101.983C83.4313 101.957 82.7604 101.976 82.1515 101.981C82.1682 101.496 82.057 100.472 82.2937 100.128Z" fill="white"/>
<path d="M123.203 57.7441C123.52 57.8433 123.427 57.7703 123.639 57.9998C123.734 58.594 123.43 58.6181 122.975 58.7057C122.693 58.651 122.683 58.6309 122.51 58.4502C122.414 57.8852 122.776 57.8404 123.203 57.7441Z" fill="white"/>
<path d="M65.4313 18.5241C66.1541 18.5125 66.4107 19.1599 66.0121 19.6974C65.2421 19.8359 65.1311 19.0528 65.4313 18.5241Z" fill="white"/>
<path d="M33.8722 49.1021C34.273 49.2033 34.4607 49.219 34.694 49.5286C34.7384 49.7826 34.628 49.9084 34.4979 50.1418C34.101 50.0533 33.7158 50.0586 33.5605 49.6572C33.6038 49.3766 33.6787 49.3297 33.8722 49.1021Z" fill="white"/>
<path d="M80.1107 17C80.8459 17.0923 81.0009 17.4248 80.7256 18.1312C80.3641 18.1376 80.2582 18.1616 79.9866 17.974C79.8459 17.5872 79.9428 17.4152 80.1107 17Z" fill="white"/>
<path d="M121.962 72.3689C122.334 72.4988 122.573 72.5262 122.791 72.8229C122.817 73.0721 122.713 73.2111 122.597 73.4401C122.19 73.3625 121.892 73.3831 121.698 72.9879C121.714 72.7155 121.817 72.601 121.962 72.3689Z" fill="white"/>
<path d="M121.054 69.3181C121.076 68.9899 121.059 68.858 121.225 68.5726C121.456 68.4047 121.334 68.4336 121.598 68.4569C121.855 68.7713 121.75 69.0242 121.58 69.3798C121.43 69.2989 121.232 69.3201 121.054 69.3181Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 36 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 28 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 39 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 27 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.7 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.2 KiB

+14
View File
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.7 KiB

+4
View File
@@ -0,0 +1,4 @@
<svg width="29" height="29" viewBox="0 0 29 29" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="14.1884" cy="14.1884" r="14.1884" fill="#F67057"/>
<circle cx="14.1883" cy="14.1864" r="8.73132" fill="#F4F8FB"/>
</svg>

After

Width:  |  Height:  |  Size: 229 B

BIN
View File
Binary file not shown.
+102
View File
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 319 KiB

+12
View File
@@ -0,0 +1,12 @@
<svg width="902" height="552" viewBox="0 0 902 552" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_291_11190)">
<circle cx="774.8" cy="774.8" r="537" fill="#2FA0B6" fill-opacity="0.3"/>
</g>
<defs>
<filter id="filter0_f_291_11190" x="-1.52588e-05" y="-0.000198364" width="1549.6" height="1549.6" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="118.9" result="effect1_foregroundBlur_291_11190"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 635 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 MiB

+140
View File
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 85 KiB

+75
View File
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 79 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 89 KiB

+80
View File
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 77 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 230 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

+9
View File
@@ -0,0 +1,9 @@
<svg width="1728" height="1016" viewBox="0 0 1728 1016" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="1728" height="1016" fill="url(#paint0_linear_275_5107)" fill-opacity="0.6"/>
<defs>
<linearGradient id="paint0_linear_275_5107" x1="864" y1="0" x2="864" y2="1016" gradientUnits="userSpaceOnUse">
<stop stop-color="#2FA0B6"/>
<stop offset="1" stop-color="#01040B"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 414 B

+36
View File
@@ -0,0 +1,36 @@
<svg width="1692" height="800" viewBox="0 0 1692 800" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_ddddd_8_95442)">
<path d="M28.0001 422.23C125.66 501.049 344.154 624.207 436.852 486.29C552.725 313.894 712.875 317.661 907.88 346.866C1096 375.039 1100.5 -16.459 1325.5 29.8044" stroke="#DA290C" stroke-width="4" stroke-linecap="round"/>
</g>
<defs>
<filter id="filter0_ddddd_8_95442" x="0" y="0" width="1714.5" height="1000.52" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<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="11" dy="13"/>
<feGaussianBlur stdDeviation="18.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.713726 0 0 0 0 0.333333 0 0 0 0 0.262745 0 0 0 0.98 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8_95442"/>
<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="43" dy="53"/>
<feGaussianBlur stdDeviation="34"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.713726 0 0 0 0 0.333333 0 0 0 0 0.262745 0 0 0 0.85 0"/>
<feBlend mode="normal" in2="effect1_dropShadow_8_95442" result="effect2_dropShadow_8_95442"/>
<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="97" dy="119"/>
<feGaussianBlur stdDeviation="46"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.713726 0 0 0 0 0.333333 0 0 0 0 0.262745 0 0 0 0.5 0"/>
<feBlend mode="normal" in2="effect2_dropShadow_8_95442" result="effect3_dropShadow_8_95442"/>
<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="172" dy="212"/>
<feGaussianBlur stdDeviation="54.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.713726 0 0 0 0 0.333333 0 0 0 0 0.262745 0 0 0 0.15 0"/>
<feBlend mode="normal" in2="effect3_dropShadow_8_95442" result="effect4_dropShadow_8_95442"/>
<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="268" dy="331"/>
<feGaussianBlur stdDeviation="59.5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.713726 0 0 0 0 0.333333 0 0 0 0 0.262745 0 0 0 0.02 0"/>
<feBlend mode="normal" in2="effect4_dropShadow_8_95442" result="effect5_dropShadow_8_95442"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect5_dropShadow_8_95442" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 484 KiB

+75
View File
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 78 KiB

+75
View File
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 76 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

+15
View File
@@ -0,0 +1,15 @@
<svg width="1434" height="1200" viewBox="0 0 1434 1200" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_291_11185)">
<path d="M537.476 100H411.257L1288.66 1027.7H1334L537.476 100Z" fill="white" fill-opacity="0.1"/>
<path d="M126.959 101.225H294.842L1092.59 1027.7H1053.38L126.959 101.225Z" fill="white" fill-opacity="0.1"/>
<path d="M100 362.255V200.49L885.496 1088.97H847.507L100 362.255Z" fill="white" fill-opacity="0.1"/>
<path d="M103.676 477.451V620.833L646.538 1100H701.682L103.676 477.451Z" fill="white" fill-opacity="0.1"/>
</g>
<defs>
<filter id="filter0_f_291_11185" x="0" y="0" width="1434" height="1200" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="50" result="effect1_foregroundBlur_291_11185"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 951 B

+10
View File
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 3.0 MiB

+9
View File
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 129 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 251 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 291 KiB

+10671
View File
File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 747 KiB

+1 -1
View File
File diff suppressed because one or more lines are too long
+1
View File
File diff suppressed because one or more lines are too long
-1
View File
File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 940 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 754 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

+9
View File
@@ -0,0 +1,9 @@
<svg width="1728" height="1107" viewBox="0 0 1728 1107" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="1728" height="1107" fill="url(#paint0_linear_275_5168)" fill-opacity="0.6"/>
<defs>
<linearGradient id="paint0_linear_275_5168" x1="864" y1="0" x2="864" y2="1107" gradientUnits="userSpaceOnUse">
<stop offset="0.591346" stop-color="#01040B"/>
<stop offset="1" stop-color="#2FA0B6"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 432 B

+57
View File
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 37 KiB

+67
View File
@@ -0,0 +1,67 @@
<svg width="157" height="124" viewBox="0 0 157 124" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M98.7744 49.6857C102.716 49.3264 107.473 50.1756 110.686 52.66C113.391 54.7528 114.265 57.4007 114.687 60.6464C115.165 64.3181 114.532 69.102 112.1 72.0445C109.715 74.9308 106.059 75.9434 102.478 76.3244C94.4873 76.9028 86.9145 73.3325 86.615 64.4344C86.4917 60.7844 86.9819 56.5755 89.5021 53.7356C91.6691 51.2938 95.5712 49.9002 98.7744 49.6857ZM101.191 69.8657C105.039 69.5279 104.854 66.9278 104.92 63.7903C104.951 62.3568 104.897 61.0205 104.829 59.589C104.704 56.9302 102.785 55.921 100.212 56.1753C97.6459 56.4181 96.7927 57.5016 96.5651 60.0285C96.3941 61.9219 96.4372 63.8367 96.5416 65.7339C96.6505 67.2939 97.1202 68.9899 98.7638 69.5169C99.4907 69.7499 100.432 69.9689 101.191 69.8657Z" fill="white"/>
<path d="M69.829 49.6703C73.038 49.4157 76.7616 50.1402 79.4679 51.9374C79.4157 51.4677 79.4241 50.8014 79.4158 50.3156C81.1244 50.2762 83.3973 50.2497 85.0885 50.3206C85.0242 53.2387 85.239 56.3409 85.1044 59.2235C83.3776 59.2543 81.3521 59.2667 79.6404 59.2134C79.4263 58.9502 79.207 58.6913 78.9831 58.4369C77.3917 56.6517 75.1152 55.864 72.8057 55.5423C71.6894 55.3869 70.1681 55.2674 69.2433 56.051C68.753 56.4664 69.1944 57.1699 69.6313 57.3744C70.5075 57.7846 71.59 58.0652 72.5192 58.331L77.462 59.7379C78.4514 60.0224 79.5595 60.2984 80.5072 60.6876C83.4026 61.8765 85.8373 64.6104 85.9931 67.8096C86.1036 69.8781 85.3828 71.9049 83.991 73.439C81.9897 75.641 79.114 76.2245 76.2904 76.3593C72.6039 76.446 70.157 75.7128 66.9789 73.9841C67.0607 74.5421 67.0019 75.2863 66.9777 75.8638C65.6488 75.7648 62.4795 75.7931 61.17 75.8884C61.0722 72.8464 61.1412 69.3395 61.1515 66.2626C62.873 66.3141 64.6808 66.1967 66.3405 66.2772C66.6547 66.586 67.0333 67.1922 67.3671 67.5712C68.4407 68.7901 70.0842 69.5929 71.6636 70.0155C73.1907 70.4243 75.9786 70.5005 77.4749 69.7274C77.7033 69.6091 77.754 69.4303 77.7994 69.2188C77.6194 68.564 76.8365 68.3362 76.2522 68.1226C72.1481 66.6235 66.9825 66.0381 63.4833 63.3544C60.3349 60.9398 60.144 55.6859 62.5658 52.7554C64.2065 50.7701 67.3082 49.8585 69.829 49.6703Z" fill="white"/>
<path d="M77.3921 78.4759C77.7914 78.4798 78.1068 78.4254 78.3973 78.6748C78.541 78.9727 78.4737 79.323 78.4517 79.6695C80.4493 79.7387 83.5459 80.1091 85.4935 80.5906C85.8052 79.7837 86.0162 79.2132 86.5313 78.5004L87.6099 78.5391C87.2982 79.3185 86.9533 80.0525 86.6001 80.8138C88.5009 81.3498 89.9327 81.843 91.7457 82.6424C92.7736 81.3612 93.7622 80.0346 94.7689 78.7405C95.0193 78.4181 95.765 78.5233 96.175 78.5379C95.3717 79.7143 93.7856 82.2348 92.7312 83.094C93.6896 83.544 95.0132 84.3049 95.942 84.8435C97.6991 83.3882 99.2701 81.8717 100.668 80.0631C101.069 79.5432 101.482 78.9883 101.936 78.5183C102.296 78.5051 102.771 78.5336 103.14 78.5456C102.099 80.1945 100.882 81.7257 99.5113 83.1137C93.9218 88.8575 86.2552 92.1092 78.2407 92.1357C75.5476 92.144 72.8644 91.8149 70.2537 91.1554C63.3482 89.4135 56.2711 84.6839 52.5898 78.5264C52.8702 78.5256 53.6616 78.4891 53.8506 78.6626C54.7897 79.5242 55.5262 80.8045 56.4332 81.7477C57.5584 82.9178 58.6721 83.9139 59.9372 84.901C60.9194 84.2694 61.9866 83.774 62.9628 83.1038C61.7677 81.9186 60.4246 79.9203 59.5383 78.5071C59.938 78.5101 60.3537 78.5306 60.7545 78.5447C61.1773 78.9706 61.7623 79.8241 62.1513 80.3415C62.7534 81.1479 63.3981 81.9216 64.0827 82.6598C65.6558 81.9284 67.5791 81.3309 69.2478 80.8478C68.8866 80.1016 68.5401 79.2685 68.2059 78.5038C68.6187 78.4984 68.9566 78.5267 69.3686 78.5596C69.7819 79.1524 70.1193 79.8849 70.4313 80.5384C72.5087 80.0122 75.1897 79.8148 77.3308 79.6741C77.2968 79.2996 77.2461 78.8208 77.3921 78.4759ZM78.4979 87.1754C79.4479 87.2699 80.0038 87.3244 80.9372 87.5657C81.5105 86.829 82.0626 86.0764 82.5921 85.3071C83.2819 84.3042 83.9248 83.305 84.5307 82.2499C84.6608 82.023 84.7939 81.8036 84.9527 81.5964C82.608 81.1834 80.9054 80.8917 78.4986 80.8632C78.4918 82.9397 78.5274 85.1127 78.4979 87.1754ZM70.9695 81.5934C71.9677 83.3065 72.6818 84.5114 73.8556 86.1059C74.1664 86.5158 74.6604 87.1285 74.9208 87.5384C75.7503 87.2971 76.4886 87.248 77.3467 87.1822C77.3202 85.2073 77.2219 82.8028 77.2733 80.8721C76.852 80.8787 76.2873 80.871 75.8786 80.9094C74.067 81.0765 72.7586 81.2658 70.9695 81.5934ZM79.4116 90.9512C81.4137 90.8839 82.7956 90.4542 84.5299 90.3264C81.9537 88.7032 79.7708 88.1186 76.697 88.3848C74.4558 88.7637 73.3005 89.0141 71.3653 90.3612C72.0694 90.4315 72.7993 90.5276 73.4964 90.6562C75.4786 91.0223 77.4042 91.0692 79.4116 90.9512ZM85.9443 89.8885L87.4291 89.3915C90.2927 88.4181 92.3818 87.3289 94.8234 85.593C94.1691 85.2202 92.5686 84.2754 91.931 84.0629C90.2216 85.649 87.2029 88.2608 85.0616 89.2637L85.9443 89.8885ZM82.1791 87.9106C82.7767 88.0777 83.356 88.3031 83.9097 88.5837C84.5314 88.2025 85.157 87.8289 85.7878 87.4628C87.8209 86.2019 89.0855 85.1067 90.776 83.4487C89.3624 82.9238 87.5312 82.1871 86.0608 81.8929C84.9482 84.01 83.6495 86.0242 82.1791 87.9106ZM73.6482 87.8629C72.5465 86.4999 71.5212 84.8458 70.5787 83.3663C70.3036 82.9352 70.022 82.2953 69.7852 81.9436C69.653 81.933 69.6699 81.9201 69.5475 81.9511C68.3779 82.2756 67.2611 82.6326 66.1382 83.0925C65.7697 83.2438 65.3509 83.4139 64.9703 83.5115C66.7433 85.3139 68.0897 86.2745 70.2034 87.6405C70.7908 87.9711 71.4046 88.2956 71.9843 88.6291C72.5478 88.2585 73.0268 88.1102 73.6482 87.8629ZM68.4686 89.4634C68.9274 89.598 69.5074 89.7508 69.9483 89.9104L70.6887 89.3167C68.9305 88.2819 67.2579 87.1096 65.6866 85.8086C65.4018 85.5741 63.9211 84.1408 63.7349 84.1174C62.8152 84.6249 61.8843 85.1634 60.9651 85.6611C63.5984 87.4303 65.4984 88.3916 68.4686 89.4634Z" fill="white"/>
<path d="M76.2447 33.7129C78.6795 33.5902 81.1196 33.7447 83.5195 34.1734C90.0107 35.4015 95.9202 38.7263 100.339 43.6373C100.831 44.1804 102.882 46.4754 102.771 47.0805C101.561 47.6171 100.836 45.8823 100.141 45.0864C98.7861 43.5223 97.2779 42.0972 95.6404 40.832C94.614 41.2953 93.5974 42.0791 92.5483 42.494C93.3924 43.3679 95.6116 46.0328 95.9641 47.1556L94.803 47.1368C94.5708 46.8736 94.3575 46.5957 94.1526 46.3111C93.3281 45.1664 92.4477 44.1055 91.5219 43.0411C89.777 43.7991 88.1772 44.3389 86.3597 44.8821C86.7727 45.4849 87.1418 46.479 87.3573 47.1779C86.9897 47.1937 86.604 47.1783 86.2341 47.1704C85.8824 46.5656 85.477 45.7277 85.2108 45.0863C83.5354 45.7001 80.1158 45.9388 78.3414 46.0038C78.3838 46.379 78.3422 46.7739 78.3172 47.1524L77.1857 47.1686C77.1683 46.7768 77.1751 46.3697 77.1758 45.9763C74.8161 45.9264 72.4668 45.6533 70.1588 45.1609C69.8511 45.8411 69.5697 46.4835 69.2073 47.1372C68.8291 47.1596 68.3994 47.1599 68.0163 47.1688C68.3479 46.3379 68.6266 45.6867 69.0177 44.8837C67.4606 44.4039 65.4591 43.805 63.9724 43.1365C63.3268 43.8316 62.8395 44.3913 62.2609 45.1401C61.8099 45.7237 61.1973 46.6578 60.6988 47.1422L59.5058 47.2176C60.304 45.7209 61.7339 43.8805 62.8785 42.6379C62.1201 42.2409 60.4933 41.4238 59.8832 40.8903C58.2795 41.8976 56.5214 43.7582 55.3104 45.2073C54.7784 45.8438 54.3132 46.5576 53.7277 47.1398L52.5527 47.1551C53.2286 45.927 54.2253 44.6647 55.1664 43.6253C60.7642 37.4428 67.9845 34.1742 76.2447 33.7129ZM70.7098 44.1701C71.6385 44.2009 72.6723 44.4691 73.6291 44.5945C74.5574 44.7719 76.1691 44.8353 77.1305 44.8374L77.1267 38.5529C76.2363 38.4861 75.5108 38.3618 74.6387 38.2614C74.074 39.0808 73.454 39.8419 72.879 40.6601C72.075 41.8041 71.4056 42.9621 70.7098 44.1701ZM79.5629 37.2806C81.5635 36.9391 82.5014 36.4402 84.2373 35.4751C80.6695 34.8312 79.4563 34.7221 75.725 34.8493C74.0287 34.9837 72.7013 35.3009 71.1579 35.4611C73.8539 37.042 76.3782 37.8991 79.5629 37.2806ZM81.9561 37.917C82.8653 39.1162 85.3083 42.4502 85.8476 43.8112C86.5987 43.565 87.3543 43.3334 88.1145 43.1162C88.948 42.8007 89.7929 42.4948 90.5984 42.1127C89.0002 40.756 85.6374 37.8581 83.6458 37.1688C83.1383 37.4048 82.4712 37.7379 81.9561 37.917ZM62.6546 41.1778C63.0054 41.36 63.3846 41.5673 63.7368 41.7388C65.3147 40.0093 68.4827 37.6158 70.5345 36.4697C70.1865 36.1693 69.9712 35.9017 69.4855 35.9531C66.0365 37.0061 63.7457 38.148 60.8218 40.1774C61.3844 40.4803 62.1043 40.9069 62.6546 41.1778ZM91.7753 41.6761C92.3131 41.3127 92.6784 41.11 93.2449 40.8075C93.673 40.5688 94.2184 40.2443 94.6518 40.0395C93.7419 39.543 92.8955 38.9607 91.9969 38.4507C90.4577 37.5945 88.8428 36.8821 87.1735 36.3227C86.7273 36.1723 85.9603 35.893 85.5148 35.9321C85.3136 36.0983 85.0701 36.2884 84.8795 36.4593C87.0941 37.5898 90.078 39.866 91.7753 41.6761ZM69.5699 43.8506C70.4366 42.1782 72.2242 39.2484 73.4879 37.8483C72.7782 37.6503 72.318 37.3961 71.7497 37.222C69.0551 38.7228 67.0112 40.1357 64.7972 42.3213C65.5713 42.4564 66.6258 42.9438 67.4235 43.1791L69.5699 43.8506ZM78.3875 44.8702C79.6151 44.7817 80.8858 44.7121 82.0991 44.5248C82.9386 44.412 83.7782 44.2051 84.5883 44.1051C84.1299 43.1015 81.3934 38.9023 80.6937 38.3236L80.5946 38.3295C79.8602 38.431 79.1235 38.5202 78.386 38.5973C78.3565 40.6654 78.2847 42.8061 78.3875 44.8702Z" fill="white"/>
<path d="M42.8333 49.8865C46.7578 49.8098 50.7961 49.9567 54.7289 49.8987C56.3415 49.8749 58.0343 49.9493 59.6397 49.8723C59.7025 52.0048 59.6781 54.2249 59.6822 56.3642C58.4571 56.319 57.0313 56.3463 55.7909 56.3444L55.7972 69.5506C57.121 69.5165 58.2921 69.668 59.6748 69.5243C59.7601 71.3973 59.6846 73.9112 59.6973 75.8415C58.5671 75.9423 56.348 75.8749 55.1546 75.8744L47.5406 75.8704C46.0063 75.8701 44.2916 75.8381 42.7768 75.9142C42.6703 73.9226 42.7125 71.6062 42.7477 69.6047C44.0106 69.5733 45.3179 69.5215 46.5773 69.5596L46.5766 56.3095C45.368 56.3411 44.0723 56.2951 42.8317 56.3183C42.7671 55.4294 42.6729 50.5972 42.8333 49.8865Z" fill="white"/>
<path d="M95.5896 97.5378C99.6211 97.2655 99.4796 103.076 98.3655 105.61C98.0221 106.39 97.3103 106.756 96.5267 106.989C94.4475 107.106 93.4581 106.25 93.0943 104.198C92.7971 102.519 92.8039 100.148 93.7448 98.6368C94.1737 97.9485 94.8249 97.6793 95.5896 97.5378ZM96.2015 105.541C96.6228 105.276 96.8679 104.974 96.9374 104.409C97.1243 102.897 97.3171 100.794 96.6175 99.3992C96.442 99.0506 96.0585 99.0203 95.7273 99.0332C94.7629 99.6072 94.8884 101.254 94.8688 102.261C94.8499 103.261 94.7167 105.589 96.2015 105.541Z" fill="white"/>
<path d="M62.6323 97.5378C65.6241 97.3533 66.0668 100.29 65.9958 102.619C65.9367 104.557 65.6246 106.352 63.5637 106.984C61.4711 107.13 60.3426 106.166 60.0657 104.089C59.7551 101.758 59.6649 98.0264 62.6323 97.5378ZM63.1848 105.551C64.3025 104.886 64.1323 102.494 64.0936 101.311C64.0622 100.35 63.9204 99.0929 62.754 99.0264C62.3729 99.2397 62.1204 99.5467 62.0548 99.9877C61.8682 101.246 61.2225 105.493 63.1848 105.551Z" fill="white"/>
<path d="M69.7245 97.5499C71.3592 97.4607 72.5334 98.2329 72.8935 99.8561C73.4161 102.212 73.6084 106.216 70.6772 106.996C67.5215 107.043 67.191 105.091 67.1148 102.278C67.0621 100.334 67.4532 97.95 69.7245 97.5499ZM70.3049 105.549C71.3933 104.935 71.2294 103.385 71.2701 102.278C71.295 101.598 71.2569 100.73 71.0952 100.076C70.9282 99.4 70.7615 99.1375 70.0614 99.0241C69.7692 99.1126 69.5769 99.1602 69.4406 99.4605C69.0546 100.311 69.033 101.364 69.0191 102.291C69.0067 103.115 68.9951 104.048 69.3166 104.815C69.5394 105.347 69.746 105.486 70.3049 105.549Z" fill="white"/>
<path d="M48.3052 97.5463C48.4346 97.5417 48.5642 97.5395 48.6937 97.541C50.2583 97.5607 51.7309 98.5273 51.6599 100.209C51.5757 102.206 49.2739 103.966 47.8935 105.244C48.9773 105.135 50.5483 105.161 51.6704 105.147L51.6451 106.889C49.9933 106.859 48.3184 106.865 46.6645 106.857L45.3281 106.862C45.8034 104.628 46.9244 103.817 48.4943 102.308C49.1115 101.715 50.0889 100.787 49.7561 99.8404C49.6478 99.5234 49.4079 99.2693 49.0982 99.143C47.8993 98.6589 47.6021 99.6172 47.356 100.481C46.8141 100.476 46.1069 100.399 45.5548 100.354C45.8285 98.5439 46.4901 97.8587 48.3052 97.5463Z" fill="white"/>
<path d="M110.086 97.5423C110.14 97.5408 110.195 97.54 110.25 97.54C111.048 97.5393 112.145 97.7836 112.676 98.4031C114.886 100.979 111.27 103.726 109.63 105.236C110.642 105.137 112.318 105.164 113.381 105.15L113.358 106.884L108.4 106.859C107.949 106.854 107.472 106.868 107.019 106.873C107.855 103.418 110.882 102.572 111.459 100.652C111.567 100.293 111.551 99.8886 111.351 99.5633C111.193 99.3084 110.939 99.1277 110.646 99.0619C109.602 98.8244 109.251 99.6889 109.068 100.492L107.259 100.328C107.626 98.45 108.167 97.8464 110.086 97.5423Z" fill="white"/>
<path d="M88.4974 97.5461C90.1281 97.4259 91.8216 98.3184 91.8383 100.09C91.8579 102.121 89.4466 103.925 88.1237 105.238C89.2227 105.141 90.7355 105.164 91.8662 105.148L91.8556 106.873L87.1268 106.85C86.5421 106.84 86.1095 106.836 85.5195 106.882C86.1844 103.618 88.4762 103.272 89.8982 100.731C90.647 99.394 88.0927 97.7859 87.5557 100.497L85.7169 100.348C86.0172 98.5529 86.676 97.8078 88.4974 97.5461Z" fill="white"/>
<path d="M102.883 97.5474C104.434 97.316 106.285 98.4762 106.18 100.202C106.054 102.253 103.899 103.884 102.457 105.232C103.401 105.141 105.179 105.157 106.186 105.14L106.179 106.876C104.618 106.878 103.057 106.87 101.497 106.851C100.92 106.829 100.446 106.839 99.873 106.858C100.596 103.42 102.906 103.351 104.262 100.689C104.402 100.412 104.389 99.9663 104.238 99.6668C104.1 99.3952 103.858 99.191 103.566 99.1025C102.511 98.7886 102.095 99.6668 101.879 100.49L100.073 100.326C100.379 98.5133 101.055 97.8137 102.883 97.5474Z" fill="white"/>
<path d="M47.202 28.8569C49.8608 28.4772 53.6857 33.4954 49.5666 34.8323C49.175 34.9093 48.7699 34.8793 48.394 34.7455C48.0415 34.6173 47.7212 34.4314 47.4254 34.2002C45.4804 32.68 44.2623 30.1252 47.202 28.8569ZM49.4326 34.1372C50.4684 33.5627 50.9747 32.8215 50.2323 31.6966C49.6963 30.8844 48.5513 29.6384 47.5148 29.6027C44.4583 30.7856 47.998 34.1258 49.4326 34.1372Z" fill="white"/>
<path d="M52.8992 97.7079C54.7587 97.7836 57.0055 97.714 58.8928 97.7026C58.9475 99.4604 58.594 99.1965 57.6974 100.575C56.4276 102.525 55.9918 104.539 55.7692 106.829C55.4813 106.919 54.3369 106.888 53.9768 106.885C54.2176 104.141 55.0072 101.469 56.8588 99.3591C55.8117 99.4506 53.8648 99.4098 52.7583 99.4204C52.7248 98.931 52.6031 98.0627 52.8992 97.7079Z" fill="white"/>
<path d="M77.5171 97.5173L78.8627 97.5105C78.9519 99.1654 78.9012 100.848 78.9035 102.505C78.905 103.963 78.9451 105.409 78.9118 106.868L77.0723 106.884C77.0368 106.323 77.0549 105.601 77.0527 105.027C77.0496 103.723 76.9959 101.408 77.1381 100.171C76.267 100.854 75.7665 101.127 74.7911 101.611C74.7556 100.998 74.7698 100.542 74.7918 99.9354C76.3686 98.9151 76.3021 99.2804 77.5171 97.5173Z" fill="white"/>
<path d="M55.6376 24.5925C55.8737 24.7555 55.822 24.6725 55.918 24.9119C55.8974 24.9456 55.8775 24.9797 55.8583 25.0143C55.5855 25.5065 56.5105 25.7664 56.6767 26.5727C56.9548 27.9219 54.8394 28.3911 54.5772 28.8099L54.6127 28.9313C55.4991 29.3528 58.1462 26.8666 58.5866 29.6923C58.4022 30.0901 58.3667 30.1734 58.0843 30.5079C56.9552 31.573 54.8758 32.286 54.7444 29.9723C54.7136 29.4291 54.1377 29.8699 53.9463 28.6935C53.1498 28.1445 53.0731 27.9678 52.834 27.0469C53.2463 25.7252 54.4445 25.2764 55.6376 24.5925ZM54.7094 27.9705C55.2916 27.6925 55.58 27.5944 55.8171 26.9312C56.0443 26.2958 55.4673 25.8532 54.8725 25.8913C54.3586 26.1422 53.3991 26.6327 53.7391 27.5232C53.8509 27.8163 54.3848 27.98 54.7094 27.9705ZM56.1436 30.8675C56.7977 30.6909 57.9064 30.1534 57.772 29.3366C57.6341 29.1432 57.4231 29.0006 57.1786 29.0016C56.8805 29.0733 56.5932 29.1467 56.3002 29.2371C55.2532 29.56 55.0728 30.3388 56.1436 30.8675Z" fill="white"/>
<path d="M115.718 42.1606C117.082 42.0637 117.558 43.0932 117.885 44.1908C117.96 44.1409 118.034 44.0919 118.11 44.0438C118.497 43.7977 119.017 43.4286 119.459 43.5278C119.586 43.7071 119.667 43.7775 119.661 43.9947C119.405 44.3856 117.179 45.38 116.671 45.6297C115.853 46.0488 114.936 46.5627 114.065 46.8221C112.01 44.4782 112.917 42.9032 115.718 42.1606ZM114.916 45.5977C115.713 45.2043 116.506 44.8032 117.295 44.3943C116.96 43.7355 116.74 42.9495 115.915 42.917C115.018 43.1924 113.278 43.7669 113.814 45.0558C113.927 45.3279 114.085 45.6536 114.302 45.856C114.568 45.8132 114.684 45.7274 114.916 45.5977Z" fill="white"/>
<path d="M119.166 53.3749C120.011 53.0964 121.006 53.6062 121.285 54.4422C121.472 55.0054 121.506 55.2792 121.545 55.8778C122.026 55.7348 122.789 55.4249 123.238 55.7042C123.374 55.9775 123.345 55.8591 123.323 56.1673C122.88 56.4937 121.113 56.7338 120.47 56.8514C119.464 56.9444 118.278 57.3279 117.095 57.409C116.269 54.8923 116.336 53.8056 119.166 53.3749ZM117.551 56.6023C117.876 56.5244 118.331 56.4006 118.65 56.3441C119.4 56.2231 120.148 56.0842 120.892 55.9274C120.712 54.828 120.777 54.1945 119.464 54.1324C117.412 54.4799 117.237 54.5231 117.551 56.6023Z" fill="white"/>
<path d="M83.4095 19.0266C85.7232 19.0325 85.8866 21.5559 84.9555 23.1062C84.6447 23.6239 84.2044 23.7911 83.6432 23.896C82.5578 23.8504 81.66 23.482 81.5193 22.299C81.3439 20.8185 81.7651 19.2721 83.4095 19.0266ZM83.7415 23.1979C84.8527 22.5215 85.3246 19.6695 83.2507 19.7638C82.9519 19.9349 82.7651 20.0291 82.6115 20.3609C82.101 21.4646 81.9686 23.3834 83.7415 23.1979Z" fill="white"/>
<path d="M96.8795 23.4792C100.271 23.176 99.7787 27.1175 97.5277 28.179C94.0242 28.608 94.7125 24.4942 96.8795 23.4792ZM96.999 27.5906C98.2417 27.106 99.5223 24.498 97.471 24.1731C96.2532 24.442 94.7813 26.9988 96.999 27.5906Z" fill="white"/>
<path d="M37.7202 45.4165C40.4583 45.1451 42.7313 48.3156 39.747 49.5796C36.7958 49.8953 34.6471 46.7881 37.7202 45.4165ZM39.6691 48.8544C41.6244 47.4469 39.1292 46.0781 37.6116 46.2518C35.7311 47.5596 38.4948 49.0693 39.6691 48.8544Z" fill="white"/>
<path d="M117.222 73.2542C118.134 73.3664 119.461 73.6352 119.998 74.4574C120.819 75.714 120.106 77.139 118.683 77.3761C117.56 77.4096 116.364 76.9963 115.626 76.1265C115.595 75.9881 115.567 75.849 115.543 75.7094C115.324 74.4374 115.913 73.4867 117.222 73.2542ZM118.867 76.6642C120.899 75.2232 118.44 73.9923 116.974 74.0717C116.644 74.2035 116.621 74.2851 116.397 74.5316C115.582 75.4289 116.875 76.2368 117.657 76.4537C118.068 76.5673 118.421 76.6642 118.867 76.6642Z" fill="white"/>
<path d="M37.6642 66.7742C37.77 66.8034 37.9071 66.8577 38.0136 66.8957C38.2631 67.1416 38.3525 67.4 38.436 67.7252C39.055 70.1375 37.4013 70.9712 35.2752 70.8009C34.7798 70.7612 34.5548 70.5887 34.1697 70.3397C33.7314 69.5991 33.6369 69.2343 33.7005 68.3885C34.0936 67.1769 35.0065 67.071 36.0929 66.9486C36.2662 67.5077 36.4767 69.3802 36.5287 70.0192C39.1368 69.1007 37.0016 67.9599 37.6642 66.7742ZM35.121 70.01C35.3909 70.0542 35.6018 70.1199 35.8557 70.0385C35.9394 69.7289 35.7001 68.3629 35.6366 67.9505C35.5354 67.819 35.5793 67.8251 35.4612 67.7834C35.0077 67.9857 34.681 68.0879 34.4914 68.5939C34.2716 69.1805 34.5835 69.7416 35.121 70.01Z" fill="white"/>
<path d="M111.104 33.9463C113.565 35.7448 112.834 36.9898 110.709 38.4641C110.281 38.7615 110.015 38.9706 109.529 39.2167C109.272 39.1371 109.359 39.2137 109.232 39.0153C109.235 38.966 109.238 38.9168 109.24 38.8675C109.26 38.3692 108.579 38.2287 108.151 37.7602C107.943 37.4236 107.813 37.201 107.842 36.7809C107.9 35.9606 108.688 35.3196 109.508 35.4723C110.306 35.6207 110.856 36.362 111.282 36.9974C111.53 36.7534 111.807 36.4068 112.036 36.1348C111.641 35.327 110.971 34.8986 110.824 34.3659C110.889 34.1006 110.883 34.1719 111.104 33.9463ZM109.852 38.1518C110.162 37.8593 110.476 37.5533 110.801 37.2794C110.377 36.7904 109.983 36.1371 109.299 36.162C108.084 36.9002 108.839 37.5935 109.703 38.1833L109.852 38.1518Z" fill="white"/>
<path d="M58.6594 23.0236C59.1698 22.9915 59.2706 22.9631 59.7323 23.279C60.3506 23.7023 61.5088 26.109 61.5825 26.7316C61.3836 27.2314 61.0506 26.8742 60.8314 27.0122C59.8737 27.615 58.9745 28.7255 58.071 27.2959C58.0203 27.205 57.9737 27.1117 57.9314 27.0166C57.316 25.6113 58.6792 25.0617 59.7103 24.6463C58.8199 22.6677 58.1597 24.4848 56.986 24.4484L56.8848 24.3143C56.9091 23.6183 58.0745 23.1678 58.6594 23.0236ZM58.4596 26.2261C58.7147 26.7613 58.7879 26.9768 59.2809 27.3283C59.9061 27.0257 60.0928 26.8268 60.597 26.3524C60.4555 26.0547 60.1232 25.2248 59.864 25.1302C59.1714 25.5118 58.9307 25.616 58.4596 26.2261Z" fill="white"/>
<path d="M118.325 64.023L118.431 64.0227C120.343 64.0232 120.193 65.4201 120.094 66.8776C120.421 66.8555 120.732 66.8499 121.045 66.7487C121.696 66.189 121.039 64.6156 121.764 64.4491C122.203 64.7506 122.099 65.8054 122.082 66.2906C121.833 67.4559 121.167 67.6531 120.039 67.6332C119.583 67.6251 117.461 67.5381 117.231 67.2961C117.167 66.9213 117.431 66.6185 117.407 66.4525C117.31 65.7502 117.214 65.5969 117.308 64.8487C117.651 64.3095 117.726 64.2373 118.325 64.023ZM118.103 66.6424C118.514 66.6932 118.908 66.7495 119.323 66.7592L119.467 66.7488C119.587 66.5317 119.595 65.7708 119.514 65.5173C119.278 64.7873 118.925 64.8155 118.297 64.8518C117.682 65.4108 117.911 65.9415 118.103 66.6424Z" fill="white"/>
<path d="M41.9877 37.1634C42.8227 37.1094 45.6557 38.8188 45.8031 39.4728C45.6462 39.784 45.2734 39.8628 45.2328 40.0127C44.8289 41.5019 43.9389 42.4594 42.4017 41.1103C41.6346 39.5757 43.1449 39.0885 42.9677 38.2891C41.6706 37.2142 41.4717 39.1582 40.7942 39.5597C40.5156 39.56 40.6257 39.6096 40.4416 39.4338C40.2443 38.7248 41.3834 37.5001 41.9877 37.1634ZM43.9406 41.0255C44.4029 40.5919 44.5252 40.2102 44.7615 39.619C44.3708 39.2264 44.0783 39.0157 43.5917 38.7408C42.9633 39.6849 42.2784 40.6297 43.9406 41.0255Z" fill="white"/>
<path d="M118.287 46.2878C118.937 46.3023 119.043 46.6791 119.266 47.2093C119.469 47.6905 119.769 48.5829 119.459 49.0461C119.065 49.634 115.896 50.8871 115.417 50.6251L115.361 50.4305C115.594 49.5345 115.304 50.0012 114.819 49.1094C114.682 48.8014 114.625 48.4399 114.558 48.1075C114.942 47.3359 115.713 46.612 116.632 47.0946C117.439 47.5174 117.711 48.3882 117.954 49.198C119.887 48.113 118.065 47.5624 118.287 46.2878ZM116.639 49.5431L117.374 49.33C117.07 48.5596 116.917 47.6331 115.927 47.7646C115.054 48.3561 115.325 49.3831 116.192 49.6855C116.43 49.6529 116.422 49.652 116.639 49.5431Z" fill="white"/>
<path d="M34.6802 55.0235C35.3752 54.9745 38.1803 55.2242 38.6538 55.565C38.7769 56.0128 38.2909 56.1453 38.4666 56.9343C38.8432 58.6255 37.1278 59.2708 35.969 58.3106C35.5395 57.4204 35.6868 56.7845 35.8339 55.8366C33.7184 55.5808 34.7999 57.2842 34.1863 58.043C33.9757 58.0508 33.9482 58.0122 33.7762 57.8929C33.4162 57.308 33.8263 56.178 34.0887 55.5867C34.1975 55.3417 34.4598 55.1681 34.6802 55.0235ZM37.7006 57.8667C37.9734 57.1647 37.8848 56.9338 37.7772 56.1879C37.2626 56.0557 36.8857 55.9875 36.3591 55.9031C36.3035 56.822 36.1222 58.504 37.7006 57.8667Z" fill="white"/>
<path d="M73.4712 18.8906C75.9997 18.3147 75.3473 21.7647 75.6871 23.1838C75.7213 23.3263 75.6168 23.4127 75.5293 23.4849C75.4206 23.5076 75.2921 23.5361 75.2084 23.4721C74.7198 23.0991 73.9377 23.7628 73.3509 23.731C72.8694 23.7049 72.7228 23.6205 72.3822 23.2469C72.3404 23.1556 72.3009 23.0633 72.2637 22.9702C71.4872 21.0091 73.0691 20.9299 74.4338 20.7367C74.7973 20.6853 74.5455 19.9806 74.4369 19.7612C73.735 19.2229 72.4852 20.0068 72.1103 19.5164L72.1727 19.2562C72.4931 18.9008 73.0001 18.9244 73.4712 18.8906ZM73.2717 23.0178C73.9231 23.1213 74.2031 22.9506 74.8031 22.6877C74.7759 22.2373 74.7618 21.7445 74.6632 21.3083L74.5716 21.2438C74.0399 21.3213 72.6226 21.5047 72.8343 22.3586C72.8999 22.6221 73.0544 22.8549 73.2717 23.0178Z" fill="white"/>
<path d="M105.946 27.5674C106.094 27.5546 106.242 27.551 106.39 27.5564C107.332 27.5877 109.426 29.137 108.722 29.777C108.016 29.7497 107.397 28.5664 106.764 28.4066C105.552 28.1475 105.779 29.2945 106.018 30.0285C106.481 31.4531 107.04 32.7653 105.397 33.5708C104.411 33.7454 102.64 32.7808 102.418 31.8587C102.47 31.5624 102.414 31.6601 102.604 31.446C103.503 31.4215 104.745 34.1507 105.738 32.0576C105.364 30.458 104.142 28.6534 105.946 27.5674Z" fill="white"/>
<path d="M86.9536 19.624C87.3877 19.7288 87.4513 19.7982 87.8052 20.0573C88.4845 20.0549 89.7786 20.0434 90.0441 20.8748C90.2695 21.5795 89.6576 24.929 88.9534 25.13C88.2553 24.7821 89.1319 22.4256 89.3051 21.6742C89.4057 20.5209 88.2719 20.6984 87.4762 20.7202C87.3189 21.4162 86.8598 24.174 86.2078 24.4358C85.9945 24.3707 86.0595 24.3881 85.8962 24.1684C85.7956 23.5985 86.7365 20.3529 86.9536 19.624Z" fill="white"/>
<path d="M63.4172 21.0693C64.4887 21.2168 64.7958 22.0372 65.1555 22.9587C65.3452 23.4445 65.9095 24.828 65.7645 25.2656C65.4832 25.3986 65.5997 25.3881 65.3068 25.3508C64.226 24.5029 64.5382 20.2619 62.0454 22.5271L61.9834 22.5839C62.1831 23.0999 63.1621 25.7012 63.1436 26.096C62.9794 26.3155 63.0824 26.2449 62.8311 26.326C62.0332 26.0817 61.4619 23.3024 61.0884 22.5353C60.9639 22.2793 60.9609 22.1078 61.0981 21.8767C61.5097 21.7417 61.7145 21.9414 61.7797 21.8987C62.463 21.4513 62.5901 21.2373 63.4172 21.0693Z" fill="white"/>
<path d="M39.4721 41.0229C40.0107 40.9891 40.4758 41.0906 40.9495 41.3513C41.4603 41.6325 43.4234 42.4151 43.5326 42.977C43.451 43.2192 43.4506 43.2299 43.2482 43.3703C42.5934 43.461 41.1136 42.1083 40.3626 41.931C39.265 41.672 39.1026 42.6065 38.8916 43.4318L39.4907 43.7564C40.1318 44.1027 41.97 44.8482 42.1306 45.524C42.052 45.772 42.1274 45.6956 41.9447 45.8017C41.0759 45.6475 38.7205 44.2921 37.8918 43.7576C37.818 43.71 37.8446 43.6966 37.834 43.5751C38.0035 43.293 38.0354 43.2624 38.2936 43.057C38.3072 42.9879 38.3213 42.9189 38.3361 42.85C38.5297 41.9488 38.681 41.5321 39.4721 41.0229Z" fill="white"/>
<path d="M113.793 37.6005C114.054 37.5982 113.938 37.5614 114.15 37.7204C114.514 38.7779 116.317 39.6267 115.141 40.903C114.616 41.4717 112.483 43.077 111.754 42.7856L111.728 42.6487C111.993 41.9422 113.405 41.189 114.049 40.7893C115.228 39.9709 114.644 39.3834 113.732 38.6638C112.803 39.1395 111.334 40.3204 110.538 40.5341C110.289 40.4765 110.379 40.5196 110.192 40.2936C110.247 39.6424 113.114 38.0285 113.793 37.6005Z" fill="white"/>
<path d="M114.879 77.1406C115.449 77.3866 118.899 78.7695 119.057 79.1554C119.002 79.4175 118.824 79.5437 118.626 79.7406C118.291 83.1199 116.064 81.7055 114.05 80.7256C113.78 80.6102 113.649 80.5705 113.415 80.3843L113.416 80.2284C113.632 79.8423 113.773 79.7131 114.256 79.8895C115.061 80.1832 116.315 81.1321 117.174 81.0557C117.808 80.9993 117.94 79.9843 118.046 79.4468C117.462 79.1307 114.861 78.091 114.613 77.8613C114.594 77.5804 114.738 77.3976 114.879 77.1406Z" fill="white"/>
<path d="M39.4019 74.0032L39.5998 74.1131C39.7239 74.373 39.7132 74.2692 39.6981 74.5439C38.9477 75.722 34.6201 74.8609 36.8741 77.8465C37.5826 77.5492 40.1765 76.4631 40.7113 76.9452C40.7251 77.3924 40.4918 77.4071 40.1446 77.5667C39.2249 77.8424 37.0721 78.7123 36.29 78.7449C35.8501 78.4428 36.4404 78.1876 35.8372 77.444C33.9561 75.1249 37.8539 74.477 39.4019 74.0032Z" fill="white"/>
<path d="M34.6563 59.5012C35.5574 59.4668 36.8539 59.5331 37.7765 59.5878C37.9484 59.5979 38.0895 59.7809 38.1808 59.9217C38.2191 60.1884 38.2496 60.0756 38.1275 60.2795C37.4384 60.5938 35.6653 60.1312 34.8438 60.2931C33.7416 60.5105 34.0736 61.5076 34.28 62.2832L36.3496 62.3555C36.7648 62.3547 37.6266 62.3072 37.9856 62.4615C38.195 62.7993 38.1775 63.006 37.8288 63.2142C37.1341 63.2038 33.9008 63.1362 33.4226 62.9725C33.4785 61.427 32.8591 59.8829 34.6563 59.5012Z" fill="white"/>
<path d="M117.649 59.9995C118.682 60.0339 120.634 61.7867 121.525 62.4812C121.428 61.937 121.403 61.3589 121.362 60.8063C121.332 60.4022 121.324 60.1254 121.78 60.0169L121.935 60.119C122.176 60.6122 122.122 61.9363 122.134 62.5289C122.142 62.9856 122.064 63.0789 121.778 63.3437C120.514 63.0308 119.138 61.5495 117.94 60.8367C118.063 61.3627 118.256 62.8643 117.963 63.3232C117.695 63.4234 117.829 63.4126 117.545 63.3516C117.25 62.9953 117.37 61.3017 117.352 60.7758C117.339 60.4086 117.39 60.2425 117.649 59.9995Z" fill="white"/>
<path d="M70.4845 19.3409C70.7182 19.3344 70.6105 19.3103 70.8195 19.4174C71.2114 20.1892 69.534 23.0095 69.0247 23.7151C69.5596 23.577 71.3457 23.0284 71.6813 23.4844C71.6754 23.5786 71.6853 23.7596 71.6253 23.7983C71.1327 24.1159 69.5389 24.298 68.9738 24.3917C68.7786 24.3969 68.7651 24.3872 68.5819 24.3445C67.907 23.7157 69.0266 22.1644 69.3326 21.519C69.5566 21.0466 69.9208 20.4665 70.2073 20.0187C69.7344 20.1465 67.96 20.6688 67.7021 20.1613C68.0433 19.5556 69.7976 19.4269 70.4845 19.3409Z" fill="white"/>
<path d="M95.204 20.5042C95.7145 20.5244 96.4731 20.6868 96.5458 21.2941L96.3983 21.4144C96.0715 21.468 95.8204 21.322 95.5012 21.1941L94.9861 22.2158C95.3613 22.3549 95.9119 22.4697 95.8166 22.9678L95.6237 23.077C95.2841 23.1068 95.0489 22.9667 94.7282 22.8304C94.3719 23.7598 94.0066 24.6858 93.633 25.6083C93.4772 26.0257 93.2669 26.5238 92.7284 26.5359L92.6172 26.3921C92.5173 25.754 93.7268 23.2083 94.0323 22.4982C93.6776 22.3511 93.2064 22.2197 93.3365 21.7522L93.543 21.6675C93.8463 21.6774 93.9801 21.7845 94.2464 21.9328C94.5353 21.2941 94.6352 20.9313 95.204 20.5042Z" fill="white"/>
<path d="M108.254 31.136C108.56 31.1692 108.59 31.1705 108.822 31.3827L109.166 31.6949C109.496 31.3692 109.718 31.1079 110.196 31.3126C110.509 31.8016 110.034 32.0243 109.67 32.2725C110.039 32.6213 110.333 32.78 110.204 33.3167C109.765 33.5958 109.512 33.096 109.293 32.7776C108.581 33.4365 107.882 34.1106 107.199 34.7995L106.808 35.2343C107.078 35.4856 107.525 35.8018 107.361 36.1965C106.749 36.4008 105.935 35.4932 106.092 35.0258C106.41 34.0819 108.008 32.8337 108.749 32.2132C108.289 31.7909 108.074 31.7462 108.254 31.136Z" fill="white"/>
<path d="M77.1616 17.6082C77.3863 17.6189 77.4574 17.6006 77.6298 17.7443C77.7909 18.016 77.7554 18.3628 77.7622 18.6947C78.1222 18.6982 78.8241 18.6144 78.834 19.1124C78.4785 19.4858 78.2168 19.3843 77.7183 19.3588C77.7735 20.4038 77.7562 21.8783 77.9142 22.8605C78.2864 22.8515 78.8279 22.791 79.0397 23.1471C78.8975 23.3914 78.9497 23.313 78.6835 23.4743C78.3575 23.4786 77.4627 23.5334 77.2963 23.2955C76.8266 22.6234 76.9529 20.179 76.9499 19.3417C76.6152 19.3615 76.1933 19.4246 75.944 19.2123C75.9191 18.9362 75.9059 19.045 76.0346 18.7862C76.2461 18.6569 76.53 18.72 76.7963 18.7408C77.0058 18.5534 76.8137 18.061 77.1616 17.6082Z" fill="white"/>
<path d="M38.6251 70.7268C38.8711 70.8767 39.0462 71.3855 39.0972 71.686C39.3767 73.3353 36.3574 73.0583 35.3736 73.5612C35.23 73.6345 35.5248 74.2435 35.2862 74.5969C35.0245 74.6526 35.1449 74.6683 34.911 74.5624C34.7424 74.2976 34.7527 74.0275 34.7231 73.7068C34.4003 73.786 34.0513 73.8909 33.7287 73.9815C33.5145 73.7142 33.3991 73.5021 33.5898 73.202C33.8837 73.0141 34.176 73.0079 34.5278 72.9583L34.4667 72.7804C34.3333 72.3949 34.2198 72.2252 34.4706 71.8714C35.0273 71.7436 35.0678 72.4022 35.1524 72.8102C36.2432 72.4798 37.327 72.2852 38.4305 72.0027C38.3461 71.4331 38.1497 71.0951 38.6251 70.7268Z" fill="white"/>
<path d="M35.0418 51.269C35.3353 51.3605 35.3733 51.3662 35.511 51.5804C35.5449 51.9011 35.3766 52.2023 35.2486 52.5142C36.2617 52.6804 37.6079 53.0597 38.6283 53.3172C38.7427 52.8856 38.7606 52.5866 39.1054 52.3239C39.7548 52.3668 39.429 53.5748 38.9885 53.8323C38.5558 54.0853 38.409 54.0073 37.9478 53.9309C37.3505 53.8713 35.7383 53.4322 35.0809 53.2613C35.0143 53.6037 34.95 54.2175 34.4697 54.1174L34.3527 53.9378C34.2979 53.6322 34.4257 53.3783 34.5305 53.0743C33.9886 53.0352 33.6818 53.1078 33.499 52.5344C33.6177 52.2729 33.5498 52.3634 33.8165 52.2009C34.1211 52.1571 34.3171 52.2638 34.6121 52.3702C34.7567 51.9071 34.8209 51.6949 35.0418 51.269Z" fill="white"/>
<path d="M117.482 69.5829C117.424 69.9808 117.409 70.4617 117.021 70.665L116.875 70.5862C116.611 70.1291 116.693 69.1695 117.081 68.9858C117.864 68.6151 120.217 69.2151 121.053 69.318C121.232 69.32 121.429 69.2988 121.58 69.3798C122.005 69.544 122.54 69.4513 122.723 70.1054L122.643 70.2217C122.223 70.4024 121.964 70.3105 121.545 70.1867C121.485 70.5663 121.442 71.2268 120.956 71.2615C120.619 70.8814 120.769 70.5924 120.868 70.1181C119.742 69.9256 118.613 69.7472 117.482 69.5829Z" fill="white"/>
<path d="M42.0005 33.9399C42.4119 34.1527 46.5041 37.4624 46.9155 37.8738C46.9303 38.1269 46.7921 38.2647 46.6431 38.4852C46.288 38.4761 41.7652 34.9022 41.6465 34.531C41.6622 34.2759 41.8253 34.1446 42.0005 33.9399Z" fill="white"/>
<path d="M40.974 78.4448C41.1516 78.4666 41.2252 78.539 41.372 78.6411C41.4545 78.9017 41.4546 78.7735 41.362 79.0389C40.8477 79.5698 36.6875 81.2072 35.7905 81.5642C35.5374 81.5369 35.4317 81.3705 35.4053 81.1467C35.6441 80.5039 40.0129 78.8954 40.974 78.4448Z" fill="white"/>
<path d="M51.6915 27.0613C51.975 27.198 51.898 27.1132 52.0374 27.3653C52.0434 27.8157 51.582 28.2333 51.2747 28.5819C51.9256 29.4283 52.7585 30.3789 53.296 31.2942C53.445 31.5478 53.3945 31.6717 53.3165 31.8978C53.0955 32.074 53.1997 32.027 52.9128 32.0541C52.4929 31.5968 50.3763 28.873 50.2539 28.3802C50.8155 27.8862 51.1746 27.616 51.6915 27.0613Z" fill="white"/>
<path d="M33.6204 63.8894L33.6437 63.9045C34.0817 64.1811 34.1572 64.8001 34.296 65.3201C34.9983 65.3167 37.76 65.0145 38.1705 65.2934C38.2391 65.5319 38.2136 65.5559 38.1236 65.8024C37.9417 65.9748 38.0172 65.922 37.7355 65.9685C36.4189 66.0351 34.934 66.1522 33.62 66.1528C33.5235 66.1529 33.5406 66.1246 33.4519 66.0132C33.4164 65.8123 33.4194 65.7945 33.5145 65.6059C33.879 64.883 32.8856 64.7349 33.6204 63.8894Z" fill="white"/>
<path d="M101.006 25.311C101.343 25.3898 101.381 25.572 101.541 25.8595C101.96 25.9965 102.591 26.1273 102.699 26.6044C102.353 26.9572 101.563 26.6128 101.17 26.4814L99.7716 28.6597L99.6922 28.7839C99.4789 29.1141 99.3223 29.4664 98.9532 29.546C98.7535 29.4635 98.6688 29.4537 98.5645 29.2669C98.6446 28.6988 100.579 25.8131 101.006 25.311Z" fill="white"/>
<path d="M120.085 50.4822C120.162 50.4931 120.27 50.5377 120.344 50.5637C120.432 50.8501 120.281 51.1811 120.319 51.2693C120.482 51.6492 121.046 52.1682 120.774 52.5785C120.56 52.6407 120.531 52.6211 120.321 52.5658C120.109 52.3556 119.796 51.6981 119.641 51.4031C118.89 51.6237 118.138 51.839 117.384 52.0489C117.15 52.1169 116.915 52.1823 116.68 52.2451C116.362 52.3292 116.204 52.3877 115.92 52.2217C115.773 51.9647 115.809 52.0998 115.814 51.8C116.132 51.4188 119.321 50.6839 120.085 50.4822Z" fill="white"/>
<path d="M65.9118 20.2083C66.1528 20.2065 66.1795 20.1952 66.3887 20.2977C66.7013 20.7836 67.4604 23.7571 67.5704 24.4994C67.6007 24.704 67.5376 24.7361 67.4242 24.8606C67.2363 24.8885 67.1759 24.8902 66.9843 24.8915C66.6759 24.604 66.0162 21.6164 65.8252 21.0444C65.6987 20.6656 65.7279 20.5284 65.9118 20.2083Z" fill="white"/>
<path d="M121.418 57.9927C121.883 57.9933 121.944 58.1718 121.885 58.6012C121.511 58.9764 118.342 59.1207 117.657 59.1892C117.367 59.1891 117.382 59.2395 117.212 59.0972C117.156 58.8306 117.161 58.7981 117.24 58.5365C117.495 58.2701 120.788 58.0543 121.418 57.9927Z" fill="white"/>
<path d="M80.0378 18.7458C80.332 18.7619 80.4704 18.7512 80.6512 18.9952C80.7087 19.5441 80.5257 23.0971 80.3532 23.5388L80.2496 23.5446C79.9553 23.5586 79.9001 23.5549 79.7171 23.3854C79.6112 22.7766 79.7579 19.2422 80.0378 18.7458Z" fill="white"/>
<path d="M35.4666 49.6008C35.9303 49.6784 39.4838 50.8186 39.8342 51.0571C39.8809 51.3052 39.7927 51.4061 39.6934 51.6716C39.2871 51.6845 35.5094 50.5449 35.3058 50.2953C35.2532 50.0541 35.3732 49.8442 35.4666 49.6008Z" fill="white"/>
<path d="M116.574 71.2493C117.224 71.3862 120.776 72.093 121.058 72.4069C121.069 72.7458 121.013 72.7353 120.847 73.0579C120.085 72.8335 116.821 72.2003 116.449 71.9786C116.382 71.7219 116.489 71.5132 116.574 71.2493Z" fill="white"/>
<path d="M82.1514 104.998C82.7746 105.014 83.3971 105.017 84.0204 105.007C84.0325 105.551 84.0741 106.359 84.0105 106.878C83.3532 106.871 82.8351 106.877 82.1771 106.917L82.1514 104.998Z" fill="white"/>
<path d="M82.2937 100.128C82.8466 100.141 83.4669 100.111 84.0243 100.096C84.022 100.725 84.0258 101.355 84.0356 101.983C83.4313 101.957 82.7604 101.976 82.1515 101.981C82.1682 101.496 82.057 100.472 82.2937 100.128Z" fill="white"/>
<path d="M123.203 57.7441C123.52 57.8433 123.427 57.7703 123.639 57.9998C123.734 58.594 123.43 58.6181 122.975 58.7057C122.693 58.651 122.683 58.6309 122.51 58.4502C122.414 57.8852 122.776 57.8404 123.203 57.7441Z" fill="white"/>
<path d="M65.4313 18.5241C66.1541 18.5125 66.4107 19.1599 66.0121 19.6974C65.2421 19.8359 65.1311 19.0528 65.4313 18.5241Z" fill="white"/>
<path d="M33.8722 49.1021C34.273 49.2033 34.4607 49.219 34.694 49.5286C34.7384 49.7826 34.628 49.9084 34.4979 50.1418C34.101 50.0533 33.7158 50.0586 33.5605 49.6572C33.6038 49.3766 33.6787 49.3297 33.8722 49.1021Z" fill="white"/>
<path d="M80.1107 17C80.8459 17.0923 81.0009 17.4248 80.7256 18.1312C80.3641 18.1376 80.2582 18.1616 79.9866 17.974C79.8459 17.5872 79.9428 17.4152 80.1107 17Z" fill="white"/>
<path d="M121.962 72.3689C122.334 72.4988 122.573 72.5262 122.791 72.8229C122.817 73.0721 122.713 73.2111 122.597 73.4401C122.19 73.3625 121.892 73.3831 121.698 72.9879C121.714 72.7155 121.817 72.601 121.962 72.3689Z" fill="white"/>
<path d="M121.054 69.3181C121.076 68.9899 121.059 68.858 121.225 68.5726C121.456 68.4047 121.334 68.4336 121.598 68.4569C121.855 68.7713 121.75 69.0242 121.58 69.3798C121.43 69.2989 121.232 69.3201 121.054 69.3181Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 36 KiB

+5
View File
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 28 KiB

+9
View File
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 39 KiB

+14
View File
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 27 KiB

+12
View File
@@ -0,0 +1,12 @@
<svg width="647" height="504" viewBox="0 0 647 504" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_291_11290)">
<ellipse cx="323.5" cy="252" rx="163.5" ry="92" fill="#B3776D"/>
</g>
<defs>
<filter id="filter0_f_291_11290" x="0" y="0" width="647" height="504" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="80" result="effect1_foregroundBlur_291_11290"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 595 B

+12
View File
@@ -0,0 +1,12 @@
<svg width="647" height="504" viewBox="0 0 647 504" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_291_11291)">
<ellipse cx="323.5" cy="252" rx="163.5" ry="92" fill="#4D5154"/>
</g>
<defs>
<filter id="filter0_f_291_11291" x="0" y="0" width="647" height="504" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="80" result="effect1_foregroundBlur_291_11291"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 595 B

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 117 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

+1 -1
View File
@@ -1 +1 @@
import{_ as e,f as t,l as n,p as r}from"./x-CWfp5ET4.js";import{r as i,t as a}from"./App-Bde043lQ.js";var o=e(r(),1),s=t(),c=n();(0,s.createRoot)(document.getElementById(`root`)).render((0,c.jsx)(o.StrictMode,{children:(0,c.jsx)(i,{children:(0,c.jsx)(a,{})})})); import{C as e,c as t,g as n,m as r,v as i,y as a}from"./x-CKbD_O50.js";import{t as o}from"./App-DraLAq5v.js";var s=e(a(),1),c=i(),l=r();n().then(()=>{(0,c.createRoot)(document.getElementById(`root`)).render((0,l.jsx)(s.StrictMode,{children:(0,l.jsx)(t,{children:(0,l.jsx)(o,{})})}))});
+1
View File
@@ -0,0 +1 @@
import{C as e,c as t,g as n,m as r,v as i,y as a}from"./x-CKbD_O50.js";import{t as o}from"./App-DraLAq5v.js";var s=e(a(),1),c=i(),l=r();n().then(()=>{(0,c.createRoot)(document.getElementById(`root`)).render((0,l.jsx)(s.StrictMode,{children:(0,l.jsx)(t,{children:(0,l.jsx)(o,{})})}))});
+1 -1
View File
@@ -1 +1 @@
import{_ as e,f as t,l as n,p as r}from"./x-CWfp5ET4.js";import{r as i,t as a}from"./App-Bde043lQ.js";var o=e(r(),1),s=t(),c=n();(0,s.createRoot)(document.getElementById(`root`)).render((0,c.jsx)(o.StrictMode,{children:(0,c.jsx)(i,{children:(0,c.jsx)(a,{})})})); import{C as e,c as t,g as n,m as r,v as i,y as a}from"./x-CKbD_O50.js";import{t as o}from"./App-DraLAq5v.js";var s=e(a(),1),c=i(),l=r();n().then(()=>{(0,c.createRoot)(document.getElementById(`root`)).render((0,l.jsx)(s.StrictMode,{children:(0,l.jsx)(t,{children:(0,l.jsx)(o,{})})}))});
-1
View File
@@ -1 +0,0 @@
import{_ as e,f as t,l as n,p as r}from"./x-CWfp5ET4.js";import{r as i,t as a}from"./App-Bde043lQ.js";var o=e(r(),1),s=t(),c=n();(0,s.createRoot)(document.getElementById(`root`)).render((0,c.jsx)(o.StrictMode,{children:(0,c.jsx)(i,{children:(0,c.jsx)(a,{})})}));
+1 -1
View File
@@ -1 +1 @@
import{_ as e,f as t,l as n,p as r}from"./x-CWfp5ET4.js";import{r as i,t as a}from"./App-Bde043lQ.js";var o=e(r(),1),s=t(),c=n();(0,s.createRoot)(document.getElementById(`root`)).render((0,c.jsx)(o.StrictMode,{children:(0,c.jsx)(i,{children:(0,c.jsx)(a,{})})})); import{C as e,c as t,g as n,m as r,v as i,y as a}from"./x-CKbD_O50.js";import{t as o}from"./App-DraLAq5v.js";var s=e(a(),1),c=i(),l=r();n().then(()=>{(0,c.createRoot)(document.getElementById(`root`)).render((0,l.jsx)(s.StrictMode,{children:(0,l.jsx)(t,{children:(0,l.jsx)(o,{})})}))});
@@ -1 +1 @@
import{_ as e,f as t,l as n,p as r}from"./x-CWfp5ET4.js";import{n as i,r as a,t as o}from"./App-Bde043lQ.js";var s=e(r(),1),c=t(),l=n();function u(){return(0,s.useEffect)(()=>(document.body.classList.add(`admin-preview-embed`),()=>document.body.classList.remove(`admin-preview-embed`)),[]),(0,l.jsx)(o,{previewMode:!0})}(0,c.createRoot)(document.getElementById(`root`)).render((0,l.jsx)(s.StrictMode,{children:(0,l.jsx)(i.Provider,{value:!0,children:(0,l.jsx)(a,{previewMode:!0,children:(0,l.jsx)(u,{})})})})); import{C as e,c as t,m as n,v as r,y as i}from"./x-CKbD_O50.js";import{n as a,t as o}from"./App-DraLAq5v.js";var s=e(i(),1),c=r(),l=n();function u(){return(0,s.useEffect)(()=>(document.body.classList.add(`admin-preview-embed`),()=>document.body.classList.remove(`admin-preview-embed`)),[]),(0,l.jsx)(o,{previewMode:!0})}(0,c.createRoot)(document.getElementById(`root`)).render((0,l.jsx)(s.StrictMode,{children:(0,l.jsx)(a.Provider,{value:!0,children:(0,l.jsx)(t,{previewMode:!0,children:(0,l.jsx)(u,{})})})}));
+1 -1
View File
@@ -1 +1 @@
import{_ as e,f as t,l as n,p as r}from"./x-CWfp5ET4.js";import{n as i,r as a,t as o}from"./App-Bde043lQ.js";var s=e(r(),1),c=t(),l=n();function u(){return(0,s.useEffect)(()=>(document.body.classList.add(`admin-preview-embed`),()=>document.body.classList.remove(`admin-preview-embed`)),[]),(0,l.jsx)(o,{previewMode:!0})}(0,c.createRoot)(document.getElementById(`root`)).render((0,l.jsx)(s.StrictMode,{children:(0,l.jsx)(i.Provider,{value:!0,children:(0,l.jsx)(a,{previewMode:!0,children:(0,l.jsx)(u,{})})})})); import{C as e,c as t,m as n,v as r,y as i}from"./x-CKbD_O50.js";import{n as a,t as o}from"./App-DraLAq5v.js";var s=e(i(),1),c=r(),l=n();function u(){return(0,s.useEffect)(()=>(document.body.classList.add(`admin-preview-embed`),()=>document.body.classList.remove(`admin-preview-embed`)),[]),(0,l.jsx)(o,{previewMode:!0})}(0,c.createRoot)(document.getElementById(`root`)).render((0,l.jsx)(s.StrictMode,{children:(0,l.jsx)(a.Provider,{value:!0,children:(0,l.jsx)(t,{previewMode:!0,children:(0,l.jsx)(u,{})})})}));
+1 -1
View File
@@ -1 +1 @@
import{_ as e,f as t,l as n,p as r}from"./x-CWfp5ET4.js";import{n as i,r as a,t as o}from"./App-Bde043lQ.js";var s=e(r(),1),c=t(),l=n();function u(){return(0,s.useEffect)(()=>(document.body.classList.add(`admin-preview-embed`),()=>document.body.classList.remove(`admin-preview-embed`)),[]),(0,l.jsx)(o,{previewMode:!0})}(0,c.createRoot)(document.getElementById(`root`)).render((0,l.jsx)(s.StrictMode,{children:(0,l.jsx)(i.Provider,{value:!0,children:(0,l.jsx)(a,{previewMode:!0,children:(0,l.jsx)(u,{})})})})); import{C as e,c as t,m as n,v as r,y as i}from"./x-CKbD_O50.js";import{n as a,t as o}from"./App-DraLAq5v.js";var s=e(i(),1),c=r(),l=n();function u(){return(0,s.useEffect)(()=>(document.body.classList.add(`admin-preview-embed`),()=>document.body.classList.remove(`admin-preview-embed`)),[]),(0,l.jsx)(o,{previewMode:!0})}(0,c.createRoot)(document.getElementById(`root`)).render((0,l.jsx)(s.StrictMode,{children:(0,l.jsx)(a.Provider,{value:!0,children:(0,l.jsx)(t,{previewMode:!0,children:(0,l.jsx)(u,{})})})}));
+1 -1
View File
@@ -1 +1 @@
import{_ as e,f as t,l as n,p as r}from"./x-CWfp5ET4.js";import{n as i,r as a,t as o}from"./App-Bde043lQ.js";var s=e(r(),1),c=t(),l=n();function u(){return(0,s.useEffect)(()=>(document.body.classList.add(`admin-preview-embed`),()=>document.body.classList.remove(`admin-preview-embed`)),[]),(0,l.jsx)(o,{previewMode:!0})}(0,c.createRoot)(document.getElementById(`root`)).render((0,l.jsx)(s.StrictMode,{children:(0,l.jsx)(i.Provider,{value:!0,children:(0,l.jsx)(a,{previewMode:!0,children:(0,l.jsx)(u,{})})})})); import{C as e,c as t,m as n,v as r,y as i}from"./x-CKbD_O50.js";import{n as a,t as o}from"./App-DraLAq5v.js";var s=e(i(),1),c=r(),l=n();function u(){return(0,s.useEffect)(()=>(document.body.classList.add(`admin-preview-embed`),()=>document.body.classList.remove(`admin-preview-embed`)),[]),(0,l.jsx)(o,{previewMode:!0})}(0,c.createRoot)(document.getElementById(`root`)).render((0,l.jsx)(s.StrictMode,{children:(0,l.jsx)(a.Provider,{value:!0,children:(0,l.jsx)(t,{previewMode:!0,children:(0,l.jsx)(u,{})})})}));
+19
View File
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 MiB

+15
View File
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 MiB

File diff suppressed because one or more lines are too long
+19 -1
View File
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 169 KiB

+9
View File
@@ -0,0 +1,9 @@
<svg width="1728" height="1016" viewBox="0 0 1728 1016" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="1728" height="1016" fill="url(#paint0_linear_288_7058)"/>
<defs>
<linearGradient id="paint0_linear_288_7058" x1="864" y1="0" x2="864" y2="1016" gradientUnits="userSpaceOnUse">
<stop stop-color="#2FA0B6"/>
<stop offset="1" stop-color="#01040B"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 395 B

+9
View File
@@ -0,0 +1,9 @@
<svg width="1728" height="1107" viewBox="0 0 1728 1107" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="1728" height="1107" fill="url(#paint0_linear_288_7119)"/>
<defs>
<linearGradient id="paint0_linear_288_7119" x1="864" y1="0" x2="864" y2="1107" gradientUnits="userSpaceOnUse">
<stop offset="0.591346" stop-color="#01040B"/>
<stop offset="1" stop-color="#2FA0B6"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 413 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 231 KiB

+16
View File
@@ -0,0 +1,16 @@
<svg width="615" height="565" viewBox="0 0 615 565" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_f_120_14849)">
<rect x="63" y="-134" width="352" height="499" fill="url(#paint0_linear_120_14849)"/>
</g>
<defs>
<filter id="filter0_f_120_14849" x="-137" y="-334" width="752" height="899" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
<feGaussianBlur stdDeviation="100" result="effect1_foregroundBlur_120_14849"/>
</filter>
<linearGradient id="paint0_linear_120_14849" x1="239" y1="-134" x2="239" y2="365" gradientUnits="userSpaceOnUse">
<stop stop-color="#184BFF" stop-opacity="0"/>
<stop offset="1" stop-color="#0387DA"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 841 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 37 KiB

+67
View File
@@ -0,0 +1,67 @@
<svg width="157" height="124" viewBox="0 0 157 124" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M98.7744 49.6857C102.716 49.3264 107.473 50.1756 110.686 52.66C113.391 54.7528 114.265 57.4007 114.687 60.6464C115.165 64.3181 114.532 69.102 112.1 72.0445C109.715 74.9308 106.059 75.9434 102.478 76.3244C94.4873 76.9028 86.9145 73.3325 86.615 64.4344C86.4917 60.7844 86.9819 56.5755 89.5021 53.7356C91.6691 51.2938 95.5712 49.9002 98.7744 49.6857ZM101.191 69.8657C105.039 69.5279 104.854 66.9278 104.92 63.7903C104.951 62.3568 104.897 61.0205 104.829 59.589C104.704 56.9302 102.785 55.921 100.212 56.1753C97.6459 56.4181 96.7927 57.5016 96.5651 60.0285C96.3941 61.9219 96.4372 63.8367 96.5416 65.7339C96.6505 67.2939 97.1202 68.9899 98.7638 69.5169C99.4907 69.7499 100.432 69.9689 101.191 69.8657Z" fill="white"/>
<path d="M69.829 49.6703C73.038 49.4157 76.7616 50.1402 79.4679 51.9374C79.4157 51.4677 79.4241 50.8014 79.4158 50.3156C81.1244 50.2762 83.3973 50.2497 85.0885 50.3206C85.0242 53.2387 85.239 56.3409 85.1044 59.2235C83.3776 59.2543 81.3521 59.2667 79.6404 59.2134C79.4263 58.9502 79.207 58.6913 78.9831 58.4369C77.3917 56.6517 75.1152 55.864 72.8057 55.5423C71.6894 55.3869 70.1681 55.2674 69.2433 56.051C68.753 56.4664 69.1944 57.1699 69.6313 57.3744C70.5075 57.7846 71.59 58.0652 72.5192 58.331L77.462 59.7379C78.4514 60.0224 79.5595 60.2984 80.5072 60.6876C83.4026 61.8765 85.8373 64.6104 85.9931 67.8096C86.1036 69.8781 85.3828 71.9049 83.991 73.439C81.9897 75.641 79.114 76.2245 76.2904 76.3593C72.6039 76.446 70.157 75.7128 66.9789 73.9841C67.0607 74.5421 67.0019 75.2863 66.9777 75.8638C65.6488 75.7648 62.4795 75.7931 61.17 75.8884C61.0722 72.8464 61.1412 69.3395 61.1515 66.2626C62.873 66.3141 64.6808 66.1967 66.3405 66.2772C66.6547 66.586 67.0333 67.1922 67.3671 67.5712C68.4407 68.7901 70.0842 69.5929 71.6636 70.0155C73.1907 70.4243 75.9786 70.5005 77.4749 69.7274C77.7033 69.6091 77.754 69.4303 77.7994 69.2188C77.6194 68.564 76.8365 68.3362 76.2522 68.1226C72.1481 66.6235 66.9825 66.0381 63.4833 63.3544C60.3349 60.9398 60.144 55.6859 62.5658 52.7554C64.2065 50.7701 67.3082 49.8585 69.829 49.6703Z" fill="white"/>
<path d="M77.3921 78.4759C77.7914 78.4798 78.1068 78.4254 78.3973 78.6748C78.541 78.9727 78.4737 79.323 78.4517 79.6695C80.4493 79.7387 83.5459 80.1091 85.4935 80.5906C85.8052 79.7837 86.0162 79.2132 86.5313 78.5004L87.6099 78.5391C87.2982 79.3185 86.9533 80.0525 86.6001 80.8138C88.5009 81.3498 89.9327 81.843 91.7457 82.6424C92.7736 81.3612 93.7622 80.0346 94.7689 78.7405C95.0193 78.4181 95.765 78.5233 96.175 78.5379C95.3717 79.7143 93.7856 82.2348 92.7312 83.094C93.6896 83.544 95.0132 84.3049 95.942 84.8435C97.6991 83.3882 99.2701 81.8717 100.668 80.0631C101.069 79.5432 101.482 78.9883 101.936 78.5183C102.296 78.5051 102.771 78.5336 103.14 78.5456C102.099 80.1945 100.882 81.7257 99.5113 83.1137C93.9218 88.8575 86.2552 92.1092 78.2407 92.1357C75.5476 92.144 72.8644 91.8149 70.2537 91.1554C63.3482 89.4135 56.2711 84.6839 52.5898 78.5264C52.8702 78.5256 53.6616 78.4891 53.8506 78.6626C54.7897 79.5242 55.5262 80.8045 56.4332 81.7477C57.5584 82.9178 58.6721 83.9139 59.9372 84.901C60.9194 84.2694 61.9866 83.774 62.9628 83.1038C61.7677 81.9186 60.4246 79.9203 59.5383 78.5071C59.938 78.5101 60.3537 78.5306 60.7545 78.5447C61.1773 78.9706 61.7623 79.8241 62.1513 80.3415C62.7534 81.1479 63.3981 81.9216 64.0827 82.6598C65.6558 81.9284 67.5791 81.3309 69.2478 80.8478C68.8866 80.1016 68.5401 79.2685 68.2059 78.5038C68.6187 78.4984 68.9566 78.5267 69.3686 78.5596C69.7819 79.1524 70.1193 79.8849 70.4313 80.5384C72.5087 80.0122 75.1897 79.8148 77.3308 79.6741C77.2968 79.2996 77.2461 78.8208 77.3921 78.4759ZM78.4979 87.1754C79.4479 87.2699 80.0038 87.3244 80.9372 87.5657C81.5105 86.829 82.0626 86.0764 82.5921 85.3071C83.2819 84.3042 83.9248 83.305 84.5307 82.2499C84.6608 82.023 84.7939 81.8036 84.9527 81.5964C82.608 81.1834 80.9054 80.8917 78.4986 80.8632C78.4918 82.9397 78.5274 85.1127 78.4979 87.1754ZM70.9695 81.5934C71.9677 83.3065 72.6818 84.5114 73.8556 86.1059C74.1664 86.5158 74.6604 87.1285 74.9208 87.5384C75.7503 87.2971 76.4886 87.248 77.3467 87.1822C77.3202 85.2073 77.2219 82.8028 77.2733 80.8721C76.852 80.8787 76.2873 80.871 75.8786 80.9094C74.067 81.0765 72.7586 81.2658 70.9695 81.5934ZM79.4116 90.9512C81.4137 90.8839 82.7956 90.4542 84.5299 90.3264C81.9537 88.7032 79.7708 88.1186 76.697 88.3848C74.4558 88.7637 73.3005 89.0141 71.3653 90.3612C72.0694 90.4315 72.7993 90.5276 73.4964 90.6562C75.4786 91.0223 77.4042 91.0692 79.4116 90.9512ZM85.9443 89.8885L87.4291 89.3915C90.2927 88.4181 92.3818 87.3289 94.8234 85.593C94.1691 85.2202 92.5686 84.2754 91.931 84.0629C90.2216 85.649 87.2029 88.2608 85.0616 89.2637L85.9443 89.8885ZM82.1791 87.9106C82.7767 88.0777 83.356 88.3031 83.9097 88.5837C84.5314 88.2025 85.157 87.8289 85.7878 87.4628C87.8209 86.2019 89.0855 85.1067 90.776 83.4487C89.3624 82.9238 87.5312 82.1871 86.0608 81.8929C84.9482 84.01 83.6495 86.0242 82.1791 87.9106ZM73.6482 87.8629C72.5465 86.4999 71.5212 84.8458 70.5787 83.3663C70.3036 82.9352 70.022 82.2953 69.7852 81.9436C69.653 81.933 69.6699 81.9201 69.5475 81.9511C68.3779 82.2756 67.2611 82.6326 66.1382 83.0925C65.7697 83.2438 65.3509 83.4139 64.9703 83.5115C66.7433 85.3139 68.0897 86.2745 70.2034 87.6405C70.7908 87.9711 71.4046 88.2956 71.9843 88.6291C72.5478 88.2585 73.0268 88.1102 73.6482 87.8629ZM68.4686 89.4634C68.9274 89.598 69.5074 89.7508 69.9483 89.9104L70.6887 89.3167C68.9305 88.2819 67.2579 87.1096 65.6866 85.8086C65.4018 85.5741 63.9211 84.1408 63.7349 84.1174C62.8152 84.6249 61.8843 85.1634 60.9651 85.6611C63.5984 87.4303 65.4984 88.3916 68.4686 89.4634Z" fill="white"/>
<path d="M76.2447 33.7129C78.6795 33.5902 81.1196 33.7447 83.5195 34.1734C90.0107 35.4015 95.9202 38.7263 100.339 43.6373C100.831 44.1804 102.882 46.4754 102.771 47.0805C101.561 47.6171 100.836 45.8823 100.141 45.0864C98.7861 43.5223 97.2779 42.0972 95.6404 40.832C94.614 41.2953 93.5974 42.0791 92.5483 42.494C93.3924 43.3679 95.6116 46.0328 95.9641 47.1556L94.803 47.1368C94.5708 46.8736 94.3575 46.5957 94.1526 46.3111C93.3281 45.1664 92.4477 44.1055 91.5219 43.0411C89.777 43.7991 88.1772 44.3389 86.3597 44.8821C86.7727 45.4849 87.1418 46.479 87.3573 47.1779C86.9897 47.1937 86.604 47.1783 86.2341 47.1704C85.8824 46.5656 85.477 45.7277 85.2108 45.0863C83.5354 45.7001 80.1158 45.9388 78.3414 46.0038C78.3838 46.379 78.3422 46.7739 78.3172 47.1524L77.1857 47.1686C77.1683 46.7768 77.1751 46.3697 77.1758 45.9763C74.8161 45.9264 72.4668 45.6533 70.1588 45.1609C69.8511 45.8411 69.5697 46.4835 69.2073 47.1372C68.8291 47.1596 68.3994 47.1599 68.0163 47.1688C68.3479 46.3379 68.6266 45.6867 69.0177 44.8837C67.4606 44.4039 65.4591 43.805 63.9724 43.1365C63.3268 43.8316 62.8395 44.3913 62.2609 45.1401C61.8099 45.7237 61.1973 46.6578 60.6988 47.1422L59.5058 47.2176C60.304 45.7209 61.7339 43.8805 62.8785 42.6379C62.1201 42.2409 60.4933 41.4238 59.8832 40.8903C58.2795 41.8976 56.5214 43.7582 55.3104 45.2073C54.7784 45.8438 54.3132 46.5576 53.7277 47.1398L52.5527 47.1551C53.2286 45.927 54.2253 44.6647 55.1664 43.6253C60.7642 37.4428 67.9845 34.1742 76.2447 33.7129ZM70.7098 44.1701C71.6385 44.2009 72.6723 44.4691 73.6291 44.5945C74.5574 44.7719 76.1691 44.8353 77.1305 44.8374L77.1267 38.5529C76.2363 38.4861 75.5108 38.3618 74.6387 38.2614C74.074 39.0808 73.454 39.8419 72.879 40.6601C72.075 41.8041 71.4056 42.9621 70.7098 44.1701ZM79.5629 37.2806C81.5635 36.9391 82.5014 36.4402 84.2373 35.4751C80.6695 34.8312 79.4563 34.7221 75.725 34.8493C74.0287 34.9837 72.7013 35.3009 71.1579 35.4611C73.8539 37.042 76.3782 37.8991 79.5629 37.2806ZM81.9561 37.917C82.8653 39.1162 85.3083 42.4502 85.8476 43.8112C86.5987 43.565 87.3543 43.3334 88.1145 43.1162C88.948 42.8007 89.7929 42.4948 90.5984 42.1127C89.0002 40.756 85.6374 37.8581 83.6458 37.1688C83.1383 37.4048 82.4712 37.7379 81.9561 37.917ZM62.6546 41.1778C63.0054 41.36 63.3846 41.5673 63.7368 41.7388C65.3147 40.0093 68.4827 37.6158 70.5345 36.4697C70.1865 36.1693 69.9712 35.9017 69.4855 35.9531C66.0365 37.0061 63.7457 38.148 60.8218 40.1774C61.3844 40.4803 62.1043 40.9069 62.6546 41.1778ZM91.7753 41.6761C92.3131 41.3127 92.6784 41.11 93.2449 40.8075C93.673 40.5688 94.2184 40.2443 94.6518 40.0395C93.7419 39.543 92.8955 38.9607 91.9969 38.4507C90.4577 37.5945 88.8428 36.8821 87.1735 36.3227C86.7273 36.1723 85.9603 35.893 85.5148 35.9321C85.3136 36.0983 85.0701 36.2884 84.8795 36.4593C87.0941 37.5898 90.078 39.866 91.7753 41.6761ZM69.5699 43.8506C70.4366 42.1782 72.2242 39.2484 73.4879 37.8483C72.7782 37.6503 72.318 37.3961 71.7497 37.222C69.0551 38.7228 67.0112 40.1357 64.7972 42.3213C65.5713 42.4564 66.6258 42.9438 67.4235 43.1791L69.5699 43.8506ZM78.3875 44.8702C79.6151 44.7817 80.8858 44.7121 82.0991 44.5248C82.9386 44.412 83.7782 44.2051 84.5883 44.1051C84.1299 43.1015 81.3934 38.9023 80.6937 38.3236L80.5946 38.3295C79.8602 38.431 79.1235 38.5202 78.386 38.5973C78.3565 40.6654 78.2847 42.8061 78.3875 44.8702Z" fill="white"/>
<path d="M42.8333 49.8865C46.7578 49.8098 50.7961 49.9567 54.7289 49.8987C56.3415 49.8749 58.0343 49.9493 59.6397 49.8723C59.7025 52.0048 59.6781 54.2249 59.6822 56.3642C58.4571 56.319 57.0313 56.3463 55.7909 56.3444L55.7972 69.5506C57.121 69.5165 58.2921 69.668 59.6748 69.5243C59.7601 71.3973 59.6846 73.9112 59.6973 75.8415C58.5671 75.9423 56.348 75.8749 55.1546 75.8744L47.5406 75.8704C46.0063 75.8701 44.2916 75.8381 42.7768 75.9142C42.6703 73.9226 42.7125 71.6062 42.7477 69.6047C44.0106 69.5733 45.3179 69.5215 46.5773 69.5596L46.5766 56.3095C45.368 56.3411 44.0723 56.2951 42.8317 56.3183C42.7671 55.4294 42.6729 50.5972 42.8333 49.8865Z" fill="white"/>
<path d="M95.5896 97.5378C99.6211 97.2655 99.4796 103.076 98.3655 105.61C98.0221 106.39 97.3103 106.756 96.5267 106.989C94.4475 107.106 93.4581 106.25 93.0943 104.198C92.7971 102.519 92.8039 100.148 93.7448 98.6368C94.1737 97.9485 94.8249 97.6793 95.5896 97.5378ZM96.2015 105.541C96.6228 105.276 96.8679 104.974 96.9374 104.409C97.1243 102.897 97.3171 100.794 96.6175 99.3992C96.442 99.0506 96.0585 99.0203 95.7273 99.0332C94.7629 99.6072 94.8884 101.254 94.8688 102.261C94.8499 103.261 94.7167 105.589 96.2015 105.541Z" fill="white"/>
<path d="M62.6323 97.5378C65.6241 97.3533 66.0668 100.29 65.9958 102.619C65.9367 104.557 65.6246 106.352 63.5637 106.984C61.4711 107.13 60.3426 106.166 60.0657 104.089C59.7551 101.758 59.6649 98.0264 62.6323 97.5378ZM63.1848 105.551C64.3025 104.886 64.1323 102.494 64.0936 101.311C64.0622 100.35 63.9204 99.0929 62.754 99.0264C62.3729 99.2397 62.1204 99.5467 62.0548 99.9877C61.8682 101.246 61.2225 105.493 63.1848 105.551Z" fill="white"/>
<path d="M69.7245 97.5499C71.3592 97.4607 72.5334 98.2329 72.8935 99.8561C73.4161 102.212 73.6084 106.216 70.6772 106.996C67.5215 107.043 67.191 105.091 67.1148 102.278C67.0621 100.334 67.4532 97.95 69.7245 97.5499ZM70.3049 105.549C71.3933 104.935 71.2294 103.385 71.2701 102.278C71.295 101.598 71.2569 100.73 71.0952 100.076C70.9282 99.4 70.7615 99.1375 70.0614 99.0241C69.7692 99.1126 69.5769 99.1602 69.4406 99.4605C69.0546 100.311 69.033 101.364 69.0191 102.291C69.0067 103.115 68.9951 104.048 69.3166 104.815C69.5394 105.347 69.746 105.486 70.3049 105.549Z" fill="white"/>
<path d="M48.3052 97.5463C48.4346 97.5417 48.5642 97.5395 48.6937 97.541C50.2583 97.5607 51.7309 98.5273 51.6599 100.209C51.5757 102.206 49.2739 103.966 47.8935 105.244C48.9773 105.135 50.5483 105.161 51.6704 105.147L51.6451 106.889C49.9933 106.859 48.3184 106.865 46.6645 106.857L45.3281 106.862C45.8034 104.628 46.9244 103.817 48.4943 102.308C49.1115 101.715 50.0889 100.787 49.7561 99.8404C49.6478 99.5234 49.4079 99.2693 49.0982 99.143C47.8993 98.6589 47.6021 99.6172 47.356 100.481C46.8141 100.476 46.1069 100.399 45.5548 100.354C45.8285 98.5439 46.4901 97.8587 48.3052 97.5463Z" fill="white"/>
<path d="M110.086 97.5423C110.14 97.5408 110.195 97.54 110.25 97.54C111.048 97.5393 112.145 97.7836 112.676 98.4031C114.886 100.979 111.27 103.726 109.63 105.236C110.642 105.137 112.318 105.164 113.381 105.15L113.358 106.884L108.4 106.859C107.949 106.854 107.472 106.868 107.019 106.873C107.855 103.418 110.882 102.572 111.459 100.652C111.567 100.293 111.551 99.8886 111.351 99.5633C111.193 99.3084 110.939 99.1277 110.646 99.0619C109.602 98.8244 109.251 99.6889 109.068 100.492L107.259 100.328C107.626 98.45 108.167 97.8464 110.086 97.5423Z" fill="white"/>
<path d="M88.4974 97.5461C90.1281 97.4259 91.8216 98.3184 91.8383 100.09C91.8579 102.121 89.4466 103.925 88.1237 105.238C89.2227 105.141 90.7355 105.164 91.8662 105.148L91.8556 106.873L87.1268 106.85C86.5421 106.84 86.1095 106.836 85.5195 106.882C86.1844 103.618 88.4762 103.272 89.8982 100.731C90.647 99.394 88.0927 97.7859 87.5557 100.497L85.7169 100.348C86.0172 98.5529 86.676 97.8078 88.4974 97.5461Z" fill="white"/>
<path d="M102.883 97.5474C104.434 97.316 106.285 98.4762 106.18 100.202C106.054 102.253 103.899 103.884 102.457 105.232C103.401 105.141 105.179 105.157 106.186 105.14L106.179 106.876C104.618 106.878 103.057 106.87 101.497 106.851C100.92 106.829 100.446 106.839 99.873 106.858C100.596 103.42 102.906 103.351 104.262 100.689C104.402 100.412 104.389 99.9663 104.238 99.6668C104.1 99.3952 103.858 99.191 103.566 99.1025C102.511 98.7886 102.095 99.6668 101.879 100.49L100.073 100.326C100.379 98.5133 101.055 97.8137 102.883 97.5474Z" fill="white"/>
<path d="M47.202 28.8569C49.8608 28.4772 53.6857 33.4954 49.5666 34.8323C49.175 34.9093 48.7699 34.8793 48.394 34.7455C48.0415 34.6173 47.7212 34.4314 47.4254 34.2002C45.4804 32.68 44.2623 30.1252 47.202 28.8569ZM49.4326 34.1372C50.4684 33.5627 50.9747 32.8215 50.2323 31.6966C49.6963 30.8844 48.5513 29.6384 47.5148 29.6027C44.4583 30.7856 47.998 34.1258 49.4326 34.1372Z" fill="white"/>
<path d="M52.8992 97.7079C54.7587 97.7836 57.0055 97.714 58.8928 97.7026C58.9475 99.4604 58.594 99.1965 57.6974 100.575C56.4276 102.525 55.9918 104.539 55.7692 106.829C55.4813 106.919 54.3369 106.888 53.9768 106.885C54.2176 104.141 55.0072 101.469 56.8588 99.3591C55.8117 99.4506 53.8648 99.4098 52.7583 99.4204C52.7248 98.931 52.6031 98.0627 52.8992 97.7079Z" fill="white"/>
<path d="M77.5171 97.5173L78.8627 97.5105C78.9519 99.1654 78.9012 100.848 78.9035 102.505C78.905 103.963 78.9451 105.409 78.9118 106.868L77.0723 106.884C77.0368 106.323 77.0549 105.601 77.0527 105.027C77.0496 103.723 76.9959 101.408 77.1381 100.171C76.267 100.854 75.7665 101.127 74.7911 101.611C74.7556 100.998 74.7698 100.542 74.7918 99.9354C76.3686 98.9151 76.3021 99.2804 77.5171 97.5173Z" fill="white"/>
<path d="M55.6376 24.5925C55.8737 24.7555 55.822 24.6725 55.918 24.9119C55.8974 24.9456 55.8775 24.9797 55.8583 25.0143C55.5855 25.5065 56.5105 25.7664 56.6767 26.5727C56.9548 27.9219 54.8394 28.3911 54.5772 28.8099L54.6127 28.9313C55.4991 29.3528 58.1462 26.8666 58.5866 29.6923C58.4022 30.0901 58.3667 30.1734 58.0843 30.5079C56.9552 31.573 54.8758 32.286 54.7444 29.9723C54.7136 29.4291 54.1377 29.8699 53.9463 28.6935C53.1498 28.1445 53.0731 27.9678 52.834 27.0469C53.2463 25.7252 54.4445 25.2764 55.6376 24.5925ZM54.7094 27.9705C55.2916 27.6925 55.58 27.5944 55.8171 26.9312C56.0443 26.2958 55.4673 25.8532 54.8725 25.8913C54.3586 26.1422 53.3991 26.6327 53.7391 27.5232C53.8509 27.8163 54.3848 27.98 54.7094 27.9705ZM56.1436 30.8675C56.7977 30.6909 57.9064 30.1534 57.772 29.3366C57.6341 29.1432 57.4231 29.0006 57.1786 29.0016C56.8805 29.0733 56.5932 29.1467 56.3002 29.2371C55.2532 29.56 55.0728 30.3388 56.1436 30.8675Z" fill="white"/>
<path d="M115.718 42.1606C117.082 42.0637 117.558 43.0932 117.885 44.1908C117.96 44.1409 118.034 44.0919 118.11 44.0438C118.497 43.7977 119.017 43.4286 119.459 43.5278C119.586 43.7071 119.667 43.7775 119.661 43.9947C119.405 44.3856 117.179 45.38 116.671 45.6297C115.853 46.0488 114.936 46.5627 114.065 46.8221C112.01 44.4782 112.917 42.9032 115.718 42.1606ZM114.916 45.5977C115.713 45.2043 116.506 44.8032 117.295 44.3943C116.96 43.7355 116.74 42.9495 115.915 42.917C115.018 43.1924 113.278 43.7669 113.814 45.0558C113.927 45.3279 114.085 45.6536 114.302 45.856C114.568 45.8132 114.684 45.7274 114.916 45.5977Z" fill="white"/>
<path d="M119.166 53.3749C120.011 53.0964 121.006 53.6062 121.285 54.4422C121.472 55.0054 121.506 55.2792 121.545 55.8778C122.026 55.7348 122.789 55.4249 123.238 55.7042C123.374 55.9775 123.345 55.8591 123.323 56.1673C122.88 56.4937 121.113 56.7338 120.47 56.8514C119.464 56.9444 118.278 57.3279 117.095 57.409C116.269 54.8923 116.336 53.8056 119.166 53.3749ZM117.551 56.6023C117.876 56.5244 118.331 56.4006 118.65 56.3441C119.4 56.2231 120.148 56.0842 120.892 55.9274C120.712 54.828 120.777 54.1945 119.464 54.1324C117.412 54.4799 117.237 54.5231 117.551 56.6023Z" fill="white"/>
<path d="M83.4095 19.0266C85.7232 19.0325 85.8866 21.5559 84.9555 23.1062C84.6447 23.6239 84.2044 23.7911 83.6432 23.896C82.5578 23.8504 81.66 23.482 81.5193 22.299C81.3439 20.8185 81.7651 19.2721 83.4095 19.0266ZM83.7415 23.1979C84.8527 22.5215 85.3246 19.6695 83.2507 19.7638C82.9519 19.9349 82.7651 20.0291 82.6115 20.3609C82.101 21.4646 81.9686 23.3834 83.7415 23.1979Z" fill="white"/>
<path d="M96.8795 23.4792C100.271 23.176 99.7787 27.1175 97.5277 28.179C94.0242 28.608 94.7125 24.4942 96.8795 23.4792ZM96.999 27.5906C98.2417 27.106 99.5223 24.498 97.471 24.1731C96.2532 24.442 94.7813 26.9988 96.999 27.5906Z" fill="white"/>
<path d="M37.7202 45.4165C40.4583 45.1451 42.7313 48.3156 39.747 49.5796C36.7958 49.8953 34.6471 46.7881 37.7202 45.4165ZM39.6691 48.8544C41.6244 47.4469 39.1292 46.0781 37.6116 46.2518C35.7311 47.5596 38.4948 49.0693 39.6691 48.8544Z" fill="white"/>
<path d="M117.222 73.2542C118.134 73.3664 119.461 73.6352 119.998 74.4574C120.819 75.714 120.106 77.139 118.683 77.3761C117.56 77.4096 116.364 76.9963 115.626 76.1265C115.595 75.9881 115.567 75.849 115.543 75.7094C115.324 74.4374 115.913 73.4867 117.222 73.2542ZM118.867 76.6642C120.899 75.2232 118.44 73.9923 116.974 74.0717C116.644 74.2035 116.621 74.2851 116.397 74.5316C115.582 75.4289 116.875 76.2368 117.657 76.4537C118.068 76.5673 118.421 76.6642 118.867 76.6642Z" fill="white"/>
<path d="M37.6642 66.7742C37.77 66.8034 37.9071 66.8577 38.0136 66.8957C38.2631 67.1416 38.3525 67.4 38.436 67.7252C39.055 70.1375 37.4013 70.9712 35.2752 70.8009C34.7798 70.7612 34.5548 70.5887 34.1697 70.3397C33.7314 69.5991 33.6369 69.2343 33.7005 68.3885C34.0936 67.1769 35.0065 67.071 36.0929 66.9486C36.2662 67.5077 36.4767 69.3802 36.5287 70.0192C39.1368 69.1007 37.0016 67.9599 37.6642 66.7742ZM35.121 70.01C35.3909 70.0542 35.6018 70.1199 35.8557 70.0385C35.9394 69.7289 35.7001 68.3629 35.6366 67.9505C35.5354 67.819 35.5793 67.8251 35.4612 67.7834C35.0077 67.9857 34.681 68.0879 34.4914 68.5939C34.2716 69.1805 34.5835 69.7416 35.121 70.01Z" fill="white"/>
<path d="M111.104 33.9463C113.565 35.7448 112.834 36.9898 110.709 38.4641C110.281 38.7615 110.015 38.9706 109.529 39.2167C109.272 39.1371 109.359 39.2137 109.232 39.0153C109.235 38.966 109.238 38.9168 109.24 38.8675C109.26 38.3692 108.579 38.2287 108.151 37.7602C107.943 37.4236 107.813 37.201 107.842 36.7809C107.9 35.9606 108.688 35.3196 109.508 35.4723C110.306 35.6207 110.856 36.362 111.282 36.9974C111.53 36.7534 111.807 36.4068 112.036 36.1348C111.641 35.327 110.971 34.8986 110.824 34.3659C110.889 34.1006 110.883 34.1719 111.104 33.9463ZM109.852 38.1518C110.162 37.8593 110.476 37.5533 110.801 37.2794C110.377 36.7904 109.983 36.1371 109.299 36.162C108.084 36.9002 108.839 37.5935 109.703 38.1833L109.852 38.1518Z" fill="white"/>
<path d="M58.6594 23.0236C59.1698 22.9915 59.2706 22.9631 59.7323 23.279C60.3506 23.7023 61.5088 26.109 61.5825 26.7316C61.3836 27.2314 61.0506 26.8742 60.8314 27.0122C59.8737 27.615 58.9745 28.7255 58.071 27.2959C58.0203 27.205 57.9737 27.1117 57.9314 27.0166C57.316 25.6113 58.6792 25.0617 59.7103 24.6463C58.8199 22.6677 58.1597 24.4848 56.986 24.4484L56.8848 24.3143C56.9091 23.6183 58.0745 23.1678 58.6594 23.0236ZM58.4596 26.2261C58.7147 26.7613 58.7879 26.9768 59.2809 27.3283C59.9061 27.0257 60.0928 26.8268 60.597 26.3524C60.4555 26.0547 60.1232 25.2248 59.864 25.1302C59.1714 25.5118 58.9307 25.616 58.4596 26.2261Z" fill="white"/>
<path d="M118.325 64.023L118.431 64.0227C120.343 64.0232 120.193 65.4201 120.094 66.8776C120.421 66.8555 120.732 66.8499 121.045 66.7487C121.696 66.189 121.039 64.6156 121.764 64.4491C122.203 64.7506 122.099 65.8054 122.082 66.2906C121.833 67.4559 121.167 67.6531 120.039 67.6332C119.583 67.6251 117.461 67.5381 117.231 67.2961C117.167 66.9213 117.431 66.6185 117.407 66.4525C117.31 65.7502 117.214 65.5969 117.308 64.8487C117.651 64.3095 117.726 64.2373 118.325 64.023ZM118.103 66.6424C118.514 66.6932 118.908 66.7495 119.323 66.7592L119.467 66.7488C119.587 66.5317 119.595 65.7708 119.514 65.5173C119.278 64.7873 118.925 64.8155 118.297 64.8518C117.682 65.4108 117.911 65.9415 118.103 66.6424Z" fill="white"/>
<path d="M41.9877 37.1634C42.8227 37.1094 45.6557 38.8188 45.8031 39.4728C45.6462 39.784 45.2734 39.8628 45.2328 40.0127C44.8289 41.5019 43.9389 42.4594 42.4017 41.1103C41.6346 39.5757 43.1449 39.0885 42.9677 38.2891C41.6706 37.2142 41.4717 39.1582 40.7942 39.5597C40.5156 39.56 40.6257 39.6096 40.4416 39.4338C40.2443 38.7248 41.3834 37.5001 41.9877 37.1634ZM43.9406 41.0255C44.4029 40.5919 44.5252 40.2102 44.7615 39.619C44.3708 39.2264 44.0783 39.0157 43.5917 38.7408C42.9633 39.6849 42.2784 40.6297 43.9406 41.0255Z" fill="white"/>
<path d="M118.287 46.2878C118.937 46.3023 119.043 46.6791 119.266 47.2093C119.469 47.6905 119.769 48.5829 119.459 49.0461C119.065 49.634 115.896 50.8871 115.417 50.6251L115.361 50.4305C115.594 49.5345 115.304 50.0012 114.819 49.1094C114.682 48.8014 114.625 48.4399 114.558 48.1075C114.942 47.3359 115.713 46.612 116.632 47.0946C117.439 47.5174 117.711 48.3882 117.954 49.198C119.887 48.113 118.065 47.5624 118.287 46.2878ZM116.639 49.5431L117.374 49.33C117.07 48.5596 116.917 47.6331 115.927 47.7646C115.054 48.3561 115.325 49.3831 116.192 49.6855C116.43 49.6529 116.422 49.652 116.639 49.5431Z" fill="white"/>
<path d="M34.6802 55.0235C35.3752 54.9745 38.1803 55.2242 38.6538 55.565C38.7769 56.0128 38.2909 56.1453 38.4666 56.9343C38.8432 58.6255 37.1278 59.2708 35.969 58.3106C35.5395 57.4204 35.6868 56.7845 35.8339 55.8366C33.7184 55.5808 34.7999 57.2842 34.1863 58.043C33.9757 58.0508 33.9482 58.0122 33.7762 57.8929C33.4162 57.308 33.8263 56.178 34.0887 55.5867C34.1975 55.3417 34.4598 55.1681 34.6802 55.0235ZM37.7006 57.8667C37.9734 57.1647 37.8848 56.9338 37.7772 56.1879C37.2626 56.0557 36.8857 55.9875 36.3591 55.9031C36.3035 56.822 36.1222 58.504 37.7006 57.8667Z" fill="white"/>
<path d="M73.4712 18.8906C75.9997 18.3147 75.3473 21.7647 75.6871 23.1838C75.7213 23.3263 75.6168 23.4127 75.5293 23.4849C75.4206 23.5076 75.2921 23.5361 75.2084 23.4721C74.7198 23.0991 73.9377 23.7628 73.3509 23.731C72.8694 23.7049 72.7228 23.6205 72.3822 23.2469C72.3404 23.1556 72.3009 23.0633 72.2637 22.9702C71.4872 21.0091 73.0691 20.9299 74.4338 20.7367C74.7973 20.6853 74.5455 19.9806 74.4369 19.7612C73.735 19.2229 72.4852 20.0068 72.1103 19.5164L72.1727 19.2562C72.4931 18.9008 73.0001 18.9244 73.4712 18.8906ZM73.2717 23.0178C73.9231 23.1213 74.2031 22.9506 74.8031 22.6877C74.7759 22.2373 74.7618 21.7445 74.6632 21.3083L74.5716 21.2438C74.0399 21.3213 72.6226 21.5047 72.8343 22.3586C72.8999 22.6221 73.0544 22.8549 73.2717 23.0178Z" fill="white"/>
<path d="M105.946 27.5674C106.094 27.5546 106.242 27.551 106.39 27.5564C107.332 27.5877 109.426 29.137 108.722 29.777C108.016 29.7497 107.397 28.5664 106.764 28.4066C105.552 28.1475 105.779 29.2945 106.018 30.0285C106.481 31.4531 107.04 32.7653 105.397 33.5708C104.411 33.7454 102.64 32.7808 102.418 31.8587C102.47 31.5624 102.414 31.6601 102.604 31.446C103.503 31.4215 104.745 34.1507 105.738 32.0576C105.364 30.458 104.142 28.6534 105.946 27.5674Z" fill="white"/>
<path d="M86.9536 19.624C87.3877 19.7288 87.4513 19.7982 87.8052 20.0573C88.4845 20.0549 89.7786 20.0434 90.0441 20.8748C90.2695 21.5795 89.6576 24.929 88.9534 25.13C88.2553 24.7821 89.1319 22.4256 89.3051 21.6742C89.4057 20.5209 88.2719 20.6984 87.4762 20.7202C87.3189 21.4162 86.8598 24.174 86.2078 24.4358C85.9945 24.3707 86.0595 24.3881 85.8962 24.1684C85.7956 23.5985 86.7365 20.3529 86.9536 19.624Z" fill="white"/>
<path d="M63.4172 21.0693C64.4887 21.2168 64.7958 22.0372 65.1555 22.9587C65.3452 23.4445 65.9095 24.828 65.7645 25.2656C65.4832 25.3986 65.5997 25.3881 65.3068 25.3508C64.226 24.5029 64.5382 20.2619 62.0454 22.5271L61.9834 22.5839C62.1831 23.0999 63.1621 25.7012 63.1436 26.096C62.9794 26.3155 63.0824 26.2449 62.8311 26.326C62.0332 26.0817 61.4619 23.3024 61.0884 22.5353C60.9639 22.2793 60.9609 22.1078 61.0981 21.8767C61.5097 21.7417 61.7145 21.9414 61.7797 21.8987C62.463 21.4513 62.5901 21.2373 63.4172 21.0693Z" fill="white"/>
<path d="M39.4721 41.0229C40.0107 40.9891 40.4758 41.0906 40.9495 41.3513C41.4603 41.6325 43.4234 42.4151 43.5326 42.977C43.451 43.2192 43.4506 43.2299 43.2482 43.3703C42.5934 43.461 41.1136 42.1083 40.3626 41.931C39.265 41.672 39.1026 42.6065 38.8916 43.4318L39.4907 43.7564C40.1318 44.1027 41.97 44.8482 42.1306 45.524C42.052 45.772 42.1274 45.6956 41.9447 45.8017C41.0759 45.6475 38.7205 44.2921 37.8918 43.7576C37.818 43.71 37.8446 43.6966 37.834 43.5751C38.0035 43.293 38.0354 43.2624 38.2936 43.057C38.3072 42.9879 38.3213 42.9189 38.3361 42.85C38.5297 41.9488 38.681 41.5321 39.4721 41.0229Z" fill="white"/>
<path d="M113.793 37.6005C114.054 37.5982 113.938 37.5614 114.15 37.7204C114.514 38.7779 116.317 39.6267 115.141 40.903C114.616 41.4717 112.483 43.077 111.754 42.7856L111.728 42.6487C111.993 41.9422 113.405 41.189 114.049 40.7893C115.228 39.9709 114.644 39.3834 113.732 38.6638C112.803 39.1395 111.334 40.3204 110.538 40.5341C110.289 40.4765 110.379 40.5196 110.192 40.2936C110.247 39.6424 113.114 38.0285 113.793 37.6005Z" fill="white"/>
<path d="M114.879 77.1406C115.449 77.3866 118.899 78.7695 119.057 79.1554C119.002 79.4175 118.824 79.5437 118.626 79.7406C118.291 83.1199 116.064 81.7055 114.05 80.7256C113.78 80.6102 113.649 80.5705 113.415 80.3843L113.416 80.2284C113.632 79.8423 113.773 79.7131 114.256 79.8895C115.061 80.1832 116.315 81.1321 117.174 81.0557C117.808 80.9993 117.94 79.9843 118.046 79.4468C117.462 79.1307 114.861 78.091 114.613 77.8613C114.594 77.5804 114.738 77.3976 114.879 77.1406Z" fill="white"/>
<path d="M39.4019 74.0032L39.5998 74.1131C39.7239 74.373 39.7132 74.2692 39.6981 74.5439C38.9477 75.722 34.6201 74.8609 36.8741 77.8465C37.5826 77.5492 40.1765 76.4631 40.7113 76.9452C40.7251 77.3924 40.4918 77.4071 40.1446 77.5667C39.2249 77.8424 37.0721 78.7123 36.29 78.7449C35.8501 78.4428 36.4404 78.1876 35.8372 77.444C33.9561 75.1249 37.8539 74.477 39.4019 74.0032Z" fill="white"/>
<path d="M34.6563 59.5012C35.5574 59.4668 36.8539 59.5331 37.7765 59.5878C37.9484 59.5979 38.0895 59.7809 38.1808 59.9217C38.2191 60.1884 38.2496 60.0756 38.1275 60.2795C37.4384 60.5938 35.6653 60.1312 34.8438 60.2931C33.7416 60.5105 34.0736 61.5076 34.28 62.2832L36.3496 62.3555C36.7648 62.3547 37.6266 62.3072 37.9856 62.4615C38.195 62.7993 38.1775 63.006 37.8288 63.2142C37.1341 63.2038 33.9008 63.1362 33.4226 62.9725C33.4785 61.427 32.8591 59.8829 34.6563 59.5012Z" fill="white"/>
<path d="M117.649 59.9995C118.682 60.0339 120.634 61.7867 121.525 62.4812C121.428 61.937 121.403 61.3589 121.362 60.8063C121.332 60.4022 121.324 60.1254 121.78 60.0169L121.935 60.119C122.176 60.6122 122.122 61.9363 122.134 62.5289C122.142 62.9856 122.064 63.0789 121.778 63.3437C120.514 63.0308 119.138 61.5495 117.94 60.8367C118.063 61.3627 118.256 62.8643 117.963 63.3232C117.695 63.4234 117.829 63.4126 117.545 63.3516C117.25 62.9953 117.37 61.3017 117.352 60.7758C117.339 60.4086 117.39 60.2425 117.649 59.9995Z" fill="white"/>
<path d="M70.4845 19.3409C70.7182 19.3344 70.6105 19.3103 70.8195 19.4174C71.2114 20.1892 69.534 23.0095 69.0247 23.7151C69.5596 23.577 71.3457 23.0284 71.6813 23.4844C71.6754 23.5786 71.6853 23.7596 71.6253 23.7983C71.1327 24.1159 69.5389 24.298 68.9738 24.3917C68.7786 24.3969 68.7651 24.3872 68.5819 24.3445C67.907 23.7157 69.0266 22.1644 69.3326 21.519C69.5566 21.0466 69.9208 20.4665 70.2073 20.0187C69.7344 20.1465 67.96 20.6688 67.7021 20.1613C68.0433 19.5556 69.7976 19.4269 70.4845 19.3409Z" fill="white"/>
<path d="M95.204 20.5042C95.7145 20.5244 96.4731 20.6868 96.5458 21.2941L96.3983 21.4144C96.0715 21.468 95.8204 21.322 95.5012 21.1941L94.9861 22.2158C95.3613 22.3549 95.9119 22.4697 95.8166 22.9678L95.6237 23.077C95.2841 23.1068 95.0489 22.9667 94.7282 22.8304C94.3719 23.7598 94.0066 24.6858 93.633 25.6083C93.4772 26.0257 93.2669 26.5238 92.7284 26.5359L92.6172 26.3921C92.5173 25.754 93.7268 23.2083 94.0323 22.4982C93.6776 22.3511 93.2064 22.2197 93.3365 21.7522L93.543 21.6675C93.8463 21.6774 93.9801 21.7845 94.2464 21.9328C94.5353 21.2941 94.6352 20.9313 95.204 20.5042Z" fill="white"/>
<path d="M108.254 31.136C108.56 31.1692 108.59 31.1705 108.822 31.3827L109.166 31.6949C109.496 31.3692 109.718 31.1079 110.196 31.3126C110.509 31.8016 110.034 32.0243 109.67 32.2725C110.039 32.6213 110.333 32.78 110.204 33.3167C109.765 33.5958 109.512 33.096 109.293 32.7776C108.581 33.4365 107.882 34.1106 107.199 34.7995L106.808 35.2343C107.078 35.4856 107.525 35.8018 107.361 36.1965C106.749 36.4008 105.935 35.4932 106.092 35.0258C106.41 34.0819 108.008 32.8337 108.749 32.2132C108.289 31.7909 108.074 31.7462 108.254 31.136Z" fill="white"/>
<path d="M77.1616 17.6082C77.3863 17.6189 77.4574 17.6006 77.6298 17.7443C77.7909 18.016 77.7554 18.3628 77.7622 18.6947C78.1222 18.6982 78.8241 18.6144 78.834 19.1124C78.4785 19.4858 78.2168 19.3843 77.7183 19.3588C77.7735 20.4038 77.7562 21.8783 77.9142 22.8605C78.2864 22.8515 78.8279 22.791 79.0397 23.1471C78.8975 23.3914 78.9497 23.313 78.6835 23.4743C78.3575 23.4786 77.4627 23.5334 77.2963 23.2955C76.8266 22.6234 76.9529 20.179 76.9499 19.3417C76.6152 19.3615 76.1933 19.4246 75.944 19.2123C75.9191 18.9362 75.9059 19.045 76.0346 18.7862C76.2461 18.6569 76.53 18.72 76.7963 18.7408C77.0058 18.5534 76.8137 18.061 77.1616 17.6082Z" fill="white"/>
<path d="M38.6251 70.7268C38.8711 70.8767 39.0462 71.3855 39.0972 71.686C39.3767 73.3353 36.3574 73.0583 35.3736 73.5612C35.23 73.6345 35.5248 74.2435 35.2862 74.5969C35.0245 74.6526 35.1449 74.6683 34.911 74.5624C34.7424 74.2976 34.7527 74.0275 34.7231 73.7068C34.4003 73.786 34.0513 73.8909 33.7287 73.9815C33.5145 73.7142 33.3991 73.5021 33.5898 73.202C33.8837 73.0141 34.176 73.0079 34.5278 72.9583L34.4667 72.7804C34.3333 72.3949 34.2198 72.2252 34.4706 71.8714C35.0273 71.7436 35.0678 72.4022 35.1524 72.8102C36.2432 72.4798 37.327 72.2852 38.4305 72.0027C38.3461 71.4331 38.1497 71.0951 38.6251 70.7268Z" fill="white"/>
<path d="M35.0418 51.269C35.3353 51.3605 35.3733 51.3662 35.511 51.5804C35.5449 51.9011 35.3766 52.2023 35.2486 52.5142C36.2617 52.6804 37.6079 53.0597 38.6283 53.3172C38.7427 52.8856 38.7606 52.5866 39.1054 52.3239C39.7548 52.3668 39.429 53.5748 38.9885 53.8323C38.5558 54.0853 38.409 54.0073 37.9478 53.9309C37.3505 53.8713 35.7383 53.4322 35.0809 53.2613C35.0143 53.6037 34.95 54.2175 34.4697 54.1174L34.3527 53.9378C34.2979 53.6322 34.4257 53.3783 34.5305 53.0743C33.9886 53.0352 33.6818 53.1078 33.499 52.5344C33.6177 52.2729 33.5498 52.3634 33.8165 52.2009C34.1211 52.1571 34.3171 52.2638 34.6121 52.3702C34.7567 51.9071 34.8209 51.6949 35.0418 51.269Z" fill="white"/>
<path d="M117.482 69.5829C117.424 69.9808 117.409 70.4617 117.021 70.665L116.875 70.5862C116.611 70.1291 116.693 69.1695 117.081 68.9858C117.864 68.6151 120.217 69.2151 121.053 69.318C121.232 69.32 121.429 69.2988 121.58 69.3798C122.005 69.544 122.54 69.4513 122.723 70.1054L122.643 70.2217C122.223 70.4024 121.964 70.3105 121.545 70.1867C121.485 70.5663 121.442 71.2268 120.956 71.2615C120.619 70.8814 120.769 70.5924 120.868 70.1181C119.742 69.9256 118.613 69.7472 117.482 69.5829Z" fill="white"/>
<path d="M42.0005 33.9399C42.4119 34.1527 46.5041 37.4624 46.9155 37.8738C46.9303 38.1269 46.7921 38.2647 46.6431 38.4852C46.288 38.4761 41.7652 34.9022 41.6465 34.531C41.6622 34.2759 41.8253 34.1446 42.0005 33.9399Z" fill="white"/>
<path d="M40.974 78.4448C41.1516 78.4666 41.2252 78.539 41.372 78.6411C41.4545 78.9017 41.4546 78.7735 41.362 79.0389C40.8477 79.5698 36.6875 81.2072 35.7905 81.5642C35.5374 81.5369 35.4317 81.3705 35.4053 81.1467C35.6441 80.5039 40.0129 78.8954 40.974 78.4448Z" fill="white"/>
<path d="M51.6915 27.0613C51.975 27.198 51.898 27.1132 52.0374 27.3653C52.0434 27.8157 51.582 28.2333 51.2747 28.5819C51.9256 29.4283 52.7585 30.3789 53.296 31.2942C53.445 31.5478 53.3945 31.6717 53.3165 31.8978C53.0955 32.074 53.1997 32.027 52.9128 32.0541C52.4929 31.5968 50.3763 28.873 50.2539 28.3802C50.8155 27.8862 51.1746 27.616 51.6915 27.0613Z" fill="white"/>
<path d="M33.6204 63.8894L33.6437 63.9045C34.0817 64.1811 34.1572 64.8001 34.296 65.3201C34.9983 65.3167 37.76 65.0145 38.1705 65.2934C38.2391 65.5319 38.2136 65.5559 38.1236 65.8024C37.9417 65.9748 38.0172 65.922 37.7355 65.9685C36.4189 66.0351 34.934 66.1522 33.62 66.1528C33.5235 66.1529 33.5406 66.1246 33.4519 66.0132C33.4164 65.8123 33.4194 65.7945 33.5145 65.6059C33.879 64.883 32.8856 64.7349 33.6204 63.8894Z" fill="white"/>
<path d="M101.006 25.311C101.343 25.3898 101.381 25.572 101.541 25.8595C101.96 25.9965 102.591 26.1273 102.699 26.6044C102.353 26.9572 101.563 26.6128 101.17 26.4814L99.7716 28.6597L99.6922 28.7839C99.4789 29.1141 99.3223 29.4664 98.9532 29.546C98.7535 29.4635 98.6688 29.4537 98.5645 29.2669C98.6446 28.6988 100.579 25.8131 101.006 25.311Z" fill="white"/>
<path d="M120.085 50.4822C120.162 50.4931 120.27 50.5377 120.344 50.5637C120.432 50.8501 120.281 51.1811 120.319 51.2693C120.482 51.6492 121.046 52.1682 120.774 52.5785C120.56 52.6407 120.531 52.6211 120.321 52.5658C120.109 52.3556 119.796 51.6981 119.641 51.4031C118.89 51.6237 118.138 51.839 117.384 52.0489C117.15 52.1169 116.915 52.1823 116.68 52.2451C116.362 52.3292 116.204 52.3877 115.92 52.2217C115.773 51.9647 115.809 52.0998 115.814 51.8C116.132 51.4188 119.321 50.6839 120.085 50.4822Z" fill="white"/>
<path d="M65.9118 20.2083C66.1528 20.2065 66.1795 20.1952 66.3887 20.2977C66.7013 20.7836 67.4604 23.7571 67.5704 24.4994C67.6007 24.704 67.5376 24.7361 67.4242 24.8606C67.2363 24.8885 67.1759 24.8902 66.9843 24.8915C66.6759 24.604 66.0162 21.6164 65.8252 21.0444C65.6987 20.6656 65.7279 20.5284 65.9118 20.2083Z" fill="white"/>
<path d="M121.418 57.9927C121.883 57.9933 121.944 58.1718 121.885 58.6012C121.511 58.9764 118.342 59.1207 117.657 59.1892C117.367 59.1891 117.382 59.2395 117.212 59.0972C117.156 58.8306 117.161 58.7981 117.24 58.5365C117.495 58.2701 120.788 58.0543 121.418 57.9927Z" fill="white"/>
<path d="M80.0378 18.7458C80.332 18.7619 80.4704 18.7512 80.6512 18.9952C80.7087 19.5441 80.5257 23.0971 80.3532 23.5388L80.2496 23.5446C79.9553 23.5586 79.9001 23.5549 79.7171 23.3854C79.6112 22.7766 79.7579 19.2422 80.0378 18.7458Z" fill="white"/>
<path d="M35.4666 49.6008C35.9303 49.6784 39.4838 50.8186 39.8342 51.0571C39.8809 51.3052 39.7927 51.4061 39.6934 51.6716C39.2871 51.6845 35.5094 50.5449 35.3058 50.2953C35.2532 50.0541 35.3732 49.8442 35.4666 49.6008Z" fill="white"/>
<path d="M116.574 71.2493C117.224 71.3862 120.776 72.093 121.058 72.4069C121.069 72.7458 121.013 72.7353 120.847 73.0579C120.085 72.8335 116.821 72.2003 116.449 71.9786C116.382 71.7219 116.489 71.5132 116.574 71.2493Z" fill="white"/>
<path d="M82.1514 104.998C82.7746 105.014 83.3971 105.017 84.0204 105.007C84.0325 105.551 84.0741 106.359 84.0105 106.878C83.3532 106.871 82.8351 106.877 82.1771 106.917L82.1514 104.998Z" fill="white"/>
<path d="M82.2937 100.128C82.8466 100.141 83.4669 100.111 84.0243 100.096C84.022 100.725 84.0258 101.355 84.0356 101.983C83.4313 101.957 82.7604 101.976 82.1515 101.981C82.1682 101.496 82.057 100.472 82.2937 100.128Z" fill="white"/>
<path d="M123.203 57.7441C123.52 57.8433 123.427 57.7703 123.639 57.9998C123.734 58.594 123.43 58.6181 122.975 58.7057C122.693 58.651 122.683 58.6309 122.51 58.4502C122.414 57.8852 122.776 57.8404 123.203 57.7441Z" fill="white"/>
<path d="M65.4313 18.5241C66.1541 18.5125 66.4107 19.1599 66.0121 19.6974C65.2421 19.8359 65.1311 19.0528 65.4313 18.5241Z" fill="white"/>
<path d="M33.8722 49.1021C34.273 49.2033 34.4607 49.219 34.694 49.5286C34.7384 49.7826 34.628 49.9084 34.4979 50.1418C34.101 50.0533 33.7158 50.0586 33.5605 49.6572C33.6038 49.3766 33.6787 49.3297 33.8722 49.1021Z" fill="white"/>
<path d="M80.1107 17C80.8459 17.0923 81.0009 17.4248 80.7256 18.1312C80.3641 18.1376 80.2582 18.1616 79.9866 17.974C79.8459 17.5872 79.9428 17.4152 80.1107 17Z" fill="white"/>
<path d="M121.962 72.3689C122.334 72.4988 122.573 72.5262 122.791 72.8229C122.817 73.0721 122.713 73.2111 122.597 73.4401C122.19 73.3625 121.892 73.3831 121.698 72.9879C121.714 72.7155 121.817 72.601 121.962 72.3689Z" fill="white"/>
<path d="M121.054 69.3181C121.076 68.9899 121.059 68.858 121.225 68.5726C121.456 68.4047 121.334 68.4336 121.598 68.4569C121.855 68.7713 121.75 69.0242 121.58 69.3798C121.43 69.2989 121.232 69.3201 121.054 69.3181Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 36 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 28 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 39 KiB

Some files were not shown because too many files have changed in this diff Show More