Add RAG Landing Page (#1168)

* Add RAG Landing Page

* fix

* fix form, image and links

* fix

* Content update

* shortened file link

* update links
This commit is contained in:
nastyapash
2024-09-16 18:43:11 +02:00
committed by GitHub
parent f0f3c98c0b
commit 09877ed06e
32 changed files with 1330 additions and 1 deletions
@@ -0,0 +1,41 @@
---
title: How to evaluate a RAG system
text: This guide will teach you how to evaluate a RAG system for both accuracy and quality.
subtitle: Stages prone to errors
listTitle: "You will learn to maintain RAG performance by testing for:"
list:
- id: 0
text: Search precision
- id: 1
text: Recall
- id: 2
text: Contextual relevance
- id: 3
text: Response accuracy.
image:
src: /img/rag-evaluation-guide/stages.svg
alt: Stages
features:
- id: 0
icon:
src: /icons/outline/search-text-blue.svg
alt: Search text
title: Information retrieval
description: This stage involves searching and fetching relevant information from a knowledge base or external sources.
- id: 1
icon:
src: /icons/outline/integration-blue.svg
alt: Integration
title: Information augmentation
description: In this stage, the retrieved information is processed and combined with the original query
- id: 2
icon:
src: /icons/outline/vectors-blue.svg
alt: Vectors
title: Generating responses
description: Using the augmented information, the language model generates a response to the original query.
downloadGuide:
text: Download the Guide
url: "#form"
sitemapExclude: true
---
@@ -0,0 +1,33 @@
---
title: "Read Qdrant’s Best Practices in RAG Evaluation guide for a deep dive into:"
cards:
- id: 0
icon:
src: /icons/outline/case-study-blue.svg
alt: Case study
description: Why RAG evaluation is crucial for your AI's success
- id: 1
icon:
src: /icons/outline/similarity-blue.svg
alt: Similarity
description: Recommended frameworks for comprehensive assessment
- id: 2
icon:
src: /icons/outline/bug-blue.svg
alt: Bug
description: How to identify and solve common RAG performance issues
- id: 3
icon:
src: /icons/outline/cloud-connections-blue.svg
alt: Cloud connections
description: Techniques for working with custom datasets
- id: 4
icon:
src: /icons/outline/chart-bar-blue.svg
alt: Chart bar
description: Essential metrics to monitor during testing
downloadGuide:
text: Download the Guide
url: "#form"
sitemapExclude: true
---
@@ -0,0 +1,23 @@
---
title: What you will learn
listTitle: "The guide covers:"
list:
- id: 0
text: Recommended frameworks for comprehensive RAG assessment
- id: 1
text: How to identify and solve common RAG performance issues
- id: 2
text: Techniques for working with custom datasets
- id: 3
text: Essential metrics to monitor during testing, and more.
form:
title: Download the guide
id: download-the-guide-form
hubspotFormOptions: '{
"region": "eu1",
"portalId": "139603372",
"formId": "a0975b6c-fad8-43f8-9e9e-c526e710fe90",
"submitButtonClass": "button button_contained",
}'
sitemapExclude: true
---
@@ -0,0 +1,15 @@
---
label: A Comprehensive Guide
title: Best Practices in RAG Evaluation
description: Learn how to assess, calibrate, and optimize your RAG applications for long-term success.
downloadGuide:
text: Download the Guide
url: "#form"
learnMore:
text: Learn More
url: /rag/
image:
src: /img/rag-evaluation-guide/rag-evaluation.svg
alt: RAG-Evaluation
sitemapExclude: true
---
@@ -0,0 +1,39 @@
---
title: Why evaluate your RAG application?
description: The guide will outline both common issues, as well as recommendations to avoid these pitfalls.
cards:
- id: 0
image:
src: /img/rag-evaluation-guide/integrations/maximize-search.svg
alt: Maximize search
description: Lack of Precision
- id: 1
image:
src: /img/rag-evaluation-guide/integrations/enrich-context.svg
alt: Enrich context
description: Poor recall
- id: 2
image:
src: /img/rag-evaluation-guide/integrations/avoid-hallucinations.svg
alt: Avoid hallucinations
description: “Lost in the middle”
frameworksTitle: Recommended evaluation frameworks
frameworksDescription: In the guide, we explore three popular frameworks that can help simplify your evaluation process.
frameworksCards:
- id: 0
image:
src: /img/rag-evaluation-guide/integrations/ragas.svg
alt: Ragas logo
description: Ragas is an open-source framework for evaluating retrieval augmented generation systems.
- id: 1
image:
src: /img/rag-evaluation-guide/integrations/quotient.svg
alt: Quotient AI logo
description: Quotient AI is a platform that focuses on building and deploying RAG systems.
- id: 2
image:
src: /img/rag-evaluation-guide/integrations/arize.svg
alt: Arize logo
description: Arize Phoenix is a tool designed for monitoring and observability in AI systems, including RAG pipelines.
sitemapExclude: true
---
@@ -0,0 +1,12 @@
---
title: Learn More
description: Learn how to test RAG with questions and answers, evaluate RAG pipelines with custom datasets, and visually deconstruct response generation by reading the guide.
downloadGuide:
text: Download the Guide
url: "#form"
image:
src: /img/rag-evaluation-guide/kubernetes-clusters.png
alt: Qdrant Kubernetes integration
sitemapExclude: true
---
@@ -0,0 +1,12 @@
---
title: RAG Evaluation guide
description: RAG Evaluation guide
url: rag/rag-evaluation-guide
build:
render: always
cascade:
- build:
list: local
publishResources: false
render: never
---
@@ -97,3 +97,9 @@
@import 'partials/brand-resources-hero';
@import 'partials/brand-resources-content';
@import 'partials/subscribe';
@import 'partials/rag-evaluation-guide-hero';
@import 'partials/rag-evaluation-guide-form';
@import 'partials/rag-evaluation-guide-about';
@import 'partials/rag-evaluation-guide-integrations';
@import 'partials/rag-evaluation-guide-kubernetes-clusters';
@import 'partials/rag-evaluation-guide-features';
@@ -0,0 +1,97 @@
@use '../helpers/functions' as *;
.rag-evaluation-guide-about {
padding-top: $spacer * 4;
padding-bottom: $spacer * 4;
background-color: $neutral-94;
&__preview img {
display: block;
margin: 0 auto;
width: 100%;
max-width: pxToRem(445);
}
&__text {
font-size: pxToRem(18);
line-height: pxToRem(27);
color: $neutral-30;
margin-bottom: $spacer * 1.5;
}
&__title {
font-size: $spacer * 2.5;
line-height: $spacer * 3;
margin-bottom: $spacer * 1.5;
color: $neutral-20;
}
&__subtitle {
font-size: pxToRem(20);
line-height: pxToRem(30);
margin-bottom: $spacer * 0.5;
}
&__listTitle {
font-size: pxToRem(18);
line-height: pxToRem(27);
color: $neutral-30;
margin-bottom: 0;
}
&__list {
font-size: pxToRem(18);
line-height: pxToRem(27);
color: $neutral-30;
margin-bottom: 0;
}
&__card {
display: flex;
flex-direction: column;
gap: $spacer;
&-icon {
height: $spacer * 1.5;
width: $spacer * 1.5;
}
&-title {
margin-bottom: 0;
font-size: pxToRem(20);
line-height: pxToRem(30);
color: $neutral-30;
}
&-description {
margin-bottom: 0;
font-size: pxToRem(18);
line-height: pxToRem(27);
color: $neutral-30;
}
}
&__button {
display: flex;
justify-content: center;
margin-top: $spacer * 4;
}
@include media-breakpoint-up(lg) {
padding-top: $spacer * 7.5;
padding-bottom: $spacer * 7.5;
&__preview img {
margin-left: 0;
}
&__title {
font-size: $spacer * 3;
line-height: pxToRem(58);
}
&__button {
margin-top: $spacer * 5;
}
}
}
@@ -0,0 +1,74 @@
@use '../helpers/functions' as *;
.rag-evaluation-guide-features {
padding-top: $spacer * 2.5;
padding-bottom: $spacer * 4;
background-color: $neutral-94;
&__title {
font-size: $spacer * 2;
line-height: $spacer * 2.5;
text-align: center;
color: $neutral-20;
max-width: pxToRem(730);
margin: 0 auto $spacer * 2.5;
}
&__cards {
display: flex;
flex-direction: column;
gap: $spacer * 2;
margin-bottom: $spacer * 4;
}
&__card {
display: flex;
flex-direction: column;
gap: $spacer;
&-icon {
height: $spacer * 1.5;
width: $spacer * 1.5;
}
&-description {
margin-bottom: 0;
font-size: pxToRem(18);
line-height: pxToRem(27);
color: $neutral-30;
}
}
&__button {
display: flex;
justify-content: center;
}
@include media-breakpoint-up(lg) {
padding-bottom: $spacer * 5;
&__title {
margin-bottom: $spacer * 4;
}
&__cards {
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
gap: pxToRem(30);
}
&__card {
&:nth-of-type(1),
&:nth-of-type(2) {
width: calc(50% - 15px);
}
&:nth-of-type(3),
&:nth-of-type(4),
&:nth-of-type(5) {
width: calc((100% / 3) - 20px);
}
}
}
}
@@ -0,0 +1,77 @@
@use '../helpers/functions' as *;
.rag-evaluation-guide-form {
padding-top: $spacer * 4;
background-color: $neutral-94;
&__title {
font-size: $spacer * 2.5;
line-height: $spacer * 3;
margin-bottom: $spacer * 1.5;
color: $neutral-20;
}
&__listTitle {
font-size: pxToRem(20);
line-height: pxToRem(30);
margin-bottom: $spacer * 1.5;
color: $neutral-30;
}
&__list li {
font-size: pxToRem(20);
line-height: pxToRem(30);
margin-bottom: 0;
color: $neutral-30;
}
&__block {
margin-top: -$spacer * 3;
padding-top: $spacer * 6;
.contact-form__title {
margin-bottom: 0;
}
form.hs-form>fieldset {
margin-bottom: 0;
}
form .hs-form-field {
margin-bottom: pxToRem(20);
}
form .hs_submit {
width: auto;
text-align: left;
margin-top: pxToRem(12);
margin-bottom: $spacer * 0.5;
}
form.hs-form>fieldset.form-columns-2 {
gap: 0
}
fieldset:last-of-type {
order: 1;
p {
margin-bottom: 0;
}
}
}
@include media-breakpoint-up(lg) {
padding-top: $spacer * 7.5;
&__title {
font-size: $spacer * 3;
line-height: pxToRem(58);
}
&__block {
margin-top: -$spacer * 6;
padding-top: $spacer * 6;
}
}
}
@@ -0,0 +1,71 @@
@use '../helpers/functions' as *;
.rag-evaluation-guide-hero {
background: url('/img/stars-pattern.png') $neutral-10;
padding-top: $spacer * 2.5;
padding-bottom: $spacer * 4;
text-align: center;
&__label {
color: $primary-50;
font-size: pxToRem(20);
line-height: pxToRem(30);
font-weight: $font-weight-semibold;
margin-bottom: $spacer * 0.5;
}
&__title {
font-size: $spacer * 2.5;
line-height: $spacer * 3;
margin-bottom: $spacer * 1.5;
color: $neutral-98;
}
&__description {
font-size: pxToRem(18);
line-height: pxToRem(27);
margin-bottom: $spacer * 2;
color: $neutral-70;
}
&__buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: $spacer * 1.5;
}
&__preview img {
display: block;
width: 100%;
max-width: pxToRem(536);
margin: 0 auto;
}
@include media-breakpoint-up(lg) {
padding-bottom: $spacer * 7.5;
text-align: left;
&__content {
margin-bottom: 0;
}
&__title {
font-size: $spacer * 4;
line-height: pxToRem(77);
}
&__description {
font-size: $spacer * 1.5;
line-height: pxToRem(34);
}
&__buttons {
justify-content: flex-start;
}
&__preview img {
margin-right: 0;
}
}
}
@@ -0,0 +1,79 @@
@use '../helpers/functions' as *;
.rag-evaluation-guide-integrations {
padding-top: $spacer * 4;
padding-bottom: $spacer * 4;
background-color: $neutral-10;
&__reasons {
margin-bottom: $spacer * 4;
&-card {
max-width: pxToRem(350);
margin: 0 auto;
img {
width: 100%;
margin-bottom: $spacer * 2;
}
p {
color: $neutral-70;
font-size: $spacer * 1.5;
line-height: pxToRem(34);
margin-bottom: 0;
text-align: center;
}
}
}
&__frameworks {
&-card {
max-width: pxToRem(350);
margin: 0 auto;
img {
width: 100%;
margin-bottom: $spacer * 2;
}
p {
color: $neutral-70;
font-size: pxToRem(18);
line-height: pxToRem(27);
margin-bottom: 0;
text-align: center;
}
}
}
&__title {
font-size: $spacer * 2.5;
line-height: $spacer * 3;
text-align: center;
margin-bottom: $spacer * 1.5;
color: $neutral-98;
}
&__description {
font-size: pxToRem(20);
line-height: pxToRem(30);
text-align: center;
margin-bottom: $spacer * 5;
color: $neutral-70;
}
@include media-breakpoint-up(lg) {
padding-top: $spacer * 7.5;
padding-bottom: $spacer * 7.5;
&__title {
font-size: $spacer * 3;
line-height: pxToRem(58);
}
&__reasons {
margin-bottom: $spacer * 7.5;
}
}
}
@@ -0,0 +1,41 @@
@use '../helpers/functions' as *;
.rag-evaluation-guide-kubernetes-clusters {
padding-top: $spacer * 4;
padding-bottom: $spacer * 2.5;
background-color: $neutral-94;
&__title {
font-size: $spacer * 2;
line-height: $spacer * 2.5;
margin-bottom: $spacer * 1.5;
color: $neutral-20;
}
&__description {
font-size: pxToRem(20);
line-height: pxToRem(30);
margin-bottom: $spacer * 1.5;
color: $neutral-20;
}
&__preview img {
display: block;
margin: 0 auto;
width: 100%;
max-width: pxToRem(540);
}
@include media-breakpoint-up(lg) {
padding-top: $spacer * 5;
&__description {
max-width: pxToRem(445);
}
&__title {
font-size: $spacer * 3;
line-height: pxToRem(58);
}
}
}
@@ -0,0 +1,42 @@
{{ with (.Site.GetPage "/retrieval-augmented-generation/rag-evaluation-guide-about") }}
<section class="rag-evaluation-guide-about">
<div class="container">
<div class="row align-items-lg-center">
<div class="rag-evaluation-guide-about__preview col-12 col-lg-6">
<img src="{{ .Params.image.src }}" alt="{{ .Params.image.alt }}" />
</div>
<div class="col-12 col-lg-6 mt-5 mt-lg-0">
<h2 class="rag-evaluation-guide-about__title">{{ .Params.title }}</h2>
<p class="rag-evaluation-guide-about__text">{{ .Params.text }}</p>
<h6 class="rag-evaluation-guide-about__subtitle">{{ .Params.subtitle }}</h6>
<p class="rag-evaluation-guide-about__listTitle">{{ .Params.listTitle }}</p>
<ul class="rag-evaluation-guide-about__list">
{{ range .Params.list }}
<li>{{ .text }}</li>
{{ end }}
</ul>
</div>
</div>
<div class="row g-4 mt-4 mt-lg-5">
{{ range .Params.features }}
<div class="col-12 col-lg-4">
<div class="card rag-evaluation-guide-about__card">
<img class="rag-evaluation-guide-about__card-icon" src="{{ .icon.src }}" alt="{{ .icon.alt }}" />
<h6 class="rag-evaluation-guide-about__card-title">{{ .title }}</h6>
<p class="rag-evaluation-guide-about__card-description">{{ .description }}</p>
</div>
</div>
{{ end }}
</div>
<div class="rag-evaluation-guide-about__button">
<a href="{{ .Params.downloadGuide.url }}" class="button button_contained button_lg">
{{ .Params.downloadGuide.text }}
</a>
</div>
</div>
</section>
{{ end }}
@@ -0,0 +1,21 @@
{{ with (.Site.GetPage "/retrieval-augmented-generation/rag-evaluation-guide-features") }}
<section class="rag-evaluation-guide-features">
<div class="container">
<h3 class="rag-evaluation-guide-features__title">{{ .Params.title }}</h3>
<div class="rag-evaluation-guide-features__cards">
{{ range .Params.cards }}
<div class="card rag-evaluation-guide-features__card">
<img class="rag-evaluation-guide-features__card-icon" src="{{ .icon.src }}" alt="{{ .icon.alt }}" />
<p class="rag-evaluation-guide-features__card-description">{{ .description }}</p>
</div>
{{ end }}
</div>
<div class="rag-evaluation-guide-features__button">
<a href="{{ .Params.downloadGuide.url }}" class="button button_contained button_lg">
{{ .Params.downloadGuide.text }}
</a>
</div>
</div>
</section>
{{ end }}
@@ -0,0 +1,22 @@
{{ with (.Site.GetPage "/retrieval-augmented-generation/rag-evaluation-guide-form") }}
<section class="rag-evaluation-guide-form">
<div class="container">
<div class="row align-items-lg-center">
<div class="rag-evaluation-guide-form__content col-12 col-lg-6">
<h2 class="rag-evaluation-guide-form__title">{{ .Params.title }}</h2>
<p class="rag-evaluation-guide-form__listTitle">{{ .Params.listTitle }}</p>
<ul class="rag-evaluation-guide-form__list">
{{ range .Params.list }}
<li>{{ .text }}</li>
{{ end }}
</ul>
</div>
<div class="rag-evaluation-guide-form__block col-12 col-lg-6" id="form">
{{ partial "contact-form" .Params.form }}
</div>
</div>
</div>
</section>
{{ end }}
@@ -0,0 +1,25 @@
{{ with (.Site.GetPage "/retrieval-augmented-generation/rag-evaluation-guide-hero") }}
<section class="rag-evaluation-guide-hero">
<div class="container">
<div class="row align-items-lg-center">
<div class="rag-evaluation-guide-hero__content col-12 col-lg-6">
<p class="rag-evaluation-guide-hero__label">{{ .Params.label }}</p>
<h1 class="rag-evaluation-guide-hero__title">{{ .Params.title }}</h1>
<p class="rag-evaluation-guide-hero__description">{{ .Params.description }}</p>
<div class="rag-evaluation-guide-hero__buttons">
<a href="{{ .Params.downloadGuide.url }}" class="button button_contained button_lg">
{{ .Params.downloadGuide.text }}
</a>
<a href="{{ .Params.learnMore.url }}" class="button button_outlined button_lg">
{{ .Params.learnMore.text }}
</a>
</div>
</div>
<div class="rag-evaluation-guide-hero__preview col-12 col-lg-6 mt-5 mt-lg-0">
<img src="{{ .Params.image.src }}" alt="{{ .Params.image.alt }}" />
</div>
</div>
</div>
</section>
{{ end }}
@@ -0,0 +1,35 @@
{{ with (.Site.GetPage "/retrieval-augmented-generation/rag-evaluation-guide-integrations") }}
<section class="rag-evaluation-guide-integrations">
<div class="container">
<div class="rag-evaluation-guide-integrations__reasons">
<h3 class="rag-evaluation-guide-integrations__title">{{ .Params.title }}</h3>
<p class="rag-evaluation-guide-integrations__description">{{ .Params.description }}</p>
<div class="rag-evaluation-guide-integrations__reasons-cards row g-4">
{{ range .Params.cards }}
<div class="col-12 col-lg-4">
<div class="rag-evaluation-guide-integrations__reasons-card">
<img src="{{ .image.src }}" alt="{{ .image.alt }}" />
<p>{{ .description }}</p>
</div>
</div>
{{ end }}
</div>
</div>
<div class="rag-evaluation-guide-integrations__frameworks">
<h3 class="rag-evaluation-guide-integrations__title">{{ .Params.frameworksTitle }}</h3>
<p class="rag-evaluation-guide-integrations__description">{{ .Params.frameworksDescription }}</p>
<div class="rag-evaluation-guide-integrations__frameworks-cards row g-4">
{{ range .Params.frameworksCards }}
<div class="col-12 col-lg-4">
<div class="rag-evaluation-guide-integrations__frameworks-card">
<img src="{{ .image.src }}" alt="{{ .image.alt }}" />
<p>{{ .description }}</p>
</div>
</div>
{{ end }}
</div>
</div>
</div>
</section>
{{ end }}
@@ -0,0 +1,18 @@
{{ with (.Site.GetPage "/retrieval-augmented-generation/rag-evaluation-guide-kubernetes-clusters") }}
<section class="rag-evaluation-guide-kubernetes-clusters">
<div class="container">
<div class="row justify-content-lg-between align-items-lg-center">
<div class="col-12 col-lg-6 rag-evaluation-guide-kubernetes-clusters__content">
<h1 class="rag-evaluation-guide-kubernetes-clusters__title">{{ .Params.title }}</h1>
<p class="rag-evaluation-guide-kubernetes-clusters__description">{{ .Params.description }}</p>
<a href="{{ .Params.downloadGuide.url }}" class="button button_contained button_lg">
{{ .Params.downloadGuide.text }}
</a>
</div>
<div class="col-12 col-lg-6 rag-evaluation-guide-kubernetes-clusters__preview mt-5 mt-lg-0">
<img src="{{ .Params.image.src }}" alt="{{ .Params.image.alt }}" />
</div>
</div>
</div>
</section>
{{ end }}
@@ -1 +1,74 @@
{{ define "main" }}{{ end }}
<!doctype html>
<html lang="en">
{{- partial "head.html" . -}}
<body>
<main>
<header class="site-header">
{{ with (.Site.GetPage "/headless/menu") }}
<div class="main-menu z-2">
<a href="/">
{{ partial "logo.html" . }}
</a>
<div class="d-flex d-xl-none justify-content-end align-items-center gap-4">
<button type="button" class="main-menu__trigger">{{ partial "svg" "hamburger-menu-white.svg" }}</button>
</div>
<div class="main-menu__buttons">
<a data-metric-loc="nav" href="{{ .Params.logIn.url }}" class="menu-link mx-3">{{ .Params.logIn.text }}</a>
<a data-metric-loc="nav" href="{{ .Params.startFree.url }}" class="button button_contained button_sm">{{ .Params.startFree.text }}</a>
</div>
</div>
{{ end }}
{{ with (.Site.GetPage "/headless/menu") }}
<div class="menu-mobile">
<div class="menu-mobile__header">
{{ partial "logo.html" . }}
<button type="button" class="menu-mobile__close">{{ partial "svg" "close.svg" }}</button>
</div>
<div class="menu-mobile__controls">
<a data-metric-loc="mobile_nav" href="{{ .Params.logIn.url }}" class="button button_outlined button_lg menu-mobile__login"
>{{ .Params.logIn.text }}</a
>
<a data-metric-loc="mobile_nav" href="{{ .Params.startFree.url }}" class="button button_contained button_lg">{{ .Params.startFree.text }}</a>
</div>
</div>
{{ end }}
</header>
{{ partial "rag-evaluation-guide-hero" . }}
{{ partial "rag-evaluation-guide-form" . }}
{{ partial "rag-evaluation-guide-about" . }}
{{ partial "rag-evaluation-guide-integrations" . }}
{{ partial "rag-evaluation-guide-kubernetes-clusters" . }}
{{ partial "rag-evaluation-guide-features" . }}
{{ partial "customer-list" . }}
</main>
{{ with (.Site.GetPage "/headless/footer") }}
<footer class="footer">
<div class="footer__top container">
<a href="/" title="Go to Home Page">
<img class="footer__logo mb-0" src="/img/logo-white.png" alt="Qdrant Logo" />
</a>
</div>
<div class="footer__bottom container">
<div class="footer__bottom-content">
<span>{{ .Params.copyright }}</span>
<div class="footer__bottom-links">
<a href="{{ .Params.termsLink.url }}">{{ .Params.termsLink.text }}</a>
<a href="{{ .Params.privacyLink.url }}">{{ .Params.privacyLink.text }}</a>
<a href="{{ .Params.impressumLink.url }}">{{ .Params.impressumLink.text }}</a>
</div>
</div>
</div>
</footer>
{{ end }}
</body>
{{ partial "js.html" . }}
</html>
@@ -0,0 +1,10 @@
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2753_1634)">
<path d="M17.2284 21.3921C16.3003 22.3484 15.1993 23.0452 14 23.4158V9.72653V8.72653H13H11H10V9.72653V23.4162C8.80102 23.0459 7.69998 22.3486 6.77159 21.3921L6.06522 20.6643L6.08367 20.6458L5.64684 19.9673C4.69753 18.4926 4.10211 16.6761 4.02117 14.6859L3.98216 13.7265H3.98153L4.09038 12.8497C4.28956 11.2453 4.83317 9.74594 5.64249 8.48024L6.07539 7.80322L6.06615 7.79397L6.77264 7.06595C7.0989 6.72975 7.44213 6.42643 7.80553 6.15981L8.08053 5.95806L8.17493 5.63031C8.28612 5.2443 8.45938 4.88208 8.6842 4.54199L9.1345 3.86082L9.12964 3.85595L9.811 3.40371C10.4559 2.9757 11.2057 2.72653 12 2.72653C12.7942 2.72653 13.5443 2.97566 14.1905 3.40403L14.8717 3.85561L14.8672 3.86016L15.3162 4.54107C15.5415 4.88273 15.7148 5.24511 15.8259 5.63179L15.9202 5.95988L16.1955 6.16181C16.5604 6.42954 16.9032 6.73097 17.2264 7.06495L17.9335 7.7956L17.9247 7.80438L18.3575 8.48124C19.1669 9.74706 19.7105 11.2454 19.9096 12.8497L20.0185 13.7265H20.0179L19.9788 14.6859C19.8979 16.675 19.3025 18.4916 18.353 19.9675L17.9165 20.646L17.9348 20.6643L17.2284 21.3921Z" stroke="#2F6FF0" stroke-width="2"/>
</g>
<defs>
<clipPath id="clip0_2753_1634">
<rect width="24" height="24" fill="white" transform="translate(0 0.726562)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

@@ -0,0 +1,10 @@
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2753_1487)">
<path d="M14 1.72656L14.7071 1.01946L14.4142 0.726562H14V1.72656ZM14 7.72656H13V8.72656H14V7.72656ZM20 7.72656H21V7.31235L20.7071 7.01946L20 7.72656ZM6 6.72656C5.44772 6.72656 5 7.17428 5 7.72656C5 8.27885 5.44772 8.72656 6 8.72656V6.72656ZM10 8.72656C10.5523 8.72656 11 8.27885 11 7.72656C11 7.17428 10.5523 6.72656 10 6.72656V8.72656ZM6 11.7266C5.44772 11.7266 5 12.1743 5 12.7266C5 13.2788 5.44772 13.7266 6 13.7266V11.7266ZM11 13.7266C11.5523 13.7266 12 13.2788 12 12.7266C12 12.1743 11.5523 11.7266 11 11.7266V13.7266ZM6 16.7266C5.44772 16.7266 5 17.1743 5 17.7266C5 18.2788 5.44772 18.7266 6 18.7266V16.7266ZM10 18.7266C10.5523 18.7266 11 18.2788 11 17.7266C11 17.1743 10.5523 16.7266 10 16.7266V18.7266ZM21.2929 23.4337C21.6834 23.8242 22.3166 23.8242 22.7071 23.4337C23.0976 23.0431 23.0976 22.41 22.7071 22.0195L21.2929 23.4337ZM19.8281 19.1405C19.4376 18.7499 18.8044 18.7499 18.4139 19.1405C18.0234 19.531 18.0234 20.1641 18.4139 20.5547L19.8281 19.1405ZM19 10.7266C19 11.2788 19.4477 11.7266 20 11.7266C20.5523 11.7266 21 11.2788 21 10.7266H19ZM2 1.72656V0.726562C1.44772 0.726562 1 1.17428 1 1.72656L2 1.72656ZM2 23.7266H1C1 24.2788 1.44772 24.7266 2 24.7266V23.7266ZM12 24.7266C12.5523 24.7266 13 24.2788 13 23.7266C13 23.1743 12.5523 22.7266 12 22.7266V24.7266ZM13 1.72656V7.72656H15V1.72656H13ZM14 8.72656H20V6.72656H14V8.72656ZM20.7071 7.01946L14.7071 1.01946L13.2929 2.43367L19.2929 8.43367L20.7071 7.01946ZM6 8.72656H10V6.72656H6V8.72656ZM6 13.7266H11V11.7266H6V13.7266ZM6 18.7266H10V16.7266H6V18.7266ZM22.7071 22.0195L19.8281 19.1405L18.4139 20.5547L21.2929 23.4337L22.7071 22.0195ZM19 17.7266C19 18.8311 18.1046 19.7266 17 19.7266V21.7266C19.2091 21.7266 21 19.9357 21 17.7266H19ZM17 19.7266C15.8954 19.7266 15 18.8311 15 17.7266H13C13 19.9357 14.7909 21.7266 17 21.7266V19.7266ZM15 17.7266C15 16.622 15.8954 15.7266 17 15.7266V13.7266C14.7909 13.7266 13 15.5174 13 17.7266H15ZM17 15.7266C18.1046 15.7266 19 16.622 19 17.7266H21C21 15.5174 19.2091 13.7266 17 13.7266V15.7266ZM21 10.7266V7.72656H19V10.7266H21ZM14 0.726562H2V2.72656H14V0.726562ZM1 1.72656V23.7266H3V1.72656H1ZM2 24.7266H12V22.7266H2V24.7266Z" fill="#2F6FF0"/>
</g>
<defs>
<clipPath id="clip0_2753_1487">
<rect width="24" height="24" fill="white" transform="translate(0 0.726562)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

@@ -0,0 +1,17 @@
<svg width="350" height="151" viewBox="0 0 350 151" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 8.36328C0 3.945 3.58172 0.363281 8 0.363281H342C346.418 0.363281 350 3.945 350 8.36328V142.363C350 146.782 346.418 150.363 342 150.363H8C3.58172 150.363 0 146.782 0 142.363V8.36328Z" fill="url(#paint0_linear_2449_6185)"/>
<path d="M227.446 70.2718C230.366 70.2117 232.579 71.7716 233.162 74.3413H222.268C222.68 72.0551 224.887 70.3254 227.446 70.2718ZM237.649 78.3051C238.321 72.0028 234.725 67.024 229.18 66.4701C222.745 65.8299 218.232 69.5232 217.727 75.8424C217.282 81.4405 221.272 86.2194 226.74 86.6336C231.828 87.0164 236.935 83.877 237.148 80.1942C235.785 80.1942 234.422 80.1785 233.061 80.2125C232.858 80.2177 232.599 80.411 232.469 80.5926C230.993 82.6699 228.913 83.0709 226.588 82.6725C224.33 82.2845 222.949 80.8526 222.224 78.7349C222.184 78.6173 222.206 78.4788 222.198 78.3038L237.649 78.3051Z" fill="#F0F3FA"/>
<path d="M127.946 61.843C128.759 61.7999 129.472 62.1984 129.989 62.9417C134.159 68.9448 138.328 74.9479 142.484 80.9601C143.342 82.2025 143.068 83.6892 141.895 84.507C140.74 85.3105 139.194 84.9904 138.311 83.7232C135.437 79.5975 132.576 75.4613 129.71 71.329C129.657 71.2506 129.605 71.1736 129.55 71.0965C128.414 69.4896 127.29 69.487 126.174 71.0939C123.279 75.264 120.383 79.4328 117.497 83.6095C117.02 84.2993 116.439 84.8114 115.581 84.9029C114.528 85.0166 113.682 84.6455 113.127 83.7271C112.559 82.7865 112.607 81.8419 113.225 80.9444C114.612 78.9325 116.013 76.9297 117.41 74.9243C120.162 70.9711 122.921 67.0204 125.666 63.0619C126.198 62.2937 126.868 61.8273 127.946 61.843Z" fill="#FF008C"/>
<path d="M160.498 70.4122C164.723 69.516 167.975 72.3157 167.799 76.7262C167.776 77.4067 167.673 78.082 167.492 78.7382C166.701 81.4921 164.382 83.0402 161.5 82.7907C158.566 82.536 156.444 80.4953 156.15 77.6368C156.109 77.2397 156.098 76.8399 156.084 76.6074C156.132 73.3478 157.872 70.9688 160.498 70.4122ZM171.803 66.7542H167.66V68.3677C167.502 68.3128 167.429 68.3063 167.381 68.2684C164.572 66.0736 161.434 65.9625 158.217 66.9894C154.355 68.2227 151.902 71.9107 151.86 76.3774C151.822 80.349 153.332 83.6229 156.899 85.5055C160.446 87.3763 164.052 87.1777 167.416 84.8039C167.462 84.7726 167.536 84.7804 167.676 84.7582V86.3416H171.804L171.803 66.7542Z" fill="#F0F3FA"/>
<path d="M209.545 70.5595H199.355V66.7656H215.295C215.295 67.8748 215.321 68.9709 215.274 70.0644C215.264 70.3021 215.019 70.5504 214.841 70.7594C211.719 74.4279 208.587 78.0924 205.461 81.7596C205.309 81.9346 205.168 82.1188 204.936 82.4076H215.246V86.3216H199.173C199.173 85.2046 199.151 84.1059 199.191 83.0085C199.199 82.7904 199.417 82.5604 199.578 82.3684C202.753 78.6202 205.935 74.876 209.112 71.1304C209.23 70.9919 209.335 70.8404 209.545 70.5595Z" fill="#F0F3FA"/>
<path d="M180.769 86.501H176.626V66.8966H180.767V69.0065C181.866 68.3428 182.897 67.619 184.013 67.0756C185.174 66.5099 186.465 66.5138 187.801 66.6026V70.6265C187.588 70.6421 187.386 70.6683 187.182 70.6709C183.939 70.7088 181.687 72.526 181.003 75.7294C180.838 76.5028 180.787 77.3115 180.779 78.1058C180.752 80.6429 180.769 83.18 180.769 85.7171V86.501Z" fill="#F0F3FA"/>
<path d="M191.324 66.7188H195.415V86.3414H191.326L191.324 66.7188Z" fill="#F0F3FA"/>
<path d="M127.844 85.1226C129.561 85.1187 130.908 86.429 130.924 88.1196C130.941 89.8219 129.531 91.2524 127.853 91.2354C127.046 91.2258 126.274 90.8981 125.706 90.3234C125.138 89.7487 124.82 88.9733 124.82 88.1653C124.812 87.7652 124.886 87.3677 125.035 86.9963C125.184 86.6249 125.406 86.2873 125.688 86.0034C125.97 85.7195 126.306 85.4952 126.677 85.3437C127.047 85.1921 127.444 85.1165 127.844 85.1213V85.1226Z" fill="#FF008C"/>
<path d="M196.251 61.2721C196.255 62.9052 194.997 64.1986 193.394 64.2129C193.007 64.2171 192.623 64.1443 192.264 63.9987C191.905 63.8531 191.579 63.6376 191.304 63.3648C191.03 63.092 190.812 62.7674 190.664 62.4097C190.516 62.052 190.44 61.6684 190.441 61.2813C190.442 60.8999 190.517 60.5222 190.664 60.17C190.81 59.8178 191.024 59.4978 191.294 59.2285C191.565 58.9591 191.885 58.7456 192.238 58.6002C192.59 58.4548 192.968 58.3803 193.35 58.381C193.731 58.3772 194.109 58.4493 194.462 58.5931C194.815 58.7369 195.136 58.9495 195.406 59.2186C195.676 59.4877 195.89 59.8079 196.035 60.1604C196.18 60.513 196.254 60.8909 196.251 61.2721Z" fill="#F0F3FA"/>
<defs>
<linearGradient id="paint0_linear_2449_6185" x1="175" y1="0.363281" x2="175" y2="150.363" gradientUnits="userSpaceOnUse">
<stop stop-color="#161E33"/>
<stop offset="1" stop-color="#0E1424"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

@@ -0,0 +1,38 @@
<svg width="344" height="152" viewBox="0 0 344 152" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.90918 7.99999C0.90918 3.58172 4.4909 0 8.90918 0H336C340.418 0 344 3.58172 344 8V143.364C344 147.782 340.418 151.364 336 151.364H8.90919C4.49091 151.364 0.90918 147.782 0.90918 143.364V7.99999Z" fill="url(#paint0_linear_2449_5572)"/>
<path d="M176.001 74.9062L146.525 97.2235" stroke="#717C99" stroke-width="0.842162" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="3.37 3.37"/>
<path d="M176.422 74.9062V114.488" stroke="#717C99" stroke-width="0.842162" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="3.37 3.37"/>
<path d="M176.422 74.9062L246.347 116.726" stroke="#717C99" stroke-width="0.842162" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="3.37 3.37"/>
<path d="M176.422 74.9062L176.342 36.6291" stroke="#717C99" stroke-width="0.842162" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="3.37 3.37"/>
<path d="M176.422 74.9062L241.932 36.6292" stroke="#717C99" stroke-width="0.842162" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="3.37 3.37"/>
<path d="M176.422 74.9062L115.165 41.6746" stroke="#717C99" stroke-width="0.842162" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="3.37 3.37"/>
<path d="M176.422 74.9071H115.48M115.48 74.9071L82.3693 105.059M115.48 74.9071L85.5227 64.6953M115.48 74.9071L116.426 113.888" stroke="#E02828" stroke-width="0.842162" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="3.37 3.37"/>
<path d="M176.442 30.2734L171.711 32.9766V38.383L176.442 41.0862L181.172 38.383V32.9766L176.442 30.2734Z" fill="#717C99"/>
<path d="M267.895 53.0098L263.164 55.713V61.1194L267.895 63.8226L272.625 61.1194V55.713L267.895 53.0098Z" fill="#717C99"/>
<path d="M270.422 86.6973L265.691 89.4005V94.8069L270.422 97.5101L275.153 94.8069V89.4005L270.422 86.6973Z" fill="#717C99"/>
<g clip-path="url(#clip0_2449_5572)">
<path d="M82.3695 109.579V108.528H80.7413C80.6272 107.609 80.3156 106.747 79.8468 106.014L81.0104 104.848L80.2667 104.106L79.1872 105.187C78.998 104.991 78.7956 104.813 78.5786 104.654C78.5039 104.394 78.3888 104.156 78.2443 103.936L79.0626 103.118L78.3195 102.375L77.5043 103.19C77.0865 102.913 76.5925 102.747 76.0627 102.747C75.5329 102.747 75.0389 102.913 74.6216 103.19L73.8064 102.375L73.0633 103.118L73.8816 103.936C73.737 104.155 73.6219 104.394 73.5473 104.653C73.3302 104.812 73.1279 104.991 72.9382 105.187L71.8587 104.106L71.115 104.848L72.2786 106.013C71.8098 106.746 71.4981 107.609 71.3841 108.528H69.7559V109.579H71.3441C71.3904 110.716 71.7309 111.762 72.2817 112.618L71.115 113.783L71.8576 114.527L72.9376 113.448C73.6482 114.18 74.5464 114.668 75.5371 114.797V106.951H76.5882V114.797C77.5789 114.667 78.4771 114.18 79.1877 113.448L80.2677 114.527L81.0104 113.783L79.8436 112.618C80.3944 111.762 80.735 110.716 80.7812 109.579H82.3695Z" fill="#E02828"/>
</g>
<path d="M85.1466 58.9043L80.416 61.6075V67.0139L85.1466 69.7171L89.8772 67.0139V61.6075L85.1466 58.9043Z" fill="#E02828"/>
<path d="M211.307 49.0488L206.576 51.752V57.1584L211.307 59.8616L216.037 57.1584V51.752L211.307 49.0488Z" fill="#717C99"/>
<path d="M241.789 31.1152L237.059 33.8184V39.2248L241.789 41.928L246.52 39.2248V33.8184L241.789 31.1152Z" fill="#717C99"/>
<path d="M176.1 69.8535L171.369 72.5567V77.9631L176.1 80.6663L180.83 77.9631V72.5567L176.1 69.8535Z" fill="#038585"/>
<path d="M115.463 69.8535L110.732 72.5567V77.9631L115.463 80.6663L120.194 77.9631V72.5567L115.463 69.8535Z" fill="#E02828"/>
<path d="M141.57 49.0488L136.84 51.752V57.1584L141.57 59.8616L146.301 57.1584V51.752L141.57 49.0488Z" fill="#717C99"/>
<path d="M111.254 36.168L106.523 38.8712V44.2776L111.254 46.9808L115.985 44.2776V38.8712L111.254 36.168Z" fill="#717C99"/>
<path d="M146.624 91.75L141.894 94.4532V99.8596L146.624 102.563L151.355 99.8596V94.4532L146.624 91.75Z" fill="#717C99"/>
<path d="M116.307 108.594L111.576 111.297V116.703L116.307 119.407L121.037 116.703V111.297L116.307 108.594Z" fill="#E02828"/>
<path d="M176.442 108.729L171.711 111.432V116.838L176.442 119.541L181.172 116.838V111.432L176.442 108.729Z" fill="#717C99"/>
<path d="M211.307 89.9531L206.576 92.6563V98.0627L211.307 100.766L216.037 98.0627V92.6563L211.307 89.9531Z" fill="#717C99"/>
<path d="M243.473 110.279L238.742 112.982V118.389L243.473 121.092L248.203 118.389V112.982L243.473 110.279Z" fill="#717C99"/>
<path d="M238.419 69.8535L233.688 72.5567V77.9631L238.419 80.6663L243.15 77.9631V72.5567L238.419 69.8535Z" fill="#717C99"/>
<defs>
<linearGradient id="paint0_linear_2449_5572" x1="172.455" y1="0" x2="172.455" y2="151.364" gradientUnits="userSpaceOnUse">
<stop stop-color="#161E33"/>
<stop offset="1" stop-color="#0E1424"/>
</linearGradient>
<clipPath id="clip0_2449_5572">
<rect width="12.6136" height="12.6136" fill="white" transform="translate(69.7559 102.221)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

@@ -0,0 +1,38 @@
<svg width="344" height="152" viewBox="0 0 344 152" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.454102 7.99999C0.454102 3.58172 4.03582 0 8.4541 0H335.545C339.963 0 343.545 3.58172 343.545 8V143.364C343.545 147.782 339.963 151.364 335.545 151.364H8.45411C4.03583 151.364 0.454102 147.782 0.454102 143.364V7.99999Z" fill="url(#paint0_linear_2449_5541)"/>
<g clip-path="url(#clip0_2449_5541)">
<path d="M96.5513 58.0234H70.2272C69.1368 58.0234 68.2529 58.915 68.2529 60.0151V81.2591C68.2529 82.3591 69.1368 83.2507 70.2272 83.2507H96.5513C97.6418 83.2507 98.5257 82.3591 98.5257 81.2591V60.0151C98.5257 58.915 97.6418 58.0234 96.5513 58.0234Z" fill="#2F6FF0"/>
<path d="M77.4654 67.9829C78.9192 67.9829 80.0978 66.7939 80.0978 65.3274C80.0978 63.8608 78.9192 62.6719 77.4654 62.6719C76.0116 62.6719 74.833 63.8608 74.833 65.3274C74.833 66.7939 76.0116 67.9829 77.4654 67.9829Z" fill="#F0F3FA"/>
<path d="M93.8331 77.6154L87.9102 66.9934C87.7989 66.7936 87.5943 66.6668 87.3679 66.6555C87.1428 66.6415 86.925 66.7524 86.796 66.9409L81.3219 74.9174L77.9314 71.4971C77.7918 71.357 77.6023 71.29 77.4009 71.3059C77.2048 71.3252 77.0278 71.4327 76.9185 71.598L72.9699 77.5729C72.8357 77.7767 72.8225 78.0383 72.937 78.254C73.0515 78.4698 73.2746 78.6046 73.5175 78.6046H93.2605C93.4942 78.6046 93.7107 78.4798 93.8285 78.276C93.9463 78.0721 93.9489 77.8205 93.8337 77.6154H93.8331Z" fill="#F0F3FA"/>
<path d="M233.409 93.3438H207.085C205.994 93.3438 205.11 94.2353 205.11 95.3354V116.579C205.11 117.679 205.994 118.571 207.085 118.571H233.409C234.499 118.571 235.383 117.679 235.383 116.579V95.3354C235.383 94.2353 234.499 93.3438 233.409 93.3438Z" fill="#038585"/>
<path d="M214.323 103.303C215.777 103.303 216.955 102.114 216.955 100.648C216.955 99.1811 215.777 97.9922 214.323 97.9922C212.869 97.9922 211.69 99.1811 211.69 100.648C211.69 102.114 212.869 103.303 214.323 103.303Z" fill="#F0F3FA"/>
<path d="M230.691 112.936L224.768 102.314C224.656 102.114 224.452 101.987 224.225 101.976C224 101.962 223.782 102.073 223.653 102.261L218.179 110.238L214.789 106.817C214.649 106.677 214.46 106.61 214.258 106.626C214.062 106.645 213.885 106.753 213.776 106.918L209.827 112.893C209.693 113.097 209.68 113.359 209.794 113.574C209.909 113.79 210.132 113.925 210.375 113.925H230.118C230.352 113.925 230.568 113.8 230.686 113.596C230.804 113.392 230.806 113.141 230.691 112.936H230.691Z" fill="#F0F3FA"/>
<path d="M136.915 93.3438H110.591C109.5 93.3438 108.616 94.2353 108.616 95.3354V116.579C108.616 117.679 109.5 118.571 110.591 118.571H136.915C138.005 118.571 138.889 117.679 138.889 116.579V95.3354C138.889 94.2353 138.005 93.3438 136.915 93.3438Z" fill="#8547FF"/>
<path d="M117.829 103.303C119.283 103.303 120.461 102.114 120.461 100.648C120.461 99.1811 119.283 97.9922 117.829 97.9922C116.375 97.9922 115.196 99.1811 115.196 100.648C115.196 102.114 116.375 103.303 117.829 103.303Z" fill="#F0F3FA"/>
<path d="M134.196 112.936L128.273 102.314C128.162 102.114 127.958 101.987 127.731 101.976C127.506 101.962 127.288 102.073 127.159 102.261L121.685 110.238L118.295 106.817C118.155 106.677 117.966 106.61 117.764 106.626C117.568 106.645 117.391 106.753 117.282 106.918L113.333 112.893C113.199 113.097 113.186 113.359 113.3 113.574C113.415 113.79 113.638 113.925 113.881 113.925H133.624C133.857 113.925 134.074 113.8 134.192 113.596C134.31 113.392 134.312 113.141 134.197 112.936H134.196Z" fill="#F0F3FA"/>
<path d="M273.774 58.0234H247.45C246.359 58.0234 245.476 58.915 245.476 60.0151V81.2591C245.476 82.3591 246.359 83.2507 247.45 83.2507H273.774C274.864 83.2507 275.748 82.3591 275.748 81.2591V60.0151C275.748 58.915 274.864 58.0234 273.774 58.0234Z" fill="#DC244C"/>
<path d="M254.688 67.9829C256.142 67.9829 257.32 66.7939 257.32 65.3274C257.32 63.8608 256.142 62.6719 254.688 62.6719C253.234 62.6719 252.056 63.8608 252.056 65.3274C252.056 66.7939 253.234 67.9829 254.688 67.9829Z" fill="#F0F3FA"/>
<path d="M271.056 77.6154L265.133 66.9934C265.022 66.7936 264.817 66.6668 264.591 66.6555C264.365 66.6415 264.148 66.7524 264.019 66.9409L258.545 74.9174L255.154 71.4971C255.014 71.357 254.825 71.29 254.624 71.3059C254.427 71.3252 254.25 71.4327 254.141 71.598L250.193 77.5729C250.058 77.7767 250.045 78.0383 250.16 78.254C250.274 78.4698 250.497 78.6046 250.74 78.6046H270.483C270.717 78.6046 270.933 78.4798 271.051 78.276C271.169 78.0721 271.172 77.8205 271.056 77.6154H271.056Z" fill="#F0F3FA"/>
<path d="M172.315 47.9318L172.315 71.267M172.315 71.267L245.474 71.267M172.315 71.267L172.315 107.531M172.315 107.531L205.425 107.531M172.315 107.531L139.204 107.531" stroke="#8F98B3" stroke-width="1.03202" stroke-dasharray="4.13 4.13"/>
<path d="M172.316 47.9304L172.316 63.0094C172.316 67.5692 168.62 71.2656 164.06 71.2656L98.5264 71.2656" stroke="#8F98B3" stroke-width="1.03202" stroke-dasharray="4.13 4.13"/>
<rect x="109.058" y="30.7149" width="125.884" height="16.7761" rx="8.38807" fill="#28324D"/>
<rect x="109.058" y="30.7149" width="125.884" height="16.7761" rx="8.38807" stroke="#3D4866" stroke-width="0.882954"/>
<rect x="117.445" y="38.2207" width="77.7" height="1.76591" rx="0.882954" fill="#8F98B3"/>
<g clip-path="url(#clip1_2449_5541)">
<path d="M225.669 43.5195L222.868 40.7188" stroke="#2F6FF0" stroke-width="0.882954" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M220.371 41.7531C222.321 41.7531 223.903 40.1718 223.903 38.2213C223.903 36.2707 222.321 34.6895 220.371 34.6895C218.42 34.6895 216.839 36.2707 216.839 38.2213C216.839 40.1718 218.42 41.7531 220.371 41.7531Z" stroke="#2F6FF0" stroke-width="0.882954" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</g>
<defs>
<linearGradient id="paint0_linear_2449_5541" x1="172" y1="0" x2="172" y2="151.364" gradientUnits="userSpaceOnUse">
<stop stop-color="#161E33"/>
<stop offset="1" stop-color="#0E1424"/>
</linearGradient>
<clipPath id="clip0_2449_5541">
<rect width="212.54" height="90.8182" fill="white" transform="translate(65.7295 30.2734)"/>
</clipPath>
<clipPath id="clip1_2449_5541">
<rect width="10.5955" height="10.5955" fill="white" transform="translate(215.958 33.8047)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 6.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 20 KiB

@@ -0,0 +1,142 @@
<svg width="350" height="151" viewBox="0 0 350 151" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 8.36328C0 3.945 3.58172 0.363281 8 0.363281H342C346.418 0.363281 350 3.945 350 8.36328V142.363C350 146.782 346.418 150.363 342 150.363H8C3.58172 150.363 0 146.782 0 142.363V8.36328Z" fill="url(#paint0_linear_2449_6173)"/>
<g clip-path="url(#clip0_2449_6173)">
<path d="M259.704 76.0891H254.951V59.7227H259.704V76.0891Z" fill="#B8B21A"/>
<g filter="url(#filter0_d_2449_6173)">
<path d="M254.953 76.0352H259.705V87.1222H254.953V76.0352Z" fill="#CEC825"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M245.273 80.3938L247.789 87.1129L252.973 87.1064L242.234 59.709H236.819L230.455 76.0696L235.222 76.0699L233.607 80.3938H245.273ZM235.222 76.0699L239.429 64.7731L243.636 76.0699H235.222Z" fill="#B8B21A"/>
<g filter="url(#filter1_d_2449_6173)">
<path d="M230.456 76.0723H235.224L231.118 87.1183H226.127L230.456 76.0723Z" fill="#CEC825"/>
</g>
<path d="M158.823 72.9664V81.658C158.823 83.3733 159.318 84.7484 160.325 85.7549C161.331 86.7359 162.704 87.2157 164.418 87.2157C165.539 87.2157 166.444 87.0793 167.12 86.7935L167.24 86.7424V82.8215L167.004 82.8688C166.523 82.965 166.044 83.0128 165.564 83.0128C164.8 83.0128 164.281 82.8454 163.964 82.5509C163.648 82.2331 163.47 81.7162 163.47 80.9556V72.7988H167.203V68.5959L163.387 68.5898L158.823 72.9664Z" fill="#D8D7CA"/>
<g filter="url(#filter2_d_2449_6173)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M163.519 63.1816V67.431C163.519 70.5419 160.997 73.0638 157.886 73.0638H155.49V68.518H157.886C158.487 68.518 158.974 68.0313 158.974 67.431V63.1816H163.519Z" fill="#F0EFE3"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M199.63 68.5951L199.635 70.5339C199.606 70.5718 199.663 70.495 199.635 70.5339C200.15 69.8573 200.777 69.3322 201.517 68.962C202.506 68.4549 203.559 68.2012 204.675 68.2012C206.838 68.2012 208.514 68.8826 209.669 70.2685C210.814 71.6418 211.378 73.4024 211.378 75.5334V87.1168H206.695V76.2727C206.695 75.0971 206.406 74.1838 205.852 73.5141C205.31 72.8368 204.44 72.478 203.196 72.478C202.064 72.478 201.199 72.8641 200.576 73.6254C199.97 74.3716 199.66 75.3349 199.66 76.5315V87.1168H194.977V68.5951H199.63Z" fill="#D8D7CA"/>
<g filter="url(#filter3_d_2449_6173)">
<path d="M194.982 68.5957H199.638V87.1202H194.982V68.5957Z" fill="#F0EFE3"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M175.849 79.0901L180.189 79.0996H192.474L192.525 78.9971C192.555 78.9386 192.574 78.8651 192.587 78.7891C192.602 78.7098 192.614 78.6141 192.623 78.5035C192.64 78.2821 192.649 77.9898 192.649 77.6286C192.649 74.9082 191.91 72.7286 190.412 71.1115C188.911 69.4675 186.831 68.6543 184.196 68.6543C181.92 68.6543 179.94 69.51 178.263 71.2107C176.604 72.9169 175.777 75.0968 175.777 77.7329C175.777 78.2005 175.801 78.653 175.849 79.0901ZM188.201 75.7755H180.301C180.404 74.9095 180.784 74.1473 181.445 73.4862C182.146 72.763 183.07 72.3953 184.231 72.3953C185.517 72.3953 186.471 72.7455 187.12 73.4167C187.76 74.0563 188.121 74.8403 188.201 75.7755Z" fill="#D8D7CA"/>
<g filter="url(#filter4_d_2449_6173)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M188.902 79.7531C188.698 80.5507 188.336 81.2117 187.819 81.7415C186.942 82.6405 185.885 83.0873 184.636 83.0873C183.387 83.0873 182.34 82.6389 181.486 81.7415C180.848 81.1029 180.438 80.272 180.265 79.2418L180.234 79.0799L175.846 79.0566L175.875 79.2707C176.102 81.3255 176.918 83.0682 178.321 84.4911C179.975 86.1921 182.085 87.0403 184.636 87.0403C187.164 87.0403 189.274 86.1907 190.951 84.4906C191.801 83.6168 192.433 82.6214 192.846 81.5052L192.905 81.3462L188.956 79.5415L188.902 79.7531Z" fill="#F0EFE3"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M169.365 86.9878H174.012V68.5898H169.365V86.9878Z" fill="#D8D7CA"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M168.7 62.4641C168.7 63.2808 168.992 63.984 169.571 64.5631C170.15 65.1422 170.854 65.4343 171.67 65.4343C172.51 65.4343 173.226 65.1435 173.806 64.5631C174.385 63.984 174.677 63.2808 174.677 62.4641C174.677 61.6248 174.387 60.9086 173.806 60.3282C173.226 59.7478 172.51 59.457 171.67 59.457C170.851 59.457 170.148 59.7631 169.57 60.3667C168.992 60.9455 168.7 61.6483 168.7 62.4641Z" fill="#D8D7CA"/>
<path d="M215.802 72.9664V81.6579C215.802 83.3732 216.297 84.7485 217.303 85.755C218.31 86.7358 219.683 87.2158 221.397 87.2158C222.518 87.2158 223.423 87.0792 224.098 86.7936L224.219 86.7425V82.8216L223.982 82.8689C223.502 82.9649 223.022 83.0129 222.543 83.0129C221.779 83.0129 221.26 82.8455 220.942 82.5508C220.627 82.2332 220.448 81.7161 220.448 80.9556V72.7988H224.182V68.5959L220.366 68.5898L215.802 72.9664Z" fill="#D8D7CA"/>
<g filter="url(#filter5_d_2449_6173)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M220.5 63.1816V67.431C220.5 70.5419 217.978 73.0638 214.867 73.0638H212.471V68.518H214.867C215.467 68.518 215.954 68.0313 215.954 67.431V63.1816H220.5Z" fill="#F0EFE3"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M138.883 84.6617C140.697 86.501 142.979 87.4192 145.714 87.4192C148.474 87.4192 150.757 86.5013 152.547 84.6608C154.361 82.7969 155.265 80.454 155.265 77.6471C155.265 74.8405 154.361 72.5095 152.547 70.67C150.757 68.8298 148.474 67.9121 145.714 67.9121C142.979 67.9121 140.697 68.8303 138.883 70.6695C137.093 72.5093 136.201 74.8411 136.201 77.6471C136.201 80.4531 137.094 82.7978 138.883 84.6617ZM145.714 83.1793C144.364 83.1793 143.22 82.6964 142.272 81.7252C141.354 80.7355 140.885 79.3839 140.885 77.6471C140.885 75.9088 141.355 74.6662 142.27 73.7271C143.219 72.7546 144.363 72.2711 145.714 72.2711C147.066 72.2711 148.2 72.758 149.123 73.7289C150.063 74.6682 150.544 75.9102 150.544 77.6471C150.544 79.4094 150.062 80.7592 149.122 81.7233C148.198 82.6942 147.066 83.1793 145.714 83.1793Z" fill="#D8D7CA"/>
<g filter="url(#filter6_d_2449_6173)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M150.545 78.0135L150.546 77.8145C150.546 77.7925 150.546 77.7704 150.546 77.7484C150.546 76.0114 150.065 74.6871 149.126 73.7478C148.202 72.777 147.067 72.2901 145.716 72.2901C144.365 72.2901 143.221 72.7736 142.272 73.7461C141.357 74.6852 140.887 76.01 140.887 77.7484C140.887 77.7704 140.891 77.9513 140.894 78.0135H136.208L136.203 77.7484C136.203 77.7255 136.203 77.7713 136.203 77.7484C136.203 74.9423 137.095 72.5113 138.885 70.6715C140.699 68.8322 142.981 67.9141 145.716 67.9141C148.476 67.9141 150.758 68.8317 152.548 70.6719C154.363 72.5115 155.267 74.9417 155.267 77.7484C155.267 77.7713 155.267 77.794 155.266 77.8169L155.265 78.0135H150.545Z" fill="#F0EFE3"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M130.229 79.8824C130.129 80.7986 129.808 81.5586 129.264 82.1625C128.624 82.9018 127.7 83.2715 126.492 83.2715C125.26 83.2715 124.348 82.8896 123.756 82.1255C123.165 81.3615 122.869 80.3757 122.869 79.1681V68.5957H118.581V79.9445C118.581 82.0146 119.185 83.7274 120.392 85.0828C121.625 86.4383 123.288 87.116 125.383 87.116C126.467 87.116 127.478 86.8942 128.414 86.4507C129.201 86.0877 129.806 85.6092 130.229 85.0152V79.8824Z" fill="#D8D7CA"/>
<g filter="url(#filter7_d_2449_6173)">
<path d="M134.535 68.5957H130.219V87.1201H134.535V68.5957Z" fill="#F0EFE3"/>
</g>
<path d="M114.668 66.1584C113.369 64.0116 111.705 62.3957 109.675 61.3177C107.649 60.2423 105.448 59.7051 103.076 59.7051C100.704 59.7051 98.5029 60.2423 96.4772 61.3177C94.4464 62.3958 92.7823 64.0118 91.4841 66.1587C90.2065 68.2881 89.5703 70.7522 89.5703 73.5434C89.5703 76.3347 90.2071 78.8116 91.4841 80.9651C92.7823 83.112 94.4464 84.728 96.4772 85.8061C98.5029 86.8815 100.704 87.4188 103.076 87.4188C105.543 87.4188 107.841 86.7913 109.906 85.6185L109.906 85.6178L106.691 82.0729L106.669 82.0908C105.601 82.5686 104.404 82.8092 103.076 82.8092C100.737 82.8092 98.7279 82.0034 97.0398 80.3879C95.3621 78.7578 94.5125 76.4854 94.5125 73.5434C94.5125 70.6011 95.3633 68.3405 97.0402 66.7355C98.7287 65.0952 100.737 64.2776 103.076 64.2776C105.415 64.2776 107.424 65.0962 109.113 66.7364C110.814 68.3417 111.676 70.6019 111.676 73.5434C111.676 75.8033 111.129 77.7156 110.044 79.2903L110.04 79.2937L113.296 82.8829C115.513 80.3547 116.619 77.2373 116.619 73.5434C116.619 70.7517 115.97 68.2878 114.668 66.1584Z" fill="#D8D7CA"/>
<g filter="url(#filter8_d_2449_6173)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M113.583 89.6718L102.396 77.3393L105.617 74.418L116.804 86.7505L113.583 89.6718Z" fill="#F0EFE3"/>
</g>
</g>
<defs>
<filter id="filter0_d_2449_6173" x="253.135" y="76.0352" width="8.38753" height="14.7235" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="1.81779"/>
<feGaussianBlur stdDeviation="0.908893"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2449_6173"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2449_6173" result="shape"/>
</filter>
<filter id="filter1_d_2449_6173" x="224.309" y="76.0723" width="12.7323" height="14.6824" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="1.81779"/>
<feGaussianBlur stdDeviation="0.908893"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2449_6173"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2449_6173" result="shape"/>
</filter>
<filter id="filter2_d_2449_6173" x="153.448" y="63.1816" width="12.1139" height="13.9674" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="2.04231"/>
<feGaussianBlur stdDeviation="1.02115"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2449_6173"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2449_6173" result="shape"/>
</filter>
<filter id="filter3_d_2449_6173" x="192.978" y="67.0924" width="8.66402" height="22.5341" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="0.501093"/>
<feGaussianBlur stdDeviation="1.00219"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2449_6173"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2449_6173" result="shape"/>
</filter>
<filter id="filter4_d_2449_6173" x="173.927" y="79.0566" width="20.8979" height="11.8227" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="1.91916"/>
<feGaussianBlur stdDeviation="0.959578"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2449_6173"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2449_6173" result="shape"/>
</filter>
<filter id="filter5_d_2449_6173" x="210.428" y="63.1816" width="12.1139" height="13.9674" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="2.04231"/>
<feGaussianBlur stdDeviation="1.02115"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2449_6173"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2449_6173" result="shape"/>
</filter>
<filter id="filter6_d_2449_6173" x="134.199" y="67.9141" width="23.0722" height="14.1463" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="2.04231"/>
<feGaussianBlur stdDeviation="1.00219"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2449_6173"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2449_6173" result="shape"/>
</filter>
<filter id="filter7_d_2449_6173" x="128.214" y="67.0924" width="8.32418" height="22.5322" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="0.501093"/>
<feGaussianBlur stdDeviation="1.00219"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2449_6173"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2449_6173" result="shape"/>
</filter>
<filter id="filter8_d_2449_6173" x="100.354" y="74.418" width="18.4918" height="19.3385" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="2.04231"/>
<feGaussianBlur stdDeviation="1.02115"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2449_6173"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2449_6173" result="shape"/>
</filter>
<linearGradient id="paint0_linear_2449_6173" x1="175" y1="0.363281" x2="175" y2="150.363" gradientUnits="userSpaceOnUse">
<stop stop-color="#161E33"/>
<stop offset="1" stop-color="#0E1424"/>
</linearGradient>
<clipPath id="clip0_2449_6173">
<rect width="171.011" height="32" fill="white" transform="translate(89.4941 59.3633)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 668 KiB

@@ -0,0 +1,98 @@
<svg width="536" height="480" viewBox="0 0 536 480" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2438_3636)">
<mask id="path-1-inside-1_2438_3636" fill="white">
<path d="M93.5957 58.8081C93.5957 56.4164 95.5346 54.4775 97.9263 54.4775H435.711C438.102 54.4775 440.041 56.4164 440.041 58.8081V379.27C440.041 381.662 438.102 383.601 435.711 383.601H97.9263C95.5346 383.601 93.5957 381.662 93.5957 379.27V58.8081Z"/>
</mask>
<path d="M93.5957 58.8081C93.5957 56.4164 95.5346 54.4775 97.9263 54.4775H435.711C438.102 54.4775 440.041 56.4164 440.041 58.8081V379.27C440.041 381.662 438.102 383.601 435.711 383.601H97.9263C95.5346 383.601 93.5957 381.662 93.5957 379.27V58.8081Z" fill="url(#paint0_linear_2438_3636)"/>
<line x1="119.578" y1="227.431" x2="414.057" y2="227.431" stroke="#28324D" stroke-width="0.541321"/>
<line x1="119.578" y1="253.414" x2="414.057" y2="253.414" stroke="#28324D" stroke-width="0.541321"/>
<line x1="119.578" y1="279.397" x2="414.057" y2="279.397" stroke="#28324D" stroke-width="0.541321"/>
<line x1="119.578" y1="305.381" x2="414.057" y2="305.381" stroke="#28324D" stroke-width="0.541321"/>
<line x1="119.578" y1="331.364" x2="414.057" y2="331.364" stroke="#28324D" stroke-width="0.541321"/>
<line x1="119.578" y1="357.348" x2="414.057" y2="357.348" stroke="#28324D" stroke-width="0.541321"/>
<line x1="414.327" y1="227.701" x2="414.327" y2="357.618" stroke="#28324D" stroke-width="0.541321"/>
<line x1="381.608" y1="227.701" x2="381.608" y2="357.618" stroke="#28324D" stroke-width="0.541321"/>
<line x1="348.888" y1="227.701" x2="348.888" y2="357.618" stroke="#28324D" stroke-width="0.541321"/>
<line x1="316.167" y1="227.701" x2="316.167" y2="357.618" stroke="#28324D" stroke-width="0.541321"/>
<line x1="283.448" y1="227.701" x2="283.448" y2="357.618" stroke="#28324D" stroke-width="0.541321"/>
<line x1="250.728" y1="227.701" x2="250.728" y2="357.618" stroke="#28324D" stroke-width="0.541321"/>
<line x1="218.008" y1="227.701" x2="218.008" y2="357.618" stroke="#28324D" stroke-width="0.541321"/>
<line x1="185.288" y1="227.701" x2="185.288" y2="357.618" stroke="#28324D" stroke-width="0.541321"/>
<line x1="152.569" y1="227.701" x2="152.569" y2="357.618" stroke="#28324D" stroke-width="0.541321"/>
<line x1="119.849" y1="227.701" x2="119.849" y2="357.618" stroke="#28324D" stroke-width="0.541321"/>
<path d="M140.147 320.805C140.147 320.207 140.632 319.723 141.23 319.723L149.891 319.723C150.489 319.723 150.974 320.207 150.974 320.805L150.974 356.532C150.974 357.13 150.489 357.615 149.891 357.615L141.23 357.615C140.632 357.615 140.147 357.13 140.147 356.532L140.147 320.805Z" fill="#0040A1"/>
<path d="M153.14 303.483C153.14 302.885 153.624 302.4 154.222 302.4L162.883 302.4C163.481 302.4 163.966 302.885 163.966 303.483L163.966 356.532C163.966 357.13 163.481 357.615 162.883 357.615L154.222 357.615C153.624 357.615 153.14 357.13 153.14 356.532L153.14 303.483Z" fill="#2F6FF0"/>
<path d="M166.131 320.805C166.131 320.207 166.616 319.723 167.214 319.723L175.875 319.723C176.473 319.723 176.957 320.207 176.957 320.805L176.957 356.532C176.957 357.13 176.473 357.615 175.875 357.615L167.214 357.615C166.616 357.615 166.131 357.13 166.131 356.532L166.131 320.805Z" fill="#89A9FF"/>
<path d="M194.279 308.896C194.279 308.298 194.764 307.813 195.362 307.813L204.023 307.813C204.621 307.813 205.106 308.298 205.106 308.896L205.106 356.532C205.106 357.13 204.621 357.615 204.023 357.615L195.362 357.615C194.764 357.615 194.279 357.13 194.279 356.532L194.279 308.896Z" fill="#0040A1"/>
<path d="M207.271 293.74C207.271 293.142 207.756 292.657 208.354 292.657L217.015 292.657C217.613 292.657 218.098 293.142 218.098 293.74L218.098 356.533C218.098 357.131 217.613 357.616 217.015 357.616L208.354 357.616C207.756 357.616 207.271 357.131 207.271 356.533L207.271 293.74Z" fill="#2F6FF0"/>
<path d="M220.263 275.335C220.263 274.737 220.747 274.252 221.345 274.252L230.006 274.252C230.604 274.252 231.089 274.737 231.089 275.335L231.089 356.533C231.089 357.131 230.604 357.615 230.006 357.615L221.345 357.615C220.747 357.615 220.263 357.131 220.263 356.533L220.263 275.335Z" fill="#89A9FF"/>
<path d="M248.412 295.905C248.412 295.307 248.897 294.822 249.495 294.822L258.156 294.822C258.754 294.822 259.239 295.307 259.239 295.905L259.239 356.533C259.239 357.131 258.754 357.616 258.156 357.616L249.495 357.616C248.897 357.616 248.412 357.131 248.412 356.533L248.412 295.905Z" fill="#0040A1"/>
<path d="M261.404 275.335C261.404 274.737 261.889 274.252 262.487 274.252L271.148 274.252C271.746 274.252 272.231 274.737 272.231 275.335L272.231 356.533C272.231 357.131 271.746 357.615 271.148 357.615L262.487 357.615C261.889 357.615 261.404 357.131 261.404 356.533L261.404 275.335Z" fill="#2F6FF0"/>
<path d="M274.396 298.07C274.396 297.472 274.88 296.987 275.478 296.987L284.139 296.987C284.737 296.987 285.222 297.472 285.222 298.07L285.222 356.533C285.222 357.131 284.737 357.615 284.139 357.615L275.478 357.615C274.88 357.615 274.396 357.131 274.396 356.533L274.396 298.07Z" fill="#89A9FF"/>
<path d="M302.544 275.334C302.544 274.736 303.029 274.251 303.627 274.251L312.288 274.251C312.886 274.251 313.37 274.736 313.37 275.334L313.37 356.532C313.37 357.13 312.886 357.614 312.288 357.614L303.627 357.614C303.029 357.614 302.544 357.13 302.544 356.532L302.544 275.334Z" fill="#0040A1"/>
<path d="M315.536 250.433C315.536 249.835 316.021 249.351 316.619 249.351L325.28 249.351C325.878 249.351 326.363 249.835 326.363 250.433L326.363 356.532C326.363 357.13 325.878 357.615 325.28 357.615L316.619 357.615C316.021 357.615 315.536 357.13 315.536 356.532L315.536 250.433Z" fill="#2F6FF0"/>
<path d="M328.527 264.507C328.527 263.91 329.012 263.425 329.61 263.425L338.271 263.425C338.869 263.425 339.354 263.91 339.354 264.507L339.354 356.532C339.354 357.13 338.869 357.615 338.271 357.615L329.61 357.615C329.012 357.615 328.527 357.13 328.527 356.532L328.527 264.507Z" fill="#89A9FF"/>
<path d="M356.676 254.764C356.676 254.166 357.16 253.682 357.758 253.682L366.42 253.682C367.017 253.682 367.502 254.166 367.502 254.764L367.502 356.533C367.502 357.131 367.017 357.615 366.42 357.615L357.758 357.615C357.16 357.615 356.676 357.131 356.676 356.533L356.676 254.764Z" fill="#0040A1"/>
<path d="M369.668 236.359C369.668 235.761 370.153 235.276 370.751 235.276L379.412 235.276C380.01 235.276 380.494 235.761 380.494 236.359L380.494 356.532C380.494 357.13 380.01 357.615 379.412 357.615L370.751 357.615C370.153 357.615 369.668 357.13 369.668 356.532L369.668 236.359Z" fill="#2F6FF0"/>
<path d="M382.659 227.698C382.659 227.1 383.144 226.615 383.742 226.615L392.403 226.615C393.001 226.615 393.486 227.1 393.486 227.698L393.486 356.532C393.486 357.13 393.001 357.615 392.403 357.615L383.742 357.615C383.144 357.615 382.659 357.13 382.659 356.532L382.659 227.698Z" fill="#89A9FF"/>
<rect x="232.174" y="132.428" width="155.9" height="4.33057" fill="#28324D"/>
<rect x="232.174" y="145.417" width="113.57" height="4.33057" fill="#28324D"/>
<rect x="232.174" y="158.409" width="144.543" height="4.33057" fill="#28324D"/>
<path d="M167.214 108.608C173.624 108.608 179.934 110.189 185.587 113.211C191.24 116.232 196.06 120.601 199.621 125.93C203.182 131.259 205.373 137.385 206.002 143.763C206.63 150.142 205.675 156.577 203.223 162.499C200.77 168.42 196.894 173.645 191.94 177.712C186.985 181.778 181.104 184.559 174.818 185.81C168.532 187.06 162.034 186.741 155.9 184.88C149.767 183.02 144.187 179.675 139.655 175.143L153.435 161.363C155.701 163.629 158.491 165.302 161.557 166.232C164.624 167.162 167.873 167.322 171.016 166.697C174.159 166.071 177.1 164.681 179.577 162.648C182.054 160.614 183.992 158.002 185.218 155.041C186.445 152.08 186.922 148.863 186.608 145.673C186.294 142.484 185.198 139.421 183.418 136.757C181.637 134.092 179.227 131.908 176.401 130.397C173.574 128.886 170.419 128.096 167.214 128.096V108.608Z" fill="#2F6FF0"/>
<path d="M128.329 144.941C128.694 139.584 130.161 134.361 132.639 129.598C135.117 124.835 138.552 120.635 142.73 117.262C146.907 113.889 151.736 111.416 156.915 109.997C162.093 108.578 167.508 108.244 172.822 109.017L170.018 128.302C167.361 127.915 164.654 128.082 162.065 128.792C159.475 129.501 157.061 130.738 154.972 132.424C152.883 134.111 151.166 136.211 149.927 138.592C148.688 140.974 147.954 143.585 147.772 146.264L128.329 144.941Z" fill="#89A9FF"/>
<path d="M139.656 175.146C135.723 171.213 132.678 166.484 130.724 161.277C128.77 156.07 127.954 150.505 128.329 144.956L147.772 146.271C147.585 149.046 147.993 151.828 148.97 154.432C149.946 157.035 151.469 159.4 153.436 161.366L139.656 175.146Z" fill="#0040A1"/>
<mask id="path-40-inside-2_2438_3636" fill="white">
<path d="M93.5957 54.4775H440.041V82.6262H93.5957V54.4775Z"/>
</mask>
<path d="M440.041 81.5436H93.5957V83.7089H440.041V81.5436Z" fill="#28324D" mask="url(#path-40-inside-2_2438_3636)"/>
<ellipse cx="105.505" cy="68.5516" rx="3.24793" ry="3.24793" fill="#DC244C"/>
<ellipse cx="117.414" cy="68.5516" rx="3.24793" ry="3.24793" fill="#3D4866"/>
<ellipse cx="129.323" cy="68.5516" rx="3.24793" ry="3.24793" fill="#038585"/>
</g>
<path d="M93.5957 58.8081C93.5957 55.8185 96.0193 53.3949 99.0089 53.3949H434.628C437.618 53.3949 440.041 55.8185 440.041 58.8081C440.041 57.0143 438.102 55.5602 435.711 55.5602H97.9263C95.5346 55.5602 93.5957 57.0143 93.5957 58.8081ZM440.041 383.601H93.5957H440.041ZM93.5957 383.601V54.4775V383.601ZM440.041 54.4775V383.601V54.4775Z" fill="#3D4866" mask="url(#path-1-inside-1_2438_3636)"/>
<g clip-path="url(#clip1_2438_3636)">
<rect x="0.487305" y="206.262" width="51.9668" height="51.9668" rx="25.9834" fill="#B99AFF"/>
<path d="M26.6006 206.001C12.2513 206.001 0.617188 217.635 0.617188 231.984C0.617188 246.334 12.2513 257.968 26.6006 257.968C40.9499 257.968 52.584 246.334 52.584 231.984C52.584 217.635 40.9499 206.001 26.6006 206.001ZM17.9395 227.654C17.9395 222.871 21.8175 218.993 26.6006 218.993C31.3837 218.993 35.2617 222.871 35.2617 227.654V229.819C35.2617 234.602 31.3837 238.48 26.6006 238.48C21.8175 238.48 17.9395 234.602 17.9395 229.819V227.654ZM26.6006 253.637C20.488 253.637 14.9709 251.08 11.0279 246.994C11.5605 245.697 12.6605 244.705 14.0549 244.396L21.1852 242.811L21.4516 241.743C23.03 242.428 24.7688 242.811 26.5984 242.811C28.4281 242.811 30.1647 242.428 31.7453 241.743L32.0116 242.811L39.1419 244.396C40.5364 244.705 41.6363 245.697 42.169 246.994C38.2282 251.082 32.711 253.637 26.5963 253.637H26.6006Z" fill="#5700C9"/>
</g>
<rect x="68.0439" y="211.458" width="222.938" height="41.5735" rx="6.23602" fill="#28324D"/>
<rect x="80.5156" y="223.93" width="115.366" height="5.19668" fill="#576280"/>
<rect x="80.5156" y="235.362" width="197.994" height="5.19668" fill="#576280"/>
<rect x="243.392" y="368.224" width="221.379" height="41.5735" rx="6.23602" fill="#28324D"/>
<rect x="255.863" y="380.695" width="115.366" height="5.19668" fill="#576280"/>
<rect x="255.863" y="392.128" width="196.435" height="5.19668" fill="#576280"/>
<rect x="480.36" y="363.027" width="51.9668" height="51.9668" rx="25.9834" fill="#038585"/>
<g clip-path="url(#clip2_2438_3636)">
<path d="M502.476 373.695C502.476 372.416 501.435 371.375 500.156 371.375C498.877 371.375 497.836 372.416 497.836 373.695C497.836 374.702 498.485 375.552 499.383 375.873V381.428H500.929V375.873C501.827 375.552 502.476 374.702 502.476 373.695Z" fill="#C0F0F0"/>
<path d="M490.102 389.487C488.739 390.086 487.782 391.445 487.782 393.026C487.782 394.607 488.739 395.966 490.102 396.565V389.487Z" fill="#C0F0F0"/>
<path d="M521.035 389.487C522.399 390.086 523.355 391.445 523.355 393.026C523.355 394.607 522.399 395.966 521.035 396.565V389.487Z" fill="#C0F0F0"/>
<path d="M515.621 382.975C508.9 382.975 502.418 382.975 495.515 382.975C493.38 382.975 491.648 384.706 491.648 386.841V399.214C491.648 401.349 493.38 403.081 495.515 403.081H515.621C517.756 403.081 519.488 401.349 519.488 399.214V386.841C519.488 384.706 517.756 382.975 515.621 382.975ZM499.382 391.481C498.529 391.481 497.835 390.787 497.835 389.934C497.835 389.081 498.529 388.388 499.382 388.388C500.235 388.388 500.928 389.081 500.928 389.934C500.928 390.787 500.235 391.481 499.382 391.481ZM508.661 398.441H502.475C501.62 398.441 500.928 397.749 500.928 396.894C500.928 396.04 501.62 395.348 502.475 395.348H508.661C509.516 395.348 510.208 396.04 510.208 396.894C510.208 397.749 509.516 398.441 508.661 398.441ZM511.755 391.481C510.902 391.481 510.208 390.787 510.208 389.934C510.208 389.081 510.902 388.388 511.755 388.388C512.608 388.388 513.301 389.081 513.301 389.934C513.301 390.787 512.608 391.481 511.755 391.481Z" fill="#C0F0F0"/>
</g>
<path d="M460.609 261.794C459.916 261.794 459.223 261.529 458.695 261.001L449.159 251.464C448.101 250.405 448.101 248.695 449.159 247.636C450.217 246.578 451.928 246.578 452.986 247.636L462.522 257.174C463.58 258.232 463.58 259.943 462.522 261.001C461.994 261.529 461.301 261.794 460.609 261.794Z" fill="#67001B"/>
<path d="M466.748 255.654C464.106 253.012 459.819 253.012 457.178 255.654C454.536 258.296 454.536 262.583 457.178 265.225L481.537 289.584C484.179 292.226 488.466 292.226 491.108 289.584C493.749 286.942 493.749 282.655 491.108 280.014L466.748 255.654Z" fill="#DC244C"/>
<path d="M420.008 261.799C443.925 261.799 463.314 242.41 463.314 218.493C463.314 194.576 443.925 175.188 420.008 175.188C396.091 175.188 376.702 194.576 376.702 218.493C376.702 242.41 396.091 261.799 420.008 261.799Z" fill="url(#paint1_linear_2438_3636)"/>
<path d="M420.009 172.478C394.597 172.478 373.997 193.078 373.997 218.49C373.997 243.902 394.597 264.502 420.009 264.502C445.422 264.502 466.022 243.902 466.022 218.49C465.995 193.088 445.411 172.505 420.009 172.478ZM420.009 259.089C397.588 259.089 379.41 240.911 379.41 218.49C379.41 196.068 397.588 177.891 420.009 177.891C442.431 177.891 460.608 196.068 460.608 218.49C460.584 240.901 442.42 259.065 420.009 259.089Z" fill="#BE003A"/>
<path d="M23.9657 354.966L22.7182 359.65L26.1546 363.086L30.8384 361.839L32.0859 357.155L28.6495 353.719L23.9657 354.966Z" fill="#E0700D"/>
<path d="M236.05 450.492L234.802 455.176L238.239 458.613L242.922 457.365L244.17 452.681L240.733 449.245L236.05 450.492Z" fill="#2F6FF0"/>
<path d="M529.213 218L525 220.441V225.323L529.213 227.764L533.427 225.323V220.441L529.213 218Z" fill="#8547FF"/>
<path d="M89.9876 10.364L88.6861 15.2506L92.2713 18.8357L97.1579 17.5343L98.4593 12.6477L94.8742 9.06253L89.9876 10.364Z" fill="#038585"/>
<path d="M458.674 16.5635L454.479 18.9934V23.8532L458.674 26.2831L462.868 23.8532V18.9934L458.674 16.5635Z" fill="#DC244C"/>
<defs>
<linearGradient id="paint0_linear_2438_3636" x1="266.818" y1="54.4775" x2="266.818" y2="383.601" gradientUnits="userSpaceOnUse">
<stop stop-color="#161E33"/>
<stop offset="1" stop-color="#0E1424"/>
</linearGradient>
<linearGradient id="paint1_linear_2438_3636" x1="394.193" y1="188.304" x2="445.411" y2="252.638" gradientUnits="userSpaceOnUse">
<stop stop-color="#D9E2FE" stop-opacity="0"/>
<stop offset="1" stop-color="#2F6FF0"/>
</linearGradient>
<clipPath id="clip0_2438_3636">
<path d="M93.5957 58.8081C93.5957 56.4164 95.5346 54.4775 97.9263 54.4775H435.711C438.102 54.4775 440.041 56.4164 440.041 58.8081V379.27C440.041 381.662 438.102 383.601 435.711 383.601H97.9263C95.5346 383.601 93.5957 381.662 93.5957 379.27V58.8081Z" fill="white"/>
</clipPath>
<clipPath id="clip1_2438_3636">
<rect x="0.487305" y="206.262" width="51.9668" height="51.9668" rx="25.9834" fill="white"/>
</clipPath>
<clipPath id="clip2_2438_3636">
<rect width="37.1192" height="37.1192" fill="white" transform="translate(487.78 366.737)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 28 KiB