Merge branch 'master' into master

main
Elbert Alias 3 years ago committed by GitHub
commit 291ec3d138
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -16,7 +16,7 @@ If you don't have time to configure, host, debug and maintain your own infrastru
## Prerequisites
- [Git](https://git-scm.com)
- [Node.js](https://nodejs.org) version 12 or higher
- [Node.js](https://nodejs.org) version 14 or higher
- [Yarn](https://yarnpkg.com)
## Quick start

@ -64,7 +64,7 @@
7
],
"name": "Hosting panels",
"priority": 1
"priority": 2
},
"10": {
"groups": [
@ -136,7 +136,7 @@
6
],
"name": "Miscellaneous",
"priority": 9
"priority": 10
},
"20": {
"groups": [

@ -35,6 +35,7 @@ wappalyzer <url> [options]
-r, --recursive Follow links on pages (crawler)
-a, --user-agent=... Set the user agent string
-n, --no-scripts Disabled JavaScript on web pages
-N, --no-redirect Disable cross-domain redirects
```
@ -66,6 +67,7 @@ const options = {
htmlMaxCols: 2000,
htmlMaxRows: 2000,
noScripts: false,
noRedirect: false,
};
const wappalyzer = new Wappalyzer(options)

@ -22,6 +22,7 @@ const aliases = {
r: 'recursive',
w: 'maxWait',
n: 'noScripts',
N: 'noRedirect',
}
while (true) {
@ -75,6 +76,7 @@ Options:
-r, --recursive Follow links on pages (crawler)
-a, --user-agent=... Set the user agent string
-n, --no-scripts Disabled JavaScript on web pages
-N, --no-redirect Disable cross-domain redirects
`)
process.exit(1)

@ -1,4 +1,3 @@
const { URL } = require('url')
const os = require('os')
const fs = require('fs')
const dns = require('dns').promises
@ -11,10 +10,6 @@ const Wappalyzer = require('./wappalyzer')
const { setTechnologies, setCategories, analyze, analyzeManyToMany, resolve } =
Wappalyzer
function next() {
return new Promise((resolve) => setImmediate(resolve))
}
const { CHROMIUM_BIN, CHROMIUM_DATA_DIR, CHROMIUM_WEBSOCKET } = process.env
const chromiumArgs = [
@ -99,21 +94,16 @@ function getJs(page, technologies = Wappalyzer.technologies) {
}, technologies)
}
async function analyzeJs(js, technologies = Wappalyzer.technologies) {
return Array.prototype.concat.apply(
[],
await Promise.all(
js.map(async ({ name, chain, value }) => {
await next()
return analyzeManyToMany(
technologies.find(({ name: _name }) => name === _name),
'js',
{ [chain]: [value] }
)
})
)
)
function analyzeJs(js, technologies = Wappalyzer.technologies) {
return js
.map(({ name, chain, value }) => {
return analyzeManyToMany(
technologies.find(({ name: _name }) => name === _name),
'js',
{ [chain]: [value] }
)
})
.flat()
}
function getDom(page, technologies = Wappalyzer.technologies) {
@ -201,59 +191,36 @@ function getDom(page, technologies = Wappalyzer.technologies) {
}, technologies)
}
async function analyzeDom(dom, technologies = Wappalyzer.technologies) {
return Array.prototype.concat.apply(
[],
await Promise.all(
dom.map(
async ({
name,
selector,
exists,
text,
property,
attribute,
value,
}) => {
await next()
const technology = technologies.find(
({ name: _name }) => name === _name
)
if (typeof exists !== 'undefined') {
return analyzeManyToMany(technology, 'dom.exists', {
[selector]: [''],
})
}
function analyzeDom(dom, technologies = Wappalyzer.technologies) {
return dom
.map(({ name, selector, exists, text, property, attribute, value }) => {
const technology = technologies.find(({ name: _name }) => name === _name)
if (typeof text !== 'undefined') {
return analyzeManyToMany(technology, 'dom.text', {
[selector]: [text],
})
}
if (typeof exists !== 'undefined') {
return analyzeManyToMany(technology, 'dom.exists', {
[selector]: [''],
})
}
if (typeof property !== 'undefined') {
return analyzeManyToMany(technology, `dom.properties.${property}`, {
[selector]: [value],
})
}
if (typeof text !== 'undefined') {
return analyzeManyToMany(technology, 'dom.text', {
[selector]: [text],
})
}
if (typeof attribute !== 'undefined') {
return analyzeManyToMany(
technology,
`dom.attributes.${attribute}`,
{
[selector]: [value],
}
)
}
if (typeof property !== 'undefined') {
return analyzeManyToMany(technology, `dom.properties.${property}`, {
[selector]: [value],
})
}
return []
}
)
)
)
if (typeof attribute !== 'undefined') {
return analyzeManyToMany(technology, `dom.attributes.${attribute}`, {
[selector]: [value],
})
}
})
.flat()
}
function get(url, options = {}) {
@ -497,11 +464,8 @@ class Site {
async goto(url) {
// Return when the URL is a duplicate or maxUrls has been reached
if (
this.analyzedUrls[url.href] ||
Object.keys(this.analyzedUrls).length >= this.options.maxUrls
) {
return
if (this.analyzedUrls[url.href]) {
return []
}
this.log(`Navigate to ${url}`, 'page')
@ -556,7 +520,7 @@ class Site {
if (!this.analyzedXhr[url.hostname].includes(hostname)) {
this.analyzedXhr[url.hostname].push(hostname)
await this.onDetect(url, await analyze({ xhr: hostname }))
await this.onDetect(url, analyze({ xhr: hostname }))
}
}, 1000)
}
@ -588,12 +552,13 @@ class Site {
page.on('response', async (response) => {
try {
if (
response.status < 300 &&
response.frame().url() === url.href &&
response.request().resourceType() === 'script'
) {
const scripts = await response.text()
await this.onDetect(response.url(), await analyze({ scripts }))
await this.onDetect(response.url(), analyze({ scripts }))
}
if (response.url() === url.href) {
@ -613,21 +578,33 @@ class Site {
]
})
// Prevent cross-domain redirects
if (response.status() >= 300 && response.status() < 400) {
if (headers.location) {
url = new URL(headers.location.slice(-1), url)
const _url = new URL(headers.location.slice(-1), url)
if (
_url.hostname.replace(/^www\./, '') ===
this.originalUrl.hostname.replace(/^www\./, '') ||
(Object.keys(this.analyzedUrls).length === 1 &&
!this.options.noRedirect)
) {
url = _url
return
}
}
} else {
responseReceived = true
}
const certIssuer = response.securityDetails()
? response.securityDetails().issuer()
: ''
responseReceived = true
await this.onDetect(url, await analyze({ headers, certIssuer }))
const certIssuer = response.securityDetails()
? response.securityDetails().issuer()
: ''
await this.emit('response', { page, response, headers, certIssuer })
}
await this.onDetect(url, analyze({ headers, certIssuer }))
await this.emit('response', { page, response, headers, certIssuer })
}
} catch (error) {
this.error(error)
@ -727,9 +704,10 @@ class Site {
text = await this.promiseTimeout(
(
await this.promiseTimeout(
page.evaluateHandle(() =>
// eslint-disable-next-line unicorn/prefer-text-content
document.body.innerText.replace(/\s+/g, ' ').slice(0, 25000)
page.evaluateHandle(
() =>
// eslint-disable-next-line unicorn/prefer-text-content
document.body.innerText // .replace(/\s+/g, ' ').slice(0, 25000)
),
{ jsonValue: () => '' },
'Timeout (text)'
@ -814,7 +792,11 @@ class Site {
meta.getAttribute('name') || meta.getAttribute('property')
if (key) {
metas[key.toLowerCase()] = [meta.getAttribute('content')]
metas[key.toLowerCase()] = metas[key.toLowerCase()] || []
metas[key.toLowerCase()].push(
meta.getAttribute('content')
)
}
return metas
@ -851,22 +833,20 @@ class Site {
await this.onDetect(
url,
(
await Promise.all([
analyzeDom(dom),
analyzeJs(js),
analyze({
url,
cookies,
html,
text,
css,
scripts,
scriptSrc,
meta,
}),
])
).flat()
[
analyzeDom(dom),
analyzeJs(js),
analyze({
url,
cookies,
html,
text,
css,
scripts,
scriptSrc,
meta,
}),
].flat()
)
const reducedLinks = Array.prototype.reduce.call(
@ -957,14 +937,23 @@ class Site {
await Promise.all([
(async () => {
const links = await this.goto(url)
const links = ((await this.goto(url)) || []).filter(
({ href }) => !this.analyzedUrls[href]
)
if (
links &&
links.length &&
this.options.recursive &&
Object.keys(this.analyzedUrls).length < this.options.maxUrls &&
depth < this.options.maxDepth
) {
await this.batch(links.slice(0, this.options.maxUrls), depth + 1)
await this.batch(
links.slice(
0,
this.options.maxUrls - Object.keys(this.analyzedUrls).length
),
depth + 1
)
}
})(),
(async () => {
@ -977,7 +966,7 @@ class Site {
])
} catch (error) {
this.analyzedUrls[url.href] = {
status: 0,
status: this.analyzedUrls[url.href]?.status || 0,
error: error.message || error.toString(),
}
@ -1058,10 +1047,7 @@ class Site {
this.log(`Probe ok (${path})`)
await this.onDetect(
url,
await analyze({ [file]: body.slice(0, 100000) })
)
await this.onDetect(url, analyze({ [file]: body.slice(0, 100000) }))
} catch (error) {
this.error(`Probe failed (${path}): ${error.message || error}`)
}
@ -1099,7 +1085,7 @@ class Site {
`Probe DNS ok: (${Object.values(dnsRecords).flat().length} records)`
)
await this.onDetect(url, await analyze({ dns: dnsRecords }))
await this.onDetect(url, analyze({ dns: dnsRecords }))
resolve()
}),
@ -1174,25 +1160,23 @@ class Site {
await this.onDetect(
url,
(
await Promise.all([
analyzeDom(dom, technologies),
analyzeJs(js, technologies),
analyze(
{
url,
cookies,
html,
text,
css,
scripts,
scriptSrc,
meta,
},
technologies
),
])
).flat()
[
analyzeDom(dom, technologies),
analyzeJs(js, technologies),
await analyze(
{
url,
cookies,
html,
text,
css,
scripts,
scriptSrc,
meta,
},
technologies
),
].flat()
)
}
})

@ -13,7 +13,7 @@
"software"
],
"homepage": "https://www.wappalyzer.com/",
"version": "6.9.2",
"version": "6.9.11",
"author": "Wappalyzer",
"license": "MIT",
"repository": {
@ -42,5 +42,8 @@
},
"dependencies": {
"puppeteer": "^10.4.0"
},
"engines": {
"node": ">=14"
}
}

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -91,6 +91,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Traceurs" },
"setSecurity": { "message": "Sécurité" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "Pays de l'IP" },
"attributeIpRegion": { "message": "Région de l'IP" },
"attributeLanguage": { "message": "Langue" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Type de société" },
"attributeCompanyFounded": { "message": "Création de l'entreprise" },
"attributeKeywords": { "message": "Mots clés" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "Enregistrement SPF" },
"attributeDns_dmarc": { "message": "Enregistrement DMARC" },
"attributeSchemaOrgTypes": { "message": "types schema.org" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -45,7 +45,9 @@
"setLocale": { "message": "位置" },
"setTrackers": { "message": "トラッカー" },
"setSecurity": { "message": "セキュリティ" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "言語" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "会社種別" },
"attributeCompanyFounded": { "message": "会社創立日" },
"attributeKeywords": { "message": "キーワード" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPFレコード" },
"attributeDns_dmarc": { "message": "DMARCレコード" },
"attributeSchemaOrgTypes": { "message": "schema.orgタイプ" },

@ -45,7 +45,9 @@
"setLocale": { "message": "언어(지역)" },
"setTrackers": { "message": "추적기" },
"setSecurity": { "message": "보안" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP 나라" },
"attributeIpRegion": { "message": "IP 지역" },
"attributeLanguage": { "message": "언어" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "회사 종류" },
"attributeCompanyFounded": { "message": "회사 상장" },
"attributeKeywords": { "message": "키워드" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF 레코드" },
"attributeDns_dmarc": { "message": "DMARC 레코드" },
"attributeSchemaOrgTypes": { "message": "schema.org 타입" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Beveiliging" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "Land van het IP" },
"attributeIpRegion": { "message": "Regio van het IP" },
"attributeLanguage": { "message": "Taal" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Bedrijfstype" },
"attributeCompanyFounded": { "message": "Oprichting van het bedrijf" },
"attributeKeywords": { "message": "Trefwoorden" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF-registratie" },
"attributeDns_dmarc": { "message": "DMARC-registratie" },
"attributeSchemaOrgTypes": { "message": "Typen schema.org" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -45,7 +45,9 @@
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
@ -91,6 +93,7 @@
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },

@ -42,6 +42,10 @@ p {
margin: 0 0 .5rem 0;
}
.light-text {
color: var(--color-text-lighten);
}
.popup {
background: white;
max-height: 34rem;
@ -72,7 +76,7 @@ p {
text-align: right;
}
.button__link:hover:before {
.button__link:before {
background: var(--color-primary);
border-radius: 4px;
content: '';
@ -81,6 +85,10 @@ p {
left: 0;
right: 0;
bottom: 0;
opacity: 0;
}
.button__link:hover:before {
opacity: .1;
}
@ -223,16 +231,22 @@ small {
overflow: hidden;
}
.tab-item:nth-child(2) {
width: 31rem;
}
.tab-item--hidden {
display: none;
}
.credits {
background: var(--color-secondary);
color: var(--color-text-lighten);
display: block;
font-size: .8rem;
text-align: right;
flex: 1;
padding: 0 1.5rem;
padding: 1rem 1.5rem 0 1.5rem;
margin-bottom: -3px;
line-height: 1rem;
}
@ -286,6 +300,7 @@ small {
.panel__content th {
font-weight: normal;
text-align: left;
min-width: 200px;
width: 33%;
}
@ -320,19 +335,6 @@ small {
padding-bottom: 0;
}
.chip, .chip:focus, .chip:hover {
border: 1px solid var(--color-secondary-darken);
border-radius: 4px;
margin: 0 .5rem .5rem 0;
display: inline-block;
padding: .2rem .5rem;
text-decoration: none;
}
.chip:focus, .chip:hover {
background: var(--color-primary-lighten)
}
.plus-configure {
margin: 1.5rem;
}
@ -391,6 +393,25 @@ small {
display: none;
}
.plus-download {
flex: 1 0;
text-align: right;
padding: 0 1.5rem;
white-space: nowrap;
}
.plus-download .button__link:before {
opacity: .1;
}
.plus-download .button__link:hover:before {
opacity: .2;
}
.plus-download--hidden {
visibility: hidden;
}
.plus-error {
margin: 1.5rem;
}
@ -812,12 +833,12 @@ body.dynamic-icon .category__heading:hover .category__pin {
color: var(--color-primary-text);
}
.input[type="text"], .input[type="password"] {
border-color: var(--color-primary-darken);
.dark .light-text {
color: var(--color-primary-text);
}
.dark .chip:focus, .dark .chip:hover {
background: var(--color-primary);
.input[type="text"], .input[type="password"] {
border-color: var(--color-primary-darken);
}
.dark .message {
@ -838,7 +859,7 @@ body.dynamic-icon .category__heading:hover .category__pin {
color: var(--color-text-dark);
}
.dark .button__link:hover:before {
.dark .button__link:before {
background: white;
}
@ -942,6 +963,11 @@ body.dynamic-icon .category__heading:hover .category__pin {
border-color: var(--color-primary);
}
.dark .credits {
background: var(--color-primary-darken);
}
.dark .footer {
background: var(--color-primary-darken);
border-top: 1px solid var(--color-primary);

@ -49,173 +49,189 @@
<div class="tab tab--technologies tab--active" data-i18n="tabTechnologies">&nbsp;</div>
<div class="tab tab--plus"><span data-i18n="tabPlus">&nbsp;</span></div>
<div class="credits credits--hidden">
<span data-i18n="creditBalance">&nbsp;</span>
<div class="plus-download plus-download--hidden">
<div class="plus-download__button button">
<span class="button__link">
<svg class="button__icon button__icon--left" viewBox="0 0 24 24">
<path fill="currentColor" d="M5,20H19V18H5M19,9H15V3H9V9H5L12,16L19,9Z" />
</svg>
<span class="credits__remaining">&nbsp;</span>
<span class="button__text">
Export
</span>
</span>
</div>
</div>
</div>
<div class="tab-item">
<div class="empty empty--hidden">
<div class="empty__text" data-i18n="noAppsDetected">&nbsp;</div>
<div class="ttt-game">
<div class="ttt-player">
<svg class="ttt-player-icon ttt-player-icon-x ttt-player-icon--ahead" viewBox="0 0 24 24">
<path fill="currentColor" d="M19,10C19,11.38 16.88,12.5 15.5,12.5C14.12,12.5 12.75,11.38 12.75,10H11.25C11.25,11.38 9.88,12.5 8.5,12.5C7.12,12.5 5,11.38 5,10H4.25C4.09,10.64 4,11.31 4,12A8,8 0 0,0 12,20A8,8 0 0,0 20,12C20,11.31 19.91,10.64 19.75,10H19M12,4C9.04,4 6.45,5.61 5.07,8H18.93C17.55,5.61 14.96,4 12,4M22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2A10,10 0 0,1 22,12M12,17.23C10.25,17.23 8.71,16.5 7.81,15.42L9.23,14C9.68,14.72 10.75,15.23 12,15.23C13.25,15.23 14.32,14.72 14.77,14L16.19,15.42C15.29,16.5 13.75,17.23 12,17.23Z" />
</svg>
<div class="tab-items">
<div class="tab-item">
<div class="empty empty--hidden">
<div class="empty__text" data-i18n="noAppsDetected">&nbsp;</div>
<svg class="ttt-player-icon ttt-player-icon--behind ttt-player-icon ttt-player-icon--hidden" viewBox="0 0 24 24">
<path fill="currentColor" d="M20 12A8 8 0 1 0 12 20A8 8 0 0 0 20 12M22 12A10 10 0 1 1 12 2A10 10 0 0 1 22 12M15.5 8A1.5 1.5 0 1 1 14 9.5A1.54 1.54 0 0 1 15.5 8M10 9.5A1.5 1.5 0 1 1 8.5 8A1.54 1.54 0 0 1 10 9.5M17 15H13A4 4 0 0 0 9.53 17L7.8 16A6 6 0 0 1 13 13H17Z" />
</svg>
<div class="ttt-game">
<div class="ttt-player">
<svg class="ttt-player-icon ttt-player-icon-x ttt-player-icon--ahead" viewBox="0 0 24 24">
<path fill="currentColor" d="M19,10C19,11.38 16.88,12.5 15.5,12.5C14.12,12.5 12.75,11.38 12.75,10H11.25C11.25,11.38 9.88,12.5 8.5,12.5C7.12,12.5 5,11.38 5,10H4.25C4.09,10.64 4,11.31 4,12A8,8 0 0,0 12,20A8,8 0 0,0 20,12C20,11.31 19.91,10.64 19.75,10H19M12,4C9.04,4 6.45,5.61 5.07,8H18.93C17.55,5.61 14.96,4 12,4M22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2A10,10 0 0,1 22,12M12,17.23C10.25,17.23 8.71,16.5 7.81,15.42L9.23,14C9.68,14.72 10.75,15.23 12,15.23C13.25,15.23 14.32,14.72 14.77,14L16.19,15.42C15.29,16.5 13.75,17.23 12,17.23Z" />
</svg>
<div class="ttt-score ttt-score-x">0</div>
</div>
<svg class="ttt-player-icon ttt-player-icon--behind ttt-player-icon ttt-player-icon--hidden" viewBox="0 0 24 24">
<path fill="currentColor" d="M20 12A8 8 0 1 0 12 20A8 8 0 0 0 20 12M22 12A10 10 0 1 1 12 2A10 10 0 0 1 22 12M15.5 8A1.5 1.5 0 1 1 14 9.5A1.54 1.54 0 0 1 15.5 8M10 9.5A1.5 1.5 0 1 1 8.5 8A1.54 1.54 0 0 1 10 9.5M17 15H13A4 4 0 0 0 9.53 17L7.8 16A6 6 0 0 1 13 13H17Z" />
</svg>
<div class="ttt-grid">
<div class="ttt-row">
<div class="ttt-cell"></div><div class="ttt-cell"></div><div class="ttt-cell"></div>
<div class="ttt-score ttt-score-x">0</div>
</div>
<div class="ttt-row">
<div class="ttt-cell"></div><div class="ttt-cell"></div><div class="ttt-cell"></div>
<div class="ttt-grid">
<div class="ttt-row">
<div class="ttt-cell"></div><div class="ttt-cell"></div><div class="ttt-cell"></div>
</div>
<div class="ttt-row">
<div class="ttt-cell"></div><div class="ttt-cell"></div><div class="ttt-cell"></div>
</div>
<div class="ttt-row">
<div class="ttt-cell"></div><div class="ttt-cell"></div><div class="ttt-cell"></div>
</div>
</div>
<div class="ttt-row">
<div class="ttt-cell"></div><div class="ttt-cell"></div><div class="ttt-cell"></div>
<div class="ttt-player">
<svg class="ttt-player-icon ttt-player-icon-o" viewBox="0 0 24 24">
<path fill="currentColor" d="M9,11.75A1.25,1.25 0 0,0 7.75,13A1.25,1.25 0 0,0 9,14.25A1.25,1.25 0 0,0 10.25,13A1.25,1.25 0 0,0 9,11.75M15,11.75A1.25,1.25 0 0,0 13.75,13A1.25,1.25 0 0,0 15,14.25A1.25,1.25 0 0,0 16.25,13A1.25,1.25 0 0,0 15,11.75M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20C7.59,20 4,16.41 4,12C4,11.71 4,11.42 4.05,11.14C6.41,10.09 8.28,8.16 9.26,5.77C11.07,8.33 14.05,10 17.42,10C18.2,10 18.95,9.91 19.67,9.74C19.88,10.45 20,11.21 20,12C20,16.41 16.41,20 12,20Z" />
</svg>
<div class="ttt-score ttt-score-o">0</div>
</div>
</div>
<div class="ttt-player">
<svg class="ttt-player-icon ttt-player-icon-o" viewBox="0 0 24 24">
<path fill="currentColor" d="M9,11.75A1.25,1.25 0 0,0 7.75,13A1.25,1.25 0 0,0 9,14.25A1.25,1.25 0 0,0 10.25,13A1.25,1.25 0 0,0 9,11.75M15,11.75A1.25,1.25 0 0,0 13.75,13A1.25,1.25 0 0,0 15,14.25A1.25,1.25 0 0,0 16.25,13A1.25,1.25 0 0,0 15,11.75M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20C7.59,20 4,16.41 4,12C4,11.71 4,11.42 4.05,11.14C6.41,10.09 8.28,8.16 9.26,5.77C11.07,8.33 14.05,10 17.42,10C18.2,10 18.95,9.91 19.67,9.74C19.88,10.45 20,11.21 20,12C20,16.41 16.41,20 12,20Z" />
<svg class="ttt-icon ttt-icon-x" viewBox="0 0 24 24">
<path fill="currentColor" d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" />
</svg>
<div class="ttt-score ttt-score-o">0</div>
<svg class="ttt-icon ttt-icon-o" viewBox="0 0 24 24">
<path fill="currentColor" d="M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z" />
</svg>
</div>
<svg class="ttt-icon ttt-icon-x" viewBox="0 0 24 24">
<path fill="currentColor" d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" />
</svg>
<svg class="ttt-icon ttt-icon-o" viewBox="0 0 24 24">
<path fill="currentColor" d="M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z" />
</svg>
</div>
</div>
<div class="detections"></div>
<div class="detections"></div>
<div class="terms terms--hidden">
<div class="terms__content" data-i18n="termsContent"></div>
<div class="terms terms--hidden">
<div class="terms__content" data-i18n="termsContent"></div>
<div class="terms__buttons">
<button class="terms__button terms__button--accept" data-i18n="termsAccept">&nbsp;</button>
<button class="terms__button terms__button--decline" data-i18n="termsDecline">&nbsp;</button>
<div class="terms__buttons">
<button class="terms__button terms__button--accept" data-i18n="termsAccept">&nbsp;</button>
<button class="terms__button terms__button--decline" data-i18n="termsDecline">&nbsp;</button>
</div>
<a class="terms__privacy" href="https://www.wappalyzer.com/privacy/?utm_source=popup&utm_medium=extension&utm_campaign=wappalyzer" data-i18n="privacyPolicy"></a>
</div>
<a class="terms__privacy" href="https://www.wappalyzer.com/privacy/?utm_source=popup&utm_medium=extension&utm_campaign=wappalyzer" data-i18n="privacyPolicy"></a>
</div>
<div data-template="category" class="category">
<div class="category__heading">
<a class="category__link" href="#"></a>
<div data-template="category" class="category">
<div class="category__heading">
<a class="category__link" href="#"></a>
<svg class="category__pin category__pin--outline" viewBox="0 0 24 24">
<title data-i18n="categoryPin"></title>
<path fill="currentColor" d="M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12M8.8,14L10,12.8V4H14V12.8L15.2,14H8.8Z" />
</svg>
<svg class="category__pin category__pin--outline" viewBox="0 0 24 24">
<title data-i18n="categoryPin"></title>
<path fill="currentColor" d="M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12M8.8,14L10,12.8V4H14V12.8L15.2,14H8.8Z" />
</svg>
<svg class="category__pin" viewBox="0 0 24 24">
<title data-i18n="categoryPin"></title>
<path fill="currentColor" d="M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12Z" />
</svg>
</div>
<svg class="category__pin" viewBox="0 0 24 24">
<title data-i18n="categoryPin"></title>
<path fill="currentColor" d="M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12Z" />
</svg>
<div class="technologies"></div>
</div>
<div class="technologies"></div>
</div>
<div data-template="technology" class="technology">
<div class="technology__heading">
<a class="technology__link" href="#">
<div class="technology__icon">
<img alt="" src="../images/icons/default.svg" />
</div>
<div data-template="technology" class="technology">
<div class="technology__heading">
<a class="technology__link" href="#">
<div class="technology__icon">
<img alt="" src="../images/icons/default.svg" />
</div>
<span class="technology__name">&nbsp;</span>
<span class="technology__name">&nbsp;</span>
<span>
<span class="technology__version">&nbsp;</span>
</span>
<span>
<span class="technology__version">&nbsp;</span>
</span>
<span class="technology__confidence">&nbsp;</span>
</a>
<span class="technology__confidence">&nbsp;</span>
</a>
</div>
</div>
</div>
</div>
<div class="tab-item tab-item--hidden">
<div class="plus-error plus-error--hidden">
<div class="plus-error__message">
<div class="tab-item tab-item--hidden">
<div class="credits credits--hidden">
<span data-i18n="creditBalance">&nbsp;</span>
<span class="credits__remaining">&nbsp;</span>
</div>
</div>
<div class="loading">
<svg class="progress" viewBox="20 20 40 40">
<circle class="progress__circle"></circle>
</svg>
</div>
<div class="plus-error plus-error--hidden">
<div class="plus-error__message">
</div>
</div>
<div class="panels panels--hidden">
</div>
<div class="loading">
<svg class="progress" viewBox="20 20 40 40">
<circle class="progress__circle"></circle>
</svg>
</div>
<div class="plus-configure plus-configure--hidden">
<div class="message">
<div class="message__heading">
<span data-i18n="plusMessageHeading">&nbsp;</span>
</div>
<div class="panels panels--hidden">
</div>
<div class="plus-configure plus-configure--hidden">
<div class="message">
<div class="message__heading">
<span data-i18n="plusMessageHeading">&nbsp;</span>
</div>
<p>
<span data-i18n="plusMessage">&nbsp;</span>
</p>
<p>
<span data-i18n="plusMessage">&nbsp;</span>
</p>
<div class="message__button button">
<a class="button__link" href="https://www.wappalyzer.com/plus/?utm_source=popup&utm_medium=extension&utm_campaign=wappalyzer">
<span class="button__text" data-i18n="plusButton"></span>
<div class="message__button button">
<a class="button__link" href="https://www.wappalyzer.com/plus/?utm_source=popup&utm_medium=extension&utm_campaign=wappalyzer">
<span class="button__text" data-i18n="plusButton">&nbsp;</span>
<svg class="button__icon button__icon--right" viewBox="0 0 24 24">
<path fill="currentColor" d="M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z" />
</svg>
</a>
<svg class="button__icon button__icon--right" viewBox="0 0 24 24">
<path fill="currentColor" d="M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z" />
</svg>
</a>
</div>
</div>
</div>
<form class="plus-configure__form">
<div class="control">
<span class="label">
<span data-i18n="optionApiKey">&nbsp;</span>
<form class="plus-configure__form">
<div class="control">
<span class="label">
<span data-i18n="optionApiKey">&nbsp;</span>
<small class="label__description">
(<a href="https://www.wappalyzer.com/apikey/?utm_source=popup&utm_medium=extension&utm_campaign=wappalyzer" data-i18n="optionApiKeyDescription"></a>)
</small>
</span>
<small class="label__description">
(<a href="https://www.wappalyzer.com/apikey/?utm_source=popup&utm_medium=extension&utm_campaign=wappalyzer" data-i18n="optionApiKeyDescription"></a>)
</small>
</span>
<input type="password" class="plus-configure__apikey input" />
</div>
<input type="password" class="plus-configure__apikey input" />
</div>
<div class="message__button button">
<span class="plus-configure__save button__link">
<svg class="button__icon button__icon--left" viewBox="0 0 24 24">
<path fill="currentColor" d="M15,9H5V5H15M12,19A3,3 0 0,1 9,16A3,3 0 0,1 12,13A3,3 0 0,1 15,16A3,3 0 0,1 12,19M17,3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V7L17,3Z" />
</svg>
<div class="message__button button">
<span class="plus-configure__save button__link">
<svg class="button__icon button__icon--left" viewBox="0 0 24 24">
<path fill="currentColor" d="M15,9H5V5H15M12,19A3,3 0 0,1 9,16A3,3 0 0,1 12,13A3,3 0 0,1 15,16A3,3 0 0,1 12,19M17,3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V7L17,3Z" />
</svg>
<span class="button__text" data-i18n="formSave">&nbsp;</span>
</span>
</div>
</form>
</div>
<span class="button__text" data-i18n="formSave">&nbsp;</span>
</span>
</div>
</form>
</div>
<div class="plus-empty plus-empty--hidden" data-i18n="plusEmpty"></div>
<div class="plus-crawl plus-crawl--hidden" data-i18n="plusCrawl"></div>
<div class="plus-empty plus-empty--hidden" data-i18n="plusEmpty"></div>
<div class="plus-crawl plus-crawl--hidden" data-i18n="plusCrawl"></div>
</div>
</div>
<div class="footer">

@ -0,0 +1,3 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21.1454 9.02865C24.9235 9.02865 27.9849 12.0878 27.9849 15.8681C27.9849 19.6462 24.9257 22.7076 21.1454 22.7076C19.7417 22.7076 18.3742 22.2767 17.2222 21.4852C16.9342 21.2676 15.7097 20.3694 14.0905 19.4308C11.6798 18.0633 9.555 17.3081 7.75446 17.2014C8.22166 16.7684 8.691 16.3353 9.1582 15.8681C14.0179 11.4393 18.2654 9.02865 21.1454 9.02865ZM21.1454 6.40039C12.3966 6.40039 0.230195 21.3764 0.230195 21.3764C0.230195 21.3764 -0.130337 21.7732 0.0509963 21.9524C0.0872629 21.9929 0.123528 21.9929 0.193928 21.9929C0.373128 21.9929 0.66113 21.8116 0.66113 21.8116C0.66113 21.8116 3.8654 19.7593 7.3214 19.7593C10.7774 19.7593 15.6371 23.5375 15.6371 23.5375C17.1859 24.6532 19.0931 25.3017 21.1454 25.3017C26.3635 25.3017 30.6131 21.0543 30.6131 15.834C30.6131 10.6479 26.3657 6.40039 21.1454 6.40039Z" fill="#4065D9"/>
</svg>

After

Width:  |  Height:  |  Size: 937 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 493 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

@ -0,0 +1,4 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.9994 27.1184C9.87967 27.1184 4.8815 22.1213 4.8815 16C4.8815 9.87868 9.87848 4.91969 15.9994 4.91969C22.1203 4.91969 27.0792 9.91798 27.0792 16C27.0792 22.1594 22.1203 27.1184 15.9994 27.1184ZM31.9988 15.9607L28.3579 12.6678L29.8295 7.98035L25.0254 6.93472L23.9801 2.13055L19.2926 3.64183L15.9613 0L12.6681 3.64183L7.98065 2.16985L6.93411 6.97283L2.13119 8.01965L3.64207 12.7071L0 16.0381L3.64207 19.3322L2.16929 24.0196L6.9734 25.0653L8.01875 29.8694L12.7062 28.3582L16.0387 32L19.3307 28.3582L24.0182 29.8301L25.0647 25.026L29.8688 23.9422L28.3567 19.2536L32 15.9607H31.9988Z" fill="#F05514"/>
<path d="M8.98789 9.0271C9.90865 8.10587 11.0018 7.3751 12.205 6.87653C13.4081 6.37795 14.6977 6.12134 16 6.12134C17.3023 6.12134 18.5918 6.37795 19.795 6.87653C20.9981 7.3751 22.0913 8.10587 23.0121 9.0271C23.933 9.94761 24.6637 11.0406 25.1621 12.2437C25.6606 13.4468 25.9172 14.7363 25.9172 16.0386C25.9172 17.3409 25.6606 18.6305 25.1621 19.8336C24.6637 21.0366 23.933 22.1297 23.0121 23.0502C22.0913 23.9716 20.998 24.7025 19.7948 25.2012C18.5915 25.6999 17.3018 25.9565 15.9994 25.9565C14.6969 25.9565 13.4072 25.6999 12.204 25.2012C11.0007 24.7025 9.90748 23.9716 8.9867 23.0502C5.11365 19.1761 5.11365 12.8619 8.9867 9.0271" fill="#F05514"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

@ -0,0 +1,4 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.9777 3.26758C9.22319 3.26758 3.74805 8.96603 3.74805 15.998C3.74805 23.0299 9.22319 28.7284 15.9777 28.7284C22.7323 28.7284 28.2074 23.0299 28.2074 15.998C28.2074 8.96603 22.7323 3.26758 15.9777 3.26758ZM23.2778 15.9511L16.9572 22.2717C16.3254 22.8908 15.4761 23.2376 14.5916 23.2376C13.7071 23.2376 12.8578 22.8908 12.226 22.2717L8.67677 18.7237C8.05707 18.1032 7.70911 17.2621 7.70938 16.3852C7.70966 15.5082 8.05813 14.6673 8.67822 14.0472C9.29831 13.4271 10.1392 13.0786 11.0162 13.0783C11.8931 13.0781 12.7343 13.4261 13.3547 14.0457L14.5922 15.2818L18.6005 11.2734C18.9076 10.9661 19.2723 10.7222 19.6736 10.5558C20.075 10.3895 20.5052 10.3037 20.9397 10.3036C21.3743 10.3035 21.8045 10.3891 22.206 10.5553C22.6074 10.7215 22.9722 10.9652 23.2794 11.2725C23.5867 11.5797 23.8304 11.9445 23.9966 12.3459C24.1628 12.7474 24.2483 13.1777 24.2482 13.6121C24.2481 14.0467 24.1625 14.4769 23.9961 14.8783C23.8296 15.2797 23.5858 15.6443 23.2784 15.9514L23.2778 15.9511Z" fill="#00DD80"/>
<path d="M22.6076 11.8612C22.3788 11.6321 22.107 11.4504 21.8079 11.3264C21.5088 11.2025 21.1882 11.1387 20.8644 11.1387C20.5406 11.1387 20.22 11.2025 19.9209 11.3264C19.6218 11.4504 19.3501 11.6321 19.1212 11.8612L15.1447 15.8374L12.7557 18.2267C12.5267 18.4555 12.3449 18.7273 12.221 19.0264C12.097 19.3256 12.0332 19.6462 12.0332 19.9699C12.0332 20.2937 12.097 20.6143 12.221 20.9135C12.3449 21.2126 12.5267 21.4843 12.7557 21.7132L12.8376 21.795C13.0664 22.0241 13.3382 22.2059 13.6373 22.3298C13.9364 22.4538 14.2571 22.5176 14.5808 22.5176C14.9046 22.5176 15.2252 22.4538 15.5244 22.3298C15.8234 22.2059 16.0952 22.0241 16.3241 21.795L17.8378 20.2813L22.6893 15.4298C22.9183 15.201 23.1 14.9293 23.224 14.6301C23.3479 14.331 23.4117 14.0104 23.4117 13.6867C23.4117 13.3628 23.3479 13.0422 23.224 12.7431C23.1 12.444 22.9183 12.1723 22.6893 11.9434L22.6076 11.8612ZM14.5911 21.9087C14.2056 21.9088 13.8289 21.7947 13.5085 21.5807C13.188 21.3667 12.9381 21.0624 12.7905 20.7064C12.6429 20.3504 12.6043 19.9587 12.6794 19.5807C12.7544 19.2027 12.9399 18.8555 13.2123 18.5828C13.4847 18.3103 13.8318 18.1247 14.2098 18.0493C14.5877 17.9741 14.9795 18.0125 15.3356 18.1598C15.6917 18.3072 15.9961 18.5569 16.2102 18.8773C16.4244 19.1976 16.5389 19.5743 16.539 19.9596C16.5389 20.4763 16.3337 20.9719 15.9684 21.3373C15.6032 21.7028 15.1078 21.9083 14.5911 21.9087Z" fill="#00DD80"/>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 240 234"><defs><style>.cls-1{fill:#fa0f00;}.cls-2{fill:#fff;}</style></defs><title>ec_appicon_noshadowArtboard 1</title><rect class="cls-1" width="240" height="234" rx="42.5"/><path id="_256" data-name="256" class="cls-2" d="M186.617,175.95037H158.11058a6.24325,6.24325,0,0,1-5.84652-3.76911L121.31715,99.82211a1.36371,1.36371,0,0,0-2.61145-.034l-19.286,45.94252A1.63479,1.63479,0,0,0,100.92626,148h21.1992a3.26957,3.26957,0,0,1,3.01052,1.99409l9.2814,20.65452a3.81249,3.81249,0,0,1-3.5078,5.30176H53.734a3.51828,3.51828,0,0,1-3.2129-4.90437L99.61068,54.14376A6.639,6.639,0,0,1,105.843,50h28.31354a6.6281,6.6281,0,0,1,6.23289,4.14376L189.81885,171.046A3.51717,3.51717,0,0,1,186.617,175.95037Z"/></svg>

After

Width:  |  Height:  |  Size: 787 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 827 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 26 KiB

@ -0,0 +1,19 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16 0.817021C18.05 0.817021 20.0383 1.21838 21.9095 2.00987C23.7174 2.77454 25.3412 3.86948 26.7359 5.26414C28.1306 6.65879 29.2255 8.28262 29.9902 10.0905C30.7816 11.9617 31.183 13.95 31.183 16C31.183 18.0501 30.7816 20.0385 29.9901 21.9099C29.2255 23.7178 28.1305 25.3415 26.7359 26.7362C25.3413 28.1308 23.7174 29.2256 21.9095 29.9903C20.0383 30.7816 18.05 31.183 16 31.183C13.95 31.183 11.9617 30.7816 10.0905 29.9902C8.28262 29.2256 6.65879 28.1307 5.26414 26.7361C3.86948 25.3415 2.7746 23.7177 2.00994 21.9098C1.21838 20.0385 0.817021 18.0501 0.817021 16C0.817021 13.95 1.21838 11.9617 2.00987 10.0905C2.77454 8.28262 3.86948 6.65879 5.26414 5.26414C6.65879 3.86948 8.28262 2.7746 10.0905 2.00987C11.9617 1.21838 13.95 0.817021 16 0.817021ZM16 0C7.16371 0 0 7.16371 0 16C0 24.837 7.16371 32 16 32C24.8363 32 32 24.837 32 16C32 7.16371 24.8363 0 16 0Z" fill="url(#paint0_linear_2207_82)"/>
<path d="M15.8096 7.09807C15.8094 7.09793 15.8085 7.09779 15.8083 7.09766C13.0989 12.817 10.3891 18.5387 7.67969 24.2595C8.84074 24.2595 10.002 24.2595 11.1631 24.2595C13.3563 19.8297 15.5491 15.4008 17.7423 10.9724L15.8096 7.09807Z" fill="url(#paint1_linear_2207_82)"/>
<path d="M19.419 14.1934C18.3013 16.5155 17.1826 18.8381 16.0643 21.1616L16 21.2903H16.0643C17.1394 21.2903 18.2154 21.2903 19.2904 21.2903C19.7203 22.2787 20.1503 23.2686 20.5809 24.2585C21.8279 24.2585 23.0752 24.2585 24.3222 24.2585C22.6886 20.9031 21.0534 17.5472 19.419 14.1934Z" fill="url(#paint2_linear_2207_82)"/>
<defs>
<linearGradient id="paint0_linear_2207_82" x1="4.10961" y1="26.7063" x2="27.8904" y2="5.29401" gradientUnits="userSpaceOnUse">
<stop stop-color="#5437DC"/>
<stop offset="1" stop-color="#EE79FF"/>
</linearGradient>
<linearGradient id="paint1_linear_2207_82" x1="7.67976" y1="15.6786" x2="17.7424" y2="15.6786" gradientUnits="userSpaceOnUse">
<stop stop-color="#5437DC"/>
<stop offset="1" stop-color="#EE79FF"/>
</linearGradient>
<linearGradient id="paint2_linear_2207_82" x1="15.9999" y1="19.2259" x2="24.3221" y2="19.2259" gradientUnits="userSpaceOnUse">
<stop stop-color="#5437DC"/>
<stop offset="1" stop-color="#EE79FF"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

@ -0,0 +1,13 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1943_37)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M32 16.5C32 9.59644 26.4036 4 19.5 4C16.5159 4 13.7761 5.04565 11.6269 6.79053L4.52525 11.709C3.89077 12.1484 3.1407 12.387 2.43857 12.7075C0.999872 13.3641 0 14.8153 0 16.5C0 18.1921 1.00862 19.6486 2.45744 20.3011C3.14787 20.612 3.88273 20.8482 4.50384 21.2814L12.1662 26.6247C12.1664 26.6248 12.1667 26.6247 12.1667 26.6245C12.1667 26.6243 12.1669 26.6241 12.1671 26.6243C14.2269 28.1188 16.7605 29 19.5 29C26.4036 29 32 23.4036 32 16.5Z" fill="#F81466"/>
<path d="M29.3326 16.4994C29.3326 11.0686 24.9301 6.66602 19.4993 6.66602C14.0685 6.66602 9.66602 11.0686 9.66602 16.4994C9.66602 21.9302 14.0685 26.3327 19.4993 26.3327C24.9301 26.3327 29.3326 21.9302 29.3326 16.4994Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.4174 15.666C15.8776 15.666 16.2507 16.0391 16.2507 16.4993C16.2507 18.4323 17.8177 19.9993 19.7507 19.9993C21.6837 19.9993 23.2507 18.4323 23.2507 16.4993C23.2507 16.0391 23.6238 15.666 24.084 15.666C24.5443 15.666 24.9174 16.0391 24.9174 16.4993C24.9174 19.3528 22.6042 21.666 19.7507 21.666C16.8972 21.666 14.584 19.3528 14.584 16.4993C14.584 16.0391 14.9571 15.666 15.4174 15.666Z" fill="#F81466"/>
<path d="M6.66731 26.3326C6.66731 24.8599 5.47341 23.666 4.00065 23.666C2.52789 23.666 1.33398 24.8599 1.33398 26.3326C1.33398 27.8054 2.52789 28.9993 4.00065 28.9993C5.47341 28.9993 6.66731 27.8054 6.66731 26.3326Z" fill="#F81466"/>
</g>
<defs>
<clipPath id="clip0_1943_37">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

@ -0,0 +1,4 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0H8.92632V8.92622H0V0ZM11.4526 0H20.3789V8.92622H11.4526V0ZM23.0737 0H32V8.92622H23.0737V0ZM0 11.4525H8.92632V20.3787H0V11.4525ZM11.4526 11.4525H20.3789V20.3787H11.4526V11.4525ZM23.0737 11.4525H32V20.3787H23.0737V11.4525ZM0 23.0734H8.92632V31.9997H0V23.0734ZM11.4526 23.0734H20.3789V31.9997H11.4526V23.0734Z" fill="#3776B9"/>
<path d="M23.0742 23.0742H32.0005V32.0004H23.0742V23.0742Z" fill="#3776B9"/>
</svg>

After

Width:  |  Height:  |  Size: 518 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

@ -0,0 +1,3 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.5195 10.1816H16.518L10.4633 16.2829L11.1851 15.1745L10.239 14.2677L7.98361 16.1511L6.85023 15.7915L0.291016 21.7393H31.812L30.4022 20.7115L24.9035 15.9604L21.0015 18.2422L23.5339 16.4797L16.5195 10.1816ZM10.7964 17.1936L16.468 11.4434L18.9032 14.6444C18.9032 14.6444 17.7215 14.0127 17.499 14.0127C17.4841 14.0127 17.4731 14.0158 17.4675 14.022C17.3797 14.1197 15.304 16.6696 15.304 16.6696L15.1874 15.1629L14.774 16L14.7155 15.2458L10.7964 17.1936ZM9.83729 15.3877L9.12892 16.9223L8.88601 16.696L6.67016 19.1482C6.67016 19.1482 6.66405 18.8282 6.66085 18.7119C6.66085 18.6948 6.64543 18.6879 6.61954 18.6879C6.46786 18.6879 5.95091 18.9366 5.95091 18.9366L6.63845 17.5199L5.2152 17.8229L7.01517 16.4286L7.67932 17.1098L9.83729 15.3877ZM21.1822 18.9498L24.9727 16.7541L26.701 18.1438L25.6819 18.1732L24.9282 18.97L24.9096 17.9965L21.1984 18.9498H21.1822Z" fill="#1D57C7"/>
</svg>

After

Width:  |  Height:  |  Size: 989 B

@ -0,0 +1,13 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1840_34)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M32 6.14385C32 2.75296 29.3064 0 25.9901 0H6.00987C2.69362 0 0 2.75296 0 6.14385V25.8559C0 29.2459 2.69362 31.9997 6.00989 31.9997H25.9901C29.3064 31.9997 32 29.2459 32 25.8559L32 6.14385Z" fill="#0C3B7C"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.000976562 19.8799H15.983V31.9998H0.000988275L0.000976562 19.8799Z" fill="#0C3B7C"/>
<path d="M14.5432 21.1809L11.9659 21.1783V18.0272C11.9659 17.3539 12.2213 17.0035 12.7848 16.9234H14.5432C15.7972 16.9234 16.6084 17.7319 16.6084 19.0404C16.6084 20.3843 15.8178 21.1796 14.5432 21.1809H14.5432ZM11.9659 12.6817V11.8522C11.9659 11.1264 12.2662 10.7813 12.9247 10.7366H14.2441C15.3749 10.7366 16.0527 11.4283 16.0527 12.5872C16.0527 13.4691 15.588 14.4994 14.2852 14.4994H11.9659V12.6817ZM17.8342 15.8262L17.3683 15.5585L17.7752 15.2028C18.2488 14.7868 19.042 13.851 19.042 12.2367C19.042 9.76413 17.1668 8.16953 14.2647 8.16953H10.9532V8.16821H10.5758C9.71582 8.20103 9.02656 8.9163 9.01758 9.80088V23.8307H14.3301C17.5557 23.8307 19.6376 22.0353 19.6376 19.2543C19.6376 17.7568 18.965 16.4772 17.8342 15.8262Z" fill="white"/>
<path d="M21.0212 21.8927C21.0212 20.8209 21.8666 19.9539 22.9083 19.9539C23.9525 19.9539 24.8018 20.8209 24.8018 21.8927C24.8018 22.9631 23.9525 23.8315 22.9082 23.8315C21.8666 23.8315 21.0212 22.9631 21.0212 21.8927" fill="#00BAFC"/>
</g>
<defs>
<clipPath id="clip0_1840_34">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

@ -0,0 +1,3 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.80331 3.4668C5.00785 3.4668 3.67931 5.03826 3.73878 6.74253C3.79585 8.37986 3.72171 10.5004 3.18785 12.2297C2.65238 13.9641 1.74678 15.0628 0.267578 15.2039V16.7964C1.74678 16.9375 2.65238 18.0361 3.18785 19.7705C3.72171 21.4999 3.79585 23.6204 3.73878 25.2577C3.67931 26.9617 5.00785 28.5335 6.80358 28.5335H25.2009C26.9964 28.5335 28.3246 26.962 28.2652 25.2577C28.2081 23.6204 28.2822 21.4999 28.8161 19.7705C29.3518 18.0361 30.255 16.9375 31.7342 16.7964V15.2039C30.255 15.0628 29.3518 13.9641 28.8161 12.2297C28.2822 10.5007 28.2081 8.37986 28.2652 6.74253C28.3246 5.03853 26.9964 3.4668 25.2009 3.4668H6.80304H6.80331ZM21.6009 18.8969C21.6009 21.2436 19.8505 22.6668 16.9457 22.6668H12.0009C11.8595 22.6668 11.7238 22.6106 11.6238 22.5106C11.5238 22.4106 11.4676 22.2749 11.4676 22.1335V9.8668C11.4676 9.72536 11.5238 9.5897 11.6238 9.48968C11.7238 9.38965 11.8595 9.33346 12.0009 9.33346H16.9174C19.3396 9.33346 20.9292 10.6455 20.9292 12.6599C20.9292 14.0737 19.8598 15.3396 18.4974 15.5612V15.6351C20.3521 15.8385 21.6009 17.1228 21.6009 18.8969ZM16.4065 11.0241H13.587V15.0065H15.9617C17.7974 15.0065 18.8097 14.2673 18.8097 12.946C18.8097 11.7079 17.9393 11.0241 16.4065 11.0241ZM13.587 16.5868V20.9756H16.5102C18.4214 20.9756 19.434 20.2087 19.434 18.7673C19.434 17.3257 18.3932 16.5865 16.3873 16.5865L13.587 16.5868Z" fill="#7611F2"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

@ -0,0 +1,12 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2212_34)">
<path d="M31.625 16.0044C31.6238 20.1477 29.9771 24.1208 27.047 27.0501C24.1169 29.9794 20.1432 31.625 16 31.625C11.8568 31.625 7.88315 29.9794 4.95302 27.0501C2.02289 24.1208 0.376173 20.1477 0.375001 16.0044C0.37442 13.9521 0.778144 11.9199 1.56311 10.0236C2.34808 8.12741 3.49892 6.4044 4.94989 4.95302C6.40087 3.50163 8.12355 2.35031 10.0196 1.5648C11.9156 0.779298 13.9477 0.375 16 0.375C18.0523 0.375 20.0844 0.779298 21.9804 1.5648C23.8765 2.35031 25.5991 3.50163 27.0501 4.95302C28.5011 6.4044 29.6519 8.12741 30.4369 10.0236C31.2219 11.9199 31.6256 13.9521 31.625 16.0044V16.0044Z" fill="white"/>
<path d="M14.6569 0.0204385C10.4698 0.452251 6.80835 2.26119 4.15713 5.20802C1.90886 7.6997 0.612447 10.4948 0.104395 13.9026C-0.0357569 14.8713 -0.0357569 17.1179 0.110235 18.104C0.618287 21.6169 2.08989 24.6337 4.48999 27.1079C8.68288 31.426 14.7386 33.0249 20.5316 31.3443C23.1478 30.5858 25.542 29.1328 27.51 27.1079C29.9218 24.6221 31.4051 21.5702 31.8956 18.0749C32.0358 17.0654 32.0358 14.8771 31.8898 13.9026C31.3584 10.2556 29.84 7.19202 27.329 4.68284C24.8471 2.20284 21.8222 0.685663 18.2483 0.131309C17.6585 0.0379444 15.2116 -0.0379145 14.6569 0.0204385ZM18.2249 0.854887C24.2515 1.75936 29.1626 6.11249 30.7744 11.977C32.0942 16.7853 30.9321 22.0079 27.691 25.865C25.1917 28.8293 21.536 30.7725 17.6526 31.1985C16.9227 31.2802 15.0773 31.2802 14.3474 31.1985C13.5298 31.1109 12.3736 30.8775 11.6144 30.6441C4.18633 28.3975 -0.368619 21.0567 0.910271 13.4183C1.1497 11.9653 1.58183 10.6524 2.27676 9.23438C4.08706 5.5523 7.29888 2.7572 11.1998 1.47343C12.4436 1.06496 13.3838 0.878228 14.9489 0.720675C15.5095 0.662322 17.495 0.744016 18.2249 0.854887Z" fill="#D84800"/>
<path d="M15.0071 2.31978C9.4828 2.72826 4.71762 6.42784 2.98324 11.6563C2.2124 13.9962 2.08393 16.6104 2.63286 19.0554C3.72488 23.9337 7.60243 27.9601 12.4318 29.2264C13.7925 29.5823 14.3998 29.6523 15.9999 29.6523C17.6 29.6523 18.2073 29.5823 19.5679 29.2264C22.7681 28.3861 25.6295 26.3087 27.4924 23.4728C28.6194 21.7572 29.3319 19.8024 29.6122 17.6666C29.729 16.7563 29.6998 14.6731 29.5538 13.8153C29.3085 12.409 28.9231 11.2011 28.2982 9.93485C25.8397 4.934 20.5607 1.91131 15.0071 2.31978ZM19.7957 5.18492C21.3724 5.46501 22.7856 6.70793 23.3462 8.31848C23.498 8.76196 23.5272 8.92535 23.5506 9.61391C23.5739 10.285 23.5564 10.4834 23.4513 10.8977C23.0893 12.3565 22.0673 13.5644 20.7242 14.1246C20.3563 14.2822 19.9417 14.4047 19.9417 14.3638C19.9417 14.3522 20.0293 14.1596 20.1402 13.9437C20.9461 12.3448 20.9461 10.3842 20.1402 8.79114C19.4978 7.50737 18.1898 6.38699 16.8466 5.97268C16.6714 5.91433 16.4846 5.85598 16.4379 5.83847C16.3152 5.79762 16.8875 5.51169 17.4598 5.32497C18.1956 5.08572 18.9489 5.03904 19.7957 5.18492ZM16.2335 6.84798C18.0438 7.33814 19.3927 8.79114 19.7081 10.5884C19.8132 11.1778 19.7548 12.2106 19.5913 12.7358C19.1533 14.1129 18.3066 15.0758 17.0043 15.6826C16.3678 15.9802 15.8247 16.0911 15.048 16.0911C12.9749 16.0911 11.2522 14.8248 10.5807 12.8058C10.4171 12.3157 10.3996 12.199 10.3996 11.452C10.3938 10.7635 10.4171 10.5651 10.5281 10.1683C11.0478 8.38266 12.4844 7.08723 14.3239 6.75461C14.7152 6.67876 15.8247 6.73711 16.2335 6.84798ZM23.5331 14.8657C25.2908 15.42 26.3595 16.7622 26.8325 19.0088C26.9551 19.6098 27.1069 21.2728 27.0486 21.4246C27.0135 21.5063 26.8734 21.5179 25.9857 21.5179C25.4251 21.5179 24.9638 21.5004 24.9638 21.4829C24.9638 21.2378 24.7477 20.1058 24.6134 19.6565C24.0353 17.7075 22.7739 16.237 21.3023 15.7993C21.1622 15.7585 21.0512 15.7001 21.0512 15.6768C21.0512 15.6476 21.2381 15.4142 21.4717 15.1516L21.8921 14.6731L22.5111 14.7081C22.9024 14.7256 23.2703 14.784 23.5331 14.8657ZM13.5881 17.8417L15.0947 19.3297L15.632 18.8045C15.9298 18.5186 16.7006 17.7658 17.343 17.1356L18.5109 15.9861L18.9489 16.0386C20.1577 16.1903 21.3081 16.7155 22.1432 17.5091C23.136 18.4486 23.7024 19.6156 23.9418 21.197C24.0294 21.7805 24.0645 23.4961 23.9944 23.8462L23.9594 24.0271H15.0889C8.81708 24.0271 6.21258 24.0096 6.18922 23.9629C6.10747 23.8404 6.08411 22.2298 6.15419 21.588C6.49873 18.3143 8.27983 16.3595 11.2113 16.0444C11.7778 15.9861 11.5325 15.8052 13.5881 17.8417Z" fill="#D84800"/>
</g>
<defs>
<clipPath id="clip0_2212_34">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

@ -0,0 +1,7 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="32" height="32" fill="#0F3749"/>
<path d="M24.6591 9.49638C24.6058 9.56675 24.5696 9.64857 24.5535 9.73536C24.5373 9.82214 24.5416 9.9115 24.5661 9.99633C24.5925 10.0568 24.6236 10.1151 24.6591 10.1707C24.8404 10.4141 25.0604 10.6262 25.3102 10.7986L25.7985 11.2753C25.8334 11.3334 25.8682 11.3799 25.9031 11.438C26.0803 11.7499 26.1735 12.1025 26.1735 12.4612C26.1735 12.8199 26.0803 13.1724 25.9031 13.4843C25.8728 13.5525 25.8379 13.6185 25.7985 13.6819L25.7171 13.8098L25.7985 13.7517L25.8915 13.6587C26.1915 13.438 26.4446 13.1599 26.6362 12.8405C26.8278 12.5212 26.9541 12.167 27.0077 11.7984C27.0706 11.3359 26.9987 10.865 26.8008 10.4423C26.6028 10.0195 26.2871 9.66283 25.8915 9.415L25.7869 9.35686C25.677 9.31116 25.5644 9.27233 25.4497 9.24059C25.3079 9.19339 25.1547 9.19274 25.0124 9.23876C24.8702 9.28478 24.7464 9.37504 24.6591 9.49638V9.49638Z" fill="white"/>
<path d="M20.5317 17.0885C20.4599 17.0651 20.3825 17.0651 20.3108 17.0885L19.9736 17.2397C19.8246 17.3354 19.6845 17.4444 19.555 17.5652C19.2917 17.8103 19.0469 18.0746 18.8226 18.3558L18.2529 19.1116V21.4717C18.3257 21.546 18.4209 21.5943 18.5239 21.609C18.6269 21.6237 18.7319 21.6041 18.8226 21.5531L19.09 21.3206C19.1702 21.2207 19.2439 21.1159 19.3109 21.0067C19.3923 20.8788 19.4737 20.7393 19.555 20.6114C19.8329 20.1488 20.0852 19.6714 20.3108 19.1813L20.5317 18.6349C20.8572 17.728 20.834 17.1815 20.5317 17.0885Z" fill="white"/>
<path d="M18.4879 3.01985C16.6552 3.17178 14.8791 3.72847 13.2875 4.64977C11.696 5.57108 10.3287 6.83406 9.28427 8.34764C8.23982 9.86122 7.54424 11.5877 7.24767 13.4026C6.95109 15.2175 7.06092 17.0756 7.56923 18.8429C7.68462 19.2458 7.91017 19.6085 8.2205 19.8903C8.85309 20.5195 9.60589 21.0148 10.434 21.3469C11.0029 21.5033 11.5908 21.5795 12.1807 21.5735C12.3353 21.5798 12.4893 21.5511 12.6312 21.4895C12.7731 21.428 12.8993 21.3352 13.0003 21.218L18.2878 15.0876L18.7877 14.5063C18.8109 14.4821 18.8304 14.4547 18.8459 14.4249L18.8575 14.4017L18.9389 14.0296C18.9324 13.8754 18.905 13.7229 18.8575 13.5761L18.8459 13.5413C18.7155 13.1975 18.5267 12.8789 18.2878 12.5995C17.5321 11.6926 16.2648 11.0764 15.3346 12.2274C14.951 12.6576 9.93992 18.25 9.91667 18.1802C9.69483 17.3922 9.5699 16.5801 9.54463 15.7619C9.46114 13.1803 10.3584 10.6629 12.056 8.71621C13.7864 6.7349 16.2329 5.52207 18.8575 5.34451L20.3457 5.35614C21.8879 5.48192 23.3782 5.97204 24.694 6.7862L24.8103 6.85597C24.9382 6.93735 25.066 7.01873 25.194 7.11174C25.066 7.10011 24.9382 7.10011 24.8103 7.10011H24.694C23.7885 7.14472 22.9162 7.45526 22.1863 7.99292C21.4563 8.53057 20.901 9.27147 20.5898 10.123L20.5666 10.1811L20.3457 11.0997L20.334 11.2043C20.2932 11.5714 20.2932 11.9418 20.334 12.3089L20.3457 12.4135C20.3917 12.7257 20.4656 13.0331 20.5666 13.332C20.6584 13.5757 20.7671 13.8127 20.8921 14.0412L20.5666 14.4016L20.3457 14.6458L20.334 14.6574C20.0899 14.9248 19.8457 15.2039 19.5899 15.4945L18.8575 16.3316L18.8458 16.3433C18.6714 16.5293 18.4854 16.7502 18.2878 16.9827C17.0542 18.4236 15.2198 20.5947 14.1609 21.889C13.9325 22.1684 13.7875 22.5066 13.7428 22.8647L13.6044 23.9633L13.4316 25.3469C13.3985 25.5988 13.4447 25.8547 13.564 26.0791C13.6832 26.3034 13.8694 26.485 14.0967 26.5985C15.8181 27.4333 17.7089 27.8596 19.6219 27.8443C21.535 27.829 23.4187 27.3724 25.1265 26.5101C26.8342 25.6479 28.32 24.4031 29.4681 22.8729C30.6163 21.3426 31.3958 19.568 31.7461 17.6872C32.0964 15.8064 32.0079 13.8702 31.4876 12.0292C30.9673 10.1882 30.0292 8.49206 28.7464 7.07283C27.4635 5.6536 25.8704 4.54954 24.0911 3.84657C22.3118 3.1436 20.3943 2.86069 18.4879 3.01985V3.01985ZM22.1013 9.95977C22.3795 9.52982 22.7572 9.17325 23.2024 8.92027C23.6477 8.66728 24.1474 8.52534 24.6591 8.50646H24.7754C25.1236 8.49698 25.4705 8.55217 25.7985 8.66924L25.9032 8.71574C26.1267 8.80727 26.3408 8.92018 26.5426 9.0529C27.2527 9.54067 27.7439 10.2868 27.9112 11.132C28.0785 11.9771 27.9086 12.8541 27.4379 13.5756C27.0713 14.1427 26.5338 14.5784 25.9032 14.8197L25.7985 14.8546L24.7754 15.0289H24.6591C24.0647 15.006 23.4887 14.8166 22.9965 14.4825C22.2864 13.9947 21.7952 13.2486 21.6279 12.4034C21.4606 11.5583 21.6305 10.6813 22.1013 9.95977V9.95977ZM18.1715 22.935C17.5553 23.8884 16.7763 23.6442 16.4043 22.842C16.2234 22.5222 16.1178 22.1654 16.0956 21.7987C16.0735 21.4321 16.1353 21.0651 16.2764 20.726C16.8816 19.7776 17.5416 18.8653 18.2529 17.9937C18.4505 17.7496 18.6366 17.5403 18.811 17.3543L18.8226 17.3426L19.5434 16.6334C19.7729 16.434 20.0223 16.2587 20.2875 16.1103L20.2992 16.0986L20.5201 16.0056C21.9036 15.5057 21.892 17.7612 20.5201 20.5981C20.4503 20.7492 20.3806 20.8887 20.2992 21.0399L20.2875 21.0632C20.0666 21.4817 19.8225 21.9119 19.5434 22.3421C19.4566 22.5236 19.334 22.6857 19.183 22.8188L18.811 23.0164C18.5951 23.0695 18.3672 23.0404 18.1715 22.935V22.935ZM26.9379 22.1444C26.6227 22.5178 26.2765 22.8639 25.9032 23.1792L25.7985 23.2722L24.7754 24.0163L24.6591 24.086C24.3231 24.2986 23.9736 24.4889 23.6127 24.6558C22.5707 25.135 21.4535 25.4301 20.3108 25.5277L19.5551 25.5626C19.3923 25.5626 19.2179 25.5626 19.0551 25.551C19.2328 25.4125 19.3999 25.2609 19.5551 25.0976C19.6726 24.9735 19.7814 24.8414 19.8806 24.7022C20.0228 24.6849 20.163 24.6537 20.2991 24.6092H20.3108L20.5317 24.5278C21.6362 24.0279 22.2873 22.6792 22.8337 21.4235C23.2756 20.4121 23.9499 18.017 24.3568 16.6799C24.3917 16.5637 24.4266 16.459 24.4498 16.366C24.5191 16.3757 24.5891 16.3796 24.6591 16.3776H24.7754C25.1191 16.378 25.462 16.3429 25.7985 16.273L25.9031 16.2497C26.6737 16.0581 27.3816 15.6705 27.9581 15.1245C28.5346 14.5785 28.9602 13.8928 29.1935 13.1338C29.3124 13.6422 29.3901 14.1593 29.426 14.6802C29.5082 15.7771 29.414 16.8801 29.147 17.9472C28.7554 19.5022 27.998 20.9412 26.9379 22.1444V22.1444Z" fill="white"/>
<path d="M1.16743 24.1241C1.77128 24.0704 2.40196 23.3995 2.91187 23.3592C2.80452 24.8756 1.22111 25.8417 0 26.2979C0.730793 26.874 1.61335 27.2252 2.54016 27.3085C3.46696 27.3919 4.39802 27.204 5.21991 26.7676C5.23792 27.0515 5.19206 27.3358 5.08572 27.5996C7.44742 27.5325 9.39315 26.1772 9.80913 22.6212C7.44742 23.7082 6.74965 20.3535 5.67614 21.8966C4.50871 23.574 3.73043 22.9165 3.70358 22.1918C3.71181 21.8437 3.82514 21.5061 4.0287 21.2235C4.23227 20.9409 4.51654 20.7265 4.84418 20.6084C5.42219 20.4388 6.01546 20.3265 6.61546 20.273C6.52153 20.0448 6.45443 19.8167 6.37392 19.5752C2.81795 19.0116 1.81154 22.0442 1.48949 23.319C1.40858 23.5972 1.30072 23.8669 1.16743 24.1241V24.1241Z" fill="#FFCD05"/>
</svg>

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 944 B

@ -0,0 +1,10 @@
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1_2)">
<path d="M21.8 19.7L25.5 23.6C23 26.1 19.6 27.6 15.7 27.6C8.1 27.6 2 21.4 2 13.8C2 6.2 8.2 0 15.8 0C19.6 0 23.1 1.6 25.6 4.1L21.5 7.7C20 6.3 18 5.4 15.8 5.4C11.2 5.4 7.4 9.2 7.4 13.8C7.4 18.4 11.2 22.2 15.8 22.2C18.2 22.2 20.3 21.2 21.8 19.7Z" fill="#0068B6"/>
</g>
<defs>
<clipPath id="clip0_1_2">
<rect width="27.6" height="27.6" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 502 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 685 B

@ -0,0 +1,30 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.4588 28.7351C13.3467 29.7757 12.7982 30.7603 11.8727 31.3838C11.2609 31.7973 10.5697 31.9952 9.88556 31.9952C8.7203 31.9952 7.57625 31.4205 6.88312 30.3594C6.82996 30.2783 6.78038 30.1957 6.73438 30.1119C6.78124 30.1979 6.83181 30.2825 6.8862 30.3658C7.57921 31.4254 8.72178 31.9996 9.88605 31.9996C10.5698 31.9996 11.261 31.8017 11.8734 31.3881C12.7941 30.7663 13.3431 29.7888 13.4574 28.7511C13.458 28.7456 13.4584 28.7403 13.4588 28.7351ZM10.1052 24.6899C10.1396 24.6931 10.174 24.6956 10.2083 24.6981C10.1742 24.6948 10.1396 24.692 10.1052 24.6899ZM22.6013 20.4452C21.8734 20.9648 21.334 21.7553 21.1454 22.7105C20.9899 23.4949 21.094 24.2715 21.3969 24.9468C21.9453 24.5531 22.354 24.0303 22.6095 23.4464C22.6185 23.3853 22.6291 23.3241 22.6414 23.2629C22.6949 22.9918 22.7765 22.7342 22.8826 22.4921C22.9823 21.811 22.8942 21.0998 22.6013 20.4452ZM18.2032 18.4785C17.9019 18.5793 17.6086 18.7228 17.3317 18.9102C16.4045 19.5343 15.8577 20.5206 15.7456 21.5627C15.7433 21.623 15.7369 21.6836 15.7333 21.7416C15.7301 21.7573 15.7312 21.773 15.729 21.7887C15.6179 22.8308 15.0679 23.8171 14.1417 24.4434C13.5304 24.8567 12.8399 25.055 12.1566 25.055C11.7937 25.055 11.4325 24.999 11.0866 24.8895C11.7946 25.1453 12.4304 25.6274 12.878 26.3133C13.3166 26.9839 13.509 27.7485 13.4767 28.4962C13.4769 28.4938 13.4772 28.4916 13.4774 28.4893C13.5938 27.4515 14.1406 26.4719 15.0624 25.8501C15.6729 25.4368 16.3626 25.2396 17.0453 25.2396C17.0607 25.2396 17.0762 25.2397 17.0915 25.2398C17.2346 25.134 17.3852 25.039 17.542 24.9556H17.5408C18.5252 24.4771 19.2831 23.5465 19.5152 22.377C19.7352 21.2766 19.4415 20.1896 18.8016 19.371C18.7607 19.3196 18.7211 19.2703 18.678 19.2213C18.6616 19.2034 18.6474 19.1877 18.6342 19.1743C18.4654 18.9597 18.3208 18.7261 18.2032 18.4785Z" fill="#36A9E1"/>
<path d="M10.4919 10.1794C10.2405 10.4315 10.0316 10.7161 9.86719 11.0218C10.112 10.776 10.3234 10.4931 10.4919 10.1794ZM13.019 9.12039C12.87 9.12039 12.7206 9.12979 12.5718 9.14885C12.54 9.25693 12.5128 9.36739 12.4905 9.48024C12.2706 10.5873 12.5676 11.6809 13.2143 12.4995C13.2231 12.5129 13.2341 12.5218 13.243 12.5331C13.2825 12.5801 13.3189 12.627 13.3596 12.6695C14.0063 13.4881 14.3045 14.5772 14.0834 15.6865C14.0392 15.9102 13.9756 16.125 13.895 16.3295C14.2832 16.2312 14.6617 16.065 15.0139 15.8274C15.7008 15.3641 16.18 14.7022 16.4274 13.9655C14.5608 13.5018 13.3737 11.6205 13.7555 9.68825C13.7869 9.52939 13.8279 9.37517 13.878 9.22583C13.5973 9.156 13.3087 9.12039 13.019 9.12039ZM18.905 5.851C18.8976 5.90052 18.8913 5.95018 18.8859 5.99995C18.8836 6.06026 18.8803 6.12296 18.8749 6.18113C18.8717 6.19455 18.8704 6.21022 18.8682 6.22815C18.8389 6.50513 18.7783 6.77859 18.6879 7.0424C19.5091 7.39535 20.1555 8.04196 20.5269 8.82937L20.5315 8.82699C20.7314 9.21693 20.9997 9.56876 21.3235 9.86304C21.3467 9.87081 21.3698 9.87871 21.3927 9.88698L21.3915 9.8846C21.7397 9.99532 22.1033 10.052 22.4691 10.052C23.0749 10.052 23.6864 9.89664 24.2427 9.57415C24.1342 9.58431 24.0244 9.58957 23.914 9.58957C23.6776 9.58957 23.4372 9.56575 23.1965 9.51635C22.0923 9.29041 21.2077 8.57033 20.7227 7.62857H20.7217C20.3538 6.8473 19.7155 6.20521 18.905 5.851ZM22.1335 2.75C21.558 2.80341 20.987 2.99889 20.472 3.34733C20.1937 3.53541 19.9497 3.75558 19.7414 3.99995C20.3851 3.90541 20.9857 3.63396 21.4831 3.22721C21.4965 3.22044 21.5073 3.20928 21.5163 3.2005C21.5645 3.16239 21.6086 3.12214 21.6526 3.08189C21.8037 2.95851 21.9646 2.84742 22.1335 2.75Z" fill="#36A9E1"/>
<path d="M3.71875 14.0908C4.14228 14.2829 4.59874 14.3901 5.06112 14.407C5.04743 14.4052 5.03361 14.4037 5.01992 14.4021C5.00327 14.4021 4.98909 14.4 4.97577 14.4C4.91657 14.3909 4.85712 14.3886 4.7978 14.3864C4.42619 14.3452 4.06174 14.2458 3.71875 14.0908ZM8.76236 11.145C8.7372 11.3799 8.68997 11.6117 8.62115 11.8371C8.61498 11.8549 8.60881 11.8729 8.60302 11.8908C8.60425 11.8899 8.60561 11.889 8.60684 11.8883C8.68244 11.6522 8.73449 11.4089 8.76199 11.1624C8.76199 11.1565 8.76212 11.1506 8.76236 11.145ZM10.184 6.19234C9.97387 6.44072 9.72733 6.66441 9.44625 6.85474C8.83291 7.267 8.14298 7.46386 7.45996 7.46386C7.0944 7.46386 6.73069 7.40743 6.38165 7.29747V7.29873C7.09292 7.55326 7.73179 8.03623 8.18134 8.72359C8.62312 9.39878 8.81454 10.1691 8.77963 10.9207C8.78037 10.9132 8.78111 10.9056 8.78197 10.8981C8.89643 9.86032 9.44415 8.88308 10.366 8.2613C10.54 8.14394 10.7202 8.04388 10.9047 7.96075C10.8229 7.31039 10.5696 6.70152 10.184 6.19234ZM17.468 5.55075C16.6456 5.55075 15.868 5.83926 15.2458 6.33891C14.9789 6.59143 14.6757 6.80133 14.3477 6.96132H14.3499C13.961 7.16833 13.6106 7.44655 13.3184 7.78258C13.3984 7.80515 13.4775 7.8306 13.5557 7.85882C13.8787 7.96075 14.2152 8.01667 14.5541 8.02407C15.2258 7.23152 16.2164 6.75155 17.2782 6.75167C17.3036 6.75167 17.3289 6.75193 17.3543 6.75255C17.6476 6.40674 17.87 6.01266 18.0166 5.5935C17.8323 5.56466 17.6492 5.55075 17.468 5.55075ZM14.939 0.720703C15.4102 1.07667 15.7868 1.54423 16.0384 2.07723V2.07498C16.4785 2.92546 17.2396 3.59451 18.1946 3.88201C18.1249 3.34838 17.9375 2.82201 17.6245 2.34342C16.9934 1.37696 15.9913 0.814616 14.939 0.720703Z" fill="#95C11F"/>
<path d="M13.3731 17.2432C12.7017 18.0993 11.6703 18.6239 10.5611 18.6239C10.3252 18.6239 10.0858 18.6002 9.84555 18.5508C9.22394 18.4231 8.67239 18.1393 8.2221 17.7477C8.25812 18.2154 8.20483 18.6852 8.06793 19.1301L8.07114 19.1322C7.70928 20.1768 7.81929 21.3777 8.46828 22.3708C9.16129 23.4305 10.3045 24.0055 11.469 24.0055C12.1526 24.0055 12.8437 23.8074 13.4557 23.3929C15.1121 22.2747 15.5632 20.0047 14.463 18.3205C14.17 17.8722 13.7956 17.5109 13.3731 17.2432ZM7.13689 13.827C6.53564 14.2207 5.86063 14.4094 5.19253 14.4094C5.14912 14.4094 5.1057 14.4086 5.06241 14.407C5.75703 14.4924 6.42426 14.782 6.97051 15.2562C6.94436 14.9238 6.96286 14.5823 7.03082 14.239C7.05857 14.0981 7.09421 13.9606 7.13689 13.827ZM8.78068 10.9207C8.77488 10.9781 8.76921 11.0357 8.76526 11.095C8.76526 11.1117 8.76415 11.1282 8.76354 11.1448C8.77155 11.0704 8.77723 10.9956 8.78068 10.9207ZM5.1818 7.08984C4.49779 7.08984 3.8065 7.2877 3.1939 7.70147C1.53852 8.81964 1.08749 11.092 2.1875 12.7716C2.57958 13.3733 3.11657 13.818 3.71992 14.0907C3.11793 13.8176 2.58217 13.3728 2.19083 12.7724C1.08971 11.0927 1.54185 8.82265 3.19723 7.70448C3.80897 7.28983 4.49989 7.09198 5.1839 7.09198C5.59213 7.09198 5.99802 7.16244 6.38282 7.29961V7.29873C5.99753 7.16081 5.59102 7.08984 5.1818 7.08984Z" fill="#662483"/>
<path d="M5.18493 7.0918C4.50092 7.0918 3.81 7.28965 3.19827 7.7043C1.543 8.82247 1.09074 11.0927 2.19186 12.7722C2.5832 13.3728 3.11896 13.8174 3.72096 14.0905C4.06395 14.2455 4.4284 14.3449 4.8 14.3863C4.85933 14.3884 4.91877 14.3908 4.97798 14.3998C4.9913 14.3998 5.00548 14.4019 5.02213 14.4019C5.03594 14.4034 5.04963 14.4051 5.06332 14.4068C5.10674 14.4085 5.15003 14.4092 5.19344 14.4092C5.86154 14.4092 6.53654 14.2205 7.1378 13.8268C7.39964 13.0075 7.92985 12.3346 8.6051 11.8904C8.61102 11.8724 8.61706 11.8545 8.62323 11.8367C8.69193 11.6114 8.73916 11.3796 8.76445 11.1446C8.76494 11.128 8.76617 11.1114 8.76617 11.0948C8.77024 11.0355 8.77579 10.9778 8.78159 10.9205C8.81649 10.169 8.62496 9.39861 8.1833 8.72342C7.73375 8.03606 7.09488 7.55308 6.38361 7.29856V7.29943C5.99893 7.16226 5.59316 7.0918 5.18493 7.0918Z" fill="#3C1B10"/>
<path d="M13.4751 28.4977C13.4687 28.5582 13.4635 28.6228 13.4581 28.6854C13.4581 28.7024 13.4581 28.7194 13.4571 28.7365C13.4656 28.6571 13.4717 28.5776 13.4751 28.4977ZM10.2068 24.6995C10.5028 24.7273 10.7945 24.792 11.0746 24.8922V24.8878C11.078 24.8889 11.0815 24.8901 11.0849 24.8911C10.8257 24.7974 10.5567 24.7342 10.2836 24.7024C10.2617 24.7024 10.2385 24.7024 10.2165 24.7001C10.2133 24.7 10.2101 24.6997 10.2068 24.6995ZM3.59621 15.082C2.91245 15.082 2.22116 15.2799 1.60819 15.6937C-0.0485524 16.8096 -0.497241 19.0819 0.600554 20.7638C1.21648 21.7076 2.18675 22.2645 3.2119 22.3764C3.27135 22.3808 3.33067 22.383 3.39024 22.392C3.40443 22.392 3.41984 22.392 3.43415 22.3943C4.4593 22.5084 5.42944 23.0654 6.0455 24.0091C6.67031 24.9618 6.79352 26.1068 6.48222 27.1247L6.48321 27.1223C6.15206 28.0832 6.21755 29.1743 6.73271 30.1133C5.83201 28.4613 6.31634 26.3557 7.88897 25.2971C8.50058 24.8815 9.19174 24.6838 9.87489 24.6838C9.95136 24.6838 10.0276 24.6863 10.1036 24.6912C10.0774 24.6887 10.0514 24.6859 10.0252 24.6822C9.0044 24.5658 8.04301 24.009 7.4314 23.0718C6.78032 22.0765 6.6724 20.8755 7.03426 19.8288H7.03328C7.34457 18.8156 7.22025 17.6705 6.59557 16.7155C5.90255 15.6562 4.76048 15.082 3.59621 15.082Z" fill="#BE1622"/>
<path d="M9.87345 24.6836C9.19031 24.6836 8.49914 24.8812 7.88753 25.2968C6.3149 26.3555 5.83069 28.4609 6.73128 30.1131C6.77728 30.1969 6.82674 30.2795 6.88002 30.3606C7.57315 31.4219 8.7172 31.9964 9.88246 31.9964C10.5665 31.9964 11.2576 31.7985 11.8696 31.385C12.795 30.7615 13.3436 29.7769 13.4557 28.7363C13.4567 28.7192 13.4567 28.7022 13.4567 28.6852C13.4621 28.6225 13.4673 28.558 13.4737 28.4975C13.506 27.7499 13.3136 26.9853 12.875 26.3146C12.4274 25.6286 11.7917 25.1465 11.0836 24.8909C11.0802 24.8897 11.0767 24.8886 11.0732 24.8876V24.892C10.7932 24.7918 10.5015 24.7271 10.2055 24.6993C10.1711 24.6968 10.1366 24.6943 10.1024 24.6911C10.0261 24.686 9.9498 24.6836 9.87345 24.6836Z" fill="#280F1E"/>
<path d="M6.96875 15.2568C7.04546 16.2309 7.50488 17.126 8.22046 17.7484C8.17434 17.1488 7.98169 16.5528 7.63068 16.0174C7.44099 15.7268 7.21739 15.4727 6.96875 15.2568ZM9.8671 11.0219C9.58059 11.3098 9.24808 11.5469 8.88486 11.7233C8.78965 11.7742 8.69678 11.8294 8.6065 11.8886C8.59392 11.9277 8.58072 11.967 8.56679 12.0057C8.26992 13.0114 8.40029 14.1381 9.01461 15.0804C9.62622 16.0174 10.5909 16.5744 11.6084 16.6907C11.6733 16.6997 11.7383 16.7041 11.8021 16.7086C11.8229 16.7086 11.8482 16.7086 11.8679 16.711C12.3975 16.7727 12.9129 16.9532 13.3715 17.2439C13.5857 16.9707 13.7632 16.664 13.8949 16.3296C13.609 16.402 13.3179 16.4375 13.0279 16.4375C11.8631 16.4375 10.7198 15.864 10.0264 14.8054C9.26091 13.6331 9.24673 12.1757 9.8671 11.0219ZM12.3538 7.64898C11.864 7.64898 11.3702 7.75104 10.904 7.96131C10.9523 8.34599 10.9405 8.74521 10.8603 9.14694C10.7872 9.51783 10.6611 9.86426 10.4918 10.1795C10.6546 10.016 10.8351 9.86627 11.033 9.73286C11.5119 9.40874 12.0383 9.21703 12.5717 9.14882C12.7241 8.63061 12.9828 8.1687 13.318 7.78301C13.0045 7.69424 12.68 7.64898 12.3538 7.64898ZM10.1202 6.11077C10.1286 6.12155 10.1371 6.13233 10.1455 6.14324C10.1583 6.15967 10.1711 6.17622 10.1837 6.19277C10.1855 6.19064 10.1873 6.18838 10.1891 6.18625C10.1657 6.16142 10.1427 6.13635 10.1202 6.11077ZM9.35316 2.58008C9.31752 2.69744 9.28743 2.81756 9.26313 2.94043C9.04544 4.0408 9.33799 5.12776 9.97723 5.94187C9.98204 5.94702 9.98698 5.95241 9.99203 5.95805C9.34293 5.14055 9.04372 4.04619 9.26449 2.93654C9.28829 2.81505 9.31801 2.69618 9.35316 2.58008Z" fill="#36A9E1"/>
<path d="M12.5724 9.14844C12.039 9.21665 11.5126 9.40836 11.0337 9.73248C10.8359 9.86576 10.6554 10.0156 10.4925 10.1791C10.324 10.4927 10.1126 10.7757 9.86781 11.0215C9.24757 12.1755 9.26163 13.6327 10.0272 14.8049C10.7205 15.8635 11.8638 16.437 13.0286 16.437C13.3186 16.437 13.6096 16.4015 13.8956 16.3291C13.9762 16.1246 14.0397 15.9098 14.084 15.6861C14.305 14.5768 14.0069 13.4876 13.3603 12.6691C13.3196 12.6266 13.2832 12.5797 13.2436 12.5327C13.2347 12.5215 13.2237 12.5126 13.215 12.4991C12.5683 11.6806 12.2712 10.5868 12.4911 9.47983C12.5134 9.36698 12.5406 9.25652 12.5724 9.14844Z" fill="#0B70C7"/>
<path d="M8.60612 11.8879C8.60476 11.8886 8.60353 11.8895 8.6023 11.8904C8.58972 11.9284 8.57775 11.9666 8.56641 12.005C8.58034 11.9661 8.59354 11.927 8.60612 11.8879ZM10.1887 6.18555C10.1869 6.18768 10.1852 6.18994 10.1833 6.19207C10.5687 6.70125 10.8222 7.31012 10.9037 7.96048C11.3699 7.75034 11.8637 7.64815 12.3535 7.64815C12.6797 7.64815 13.0041 7.69342 13.3177 7.78219C13.6099 7.44616 13.9602 7.16806 14.3492 6.96092H14.3469C14.675 6.80093 14.9782 6.59091 15.2451 6.33852C15.2409 6.3419 15.2367 6.34529 15.2325 6.34867C15.1797 6.38666 15.1312 6.43142 15.0829 6.47393C15.0654 6.48735 15.0498 6.50289 15.0345 6.52095C14.4107 7.02537 13.6259 7.31613 12.7974 7.31613C12.5609 7.31613 12.3207 7.29244 12.0798 7.24316C11.329 7.08994 10.6801 6.70903 10.1887 6.18555Z" fill="#20801B"/>
<path d="M8.56643 12.0059C8.31298 12.7147 7.84246 13.3506 7.1772 13.7996C7.16314 13.8091 7.14896 13.8184 7.1349 13.8277C7.09222 13.9612 7.05658 14.0988 7.02871 14.2397C6.96075 14.5829 6.94225 14.9244 6.9684 15.2569C7.21704 15.4729 7.44064 15.727 7.63033 16.0175C7.98146 16.5529 8.17411 17.149 8.22011 17.7486C8.67028 18.1401 9.22195 18.4239 9.84356 18.5517C10.0838 18.6009 10.3232 18.6248 10.5591 18.6248C11.6683 18.6248 12.6997 18.1002 13.3712 17.244C12.9125 16.9534 12.3972 16.7728 11.8676 16.7111C11.8479 16.7088 11.8226 16.7088 11.8017 16.7088C11.738 16.7044 11.673 16.6999 11.6081 16.6908C10.5906 16.5746 9.62587 16.0175 9.01426 15.0805C8.39993 14.1383 8.26957 13.0114 8.56643 12.0059Z" fill="#161874"/>
<path d="M8.60402 11.8906C7.92864 12.3349 7.39856 13.0078 7.13672 13.8271C7.15078 13.8178 7.16496 13.8085 7.17902 13.799C7.84429 13.3498 8.31468 12.714 8.56825 12.0052C8.57948 11.9669 8.59144 11.9286 8.60402 11.8906Z" fill="#0D120E"/>
<path d="M21.3939 24.9474C21.3665 24.9671 21.3389 24.9864 21.3108 25.0053C20.6984 25.4182 20.0068 25.616 19.3224 25.616C18.9578 25.616 18.5953 25.5599 18.2484 25.4503C17.8759 25.3169 17.4837 25.2457 17.0884 25.2405C16.3864 25.7599 15.8656 26.5394 15.6811 27.4701C15.2884 29.4518 16.548 31.3817 18.4981 31.7824C18.7373 31.8313 18.9759 31.8549 19.211 31.8549C20.8892 31.8549 22.393 30.6555 22.7374 28.9173C22.9575 27.808 22.6582 26.7188 22.0125 25.9024C21.972 25.8579 21.9323 25.8109 21.8948 25.766C21.8872 25.7526 21.8771 25.7416 21.8685 25.728C21.679 25.4895 21.5195 25.2271 21.3939 24.9474ZM21.4438 13.2344C19.7652 13.2344 18.2617 14.4322 17.9151 16.1691C17.7538 16.9816 17.8709 17.7857 18.2002 18.4791C18.5659 18.3567 18.9434 18.2971 19.3189 18.2971C20.4832 18.2971 21.6258 18.8713 22.3182 19.9329C22.4265 20.0987 22.5197 20.27 22.5983 20.4456C22.7276 20.3532 22.8631 20.2694 23.0035 20.1948L23.0013 20.1926C23.9826 19.7117 24.7383 18.788 24.9703 17.616C25.3632 15.6366 24.1014 13.7064 22.1545 13.3061C21.916 13.2577 21.6782 13.2344 21.4438 13.2344Z" fill="#E6007E"/>
<path d="M19.3203 18.2969C18.9449 18.2969 18.5673 18.3566 18.2016 18.4788C18.3192 18.7264 18.4638 18.9599 18.6326 19.1747C18.6458 19.1881 18.6601 19.2038 18.6764 19.2217C18.7195 19.2709 18.759 19.3201 18.8 19.3714C19.4398 20.19 19.7336 21.277 19.5136 22.3774C19.2815 23.547 18.5237 24.4776 17.5391 24.956H17.5404C17.3836 25.0394 17.2329 25.1343 17.0898 25.2403C17.4853 25.2454 17.8773 25.3165 18.2498 25.45C18.5969 25.5596 18.9593 25.6158 19.3238 25.6158C20.008 25.6158 20.6998 25.4181 21.3122 25.005C21.3403 24.986 21.3679 24.9668 21.3953 24.9471C21.0924 24.2717 20.9883 23.4952 21.1438 22.7108C21.3324 21.7556 21.8717 20.9649 22.5997 20.4455C22.5211 20.2699 22.4279 20.0985 22.3196 19.9328C21.627 18.871 20.4846 18.2969 19.3203 18.2969Z" fill="#31006F"/>
<path d="M31.9987 12.6488C32.0006 12.898 31.9773 13.151 31.9268 13.405C31.5814 15.1429 30.0802 16.3424 28.4013 16.3424C28.1659 16.3424 27.927 16.3189 27.6874 16.27C26.9252 16.1143 26.2687 15.7237 25.7747 15.1874C26.4018 16.003 26.6864 17.0795 26.4685 18.1688C26.2354 19.3408 25.4786 20.2688 24.4929 20.7453C23.7907 21.1221 23.2138 21.7298 22.8796 22.4929C22.8315 22.8212 22.7399 23.1425 22.6065 23.4472C22.3235 25.3608 23.5655 27.1855 25.4533 27.5712C25.6942 27.6207 25.9342 27.6444 26.1706 27.6444C27.849 27.6444 29.3485 26.4456 29.6937 24.7107C29.9126 23.6014 29.6144 22.51 28.9698 21.6937C28.9281 21.649 28.8906 21.6021 28.8533 21.555L28.8249 21.5214C28.1779 20.7029 27.8799 19.6113 28.0988 18.5021C28.3232 17.3772 29.0294 16.4825 29.9577 15.9861L29.9555 15.9837C30.9389 15.5029 31.6956 14.5792 31.9266 13.4096C31.9776 13.1539 32.0008 12.8994 31.9987 12.6488ZM26.1077 9.86523C26.0775 9.89056 26.0478 9.91639 26.0184 9.9426C26.0497 9.91739 26.0791 9.89131 26.1077 9.86523Z" fill="#95C11F"/>
<path d="M22.8824 22.4922C22.7764 22.7343 22.6947 22.992 22.6412 23.263C22.629 23.3242 22.6184 23.3854 22.6094 23.4465C22.7427 23.1419 22.8343 22.8206 22.8824 22.4922Z" fill="#20801B"/>
<path d="M25.5079 14.8588C25.5341 14.8952 25.5613 14.9309 25.5889 14.9661C25.5614 14.931 25.5343 14.8952 25.5079 14.8588ZM25.1562 14.2656C25.1738 14.3025 25.1918 14.3391 25.2104 14.3753C25.193 14.3385 25.175 14.3019 25.1562 14.2656Z" fill="#95C11F"/>
<path d="M20.1937 9.67729C19.5092 9.67729 18.8171 9.87565 18.205 10.2887C17.283 10.9103 16.7353 11.8877 16.6188 12.9276C16.6121 12.9926 16.6056 13.0551 16.6011 13.1222C16.6011 13.1445 16.5999 13.1669 16.5999 13.1869C16.5705 13.4515 16.5129 13.7121 16.4283 13.9642C16.4758 13.976 16.5239 13.9869 16.5724 13.9969C16.8107 14.045 17.0483 14.0682 17.2827 14.0682C18.1138 14.0682 18.9023 13.7763 19.527 13.272C19.5435 13.2586 19.5602 13.2407 19.5754 13.225C19.6239 13.1825 19.6734 13.14 19.7251 13.0975C20.3486 12.5942 21.1351 12.2997 21.9642 12.2997C22.1999 12.2997 22.4388 12.3234 22.6785 12.3729C23.7838 12.6006 24.6699 13.3196 25.1552 14.2642C24.828 13.5718 24.7119 12.7696 24.8729 11.959C25.0347 11.1464 25.4506 10.451 26.0199 9.94135C26.0161 9.94448 26.0121 9.94762 26.0082 9.95062C25.9971 9.95953 25.9872 9.96856 25.9749 9.97959C25.3486 10.4912 24.5584 10.7876 23.7255 10.7876C23.4878 10.7876 23.2469 10.7635 23.005 10.7133C22.357 10.5821 21.7846 10.2798 21.3246 9.86173C20.9602 9.73985 20.5783 9.67729 20.1937 9.67729ZM17.3551 6.75195C17.1454 6.99909 16.8994 7.22177 16.6186 7.41097C16.0068 7.82649 15.3157 8.02435 14.6319 8.02435C14.6062 8.02435 14.5804 8.0241 14.5548 8.0236C14.2619 8.36916 14.0297 8.77427 13.8789 9.2249C13.9931 9.25337 14.1061 9.28747 14.2173 9.32709V9.32483C14.5674 9.43567 14.9323 9.4926 15.2991 9.4926C15.9825 9.4926 16.6722 9.29512 17.284 8.88185C17.9627 8.42245 18.4395 7.76807 18.6888 7.04134C18.4696 6.94718 18.2379 6.87383 17.9957 6.8243C17.7811 6.78029 17.5667 6.75659 17.3551 6.75195Z" fill="#BE1622"/>
<path d="M18.6874 7.04102C18.4381 7.76774 17.9613 8.42212 17.2826 8.88153C16.6707 9.29479 15.9809 9.49227 15.2976 9.49227C14.9308 9.49227 14.5659 9.43535 14.2159 9.32451V9.32677C14.1046 9.28714 13.9917 9.25304 13.8775 9.22458C13.8275 9.37379 13.7864 9.52813 13.755 9.68699C13.3731 11.6193 14.5602 13.5005 16.4269 13.9642C16.5115 13.7122 16.569 13.4515 16.5984 13.187C16.5984 13.1669 16.5997 13.1446 16.5997 13.1223C16.604 13.0552 16.6107 12.9925 16.6173 12.9277C16.7339 11.8877 17.2817 10.9104 18.2035 10.2887C18.8156 9.8757 19.5078 9.67734 20.1923 9.67734C20.5768 9.67734 20.9588 9.73991 21.3231 9.86216C20.9992 9.56775 20.7309 9.21605 20.5311 8.82611L20.5265 8.82849C20.1549 8.0407 19.5085 7.3941 18.6874 7.04102Z" fill="#280F1E"/>
<path d="M17.2788 6.75195C16.217 6.75195 15.2262 7.2318 14.5547 8.02435C14.5803 8.02485 14.6061 8.0251 14.6318 8.0251C15.3157 8.0251 16.0067 7.82725 16.6186 7.41172C16.8991 7.22239 17.1453 6.99984 17.355 6.75271C17.3295 6.75233 17.3042 6.75195 17.2788 6.75195Z" fill="#6F1104"/>
<path d="M25.5896 14.9661C25.6494 15.0424 25.7122 15.1162 25.7778 15.1876C25.7715 15.1794 25.7652 15.1713 25.7588 15.1631C25.7192 15.1138 25.6774 15.0624 25.6335 15.0154C25.6182 14.9975 25.605 14.9819 25.5896 14.9661ZM25.2109 14.3752C25.212 14.3777 25.2133 14.3801 25.2144 14.3826C25.3004 14.5487 25.3987 14.708 25.5084 14.8588C25.3972 14.7057 25.2976 14.544 25.2109 14.3752ZM28.4023 9.02344C27.5665 9.02344 26.7736 9.3201 26.1451 9.83342C26.1337 9.84408 26.1223 9.85473 26.1108 9.86527C26.7432 9.33502 27.5487 9.02657 28.3999 9.02657C28.6359 9.02657 28.8758 9.05039 29.1162 9.09967C30.8123 9.44448 31.9873 10.9552 32.0018 12.6488C31.9886 10.9557 30.8113 9.4441 29.114 9.09528C28.8752 9.04688 28.637 9.02344 28.4023 9.02344Z" fill="#BE1622"/>
<path d="M28.398 9.02539C27.5469 9.02539 26.7414 9.33384 26.1089 9.86408C26.0804 9.89029 26.0508 9.91637 26.0196 9.94145C25.4503 10.451 25.0344 11.1464 24.8726 11.9591C24.7117 12.7697 24.8277 13.5718 25.1549 14.2643C25.1736 14.3005 25.1916 14.3372 25.2091 14.374C25.2958 14.5428 25.3952 14.7045 25.5066 14.8575C25.533 14.8939 25.5601 14.9297 25.5877 14.965C25.6031 14.9806 25.6163 14.9963 25.6317 15.0142C25.6755 15.0613 25.7173 15.1127 25.7571 15.1619C25.7635 15.1701 25.7698 15.1782 25.776 15.1864C26.27 15.7227 26.9265 16.1134 27.6887 16.269C27.9283 16.3179 28.1671 16.3414 28.4026 16.3414C30.0816 16.3414 31.5829 15.142 31.9281 13.4039C31.9786 13.15 32.0018 12.897 32 12.6477C31.9854 10.9542 30.8104 9.44342 29.1143 9.09861C28.8739 9.04909 28.6341 9.02539 28.398 9.02539Z" fill="#6F1104"/>
<path d="M18.1965 3.88189C18.2721 4.46066 18.2095 5.04821 18.0188 5.59338C18.0758 5.60228 18.1329 5.61257 18.19 5.62435C18.4412 5.67513 18.681 5.75149 18.9074 5.85042C19.0076 5.17485 19.2914 4.53025 19.7438 3.99938C19.577 4.02383 19.4074 4.03649 19.236 4.03649C18.9991 4.03649 18.7588 4.01254 18.5176 3.96251C18.4083 3.94044 18.3012 3.91349 18.1965 3.88189ZM23.9122 2.27158C23.2768 2.27158 22.6671 2.44298 22.1358 2.74955C22.2447 2.73939 22.3536 2.73438 22.4624 2.73438C23.6279 2.73438 24.7715 3.30926 25.4639 4.36913C26.5637 6.05329 26.1128 8.32111 24.4562 9.44167C24.3869 9.48856 24.3164 9.5327 24.2451 9.57395C25.7864 9.42951 27.1159 8.27748 27.4383 6.65325C27.8332 4.67382 26.5705 2.74365 24.6225 2.3433C24.3841 2.2949 24.1463 2.27158 23.9122 2.27158ZM12.7907 0C11.229 0 9.8213 1.03843 9.35547 2.57953C9.82303 1.03918 11.2294 0.00388692 12.7883 0.00388692C13.0245 0.00388692 13.2644 0.0277099 13.5049 0.0771112C14.0385 0.186822 14.5207 0.411134 14.9314 0.719704C14.9345 0.719955 14.9377 0.720206 14.9409 0.720582C14.5285 0.408877 14.0436 0.18281 13.5071 0.0732243C13.2668 0.023823 13.0269 0 12.7907 0Z" fill="#662483"/>
<path d="M22.4613 2.73438C22.3526 2.73438 22.2435 2.73939 22.1348 2.74955C21.9659 2.84697 21.8051 2.95793 21.6538 3.08144C21.6097 3.12156 21.5656 3.16193 21.5175 3.20005C21.5086 3.20895 21.4977 3.22011 21.4843 3.22676C20.9869 3.63338 20.3863 3.90496 19.7426 3.9995C19.2902 4.53038 19.0064 5.17498 18.9062 5.85054C19.7168 6.20475 20.3551 6.84685 20.7232 7.62824H20.7242C21.2093 8.56987 22.0937 9.28995 23.198 9.51602C23.4388 9.56555 23.6791 9.58925 23.9156 9.58925C24.026 9.58925 24.1356 9.58398 24.2443 9.57382C24.3155 9.53245 24.386 9.48831 24.4554 9.44154C26.112 8.32099 26.5629 6.05316 25.463 4.36901C24.7704 3.30926 23.6269 2.73438 22.4613 2.73438Z" fill="#161874"/>
<path d="M14.9297 0.720703C16.0182 1.53858 16.6049 2.94853 16.3189 4.38568C16.1652 5.16582 15.7775 5.837 15.2459 6.33966C15.868 5.84001 16.6456 5.5515 17.4681 5.5515C17.6493 5.5515 17.8326 5.56542 18.017 5.59426C18.2077 5.04909 18.2704 4.46154 18.1947 3.88276C17.2397 3.59526 16.4786 2.92633 16.0386 2.07573V2.07799C15.787 1.54498 15.4103 1.07742 14.9392 0.721455C14.936 0.721205 14.9328 0.720954 14.9297 0.720703Z" fill="#3C1B10"/>
<path d="M9.99219 5.95703C10.0335 6.00907 10.0763 6.0601 10.1205 6.10975C10.0885 6.06925 10.056 6.02938 10.0247 5.99226C10.0136 5.98035 10.0025 5.96832 9.99219 5.95703Z" fill="#662483"/>
<path d="M12.7851 0.00390625C11.2262 0.00390625 9.81978 1.0392 9.35222 2.57955C9.3172 2.69565 9.28747 2.81451 9.26342 2.93601C9.04266 4.04579 9.34186 5.14001 9.99097 5.95752C10.0013 5.9688 10.0124 5.98084 10.0235 5.99275C10.0547 6.02986 10.0874 6.06974 10.1192 6.11023C10.1419 6.13581 10.1647 6.16089 10.1881 6.18572C10.666 5.61798 10.9538 4.92172 11.0308 4.1975C11.0333 4.18408 11.0343 4.16841 11.0354 4.15286C11.0397 4.09243 11.0462 4.03199 11.0473 3.97156C11.1596 2.9315 11.7085 1.94523 12.6348 1.3168C13.2474 0.904038 13.9384 0.706433 14.6218 0.706433C14.7242 0.706433 14.8263 0.710821 14.928 0.719598C14.5173 0.411028 14.0351 0.186716 13.5015 0.0770052C13.2612 0.0277292 13.0213 0.00390625 12.7851 0.00390625Z" fill="#161874"/>
<path d="M14.6251 0.707031C13.9416 0.707031 13.2506 0.904762 12.6381 1.3174C11.7119 1.94583 11.163 2.9321 11.0507 3.97216C11.0496 4.03259 11.043 4.0929 11.0387 4.15346C11.0376 4.16901 11.0365 4.18468 11.0341 4.1981C10.9572 4.92232 10.6692 5.61857 10.1914 6.18631C10.6828 6.70979 11.3316 7.09071 12.0826 7.24405C12.3235 7.29333 12.5636 7.31703 12.8002 7.31703C13.6286 7.31703 14.4135 7.02626 15.0373 6.52184C15.0527 6.50379 15.0681 6.48824 15.0857 6.47482C15.134 6.43232 15.1825 6.38755 15.2353 6.34956C15.2395 6.34618 15.2437 6.34279 15.2478 6.33941C15.7794 5.83662 16.1672 5.16544 16.3209 4.38542C16.6069 2.94827 16.0202 1.5382 14.9316 0.720447C14.8296 0.71142 14.7274 0.707031 14.6251 0.707031Z" fill="#0D120E"/>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 819 B

@ -0,0 +1,6 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M22.912 25.5361C20.8 25.5361 18.88 24.7681 17.344 23.5521C18.432 22.3361 19.264 20.8641 19.648 19.2641C20.416 20.2241 21.632 20.8001 22.912 20.8001C25.28 20.8001 27.2 18.8161 27.2 16.3841C27.2 13.9521 25.28 11.9681 22.912 11.9681C21.632 11.9681 20.416 12.5441 19.648 13.5041C19.2 11.9041 18.368 10.4321 17.344 9.21606C18.88 7.93606 20.8 7.23206 22.912 7.23206C27.904 7.23206 31.872 11.3281 31.872 16.4481C31.936 21.3761 27.904 25.5361 22.912 25.5361Z" fill="#329FD9"/>
<path d="M19.328 16.32H13.248C13.248 10.816 17.536 6.40002 22.912 6.40002V12.672C20.928 12.672 19.328 14.272 19.328 16.32Z" fill="#329FD9"/>
<path d="M9.60001 11.904C7.23201 11.904 5.31201 13.888 5.31201 16.32C5.31201 18.752 7.23201 20.736 9.60001 20.736C10.88 20.736 12.096 20.16 12.864 19.2C13.312 20.8 14.144 22.272 15.168 23.488C13.632 24.768 11.712 25.472 9.60001 25.472C4.60801 25.472 0.640015 21.376 0.640015 16.256C0.640015 11.264 4.67201 7.104 9.60001 7.104C11.712 7.104 13.632 7.872 15.168 9.088C14.08 10.304 13.248 11.776 12.864 13.376C12.096 12.48 10.944 11.904 9.60001 11.904Z" fill="#454545"/>
<path d="M9.59998 26.2401V19.9681C11.584 19.9681 13.184 18.3041 13.184 16.3201H19.264C19.328 21.8241 14.976 26.2401 9.59998 26.2401Z" fill="#454545"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

@ -0,0 +1,5 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M28.1134 14.0449C27.3281 13.2572 26.395 12.6322 25.3676 12.2059C24.3403 11.7796 23.2389 11.5603 22.1265 11.5605V11.5605C21.0138 11.5602 19.9119 11.7795 18.884 12.2058C17.8562 12.6321 16.9226 13.2571 16.1367 14.0449L14.2051 15.9562L16.0116 17.7627L17.9316 15.8398C18.7601 15.0121 19.8154 14.4486 20.9641 14.2204C22.1128 13.9923 23.3033 14.1098 24.3852 14.5582C25.4671 15.0065 26.3918 15.7655 27.0425 16.7393C27.6931 17.713 28.0405 18.8578 28.0407 20.0289V20.0289C28.0407 21.5995 27.4172 23.1059 26.3071 24.217C25.1971 25.3282 23.6913 25.9532 22.1207 25.9547V25.9547C20.8878 25.9535 19.6863 25.5659 18.6851 24.8464L18.6298 24.9016C18.6298 24.9016 17.3207 26.2311 16.8844 26.682C18.374 27.8637 20.2193 28.5074 22.1207 28.5089V28.5089C24.367 28.5066 26.5205 27.6129 28.1083 26.024C29.696 24.4351 30.5883 22.281 30.5891 20.0347V20.0347C30.5917 18.9224 30.3743 17.8206 29.9494 16.7926C29.5245 15.7646 28.9006 14.8308 28.1134 14.0449V14.0449Z" fill="#00AAEB"/>
<path d="M14.1174 24.2296C13.5689 24.7827 12.9164 25.2217 12.1974 25.5213C11.4784 25.8209 10.7072 25.9751 9.92828 25.9751C9.14887 25.9743 8.37725 25.8198 7.65764 25.5204C6.93803 25.221 6.28456 24.7826 5.73464 24.2302C5.18473 23.6779 4.74918 23.0225 4.45295 22.3015C4.15671 21.5806 4.0056 20.8083 4.00828 20.0289V20.0289C4.0106 18.4603 4.63533 16.9568 5.74529 15.8485C6.85526 14.7402 8.35971 14.1176 9.92828 14.1176V14.1176C11.155 14.1183 12.3509 14.5017 13.3494 15.2144L13.3988 15.162L15.1763 13.3846C13.6853 12.2055 11.8407 11.563 9.93992 11.5606V11.5606C8.82669 11.5594 7.72414 11.7775 6.69521 12.2025C5.66629 12.6274 4.73113 13.2509 3.94315 14.0373C3.15517 14.8236 2.52979 15.7575 2.10272 16.7855C1.67565 17.8136 1.45525 18.9157 1.4541 20.0289V20.0289C1.4541 22.2751 2.34621 24.4294 3.93425 26.018C5.52229 27.6066 7.67625 28.4994 9.92246 28.5002V28.5002C11.0338 28.5032 12.1348 28.2871 13.1626 27.8643C14.1904 27.4416 15.1248 26.8203 15.9123 26.0362C16.0316 25.9198 17.8061 24.1162 17.8061 24.1162L15.9996 22.3096L14.1174 24.2296Z" fill="#FFB400"/>
<path d="M9.58523 10.4285C9.96773 9.23859 10.7186 8.20105 11.7294 7.46583C12.7402 6.73061 13.9586 6.33576 15.2085 6.33835V6.33835C15.987 6.33826 16.7578 6.49246 17.4763 6.79206C18.1948 7.09166 18.8469 7.5307 19.3947 8.08381C20.0738 8.76468 20.5735 9.60326 20.8492 10.5245C21.2013 10.4771 21.5558 10.4499 21.9111 10.4431H22.3125C22.7087 10.4508 23.104 10.4819 23.4965 10.5362C23.1082 8.62711 22.0712 6.91125 20.5615 5.67995C19.0518 4.44864 17.1625 3.77778 15.2143 3.78126V3.78126C13.1982 3.77846 11.2477 4.49778 9.71614 5.80894C8.18457 7.12011 7.17322 8.93642 6.86523 10.9289C7.74287 10.6312 8.65911 10.4627 9.58523 10.4285Z" fill="#00AAEB"/>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

@ -0,0 +1,3 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M28.6929 8.23991L16.3996 1.17324C16.1596 1.03991 15.8396 1.03991 15.5996 1.17324L3.30625 8.23991C3.06625 8.37324 2.90625 8.63991 2.90625 8.93324V23.0666C2.90625 23.3599 3.06625 23.6266 3.30625 23.7599L15.5996 30.8266C15.8396 30.9599 16.1596 30.9599 16.3996 30.8266L28.6929 23.7599C28.9329 23.6266 29.0929 23.3599 29.0929 23.0666V8.93324C29.0929 8.63991 28.9329 8.37324 28.6929 8.23991ZM15.0663 5.70658C15.0663 5.75991 15.0396 5.78658 14.9863 5.81324L10.5863 8.34657C10.5063 8.39991 10.5063 8.53324 10.5863 8.58658L14.9863 11.1199C15.0396 11.1466 15.0663 11.1999 15.0663 11.2266V13.0666C15.0663 13.1732 14.9596 13.2266 14.8796 13.1732L6.87958 8.58658C6.79958 8.53324 6.79958 8.39991 6.87958 8.34657L14.8796 3.73324C14.9596 3.67991 15.0663 3.73324 15.0663 3.83991V5.70658V5.70658ZM25.1196 8.58658L17.1196 13.1999C17.0396 13.2532 16.9329 13.1999 16.9329 13.0932V11.2532C16.9329 11.1999 16.9596 11.1732 17.0129 11.1466L21.4129 8.61324C21.4929 8.55991 21.4929 8.42658 21.4129 8.37324L17.0129 5.83991C16.9596 5.81324 16.9329 5.75991 16.9329 5.73324V3.89324C16.9329 3.78658 17.0396 3.73324 17.1196 3.78658L25.1196 8.39991C25.2262 8.39991 25.2262 8.53324 25.1196 8.58658V8.58658Z" fill="#405261"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 902 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

@ -0,0 +1,3 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.755 15.083C16.416 15.083 14.62 16.984 14.62 19.23C14.62 21.569 16.416 23.345 18.959 23.345L18.938 23.35C21.058 23.35 22.839 21.599 22.839 19.293C22.839 16.897 21.058 15.084 18.755 15.084V15.083ZM0 0V32H32V0H0ZM27.588 27.745H22.823V25.864C21.355 27.303 19.86 27.823 17.87 27.823C15.839 27.823 14.094 27.162 12.631 25.844C10.698 24.14 9.698 21.88 9.698 19.26C9.698 16.86 10.631 14.708 12.381 13.031C13.938 11.5 15.84 10.724 17.96 10.724C19.985 10.724 21.548 11.407 22.668 12.844V5.541L27.589 4.521L27.594 4.526H27.589L27.588 27.745Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 663 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 247 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 578 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

@ -0,0 +1,6 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.74545 23.8545C1.10275 23.8545 0.581818 23.3113 0.581818 22.6408V8.77733C0.581818 8.10697 1.10275 7.56363 1.74545 7.56363C2.38816 7.56363 2.90909 8.10697 2.90909 8.77733V22.6408C2.90909 23.3113 2.38816 23.8545 1.74545 23.8545Z" fill="#00B2A9"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.89484 23.8545H5.29908C4.6218 23.8545 4.07272 23.3115 4.07272 22.6412C4.07272 21.9711 4.6218 21.428 5.29908 21.428H6.89484C10.0818 21.428 12.6747 18.8625 12.6747 15.7094C12.6747 12.5559 10.0818 9.99041 6.89484 9.99041H5.29908C4.6218 9.99041 4.07272 9.44711 4.07272 8.77696C4.07272 8.10681 4.6218 7.56363 5.29908 7.56363H6.89484C11.4342 7.56363 15.1273 11.2178 15.1273 15.7094C15.1273 20.2006 11.4342 23.8545 6.89484 23.8545Z" fill="#34B233"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.8273 23.8545C23.3786 23.8545 22.949 23.5952 22.7468 23.1533L16.4028 9.29031C16.1247 8.68282 16.3828 7.96078 16.9792 7.67754C17.5754 7.39441 18.2841 7.65721 18.5623 8.26481L24.9064 22.1278C25.1843 22.7353 24.9262 23.4572 24.3299 23.7407C24.1673 23.8179 23.9958 23.8545 23.8273 23.8545Z" fill="#C70099"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.0801 19.2C25.9162 19.2 25.7501 19.1633 25.5919 19.0857C25.0129 18.8019 24.7624 18.0786 25.0325 17.4701L29.1184 8.2658C29.3887 7.65733 30.0768 7.39388 30.6557 7.67804C31.2348 7.96174 31.4852 8.68505 31.2151 9.29352L27.1292 18.498C26.9329 18.9401 26.5157 19.2 26.0801 19.2Z" fill="#6E2CA9"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 888 B

@ -0,0 +1,5 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="32" height="32" fill="#33444E"/>
<path d="M31.1273 23.9489C28.5467 25.3941 25.6048 26.1167 22.6112 26.0651C13.4241 25.8586 6.19831 18.478 6.35315 9.49732C6.40476 6.55539 7.28218 3.71668 8.88218 1.23926C3.82411 4.02635 0.624114 9.23926 0.520888 15.0199C0.314436 23.9489 7.59186 31.3812 16.7273 31.5876C22.5596 31.7425 27.979 28.8522 31.1273 23.9489" fill="white"/>
<path d="M17.708 0.516602C15.3338 0.516602 12.9596 1.13596 10.8435 2.27144C9.55319 4.38757 8.83061 6.81338 8.72738 9.29079C8.57254 17.0843 14.9209 23.536 22.8177 23.6908C25.2951 23.6908 27.7209 23.1231 29.9403 21.9876C31.2306 19.8198 31.9016 17.2908 31.9016 14.7618C31.9532 6.96821 25.6564 0.568214 17.8629 0.516602C17.8113 0.516602 17.7596 0.516602 17.708 0.516602Z" fill="#0073EC"/>
</svg>

After

Width:  |  Height:  |  Size: 865 B

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="43px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 43 40" version="1.1" height="40px">
<path d="m12.5 0l-12.5 8.1 8.7 7 12.5-7.8-8.7-7.3zm-12.5 21.9l12.5 8.2 8.7-7.3-12.5-7.7-8.7 6.8zm21.2 0.9l8.8 7.3 12.4-8.1-8.6-6.9-12.6 7.7zm21.2-14.7l-12.4-8.1-8.8 7.3 12.6 7.8 8.6-7zm-21.1 16.3l-8.8 7.3-3.7-2.5v2.8l12.5 7.5 12.5-7.5v-2.8l-3.8 2.5-8.7-7.3z" fill="#007EE5"/>
</svg>

After

Width:  |  Height:  |  Size: 440 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 629 B

@ -0,0 +1,4 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.0162 0.313965L27.11 10.4756C30.6878 13.7526 30.7879 19.3589 27.3297 22.7617L20.0176 29.9565C17.7832 32.155 14.1938 32.1393 11.9788 29.9212L4.83224 22.7649C1.45045 19.3784 1.54306 13.865 5.0367 10.5941L16.0162 0.313965Z" fill="#4EC6E6"/>
<path d="M23.451 13.9542L16.0873 6.7749L7.88626 14.5632C7.03426 15.4153 6.96324 17.8871 7.99284 18.9166L16.0519 26.7271L16.0873 23.177L10.4425 17.7805C9.85951 17.1976 9.91279 16.5175 10.4958 15.9344L12.2531 14.2171L20.6803 22.3515L23.5416 19.5114C25.1137 17.9315 24.9662 15.4695 23.451 13.9542ZM21.5507 17.6839L20.4606 18.774L14.0993 12.5973L16.1804 10.4228L21.4703 15.4641C22.2173 16.211 22.2977 16.937 21.5507 17.6839Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 790 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 333 B

@ -0,0 +1,6 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.7544 26.8145L17.5431 30.0036C17.1544 31.027 15.9976 31.5461 14.9593 31.163C14.4185 30.9634 13.9911 30.5441 13.7862 30.012L8.7476 16.9276C8.40336 16.0337 8.85954 15.034 9.7665 14.6947C9.96562 14.6202 10.1768 14.582 10.3898 14.582H20.8673C21.8374 14.582 22.6238 15.3571 22.6238 16.3133C22.6238 16.5206 22.586 16.7261 22.5123 16.9203C22.2552 17.5971 21.6066 18.0446 20.8826 18.0446H14.4392C13.8155 18.0446 13.31 18.5428 13.31 19.1575C13.31 19.7722 13.8155 20.2705 14.4392 20.2705H19.1308C19.9504 20.2705 20.6148 20.9349 20.6148 21.7544C20.6148 22.574 19.9504 23.2383 19.1308 23.2383H15.9448C15.3211 23.2383 14.8156 23.7366 14.8156 24.3513C14.8156 24.966 15.3211 25.4643 15.9448 25.4643H17.8229C18.3732 25.4643 18.8193 25.9104 18.8193 26.4607C18.8193 26.5816 18.7973 26.7015 18.7544 26.8145Z" fill="#FFE53B"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.6216 8.43246C14.6216 10.6716 12.7807 12.4872 10.5116 12.4872C8.24129 12.4872 6.40039 10.6716 6.40039 8.43246C6.40039 6.19452 8.24129 4.37891 10.5116 4.37891C12.7807 4.37891 14.6216 6.19452 14.6216 8.43246Z" fill="#40BDFF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.8378 6.23703C21.8378 9.36052 19.2696 11.8908 16.1021 11.8908C12.9334 11.8908 10.3652 9.36052 10.3652 6.23703C10.3652 3.11355 12.9334 0.582031 16.1021 0.582031C19.2696 0.582031 21.8378 3.11355 21.8378 6.23703Z" fill="#FF5E86"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.6546 9.04239C24.6546 10.9446 23.0906 12.4871 21.1619 12.4871C19.2332 12.4871 17.668 10.9446 17.668 9.04239C17.668 7.13894 19.2332 5.59766 21.1619 5.59766C23.0906 5.59766 24.6546 7.13894 24.6546 9.04239Z" fill="#FF92BB"/>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

@ -0,0 +1,24 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="none" width="32px" height="32px" viewBox="0 0 200 200">
<g clip-path="url(#a)">
<path fill="#6DB1DC" d="M189.6 92.3a89.3 89.3 0 1 1-178.6 0 89.3 89.3 0 0 1 178.6 0Z"/>
<path stroke="#fff" stroke-linecap="round" stroke-miterlimit="10" stroke-width="5.5" d="M189.6 92.3a89.3 89.3 0 1 1-178.6 0 89.3 89.3 0 0 1 178.6 0Z"/>
<path fill="#6DB1DC" d="M76.2 197.9H123l-13.9-20.5H90l-13.8 20.5Z"/>
<path stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="5.2" d="M99.6 177.4v20.5"/>
<path stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="5.1" d="m90 177.4-13.8 20.5H123l-13.9-20.5"/>
<path fill="#463E65" d="m117 184.3-5.5-8.1H87.8l-5.6 8c5.3 2.9 11.3 4.6 17.3 4.6s12-1.7 17.5-4.5Z" opacity=".5"/>
<path fill="#6DB1DC" d="M100.3 177.4c-21.3 0-38.7-24.4-38.7-47.8 0-9.3 2.8-17.8 7.4-24.8a38.1 38.1 0 1 1 62.6 0 45 45 0 0 1 7.2 24.8c0 23.4-17.3 47.8-38.5 47.8Z"/>
<path fill="#010101" d="M53.4 90.7s.2-.3 0-.3c0 0-.3.3 0 .3Z"/>
<path stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="5.1" d="M115.8 118c.2 8.7 3 23.2 18 32.7m-58.7-39.2A39 39 0 0 1 63 139.8m61.8-27.5c.3 7.5 2.7 18.7 12.3 27.5"/>
<path stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="5.1" d="M131.6 104.8a45 45 0 0 1 7.2 24.8c0 23.4-17.3 47.8-38.5 47.8-21.3 0-38.7-24.4-38.7-47.8 0-9.3 2.8-17.8 7.4-24.8"/>
<path stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="5.1" d="M85.2 118.2a38.4 38.4 0 0 1-18.1 32.5"/>
<path fill="#463E65" d="M66.7 104c-1 1.2-1.9 2.8-2.7 4.3a41 41 0 0 0 72.6 0c-.8-1.5-1.7-3-2.7-4.4 0 0-11.7 19-33.6 17.6A47.9 47.9 0 0 1 66.6 104" opacity=".5"/>
<path stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="5.2" d="M100.3 84.6v-1m0 0c0-9.6-8-17.3-17.7-17.3h-2.4S57 68 51.6 61.3m48.7 22.2c0-9.5 8-17.2 17.9-17.2h2.2s23 1.7 28.6-5"/>
<path stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="5.1" d="M138.4 83.1a38.1 38.1 0 1 1-76.2 0 38.1 38.1 0 0 1 76.2 0v0Z"/>
<path stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="5.1" d="M100.3 81.1v16.3M87.8 85.5a5.7 5.7 0 0 1-9.8 4c-1-1-1.7-2.5-1.7-4 0-3 2.5-5.6 5.7-5.6 3.1 0 5.8 2.5 5.8 5.6Zm36.5 0a5.8 5.8 0 0 1-9.7 4c-1.1-1-1.7-2.5-1.8-4 0-3 2.7-5.6 5.8-5.6 3.2 0 5.7 2.5 5.7 5.6Z"/>
</g>
<defs>
<clipPath id="a">
<path fill="#fff" d="M0 0h200v200H0z"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 625 B

@ -0,0 +1,3 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.28571 21.7714C5.48571 21.6 3.31429 19.3714 3.2 16.6286H15.1429V16.5143C15.1429 11.7714 12.1143 8.57144 7.94286 8.57144C3.54286 8.57144 0.571426 11.8286 0.571426 16.0572C0.571426 20.0572 3.65714 23.5429 7.88571 23.5429C10.9143 23.5429 13.3714 21.8286 14.6857 18.6857H13.4857C12.6286 20.5714 10.6857 21.8286 8.57143 21.8286H8.28571V21.7714ZM23.4857 21.7714C26.2857 21.6 28.4571 19.3714 28.5714 16.6286H16.6286V16.5143C16.6286 11.7714 19.6571 8.57144 23.8286 8.57144C28.2286 8.57144 31.2 11.8286 31.2 16.0572C31.2 20.0572 28.1143 23.5429 23.8857 23.5429C20.8571 23.5429 18.4 21.8286 17.0857 18.6857H18.2857C19.1429 20.5714 21.0857 21.8286 23.1429 21.8286H23.4857" fill="#FDDC47"/>
</svg>

After

Width:  |  Height:  |  Size: 793 B

@ -0,0 +1,23 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M29.9786 13.0955H7.19478V30.8561H29.9786V13.0955Z" fill="url(#pattern0)"/>
<path d="M26.955 14.5728H17.2404L8.74146 23.0738L13.5977 27.93L26.955 14.5728Z" fill="#54C5F8"/>
<path d="M6.31283 20.6447L1.45454 15.7864L17.2409 0H26.9555L6.31283 20.6447Z" fill="#54C5F8"/>
<path d="M13.5982 27.9301L17.2409 31.5728H26.9554L18.4545 23.0739L13.5982 27.9301Z" fill="#01579B"/>
<path d="M13.5982 27.9301L20.8025 25.4361L18.4545 23.0739L13.5982 27.9301Z" fill="url(#paint0_linear_1829_34)"/>
<path d="M13.5975 18.215L8.74109 23.0713L13.5975 27.9278L18.4539 23.0713L13.5975 18.215Z" fill="#29B6F6"/>
<path d="M26.9555 14.5728L18.4565 23.0718L26.9555 31.5728H17.2409L13.5983 27.9301L8.73993 23.0718L17.2409 14.5728H26.9555ZM17.2409 0L1.45454 15.7864L6.31283 20.6447L26.9555 0H17.2409Z" fill="url(#paint1_radial_1829_34)"/>
<defs>
<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0_1829_34"/>
</pattern>
<linearGradient id="paint0_linear_1829_34" x1="15.0143" y1="28.8679" x2="18.6321" y2="25.2501" gradientUnits="userSpaceOnUse">
<stop stop-color="#1A237E" stop-opacity="0.4"/>
<stop offset="1" stop-color="#1A237E" stop-opacity="0"/>
</linearGradient>
<radialGradient id="paint1_radial_1829_34" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(2.1721 2.15269) scale(38.6275)">
<stop stop-color="white" stop-opacity="0.1"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
</radialGradient>
<image id="image0_1829_34" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAABkCAYAAABO6zhfAAAACXBIWXMAAAx0AAAMdAH/P3aRAAAA"/>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

@ -0,0 +1,8 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M26.028 8.62923C26.102 8.49608 26.1207 8.33912 26.0798 8.19233C26.039 8.04555 25.9421 7.92074 25.8099 7.84492L15.4808 1.97093C15.2991 1.86702 14.8675 1.86929 14.6877 1.97662L4.47354 8.0391C4.386 8.09059 4.31385 8.16458 4.26456 8.25338C4.22753 8.31988 4.20397 8.39303 4.19524 8.46865C4.1865 8.54426 4.19275 8.62086 4.21364 8.69406C4.23453 8.76725 4.26964 8.83561 4.31697 8.89523C4.3643 8.95484 4.42291 9.00454 4.48946 9.04148L14.8398 14.9655C15.0181 15.0645 15.397 15.0687 15.5733 14.9655L25.8133 8.84503C25.903 8.79379 25.9772 8.71922 26.028 8.62923V8.62923ZM19.422 8.55338C19.4019 8.58945 19.3722 8.61934 19.3363 8.63985L16.0952 10.5278V10.5259L15.6154 10.8077L15.604 10.8153L15.4387 10.9105C15.3493 10.9583 15.2529 10.9917 15.1531 11.0095C15.0258 11.0085 14.9006 10.9759 14.789 10.9147L14.7424 10.8889C14.7215 10.8767 14.7044 10.865 14.6866 10.8551C14.636 10.824 14.5855 10.7947 14.5349 10.7671L14.2975 10.6412L10.839 8.71835C10.8034 8.69885 10.7737 8.67027 10.7527 8.63553C10.7318 8.60078 10.7204 8.56111 10.7197 8.52055C10.7191 8.47998 10.7292 8.43997 10.749 8.40456C10.7688 8.36916 10.7977 8.33964 10.8326 8.31899L14.6532 6.03585H14.6635C14.6741 6.02788 14.6843 6.01992 14.6946 6.01271L14.811 5.94293C14.8894 5.90493 14.9751 5.88455 15.0622 5.88324C15.1493 5.88193 15.2356 5.89972 15.315 5.93534L15.4626 6.01992C15.4804 6.03319 15.4903 6.04191 15.4903 6.04191L18.3969 7.71635L18.3821 7.69397L18.4011 7.70459L18.3969 7.71635L19.2574 8.19611L19.3356 8.24087C19.388 8.27142 19.4263 8.32133 19.4422 8.37985C19.4582 8.43838 19.4505 8.50083 19.4209 8.55376L19.422 8.55338Z" fill="black"/>
<path d="M7.16359 15.0126C7.21083 15.0417 7.26029 15.067 7.3115 15.0884L8.44359 15.7407L9.31588 16.2459C9.31805 16.2471 9.32008 16.2485 9.32195 16.2501C9.35988 16.2751 10.0315 16.6673 10.0315 16.6673L12.207 17.915L12.4027 18.0288L13.6163 18.7255L13.8655 18.8693C13.951 18.9189 14.048 18.9451 14.1469 18.9451C14.2958 18.9451 14.4388 18.8868 14.5452 18.7825C14.6515 18.6783 14.7128 18.5365 14.7158 18.3876L14.7537 16.2979C14.7553 16.1962 14.7295 16.0959 14.6792 16.0075C14.6288 15.9191 14.5557 15.8459 14.4674 15.7954L3.9414 9.79586C3.85519 9.74635 3.75745 9.72043 3.65804 9.72071C3.55862 9.72098 3.46104 9.74744 3.3751 9.79743C3.28916 9.84741 3.21791 9.91916 3.16852 10.0054C3.11913 10.0917 3.09334 10.1895 3.09375 10.2889V22.2902C3.09393 22.3875 3.11909 22.4832 3.16683 22.5681C3.21458 22.653 3.28331 22.7242 3.36644 22.7749L5.61735 24.1402C5.70549 24.1945 5.80696 24.2234 5.91051 24.2236C6.05893 24.2237 6.20149 24.1657 6.30777 24.0621C6.41405 23.9586 6.47564 23.8175 6.4794 23.6692V23.6692L6.49306 22.8993V20.9973H6.4995C6.4995 20.9973 6.44603 20.3658 7.1579 20.8076C7.20898 20.8397 7.26279 20.8673 7.3187 20.89L9.37353 22.0596L9.37922 22.0634C9.47745 22.126 13.8545 24.6207 13.8545 24.6207C13.9406 24.6701 14.0383 24.6959 14.1376 24.6955C14.2369 24.6951 14.3343 24.6686 14.4201 24.6187C14.5059 24.5687 14.577 24.497 14.6263 24.4108C14.6757 24.3246 14.7014 24.227 14.701 24.1277V22.0418C14.7007 21.9415 14.674 21.8432 14.6235 21.7566C14.5731 21.67 14.5006 21.5983 14.4135 21.5487L11.6184 19.9665L6.97585 17.3116L6.98192 17.3041C6.96447 17.2984 6.94741 17.2923 6.93072 17.2862L6.73654 17.1751C6.54388 17.0181 6.49837 16.794 6.49192 16.6441V16.5637C6.49273 16.5396 6.49489 16.5156 6.49836 16.4917L6.50519 15.2022L6.49192 15.2162V15.2014H6.50519C6.50519 15.2014 6.45134 14.5711 7.16359 15.0126Z" fill="black"/>
<path d="M22.1124 18.4825C22.2474 18.4825 22.3794 18.4425 22.4917 18.3675C22.6039 18.2925 22.6914 18.1858 22.7431 18.0611C22.7948 17.9364 22.8083 17.7991 22.782 17.6667C22.7556 17.5342 22.6906 17.4126 22.5951 17.3171C22.4996 17.2217 22.378 17.1566 22.2456 17.1303C22.1131 17.104 21.9759 17.1175 21.8511 17.1692C21.7264 17.2208 21.6198 17.3083 21.5447 17.4206C21.4697 17.5328 21.4297 17.6648 21.4297 17.7999C21.4297 17.9809 21.5016 18.1545 21.6296 18.2826C21.7577 18.4106 21.9313 18.4825 22.1124 18.4825V18.4825Z" fill="black"/>
<path d="M16.2698 28.8913C16.3735 28.891 16.4752 28.8627 16.5641 28.8094L26.889 22.8334C27.0642 22.7291 27.2448 22.3961 27.2448 22.1917L27.0961 10.267C27.0962 10.1909 27.0812 10.1155 27.0521 10.0452C27.023 9.97485 26.9803 9.91095 26.9265 9.85712C26.8727 9.8033 26.8088 9.76062 26.7384 9.73151C26.6681 9.70241 26.5927 9.68745 26.5166 9.6875V9.6875C26.415 9.68769 26.3152 9.71492 26.2276 9.76639L15.9645 15.7473C15.7836 15.852 15.5716 16.2282 15.5742 16.4376L15.688 28.3197C15.69 28.4725 15.7523 28.6182 15.8612 28.7253C15.9702 28.8323 16.1171 28.892 16.2698 28.8913V28.8913ZM16.1215 16.2915C16.1471 16.2435 16.1793 16.1992 16.2171 16.1599L26.4699 10.1843C26.4839 10.1758 26.4999 10.1712 26.5162 10.1711C26.5418 10.1716 26.5663 10.1818 26.5849 10.1995C26.594 10.2082 26.6011 10.2187 26.6058 10.2303C26.6105 10.2419 26.6127 10.2545 26.6122 10.267V10.2731L26.7612 22.1867C26.7507 22.231 26.7339 22.2736 26.7112 22.313C26.6911 22.353 26.6656 22.3899 26.6353 22.4226L16.3218 28.391H16.3195H16.3172C16.303 28.3999 16.2866 28.4048 16.2698 28.4051C16.2447 28.4052 16.2205 28.3954 16.2025 28.3779C16.1845 28.3604 16.1741 28.3365 16.1735 28.3114L16.0597 16.4406C16.0733 16.3883 16.0941 16.3381 16.1215 16.2915Z" fill="black"/>
<path d="M18.1964 18.2485V18.283L18.2014 18.3179L18.2037 18.3354L18.2275 19.8524L18.2173 19.8331L18.2495 22.2012V22.2266L18.256 22.6972H18.2647V23.3776V23.3844V23.4903C18.2665 23.6374 18.307 23.7815 18.3822 23.908C18.4574 24.0345 18.5645 24.1389 18.6929 24.2109C18.8213 24.2828 18.9663 24.3197 19.1135 24.3177C19.2606 24.3158 19.4046 24.2751 19.5311 24.1998L23.3172 21.9508L23.877 21.6182L23.891 21.6099L24.0841 21.4961L24.0981 21.4874L24.4702 21.1654C24.4846 21.1479 24.4986 21.1305 24.5119 21.1127L24.5373 21.0858L24.5544 21.0562C24.6745 20.8433 24.7388 20.6035 24.7413 20.3591V20.2666C24.7413 20.2366 24.7394 20.2066 24.7383 20.177C24.7353 20.1198 24.7345 20.0633 24.7356 20.0083L24.7417 19.6927V15.0362C24.7418 14.926 24.7201 14.8169 24.6779 14.7151C24.6358 14.6133 24.574 14.5208 24.4961 14.4429C24.4182 14.365 24.3257 14.3032 24.2239 14.261C24.1221 14.2189 24.013 14.1972 23.9028 14.1973C23.7554 14.1975 23.6106 14.2367 23.4833 14.311L18.961 16.9279L18.9333 16.9439L18.9121 16.9564L18.7744 17.036L18.7513 17.0493L18.7297 17.0648C18.5805 17.1703 18.4558 17.3068 18.3642 17.4648C18.2726 17.6229 18.2161 17.7989 18.1987 17.9808L18.1953 18.0141V18.0475L18.1964 18.2485ZM19.057 17.5279L19.1947 17.4483L19.2364 17.4297L19.2436 17.4198L23.7659 14.8029C23.8067 14.7784 23.8533 14.7653 23.9009 14.765C23.9728 14.765 24.0418 14.7936 24.0926 14.8444C24.1435 14.8953 24.1721 14.9643 24.1721 15.0362V19.2012C23.9206 19.0495 23.6608 18.9638 23.321 19.0772C22.567 19.3286 22.0493 20.1899 22.0493 20.1899C22.0493 20.1899 21.1152 17.7001 18.7851 19.1887L18.7725 18.2811C18.7725 18.2811 18.7691 18.2663 18.7657 18.2405L18.7627 18.0407C18.7714 17.9389 18.8023 17.8403 18.8531 17.7517C18.904 17.6632 18.9735 17.5868 19.057 17.5279Z" fill="black"/>
<path d="M15.0871 1.08051C15.2541 1.08045 15.4184 1.1237 15.5638 1.20604L27.1926 7.80288C27.3826 7.91085 27.541 8.06666 27.652 8.25483C27.7631 8.44299 27.8229 8.65695 27.8256 8.87542L27.9822 22.415C27.9846 22.5869 27.9411 22.7564 27.8561 22.9059C27.7711 23.0553 27.6477 23.1794 27.4987 23.2653L15.7894 29.9975C15.5205 30.1522 15.2562 30.244 14.993 30.244C14.7774 30.2426 14.5664 30.1819 14.3832 30.0684L2.86619 23.2342C2.72205 23.1489 2.60253 23.0277 2.51936 22.8824C2.43618 22.737 2.39221 22.5726 2.39173 22.4051L2.36329 9.40373C2.36329 8.6528 2.52713 8.4351 3.17339 8.05319L14.5955 1.21477C14.7448 1.1265 14.9151 1.08012 15.0886 1.08051H15.0871ZM15.0886 0C14.7222 7.7617e-05 14.3625 0.0984368 14.0471 0.284823H14.0445H14.0418L2.61929 7.12818C2.26961 7.33525 1.8748 7.59201 1.60667 8.02285C1.31843 8.48592 1.2805 8.98351 1.28126 9.40904L1.31084 22.4093C1.31202 22.7637 1.40527 23.1118 1.58146 23.4194C1.75764 23.7269 2.01072 23.9834 2.31588 24.1637L13.8309 30.9961C14.1809 31.2093 14.5824 31.3229 14.9922 31.3249C15.4341 31.3249 15.871 31.1971 16.3276 30.9347L28.0361 24.2017C28.3514 24.0202 28.6127 23.758 28.7931 23.442C28.9735 23.1261 29.0664 22.7678 29.0624 22.404L28.9061 8.86442C28.9009 8.45689 28.7893 8.05779 28.5823 7.70668C28.3754 7.35557 28.0803 7.06463 27.7262 6.86269L16.0966 0.266619C15.7887 0.0924029 15.4409 0.000937807 15.0871 0.00113773L15.0886 0Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

@ -0,0 +1,3 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.4714 11.3651L17.4086 21.2794L19.1263 11.3651H23.7629L25.4543 21.2794L27.3909 11.3651H32L28.6183 25.9771H23.4086L21.4451 15.1943L19.4811 25.9771H14.244L10.8629 11.3657H15.472L15.4714 11.3651ZM11.9469 6.28572L11.2646 9.43658H9.98286C8.37371 9.43658 8.01943 9.51829 7.74629 10.6314L7.60971 11.3651H10.8554L10.1731 14.5429H6.92743L4.50114 25.9783H0L2.42743 14.5429H0.409143L1.09143 11.3651H3.08229L3.30057 10.4411C4.00971 6.99201 5.70057 6.28572 9.628 6.28572H11.9469Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 637 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

@ -0,0 +1,4 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.32812 15.1845C2.32812 9.48267 6.74994 4.82812 12.7427 4.82812C16.2918 4.82812 18.5027 5.81722 20.539 7.56267L17.8045 10.879C16.2918 9.59903 14.8954 8.84267 12.6263 8.84267C9.42631 8.84267 6.92449 11.6354 6.92449 15.0099V15.0681C6.92449 18.6754 9.42631 21.3518 12.9172 21.3518C14.4881 21.3518 15.9427 20.9445 17.0481 20.1881V17.3372H12.6263V13.5554H21.2372V22.1663C19.2009 23.9118 16.4081 25.3081 12.7427 25.3081C6.63358 25.3663 2.32812 21.0609 2.32812 15.1845Z" fill="#282C74"/>
<path d="M29.6172 31.6509V0" stroke="#FFAE1F" stroke-width="2.3229" stroke-miterlimit="10"/>
</svg>

After

Width:  |  Height:  |  Size: 687 B

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