New design (#79)

* remover open source title, added docker icon on hero banner

* buttons, fixes for mobile view

* code widget fix

* removed copying of text

* changed size and positioning of the docker icon, added a link to dockerhub, some styles for mobiles

* hid an installation section and an imapge on hero-banner for small mobile devices

* exchanged images

* fixed svg images

* tutorial button => demos button, svg optimisation

* removed background

* new colors, separated file for the header

* cleaned some redunant styles for the header

* more changes according to the new design

* fixed buttons animation, fixed the header on all pages for desktop

* mobile view for the header and the top banner

* changed the features section according to new design

* moved styles for the features section to the separated file, some fixes for mobile view

* reorganised lines in features-section.scss

* changes slides on the main page - desctop view

* added a file

* autoscroll, some fixes

* added an autoplay and a pause on mouseenter to the carousel on the home page

* more styles

* styles for articles section and subscribtion section

* styles for footer

* styles

* footer background

* fixes

* more fixes

* fixes for mobile devices - small sizes

* fixes for mobile devices - medium sizes

* update images

* some fixes for mobiles, changed stack section

* changed the second header (aka section title) according to new design

* WIP: added some webpack configuration for updating a way of vendors scripts usage, added new carousel

* replaced old slider to splidejs

* fix for the slider

* articles list page

* article - single page

* refactored main.scss, removed unused code from it and moved sections styles to separated files

* renamed and added some files, added fixes to breadcrumbs

* small changes in styles and layouts

* vertical sizes

* changes of styles and structure in articles and blog related files

* added mobile styles for articles and related pages, added sass function for converting px to rem

* temp picture

* changes in page title

* changed colors on old pages to the new design schema

* fixes

* deleted a file qdrant.css, moved styles to main.scss

* installed qdrant-page-search, for now without an actual api url

* added an actual api url

* WIP replacing owl carousel with splide on the surveys page

* updated page search, changed a way it's used

* fixes for footer

* changed common auto-container width, article font-size, made some fixes

* docs auto-sync

* narrow articles

* re-imported blog styles, because they are used in other places

* updated page-search

* optimized css loading

* replaced some images with webp format

* undo main img, changes in image usage

* fixes

* fixed slider cursor, logos in the stack section, cards on solutions page, prices page

* changed font-size of a form title on the subscription page

* optimization

* wip: added bash script for article preview images processing

* bash script for article preview images processing

* updated images for articles

* two article card in the row, without buttons (#85)

* fixes for old pages

* fixes for benchmarks pages

* added some info to the readme

* upd case studies

* changed form placeholder color and margin between buttons in the header

* short solution texts + link to benchmarks on main

* pricing page fixes

* short text in slider

* article cards borders, slider height, contact us

* blockquote

* move external articles to the landing

* more narrow buttons in the header, no buttons on the solutions page

* demo page fixes, removed target blank from the benchmarks link on the main page

* slower speed of the carousel on the main page

* content changes + seach upd

* changed title, readme

* added translate3d(0, 0, 0) to buttons for safari animations

* fixing buttons in safari (maybe)

* fixing buttons in safari (maybe)

* fixing buttons in safari

* fixes for mobiles

* fixes

* docs auto-sync

* neural -> vector

Co-authored-by: Andrey Vasnetsov <andrey@vasnetsov.com>
Co-authored-by: qdrant <qdrant@users.noreply.github.com>
This commit is contained in:
trean
2022-10-31 14:21:21 +01:00
committed by GitHub
co-authored by Andrey Vasnetsov qdrant
parent 5913a8c448
commit 6935178dc4
209 changed files with 7977 additions and 31340 deletions
+72 -2
View File
@@ -4,11 +4,81 @@ To rebuild scss to css:
npm install
```
# Build css from scss
Install sass if you don't have it:
```bash
npm install -g sass
```
``` bash
cd qdrant-landing
sass --watch --style=compressed ./themes/qdrant/static/css/
```
sass --watch --style=compressed ./qdrant-landing/themes/qdrant/static/css/main.scss ./qdrant-landing/themes/qdrant/static/css/main.css
```
# Articles
## Metadata
Articles are written in markdown and stored in `content/articles` directory. Each article has a header with metadata:
```yaml
---
title: Here goes the title of the article #required
short_description: Short description of the article
description: This is a longer description of the article, you can get a little bit more wordly here. Try to keep it under 140 characters. #required
social_preview_image: /articles_data/cars-recognition/social_preview.jpg # This image will be used in social media previews, should be 1200x630px. Required.
small_preview_image: /articles_data/cars-recognition/icon.svg # This image will be used in the list of articles at the footer, should be 40x40px
preview_dir: /articles_data/cars-recognition/preview # This directory contains images that will be used in the article preview. They can be generated from one image. Read more below. Required.
weight: 10 # This is the order of the article in the list of articles at the footer. The lower the number, the higher the article will be in the list.
author: Yusuf Sarıgöz # Author of the article. Required.
author_link: https://medium.com/@yusufsarigoz # Link to the author's page. Required.
date: 2022-06-28T13:00:00+03:00 # Date of the article. Required.
draft: false # If true, the article will not be published
keywords: # Keywords for SEO
- vector databases comparative benchmark
- benchmark
- performance
- latency
---
```
## Article preview
Article preview is a set of images that will be used in the article preview. They can be generated from one image. To generate preview images, you need to have [ImageMagick](https://imagemagick.org/index.php) and [cwebp](https://developers.google.com/speed/webp/download) installed.
You can install `cwebp` with the following command:
```bash
curl -s https://raw.githubusercontent.com/Intervox/node-webp/latest/bin/install_webp | sudo bash
```
### Prepare preview image
For the preview use image with the aspect ratio 3 to 1 in jpg or png format. With resolution not smaller than 898x300px. The image should illustrate in some way the article's core idea. Fill free got creative. Check out that most important part of the image is in the center.
### Generating preview images
To generate preview images, run the following command from the root of project:
```bash
bash -x automation/process-article-img.sh <path-to-image> <alias-for-the-article>
```
For example:
```bash
bash -x automation/process-article-img.sh ~/Pictures/my_preview.jpg filtrable-hnsw
```
This command will create a directory `preview` in `static/article_data/filtrable-hnsw` and generate preview images in it. If the directory `static/article_data/filtrable-hnsw` doesn't exist, it will be created. If it exists, only files in children `preview` directory will be affected. In this case preview images will be overwritten. Your original image will not be affected.
### Preview images set
Preview images set consists of the following images:
`preview.jpg` - 530x145px (used on the article preview card **for browsers, not supporting webp**)
`preview.webp` - 530x145px (used on the article preview card **for browsers, supporting webp**)
`title.jpg` - 898x300px (used on the article's page as the main image before the article title **for browsers, not supporting webp**)
`title.webp` - 898x300px (used on the article's page as the main image before the article title **for browsers, supporting webp**)
+16 -2
View File
@@ -29,8 +29,10 @@ keywords = "search engine, neural network, matching, filter, SaaS, approximate n
preview_image = "/images/social_preview.png"
github = "https://github.com/qdrant/qdrant"
quick_start = "https://github.com/qdrant/qdrant/blob/master/QUICK_START.md"
quick_start = "/documentation/quick_start/"
tutorial = "/articles/neural-search-tutorial/"
benchmarks = "/benchmarks/"
demos = "/demo"
linkedin = "https://qdrant.to/linkedin"
twitter = "https://qdrant.to/twitter"
@@ -132,7 +134,9 @@ keywords = "search engine, neural network, matching, filter, SaaS, approximate n
name = "Blog"
weight = 5
parent = "resources"
url = "/blog/"
url = "https://blog.qdrant.tech/"
[menu.main.params]
external = true
[[menu.main]]
identifier = "roadmap"
@@ -196,7 +200,17 @@ keywords = "search engine, neural network, matching, filter, SaaS, approximate n
weight = 4
parent = "community"
url = "/subscribe/"
pre = "<i class='fas fa-mail-bulk'></i>"
[[menu.main]]
identifier = "contact"
name = "Contact us"
weight = 5
parent = "community"
url = "https://qdrant.to/contact-us"
pre = "<i class='fas fa-envelope'></i>"
[menu.main.params]
external = true
[[menu.main]]
identifier = "company"
+2 -1
View File
@@ -1,5 +1,6 @@
---
title: Articles
section_title: Our Latest <span>Articles</span>
section_title: Check out our latest publications
subtitle: Check out our latest publications
img: /articles_data/title-img.png
---
@@ -3,13 +3,14 @@ title: Fine Tuning Similar Cars Search
short_description: "How to use similarity learning to search for similar cars"
description: Learn how to train a similarity model that can retrieve similar car images in novel categories.
social_preview_image: /articles_data/cars-recognition/social_preview.jpg
preview_image: /articles_data/cars-recognition/preview.jpeg
small_preview_image: /articles_data/cars-recognition/icon.svg
preview_dir: /articles_data/cars-recognition/preview
weight: 10
author: Yusuf Sarıgöz
author_link: https://medium.com/@yusufsarigoz
date: 2022-06-28T13:00:00+03:00
draft: false
# aliases: [ /articles/cars-recognition/ ]
---
Supervised classification is one of the most widely used training objectives in machine learning,
@@ -2,15 +2,14 @@
title: Finding errors in datasets with Similarity Search
short_description: Finding errors datasets with distance-based methods
description: Improving quality of text-and-images datasets on the online furniture marketplace example.
preview_image: /articles_data/dataset-quality/preview.png
preview_dir: /articles_data/dataset-quality/preview
small_preview_image: /articles_data/dataset-quality/icon.svg
weight: 8
author: George Panchuk
author_link: https://medium.com/@george.panchuk
date: 2022-07-18T10:18:00.000Z
# aliases: [ /articles/dataset-quality/ ]
---
Nowadays, people create a huge number of applications of various types and solve problems in different areas.
Despite such diversity, they have something in common - they need to process data.
Real-world data is a living structure, it grows day by day, changes a lot and becomes harder to work with.
@@ -3,13 +3,14 @@ title: Metric Learning for Anomaly Detection
short_description: "How to use metric learning to detect anomalies: quality assessment of coffee beans with just 200 labelled samples"
description: Practical use of metric learning for anomaly detection. A way to match the results of a classification-based approach with only ~0.6% of the labeled data.
social_preview_image: /articles_data/detecting-coffee-anomalies/social_preview.jpg
preview_image: /articles_data/detecting-coffee-anomalies/preview.png
preview_dir: /articles_data/detecting-coffee-anomalies/preview
small_preview_image: /articles_data/detecting-coffee-anomalies/anomalies_icon.svg
weight: 30
author: Yusuf Sarıgöz
author_link: https://medium.com/@yusufsarigoz
date: 2022-05-04T13:00:00+03:00
draft: false
# aliases: [ /articles/detecting-coffee-anomalies/ ]
---
Anomaly detection is a thirsting yet challenging task that has numerous use cases across various industries.
@@ -2,13 +2,14 @@
title: Layer Recycling and Fine-tuning Efficiency
short_description: Tradeoff between speed and performance in layer recycling
description: Learn when and how to use layer recycling to achieve different performance targets.
preview_image: /articles_data/embedding-recycling/preview.jpeg
preview_dir: /articles_data/embedding-recycling/preview
small_preview_image: /articles_data/embedding-recycling/icon.svg
weight: 10
author: Yusuf Sarıgöz
author_link: https://medium.com/@yusufsarigoz
date: 2022-08-23T13:00:00+03:00
draft: false
aliases: [ /articles/embedding-recycler/ ]
---
A recent [paper](https://arxiv.org/abs/2207.04993)
@@ -3,12 +3,13 @@ title: Q&A with Similarity Learning
short_description: A complete guide to building a Q&A system with similarity learning.
description: A complete guide to building a Q&A system using Quaterion and SentenceTransformers.
social_preview_image: /articles_data/faq-question-answering/social_preview.jpg
preview_image: /articles_data/faq-question-answering/preview.png
preview_dir: /articles_data/faq-question-answering/preview
small_preview_image: /articles_data/faq-question-answering/icon.svg
weight: 9
author: George Panchuk
author_link: https://medium.com/@george.panchuk
date: 2022-06-28T08:57:07.604Z
# aliases: [ /articles/faq-question-answering/ ]
---
# Question-answering system with Similarity Learning and Quaterion
@@ -80,11 +81,14 @@ a part of it. To measure model's performance we will use two metrics -
We have a [ready script](https://github.com/qdrant/demo-cloud-faq/blob/experiments/faq/baseline.py)
for this experiment, let's just launch it now.
<div class="table-responsive">
| precision@1 | reciprocal_rank |
|-------------|-----------------|
| 0.564 | 0.663 |
</div>
That's already quite decent quality, but maybe we can do better?
## Improving results with fine-tuning
@@ -534,6 +538,8 @@ def train(model, train_dataset_path, val_dataset_path, params):
At this point we can train our model, I do it via `python3 -m faq.train`.
<div class="table-responsive">
|epoch|train_precision@1|train_reciprocal_rank|val_precision@1|val_reciprocal_rank|
|-----|-----------------|---------------------|---------------|-------------------|
|0 |0.650 |0.732 |0.659 |0.741 |
@@ -543,12 +549,18 @@ At this point we can train our model, I do it via `python3 -m faq.train`.
|400 |0.695 |0.772 |0.694 |0.773 |
|500 |0.701 |0.778 |0.700 |0.777 |
</div>
Results obtained with `Evaluator`:
<div class="table-responsive">
| precision@1 | reciprocal_rank |
|-------------|-----------------|
| 0.577 | 0.675 |
</div>
After training all the metrics have been increased.
And this training was done in just 3 minutes on a single gpu!
There is no overfitting and the results are steadily growing, although I think there is still room for improvement and experimentation.
@@ -2,11 +2,113 @@
title: Filtrable HNSW
short_description: How to make ANN search with custom filtering?
description: How to make ANN search with custom filtering? Search in selected subsets without loosing the results.
external_link: https://blog.vasnetsov.com/posts/categorical-hnsw/
# external_link: https://blog.vasnetsov.com/posts/categorical-hnsw/
social_preview_image: /articles_data/filtrable-hnsw/social_preview.jpg
preview_image: /articles_data/filtrable-hnsw/preview.png
preview_dir: /articles_data/filtrable-hnsw/preview
small_preview_image: /articles_data/filtrable-hnsw/global-network.svg
weight: 60
date: 2019-11-24T22:44:08+03:00
author: Andrei Vasnetsov
author_link: https://blog.vasnetsov.com/
# aliases: [ /articles/filtrable-hnsw/ ]
---
If you need to find some similar objects in vector space, provided e.g. by embeddings or matching NN, you can choose among a variety of libraries: Annoy, FAISS or NMSLib.
All of them will give you a fast approximate neighbors search within almost any space.
But what if you need to introduce some constraints in your search?
For example, you want search only for products in some category or select the most similar customer of a particular brand.
I did not find any simple solutions for this.
There are several discussions like [this](https://github.com/spotify/annoy/issues/263), but they only suggest to iterate over top search results and apply conditions consequently after the search.
Let's see if we could somehow modify any of ANN algorithms to be able to apply constrains during the search itself.
Annoy builds tree index over random projections.
Tree index implies that we will meet same problem that appears in relational databases:
if field indexes were built independently, then it is possible to use only one of them at a time.
Since nobody solved this problem before, it seems that there is no easy approach.
There is another algorithm which shows top results on the [benchmark](https://github.com/erikbern/ann-benchmarks).
It is called HNSW which stands for Hierarchical Navigable Small World.
The [original paper](https://arxiv.org/abs/1603.09320) is well written and very easy to read, so I will only give the main idea here.
We need to build a navigation graph among all indexed points so that the greedy search on this graph will lead us to the nearest point.
This graph is constructed by sequentially adding points that are connected by a fixed number of edges to previously added points.
In the resulting graph, the number of edges at each point does not exceed a given threshold $m$ and always contains the nearest considered points.
![NSW](/articles_data/filtrable-hnsw/NSW.png)
### How can we modify it?
What if we simply apply the filter criteria to the nodes of this graph and use in the greedy search only those that meet these criteria?
It turns out that even with this naive modification algorithm can cover some use cases.
One such case is if your criteria do not correlate with vector semantics.
For example, you use a vector search for clothing names and want to filter out some sizes.
In this case, the nodes will be uniformly filtered out from the entire cluster structure.
Therefore, the theoretical conclusions obtained in the [Percolation theory](https://en.wikipedia.org/wiki/Percolation_theory) become applicable:
> Percolation is related to the robustness of the graph (called also network). Given a random graph of $n$ nodes and an average degree $\langle k\rangle$ . Next we remove randomly a fraction $1-p$ of nodes and leave only a fraction $p$. There exists a critical percolation threshold $ pc = \frac{1}{\langle k\rangle} $ below which the network becomes fragmented while above $pc$ a giant connected component exists.
This statement also confirmed by experiments:
{{< figure src=/articles_data/filtrable-hnsw/exp_connectivity_glove_m0.png caption="Dependency of connectivity to the number of edges" >}}
{{< figure src=/articles_data/filtrable-hnsw/exp_connectivity_glove_num_elements.png caption="Dependency of connectivity to the number of point (no dependency)." >}}
There is a clear threshold when the search begins to fail.
This threshold is due to the decomposition of the graph into small connected components.
The graphs also show that this threshold can be shifted by increasing the $m$ parameter of the algorithm, which is responsible for the degree of nodes.
Let's consider some other filtering conditions we might want to apply in the search:
* Categorical filtering
* Select only points in a specific category
* Select points which belong to a specific subset of categories
* Select points with a specific set of labels
* Numerical range
* Selection within some geographical region
In the first case, we can guarantee that the HNSW graph will be connected simply by creating additional edges
inside each category separately, using the same graph construction algorithm, and then combining them into the original graph.
In this case, the total number of edges will increase by no more than 2 times, regardless of the number of categories.
Second case is a little harder. A connection may be lost between two categories if they lie in different clusters.
![category clusters](/articles_data/filtrable-hnsw/hnsw_graph_category.png)
The idea here is to build same navigation graph but not between nodes, but between categories.
Distance between two categories might be defined as distance between category entry points (or, for precision, as the average distance between a random sample). Now we can estimate expected graph connectivity by number of excluded categories, not nodes.
It still does not guarantee that two random categories will be connected, but allows us to switch to multiple searches in each category if connectivity threshold passed. In some cases, multiple searches can be even faster if you take advantage of parallel processing.
{{< figure src=/articles_data/filtrable-hnsw/exp_random_groups.png caption="Dependency of connectivity to the random categories included in search" >}}
Third case might be resolved in a same way it is resolved in classical databases.
Depending on labeled subsets size ration we can go for one of the following scenarios:
* if at least one subset is small: perform search over the label containing smallest subset and then filter points consequently.
* if large subsets give large intersection: perform regular search with constraints expecting that intersection size fits connectivity threshold.
* if large subsets give small intersection: perform linear search over intersection expecting that it is small enough to fit a time frame.
Numerical range case can be reduces to the previous one if we split numerical range into a buckets containing equal amount of points.
Next we also connect neighboring buckets to achieve graph connectivity. We still need to filter some results which presence in border buckets but do not fulfill actual constraints, but their amount might be regulated by the size of buckets.
Geographical case is a lot like a numerical one.
Usual geographical search involves [geohash](https://en.wikipedia.org/wiki/Geohash), which matches any geo-point to a fixes length identifier.
![Geohash example](/articles_data/filtrable-hnsw/geohash.png)
We can use this identifiers as categories and additionally make connections between neighboring geohashes.
It will ensure that any selected geographical region will also contain connected HNSW graph.
## Conclusion
It is possible to enchant HNSW algorithm so that it will support filtering points in a first search phase.
Filtering can be carried out on the basis of belonging to categories,
which in turn is generalized to such popular cases as numerical ranges and geo.
Experiments were carried by modification [python implementation](https://github.com/generall/hnsw-python) of the algorithm,
but real production systems require much faster version, like [NMSLib](https://github.com/nmslib/nmslib).
@@ -2,13 +2,15 @@
title: Metric Learning Tips & Tricks
short_description: How to train an object matching model and serve it in production.
description: Practical recommendations on how to train a matching model and serve it in production. Even with no labeled data.
external_link: https://vasnetsov93.medium.com/metric-learning-tips-n-tricks-2e4cfee6b75b
# external_link: https://vasnetsov93.medium.com/metric-learning-tips-n-tricks-2e4cfee6b75b
social_preview_image: /articles_data/metric-learning-tips/social_preview.jpg
preview_image: /articles_data/metric-learning-tips/preview.png
preview_dir: /articles_data/metric-learning-tips/preview
small_preview_image: /articles_data/metric-learning-tips/scatter-graph.svg
weight: 20
author: Andrei Vasnetsov
author_link: https://blog.vasnetsov.com/
date: 2021-05-15T10:18:00.000Z
# aliases: [ /articles/metric-learning-tips/ ]
---
@@ -202,7 +204,7 @@ It should be easy to add new vectors if new job descriptions appear in the servi
In our case, we also needed to apply additional conditions to the search.
We needed to filter, for example, the location of candidates and the level of language proficiency.
We did not find a ready-made tool for such vector management, so we created and open sourced our internal vector search engine called [Qdrant](https://github.com/qdrant/qdrant).
We did not find a ready-made tool for such vector management, so we created [Qdrant](https://github.com/qdrant/qdrant) - open-source vector search engine.
It allows you to add and delete vectors with a simple API, independent of a programming language you are using.
You can also assign the payload to vectors.
@@ -223,5 +225,4 @@ In this article, I have shown how metric learning can be more scalable and flexi
I suggest trying similar approaches in your tasks - it might be matching similar texts, images, or audio data.
With the existing variety of pre-trained neural networks and a vector search engine, it is easy to build your metric learning-based application.
Subscribe to my [telegram channel](https://t.me/neural_network_engineering), where I talk about neural networks engineering, publish other examples of metric learning and neural search applications.
@@ -2,13 +2,15 @@
title: Neural Search Tutorial
short_description: Step-by-step guide on how to build a neural search service.
description: Our step-by-step guide on how to build a neural search service with BERT + Qdrant + FastAPI.
external_link: https://blog.qdrant.tech/neural-search-tutorial-3f034ab13adc
# external_link: https://blog.qdrant.tech/neural-search-tutorial-3f034ab13adc
social_preview_image: /articles_data/neural-search-tutorial/social_preview.jpg
preview_image: /articles_data/neural-search-tutorial/preview.png
preview_dir: /articles_data/neural-search-tutorial/preview
small_preview_image: /articles_data/neural-search-tutorial/tutorial.svg
weight: 50
author: Andrei Vasnetsov
author_link: https://blog.vasnetsov.com/
date: 2021-06-10T10:18:00.000Z
# aliases: [ /articles/neural-search-tutorial/ ]
---
## How to build a neural search service with BERT + Qdrant + FastAPI
@@ -160,6 +162,7 @@ First, let's create a client object for Qdrant.
```python
# Import client library
from qdrant_client import QdrantClient
from qdrant_client.models import VectorParams, Distance
qdrant_client = QdrantClient(host='localhost', port=6333)
```
@@ -172,8 +175,7 @@ Let's create a new collection for our startup vectors.
```python
qdrant_client.recreate_collection(
collection_name='startups',
vector_size=768,
distance="Cosine"
vectors_config=VectorParams(size=768, distance=Distance.COSINE),
)
```
@@ -276,7 +278,7 @@ With Qdrant it is also feasible to add some conditions to the search.
For example, if we wanted to search for startups in a certain city, the search query could look like this:
```python
from qdrant_client.http.models.models import Filter
from qdrant_client.models import Filter
...
@@ -371,4 +373,4 @@ Try to use startup description to find similar ones.
In this tutorial, I have tried to give minimal information about neural search, but enough to start using it.
Many potential applications are not mentioned here, this is a space to go further into the subject.
Subscribe to my [telegram channel](https://t.me/neural_network_engineering), where I talk about neural networks engineering, publish other examples of neural networks and neural search applications.
Join our [Discord community](https://qdrant.to/discord), where we talk about vector search and similarity learning, publish other examples of neural networks and neural search applications.
@@ -3,12 +3,13 @@ title: Triplet Loss - Advanced Intro
short_description: "What are the advantages of Triplet Loss and how to efficiently implement it?"
description: "What are the advantages of Triplet Loss over Contrastive loss and how to efficiently implement it?"
social_preview_image: /articles_data/triplet-loss/social_preview.jpg
preview_image: /articles_data/triplet-loss/preview.png
preview_dir: /articles_data/triplet-loss/preview
small_preview_image: /articles_data/triplet-loss/icon.svg
weight: 30
author: Yusuf Sarıgöz
author_link: https://medium.com/@yusufsarigoz
date: 2022-03-24T15:12:00+03:00
# aliases: [ /articles/triplet-loss/ ]
---
## What is Triplet Loss?
@@ -12,15 +12,9 @@ But the answer was never simple, as the world of vector databases lacked a unifi
So we created one, making some bold assumptions about how it should be done.
Here we describe why we think that’s the best way.
In real-world scenarios, having access to unlimited power and computational resources is never the case. Projects have budgets that have to be tracked, and constraints affect the possibilities, also when it comes to hardware parameters.
Unless you work for a FAANG company, chances are you would like to get out most from your VMs or bare-metal servers.
That’s why we decided to benchmark the available vector databases using the same hardware configuration, so you can know how much you can expect from each on a specific setup.
Does it guarantee the best performance? Probably not, but that makes the whole process affordable and reproducible, so you can easily repeat it on your machine.
If you do so, your numbers won’t match the ones we’ve got.
But the whole thing is not about measuring the state-of-the-art performance of a specific neural network on a selected task.
**The relative numbers, compared to the other engines are far more important, as they emphasize the differences in reality.**
That is why we perform our benchmarks on exactly the same hardware, which you can rent from any cloud provider.
It does not guarantee the best performance, making the whole process affordable and reproducible, so you can easily repeat it yourself.
So in our benchmarks, we **focus on the relative numbers**, so it is possible to **compare** the performance of different engines given equal resources.
The list will be updated:
@@ -6,6 +6,7 @@ description: We benchmarked several engines using various configurations of them
data: /benchmarks/result-2022-08-10.json
preview_image: /benchmarks/benchmark-1.png
date: 2022-08-23
weight: 2
---
@@ -22,6 +23,7 @@ We tried our best, kept scrolling the docs up and down, and experimented with di
Our benchmark, inspired by [github.com/erikbern/ann-benchmarks/](https://github.com/erikbern/ann-benchmarks/), used the following datasets to test the performance of the engines:
<div class="table-responsive">
| Datasets | Number of vectors | Vector dimensionality | Distance function |
|-----------------------|-------------------|-----------------------|-------------------|
@@ -29,6 +31,8 @@ Our benchmark, inspired by [github.com/erikbern/ann-benchmarks/](https://github.
| gist-960-euclidean | 1,000,000 | 960 | euclidean |
| glove-100-angular | 1,183,514 | 100 | cosine |
</div>
### Hardware
In our experiments, we are not focusing on the absolute values of the metrics but rather on a relative comparison of different engines.
+1
View File
@@ -1,3 +1,4 @@
---
title: Demos
section_title: Interactive Live Examples
---
+1 -1
View File
@@ -1,5 +1,5 @@
---
title: "Make the most of your <span>Unstructured Data</span>"
title: "Make the most of your Unstructured Data"
icon:
sitemapExclude: True
---
@@ -1,6 +1,8 @@
---
title: Distributed
icon: distribution
icon:
- url: /features/cloud.svg
- url: /features/cluster.svg
weight: 50
sitemapExclude: True
---
@@ -1,6 +1,8 @@
---
title: Easy to Use API
icon: api
icon:
- url: /features/settings.svg
- url: /features/microchip.svg
weight: 10
sitemapExclude: True
---
@@ -1,6 +1,8 @@
---
title: Fast and Accurate
icon: bullseye
icon:
- url: /features/speed.svg
- url: /features/target.svg
weight: 20
sitemapExclude: True
---
+3 -2
View File
@@ -1,10 +1,11 @@
---
title: Filtrable
icon: data-1
icon:
- url: /features/filter.svg
weight: 30
sitemapExclude: True
---
Support additional payload associated with vectors.
Not only stores payload but also allows filter results based on payload values. \
Not only stores payload but also allows filter results based on payload&nbsp;values. \
Unlike Elasticsearch post-filtering, Qdrant guarantees all relevant vectors are retrieved.
+2 -1
View File
@@ -1,6 +1,7 @@
---
title: Efficient
icon: microprocessor
icon:
- url: /features/sight.svg
weight: 60
sitemapExclude: True
---
@@ -1,6 +1,7 @@
---
title: Rich data types
icon: scan
icon:
- url: /features/data.svg
weight: 40
sitemapExclude: True
---
+2 -2
View File
@@ -1,6 +1,6 @@
---
title: Solutions
section_title: Elevate <span>Your Business</span> with Qdrant
section_title: Tasks and Problems solved with Qdrant
subtitle: Here are just a few examples of how Qdrant can help your Business
description: Tasks and Problems solved with Qdrant
description: Elevate Your Business with Qdrant. Tasks and Problems solved with Qdrant
---
@@ -9,8 +9,7 @@ default_link_name:
weight: 60
draft: false
short_description: |
Anomaly detection is one of the non-obvious applications of Metric Learning.
However, Metric Learning has a number of properties that make it an excellent way to approach anomaly detection.
Check out our [case-study](/articles/detecting-coffee-anomalies/)!
Anomaly detection is one of the non-obvious applications of Similarity Learning.
However, it has a number of properties that make it an excellent way to [approach anomaly detection](/articles/detecting-coffee-anomalies/).
sitemapExclude: True
---
@@ -4,11 +4,11 @@ icon: bot
tabid: chatbot
image: /content/images/solutions/chat_bots.svg
image_caption: Automated FAQ
default_link:
default_link: /articles/faq-question-answering/
default_link_name:
weight: 40
short_description: |
Semantic search for similar phrases is one of the key technologies for building chatbots.
In combination with conversation scripts, modern pre-trained NLP models and Qdrant, it is possible to build an automated FAQ answering system.
Semantic search for intent detection is the key chatbot technology.
In combination with conversation scripts, modern NLP models and Qdrant, it is possible to build an automated [FAQ answering system](/articles/faq-question-answering/).
sitemapExclude: True
---
@@ -2,23 +2,21 @@
title: Similar Image Search
icon: image-1
tabid: imagesearch
landing_image: /content/images/abstract_cubes_2.svg
landing_image: /content/images/similar_image_search_big.webp
landing_image_png: /content/images/similar_image_search_big.png
image: /content/images/solutions/similar_image_search.svg
image_caption: Visual Food Discovery
default_link: https://qdrant.to/food-discovery
default_link_name: Demo
weight: 20
weight: 10
short_description: |
Find similar images, detect duplicates, or even find a picture by text description - all of that you can do with Qdrant.
Mostly you won't even need to train a neural network for that. Pre-trained models are usually enough to begin with.
Start with pre-trained models and [fine-tune](https://github.com/qdrant/quaterion) them for better accuracy.
Check out our [demo](https://qdrant.to/food-discovery)!
sitemapExclude: True
---
Sometimes text search is not enough.
Qdrant allows you to find similar images, detect duplicates, or even find a picture by text description.
No need to train your own neural network, get started with pre-trained models.
Sometimes text search is not enough. Qdrant allows you to find similar images, detect duplicates, or even find a picture by text description.
Qdrant filters enable you to apply arbitrary business logic on top of a similarity search.
Look for similar clothes cheaper than $20? Search for a similar artwork published in the last year?
@@ -2,7 +2,8 @@
title: Recommendations
icon: advertising
tabid: recommendations
landing_image: /content/images/abstract_cubes_3.svg
landing_image: /content/images/recomendations_big.webp
landing_image_png: /content/images/recomendations_big.png
image: /content/images/solutions/recomendations.svg
image_caption: History-based Recommendations
default_link:
@@ -10,8 +11,8 @@ default_link_name:
weight: 30
short_description: |
User behavior can be represented as a semantic vector is similar way as text or images.
Qdrant allows you to create a recommendation engine with custom filters and real-time updates.
No need to deploy a MapReduce cluster.
Qdrant allows you to create a real-time recommendation engine.
No MapReduce cluster required.
sitemapExclude: True
---
@@ -2,27 +2,25 @@
title: Semantic Text Search
tabid: textsearch
icon: paper
landing_image: /content/images/abstract_cubes_1.svg
landing_image: /content/images/semantic_search_big.webp
landing_image_png: /content/images/semantic_search_big.png
image: /content/images/solutions/semantic_text_search.svg
image_caption: Neural Text Search
default_link: https://qdrant.to/semantic-search-demo
default_link_name: Demo
weight: 10
weight: 20
short_description: |
The neural search uses **semantic embeddings** instead of keywords and works best with short texts.
With Qdrant and a pre-trained neural network, you can build and deploy semantic neural search on your data in minutes.
With Qdrant, you can build and deploy semantic neural search on your data in minutes.
Check out our [demo](https://qdrant.to/semantic-search-demo)!
sitemapExclude: True
---
In many cases, the usual full-text search does not provide the desired result.
Full-text search does not always provide the desired result.
Documents may have too few keywords, or queries might be too large.
In such cases, the search either finds no intersections or returns a lot of irrelevant results.
One way to overcome these problems is a neural network-based semantic search.
It can be used stand-alone or in conjunction with traditional search.The neural search uses **semantic embeddings** instead of keywords and works best with short texts.
One way to overcome these problems is a neural network-based semantic search, which can be used in conjunction with traditional search.
The neural search uses **semantic embeddings** to find texts with similar meaning.
With Qdrant and a pre-trained neural network, you can build and deploy semantic neural search on your data in minutes!
Check out our demo.
Compare the results of a semantic search based on a pre-trained transformer NN and a regular full-text search.
With Qdrant, you can build and deploy semantic neural search on your data in minutes!
Compare the results of a semantic and full-text search in our demo.
+1 -1
View File
@@ -1,5 +1,5 @@
---
image: "content/images/logos/fastapi-logo.png"
image: "content/images/logos/fastapi-logo"
origin_url: "https://fastapi.tiangolo.com/"
name: "FastAPI"
sitemapExclude: True
+1 -1
View File
@@ -1,5 +1,5 @@
---
image: "content/images/logos/jina-logo.svg"
image: "content/images/logos/jina-logo"
origin_url: "https://jina.ai/"
name: "Jina"
sitemapExclude: True
@@ -1,5 +1,5 @@
---
image: "content/images/logos/huggingface-logo.png"
image: "content/images/logos/huggingface-logo"
origin_url: "https://huggingface.co"
name: "Hugging Face"
sitemapExclude: True
+1 -1
View File
@@ -1,5 +1,5 @@
---
title: Upgrade your Neural Search <span>Stack</span>
title: Upgrade your Neural Search Stack
subtitle: We can integrate with anything, these are some of the featured technologies
sitemapExclude: True
---
+1 -1
View File
@@ -1,6 +1,6 @@
---
title: Use Cases
section_title: Use Cases
section_title: Apps and Ideas Qdrant made possible
type: page
description: Potential applications, business cases and startup ideas you can build with Qdrant
---
@@ -1,11 +1,9 @@
---
title: Advertising
icon: ad-campaign
custom_link_name: Article by Twitter
custom_link: https://www.sciencedirect.com/science/article/abs/pii/S0925231217308445
sitemapExclude: True
---
User interests cannot be described with rules, and that's where neural networks come in.
Qdrant will allow sufficient flexibility in neural network recommendations so that each user sees only the relevant ad.
Advanced filtering mechanisms, such as geo-location, do not compromise on speed and accuracy, which is especially important for online advertising.
Advanced filtering mechanisms, such as geo-location, do not compromise on speed and accuracy, which is especially important for online advertising. Check out [research article by Twitter](https://www.sciencedirect.com/science/article/abs/pii/S0925231217308445).
@@ -1,11 +1,10 @@
---
title: Customer Support and Sales Optimization
icon: customer-service
custom_link_name: Sentence Embeddings for Customer Support
custom_link: https://blog.floydhub.com/automate-customer-support-part-one/
sitemapExclude: True
---
Current advances in NLP can reduce the retinue work of customer service by up to 80 percent.
No more answering the same questions over and over again. A chatbot will do that, and people can focus on complex problems.
But not only automated answering, it is also possible to control the quality of the department and automatically identify flaws in conversations.
Read more about the "[Sentence Embeddings for Customer Support](https://blog.floydhub.com/automate-customer-support-part-one/)" case study.
@@ -2,12 +2,13 @@
title: E-Commerce Search
icon: dairy-products
weight: 30
custom_link_name: Paper by The Home Depot
custom_link: https://arxiv.org/abs/2104.07572
sitemapExclude: True
---
Increase your online basket size and revenue with the AI-powered search.
No need in manually assembled synonym lists, neural networks get the context better.
With neural approach the search results could be not only precise, but also **personalized**.
And Qdrant will be the backbone of this search.
And Qdrant will be the backbone of this search.
Read more about [Deep Learning-based Product Recommendations](https://arxiv.org/abs/2104.07572) in the paper by The Home Depot.
@@ -1,14 +1,11 @@
---
title: Biometric identification
icon: face-scan
custom_link_name: Face Recognition Paper
custom_link: https://arxiv.org/abs/1810.06951v1
custom_link_name2: Speaker Recognition Paper
custom_link2: https://arxiv.org/abs/2003.11982
sitemapExclude: True
---
Not only totalitarian states use facial recognition.
With this technology, you can also improve the user experience and simplify authentication.
Make it possible to pay without a credit card and buy in the store without cashiers.
And the scalable face recognition technology is based on vector search, which is what Qdrant provides.
And the scalable face recognition technology is based on vector search, which is what Qdrant provides.
Some of the many articles on the topic of [Face Recognition](https://arxiv.org/abs/1810.06951v1) and [Speaker Recognition](https://arxiv.org/abs/2003.11982).
@@ -12,3 +12,4 @@ sitemapExclude: True
Empower shoppers to find the items they want by uploading any image or browsing through a gallery instead of searching with keywords.
A visual similarity search helps solve this problem. And with the advanced filters that Qdrant provides, you can be sure to have the right size in stock for the jacket the user finds.
Large companies like [Zalando](https://engineering.zalando.com/posts/2018/02/search-deep-neural-network.html) are investing in it, but we also made our [demo](https://qdrant.to/fashion-search-demo) using public dataset.
+1 -2
View File
@@ -1,8 +1,6 @@
---
title: Fintech
icon: bank
custom_link_name: Related Research
custom_link: https://arxiv.org/abs/1808.05492
sitemapExclude: True
---
@@ -11,3 +9,4 @@ One way to solve the problem is to look for similar cheating behaviors.
But often this is not enough and manual rules come into play.
Qdrant allows you to combine both approaches because it provides a way to filter the result using arbitrary conditions.
And all this can happen in the time till the client takes his hand off the terminal.
Here is some related [research paper](https://arxiv.org/abs/1808.05492).
@@ -2,11 +2,9 @@
title: Food Discovery
weight: 20
icon: search
custom_link_name: Our Demo
custom_link: https://qdrant.to/food-discovery
sitemapExclude: True
---
There are multiple ways to discover things, text search is not the only one.
In the case of food, people rely more on appearance than description and ingredients.
So why not let people choose their next lunch by its appearance, even if they don't know the name of the dish?
So why not let people choose their next lunch by its appearance, even if they don't know the name of the dish? We made a [demo](https://qdrant.to/food-discovery) to showcase this approach.
@@ -1,11 +1,9 @@
---
title: Law Case Search
icon: hammer
custom_link_name: Related Research
custom_link: https://arxiv.org/abs/2004.12307
sitemapExclude: True
---
The wording of court decisions can be difficult not only for ordinary people, but sometimes for the lawyers themselves.
It is rare to find words that exactly match a similar precedent.
That's where AI, which has seen hundreds of thousands of court decisions and can compare them, can help.
That's where AI, which has seen hundreds of thousands of court decisions and can compare them, can help. Here is some related [research](https://arxiv.org/abs/2004.12307).
@@ -1,11 +1,9 @@
---
title: Media and Games
icon: game-controller
custom_link_name: Related Research
custom_link: https://arxiv.org/abs/1803.00202
sitemapExclude: True
---
Personalized recommendations for music, movies, games, and other entertainment content are also some sort of search.
Except the query in it is not a text string, but user preferences and past experience.
And with Qdrant, user preference vectors can be updated in real-time, no need to deploy a MapReduce cluster.
And with Qdrant, user preference vectors can be updated in real-time, no need to deploy a MapReduce cluster. Read more about "[Metric Learning Recommendation System](https://arxiv.org/abs/1803.00202)"
@@ -1,11 +1,10 @@
---
title: Medical Diagnostics
icon: x-rays
custom_link_name: Related Research
custom_link: https://www.sciencedirect.com/science/article/abs/pii/S0925231217308445
sitemapExclude: True
---
The growing volume of data and the increasing interest in the topic of health care is creating products to help doctors with diagnostics.
One such product might be a search for similar cases in an ever-expanding database of patient histories.
Search not only by symptom description, but also by data from, for example, MRI machines.
Search not only by symptom description, but also by data from, for example, MRI machines.
Vector Search [is applied](https://www.sciencedirect.com/science/article/abs/pii/S0925231217308445) even here.
+25 -1
View File
@@ -1,5 +1,29 @@
{
"scripts": {
"build": "webpack --mode=production"
},
"dependencies": {
"bootstrap": "^4.6.1"
"@splidejs/splide": "^4.1.2",
"bootstrap": "^4.6.1",
"qdrant-page-search": "^1.0.4"
},
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"sass": "^1.54.6",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 244 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 454 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 173 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

@@ -1,122 +1,132 @@
<svg width="366" height="366" viewBox="0 0 366 366" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M183.155 332.563C265.794 332.563 332.786 265.571 332.786 182.932C332.786 100.294 265.794 33.3015 183.155 33.3015C100.516 33.3015 33.5239 100.294 33.5239 182.932C33.5239 265.571 100.516 332.563 183.155 332.563Z" fill="#D9E2FF" stroke="white" stroke-width="0.963" stroke-miterlimit="10"/>
<mask id="mask0_821_2648" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="33" y="32" width="301" height="302">
<path d="M183.155 332.563C265.794 332.563 332.786 265.571 332.786 182.932C332.786 100.294 265.794 33.3015 183.155 33.3015C100.516 33.3015 33.5239 100.294 33.5239 182.932C33.5239 265.571 100.516 332.563 183.155 332.563Z" fill="#D9E2FF" stroke="white" stroke-width="0.963" stroke-miterlimit="10"/>
</mask>
<g mask="url(#mask0_821_2648)">
<g opacity="0.2">
<path opacity="0.2" d="M183.155 33.3015V332.563" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M200.489 33.3015V332.563" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M217.823 33.3015V332.563" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M235.157 33.3015V332.563" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M252.491 33.3015V332.563" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M269.825 33.3015V332.563" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M287.159 33.3015V332.563" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M304.493 33.3015V332.563" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M321.827 33.3015V332.563" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M44.4828 33.3015V332.563" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M61.8169 33.3015V332.563" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M79.1509 33.3015V332.563" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M96.4849 33.3015V332.563" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M113.819 33.3015V332.563" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M131.153 33.3015V332.563" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M148.487 33.3015V332.563" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M165.821 33.3015V332.563" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M33.5239 182.932H332.786" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M33.5239 165.599H332.786" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M33.5239 148.265H332.786" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M33.5239 130.931H332.786" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M33.5239 113.597H332.786" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M33.5239 96.2625H332.786" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M33.5239 78.9285H332.786" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M33.5239 61.5945H332.786" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M33.5239 44.2605H332.786" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M33.5239 321.604H332.786" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M33.5239 304.271H332.786" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M33.5239 286.937H332.786" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M33.5239 269.603H332.786" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M33.5239 252.268H332.786" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M33.5239 234.934H332.786" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M33.5239 217.601H332.786" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
<path opacity="0.2" d="M33.5239 200.267H332.786" stroke="black" stroke-width="0.9" stroke-miterlimit="10"/>
</g>
</g>
<path d="M183.155 245.489C217.704 245.489 245.711 217.481 245.711 182.932C245.711 148.383 217.704 120.376 183.155 120.376C148.606 120.376 120.599 148.383 120.599 182.932C120.599 217.481 148.606 245.489 183.155 245.489Z" fill="#DC244C" stroke="#B2BFE8" stroke-width="0.963" stroke-miterlimit="10"/>
<path d="M183.155 225.95C206.913 225.95 226.172 206.69 226.172 182.932C226.172 159.175 206.913 139.915 183.155 139.915C159.397 139.915 140.138 159.175 140.138 182.932C140.138 206.69 159.397 225.95 183.155 225.95Z" fill="white"/>
<path d="M183.2 337.8C268.694 337.8 338 268.494 338 183C338 97.5063 268.694 28.2 183.2 28.2C97.7062 28.2 28.3999 97.5063 28.3999 183C28.3999 268.494 97.7062 337.8 183.2 337.8Z" stroke="#D9E2FF" stroke-width="1.8" stroke-miterlimit="10"/>
<path opacity="0.5" d="M229.052 182.672H331.004" stroke="white" stroke-width="0.963" stroke-miterlimit="10"/>
<path opacity="0.5" d="M35.3055 182.672H137.258" stroke="white" stroke-width="0.963" stroke-miterlimit="10"/>
<path opacity="0.5" d="M183.155 286.936C240.595 286.936 287.159 240.372 287.159 182.932C287.159 125.493 240.595 78.9285 183.155 78.9285C125.715 78.9285 79.1509 125.493 79.1509 182.932C79.1509 240.372 125.715 286.936 183.155 286.936Z" stroke="white" stroke-width="0.963" stroke-miterlimit="10"/>
<path opacity="0.5" d="M183.155 123.002V34.823" stroke="white" stroke-width="0.963" stroke-miterlimit="10"/>
<path opacity="0.5" d="M183.155 330.512V228.569" stroke="white" stroke-width="0.963" stroke-miterlimit="10"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M183.124 182.936L175.075 178.293L183.124 173.64L191.173 178.293L183.124 182.936Z" fill="#B2BFE8"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M175.075 178.293L183.124 182.936V192.231L175.075 187.578V178.293Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M183.124 182.936L191.173 178.293V187.589L183.124 192.242V182.936Z" fill="#7D8CB5"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M183.425 154.2L170.994 161.375L158.568 168.549V197.253L170.994 204.428L183.425 211.608L191.376 207.019L199.829 211.608L208.282 206.728V168.549L195.851 161.375L183.425 154.2Z" fill="#201D1D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M199.829 192.379V173.435L208.282 168.555V206.728L199.829 211.608V192.379Z" fill="#24386C"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M208.282 168.549L199.829 173.429L191.627 168.692L183.425 163.954L175.223 168.692L167.021 173.429L158.568 168.549L170.994 161.375L183.425 154.2L195.851 161.375L208.282 168.549Z" fill="#778ABF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M158.568 168.549L167.021 173.429V192.373L175.223 197.11L183.425 201.848V211.608L170.994 204.433L158.568 197.259V168.549Z" fill="#B2BFE8"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M191.376 197.253L183.425 201.848V211.608L191.376 207.019V197.253Z" fill="#24386C"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M183.425 182.904L175.474 178.315L183.425 173.726L191.376 178.315L183.425 182.904Z" fill="#778ABF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M175.474 178.315L183.425 182.904V192.088L175.474 187.499V178.315Z" fill="#B2BFE8"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M183.425 182.904L191.376 178.315V187.493L183.425 192.088V182.904Z" fill="#24386C"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M191.376 207.019L199.829 211.608V173.435L191.627 168.698L183.425 163.96L175.223 168.698L167.021 173.435V192.379L175.223 197.116L183.425 201.854L191.376 197.259V207.019ZM191.376 187.493L183.425 192.088L175.474 187.499V178.321L183.425 173.732L191.376 178.321V187.493Z" fill="#C91540"/>
<path d="M183.296 201.591V192.076L175.333 187.498L175.139 196.863L183.296 201.591Z" fill="url(#paint0_linear_821_2648)"/>
<path d="M152.532 142.997L152.551 142.978L148.054 137.7L148.689 137.161L153.986 143.392L153.196 144.066L144.943 141.889L144.924 141.899L149.46 147.234L148.824 147.773L143.518 141.543L144.307 140.869L152.532 142.997Z" fill="white"/>
<path d="M154.506 140.079C154.669 140.3 154.852 140.474 155.074 140.628C155.295 140.772 155.517 140.878 155.767 140.926C156.008 140.984 156.258 140.994 156.499 140.955C156.749 140.917 156.99 140.83 157.221 140.686C157.568 140.474 157.818 140.204 157.972 139.886C158.126 139.569 158.203 139.27 158.203 138.972L158.964 139.077C158.906 139.597 158.752 140.031 158.521 140.387C158.28 140.743 157.972 141.042 157.597 141.273C157.26 141.485 156.903 141.62 156.537 141.678C156.172 141.735 155.815 141.726 155.469 141.639C155.122 141.552 154.804 141.398 154.496 141.177C154.188 140.955 153.937 140.676 153.716 140.329C153.504 139.983 153.36 139.626 153.292 139.26C153.225 138.894 153.234 138.538 153.311 138.191C153.388 137.845 153.533 137.527 153.735 137.228C153.937 136.93 154.207 136.68 154.534 136.477C154.881 136.265 155.228 136.131 155.584 136.083C155.94 136.034 156.268 136.063 156.586 136.15C156.903 136.237 157.192 136.391 157.462 136.612C157.732 136.834 157.963 137.094 158.155 137.411L158.338 137.71L154.506 140.079ZM157.308 137.614C157.038 137.171 156.682 136.901 156.258 136.795C155.825 136.689 155.372 136.776 154.9 137.065C154.689 137.19 154.515 137.363 154.371 137.566C154.226 137.768 154.12 137.989 154.063 138.211C154.005 138.432 153.976 138.673 154.005 138.904C154.024 139.135 154.091 139.347 154.217 139.54L157.308 137.614Z" fill="white"/>
<path d="M164.242 137.681C164.164 137.556 164.097 137.431 164.039 137.296C163.982 137.171 163.914 137.036 163.856 136.901L163.837 136.911C163.818 137.075 163.779 137.248 163.712 137.412C163.644 137.575 163.558 137.739 163.442 137.883C163.327 138.028 163.202 138.163 163.057 138.288C162.913 138.403 162.759 138.509 162.595 138.577C161.959 138.866 161.42 138.914 160.967 138.712C160.515 138.509 160.149 138.115 159.87 137.489L158.444 134.369L159.138 134.051L160.38 136.776C160.505 137.046 160.64 137.277 160.775 137.469C160.91 137.662 161.064 137.806 161.227 137.903C161.391 137.999 161.584 138.047 161.786 138.038C161.988 138.028 162.229 137.97 162.479 137.855C162.518 137.835 162.604 137.778 162.759 137.681C162.913 137.585 163.038 137.421 163.163 137.219C163.288 137.017 163.356 136.747 163.384 136.429C163.413 136.112 163.317 135.726 163.115 135.283L161.959 132.76L162.653 132.443L164.405 136.285C164.463 136.42 164.55 136.583 164.646 136.786C164.742 136.988 164.848 137.171 164.945 137.344L164.242 137.681Z" fill="white"/>
<path d="M165.291 133.3C165.214 133.068 165.127 132.847 165.041 132.616C164.954 132.385 164.839 132.086 164.704 131.72L165.416 131.479L165.734 132.433L165.753 132.423C165.753 132.269 165.782 132.105 165.84 131.951C165.888 131.788 165.965 131.634 166.071 131.489C166.177 131.345 166.302 131.21 166.456 131.085C166.61 130.959 166.803 130.863 167.034 130.786C167.236 130.719 167.429 130.68 167.593 130.671L167.689 131.431C167.583 131.431 167.439 131.46 167.256 131.518C166.976 131.614 166.755 131.749 166.601 131.922C166.437 132.096 166.322 132.288 166.245 132.491C166.168 132.702 166.129 132.905 166.139 133.117C166.139 133.328 166.167 133.521 166.235 133.694L167.217 136.583L166.495 136.824L165.291 133.3Z" fill="white"/>
<path d="M172.485 131.682L172.456 131.547C172.244 130.642 171.686 130.295 170.79 130.497C170.174 130.642 169.682 130.969 169.326 131.489L168.748 131.065C169.124 130.439 169.808 130.016 170.8 129.785C171.05 129.727 171.31 129.708 171.56 129.727C171.811 129.746 172.042 129.813 172.254 129.929C172.466 130.045 172.649 130.208 172.803 130.411C172.966 130.622 173.082 130.882 173.159 131.21L173.708 133.56C173.756 133.762 173.814 133.974 173.881 134.186C173.949 134.397 174.016 134.58 174.074 134.715L173.352 134.879C173.303 134.754 173.246 134.619 173.207 134.474C173.169 134.33 173.12 134.186 173.091 134.041H173.072C172.937 134.446 172.735 134.754 172.475 134.985C172.215 135.216 171.868 135.37 171.445 135.466C171.214 135.524 170.983 135.543 170.751 135.524C170.52 135.505 170.299 135.457 170.106 135.37C169.904 135.274 169.731 135.149 169.586 134.975C169.442 134.811 169.336 134.6 169.278 134.34C169.182 133.916 169.211 133.55 169.374 133.251C169.538 132.953 169.779 132.712 170.077 132.51C170.385 132.308 170.723 132.154 171.098 132.038C171.474 131.922 171.811 131.826 172.128 131.749L172.485 131.682ZM172.244 132.375C172.061 132.423 171.82 132.481 171.551 132.568C171.271 132.654 171.011 132.76 170.771 132.895C170.53 133.03 170.337 133.194 170.183 133.386C170.039 133.579 169.991 133.81 170.048 134.07C170.087 134.243 170.154 134.388 170.26 134.494C170.357 134.6 170.482 134.677 170.617 134.734C170.751 134.792 170.905 134.811 171.06 134.811C171.214 134.811 171.368 134.792 171.512 134.754C171.782 134.686 172.003 134.59 172.186 134.455C172.369 134.32 172.504 134.157 172.6 133.974C172.697 133.791 172.754 133.588 172.774 133.367C172.793 133.145 172.774 132.914 172.716 132.683L172.629 132.298L172.244 132.375Z" fill="white"/>
<path d="M176.51 134.369L175.759 134.474L174.517 125.827L175.268 125.721L176.51 134.369Z" fill="white"/>
<path d="M182.355 133.136L186.737 133.203L186.727 133.964L181.518 133.877L181.652 125.692L186.727 125.778L186.718 126.539L182.481 126.472L182.432 129.255L186.4 129.322L186.39 130.083L182.423 130.016L182.355 133.136Z" fill="white"/>
<path d="M189.337 128.841C189.328 128.985 189.318 129.13 189.308 129.274C189.289 129.419 189.27 129.563 189.251 129.708H189.27C189.376 129.573 189.501 129.457 189.645 129.351C189.79 129.245 189.954 129.159 190.127 129.101C190.3 129.034 190.483 128.995 190.666 128.966C190.849 128.937 191.032 128.947 191.206 128.966C191.889 129.062 192.371 129.322 192.65 129.727C192.929 130.131 193.016 130.68 192.92 131.345L192.429 134.744L191.677 134.638L192.101 131.672C192.188 131.075 192.149 130.603 191.986 130.257C191.822 129.91 191.466 129.698 190.907 129.621C190.868 129.611 190.763 129.611 190.58 129.621C190.397 129.621 190.204 129.679 189.992 129.794C189.78 129.91 189.578 130.083 189.385 130.334C189.193 130.584 189.058 130.96 188.991 131.441L188.596 134.186L187.845 134.08L188.442 129.91C188.461 129.765 188.48 129.582 188.5 129.361C188.519 129.139 188.538 128.928 188.548 128.725L189.337 128.841Z" fill="white"/>
<path d="M198.833 132.096C198.756 131.865 198.621 131.653 198.428 131.46C198.235 131.268 197.995 131.133 197.706 131.056C197.398 130.969 197.118 130.94 196.849 130.979C196.579 131.017 196.329 131.104 196.117 131.248C195.905 131.393 195.703 131.576 195.549 131.807C195.395 132.038 195.269 132.308 195.192 132.606C195.115 132.905 195.086 133.194 195.106 133.473C195.125 133.752 195.202 134.012 195.318 134.243C195.443 134.474 195.606 134.677 195.818 134.84C196.03 135.004 196.29 135.129 196.598 135.206C196.887 135.283 197.167 135.283 197.427 135.216C197.687 135.139 197.908 135.023 198.091 134.869L198.573 135.486C198.226 135.717 197.879 135.871 197.513 135.928C197.147 135.986 196.781 135.967 196.425 135.88C196.001 135.774 195.635 135.611 195.327 135.38C195.019 135.148 194.778 134.879 194.605 134.571C194.432 134.262 194.326 133.916 194.287 133.55C194.249 133.174 194.287 132.789 194.393 132.394C194.499 131.999 194.663 131.653 194.875 131.345C195.086 131.036 195.356 130.796 195.664 130.613C195.972 130.43 196.319 130.314 196.695 130.276C197.07 130.228 197.475 130.266 197.898 130.391C198.255 130.497 198.573 130.661 198.861 130.892C199.15 131.123 199.381 131.431 199.564 131.807L198.833 132.096Z" fill="white"/>
<path d="M205.179 136.044C205.025 136.42 204.822 136.747 204.553 137.017C204.293 137.286 203.994 137.489 203.667 137.633C203.339 137.778 202.983 137.845 202.598 137.845C202.222 137.845 201.837 137.768 201.442 137.604C201.057 137.45 200.73 137.238 200.46 136.978C200.19 136.718 199.978 136.42 199.844 136.083C199.699 135.755 199.632 135.399 199.632 135.023C199.632 134.648 199.709 134.272 199.853 133.897C200.007 133.521 200.21 133.194 200.479 132.924C200.749 132.654 201.038 132.452 201.365 132.308C201.693 132.163 202.049 132.096 202.424 132.096C202.8 132.096 203.185 132.173 203.57 132.327C203.965 132.491 204.293 132.693 204.572 132.963C204.842 133.223 205.053 133.521 205.188 133.858C205.333 134.186 205.4 134.542 205.4 134.917C205.41 135.283 205.333 135.669 205.179 136.044ZM204.408 135.726C204.524 135.447 204.582 135.168 204.591 134.889C204.601 134.609 204.562 134.349 204.466 134.099C204.37 133.858 204.235 133.637 204.042 133.434C203.85 133.242 203.609 133.078 203.32 132.963C203.031 132.847 202.742 132.789 202.473 132.799C202.193 132.808 201.943 132.866 201.712 132.982C201.481 133.097 201.269 133.261 201.086 133.463C200.903 133.666 200.749 133.916 200.633 134.195C200.518 134.474 200.46 134.754 200.45 135.033C200.441 135.312 200.479 135.572 200.566 135.813C200.653 136.054 200.797 136.275 200.98 136.477C201.173 136.68 201.413 136.834 201.702 136.949C201.991 137.065 202.28 137.123 202.55 137.113C202.829 137.103 203.079 137.046 203.32 136.93C203.561 136.815 203.763 136.66 203.956 136.449C204.148 136.256 204.302 136.006 204.408 135.726Z" fill="white"/>
<path d="M209.859 141.745L209.194 141.37L209.647 140.59L209.628 140.58C209.426 140.676 209.223 140.744 209.011 140.773C208.8 140.801 208.588 140.811 208.385 140.792C208.183 140.773 207.991 140.734 207.798 140.667C207.605 140.599 207.432 140.522 207.278 140.435C206.912 140.224 206.614 139.973 206.382 139.675C206.151 139.376 205.988 139.058 205.891 138.712C205.795 138.365 205.776 138.009 205.824 137.633C205.872 137.258 205.997 136.901 206.199 136.545C206.402 136.189 206.652 135.9 206.951 135.669C207.249 135.438 207.567 135.274 207.914 135.187C208.26 135.091 208.626 135.072 208.992 135.12C209.358 135.168 209.734 135.303 210.109 135.515C210.263 135.601 210.417 135.717 210.562 135.842C210.716 135.977 210.851 136.121 210.966 136.285C211.082 136.449 211.188 136.632 211.265 136.834C211.342 137.036 211.39 137.238 211.409 137.46L211.429 137.469L213.538 133.8L214.202 134.176L209.859 141.745ZM206.922 136.94C206.768 137.2 206.671 137.469 206.623 137.739C206.575 138.018 206.585 138.278 206.642 138.538C206.7 138.789 206.806 139.03 206.97 139.251C207.134 139.472 207.345 139.665 207.625 139.819C207.894 139.973 208.164 140.07 208.453 140.098C208.742 140.137 209.011 140.118 209.281 140.041C209.541 139.973 209.791 139.848 210.013 139.675C210.234 139.501 210.427 139.28 210.571 139.02C210.716 138.76 210.812 138.49 210.851 138.211C210.889 137.932 210.87 137.662 210.803 137.392C210.735 137.132 210.61 136.882 210.437 136.651C210.263 136.42 210.042 136.227 209.772 136.073C209.503 135.919 209.223 135.823 208.954 135.794C208.684 135.765 208.424 135.794 208.174 135.871C207.923 135.948 207.692 136.083 207.48 136.256C207.259 136.458 207.076 136.68 206.922 136.94Z" fill="white"/>
<path d="M212.969 140.888C212.825 141.119 212.719 141.36 212.661 141.61C212.603 141.861 212.584 142.111 212.623 142.361C212.661 142.612 212.738 142.843 212.863 143.055C212.989 143.276 213.152 143.469 213.364 143.632C213.692 143.883 214.029 144.018 214.375 144.047C214.722 144.075 215.04 144.037 215.309 143.941L215.483 144.682C214.972 144.807 214.52 144.827 214.096 144.73C213.672 144.634 213.297 144.451 212.94 144.181C212.623 143.941 212.372 143.652 212.189 143.334C212.006 143.016 211.891 142.679 211.852 142.323C211.814 141.966 211.843 141.61 211.939 141.254C212.035 140.888 212.209 140.551 212.459 140.223C212.709 139.896 212.989 139.646 213.316 139.453C213.634 139.26 213.971 139.135 214.318 139.087C214.664 139.039 215.021 139.049 215.367 139.145C215.714 139.232 216.041 139.395 216.349 139.626C216.677 139.877 216.918 140.156 217.091 140.464C217.255 140.782 217.361 141.1 217.38 141.427C217.409 141.755 217.37 142.082 217.264 142.409C217.158 142.737 216.995 143.055 216.764 143.344L216.552 143.623L212.969 140.888ZM216.263 142.621C216.581 142.207 216.706 141.784 216.658 141.341C216.609 140.898 216.359 140.512 215.926 140.175C215.733 140.021 215.512 139.915 215.271 139.858C215.03 139.79 214.789 139.771 214.549 139.8C214.308 139.819 214.086 139.886 213.884 139.983C213.672 140.089 213.499 140.223 213.364 140.406L216.263 142.621Z" fill="white"/>
<path d="M218.487 143.777C218.651 143.604 218.815 143.421 218.969 143.238C219.132 143.045 219.344 142.814 219.604 142.515L220.153 143.026L219.47 143.758L219.489 143.777C219.633 143.709 219.778 143.661 219.951 143.623C220.115 143.594 220.288 143.584 220.461 143.604C220.635 143.623 220.818 143.671 221.001 143.758C221.184 143.844 221.367 143.96 221.54 144.124C221.694 144.268 221.819 144.422 221.906 144.567L221.28 145.01C221.232 144.913 221.136 144.798 221.001 144.663C220.789 144.461 220.567 144.335 220.336 144.268C220.105 144.21 219.884 144.191 219.662 144.22C219.441 144.249 219.238 144.316 219.055 144.422C218.872 144.528 218.718 144.644 218.593 144.778L216.503 147.003L215.945 146.483L218.487 143.777Z" fill="white"/>
<path d="M183.155 182.932H332.786C332.786 123.833 298.522 72.7363 248.774 48.4205L183.155 182.932Z" fill="url(#paint1_linear_821_2648)"/>
<path d="M193.5 160.5L248.013 48.5651" stroke="#721FFA" stroke-width="0.963" stroke-miterlimit="10"/>
<path d="M221.916 148.265C230.149 157.461 235.157 169.614 235.157 182.933C235.157 211.649 211.872 234.935 183.155 234.935C154.438 234.935 131.153 211.649 131.153 182.933C131.153 169.614 136.161 157.461 144.394 148.265" stroke="white" stroke-width="0.72225" stroke-miterlimit="10" stroke-dasharray="0.96 0.96"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M303.164 133.887C299.678 132.462 295.71 134.166 294.333 137.662L296.461 138.5C297.424 138.875 297.193 140.3 296.163 140.358L293.881 140.474C294.015 143.035 295.604 145.404 298.147 146.396C301.642 147.773 305.591 146.021 306.92 142.496C308.181 139.154 306.477 135.245 303.164 133.887Z" fill="#721FFA"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M262.082 116.697C263.816 112.46 261.745 107.645 257.499 105.979L256.487 108.56C256.025 109.735 254.301 109.446 254.234 108.194L254.09 105.43C250.979 105.594 248.109 107.52 246.896 110.601C245.23 114.848 247.348 119.634 251.634 121.252C255.698 122.793 260.445 120.723 262.082 116.697Z" fill="#721FFA"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M257.316 162.344C254.388 162.796 252.414 165.55 252.905 168.459L254.677 168.16C255.476 168.025 255.9 169.075 255.226 169.537L253.743 170.539C254.87 172.205 256.901 173.158 259.01 172.802C261.919 172.311 263.874 169.537 263.334 166.619C262.824 163.855 260.099 161.91 257.316 162.344Z" fill="#721FFA"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M310.83 198.822C313.767 198.427 315.799 195.712 315.365 192.794L313.584 193.054C312.775 193.169 312.38 192.11 313.064 191.667L314.566 190.694C313.478 188.999 311.465 188.008 309.347 188.325C306.429 188.759 304.426 191.494 304.898 194.411C305.35 197.204 308.046 199.198 310.83 198.822Z" fill="#721FFA"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M268.544 224.053C270.566 222.714 271.096 219.989 269.738 217.995L268.525 218.823C267.976 219.199 267.302 218.563 267.649 217.986L268.409 216.734C267.003 215.877 265.164 215.867 263.72 216.849C261.726 218.207 261.225 220.942 262.612 222.926C263.931 224.813 266.628 225.324 268.544 224.053Z" fill="#721FFA"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M267.745 257.517C269.093 256.621 269.449 254.811 268.535 253.482L267.726 254.031C267.36 254.281 266.907 253.857 267.138 253.472L267.649 252.634C266.714 252.066 265.491 252.057 264.519 252.711C263.19 253.617 262.853 255.437 263.787 256.756C264.673 258.018 266.464 258.364 267.745 257.517Z" fill="#721FFA"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M233.318 263.179C232.99 262.159 231.883 261.6 230.872 261.947L231.083 262.563C231.18 262.842 230.823 263.054 230.621 262.842L230.178 262.361C229.639 262.862 229.417 263.642 229.668 264.383C230.014 265.404 231.122 265.943 232.133 265.587C233.086 265.25 233.635 264.152 233.318 263.179Z" fill="#721FFA"/>
<path d="M296.779 170.394C300.236 170.394 303.039 167.592 303.039 164.135C303.039 160.678 300.236 157.875 296.779 157.875C293.322 157.875 290.52 160.678 290.52 164.135C290.52 167.592 293.322 170.394 296.779 170.394Z" fill="white"/>
<path d="M296.779 158.357C299.967 158.357 302.557 160.947 302.557 164.135C302.557 167.322 299.967 169.913 296.779 169.913C293.592 169.913 291.001 167.322 291.001 164.135C291.001 160.938 293.582 158.357 296.779 158.357ZM296.779 157.394C293.062 157.394 290.038 160.417 290.038 164.135C290.038 167.852 293.062 170.876 296.779 170.876C300.496 170.876 303.52 167.852 303.52 164.135C303.52 160.417 300.487 157.394 296.779 157.394Z" fill="white"/>
<path d="M249.583 146.849C253.571 146.849 256.805 143.615 256.805 139.626C256.805 135.638 253.571 132.404 249.583 132.404C245.594 132.404 242.36 135.638 242.36 139.626C242.36 143.615 245.594 146.849 249.583 146.849Z" fill="white"/>
<path d="M249.592 132.885C253.319 132.885 256.333 135.9 256.333 139.626C256.333 143.353 253.319 146.367 249.592 146.367C245.865 146.367 242.851 143.353 242.851 139.626C242.851 135.9 245.865 132.885 249.592 132.885ZM249.592 131.922C245.345 131.922 241.888 135.38 241.888 139.626C241.888 143.873 245.345 147.33 249.592 147.33C253.839 147.33 257.296 143.873 257.296 139.626C257.296 135.38 253.839 131.922 249.592 131.922Z" fill="white"/>
<path d="M292.157 116.158C296.146 116.158 299.379 112.925 299.379 108.936C299.379 104.947 296.146 101.713 292.157 101.713C288.168 101.713 284.934 104.947 284.934 108.936C284.934 112.925 288.168 116.158 292.157 116.158Z" fill="white"/>
<path d="M292.157 102.195C295.884 102.195 298.898 105.209 298.898 108.936C298.898 112.662 295.884 115.677 292.157 115.677C288.43 115.677 285.416 112.662 285.416 108.936C285.416 105.209 288.43 102.195 292.157 102.195ZM292.157 101.232C287.91 101.232 284.453 104.689 284.453 108.936C284.453 113.182 287.91 116.64 292.157 116.64C296.404 116.64 299.861 113.182 299.861 108.936C299.861 104.689 296.404 101.232 292.157 101.232Z" fill="white"/>
<path d="M273.86 197.454C276.785 197.454 279.156 195.083 279.156 192.158C279.156 189.233 276.785 186.861 273.86 186.861C270.935 186.861 268.563 189.233 268.563 192.158C268.563 195.083 270.935 197.454 273.86 197.454Z" fill="white"/>
<path d="M273.86 187.343C276.518 187.343 278.675 189.5 278.675 192.158C278.675 194.816 276.518 196.973 273.86 196.973C271.202 196.973 269.045 194.816 269.045 192.158C269.045 189.5 271.202 187.343 273.86 187.343ZM273.86 186.38C270.672 186.38 268.082 188.97 268.082 192.158C268.082 195.346 270.672 197.936 273.86 197.936C277.047 197.936 279.638 195.346 279.638 192.158C279.638 188.97 277.047 186.38 273.86 186.38Z" fill="white"/>
<path d="M298.214 222.415C300.873 222.415 303.029 220.26 303.029 217.6C303.029 214.941 300.873 212.785 298.214 212.785C295.555 212.785 293.399 214.941 293.399 217.6C293.399 220.26 295.555 222.415 298.214 222.415Z" fill="white"/>
<path d="M298.224 213.267C300.622 213.267 302.557 215.203 302.557 217.6C302.557 219.998 300.622 221.934 298.224 221.934C295.826 221.934 293.89 219.998 293.89 217.6C293.89 215.203 295.826 213.267 298.224 213.267ZM298.224 212.304C295.306 212.304 292.927 214.683 292.927 217.6C292.927 220.518 295.306 222.897 298.224 222.897C301.142 222.897 303.52 220.518 303.52 217.6C303.52 214.683 301.142 212.304 298.224 212.304Z" fill="white"/>
<path d="M246.212 238.786C248.339 238.786 250.064 237.062 250.064 234.934C250.064 232.807 248.339 231.082 246.212 231.082C244.085 231.082 242.36 232.807 242.36 234.934C242.36 237.062 244.085 238.786 246.212 238.786Z" fill="white"/>
<path d="M246.222 231.564C248.08 231.564 249.592 233.076 249.592 234.934C249.592 236.793 248.08 238.305 246.222 238.305C244.363 238.305 242.851 236.793 242.851 234.934C242.851 233.076 244.353 231.564 246.222 231.564ZM246.222 230.601C243.833 230.601 241.888 232.546 241.888 234.934C241.888 237.323 243.833 239.268 246.222 239.268C248.61 239.268 250.555 237.323 250.555 234.934C250.555 232.546 248.61 230.601 246.222 230.601Z" fill="white"/>
<path d="M252.106 280.301C253.701 280.301 254.995 279.008 254.995 277.412C254.995 275.817 253.701 274.523 252.106 274.523C250.51 274.523 249.217 275.817 249.217 277.412C249.217 279.008 250.51 280.301 252.106 280.301Z" fill="white"/>
<path d="M252.106 275.005C253.435 275.005 254.513 276.083 254.513 277.412C254.513 278.741 253.435 279.82 252.106 279.82C250.777 279.82 249.698 278.741 249.698 277.412C249.698 276.083 250.777 275.005 252.106 275.005ZM252.106 274.042C250.247 274.042 248.735 275.554 248.735 277.412C248.735 279.271 250.247 280.783 252.106 280.783C253.964 280.783 255.476 279.271 255.476 277.412C255.476 275.554 253.964 274.042 252.106 274.042Z" fill="white"/>
<path d="M208.771 262.004C209.834 262.004 210.697 261.142 210.697 260.078C210.697 259.015 209.834 258.152 208.771 258.152C207.707 258.152 206.845 259.015 206.845 260.078C206.845 261.142 207.707 262.004 208.771 262.004Z" fill="white"/>
<path d="M208.771 258.634C209.57 258.634 210.215 259.279 210.215 260.078C210.215 260.878 209.57 261.523 208.771 261.523C207.971 261.523 207.326 260.878 207.326 260.078C207.326 259.279 207.971 258.634 208.771 258.634ZM208.771 257.671C207.442 257.671 206.363 258.749 206.363 260.078C206.363 261.407 207.442 262.486 208.771 262.486C210.1 262.486 211.178 261.407 211.178 260.078C211.178 258.749 210.1 257.671 208.771 257.671Z" fill="white"/>
<path d="M252.106 90.3112C257.158 90.3112 261.254 86.2152 261.254 81.1627C261.254 76.1101 257.158 72.0142 252.106 72.0142C247.053 72.0142 242.957 76.1101 242.957 81.1627C242.957 86.2152 247.053 90.3112 252.106 90.3112Z" fill="white"/>
<path d="M252.106 72.4956C256.892 72.4956 260.773 76.3765 260.773 81.1626C260.773 85.9487 256.892 89.8296 252.106 89.8296C247.32 89.8296 243.439 85.9487 243.439 81.1626C243.439 76.3765 247.32 72.4956 252.106 72.4956ZM252.106 71.5326C246.8 71.5326 242.476 75.8565 242.476 81.1626C242.476 86.4687 246.8 90.7926 252.106 90.7926C257.412 90.7926 261.736 86.4687 261.736 81.1626C261.736 75.8565 257.412 71.5326 252.106 71.5326Z" fill="white"/>
<path d="M203.262 292.83C204.06 292.83 204.707 292.183 204.707 291.386C204.707 290.588 204.06 289.941 203.262 289.941C202.465 289.941 201.818 290.588 201.818 291.386C201.818 292.183 202.465 292.83 203.262 292.83Z" fill="white"/>
<path d="M203.262 290.422C203.792 290.422 204.225 290.856 204.225 291.385C204.225 291.915 203.792 292.348 203.262 292.348C202.733 292.348 202.299 291.915 202.299 291.385C202.299 290.856 202.733 290.422 203.262 290.422ZM203.262 289.459C202.203 289.459 201.336 290.326 201.336 291.385C201.336 292.445 202.203 293.311 203.262 293.311C204.322 293.311 205.188 292.445 205.188 291.385C205.188 290.326 204.322 289.459 203.262 289.459Z" fill="white"/>
<path d="M171.878 278.847C172.41 278.847 172.841 278.416 172.841 277.884C172.841 277.352 172.41 276.921 171.878 276.921C171.346 276.921 170.915 277.352 170.915 277.884C170.915 278.416 171.346 278.847 171.878 278.847Z" fill="white"/>
<path d="M171.878 277.403C172.148 277.403 172.36 277.615 172.36 277.884C172.36 278.154 172.148 278.366 171.878 278.366C171.609 278.366 171.397 278.154 171.397 277.884C171.397 277.615 171.618 277.403 171.878 277.403ZM171.878 276.44C171.079 276.44 170.434 277.085 170.434 277.884C170.434 278.684 171.079 279.329 171.878 279.329C172.678 279.329 173.323 278.684 173.323 277.884C173.323 277.085 172.678 276.44 171.878 276.44Z" fill="white"/>
<path d="M183.2 345.9C273.167 345.9 346.1 272.967 346.1 183C346.1 93.0328 273.167 20.1 183.2 20.1C93.2327 20.1 20.2999 93.0328 20.2999 183C20.2999 272.967 93.2327 345.9 183.2 345.9Z" stroke="#DC244C" stroke-opacity="0.4" stroke-width="0.9" stroke-miterlimit="10"/>
<path d="M183 365C283.516 365 365 283.516 365 183C365 82.4842 283.516 1 183 1C82.4842 1 1 82.4842 1 183C1 283.516 82.4842 365 183 365Z" stroke="#C9D2EF" stroke-width="0.9" stroke-miterlimit="10" stroke-linecap="round" stroke-dasharray="3 5"/>
<defs>
<linearGradient id="paint0_linear_821_2648" x1="183.406" y1="195.048" x2="175.066" y2="195.428" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF3364"/>
<stop offset="1" stop-color="#C91540" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint1_linear_821_2648" x1="222.35" y1="70.5" x2="257.9" y2="153.75" gradientUnits="userSpaceOnUse">
<stop offset="0.0416667" stop-color="white"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
</linearGradient>
</defs>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="366" height="366" fill="none" version="1.1" viewBox="0 0 366 366" xmlns="http://www.w3.org/2000/svg">
<path d="m183.16 332.56c82.639 0 149.63-66.992 149.63-149.63 0-82.638-66.992-149.63-149.63-149.63s-149.63 66.992-149.63 149.63c0 82.639 66.992 149.63 149.63 149.63z" fill="#D9E2FF" stroke="white" stroke-miterlimit="10" stroke-width=".963"/>
<mask id="mask0_821_2648" x="33" y="32" width="301" height="302" style="mask-type:alpha" maskUnits="userSpaceOnUse">
<path d="m183.16 332.56c82.639 0 149.63-66.992 149.63-149.63 0-82.638-66.992-149.63-149.63-149.63s-149.63 66.992-149.63 149.63c0 82.639 66.992 149.63 149.63 149.63z" fill="#D9E2FF" stroke="white" stroke-miterlimit="10" stroke-width=".963"/>
</mask>
<g mask="url(#mask0_821_2648)">
<g opacity=".2" stroke="black" stroke-miterlimit="10" stroke-width=".9">
<path d="m183.16 33.302v299.26" opacity=".2"/>
<path d="m200.49 33.302v299.26" opacity=".2"/>
<path d="m217.82 33.302v299.26" opacity=".2"/>
<path d="m235.16 33.302v299.26" opacity=".2"/>
<path d="m252.49 33.302v299.26" opacity=".2"/>
<path d="m269.82 33.302v299.26" opacity=".2"/>
<path d="m287.16 33.302v299.26" opacity=".2"/>
<path d="m304.49 33.302v299.26" opacity=".2"/>
<path d="m321.83 33.302v299.26" opacity=".2"/>
<path d="m44.483 33.302v299.26" opacity=".2"/>
<path d="m61.817 33.302v299.26" opacity=".2"/>
<path d="m79.151 33.302v299.26" opacity=".2"/>
<path d="m96.485 33.302v299.26" opacity=".2"/>
<path d="m113.82 33.302v299.26" opacity=".2"/>
<path d="m131.15 33.302v299.26" opacity=".2"/>
<path d="m148.49 33.302v299.26" opacity=".2"/>
<path d="m165.82 33.302v299.26" opacity=".2"/>
<path d="m33.524 182.93h299.26" opacity=".2"/>
<path d="m33.524 165.6h299.26" opacity=".2"/>
<path d="m33.524 148.26h299.26" opacity=".2"/>
<path d="m33.524 130.93h299.26" opacity=".2"/>
<path d="m33.524 113.6h299.26" opacity=".2"/>
<path d="m33.524 96.262h299.26" opacity=".2"/>
<path d="m33.524 78.928h299.26" opacity=".2"/>
<path d="m33.524 61.594h299.26" opacity=".2"/>
<path d="m33.524 44.26h299.26" opacity=".2"/>
<path d="m33.524 321.6h299.26" opacity=".2"/>
<path d="m33.524 304.27h299.26" opacity=".2"/>
<path d="m33.524 286.94h299.26" opacity=".2"/>
<path d="m33.524 269.6h299.26" opacity=".2"/>
<path d="m33.524 252.27h299.26" opacity=".2"/>
<path d="m33.524 234.93h299.26" opacity=".2"/>
<path d="m33.524 217.6h299.26" opacity=".2"/>
<path d="m33.524 200.27h299.26" opacity=".2"/>
</g>
</g>
<path d="m183.16 245.49c34.549 0 62.556-28.008 62.556-62.557s-28.007-62.556-62.556-62.556-62.556 28.007-62.556 62.556 28.007 62.557 62.556 62.557z" fill="#DC244C" stroke="#B2BFE8" stroke-miterlimit="10" stroke-width=".963"/>
<path d="m183.16 225.95c23.758 0 43.017-19.26 43.017-43.018 0-23.757-19.259-43.017-43.017-43.017s-43.017 19.26-43.017 43.017c0 23.758 19.259 43.018 43.017 43.018z" fill="white"/>
<path d="m183.2 337.8c85.494 0 154.8-69.306 154.8-154.8 0-85.494-69.306-154.8-154.8-154.8-85.494 0-154.8 69.306-154.8 154.8 0 85.494 69.306 154.8 154.8 154.8z" stroke="#D9E2FF" stroke-miterlimit="10" stroke-width="1.8"/>
<g stroke="white" stroke-miterlimit="10" stroke-width=".963">
<path d="m229.05 182.67h101.95" opacity=".5"/>
<path d="m35.306 182.67h101.95" opacity=".5"/>
<path d="m183.16 286.94c57.44 0 104-46.564 104-104 0-57.439-46.564-104-104-104s-104 46.564-104 104c0 57.44 46.564 104 104 104z" opacity=".5"/>
<path d="m183.16 123v-88.179" opacity=".5"/>
<path d="m183.16 330.51v-101.94" opacity=".5"/>
</g>
<g clip-rule="evenodd" fill-rule="evenodd">
<path d="m183.12 182.94-8.049-4.643 8.049-4.653 8.049 4.653-8.049 4.643z" fill="#B2BFE8"/>
<path d="m175.08 178.29 8.049 4.643v9.295l-8.049-4.653v-9.285z" fill="white"/>
<path d="m183.12 182.94 8.049-4.643v9.296l-8.049 4.653v-9.306z" fill="#7D8CB5"/>
<path d="m195.11 192.09 0.61365-21.022 12.554-2.5115v38.173l-8.453 4.88z" fill="#24386c"/>
<path d="m158.57 168.55 8.453 4.88 6.0126 15.381 4.0411 5.735 6.3502 7.3035v9.76l-12.431-7.175-12.426-7.174z" fill="#b2bfe8"/>
<path d="m194.04 193.06-10.618 8.7869v9.76l7.951-4.589z" fill="#24386c"/>
<path d="m183.42 182.9-11.382-2.9654 12.636-10.02 10.805 9.4918z" fill="#778abf"/>
<path d="m175.47 178.32 7.951 4.589v9.184l-10.484-3.5144z" fill="#b2bfe8"/>
<path d="m183.42 182.9 7.951-4.589 2.6672 10.803-10.618 2.9699z" fill="#24386c"/>
<path d="m208.28 168.55-8.453 4.88-11.091-1.9419-5.3132-2.0539-7.951 4.2068-8.453-0.211-8.453-4.88 12.426-7.174 12.431-7.175 12.426 7.175z" fill="#778abf"/>
<path d="m191.38 207.02 8.453 4.589v-38.173l-8.202-4.737-8.202-4.738-8.202 4.738-8.202 4.737v18.944l8.202 4.737 8.202 4.738 7.951-4.595v9.76zm0-19.526-7.951 4.595-7.951-4.589v-9.178l7.951-4.589 7.951 4.589v9.172z" fill="#C91540"/>
</g>
<path d="m183.42 201.85v-9.766l-7.951-4.589-0.251 9.617z" fill="url(#paint0_linear_821_2648)"/>
<g fill="white">
<path d="m152.53 143 0.019-0.019-4.497-5.278 0.635-0.539 5.297 6.231-0.79 0.674-8.253-2.177-0.019 0.01 4.536 5.335-0.636 0.539-5.306-6.23 0.789-0.674 8.225 2.128z"/>
<path d="m154.51 140.08c0.163 0.221 0.346 0.395 0.568 0.549 0.221 0.144 0.443 0.25 0.693 0.298 0.241 0.058 0.491 0.068 0.732 0.029 0.25-0.038 0.491-0.125 0.722-0.269 0.347-0.212 0.597-0.482 0.751-0.8 0.154-0.317 0.231-0.616 0.231-0.914l0.761 0.105c-0.058 0.52-0.212 0.954-0.443 1.31-0.241 0.356-0.549 0.655-0.924 0.886-0.337 0.212-0.694 0.347-1.06 0.405-0.365 0.057-0.722 0.048-1.068-0.039-0.347-0.087-0.665-0.241-0.973-0.462-0.308-0.222-0.559-0.501-0.78-0.848-0.212-0.346-0.356-0.703-0.424-1.069-0.067-0.366-0.058-0.722 0.019-1.069 0.077-0.346 0.222-0.664 0.424-0.963 0.202-0.298 0.472-0.548 0.799-0.751 0.347-0.212 0.694-0.346 1.05-0.394 0.356-0.049 0.684-0.02 1.002 0.067 0.317 0.087 0.606 0.241 0.876 0.462 0.27 0.222 0.501 0.482 0.693 0.799l0.183 0.299-3.832 2.369zm2.802-2.465c-0.27-0.443-0.626-0.713-1.05-0.819-0.433-0.106-0.886-0.019-1.358 0.27-0.211 0.125-0.385 0.298-0.529 0.501-0.145 0.202-0.251 0.423-0.308 0.645-0.058 0.221-0.087 0.462-0.058 0.693 0.019 0.231 0.086 0.443 0.212 0.636l3.091-1.926z"/>
<path d="m164.24 137.68c-0.078-0.125-0.145-0.25-0.203-0.385-0.057-0.125-0.125-0.26-0.183-0.395l-0.019 0.01c-0.019 0.164-0.058 0.337-0.125 0.501-0.068 0.163-0.154 0.327-0.27 0.471-0.115 0.145-0.24 0.28-0.385 0.405-0.144 0.115-0.298 0.221-0.462 0.289-0.636 0.289-1.175 0.337-1.628 0.135-0.452-0.203-0.818-0.597-1.097-1.223l-1.426-3.12 0.694-0.318 1.242 2.725c0.125 0.27 0.26 0.501 0.395 0.693 0.135 0.193 0.289 0.337 0.452 0.434 0.164 0.096 0.357 0.144 0.559 0.135 0.202-0.01 0.443-0.068 0.693-0.183 0.039-0.02 0.125-0.077 0.28-0.174 0.154-0.096 0.279-0.26 0.404-0.462s0.193-0.472 0.221-0.79c0.029-0.317-0.067-0.703-0.269-1.146l-1.156-2.523 0.694-0.317 1.752 3.842c0.058 0.135 0.145 0.298 0.241 0.501 0.096 0.202 0.202 0.385 0.299 0.558l-0.703 0.337z"/>
<path d="m165.29 133.3c-0.077-0.232-0.164-0.453-0.25-0.684-0.087-0.231-0.202-0.53-0.337-0.896l0.712-0.241 0.318 0.954 0.019-0.01c0-0.154 0.029-0.318 0.087-0.472 0.048-0.163 0.125-0.317 0.231-0.462 0.106-0.144 0.231-0.279 0.385-0.404 0.154-0.126 0.347-0.222 0.578-0.299 0.202-0.067 0.395-0.106 0.559-0.115l0.096 0.76c-0.106 0-0.25 0.029-0.433 0.087-0.28 0.096-0.501 0.231-0.655 0.404-0.164 0.174-0.279 0.366-0.356 0.569-0.077 0.211-0.116 0.414-0.106 0.626 0 0.211 0.028 0.404 0.096 0.577l0.982 2.889-0.722 0.241-1.204-3.524z"/>
<path d="m172.48 131.68-0.029-0.135c-0.212-0.905-0.77-1.252-1.666-1.05-0.616 0.145-1.108 0.472-1.464 0.992l-0.578-0.424c0.376-0.626 1.06-1.049 2.052-1.28 0.25-0.058 0.51-0.077 0.76-0.058 0.251 0.019 0.482 0.086 0.694 0.202s0.395 0.279 0.549 0.482c0.163 0.211 0.279 0.471 0.356 0.799l0.549 2.35c0.048 0.202 0.106 0.414 0.173 0.626 0.068 0.211 0.135 0.394 0.193 0.529l-0.722 0.164c-0.049-0.125-0.106-0.26-0.145-0.405-0.038-0.144-0.087-0.288-0.116-0.433h-0.019c-0.135 0.405-0.337 0.713-0.597 0.944s-0.607 0.385-1.03 0.481c-0.231 0.058-0.462 0.077-0.694 0.058-0.231-0.019-0.452-0.067-0.645-0.154-0.202-0.096-0.375-0.221-0.52-0.395-0.144-0.164-0.25-0.375-0.308-0.635-0.096-0.424-0.067-0.79 0.096-1.089 0.164-0.298 0.405-0.539 0.703-0.741 0.308-0.202 0.646-0.356 1.021-0.472 0.376-0.116 0.713-0.212 1.03-0.289l0.357-0.067zm-0.241 0.693c-0.183 0.048-0.424 0.106-0.693 0.193-0.28 0.086-0.54 0.192-0.78 0.327-0.241 0.135-0.434 0.299-0.588 0.491-0.144 0.193-0.192 0.424-0.135 0.684 0.039 0.173 0.106 0.318 0.212 0.424 0.097 0.106 0.222 0.183 0.357 0.24 0.134 0.058 0.288 0.077 0.443 0.077 0.154 0 0.308-0.019 0.452-0.057 0.27-0.068 0.491-0.164 0.674-0.299s0.318-0.298 0.414-0.481c0.097-0.183 0.154-0.386 0.174-0.607 0.019-0.222 0-0.453-0.058-0.684l-0.087-0.385-0.385 0.077z"/>
<path d="m176.51 134.37-0.751 0.105-1.242-8.647 0.751-0.106 1.242 8.648z"/>
<path d="m182.36 133.14 4.382 0.067-0.01 0.761-5.209-0.087 0.134-8.185 5.075 0.086-9e-3 0.761-4.237-0.067-0.049 2.783 3.968 0.067-0.01 0.761-3.967-0.067-0.068 3.12z"/>
<path d="m189.34 128.84c-9e-3 0.144-0.019 0.289-0.029 0.433-0.019 0.145-0.038 0.289-0.057 0.434h0.019c0.106-0.135 0.231-0.251 0.375-0.357 0.145-0.106 0.309-0.192 0.482-0.25 0.173-0.067 0.356-0.106 0.539-0.135s0.366-0.019 0.54 0c0.683 0.096 1.165 0.356 1.444 0.761 0.279 0.404 0.366 0.953 0.27 1.618l-0.491 3.399-0.752-0.106 0.424-2.966c0.087-0.597 0.048-1.069-0.115-1.415-0.164-0.347-0.52-0.559-1.079-0.636-0.039-0.01-0.144-0.01-0.327 0-0.183 0-0.376 0.058-0.588 0.173-0.212 0.116-0.414 0.289-0.607 0.54-0.192 0.25-0.327 0.626-0.394 1.107l-0.395 2.745-0.751-0.106 0.597-4.17c0.019-0.145 0.038-0.328 0.058-0.549 0.019-0.222 0.038-0.433 0.048-0.636l0.789 0.116z"/>
<path d="m198.83 132.1c-0.077-0.231-0.212-0.443-0.405-0.636-0.193-0.192-0.433-0.327-0.722-0.404-0.308-0.087-0.588-0.116-0.857-0.077-0.27 0.038-0.52 0.125-0.732 0.269-0.212 0.145-0.414 0.328-0.568 0.559s-0.28 0.501-0.357 0.799c-0.077 0.299-0.106 0.588-0.086 0.867 0.019 0.279 0.096 0.539 0.212 0.77 0.125 0.231 0.288 0.434 0.5 0.597 0.212 0.164 0.472 0.289 0.78 0.366 0.289 0.077 0.569 0.077 0.829 0.01 0.26-0.077 0.481-0.193 0.664-0.347l0.482 0.617c-0.347 0.231-0.694 0.385-1.06 0.442-0.366 0.058-0.732 0.039-1.088-0.048-0.424-0.106-0.79-0.269-1.098-0.5-0.308-0.232-0.549-0.501-0.722-0.809-0.173-0.309-0.279-0.655-0.318-1.021-0.038-0.376 0-0.761 0.106-1.156s0.27-0.741 0.482-1.049c0.211-0.309 0.481-0.549 0.789-0.732s0.655-0.299 1.031-0.337c0.375-0.048 0.78-0.01 1.203 0.115 0.357 0.106 0.675 0.27 0.963 0.501 0.289 0.231 0.52 0.539 0.703 0.915l-0.731 0.289z"/>
<path d="m205.18 136.04c-0.154 0.376-0.357 0.703-0.626 0.973-0.26 0.269-0.559 0.472-0.886 0.616-0.328 0.145-0.684 0.212-1.069 0.212-0.376 0-0.761-0.077-1.156-0.241-0.385-0.154-0.712-0.366-0.982-0.626s-0.482-0.558-0.616-0.895c-0.145-0.328-0.212-0.684-0.212-1.06 0-0.375 0.077-0.751 0.221-1.126 0.154-0.376 0.357-0.703 0.626-0.973 0.27-0.27 0.559-0.472 0.886-0.616 0.328-0.145 0.684-0.212 1.059-0.212 0.376 0 0.761 0.077 1.146 0.231 0.395 0.164 0.723 0.366 1.002 0.636 0.27 0.26 0.481 0.558 0.616 0.895 0.145 0.328 0.212 0.684 0.212 1.059 0.01 0.366-0.067 0.752-0.221 1.127zm-0.771-0.318c0.116-0.279 0.174-0.558 0.183-0.837 0.01-0.28-0.029-0.54-0.125-0.79-0.096-0.241-0.231-0.462-0.424-0.665-0.192-0.192-0.433-0.356-0.722-0.471-0.289-0.116-0.578-0.174-0.847-0.164-0.28 9e-3 -0.53 0.067-0.761 0.183-0.231 0.115-0.443 0.279-0.626 0.481-0.183 0.203-0.337 0.453-0.453 0.732-0.115 0.279-0.173 0.559-0.183 0.838-9e-3 0.279 0.029 0.539 0.116 0.78s0.231 0.462 0.414 0.664c0.193 0.203 0.433 0.357 0.722 0.472 0.289 0.116 0.578 0.174 0.848 0.164 0.279-0.01 0.529-0.067 0.77-0.183 0.241-0.115 0.443-0.27 0.636-0.481 0.192-0.193 0.346-0.443 0.452-0.723z"/>
<path d="m209.86 141.74-0.665-0.375 0.453-0.78-0.019-0.01c-0.202 0.096-0.405 0.164-0.617 0.193-0.211 0.028-0.423 0.038-0.626 0.019-0.202-0.019-0.394-0.058-0.587-0.125-0.193-0.068-0.366-0.145-0.52-0.232-0.366-0.211-0.664-0.462-0.896-0.76-0.231-0.299-0.394-0.617-0.491-0.963-0.096-0.347-0.115-0.703-0.067-1.079 0.048-0.375 0.173-0.732 0.375-1.088 0.203-0.356 0.453-0.645 0.752-0.876 0.298-0.231 0.616-0.395 0.963-0.482 0.346-0.096 0.712-0.115 1.078-0.067s0.742 0.183 1.117 0.395c0.154 0.086 0.308 0.202 0.453 0.327 0.154 0.135 0.289 0.279 0.404 0.443 0.116 0.164 0.222 0.347 0.299 0.549s0.125 0.404 0.144 0.626l0.02 9e-3 2.109-3.669 0.664 0.376-4.343 7.569zm-2.937-4.805c-0.154 0.26-0.251 0.529-0.299 0.799-0.048 0.279-0.038 0.539 0.019 0.799 0.058 0.251 0.164 0.492 0.328 0.713s0.375 0.414 0.655 0.568c0.269 0.154 0.539 0.251 0.828 0.279 0.289 0.039 0.558 0.02 0.828-0.057 0.26-0.068 0.51-0.193 0.732-0.366 0.221-0.174 0.414-0.395 0.558-0.655 0.145-0.26 0.241-0.53 0.28-0.809 0.038-0.279 0.019-0.549-0.048-0.819-0.068-0.26-0.193-0.51-0.366-0.741-0.174-0.231-0.395-0.424-0.665-0.578-0.269-0.154-0.549-0.25-0.818-0.279-0.27-0.029-0.53 0-0.78 0.077-0.251 0.077-0.482 0.212-0.694 0.385-0.221 0.202-0.404 0.424-0.558 0.684z"/>
<path d="m212.97 140.89c-0.144 0.231-0.25 0.472-0.308 0.722-0.058 0.251-0.077 0.501-0.038 0.751 0.038 0.251 0.115 0.482 0.24 0.694 0.126 0.221 0.289 0.414 0.501 0.577 0.328 0.251 0.665 0.386 1.011 0.415 0.347 0.028 0.665-0.01 0.934-0.106l0.174 0.741c-0.511 0.125-0.963 0.145-1.387 0.048-0.424-0.096-0.799-0.279-1.156-0.549-0.317-0.24-0.568-0.529-0.751-0.847s-0.298-0.655-0.337-1.011c-0.038-0.357-9e-3 -0.713 0.087-1.069 0.096-0.366 0.27-0.703 0.52-1.031 0.25-0.327 0.53-0.577 0.857-0.77 0.318-0.193 0.655-0.318 1.002-0.366 0.346-0.048 0.703-0.038 1.049 0.058 0.347 0.087 0.674 0.25 0.982 0.481 0.328 0.251 0.569 0.53 0.742 0.838 0.164 0.318 0.27 0.636 0.289 0.963 0.029 0.328-0.01 0.655-0.116 0.982-0.106 0.328-0.269 0.646-0.5 0.935l-0.212 0.279-3.583-2.735zm3.294 1.733c0.318-0.414 0.443-0.837 0.395-1.28-0.049-0.443-0.299-0.829-0.732-1.166-0.193-0.154-0.414-0.26-0.655-0.317-0.241-0.068-0.482-0.087-0.722-0.058-0.241 0.019-0.463 0.086-0.665 0.183-0.212 0.106-0.385 0.24-0.52 0.423l2.899 2.215z"/>
<path d="m218.49 143.78c0.164-0.173 0.328-0.356 0.482-0.539 0.163-0.193 0.375-0.424 0.635-0.723l0.549 0.511-0.683 0.732 0.019 0.019c0.144-0.068 0.289-0.116 0.462-0.154 0.164-0.029 0.337-0.039 0.51-0.019 0.174 0.019 0.357 0.067 0.54 0.154 0.183 0.086 0.366 0.202 0.539 0.366 0.154 0.144 0.279 0.298 0.366 0.443l-0.626 0.443c-0.048-0.097-0.144-0.212-0.279-0.347-0.212-0.202-0.434-0.328-0.665-0.395-0.231-0.058-0.452-0.077-0.674-0.048-0.221 0.029-0.424 0.096-0.607 0.202s-0.337 0.222-0.462 0.356l-2.09 2.225-0.558-0.52 2.542-2.706z"/>
</g>
<path d="m183.16 182.93h149.63c0-59.099-34.264-110.2-84.012-134.51l-65.619 134.51z" fill="url(#paint1_linear_821_2648)"/>
<path d="m193.69 160.23 54.458-111.96" stroke="#721ffa" stroke-miterlimit="10" stroke-width=".963"/>
<path d="m221.92 148.26c8.233 9.196 13.241 21.349 13.241 34.668 0 28.716-23.285 52.002-52.002 52.002s-52.002-23.286-52.002-52.002c0-13.319 5.008-25.472 13.241-34.668" stroke="white" stroke-dasharray="0.96 0.96" stroke-miterlimit="10" stroke-width=".72225"/>
<g clip-rule="evenodd" fill="#721FFA" fill-rule="evenodd">
<path d="m303.16 133.89c-3.486-1.425-7.454 0.279-8.831 3.775l2.128 0.838c0.963 0.375 0.732 1.8-0.298 1.858l-2.282 0.116c0.134 2.561 1.723 4.93 4.266 5.922 3.495 1.377 7.444-0.375 8.773-3.9 1.261-3.342-0.443-7.251-3.756-8.609z"/>
<path d="m262.08 116.7c1.734-4.237-0.337-9.052-4.583-10.718l-1.012 2.581c-0.462 1.175-2.186 0.886-2.253-0.366l-0.144-2.764c-3.111 0.164-5.981 2.09-7.194 5.171-1.666 4.247 0.452 9.033 4.738 10.651 4.064 1.541 8.811-0.529 10.448-4.555z"/>
<path d="m257.32 162.34c-2.928 0.452-4.902 3.206-4.411 6.115l1.772-0.299c0.799-0.135 1.223 0.915 0.549 1.377l-1.483 1.002c1.127 1.666 3.158 2.619 5.267 2.263 2.909-0.491 4.864-3.265 4.324-6.183-0.51-2.764-3.235-4.709-6.018-4.275z"/>
<path d="m310.83 198.82c2.937-0.395 4.969-3.11 4.535-6.028l-1.781 0.26c-0.809 0.115-1.204-0.944-0.52-1.387l1.502-0.973c-1.088-1.695-3.101-2.686-5.219-2.369-2.918 0.434-4.921 3.169-4.449 6.086 0.452 2.793 3.148 4.787 5.932 4.411z"/>
<path d="m268.54 224.05c2.022-1.339 2.552-4.064 1.194-6.058l-1.213 0.828c-0.549 0.376-1.223-0.26-0.876-0.837l0.76-1.252c-1.406-0.857-3.245-0.867-4.689 0.115-1.994 1.358-2.495 4.093-1.108 6.077 1.319 1.887 4.016 2.398 5.932 1.127z"/>
<path d="m267.74 257.52c1.348-0.896 1.704-2.706 0.79-4.035l-0.809 0.549c-0.366 0.25-0.819-0.174-0.588-0.559l0.511-0.838c-0.935-0.568-2.158-0.577-3.13 0.077-1.329 0.906-1.666 2.726-0.732 4.045 0.886 1.262 2.677 1.608 3.958 0.761z"/>
<path d="m233.32 263.18c-0.328-1.02-1.435-1.579-2.446-1.232l0.211 0.616c0.097 0.279-0.26 0.491-0.462 0.279l-0.443-0.481c-0.539 0.501-0.761 1.281-0.51 2.022 0.346 1.021 1.454 1.56 2.465 1.204 0.953-0.337 1.502-1.435 1.185-2.408z"/>
</g>
<g fill="white">
<path d="m296.78 170.39c3.457 0 6.26-2.802 6.26-6.259s-2.803-6.26-6.26-6.26-6.259 2.803-6.259 6.26 2.802 6.259 6.259 6.259z"/>
<path d="m296.78 158.36c3.188 0 5.778 2.59 5.778 5.778 0 3.187-2.59 5.778-5.778 5.778-3.187 0-5.778-2.591-5.778-5.778 0-3.197 2.581-5.778 5.778-5.778zm0-0.963c-3.717 0-6.741 3.023-6.741 6.741 0 3.717 3.024 6.741 6.741 6.741s6.741-3.024 6.741-6.741c0-3.718-3.033-6.741-6.741-6.741z"/>
<path d="m249.58 146.85c3.988 0 7.222-3.234 7.222-7.223 0-3.988-3.234-7.222-7.222-7.222-3.989 0-7.223 3.234-7.223 7.222 0 3.989 3.234 7.223 7.223 7.223z"/>
<path d="m249.59 132.88c3.727 0 6.741 3.015 6.741 6.741 0 3.727-3.014 6.741-6.741 6.741s-6.741-3.014-6.741-6.741c0-3.726 3.014-6.741 6.741-6.741zm0-0.963c-4.247 0-7.704 3.458-7.704 7.704 0 4.247 3.457 7.704 7.704 7.704s7.704-3.457 7.704-7.704c0-4.246-3.457-7.704-7.704-7.704z"/>
<path d="m292.16 116.16c3.989 0 7.222-3.233 7.222-7.222s-3.233-7.223-7.222-7.223-7.223 3.234-7.223 7.223 3.234 7.222 7.223 7.222z"/>
<path d="m292.16 102.2c3.727 0 6.741 3.014 6.741 6.741 0 3.726-3.014 6.741-6.741 6.741s-6.741-3.015-6.741-6.741c0-3.727 3.014-6.741 6.741-6.741zm0-0.963c-4.247 0-7.704 3.457-7.704 7.704 0 4.246 3.457 7.704 7.704 7.704s7.704-3.458 7.704-7.704c0-4.247-3.457-7.704-7.704-7.704z"/>
<path d="m273.86 197.45c2.925 0 5.296-2.371 5.296-5.296s-2.371-5.297-5.296-5.297-5.297 2.372-5.297 5.297 2.372 5.296 5.297 5.296z"/>
<path d="m273.86 187.34c2.658 0 4.815 2.157 4.815 4.815s-2.157 4.815-4.815 4.815-4.815-2.157-4.815-4.815 2.157-4.815 4.815-4.815zm0-0.963c-3.188 0-5.778 2.59-5.778 5.778s2.59 5.778 5.778 5.778c3.187 0 5.778-2.59 5.778-5.778s-2.591-5.778-5.778-5.778z"/>
<path d="m298.21 222.42c2.659 0 4.815-2.155 4.815-4.815 0-2.659-2.156-4.815-4.815-4.815s-4.815 2.156-4.815 4.815c0 2.66 2.156 4.815 4.815 4.815z"/>
<path d="m298.22 213.27c2.398 0 4.333 1.936 4.333 4.333 0 2.398-1.935 4.334-4.333 4.334s-4.334-1.936-4.334-4.334c0-2.397 1.936-4.333 4.334-4.333zm0-0.963c-2.918 0-5.297 2.379-5.297 5.296 0 2.918 2.379 5.297 5.297 5.297s5.296-2.379 5.296-5.297c0-2.917-2.378-5.296-5.296-5.296z"/>
<path d="m246.21 238.79c2.127 0 3.852-1.724 3.852-3.852 0-2.127-1.725-3.852-3.852-3.852s-3.852 1.725-3.852 3.852c0 2.128 1.725 3.852 3.852 3.852z"/>
<path d="m246.22 231.56c1.858 0 3.37 1.512 3.37 3.37 0 1.859-1.512 3.371-3.37 3.371-1.859 0-3.371-1.512-3.371-3.371 0-1.858 1.502-3.37 3.371-3.37zm0-0.963c-2.389 0-4.334 1.945-4.334 4.333 0 2.389 1.945 4.334 4.334 4.334 2.388 0 4.333-1.945 4.333-4.334 0-2.388-1.945-4.333-4.333-4.333z"/>
<path d="m252.11 280.3c1.595 0 2.889-1.293 2.889-2.889 0-1.595-1.294-2.889-2.889-2.889-1.596 0-2.889 1.294-2.889 2.889 0 1.596 1.293 2.889 2.889 2.889z"/>
<path d="m252.11 275c1.329 0 2.407 1.078 2.407 2.407s-1.078 2.408-2.407 2.408-2.408-1.079-2.408-2.408 1.079-2.407 2.408-2.407zm0-0.963c-1.859 0-3.371 1.512-3.371 3.37 0 1.859 1.512 3.371 3.371 3.371 1.858 0 3.37-1.512 3.37-3.371 0-1.858-1.512-3.37-3.37-3.37z"/>
<path d="m208.77 262c1.063 0 1.926-0.862 1.926-1.926 0-1.063-0.863-1.926-1.926-1.926-1.064 0-1.926 0.863-1.926 1.926 0 1.064 0.862 1.926 1.926 1.926z"/>
<path d="m208.77 258.63c0.799 0 1.444 0.645 1.444 1.444 0 0.8-0.645 1.445-1.444 1.445-0.8 0-1.445-0.645-1.445-1.445 0-0.799 0.645-1.444 1.445-1.444zm0-0.963c-1.329 0-2.408 1.078-2.408 2.407s1.079 2.408 2.408 2.408 2.407-1.079 2.407-2.408-1.078-2.407-2.407-2.407z"/>
<path d="m252.11 90.311c5.052 0 9.148-4.096 9.148-9.1485 0-5.0526-4.096-9.1485-9.148-9.1485-5.053 0-9.149 4.0959-9.149 9.1485 0 5.0525 4.096 9.1485 9.149 9.1485z"/>
<path d="m252.11 72.496c4.786 0 8.667 3.8809 8.667 8.667s-3.881 8.667-8.667 8.667-8.667-3.8809-8.667-8.667 3.881-8.667 8.667-8.667zm0-0.963c-5.306 0-9.63 4.3239-9.63 9.63s4.324 9.63 9.63 9.63 9.63-4.3239 9.63-9.63-4.324-9.63-9.63-9.63z"/>
<path d="m203.26 292.83c0.798 0 1.445-0.647 1.445-1.444 0-0.798-0.647-1.445-1.445-1.445-0.797 0-1.444 0.647-1.444 1.445 0 0.797 0.647 1.444 1.444 1.444z"/>
<path d="m203.26 290.42c0.53 0 0.963 0.434 0.963 0.963 0 0.53-0.433 0.963-0.963 0.963-0.529 0-0.963-0.433-0.963-0.963 0-0.529 0.434-0.963 0.963-0.963zm0-0.963c-1.059 0-1.926 0.867-1.926 1.926 0 1.06 0.867 1.926 1.926 1.926 1.06 0 1.926-0.866 1.926-1.926 0-1.059-0.866-1.926-1.926-1.926z"/>
<path d="m171.88 278.85c0.532 0 0.963-0.431 0.963-0.963s-0.431-0.963-0.963-0.963-0.963 0.431-0.963 0.963 0.431 0.963 0.963 0.963z"/>
<path d="m171.88 277.4c0.27 0 0.482 0.212 0.482 0.481 0 0.27-0.212 0.482-0.482 0.482-0.269 0-0.481-0.212-0.481-0.482 0-0.269 0.221-0.481 0.481-0.481zm0-0.963c-0.799 0-1.444 0.645-1.444 1.444 0 0.8 0.645 1.445 1.444 1.445 0.8 0 1.445-0.645 1.445-1.445 0-0.799-0.645-1.444-1.445-1.444z"/>
</g>
<path d="m183.2 345.9c89.967 0 162.9-72.933 162.9-162.9 0-89.967-72.933-162.9-162.9-162.9-89.967 0-162.9 72.933-162.9 162.9 0 89.967 72.933 162.9 162.9 162.9z" stroke="#DC244C" stroke-miterlimit="10" stroke-opacity=".4" stroke-width=".9"/>
<path d="m183 365c100.52 0 182-81.484 182-182 0-100.52-81.484-182-182-182-100.52 0-182 81.484-182 182 0 100.52 81.484 182 182 182z" stroke="#C9D2EF" stroke-dasharray="3 5" stroke-linecap="round" stroke-miterlimit="10" stroke-width=".9"/>
<defs>
<linearGradient id="paint0_linear_821_2648" x1="183.41" x2="175.07" y1="195.05" y2="195.43" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF3364" offset="0"/>
<stop stop-color="#C91540" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="paint1_linear_821_2648" x1="222.35" x2="257.9" y1="70.5" y2="153.75" gradientUnits="userSpaceOnUse">
<stop stop-color="white" offset=".041667"/>
<stop stop-color="white" stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 22 KiB

@@ -1,121 +1,411 @@
<svg width="397" height="381" viewBox="0 0 397 381" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1033_7057)">
<path opacity="0.2" fill-rule="evenodd" clip-rule="evenodd" d="M174.112 287.092L91.9859 334.509C90.2623 335.505 88.1425 335.505 86.4188 334.509L4.29307 287.092C0.57809 284.951 0.57809 279.598 4.29307 277.457L42.567 255.36L86.4188 230.04C88.1425 229.044 90.2623 229.044 91.9859 230.04L135.827 255.36L174.112 277.457C177.816 279.598 177.827 284.951 174.112 287.092Z" fill="#B2BFE8"/>
<path opacity="0.2" d="M0 265.734L30.2766 248.261L85.6801 216.272C87.8534 215.019 90.5406 215.019 92.714 216.272L148.107 248.261L196.477 276.183C201.166 278.891 201.166 285.657 196.477 288.366L92.714 348.277C90.5406 349.529 87.8534 349.529 85.6801 348.277L0 298.804" stroke="#B2BFE8" stroke-width="1.0706" stroke-miterlimit="10"/>
<path d="M283.848 108.537C264.46 108.537 248.679 92.7568 248.679 73.3682C248.679 53.9796 264.46 38.199 283.848 38.199C303.237 38.199 319.017 53.9796 319.017 73.3682C319.017 92.7568 303.237 108.537 283.848 108.537Z" fill="#D9E2FF"/>
<path d="M283.848 38.7344C302.98 38.7344 318.482 54.2367 318.482 73.3683C318.482 92.5 302.98 108.002 283.848 108.002C264.716 108.002 249.214 92.5 249.214 73.3683C249.214 54.2367 264.716 38.7344 283.848 38.7344ZM283.848 37.6638C264.16 37.6638 248.144 53.68 248.144 73.3683C248.144 93.0567 264.16 109.073 283.848 109.073C303.536 109.073 319.553 93.0567 319.553 73.3683C319.553 53.68 303.536 37.6638 283.848 37.6638Z" fill="white"/>
<path d="M276.054 57.609C276.054 57.609 270.648 63.4331 277.285 71.666C288.58 85.6694 261.59 97.0606 257.908 66.8483C255.563 47.5989 265.123 41.4858 277.264 39.2268" fill="#721FFA"/>
<path d="M310.678 95.2834C304.329 103.056 294.661 108.002 283.848 108.002C274.705 108.002 266.398 104.469 260.209 98.6772C265.766 91.4721 278.527 87.2432 278.527 87.2432L284.673 89.7163C284.673 89.7163 285.508 85.1341 292.36 85.9371C297.606 86.5366 310.678 95.2834 310.678 95.2834Z" fill="#C91540"/>
<path d="M286.503 94.609C289.651 93.3885 293.58 90.7334 292.017 82.9929L289.362 65.6278L275.112 67.8118L277.767 85.177C278.463 89.727 280.326 95.5404 286.503 94.609Z" fill="#FFECA7"/>
<path d="M255.188 73.3682H233.68C231.667 73.3682 229.751 72.5653 228.348 71.1307C214.463 56.9131 193.201 47.813 169.358 47.813C147.486 47.813 127.787 55.4678 113.965 67.694C101.343 78.8604 93.624 93.8488 93.624 110.325C93.624 128.536 103.067 144.927 118.119 156.361C119.479 157.389 120.271 159.006 120.271 160.718V162.945V177.902C120.271 180 122.809 181.049 124.297 179.572L134.521 169.347C136.009 167.859 138.215 167.356 140.206 168.041C149.188 171.135 159.038 172.848 169.369 172.848C211.197 172.848 245.114 144.852 245.114 110.325C245.114 104.169 244.033 98.2275 242.02 92.6069C241.046 89.8769 241.72 86.8364 243.776 84.7915L255.188 73.3682Z" fill="#D9E2FF"/>
<path d="M277.467 82.8536V84.4917C282.917 84.4381 283.195 81.3013 283.195 81.3013L277.467 82.8536Z" fill="#24386C"/>
<path d="M261.28 62.3731C263.796 80.6482 269.32 85.9263 283.976 81.7188C294.864 78.5927 301.042 69.4283 299.982 58.1442C298.922 46.8601 291.064 38.9698 279.78 40.0296C268.496 41.0895 259.428 48.8728 261.28 62.3731Z" fill="#FFECA7"/>
<path d="M271.194 64.5573L270.979 70.7774C270.947 71.7089 271.75 72.4476 272.671 72.3512" stroke="#24386C" stroke-width="0.5353" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M275.947 65.1031C276.609 65.1031 277.146 64.5663 277.146 63.904C277.146 63.2418 276.609 62.705 275.947 62.705C275.285 62.705 274.748 63.2418 274.748 63.904C274.748 64.5663 275.285 65.1031 275.947 65.1031Z" fill="#24386C"/>
<path d="M266.954 64.5784C267.616 64.5784 268.153 64.0416 268.153 63.3794C268.153 62.7171 267.616 62.1803 266.954 62.1803C266.292 62.1803 265.755 62.7171 265.755 63.3794C265.755 64.0416 266.292 64.5784 266.954 64.5784Z" fill="#24386C"/>
<path d="M275.476 76.0341C274.074 76.6871 272.757 76.6443 271.74 76.4088" stroke="#24386C" stroke-width="0.5353" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M280.326 55.1572C280.326 55.1572 287.306 58.1335 285.015 68.4648C280.326 89.6948 308.665 86.7828 300.657 56.0565C295.764 37.2889 283.591 35.9507 271.6 38.9162C253.154 43.4877 251.591 65.7133 280.326 55.1572Z" fill="#721FFA"/>
<path d="M282.167 51.5602L280.133 55.2966" stroke="#C91540" stroke-width="2.1412" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M154.52 91.9218H157.036C157.507 91.9218 157.978 91.9967 158.46 92.1573C158.941 92.3179 159.359 92.5534 159.744 92.8746C160.13 93.1958 160.429 93.5919 160.676 94.063C160.911 94.534 161.029 95.0907 161.029 95.7117C161.029 96.3433 160.911 96.9 160.676 97.3711C160.44 97.8422 160.13 98.2383 159.744 98.5595C159.359 98.8806 158.931 99.1162 158.46 99.2661C157.989 99.4267 157.517 99.5016 157.036 99.5016H154.52V91.9218ZM155.291 98.795H156.789C157.368 98.795 157.871 98.7094 158.288 98.5274C158.717 98.3561 159.07 98.1205 159.348 97.8315C159.627 97.5424 159.841 97.2105 159.969 96.8465C160.108 96.4825 160.173 96.0971 160.173 95.7117C160.173 95.3156 160.108 94.9408 159.969 94.5661C159.83 94.2021 159.627 93.8702 159.348 93.5812C159.07 93.2921 158.717 93.0566 158.288 92.8853C157.86 92.714 157.368 92.6176 156.789 92.6176H155.291V98.795Z" fill="#24386C"/>
<path d="M163.331 92.5641C163.331 92.714 163.277 92.8317 163.17 92.9388C163.063 93.0352 162.946 93.078 162.817 93.078C162.689 93.078 162.571 93.0352 162.464 92.9388C162.357 92.8425 162.303 92.714 162.303 92.5641C162.303 92.4142 162.357 92.2965 162.464 92.2001C162.571 92.1037 162.689 92.0609 162.817 92.0609C162.946 92.0609 163.063 92.1037 163.17 92.2001C163.277 92.2965 163.331 92.4142 163.331 92.5641ZM163.17 99.5016H162.464V94.4912H163.17V99.5016Z" fill="#24386C"/>
<path d="M168.084 96.4291V96.3006C168.084 95.4334 167.656 95.0052 166.8 95.0052C166.211 95.0052 165.708 95.1979 165.269 95.594L164.841 95.0908C165.312 94.609 166.018 94.3628 166.96 94.3628C167.207 94.3628 167.442 94.3949 167.667 94.4699C167.892 94.5448 168.084 94.6519 168.245 94.791C168.406 94.9302 168.545 95.1229 168.641 95.3477C168.738 95.5726 168.791 95.8295 168.791 96.14V98.3775C168.791 98.5703 168.802 98.7737 168.812 98.9771C168.834 99.1912 168.855 99.3625 168.877 99.5017H168.192C168.17 99.3839 168.159 99.2447 168.149 99.1056C168.138 98.9664 168.138 98.8272 168.138 98.688H168.117C167.913 99.0199 167.667 99.2661 167.378 99.4053C167.089 99.5445 166.757 99.6301 166.35 99.6301C166.125 99.6301 165.911 99.598 165.708 99.5445C165.504 99.4803 165.312 99.3946 165.151 99.2661C164.99 99.1377 164.862 98.9878 164.766 98.8058C164.669 98.6238 164.616 98.4097 164.616 98.1741C164.616 97.7673 164.723 97.4461 164.926 97.2106C165.14 96.9751 165.397 96.8038 165.718 96.6967C166.04 96.5896 166.372 96.5147 166.736 96.4826C167.1 96.4505 167.421 96.4398 167.72 96.4398H168.084V96.4291ZM167.72 97.0072C167.538 97.0072 167.314 97.0179 167.057 97.0286C166.789 97.05 166.532 97.0928 166.286 97.1571C166.04 97.2213 165.826 97.3284 165.654 97.4675C165.483 97.6067 165.397 97.8101 165.397 98.0564C165.397 98.2169 165.429 98.3561 165.494 98.4739C165.558 98.5917 165.654 98.688 165.761 98.763C165.879 98.8379 165.997 98.8914 166.136 98.9236C166.275 98.9557 166.414 98.9664 166.564 98.9664C166.821 98.9664 167.046 98.9235 167.228 98.8379C167.41 98.7523 167.581 98.6345 167.71 98.4953C167.838 98.3561 167.935 98.1741 167.988 97.9814C168.042 97.7887 168.074 97.5746 168.074 97.3605V96.9965H167.72V97.0072Z" fill="#24386C"/>
<path d="M171.296 99.5016H170.59V91.4078H171.296V99.5016Z" fill="#24386C"/>
<path d="M178.062 96.9965C178.062 97.3712 177.998 97.7245 177.859 98.0457C177.72 98.3669 177.548 98.6452 177.313 98.8808C177.077 99.1163 176.799 99.2983 176.467 99.4268C176.146 99.5552 175.782 99.6302 175.397 99.6302C175.011 99.6302 174.658 99.5659 174.326 99.4268C174.005 99.2983 173.716 99.1163 173.48 98.8808C173.245 98.6452 173.063 98.3669 172.934 98.0457C172.806 97.7245 172.731 97.3712 172.731 96.9965C172.731 96.6218 172.795 96.2685 172.934 95.9473C173.063 95.6261 173.245 95.3478 173.48 95.1122C173.716 94.8767 173.994 94.6947 174.326 94.5662C174.647 94.4378 175 94.3735 175.397 94.3735C175.793 94.3735 176.146 94.4378 176.467 94.5662C176.788 94.6947 177.067 94.8767 177.313 95.1122C177.548 95.3478 177.73 95.6261 177.859 95.9473C177.987 96.2685 178.062 96.6111 178.062 96.9965ZM177.291 96.9965C177.291 96.7181 177.249 96.4612 177.163 96.215C177.077 95.9687 176.949 95.7653 176.788 95.5833C176.628 95.4013 176.424 95.2621 176.189 95.1551C175.953 95.048 175.696 95.0052 175.407 95.0052C175.118 95.0052 174.851 95.0587 174.615 95.1551C174.379 95.2621 174.187 95.4013 174.026 95.5833C173.866 95.7653 173.737 95.9687 173.651 96.215C173.566 96.4612 173.523 96.7181 173.523 96.9965C173.523 97.2749 173.566 97.5318 173.651 97.778C173.737 98.0243 173.866 98.2277 174.026 98.4097C174.187 98.5917 174.379 98.7309 174.615 98.8379C174.851 98.945 175.107 98.9878 175.407 98.9878C175.707 98.9878 175.964 98.9343 176.189 98.8379C176.424 98.7309 176.617 98.5917 176.788 98.4097C176.949 98.2277 177.077 98.0243 177.163 97.778C177.249 97.5318 177.291 97.2749 177.291 96.9965Z" fill="#24386C"/>
<path d="M179.732 100.508C179.936 100.786 180.214 101.011 180.535 101.172C180.867 101.343 181.242 101.429 181.649 101.429C182.002 101.429 182.313 101.375 182.559 101.268C182.805 101.161 183.008 101.022 183.158 100.85C183.308 100.679 183.426 100.465 183.49 100.23C183.554 99.994 183.587 99.737 183.587 99.4694V98.5701H183.565C183.34 98.9127 183.062 99.1589 182.73 99.2981C182.398 99.4373 182.056 99.5122 181.692 99.5122C181.328 99.5122 180.985 99.448 180.664 99.3195C180.343 99.191 180.075 99.0197 179.839 98.7949C179.604 98.5701 179.422 98.3024 179.283 97.9812C179.144 97.6708 179.079 97.3282 179.079 96.9642C179.079 96.6002 179.144 96.2576 179.272 95.9471C179.401 95.6366 179.583 95.3583 179.807 95.1227C180.032 94.8872 180.3 94.7052 180.61 94.5767C180.921 94.4483 181.263 94.384 181.638 94.384C181.788 94.384 181.949 94.3947 182.12 94.4269C182.291 94.459 182.452 94.5018 182.623 94.5767C182.794 94.6517 182.955 94.748 183.115 94.8658C183.276 94.9943 183.437 95.1549 183.576 95.3476H183.597V94.5125H184.304V99.4801C184.304 99.7477 184.272 100.037 184.197 100.347C184.133 100.658 183.993 100.936 183.801 101.193C183.608 101.45 183.33 101.664 182.987 101.835C182.634 102.007 182.184 102.092 181.617 102.092C181.113 102.092 180.675 102.007 180.278 101.846C179.882 101.686 179.529 101.429 179.208 101.086L179.732 100.508ZM179.861 96.9321C179.861 97.1997 179.904 97.4459 180 97.6815C180.096 97.917 180.225 98.1204 180.396 98.2917C180.567 98.463 180.76 98.6022 180.985 98.7092C181.21 98.8163 181.456 98.8591 181.724 98.8591C181.981 98.8591 182.227 98.8163 182.452 98.72C182.687 98.6236 182.891 98.4951 183.073 98.3238C183.255 98.1525 183.383 97.9598 183.48 97.7243C183.576 97.4888 183.619 97.2211 183.608 96.9321C183.608 96.6644 183.565 96.4182 183.48 96.1826C183.394 95.9471 183.265 95.7437 183.105 95.5724C182.944 95.4011 182.741 95.2619 182.505 95.1549C182.27 95.0478 182.002 95.005 181.713 95.005C181.445 95.005 181.199 95.0585 180.974 95.1549C180.749 95.2619 180.557 95.4011 180.385 95.5724C180.214 95.7437 180.086 95.9471 179.989 96.1826C179.904 96.4182 179.861 96.6644 179.861 96.9321Z" fill="#24386C"/>
<path d="M153.449 106.022C153.117 105.529 152.625 105.283 151.983 105.283C151.779 105.283 151.587 105.315 151.394 105.369C151.201 105.422 151.03 105.508 150.869 105.615C150.709 105.722 150.591 105.872 150.505 106.043C150.409 106.214 150.366 106.428 150.366 106.664C150.366 107.007 150.462 107.274 150.655 107.467C150.848 107.66 151.083 107.81 151.372 107.927C151.661 108.045 151.972 108.163 152.315 108.259C152.657 108.356 152.968 108.484 153.257 108.645C153.546 108.805 153.781 109.019 153.974 109.287C154.167 109.555 154.263 109.908 154.263 110.368C154.263 110.711 154.188 111.021 154.038 111.3C153.888 111.578 153.696 111.803 153.46 111.985C153.225 112.167 152.957 112.317 152.657 112.413C152.357 112.509 152.058 112.563 151.768 112.563C151.308 112.563 150.858 112.477 150.441 112.295C150.023 112.113 149.67 111.835 149.37 111.439L150.077 110.936C150.238 111.214 150.473 111.439 150.762 111.599C151.051 111.771 151.394 111.846 151.801 111.846C151.993 111.846 152.186 111.814 152.379 111.76C152.571 111.696 152.743 111.61 152.893 111.492C153.043 111.375 153.171 111.225 153.267 111.053C153.364 110.882 153.417 110.689 153.417 110.465C153.417 110.197 153.364 109.983 153.246 109.812C153.139 109.64 152.989 109.49 152.807 109.373C152.625 109.255 152.422 109.158 152.186 109.073C151.95 108.998 151.715 108.912 151.469 108.837C151.222 108.762 150.987 108.666 150.751 108.57C150.516 108.473 150.312 108.345 150.13 108.184C149.948 108.034 149.799 107.842 149.692 107.606C149.584 107.371 149.52 107.082 149.52 106.739C149.52 106.375 149.584 106.054 149.734 105.786C149.874 105.518 150.056 105.294 150.291 105.112C150.527 104.93 150.784 104.801 151.083 104.716C151.372 104.63 151.672 104.587 151.983 104.587C152.411 104.587 152.796 104.651 153.15 104.79C153.503 104.93 153.824 105.165 154.124 105.508L153.449 106.022Z" fill="#24386C"/>
<path d="M159.209 108.516C159.091 108.334 158.92 108.173 158.695 108.045C158.481 107.916 158.235 107.852 157.957 107.852C157.667 107.841 157.4 107.895 157.164 107.991C156.929 108.088 156.736 108.227 156.575 108.409C156.415 108.591 156.286 108.805 156.201 109.051C156.115 109.298 156.072 109.565 156.072 109.854C156.072 110.143 156.115 110.4 156.201 110.646C156.286 110.893 156.415 111.107 156.575 111.289C156.736 111.471 156.939 111.61 157.164 111.706C157.4 111.803 157.657 111.856 157.957 111.846C158.235 111.846 158.481 111.781 158.695 111.653C158.909 111.524 159.081 111.364 159.209 111.182L159.787 111.621C159.541 111.91 159.252 112.135 158.942 112.274C158.631 112.413 158.299 112.488 157.957 112.499C157.55 112.509 157.186 112.445 156.854 112.306C156.522 112.177 156.244 111.995 156.008 111.76C155.773 111.524 155.601 111.246 155.473 110.914C155.355 110.593 155.291 110.24 155.291 109.865C155.291 109.49 155.355 109.137 155.473 108.805C155.591 108.473 155.773 108.195 156.008 107.959C156.244 107.724 156.522 107.542 156.854 107.413C157.186 107.285 157.55 107.221 157.957 107.231C158.299 107.242 158.631 107.306 158.942 107.445C159.252 107.585 159.541 107.799 159.787 108.098L159.209 108.516Z" fill="#24386C"/>
<path d="M161.211 110.036C161.233 110.283 161.297 110.518 161.393 110.743C161.49 110.968 161.629 111.15 161.789 111.321C161.95 111.482 162.143 111.61 162.357 111.696C162.571 111.781 162.807 111.835 163.053 111.835C163.428 111.835 163.759 111.749 164.038 111.567C164.316 111.396 164.52 111.193 164.659 110.968L165.205 111.417C164.905 111.792 164.573 112.071 164.209 112.231C163.845 112.392 163.46 112.477 163.053 112.477C162.678 112.477 162.335 112.413 162.025 112.274C161.715 112.135 161.436 111.963 161.211 111.728C160.987 111.492 160.805 111.214 160.676 110.893C160.548 110.572 160.473 110.218 160.473 109.844C160.473 109.469 160.537 109.116 160.665 108.794C160.794 108.473 160.976 108.195 161.201 107.959C161.425 107.724 161.693 107.542 162.004 107.413C162.314 107.285 162.646 107.221 162.999 107.221C163.374 107.221 163.717 107.285 164.016 107.424C164.316 107.563 164.562 107.735 164.776 107.959C164.98 108.184 165.13 108.452 165.237 108.752C165.344 109.051 165.397 109.373 165.397 109.726V110.047H161.211V110.036ZM164.616 109.458C164.616 108.976 164.477 108.591 164.188 108.302C163.899 108.013 163.502 107.852 162.989 107.852C162.764 107.852 162.539 107.895 162.325 107.981C162.111 108.066 161.918 108.195 161.757 108.334C161.597 108.484 161.468 108.655 161.372 108.848C161.276 109.041 161.233 109.244 161.233 109.448H164.616V109.458Z" fill="#24386C"/>
<path d="M167.346 107.338C167.356 107.478 167.367 107.606 167.378 107.745C167.378 107.874 167.378 108.013 167.378 108.152H167.399C167.474 108.013 167.581 107.895 167.699 107.777C167.817 107.66 167.956 107.563 168.106 107.478C168.256 107.392 168.416 107.328 168.588 107.285C168.759 107.242 168.919 107.221 169.08 107.221C169.722 107.221 170.193 107.392 170.504 107.724C170.814 108.066 170.964 108.548 170.964 109.169V112.349H170.258V109.576C170.258 109.019 170.161 108.591 169.969 108.291C169.776 107.992 169.423 107.842 168.898 107.842C168.866 107.842 168.759 107.852 168.598 107.884C168.438 107.917 168.266 107.992 168.084 108.12C167.902 108.248 167.742 108.441 167.592 108.698C167.453 108.955 167.378 109.308 167.378 109.769V112.338H166.671V108.43C166.671 108.291 166.671 108.12 166.66 107.917C166.65 107.713 166.639 107.51 166.618 107.328H167.346V107.338Z" fill="#24386C"/>
<path d="M175.835 109.276V109.148C175.835 108.281 175.407 107.852 174.551 107.852C173.962 107.852 173.459 108.045 173.02 108.441L172.592 107.938C173.063 107.456 173.769 107.21 174.711 107.21C174.958 107.21 175.193 107.242 175.418 107.317C175.643 107.392 175.835 107.499 175.996 107.638C176.157 107.777 176.296 107.97 176.392 108.195C176.489 108.42 176.542 108.677 176.542 108.987V111.225C176.542 111.417 176.553 111.621 176.574 111.824C176.596 112.038 176.617 112.21 176.628 112.349H175.943C175.921 112.231 175.9 112.092 175.9 111.953C175.9 111.814 175.878 111.674 175.878 111.535H175.857C175.653 111.867 175.407 112.113 175.129 112.252C174.851 112.402 174.508 112.477 174.09 112.477C173.866 112.477 173.651 112.445 173.448 112.392C173.245 112.338 173.052 112.242 172.902 112.113C172.741 111.985 172.613 111.835 172.517 111.653C172.42 111.471 172.377 111.257 172.377 111.021C172.377 110.614 172.485 110.293 172.688 110.058C172.902 109.822 173.159 109.651 173.48 109.544C173.801 109.426 174.133 109.362 174.497 109.33C174.861 109.298 175.193 109.287 175.493 109.287H175.835V109.276ZM175.471 109.854C175.289 109.854 175.065 109.865 174.808 109.876C174.54 109.897 174.283 109.94 174.037 110.004C173.791 110.068 173.577 110.176 173.405 110.315C173.234 110.454 173.138 110.657 173.138 110.904C173.138 111.064 173.17 111.203 173.234 111.321C173.298 111.439 173.395 111.535 173.502 111.61C173.619 111.685 173.748 111.739 173.887 111.771C174.026 111.803 174.165 111.814 174.305 111.814C174.561 111.814 174.786 111.771 174.968 111.685C175.15 111.599 175.322 111.482 175.45 111.342C175.579 111.203 175.675 111.021 175.728 110.829C175.782 110.636 175.825 110.422 175.825 110.208V109.844H175.471V109.854Z" fill="#24386C"/>
<path d="M178.255 108.891C178.255 108.666 178.255 108.441 178.234 108.216C178.223 107.992 178.212 107.692 178.212 107.328H178.908V108.259H178.929C178.983 108.12 179.047 107.992 179.144 107.874C179.24 107.745 179.347 107.638 179.475 107.531C179.604 107.424 179.765 107.349 179.936 107.296C180.107 107.231 180.311 107.21 180.525 107.21C180.728 107.21 180.899 107.231 181.049 107.274L180.91 107.97C180.814 107.938 180.685 107.917 180.503 107.917C180.236 107.917 180 107.97 179.807 108.077C179.615 108.184 179.454 108.313 179.326 108.473C179.197 108.634 179.101 108.805 179.047 108.987C178.983 109.169 178.962 109.351 178.962 109.522V112.349H178.255V108.891Z" fill="#24386C"/>
<path d="M182.762 105.411C182.762 105.561 182.709 105.679 182.602 105.786C182.494 105.882 182.377 105.925 182.248 105.925C182.12 105.925 182.002 105.882 181.895 105.786C181.788 105.69 181.734 105.561 181.734 105.411C181.734 105.261 181.788 105.144 181.895 105.047C182.002 104.951 182.12 104.908 182.248 104.908C182.377 104.908 182.494 104.951 182.602 105.047C182.709 105.144 182.762 105.261 182.762 105.411ZM182.602 112.349H181.895V107.338H182.602V112.349Z" fill="#24386C"/>
<path d="M189.368 109.844C189.368 110.218 189.303 110.572 189.164 110.893C189.025 111.214 188.854 111.492 188.618 111.728C188.383 111.963 188.104 112.145 187.773 112.274C187.451 112.402 187.087 112.477 186.702 112.477C186.317 112.477 185.963 112.413 185.631 112.274C185.31 112.145 185.021 111.963 184.786 111.728C184.55 111.492 184.368 111.214 184.24 110.893C184.111 110.572 184.036 110.218 184.036 109.844C184.036 109.469 184.1 109.116 184.24 108.794C184.368 108.473 184.55 108.195 184.786 107.959C185.021 107.724 185.299 107.542 185.631 107.413C185.953 107.285 186.306 107.221 186.702 107.221C187.098 107.221 187.451 107.285 187.773 107.413C188.094 107.542 188.372 107.724 188.618 107.959C188.854 108.195 189.036 108.473 189.164 108.794C189.293 109.116 189.368 109.458 189.368 109.844ZM188.597 109.844C188.597 109.565 188.554 109.308 188.468 109.062C188.383 108.816 188.254 108.612 188.094 108.43C187.933 108.248 187.73 108.109 187.494 108.002C187.259 107.895 187.002 107.852 186.713 107.852C186.424 107.852 186.156 107.906 185.92 108.002C185.685 108.109 185.492 108.248 185.332 108.43C185.171 108.612 185.042 108.816 184.957 109.062C184.871 109.308 184.828 109.565 184.828 109.844C184.828 110.122 184.871 110.379 184.957 110.625C185.042 110.871 185.171 111.075 185.332 111.257C185.492 111.439 185.685 111.578 185.92 111.685C186.156 111.792 186.413 111.835 186.713 111.835C187.012 111.835 187.269 111.781 187.494 111.685C187.73 111.578 187.922 111.439 188.094 111.257C188.254 111.075 188.383 110.871 188.468 110.625C188.554 110.379 188.597 110.122 188.597 109.844Z" fill="#24386C"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M89.2026 187.955L64.6002 202.161L39.9978 216.368V273.185L64.6002 287.392L89.2026 301.599L104.94 292.52L121.674 301.599L138.407 291.942V216.379L113.805 202.172L89.2026 187.955Z" fill="#201D1D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M121.674 263.518V226.025L138.407 216.358V291.921L121.674 301.577V263.518Z" fill="#24386C"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M138.407 216.358L121.674 226.025L105.433 216.657L89.2026 207.29L72.9616 216.657L56.7313 226.025L39.9978 216.358L64.6002 202.151L89.2026 187.944L113.805 202.151L138.407 216.358Z" fill="#7D8CB5"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M39.9978 216.358L56.7313 226.025V263.518L72.9616 272.885L89.2026 282.253V301.567L64.6002 287.36L39.9978 273.153V216.358Z" fill="#B2BFE8"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M104.94 273.174L89.2026 282.264V301.577L104.94 292.499V273.174Z" fill="#24386C"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M89.2024 244.771L73.4646 235.693L89.2024 226.603L104.94 235.693L89.2024 244.771Z" fill="#7D8CB5"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M73.4646 235.693L89.2024 244.771V262.95L73.4646 253.861V235.693Z" fill="#B2BFE8"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M89.2026 244.771L104.94 235.693V253.861L89.2026 262.95V244.771Z" fill="#24386C"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M104.94 292.499L121.674 301.577V226.014L105.433 216.647L89.2025 207.279L72.9615 216.647L56.7312 226.014V263.507L72.9615 272.875L89.2025 282.242L104.94 273.153V292.499ZM104.94 253.861L89.2025 262.95L73.4647 253.861V235.693L89.2025 226.603L104.94 235.693V253.861Z" fill="#C91540"/>
<path d="M88.4639 282.274V262.95L72.801 253.936L72.4263 272.95L88.4639 282.274Z" fill="url(#paint0_linear_1033_7057)"/>
<path d="M154.905 132.701C157.347 132.701 159.327 130.721 159.327 128.279C159.327 125.837 157.347 123.858 154.905 123.858C152.463 123.858 150.484 125.837 150.484 128.279C150.484 130.721 152.463 132.701 154.905 132.701Z" fill="white"/>
<path d="M169.358 132.701C171.8 132.701 173.78 130.721 173.78 128.279C173.78 125.837 171.8 123.858 169.358 123.858C166.916 123.858 164.937 125.837 164.937 128.279C164.937 130.721 166.916 132.701 169.358 132.701Z" fill="white"/>
<path d="M183.811 132.701C186.253 132.701 188.233 130.721 188.233 128.279C188.233 125.837 186.253 123.858 183.811 123.858C181.37 123.858 179.39 125.837 179.39 128.279C179.39 130.721 181.37 132.701 183.811 132.701Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M127.915 192.569H49.7616C45.0295 192.569 41.1968 188.736 41.1968 184.004C41.1968 179.272 45.0295 175.439 49.7616 175.439H127.915C132.647 175.439 136.48 179.272 136.48 184.004C136.48 188.736 132.647 192.569 127.915 192.569Z" fill="white" stroke="#B2BFE8" stroke-width="1.0706" stroke-miterlimit="10"/>
<path d="M58.3369 186.434H58.3584V180.011H59.1292V187.591H58.1656L53.6477 181.103H53.6263V187.591H52.8555V180.011H53.819L58.3369 186.434Z" fill="#24386C"/>
<path d="M61.4204 185.278C61.4418 185.524 61.506 185.76 61.6024 185.985C61.6987 186.21 61.8379 186.392 61.9985 186.563C62.1591 186.724 62.3518 186.852 62.5659 186.938C62.78 187.023 63.0155 187.077 63.2618 187.077C63.6365 187.077 63.9684 186.991 64.2467 186.809C64.5251 186.638 64.7285 186.434 64.8677 186.21L65.4137 186.659C65.1139 187.034 64.782 187.312 64.418 187.473C64.054 187.634 63.6686 187.719 63.2618 187.719C62.8871 187.719 62.5445 187.655 62.234 187.516C61.9235 187.377 61.6452 187.205 61.4204 186.97C61.1955 186.734 61.0135 186.456 60.8851 186.135C60.7566 185.814 60.6816 185.46 60.6816 185.086C60.6816 184.711 60.7459 184.357 60.8743 184.036C61.0028 183.715 61.1848 183.437 61.4096 183.201C61.6345 182.966 61.9021 182.784 62.2126 182.655C62.5231 182.527 62.855 182.463 63.2083 182.463C63.583 182.463 63.9256 182.527 64.2253 182.666C64.5251 182.805 64.7713 182.976 64.9855 183.201C65.1889 183.426 65.3388 183.694 65.4458 183.993C65.5529 184.293 65.6064 184.614 65.6064 184.968V185.289H61.4204V185.278ZM64.8249 184.7C64.8249 184.218 64.6857 183.833 64.3966 183.544C64.1076 183.255 63.7114 183.094 63.1975 183.094C62.9727 183.094 62.7479 183.137 62.5338 183.223C62.3197 183.308 62.127 183.437 61.9664 183.576C61.8058 183.726 61.6773 183.897 61.5809 184.09C61.4846 184.283 61.4418 184.486 61.4418 184.689H64.8249V184.7Z" fill="#24386C"/>
<path d="M70.4992 187.591C70.4885 187.451 70.4778 187.323 70.4671 187.184C70.4564 187.045 70.4671 186.916 70.4671 186.777H70.4457C70.3708 186.916 70.2637 187.034 70.1459 187.152C70.0282 187.269 69.889 187.366 69.7391 187.451C69.5892 187.537 69.4286 187.601 69.2573 187.644C69.0861 187.687 68.9255 187.719 68.7649 187.719C68.1225 187.719 67.6514 187.548 67.341 187.205C67.0305 186.863 66.8806 186.381 66.8806 185.76V182.58H67.5872V185.353C67.5872 185.631 67.6086 185.878 67.6514 186.092C67.6943 186.306 67.7692 186.488 67.8763 186.627C67.9833 186.766 68.1225 186.884 68.2938 186.959C68.4651 187.034 68.6899 187.066 68.9576 187.066C68.9897 187.066 69.0968 187.055 69.2573 187.023C69.4179 186.991 69.5892 186.916 69.7712 186.788C69.9532 186.659 70.1138 186.466 70.2637 186.209C70.4136 185.953 70.4778 185.599 70.4778 185.139V182.569H71.1844V186.477C71.1844 186.616 71.1844 186.788 71.1951 186.991C71.2058 187.194 71.2165 187.398 71.238 187.58H70.4992V187.591Z" fill="#24386C"/>
<path d="M72.9076 184.143C72.9076 183.919 72.9076 183.694 72.8862 183.469C72.8755 183.244 72.8647 182.944 72.8647 182.58H73.5606V183.512H73.5821C73.6356 183.373 73.6998 183.244 73.7962 183.126C73.8925 182.998 73.9996 182.891 74.1281 182.784C74.2565 182.677 74.4171 182.602 74.5884 182.548C74.7597 182.484 74.9631 182.463 75.1772 182.463C75.3807 182.463 75.552 182.484 75.7018 182.527L75.5627 183.223C75.4663 183.191 75.3378 183.169 75.1558 183.169C74.8882 183.169 74.6527 183.223 74.4599 183.33C74.2672 183.437 74.1066 183.565 73.9782 183.726C73.8497 183.886 73.7533 184.058 73.6998 184.24C73.6356 184.422 73.6142 184.604 73.6142 184.775V187.601H72.9076V184.143Z" fill="#24386C"/>
<path d="M79.5989 184.518V184.39C79.5989 183.522 79.1707 183.094 78.3142 183.094C77.7254 183.094 77.2222 183.287 76.7832 183.683L76.355 183.18C76.826 182.698 77.5326 182.452 78.4748 182.452C78.721 182.452 78.9565 182.484 79.1814 182.559C79.4062 182.634 79.5989 182.741 79.7595 182.88C79.9201 183.019 80.0593 183.212 80.1556 183.437C80.252 183.662 80.3055 183.919 80.3055 184.229V186.467C80.3055 186.659 80.3162 186.863 80.3376 187.066C80.359 187.28 80.3804 187.451 80.3911 187.591H79.706C79.6845 187.473 79.6631 187.334 79.6631 187.195C79.6631 187.055 79.6417 186.916 79.6417 186.777H79.6203C79.4169 187.109 79.1707 187.355 78.8923 187.494C78.614 187.644 78.2714 187.719 77.8538 187.719C77.629 187.719 77.4149 187.687 77.2115 187.633C77.0081 187.58 76.8153 187.484 76.6655 187.355C76.5049 187.227 76.3764 187.077 76.28 186.895C76.1837 186.713 76.1409 186.499 76.1409 186.263C76.1409 185.856 76.2479 185.535 76.4513 185.3C76.6655 185.064 76.9224 184.893 77.2436 184.786C77.5648 184.668 77.8966 184.604 78.2607 184.572C78.6247 184.539 78.9565 184.529 79.2563 184.529H79.5989V184.518ZM79.2349 185.096C79.0529 185.096 78.8281 185.107 78.5711 185.118C78.3035 185.139 78.0465 185.182 77.8003 185.246C77.5541 185.31 77.3399 185.417 77.1686 185.557C76.9973 185.696 76.901 185.899 76.901 186.145C76.901 186.306 76.9331 186.445 76.9973 186.563C77.0616 186.681 77.1579 186.777 77.265 186.852C77.3828 186.927 77.5112 186.98 77.6504 187.013C77.7896 187.045 77.9288 187.055 78.0679 187.055C78.3249 187.055 78.5497 187.013 78.7317 186.927C78.9137 186.841 79.085 186.723 79.2135 186.584C79.342 186.445 79.4383 186.263 79.4918 186.07C79.5454 185.878 79.5882 185.664 79.5882 185.449V185.085H79.2349V185.096Z" fill="#24386C"/>
<path d="M82.8108 187.591H82.1042V179.497H82.8108V187.591Z" fill="#24386C"/>
<path d="M88.5174 186.884H92.575V187.591H87.7466V180.011H92.4465V180.717H88.5174V183.297H92.1896V184.004H88.5174V186.884Z" fill="#24386C"/>
<path d="M94.5126 182.58C94.5233 182.719 94.534 182.848 94.534 182.987C94.534 183.116 94.534 183.255 94.534 183.394H94.5554C94.6304 183.255 94.7374 183.137 94.8552 183.019C94.973 182.901 95.1121 182.805 95.262 182.719C95.4119 182.634 95.5725 182.57 95.7331 182.527C95.9044 182.484 96.065 182.463 96.2363 182.463C96.8786 182.463 97.3497 182.634 97.6602 182.966C97.9706 183.308 98.1205 183.79 98.1205 184.411V187.591H97.4246V184.818C97.4246 184.261 97.3283 183.833 97.1356 183.533C96.9429 183.233 96.5896 183.083 96.065 183.083C96.0329 183.083 95.9258 183.094 95.7652 183.126C95.6046 183.158 95.4226 183.233 95.2406 183.362C95.0586 183.49 94.898 183.683 94.7481 183.94C94.609 184.197 94.534 184.55 94.534 185.011V187.58H93.8274V183.672C93.8274 183.533 93.8167 183.362 93.806 183.158C93.7953 182.955 93.7846 182.752 93.7632 182.57H94.5126V182.58Z" fill="#24386C"/>
<path d="M103.442 183.758C103.324 183.576 103.153 183.415 102.938 183.287C102.724 183.158 102.478 183.094 102.189 183.094C101.9 183.083 101.632 183.137 101.407 183.233C101.172 183.33 100.979 183.469 100.808 183.651C100.647 183.833 100.519 184.047 100.433 184.293C100.348 184.539 100.305 184.807 100.305 185.096C100.305 185.385 100.348 185.642 100.433 185.888C100.519 186.135 100.647 186.349 100.808 186.531C100.969 186.713 101.172 186.852 101.407 186.948C101.643 187.045 101.9 187.098 102.189 187.087C102.467 187.087 102.714 187.023 102.938 186.895C103.163 186.766 103.324 186.606 103.442 186.424L104.02 186.863C103.773 187.152 103.484 187.376 103.174 187.516C102.863 187.655 102.532 187.73 102.189 187.74C101.782 187.751 101.418 187.687 101.086 187.548C100.754 187.419 100.476 187.237 100.24 187.002C100.005 186.766 99.8337 186.488 99.7052 186.156C99.5874 185.835 99.5232 185.481 99.5232 185.107C99.5232 184.732 99.5874 184.379 99.7052 184.047C99.823 183.715 100.005 183.437 100.24 183.201C100.476 182.966 100.754 182.784 101.086 182.655C101.418 182.527 101.782 182.462 102.189 182.473C102.532 182.484 102.863 182.548 103.174 182.687C103.484 182.826 103.773 183.04 104.02 183.34L103.442 183.758Z" fill="#24386C"/>
<path d="M110.015 185.086C110.015 185.46 109.95 185.814 109.822 186.135C109.694 186.456 109.512 186.734 109.265 186.97C109.03 187.205 108.751 187.387 108.42 187.516C108.098 187.644 107.734 187.719 107.349 187.719C106.964 187.719 106.61 187.655 106.278 187.516C105.957 187.387 105.679 187.205 105.443 186.97C105.208 186.734 105.026 186.456 104.887 186.135C104.747 185.814 104.694 185.46 104.694 185.086C104.694 184.711 104.758 184.357 104.887 184.036C105.015 183.715 105.197 183.437 105.443 183.201C105.679 182.966 105.957 182.784 106.278 182.655C106.6 182.527 106.964 182.463 107.349 182.463C107.745 182.463 108.098 182.527 108.42 182.655C108.741 182.784 109.03 182.966 109.265 183.201C109.501 183.437 109.683 183.715 109.822 184.036C109.95 184.357 110.015 184.711 110.015 185.086ZM109.244 185.086C109.244 184.807 109.201 184.55 109.115 184.304C109.03 184.058 108.901 183.854 108.73 183.672C108.559 183.49 108.366 183.351 108.141 183.244C107.906 183.137 107.649 183.094 107.349 183.094C107.049 183.094 106.792 183.148 106.567 183.244C106.332 183.351 106.139 183.49 105.979 183.672C105.818 183.854 105.69 184.058 105.604 184.304C105.518 184.55 105.475 184.807 105.475 185.086C105.475 185.364 105.518 185.621 105.604 185.867C105.69 186.113 105.818 186.317 105.979 186.499C106.139 186.681 106.332 186.82 106.567 186.927C106.803 187.034 107.06 187.077 107.349 187.077C107.638 187.077 107.906 187.023 108.141 186.927C108.377 186.831 108.569 186.681 108.73 186.499C108.891 186.317 109.019 186.113 109.115 185.867C109.201 185.632 109.244 185.364 109.244 185.086Z" fill="#24386C"/>
<path d="M116.299 187.591H115.593V186.756H115.571C115.454 186.927 115.325 187.077 115.164 187.194C115.004 187.312 114.843 187.419 114.672 187.494C114.501 187.569 114.319 187.633 114.137 187.666C113.955 187.698 113.783 187.719 113.623 187.719C113.227 187.719 112.873 187.655 112.542 187.516C112.22 187.387 111.942 187.205 111.706 186.97C111.471 186.734 111.289 186.456 111.15 186.135C111.021 185.813 110.957 185.46 110.957 185.085C110.957 184.711 111.021 184.357 111.15 184.036C111.278 183.715 111.46 183.437 111.706 183.201C111.942 182.966 112.22 182.784 112.542 182.655C112.863 182.527 113.227 182.462 113.623 182.462C113.783 182.462 113.955 182.484 114.137 182.516C114.319 182.548 114.49 182.612 114.672 182.687C114.854 182.762 115.004 182.869 115.164 182.987C115.325 183.105 115.454 183.255 115.571 183.426H115.593V179.508H116.299V187.591ZM111.728 185.085C111.728 185.364 111.771 185.621 111.856 185.867C111.942 186.113 112.07 186.317 112.242 186.499C112.402 186.681 112.606 186.82 112.831 186.927C113.055 187.034 113.323 187.077 113.623 187.077C113.912 187.077 114.169 187.023 114.415 186.927C114.661 186.82 114.875 186.681 115.057 186.499C115.239 186.317 115.379 186.113 115.475 185.867C115.571 185.621 115.625 185.364 115.625 185.085C115.625 184.807 115.571 184.55 115.475 184.304C115.379 184.058 115.239 183.854 115.057 183.672C114.875 183.49 114.661 183.351 114.415 183.244C114.169 183.137 113.901 183.094 113.623 183.094C113.334 183.094 113.066 183.148 112.831 183.244C112.595 183.351 112.402 183.49 112.242 183.672C112.081 183.854 111.953 184.058 111.856 184.304C111.76 184.55 111.728 184.807 111.728 185.085Z" fill="#24386C"/>
<path d="M118.333 185.278C118.355 185.524 118.419 185.76 118.515 185.985C118.612 186.21 118.751 186.392 118.911 186.563C119.072 186.724 119.265 186.852 119.479 186.938C119.693 187.023 119.928 187.077 120.175 187.077C120.549 187.077 120.881 186.991 121.16 186.809C121.438 186.638 121.641 186.434 121.781 186.21L122.327 186.659C122.027 187.034 121.695 187.312 121.331 187.473C120.967 187.634 120.581 187.719 120.175 187.719C119.8 187.719 119.457 187.655 119.147 187.516C118.836 187.377 118.558 187.205 118.333 186.97C118.108 186.734 117.926 186.456 117.798 186.135C117.669 185.814 117.594 185.46 117.594 185.086C117.594 184.711 117.659 184.357 117.787 184.036C117.916 183.715 118.098 183.437 118.322 183.201C118.547 182.966 118.815 182.784 119.125 182.655C119.436 182.527 119.768 182.463 120.121 182.463C120.496 182.463 120.838 182.527 121.138 182.666C121.438 182.805 121.684 182.976 121.898 183.201C122.102 183.426 122.252 183.694 122.359 183.993C122.466 184.293 122.519 184.614 122.519 184.968V185.289H118.333V185.278ZM121.738 184.7C121.738 184.218 121.599 183.833 121.309 183.544C121.02 183.255 120.624 183.094 120.11 183.094C119.886 183.094 119.661 183.137 119.447 183.223C119.233 183.308 119.04 183.437 118.879 183.576C118.719 183.726 118.59 183.897 118.494 184.09C118.397 184.283 118.355 184.486 118.355 184.689H121.738V184.7Z" fill="#24386C"/>
<path d="M123.869 184.143C123.869 183.919 123.869 183.694 123.858 183.469C123.847 183.244 123.836 182.944 123.826 182.58H124.522V183.512H124.543C124.597 183.373 124.661 183.244 124.757 183.126C124.853 182.998 124.961 182.891 125.1 182.784C125.228 182.687 125.389 182.602 125.56 182.548C125.731 182.495 125.935 182.463 126.149 182.463C126.352 182.463 126.524 182.484 126.673 182.527L126.534 183.223C126.438 183.191 126.309 183.169 126.127 183.169C125.86 183.169 125.624 183.223 125.432 183.33C125.239 183.437 125.078 183.565 124.95 183.726C124.821 183.886 124.725 184.058 124.671 184.24C124.607 184.422 124.586 184.604 124.586 184.775V187.601H123.879V184.143H123.869Z" fill="#24386C"/>
<path opacity="0.3" fill-rule="evenodd" clip-rule="evenodd" d="M128.579 196.059H49.1087C42.4495 196.059 37.0537 190.663 37.0537 184.004C37.0537 177.345 42.4495 171.949 49.1087 171.949H128.579C135.238 171.949 140.634 177.345 140.634 184.004C140.634 190.663 135.238 196.059 128.579 196.059Z" stroke="#B2BFE8" stroke-width="1.0706" stroke-miterlimit="10"/>
<path d="M283.848 24.6987C310.72 24.6987 332.517 46.4854 332.517 73.3681C332.517 100.24 310.731 122.038 283.848 122.038C256.976 122.038 235.179 100.251 235.179 73.3681C235.179 46.4961 256.965 24.6987 283.848 24.6987ZM283.848 23.6281C256.419 23.6281 234.108 45.9394 234.108 73.3681C234.108 100.797 256.419 123.108 283.848 123.108C311.277 123.108 333.588 100.797 333.588 73.3681C333.588 45.9394 311.266 23.6281 283.848 23.6281Z" fill="#D9E2FF"/>
<g opacity="0.5">
<path opacity="0.5" d="M283.848 5.21379C321.491 5.21379 352.003 35.7259 352.003 73.3682C352.003 111.01 321.491 141.523 283.848 141.523C246.206 141.523 215.694 111.01 215.694 73.3682C215.694 35.7259 246.206 5.21379 283.848 5.21379ZM283.848 4.14319C245.671 4.14319 214.623 35.2013 214.623 73.3682C214.623 111.535 245.681 142.593 283.848 142.593C322.026 142.593 353.073 111.535 353.073 73.3682C353.073 35.2013 322.015 4.14319 283.848 4.14319Z" fill="#D9E2FF"/>
</g>
<path d="M79.9309 100.711C79.9309 83.6566 87.9283 68.1437 100.99 56.5812C112.713 46.2071 128.515 39.0233 146.287 36.7537" stroke="#D9E2FF" stroke-width="1.0706" stroke-miterlimit="10"/>
<path d="M288.709 356.189C330.441 356.189 364.272 322.358 364.272 280.626C364.272 238.893 330.441 205.063 288.709 205.063C246.976 205.063 213.146 238.893 213.146 280.626C213.146 322.358 246.976 356.189 288.709 356.189Z" fill="#D9E2FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M133.6 253.368L125.303 248.583L133.6 243.797L141.898 248.583L133.6 253.368Z" fill="#7D8CB5"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M125.314 248.583L133.611 253.368V262.95L125.314 258.164V248.583Z" fill="#B2BFE8"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M133.6 253.368L141.897 248.583V258.154L133.6 262.939V253.368Z" fill="#C91540"/>
<path d="M235.132 235.723C236.123 234.732 236.418 233.421 235.79 232.794C235.163 232.166 233.852 232.461 232.861 233.452C231.87 234.443 231.575 235.755 232.202 236.382C232.829 237.009 234.141 236.714 235.132 235.723Z" fill="#7D8CB5"/>
<g opacity="0.5">
<g opacity="0.5">
<path opacity="0.5" d="M288.709 198.436C334.102 198.436 370.899 235.232 370.899 280.626C370.899 326.019 334.102 362.816 288.709 362.816C243.315 362.816 206.519 326.019 206.519 280.626C206.519 235.232 243.315 198.436 288.709 198.436ZM288.709 197.365C242.801 197.365 205.448 234.718 205.448 280.626C205.448 326.533 242.801 363.886 288.709 363.886C334.616 363.886 371.969 326.533 371.969 280.626C371.969 234.708 334.616 197.365 288.709 197.365Z" fill="#D9E2FF"/>
</g>
</g>
<path d="M138.407 255.766C164.648 244.771 183.704 275.562 189.999 237.309C194.432 210.405 221.946 220.576 234.601 235.168" stroke="#C91540" stroke-width="1.0706" stroke-miterlimit="10" stroke-linecap="round"/>
<path opacity="0.5" fill-rule="evenodd" clip-rule="evenodd" d="M131.844 306.888L148.492 297.274L138.043 291.824L121.395 301.438L131.844 306.888Z" fill="url(#paint1_linear_1033_7057)"/>
<path opacity="0.5" fill-rule="evenodd" clip-rule="evenodd" d="M115.839 316.234L131.941 306.813L104.908 292.37L89.3093 301.374L115.839 316.234Z" fill="url(#paint2_linear_1033_7057)"/>
<path d="M333.406 242.641C345.421 242.641 355.161 232.901 355.161 220.886C355.161 208.871 345.421 199.132 333.406 199.132C321.392 199.132 311.652 208.871 311.652 220.886C311.652 232.901 321.392 242.641 333.406 242.641Z" fill="#D9E2FF"/>
<path d="M333.406 199.667C345.129 199.667 354.626 209.163 354.626 220.886C354.626 232.609 345.129 242.105 333.406 242.105C321.694 242.105 312.187 232.609 312.187 220.886C312.187 209.163 321.694 199.667 333.406 199.667ZM333.406 198.596C321.116 198.596 311.116 208.596 311.116 220.886C311.116 233.177 321.116 243.176 333.406 243.176C345.697 243.176 355.696 233.177 355.696 220.886C355.696 208.596 345.697 198.596 333.406 198.596Z" fill="white"/>
<path d="M324.092 219.227H323.321V211.647H327.893V212.354H324.092V214.934H327.625V215.64H324.092V219.227Z" fill="#24386C"/>
<path d="M329.145 219.227H328.246L331.544 211.647H332.293L335.59 219.227H334.691L333.856 217.236H329.98L329.145 219.227ZM330.27 216.529H333.556L331.918 212.546L330.27 216.529Z" fill="#24386C"/>
<path d="M344.273 219.227H339.937C339.391 219.227 338.877 219.13 338.417 218.938C337.945 218.745 337.539 218.477 337.207 218.135C336.864 217.792 336.597 217.375 336.404 216.904C336.211 216.433 336.115 215.908 336.115 215.341C336.115 214.773 336.211 214.259 336.404 213.777C336.597 213.306 336.864 212.889 337.207 212.546C337.549 212.204 337.956 211.925 338.417 211.743C338.888 211.551 339.391 211.454 339.937 211.454C340.483 211.454 340.986 211.551 341.457 211.743C341.928 211.936 342.324 212.204 342.667 212.546C343.009 212.889 343.277 213.306 343.47 213.777C343.662 214.248 343.759 214.773 343.759 215.341C343.759 216.026 343.62 216.636 343.341 217.182C343.063 217.728 342.603 218.167 341.992 218.488V218.509H344.283V219.227H344.273ZM336.939 215.341C336.939 215.758 337.003 216.165 337.143 216.54C337.282 216.914 337.474 217.257 337.731 217.546C337.988 217.835 338.299 218.071 338.673 218.253C339.048 218.424 339.466 218.52 339.937 218.52C340.397 218.52 340.815 218.435 341.189 218.253C341.564 218.071 341.875 217.846 342.132 217.546C342.388 217.246 342.581 216.914 342.72 216.54C342.86 216.154 342.924 215.758 342.924 215.341C342.924 214.923 342.86 214.516 342.72 214.141C342.581 213.756 342.388 213.424 342.132 213.124C341.875 212.825 341.564 212.6 341.189 212.418C340.815 212.246 340.397 212.15 339.937 212.15C339.466 212.15 339.048 212.236 338.673 212.418C338.299 212.589 337.988 212.825 337.731 213.124C337.474 213.424 337.282 213.756 337.143 214.141C337.003 214.527 336.939 214.923 336.939 215.341Z" fill="#24386C"/>
<path d="M323.032 222.353H325.291C325.601 222.353 325.912 222.385 326.201 222.449C326.49 222.514 326.758 222.621 326.982 222.771C327.207 222.92 327.389 223.113 327.528 223.359C327.668 223.606 327.732 223.905 327.732 224.259C327.732 224.676 327.614 225.03 327.379 225.319C327.143 225.618 326.822 225.811 326.394 225.918V225.94C326.929 225.982 327.346 226.164 327.646 226.507C327.946 226.839 328.107 227.278 328.107 227.845C328.107 227.963 328.075 228.145 328.021 228.381C327.957 228.616 327.839 228.852 327.636 229.076C327.443 229.312 327.164 229.515 326.8 229.687C326.436 229.858 325.955 229.944 325.344 229.944H323.032V222.353ZM323.803 225.672H325.355C325.537 225.672 325.73 225.65 325.912 225.608C326.094 225.565 326.254 225.479 326.404 225.383C326.554 225.276 326.672 225.137 326.768 224.965C326.865 224.794 326.908 224.591 326.908 224.344C326.908 224.269 326.897 224.152 326.865 224.012C326.833 223.873 326.758 223.723 326.651 223.584C326.544 223.445 326.372 223.317 326.158 223.22C325.944 223.113 325.655 223.07 325.291 223.07H323.813V225.672H323.803ZM323.803 229.226H325.28C325.559 229.226 325.816 229.194 326.062 229.141C326.308 229.087 326.511 229.001 326.693 228.873C326.875 228.745 327.015 228.605 327.111 228.423C327.218 228.241 327.272 228.027 327.272 227.781C327.272 227.278 327.111 226.914 326.79 226.668C326.469 226.421 325.998 226.304 325.377 226.304H323.803V229.226Z" fill="#24386C"/>
<path d="M332.732 226.86V226.732C332.732 225.864 332.304 225.436 331.447 225.436C330.858 225.436 330.355 225.629 329.916 226.025L329.488 225.522C329.959 225.04 330.666 224.794 331.608 224.794C331.854 224.794 332.09 224.826 332.314 224.901C332.539 224.976 332.732 225.083 332.893 225.222C333.053 225.372 333.192 225.554 333.289 225.779C333.385 226.004 333.439 226.261 333.439 226.571V228.809C333.439 229.001 333.449 229.205 333.46 229.408C333.481 229.622 333.503 229.794 333.524 229.933H332.839C332.818 229.815 332.796 229.676 332.796 229.537C332.796 229.397 332.775 229.258 332.775 229.119H332.753C332.55 229.451 332.304 229.697 332.025 229.836C331.747 229.986 331.404 230.061 330.987 230.061C330.762 230.061 330.548 230.029 330.345 229.976C330.141 229.922 329.948 229.826 329.799 229.697C329.638 229.569 329.509 229.419 329.413 229.237C329.317 229.055 329.274 228.841 329.274 228.605C329.274 228.198 329.381 227.877 329.584 227.642C329.799 227.406 330.055 227.235 330.377 227.128C330.698 227.021 331.03 226.946 331.394 226.914C331.758 226.881 332.09 226.871 332.389 226.871H332.732V226.86ZM332.368 227.438C332.186 227.438 331.961 227.449 331.704 227.46C331.437 227.481 331.18 227.524 330.933 227.588C330.687 227.652 330.473 227.759 330.302 227.899C330.13 228.038 330.045 228.241 330.045 228.487C330.045 228.648 330.077 228.787 330.141 228.905C330.205 229.023 330.302 229.119 330.419 229.194C330.537 229.269 330.655 229.322 330.794 229.355C330.933 229.387 331.073 229.397 331.222 229.397C331.479 229.397 331.704 229.355 331.886 229.269C332.079 229.183 332.229 229.066 332.368 228.926C332.496 228.776 332.593 228.605 332.646 228.412C332.7 228.22 332.743 228.006 332.743 227.792V227.427H332.368V227.438Z" fill="#24386C"/>
<path d="M337.731 226.111C337.624 225.907 337.485 225.736 337.303 225.618C337.121 225.501 336.907 225.436 336.65 225.436C336.532 225.436 336.404 225.447 336.275 225.479C336.147 225.511 336.04 225.554 335.944 225.608C335.847 225.672 335.762 225.747 335.708 225.832C335.644 225.929 335.612 226.036 335.612 226.175C335.612 226.411 335.697 226.582 335.858 226.689C336.018 226.796 336.265 226.892 336.597 226.967L337.314 227.139C337.667 227.213 337.956 227.374 338.192 227.62C338.427 227.867 338.545 228.156 338.545 228.509C338.545 228.777 338.492 229.012 338.374 229.215C338.256 229.419 338.117 229.569 337.935 229.697C337.753 229.826 337.549 229.911 337.314 229.965C337.078 230.018 336.843 230.051 336.597 230.051C336.211 230.051 335.847 229.976 335.526 229.826C335.205 229.676 334.905 229.43 334.68 229.066L335.29 228.648C335.43 228.873 335.612 229.055 335.836 229.194C336.051 229.333 336.318 229.397 336.607 229.397C336.746 229.397 336.896 229.387 337.036 229.355C337.175 229.323 337.303 229.269 337.41 229.205C337.517 229.141 337.614 229.044 337.678 228.937C337.742 228.83 337.774 228.702 337.774 228.562C337.774 228.316 337.678 228.134 337.496 228.016C337.314 227.909 337.089 227.824 336.821 227.759L336.136 227.599C336.051 227.577 335.933 227.545 335.783 227.492C335.633 227.438 335.494 227.363 335.355 227.267C335.215 227.171 335.098 227.042 334.991 226.882C334.894 226.721 334.841 226.528 334.841 226.282C334.841 226.025 334.894 225.8 335.001 225.608C335.108 225.415 335.248 225.254 335.419 225.136C335.59 225.019 335.794 224.922 336.008 224.869C336.222 224.815 336.457 224.783 336.693 224.783C337.046 224.783 337.367 224.847 337.667 224.987C337.967 225.126 338.202 225.351 338.363 225.683L337.731 226.111Z" fill="#24386C"/>
<path d="M340.13 227.62C340.151 227.866 340.215 228.102 340.312 228.327C340.408 228.552 340.547 228.734 340.708 228.905C340.868 229.066 341.061 229.194 341.275 229.28C341.489 229.365 341.725 229.419 341.971 229.419C342.346 229.419 342.678 229.333 342.956 229.151C343.234 228.98 343.438 228.776 343.577 228.552L344.123 229.001C343.823 229.376 343.491 229.654 343.138 229.815C342.774 229.976 342.389 230.061 341.971 230.061C341.596 230.061 341.254 229.997 340.943 229.858C340.633 229.719 340.354 229.547 340.13 229.312C339.905 229.076 339.723 228.798 339.594 228.477C339.466 228.156 339.391 227.802 339.391 227.428C339.391 227.053 339.455 226.7 339.584 226.378C339.712 226.057 339.894 225.779 340.119 225.543C340.344 225.308 340.611 225.126 340.922 224.997C341.232 224.869 341.564 224.805 341.917 224.805C342.292 224.805 342.635 224.869 342.935 225.008C343.234 225.147 343.491 225.318 343.695 225.543C343.898 225.768 344.048 226.036 344.166 226.336C344.273 226.635 344.326 226.956 344.326 227.31V227.631H340.13V227.62ZM343.534 227.042C343.534 226.56 343.395 226.175 343.106 225.886C342.817 225.597 342.421 225.436 341.907 225.436C341.682 225.436 341.457 225.479 341.243 225.565C341.029 225.65 340.836 225.779 340.676 225.918C340.515 226.068 340.387 226.239 340.29 226.432C340.194 226.625 340.151 226.828 340.151 227.031H343.534V227.042Z" fill="#24386C"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M271.879 240.799C257.576 240.799 245.981 250.264 245.981 261.944C245.981 266.847 248.047 271.354 251.484 274.941C252.137 275.615 252.458 276.536 252.458 277.478V284.277C252.458 285.401 253.818 285.968 254.61 285.165L257.576 282.2C258.625 281.15 260.167 280.84 261.558 281.332C264.717 282.456 268.207 283.088 271.879 283.088C286.182 283.088 297.777 273.624 297.777 261.944C297.777 250.274 286.182 240.799 271.879 240.799Z" fill="#7D8CB5"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M317.572 271.836C329.145 271.836 338.524 279.502 338.524 288.944C338.524 292.916 336.854 296.567 334.07 299.468C333.546 300.014 333.278 300.764 333.278 301.524V307.027C333.278 307.937 332.175 308.386 331.533 307.744L329.135 305.346C328.289 304.5 327.036 304.243 325.912 304.639C323.353 305.549 320.527 306.063 317.562 306.063C305.988 306.063 296.61 298.398 296.61 288.955C296.621 279.502 305.999 271.836 317.572 271.836Z" fill="#7D8CB5"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M271.879 239.29C257.576 239.29 245.981 248.754 245.981 260.434C245.981 265.337 248.047 269.845 251.484 273.431C252.137 274.106 252.458 275.026 252.458 275.969V282.767C252.458 283.891 253.818 284.458 254.61 283.655L257.576 280.69C258.625 279.641 260.167 279.33 261.558 279.823C264.717 280.947 268.207 281.579 271.879 281.579C286.182 281.579 297.777 272.114 297.777 260.434C297.777 248.765 286.182 239.29 271.879 239.29Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M273.463 292.959C263.753 292.959 255.884 299.383 255.884 307.305C255.884 310.635 257.287 313.696 259.62 316.127C260.059 316.587 260.284 317.208 260.284 317.85V322.465C260.284 323.225 261.205 323.61 261.74 323.075L263.753 321.062C264.46 320.356 265.509 320.141 266.451 320.473C268.592 321.234 270.969 321.662 273.453 321.662C283.163 321.662 291.032 315.238 291.032 307.316C291.032 299.393 283.163 292.959 273.463 292.959Z" fill="#7D8CB5"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M317.572 270.519C329.145 270.519 338.524 278.185 338.524 287.627C338.524 291.599 336.854 295.25 334.07 298.151C333.546 298.697 333.278 299.447 333.278 300.207V305.71C333.278 306.62 332.175 307.069 331.533 306.427L329.135 304.029C328.289 303.183 327.036 302.926 325.912 303.322C323.353 304.232 320.527 304.746 317.562 304.746C305.988 304.746 296.61 297.081 296.61 287.638C296.621 278.185 305.999 270.519 317.572 270.519Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M273.463 291.546C263.753 291.546 255.884 297.969 255.884 305.892C255.884 309.221 257.287 312.283 259.62 314.714C260.059 315.174 260.284 315.795 260.284 316.437V321.052C260.284 321.812 261.205 322.197 261.74 321.662L263.753 319.649C264.46 318.943 265.509 318.728 266.451 319.06C268.592 319.82 270.969 320.249 273.453 320.249C283.163 320.249 291.032 313.825 291.032 305.903C291.032 297.98 283.163 291.546 273.463 291.546Z" fill="white"/>
<path d="M309.393 283.302H325.751" stroke="#B2BFE8" stroke-width="1.0706" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M309.393 287.756H325.751" stroke="#B2BFE8" stroke-width="1.0706" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M309.393 292.21H325.751" stroke="#B2BFE8" stroke-width="1.0706" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M262.222 256.055H281.525" stroke="#B2BFE8" stroke-width="1.0706" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M262.222 260.509H281.525" stroke="#B2BFE8" stroke-width="1.0706" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M262.222 264.963H281.525" stroke="#B2BFE8" stroke-width="1.0706" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M267.564 301.802H279.994" stroke="#B2BFE8" stroke-width="1.0706" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M267.564 306.256H279.994" stroke="#B2BFE8" stroke-width="1.0706" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M267.564 310.709H279.994" stroke="#B2BFE8" stroke-width="1.0706" stroke-miterlimit="10" stroke-linecap="round"/>
</g>
<defs>
<linearGradient id="paint0_linear_1033_7057" x1="88.6793" y1="267.741" x2="72.2761" y2="268.487" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF3364"/>
<stop offset="1" stop-color="#C91540" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint1_linear_1033_7057" x1="137.43" y1="303.662" x2="132.456" y2="295.046" gradientUnits="userSpaceOnUse">
<stop stop-color="#F2F6FF" stop-opacity="0"/>
<stop offset="1" stop-color="#24386C"/>
</linearGradient>
<linearGradient id="paint2_linear_1033_7057" x1="117.18" y1="315.455" x2="104.115" y2="292.826" gradientUnits="userSpaceOnUse">
<stop stop-color="#F2F6FF" stop-opacity="0"/>
<stop offset="1" stop-color="#24386C"/>
</linearGradient>
<clipPath id="clip0_1033_7057">
<rect width="396.122" height="380.063" fill="white"/>
</clipPath>
</defs>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="397" height="381" fill="none" version="1.1" viewBox="0 0 397 381" xmlns="http://www.w3.org/2000/svg">
<path d="m174.11 287.09-82.126 47.417c-1.7236 0.996-3.8434 0.996-5.5671 0l-82.126-47.417c-3.715-2.141-3.715-7.494 0-9.635l38.274-22.097 43.852-25.32c1.7237-0.996 3.8435-0.996 5.5671 0l43.841 25.32 38.285 22.097c3.704 2.141 3.715 7.494 0 9.635z" clip-path="url(#clipPath1162)" clip-rule="evenodd" fill="#b2bfe8" fill-rule="evenodd" opacity=".2"/>
<path d="m0 265.73 30.277-17.473 55.404-31.989c2.1733-1.253 4.8605-1.253 7.0339 0l55.393 31.989 48.37 27.922c4.689 2.708 4.689 9.474 0 12.183l-103.76 59.911c-2.1734 1.252-4.8606 1.252-7.0339 0l-85.68-49.473" clip-path="url(#clipPath1156)" opacity=".2" stroke="#b2bfe8" stroke-miterlimit="10" stroke-width="1.0706"/>
<path d="m283.85 108.54c-19.388 0-35.169-15.78-35.169-35.169s15.781-35.169 35.169-35.169c19.389 0 35.169 15.781 35.169 35.169s-15.78 35.169-35.169 35.169z" clip-path="url(#clipPath1150)" fill="#d9e2ff"/>
<path d="m283.85 38.734c19.132 0 34.634 15.502 34.634 34.634 0 19.132-15.502 34.634-34.634 34.634s-34.634-15.502-34.634-34.634c0-19.132 15.502-34.634 34.634-34.634zm0-1.0706c-19.688 0-35.704 16.016-35.704 35.704 0 19.688 16.016 35.705 35.704 35.705s35.705-16.016 35.705-35.705c0-19.688-16.017-35.704-35.705-35.704z" clip-path="url(#clipPath1144)" fill="#ffffff"/>
<path d="m276.05 57.609s-5.406 5.8241 1.231 14.057c11.295 14.003-15.695 25.395-19.377-4.8177-2.345-19.249 7.215-25.362 19.356-27.622" clip-path="url(#clipPath1138)" fill="#721ffa"/>
<path d="m310.68 95.283c-6.349 7.7726-16.017 12.719-26.83 12.719-9.143 0-17.45-3.533-23.639-9.3248 5.557-7.2051 18.318-11.434 18.318-11.434l6.146 2.4731s0.835-4.5822 7.687-3.7792c5.246 0.5995 18.318 9.3463 18.318 9.3463z" clip-path="url(#clipPath1132)" fill="#c91540"/>
<path d="m286.5 94.609c3.148-1.2205 7.077-3.8756 5.514-11.616l-2.655-17.365-14.25 2.184 2.655 17.365c0.696 4.55 2.559 10.363 8.736 9.432z" clip-path="url(#clipPath1126)" fill="#ffeca7"/>
<path d="m255.19 73.368h-21.508c-2.013 0-3.929-0.8029-5.332-2.2375-13.885-14.218-35.147-23.318-58.99-23.318-21.872 0-41.571 7.6548-55.393 19.881-12.622 11.166-20.341 26.155-20.341 42.631 0 18.211 9.443 34.602 24.495 46.036 1.36 1.028 2.152 2.645 2.152 4.357v17.184c0 2.098 2.538 3.147 4.026 1.67l10.224-10.225c1.488-1.488 3.694-1.991 5.685-1.306 8.982 3.094 18.832 4.807 29.163 4.807 41.828 0 75.745-27.996 75.745-62.523 0-6.156-1.081-12.098-3.094-17.718-0.974-2.73-0.3-5.7705 1.756-7.8154z" clip-path="url(#clipPath1120)" fill="#d9e2ff"/>
<path d="m277.47 82.854v1.6381c5.45-0.0536 5.728-3.1904 5.728-3.1904z" clip-path="url(#clipPath1114)" fill="#24386c"/>
<path d="m261.28 62.373c2.516 18.275 8.04 23.553 22.696 19.346 10.888-3.1261 17.066-12.29 16.006-23.575s-8.918-19.174-20.202-18.115c-11.284 1.0599-20.352 8.8432-18.5 22.344z" clip-path="url(#clipPath1108)" fill="#ffeca7"/>
<path d="m271.19 64.557-0.215 6.2201c-0.032 0.9315 0.771 1.6702 1.692 1.5738" clip-path="url(#clipPath1102)" stroke="#24386c" stroke-linecap="round" stroke-miterlimit="10" stroke-width=".5353"/>
<path d="m275.95 65.103c0.662 0 1.199-0.5368 1.199-1.1991 0-0.6622-0.537-1.199-1.199-1.199s-1.199 0.5368-1.199 1.199c0 0.6623 0.537 1.1991 1.199 1.1991z" clip-path="url(#clipPath1096)" fill="#24386c"/>
<path d="m266.95 64.578c0.662 0 1.199-0.5368 1.199-1.199 0-0.6623-0.537-1.1991-1.199-1.1991s-1.199 0.5368-1.199 1.1991c0 0.6622 0.537 1.199 1.199 1.199z" clip-path="url(#clipPath1090)" fill="#24386c"/>
<path d="m275.48 76.034c-1.402 0.653-2.719 0.6102-3.736 0.3747" clip-path="url(#clipPath1084)" stroke="#24386c" stroke-linecap="round" stroke-miterlimit="10" stroke-width=".5353"/>
<path d="m280.33 55.157s6.98 2.9763 4.689 13.308c-4.689 21.23 23.65 18.318 15.642-12.408-4.893-18.768-17.066-20.106-29.057-17.14-18.446 4.5715-20.009 26.797 8.726 16.241z" clip-path="url(#clipPath1078)" fill="#721ffa"/>
<path d="m282.17 51.56-2.034 3.7364" clip-path="url(#clipPath1072)" stroke="#c91540" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2.1412"/>
<g fill="#24386c">
<path d="m154.52 91.922h2.516c0.471 0 0.942 0.0749 1.424 0.2355 0.481 0.1606 0.899 0.3961 1.284 0.7173 0.386 0.3212 0.685 0.7173 0.932 1.1884 0.235 0.471 0.353 1.0277 0.353 1.6487 0 0.6316-0.118 1.1883-0.353 1.6594-0.236 0.4711-0.546 0.8672-0.932 1.1884-0.385 0.3211-0.813 0.5567-1.284 0.7066-0.471 0.1606-0.943 0.2355-1.424 0.2355h-2.516zm0.771 6.8732h1.498c0.579 0 1.082-0.0856 1.499-0.2676 0.429-0.1713 0.782-0.4069 1.06-0.6959 0.279-0.2891 0.493-0.621 0.621-0.985 0.139-0.364 0.204-0.7494 0.204-1.1348 0-0.3961-0.065-0.7709-0.204-1.1456-0.139-0.364-0.342-0.6959-0.621-0.9849-0.278-0.2891-0.631-0.5246-1.06-0.6959-0.428-0.1713-0.92-0.2677-1.499-0.2677h-1.498z" clip-path="url(#clipPath1066)"/>
<path d="m163.33 92.564c0 0.1499-0.054 0.2676-0.161 0.3747-0.107 0.0964-0.224 0.1392-0.353 0.1392-0.128 0-0.246-0.0428-0.353-0.1392-0.107-0.0963-0.161-0.2248-0.161-0.3747s0.054-0.2676 0.161-0.364 0.225-0.1392 0.353-0.1392c0.129 0 0.246 0.0428 0.353 0.1392s0.161 0.2141 0.161 0.364zm-0.161 6.9375h-0.706v-5.0104h0.706z" clip-path="url(#clipPath1060)"/>
<path d="m168.08 96.429v-0.1285c0-0.8672-0.428-1.2954-1.284-1.2954-0.589 0-1.092 0.1927-1.531 0.5888l-0.428-0.5032c0.471-0.4818 1.177-0.728 2.119-0.728 0.247 0 0.482 0.0321 0.707 0.1071 0.225 0.0749 0.417 0.182 0.578 0.3211 0.161 0.1392 0.3 0.3319 0.396 0.5567 0.097 0.2249 0.15 0.4818 0.15 0.7923v2.2375c0 0.1928 0.011 0.3962 0.021 0.5996 0.022 0.2141 0.043 0.3854 0.065 0.5246h-0.685c-0.022-0.1178-0.033-0.257-0.043-0.3961-0.011-0.1392-0.011-0.2784-0.011-0.4176h-0.021c-0.204 0.3319-0.45 0.5781-0.739 0.7173s-0.621 0.2248-1.028 0.2248c-0.225 0-0.439-0.0321-0.642-0.0856-0.204-0.0642-0.396-0.1499-0.557-0.2784-0.161-0.1284-0.289-0.2783-0.385-0.4603-0.097-0.182-0.15-0.3961-0.15-0.6317 0-0.4068 0.107-0.728 0.31-0.9635 0.214-0.2355 0.471-0.4068 0.792-0.5139 0.322-0.1071 0.654-0.182 1.018-0.2141s0.685-0.0428 0.984-0.0428h0.364zm-0.364 0.5781c-0.182 0-0.406 0.0107-0.663 0.0214-0.268 0.0214-0.525 0.0642-0.771 0.1285-0.246 0.0642-0.46 0.1713-0.632 0.3104-0.171 0.1392-0.257 0.3426-0.257 0.5889 0 0.1605 0.032 0.2997 0.097 0.4175 0.064 0.1178 0.16 0.2141 0.267 0.2891 0.118 0.0749 0.236 0.1284 0.375 0.1606 0.139 0.0321 0.278 0.0428 0.428 0.0428 0.257 0 0.482-0.0429 0.664-0.1285s0.353-0.2034 0.482-0.3426c0.128-0.1392 0.225-0.3212 0.278-0.5139 0.054-0.1927 0.086-0.4068 0.086-0.6209v-0.364h-0.354z" clip-path="url(#clipPath1054)"/>
<path d="m171.3 99.502h-0.706v-8.0938h0.706z" clip-path="url(#clipPath1048)"/>
<path d="m178.06 96.996c0 0.3747-0.064 0.728-0.203 1.0492s-0.311 0.5995-0.546 0.8351c-0.236 0.2355-0.514 0.4175-0.846 0.546-0.321 0.1284-0.685 0.2034-1.07 0.2034-0.386 0-0.739-0.0643-1.071-0.2034-0.321-0.1285-0.61-0.3105-0.846-0.546-0.235-0.2356-0.417-0.5139-0.546-0.8351-0.128-0.3212-0.203-0.6745-0.203-1.0492s0.064-0.728 0.203-1.0492c0.129-0.3212 0.311-0.5995 0.546-0.8351 0.236-0.2355 0.514-0.4175 0.846-0.546 0.321-0.1284 0.674-0.1927 1.071-0.1927 0.396 0 0.749 0.0643 1.07 0.1927 0.321 0.1285 0.6 0.3105 0.846 0.546 0.235 0.2356 0.417 0.5139 0.546 0.8351 0.128 0.3212 0.203 0.6638 0.203 1.0492zm-0.771 0c0-0.2784-0.042-0.5353-0.128-0.7815-0.086-0.2463-0.214-0.4497-0.375-0.6317-0.16-0.182-0.364-0.3212-0.599-0.4282-0.236-0.1071-0.493-0.1499-0.782-0.1499s-0.556 0.0535-0.792 0.1499c-0.236 0.107-0.428 0.2462-0.589 0.4282-0.16 0.182-0.289 0.3854-0.375 0.6317-0.085 0.2462-0.128 0.5031-0.128 0.7815s0.043 0.5353 0.128 0.7815c0.086 0.2463 0.215 0.4497 0.375 0.6317 0.161 0.182 0.353 0.3212 0.589 0.4282 0.236 0.1071 0.492 0.1499 0.792 0.1499s0.557-0.0535 0.782-0.1499c0.235-0.107 0.428-0.2462 0.599-0.4282 0.161-0.182 0.289-0.3854 0.375-0.6317 0.086-0.2462 0.128-0.5031 0.128-0.7815z" clip-path="url(#clipPath1042)"/>
<path d="m179.73 100.51c0.204 0.278 0.482 0.503 0.803 0.664 0.332 0.171 0.707 0.257 1.114 0.257 0.353 0 0.664-0.054 0.91-0.161s0.449-0.246 0.599-0.418c0.15-0.171 0.268-0.385 0.332-0.62 0.064-0.236 0.097-0.493 0.097-0.7606v-0.8993h-0.022c-0.225 0.3426-0.503 0.5888-0.835 0.728s-0.674 0.2141-1.038 0.2141-0.707-0.0642-1.028-0.1927-0.589-0.2998-0.825-0.5246c-0.235-0.2248-0.417-0.4925-0.556-0.8137-0.139-0.3104-0.204-0.653-0.204-1.017s0.065-0.7066 0.193-1.0171c0.129-0.3105 0.311-0.5888 0.535-0.8244 0.225-0.2355 0.493-0.4175 0.803-0.546 0.311-0.1284 0.653-0.1927 1.028-0.1927 0.15 0 0.311 0.0107 0.482 0.0429 0.171 0.0321 0.332 0.0749 0.503 0.1498 0.171 0.075 0.332 0.1713 0.492 0.2891 0.161 0.1285 0.322 0.2891 0.461 0.4818h0.021v-0.8351h0.707v4.9676c0 0.2676-0.032 0.5569-0.107 0.8669-0.064 0.311-0.204 0.589-0.396 0.846-0.193 0.257-0.471 0.471-0.814 0.642-0.353 0.172-0.803 0.257-1.37 0.257-0.504 0-0.942-0.085-1.339-0.246-0.396-0.16-0.749-0.417-1.07-0.76zm0.129-3.5759c0 0.2676 0.043 0.5138 0.139 0.7494 0.096 0.2355 0.225 0.4389 0.396 0.6102s0.364 0.3105 0.589 0.4175c0.225 0.1071 0.471 0.1499 0.739 0.1499 0.257 0 0.503-0.0428 0.728-0.1391 0.235-0.0964 0.439-0.2249 0.621-0.3962s0.31-0.364 0.407-0.5995c0.096-0.2355 0.139-0.5032 0.128-0.7922 0-0.2677-0.043-0.5139-0.128-0.7495-0.086-0.2355-0.215-0.4389-0.375-0.6102-0.161-0.1713-0.364-0.3105-0.6-0.4175-0.235-0.1071-0.503-0.1499-0.792-0.1499-0.268 0-0.514 0.0535-0.739 0.1499-0.225 0.107-0.417 0.2462-0.589 0.4175-0.171 0.1713-0.299 0.3747-0.396 0.6102-0.085 0.2356-0.128 0.4818-0.128 0.7495z" clip-path="url(#clipPath1036)"/>
<path d="m153.45 106.02c-0.332-0.493-0.824-0.739-1.466-0.739-0.204 0-0.396 0.032-0.589 0.086-0.193 0.053-0.364 0.139-0.525 0.246-0.16 0.107-0.278 0.257-0.364 0.428-0.096 0.171-0.139 0.385-0.139 0.621 0 0.343 0.096 0.61 0.289 0.803s0.428 0.343 0.717 0.46c0.289 0.118 0.6 0.236 0.943 0.332 0.342 0.097 0.653 0.225 0.942 0.386 0.289 0.16 0.524 0.374 0.717 0.642s0.289 0.621 0.289 1.081c0 0.343-0.075 0.653-0.225 0.932-0.15 0.278-0.342 0.503-0.578 0.685-0.235 0.182-0.503 0.332-0.803 0.428s-0.599 0.15-0.889 0.15c-0.46 0-0.91-0.086-1.327-0.268-0.418-0.182-0.771-0.46-1.071-0.856l0.707-0.503c0.161 0.278 0.396 0.503 0.685 0.663 0.289 0.172 0.632 0.247 1.039 0.247 0.192 0 0.385-0.032 0.578-0.086 0.192-0.064 0.364-0.15 0.514-0.268 0.15-0.117 0.278-0.267 0.374-0.439 0.097-0.171 0.15-0.364 0.15-0.588 0-0.268-0.053-0.482-0.171-0.653-0.107-0.172-0.257-0.322-0.439-0.439-0.182-0.118-0.385-0.215-0.621-0.3-0.236-0.075-0.471-0.161-0.717-0.236-0.247-0.075-0.482-0.171-0.718-0.267-0.235-0.097-0.439-0.225-0.621-0.386-0.182-0.15-0.331-0.342-0.438-0.578-0.108-0.235-0.172-0.524-0.172-0.867 0-0.364 0.064-0.685 0.214-0.953 0.14-0.268 0.322-0.492 0.557-0.674 0.236-0.182 0.493-0.311 0.792-0.396 0.289-0.086 0.589-0.129 0.9-0.129 0.428 0 0.813 0.064 1.167 0.203 0.353 0.14 0.674 0.375 0.974 0.718z" clip-path="url(#clipPath1030)"/>
<path d="m159.21 108.52c-0.118-0.182-0.289-0.343-0.514-0.471-0.214-0.129-0.46-0.193-0.738-0.193-0.29-0.011-0.557 0.043-0.793 0.139-0.235 0.097-0.428 0.236-0.589 0.418-0.16 0.182-0.289 0.396-0.374 0.642-0.086 0.247-0.129 0.514-0.129 0.803s0.043 0.546 0.129 0.792c0.085 0.247 0.214 0.461 0.374 0.643 0.161 0.182 0.364 0.321 0.589 0.417 0.236 0.097 0.493 0.15 0.793 0.14 0.278 0 0.524-0.065 0.738-0.193 0.214-0.129 0.386-0.289 0.514-0.471l0.578 0.439c-0.246 0.289-0.535 0.514-0.845 0.653-0.311 0.139-0.643 0.214-0.985 0.225-0.407 0.01-0.771-0.054-1.103-0.193-0.332-0.129-0.61-0.311-0.846-0.546-0.235-0.236-0.407-0.514-0.535-0.846-0.118-0.321-0.182-0.674-0.182-1.049s0.064-0.728 0.182-1.06 0.3-0.61 0.535-0.846c0.236-0.235 0.514-0.417 0.846-0.546 0.332-0.128 0.696-0.192 1.103-0.182 0.342 0.011 0.674 0.075 0.985 0.214 0.31 0.14 0.599 0.354 0.845 0.653z" clip-path="url(#clipPath1024)"/>
<path d="m161.21 110.04c0.022 0.247 0.086 0.482 0.182 0.707 0.097 0.225 0.236 0.407 0.396 0.578 0.161 0.161 0.354 0.289 0.568 0.375 0.214 0.085 0.45 0.139 0.696 0.139 0.375 0 0.706-0.086 0.985-0.268 0.278-0.171 0.482-0.374 0.621-0.599l0.546 0.449c-0.3 0.375-0.632 0.654-0.996 0.814-0.364 0.161-0.749 0.246-1.156 0.246-0.375 0-0.718-0.064-1.028-0.203s-0.589-0.311-0.814-0.546c-0.224-0.236-0.406-0.514-0.535-0.835-0.128-0.321-0.203-0.675-0.203-1.049 0-0.375 0.064-0.728 0.192-1.05 0.129-0.321 0.311-0.599 0.536-0.835 0.224-0.235 0.492-0.417 0.803-0.546 0.31-0.128 0.642-0.192 0.995-0.192 0.375 0 0.718 0.064 1.017 0.203 0.3 0.139 0.546 0.311 0.76 0.535 0.204 0.225 0.354 0.493 0.461 0.793 0.107 0.299 0.16 0.621 0.16 0.974v0.321h-4.186zm3.405-0.578c0-0.482-0.139-0.867-0.428-1.156s-0.686-0.45-1.199-0.45c-0.225 0-0.45 0.043-0.664 0.129-0.214 0.085-0.407 0.214-0.568 0.353-0.16 0.15-0.289 0.321-0.385 0.514s-0.139 0.396-0.139 0.6h3.383z" clip-path="url(#clipPath1018)"/>
<path d="m167.35 107.34c0.01 0.14 0.021 0.268 0.032 0.407v0.407h0.021c0.075-0.139 0.182-0.257 0.3-0.375 0.118-0.117 0.257-0.214 0.407-0.299 0.15-0.086 0.31-0.15 0.482-0.193 0.171-0.043 0.331-0.064 0.492-0.064 0.642 0 1.113 0.171 1.424 0.503 0.31 0.342 0.46 0.824 0.46 1.445v3.18h-0.706v-2.773c0-0.557-0.097-0.985-0.289-1.285-0.193-0.299-0.546-0.449-1.071-0.449-0.032 0-0.139 0.01-0.3 0.042-0.16 0.033-0.332 0.108-0.514 0.236s-0.342 0.321-0.492 0.578c-0.139 0.257-0.214 0.61-0.214 1.071v2.569h-0.707v-3.908c0-0.139 0-0.31-0.011-0.513-0.01-0.204-0.021-0.407-0.042-0.589h0.728z" clip-path="url(#clipPath1012)"/>
<path d="m175.84 109.28v-0.128c0-0.867-0.428-1.296-1.284-1.296-0.589 0-1.092 0.193-1.531 0.589l-0.428-0.503c0.471-0.482 1.177-0.728 2.119-0.728 0.247 0 0.482 0.032 0.707 0.107s0.417 0.182 0.578 0.321 0.3 0.332 0.396 0.557c0.097 0.225 0.15 0.482 0.15 0.792v2.238c0 0.192 0.011 0.396 0.032 0.599 0.022 0.214 0.043 0.386 0.054 0.525h-0.685c-0.022-0.118-0.043-0.257-0.043-0.396s-0.022-0.279-0.022-0.418h-0.021c-0.204 0.332-0.45 0.578-0.728 0.717-0.278 0.15-0.621 0.225-1.039 0.225-0.224 0-0.439-0.032-0.642-0.085-0.203-0.054-0.396-0.15-0.546-0.279-0.161-0.128-0.289-0.278-0.385-0.46-0.097-0.182-0.14-0.396-0.14-0.632 0-0.407 0.108-0.728 0.311-0.963 0.214-0.236 0.471-0.407 0.792-0.514 0.321-0.118 0.653-0.182 1.017-0.214s0.696-0.043 0.996-0.043h0.342zm-0.364 0.578c-0.182 0-0.406 0.011-0.663 0.022-0.268 0.021-0.525 0.064-0.771 0.128s-0.46 0.172-0.632 0.311c-0.171 0.139-0.267 0.342-0.267 0.589 0 0.16 0.032 0.299 0.096 0.417s0.161 0.214 0.268 0.289c0.117 0.075 0.246 0.129 0.385 0.161s0.278 0.043 0.418 0.043c0.256 0 0.481-0.043 0.663-0.129s0.354-0.203 0.482-0.343c0.129-0.139 0.225-0.321 0.278-0.513 0.054-0.193 0.097-0.407 0.097-0.621v-0.364h-0.354z" clip-path="url(#clipPath1006)"/>
<path d="m178.26 108.89c0-0.225 0-0.45-0.021-0.675-0.011-0.224-0.022-0.524-0.022-0.888h0.696v0.931h0.021c0.054-0.139 0.118-0.267 0.215-0.385 0.096-0.129 0.203-0.236 0.331-0.343 0.129-0.107 0.29-0.182 0.461-0.235 0.171-0.065 0.375-0.086 0.589-0.086 0.203 0 0.374 0.021 0.524 0.064l-0.139 0.696c-0.096-0.032-0.225-0.053-0.407-0.053-0.267 0-0.503 0.053-0.696 0.16-0.192 0.107-0.353 0.236-0.481 0.396-0.129 0.161-0.225 0.332-0.279 0.514-0.064 0.182-0.085 0.364-0.085 0.535v2.827h-0.707z" clip-path="url(#clipPath1000)"/>
<path d="m182.76 105.41c0 0.15-0.053 0.268-0.16 0.375-0.108 0.096-0.225 0.139-0.354 0.139-0.128 0-0.246-0.043-0.353-0.139s-0.161-0.225-0.161-0.375 0.054-0.267 0.161-0.364c0.107-0.096 0.225-0.139 0.353-0.139 0.129 0 0.246 0.043 0.354 0.139 0.107 0.097 0.16 0.214 0.16 0.364zm-0.16 6.938h-0.707v-5.011h0.707z" clip-path="url(#clipPath994)"/>
<path d="m189.37 109.84c0 0.374-0.065 0.728-0.204 1.049s-0.31 0.599-0.546 0.835c-0.235 0.235-0.514 0.417-0.845 0.546-0.322 0.128-0.686 0.203-1.071 0.203s-0.739-0.064-1.071-0.203c-0.321-0.129-0.61-0.311-0.845-0.546-0.236-0.236-0.418-0.514-0.546-0.835-0.129-0.321-0.204-0.675-0.204-1.049 0-0.375 0.064-0.728 0.204-1.05 0.128-0.321 0.31-0.599 0.546-0.835 0.235-0.235 0.513-0.417 0.845-0.546 0.322-0.128 0.675-0.192 1.071-0.192s0.749 0.064 1.071 0.192c0.321 0.129 0.599 0.311 0.845 0.546 0.236 0.236 0.418 0.514 0.546 0.835 0.129 0.322 0.204 0.664 0.204 1.05zm-0.771 0c0-0.279-0.043-0.536-0.129-0.782-0.085-0.246-0.214-0.45-0.374-0.632-0.161-0.182-0.364-0.321-0.6-0.428-0.235-0.107-0.492-0.15-0.781-0.15s-0.557 0.054-0.793 0.15c-0.235 0.107-0.428 0.246-0.588 0.428-0.161 0.182-0.29 0.386-0.375 0.632-0.086 0.246-0.129 0.503-0.129 0.782 0 0.278 0.043 0.535 0.129 0.781 0.085 0.246 0.214 0.45 0.375 0.632 0.16 0.182 0.353 0.321 0.588 0.428 0.236 0.107 0.493 0.15 0.793 0.15 0.299 0 0.556-0.054 0.781-0.15 0.236-0.107 0.428-0.246 0.6-0.428 0.16-0.182 0.289-0.386 0.374-0.632 0.086-0.246 0.129-0.503 0.129-0.781z" clip-path="url(#clipPath988)"/>
</g>
<g clip-rule="evenodd" fill-rule="evenodd">
<path d="m116.31 263.52-6.8701-37.683 28.97-9.4773v75.563l-16.733 9.656z" clip-path="url(#clipPath976)" fill="#24386c"/>
<path d="m138.41 216.36-16.733 9.667-13.841 1.5466-17.673-5.0177-18.025 6.7391-10.276 3.882-21.862-16.817 49.205-28.414 24.602 14.207z" clip-path="url(#clipPath970)" fill="#7d8cb5"/>
<path d="m39.998 216.36 16.734 9.667 9.0592 31.688 13.102 9.7562 10.31 14.784v19.314l-49.205-28.414z" clip-path="url(#clipPath964)" fill="#b2bfe8"/>
<path d="m109.44 262.95-20.234 19.314v19.313l15.737-9.078z" clip-path="url(#clipPath958)" fill="#24386c"/>
<path d="m89.202 244.77-20.984-7.3286 22.228-18.817 23.093 18.217z" clip-path="url(#clipPath952)" fill="#7d8cb5"/>
<path d="m73.465 235.69 15.738 9.078v18.179l-23.412-5.2371z" clip-path="url(#clipPath946)" fill="#b2bfe8"/>
<path d="m89.203 244.77 15.737-9.078 11.034 22.02-26.772 5.2371z" clip-path="url(#clipPath940)" fill="#24386c"/>
<path d="m104.94 292.5 16.734 9.078v-75.563l-16.241-9.367-16.23-9.368-16.241 9.368-16.23 9.367v37.493l16.23 9.368 16.241 9.367 15.738-9.089zm0-38.638-15.738 9.089-15.738-9.089v-18.168l15.738-9.09 15.738 9.09z" clip-path="url(#clipPath934)" fill="#c91540"/>
</g>
<path d="m89.203 282.26v-19.314l-15.738-9.089-0.5031 19.024z" clip-path="url(#clipPath928)" fill="url(#paint0_linear_1033_7057)"/>
<g fill="#ffffff">
<path d="m154.9 132.7c2.442 0 4.422-1.98 4.422-4.422s-1.98-4.421-4.422-4.421-4.421 1.979-4.421 4.421 1.979 4.422 4.421 4.422z" clip-path="url(#clipPath922)"/>
<path d="m169.36 132.7c2.442 0 4.422-1.98 4.422-4.422s-1.98-4.421-4.422-4.421-4.421 1.979-4.421 4.421 1.979 4.422 4.421 4.422z" clip-path="url(#clipPath916)"/>
<path d="m183.81 132.7c2.442 0 4.422-1.98 4.422-4.422s-1.98-4.421-4.422-4.421c-2.441 0-4.421 1.979-4.421 4.421s1.98 4.422 4.421 4.422z" clip-path="url(#clipPath910)"/>
<path d="m127.92 192.57h-78.153c-4.7321 0-8.5648-3.833-8.5648-8.565s3.8327-8.565 8.5648-8.565h78.153c4.732 0 8.565 3.833 8.565 8.565s-3.833 8.565-8.565 8.565z" clip-path="url(#clipPath904)" clip-rule="evenodd" fill-rule="evenodd" stroke="#b2bfe8" stroke-miterlimit="10" stroke-width="1.0706"/>
</g>
<g fill="#24386c">
<path d="m58.337 186.43h0.0215v-6.423h0.7708v7.58h-0.9636l-4.5179-6.488h-0.0214v6.488h-0.7708v-7.58h0.9635z" clip-path="url(#clipPath898)"/>
<path d="m61.42 185.28c0.0214 0.246 0.0856 0.482 0.182 0.707 0.0963 0.225 0.2355 0.407 0.3961 0.578 0.1606 0.161 0.3533 0.289 0.5674 0.375 0.2141 0.085 0.4496 0.139 0.6959 0.139 0.3747 0 0.7066-0.086 0.9849-0.268 0.2784-0.171 0.4818-0.375 0.621-0.599l0.546 0.449c-0.2998 0.375-0.6317 0.653-0.9957 0.814s-0.7494 0.246-1.1562 0.246c-0.3747 0-0.7173-0.064-1.0278-0.203s-0.5888-0.311-0.8136-0.546c-0.2249-0.236-0.4069-0.514-0.5353-0.835-0.1285-0.321-0.2035-0.675-0.2035-1.049 0-0.375 0.0643-0.729 0.1927-1.05 0.1285-0.321 0.3105-0.599 0.5353-0.835 0.2249-0.235 0.4925-0.417 0.803-0.546 0.3105-0.128 0.6424-0.192 0.9957-0.192 0.3747 0 0.7173 0.064 1.017 0.203 0.2998 0.139 0.546 0.31 0.7602 0.535 0.2034 0.225 0.3533 0.493 0.4603 0.792 0.1071 0.3 0.1606 0.621 0.1606 0.975v0.321h-4.186zm3.4045-0.578c0-0.482-0.1392-0.867-0.4283-1.156-0.289-0.289-0.6852-0.45-1.1991-0.45-0.2248 0-0.4496 0.043-0.6637 0.129-0.2141 0.085-0.4068 0.214-0.5674 0.353-0.1606 0.15-0.2891 0.321-0.3855 0.514-0.0963 0.193-0.1391 0.396-0.1391 0.599h3.3831z" clip-path="url(#clipPath892)"/>
<path d="m70.499 187.59c-0.0107-0.14-0.0214-0.268-0.0321-0.407s0-0.268 0-0.407h-0.0214c-0.0749 0.139-0.182 0.257-0.2998 0.375-0.1177 0.117-0.2569 0.214-0.4068 0.299-0.1499 0.086-0.3105 0.15-0.4818 0.193-0.1712 0.043-0.3318 0.075-0.4924 0.075-0.6424 0-1.1135-0.171-1.4239-0.514-0.3105-0.342-0.4604-0.824-0.4604-1.445v-3.18h0.7066v2.773c0 0.278 0.0214 0.525 0.0642 0.739 0.0429 0.214 0.1178 0.396 0.2249 0.535 0.107 0.139 0.2462 0.257 0.4175 0.332s0.3961 0.107 0.6638 0.107c0.0321 0 0.1392-0.011 0.2997-0.043 0.1606-0.032 0.3319-0.107 0.5139-0.235 0.182-0.129 0.3426-0.322 0.4925-0.579 0.1499-0.256 0.2141-0.61 0.2141-1.07v-2.57h0.7066v3.908c0 0.139 0 0.311 0.0107 0.514s0.0214 0.407 0.0429 0.589h-0.7388z" clip-path="url(#clipPath886)"/>
<path d="m72.908 184.14c0-0.224 0-0.449-0.0214-0.674-0.0107-0.225-0.0215-0.525-0.0215-0.889h0.6959v0.932h0.0215c0.0535-0.139 0.1177-0.268 0.2141-0.386 0.0963-0.128 0.2034-0.235 0.3319-0.342 0.1284-0.107 0.289-0.182 0.4603-0.236 0.1713-0.064 0.3747-0.085 0.5888-0.085 0.2035 0 0.3748 0.021 0.5246 0.064l-0.1391 0.696c-0.0964-0.032-0.2249-0.054-0.4069-0.054-0.2676 0-0.5031 0.054-0.6959 0.161-0.1927 0.107-0.3533 0.235-0.4817 0.396-0.1285 0.16-0.2249 0.332-0.2784 0.514-0.0642 0.182-0.0856 0.364-0.0856 0.535v2.826h-0.7066z" clip-path="url(#clipPath880)"/>
<path d="m79.599 184.52v-0.128c0-0.868-0.4282-1.296-1.2847-1.296-0.5888 0-1.092 0.193-1.531 0.589l-0.4282-0.503c0.471-0.482 1.1776-0.728 2.1198-0.728 0.2462 0 0.4817 0.032 0.7066 0.107 0.2248 0.075 0.4175 0.182 0.5781 0.321s0.2998 0.332 0.3961 0.557c0.0964 0.225 0.1499 0.482 0.1499 0.792v2.238c0 0.192 0.0107 0.396 0.0321 0.599 0.0214 0.214 0.0428 0.385 0.0535 0.525h-0.6851c-0.0215-0.118-0.0429-0.257-0.0429-0.396 0-0.14-0.0214-0.279-0.0214-0.418h-0.0214c-0.2034 0.332-0.4496 0.578-0.728 0.717-0.2783 0.15-0.6209 0.225-1.0385 0.225-0.2248 0-0.4389-0.032-0.6423-0.086-0.2034-0.053-0.3962-0.149-0.546-0.278-0.1606-0.128-0.2891-0.278-0.3855-0.46-0.0963-0.182-0.1391-0.396-0.1391-0.632 0-0.407 0.107-0.728 0.3104-0.963 0.2142-0.236 0.4711-0.407 0.7923-0.514 0.3212-0.118 0.653-0.182 1.0171-0.214 0.364-0.033 0.6958-0.043 0.9956-0.043h0.3426zm-0.364 0.578c-0.182 0-0.4068 0.011-0.6638 0.022-0.2676 0.021-0.5246 0.064-0.7708 0.128s-0.4604 0.171-0.6317 0.311c-0.1713 0.139-0.2676 0.342-0.2676 0.588 0 0.161 0.0321 0.3 0.0963 0.418 0.0643 0.118 0.1606 0.214 0.2677 0.289 0.1178 0.075 0.2462 0.128 0.3854 0.161 0.1392 0.032 0.2784 0.042 0.4175 0.042 0.257 0 0.4818-0.042 0.6638-0.128s0.3533-0.204 0.4818-0.343 0.2248-0.321 0.2783-0.514c0.0536-0.192 0.0964-0.406 0.0964-0.621v-0.364h-0.3533z" clip-path="url(#clipPath874)"/>
<path d="m82.811 187.59h-0.7066v-8.094h0.7066z" clip-path="url(#clipPath868)"/>
<path d="m88.517 186.88h4.0576v0.707h-4.8284v-7.58h4.6999v0.706h-3.9291v2.58h3.6722v0.707h-3.6722z" clip-path="url(#clipPath862)"/>
<path d="m94.513 182.58c0.0107 0.139 0.0214 0.268 0.0214 0.407v0.407h0.0214c0.075-0.139 0.182-0.257 0.2998-0.375s0.2569-0.214 0.4068-0.3c0.1499-0.085 0.3105-0.149 0.4711-0.192 0.1713-0.043 0.3319-0.064 0.5032-0.064 0.6423 0 1.1134 0.171 1.4239 0.503 0.3104 0.342 0.4603 0.824 0.4603 1.445v3.18h-0.6959v-2.773c0-0.557-0.0963-0.985-0.289-1.285s-0.546-0.45-1.0706-0.45c-0.0321 0-0.1392 0.011-0.2998 0.043s-0.3426 0.107-0.5246 0.236c-0.182 0.128-0.3426 0.321-0.4925 0.578-0.1391 0.257-0.2141 0.61-0.2141 1.071v2.569h-0.7066v-3.908c0-0.139-0.0107-0.31-0.0214-0.514-0.0107-0.203-0.0214-0.406-0.0428-0.588h0.7494z" clip-path="url(#clipPath856)"/>
<path d="m103.44 183.76c-0.118-0.182-0.289-0.343-0.504-0.471-0.214-0.129-0.46-0.193-0.749-0.193-0.289-0.011-0.557 0.043-0.782 0.139-0.235 0.097-0.428 0.236-0.599 0.418-0.161 0.182-0.289 0.396-0.375 0.642-0.085 0.246-0.128 0.514-0.128 0.803s0.043 0.546 0.128 0.792c0.086 0.247 0.214 0.461 0.375 0.643s0.364 0.321 0.599 0.417c0.236 0.097 0.493 0.15 0.782 0.139 0.278 0 0.525-0.064 0.749-0.192 0.225-0.129 0.386-0.289 0.504-0.471l0.578 0.439c-0.247 0.289-0.536 0.513-0.846 0.653-0.311 0.139-0.642 0.214-0.985 0.224-0.407 0.011-0.771-0.053-1.103-0.192-0.332-0.129-0.61-0.311-0.846-0.546-0.235-0.236-0.4063-0.514-0.5348-0.846-0.1178-0.321-0.182-0.675-0.182-1.049 0-0.375 0.0642-0.728 0.182-1.06s0.2998-0.61 0.5348-0.846c0.236-0.235 0.514-0.417 0.846-0.546 0.332-0.128 0.696-0.193 1.103-0.182 0.343 0.011 0.674 0.075 0.985 0.214 0.31 0.139 0.599 0.353 0.846 0.653z" clip-path="url(#clipPath850)"/>
<path d="m110.02 185.09c0 0.374-0.065 0.728-0.193 1.049s-0.31 0.599-0.557 0.835c-0.235 0.235-0.514 0.417-0.845 0.546-0.322 0.128-0.686 0.203-1.071 0.203s-0.739-0.064-1.071-0.203c-0.321-0.129-0.599-0.311-0.835-0.546-0.235-0.236-0.417-0.514-0.556-0.835-0.14-0.321-0.193-0.675-0.193-1.049 0-0.375 0.064-0.729 0.193-1.05 0.128-0.321 0.31-0.599 0.556-0.835 0.236-0.235 0.514-0.417 0.835-0.546 0.322-0.128 0.686-0.192 1.071-0.192 0.396 0 0.749 0.064 1.071 0.192 0.321 0.129 0.61 0.311 0.845 0.546 0.236 0.236 0.418 0.514 0.557 0.835 0.128 0.321 0.193 0.675 0.193 1.05zm-0.771 0c0-0.279-0.043-0.536-0.129-0.782-0.085-0.246-0.214-0.45-0.385-0.632s-0.364-0.321-0.589-0.428c-0.235-0.107-0.492-0.15-0.792-0.15s-0.557 0.054-0.782 0.15c-0.235 0.107-0.428 0.246-0.588 0.428-0.161 0.182-0.289 0.386-0.375 0.632s-0.129 0.503-0.129 0.782c0 0.278 0.043 0.535 0.129 0.781s0.214 0.45 0.375 0.632c0.16 0.182 0.353 0.321 0.588 0.428 0.236 0.107 0.493 0.15 0.782 0.15s0.557-0.054 0.792-0.15c0.236-0.096 0.428-0.246 0.589-0.428s0.289-0.386 0.385-0.632c0.086-0.235 0.129-0.503 0.129-0.781z" clip-path="url(#clipPath844)"/>
<path d="m116.3 187.59h-0.706v-0.835h-0.022c-0.117 0.171-0.246 0.321-0.407 0.438-0.16 0.118-0.321 0.225-0.492 0.3s-0.353 0.139-0.535 0.172c-0.182 0.032-0.354 0.053-0.514 0.053-0.396 0-0.75-0.064-1.081-0.203-0.322-0.129-0.6-0.311-0.836-0.546-0.235-0.236-0.417-0.514-0.556-0.835-0.129-0.322-0.193-0.675-0.193-1.05 0-0.374 0.064-0.728 0.193-1.049 0.128-0.321 0.31-0.599 0.556-0.835 0.236-0.235 0.514-0.417 0.836-0.546 0.321-0.128 0.685-0.193 1.081-0.193 0.16 0 0.332 0.022 0.514 0.054s0.353 0.096 0.535 0.171 0.332 0.182 0.492 0.3c0.161 0.118 0.29 0.268 0.407 0.439h0.022v-3.918h0.706zm-4.571-2.506c0 0.279 0.043 0.536 0.128 0.782 0.086 0.246 0.214 0.45 0.386 0.632 0.16 0.182 0.364 0.321 0.589 0.428 0.224 0.107 0.492 0.15 0.792 0.15 0.289 0 0.546-0.054 0.792-0.15 0.246-0.107 0.46-0.246 0.642-0.428s0.322-0.386 0.418-0.632 0.15-0.503 0.15-0.782c0-0.278-0.054-0.535-0.15-0.781s-0.236-0.45-0.418-0.632-0.396-0.321-0.642-0.428-0.514-0.15-0.792-0.15c-0.289 0-0.557 0.054-0.792 0.15-0.236 0.107-0.429 0.246-0.589 0.428-0.161 0.182-0.289 0.386-0.386 0.632-0.096 0.246-0.128 0.503-0.128 0.781z" clip-path="url(#clipPath838)"/>
<path d="m118.33 185.28c0.022 0.246 0.086 0.482 0.182 0.707 0.097 0.225 0.236 0.407 0.396 0.578 0.161 0.161 0.354 0.289 0.568 0.375 0.214 0.085 0.449 0.139 0.696 0.139 0.374 0 0.706-0.086 0.985-0.268 0.278-0.171 0.481-0.375 0.621-0.599l0.546 0.449c-0.3 0.375-0.632 0.653-0.996 0.814s-0.75 0.246-1.156 0.246c-0.375 0-0.718-0.064-1.028-0.203-0.311-0.139-0.589-0.311-0.814-0.546-0.225-0.236-0.407-0.514-0.535-0.835-0.129-0.321-0.204-0.675-0.204-1.049 0-0.375 0.065-0.729 0.193-1.05 0.129-0.321 0.311-0.599 0.535-0.835 0.225-0.235 0.493-0.417 0.803-0.546 0.311-0.128 0.643-0.192 0.996-0.192 0.375 0 0.717 0.064 1.017 0.203s0.546 0.31 0.76 0.535c0.204 0.225 0.354 0.493 0.461 0.792 0.107 0.3 0.16 0.621 0.16 0.975v0.321h-4.186zm3.405-0.578c0-0.482-0.139-0.867-0.429-1.156-0.289-0.289-0.685-0.45-1.199-0.45-0.224 0-0.449 0.043-0.663 0.129-0.214 0.085-0.407 0.214-0.568 0.353-0.16 0.15-0.289 0.321-0.385 0.514-0.097 0.193-0.139 0.396-0.139 0.599h3.383z" clip-path="url(#clipPath832)"/>
<path d="m123.87 184.14c0-0.224 0-0.449-0.011-0.674s-0.022-0.525-0.032-0.889h0.696v0.932h0.021c0.054-0.139 0.118-0.268 0.214-0.386 0.096-0.128 0.204-0.235 0.343-0.342 0.128-0.097 0.289-0.182 0.46-0.236 0.171-0.053 0.375-0.085 0.589-0.085 0.203 0 0.375 0.021 0.524 0.064l-0.139 0.696c-0.096-0.032-0.225-0.054-0.407-0.054-0.267 0-0.503 0.054-0.695 0.161-0.193 0.107-0.354 0.235-0.482 0.396-0.129 0.16-0.225 0.332-0.279 0.514-0.064 0.182-0.085 0.364-0.085 0.535v2.826h-0.707v-3.458z" clip-path="url(#clipPath826)"/>
</g>
<path d="m128.58 196.06h-79.47c-6.6592 0-12.055-5.396-12.055-12.055s5.3958-12.055 12.055-12.055h79.47c6.659 0 12.055 5.396 12.055 12.055s-5.396 12.055-12.055 12.055z" clip-path="url(#clipPath820)" clip-rule="evenodd" fill-rule="evenodd" opacity=".3" stroke="#b2bfe8" stroke-miterlimit="10" stroke-width="1.0706"/>
<path d="m283.85 24.699c26.872 0 48.669 21.787 48.669 48.669 0 26.872-21.786 48.67-48.669 48.67-26.872 0-48.669-21.787-48.669-48.67 0-26.872 21.786-48.669 48.669-48.669zm0-1.0706c-27.429 0-49.74 22.311-49.74 49.74 0 27.429 22.311 49.74 49.74 49.74s49.74-22.311 49.74-49.74c0-27.429-22.322-49.74-49.74-49.74z" clip-path="url(#clipPath814)" fill="#d9e2ff"/>
<g clip-path="url(#clipPath808)" opacity=".5">
<path d="m283.85 5.2138c37.643 0 68.155 30.512 68.155 68.154 0 37.642-30.512 68.155-68.155 68.155-37.642 0-68.154-30.513-68.154-68.155 0-37.642 30.512-68.154 68.154-68.154zm0-1.0706c-38.177 0-69.225 31.058-69.225 69.225 0 38.167 31.058 69.225 69.225 69.225 38.178 0 69.225-31.058 69.225-69.225 0-38.167-31.058-69.225-69.225-69.225z" fill="#d9e2ff" opacity=".5"/>
</g>
<path d="m79.931 100.71c0-17.054 7.9974-32.567 21.059-44.13 11.723-10.374 27.525-17.558 45.297-19.828" clip-path="url(#clipPath802)" stroke="#d9e2ff" stroke-miterlimit="10" stroke-width="1.0706"/>
<path d="m288.71 356.19c41.732 0 75.563-33.831 75.563-75.563 0-41.733-33.831-75.563-75.563-75.563-41.733 0-75.563 33.83-75.563 75.563 0 41.732 33.83 75.563 75.563 75.563z" clip-path="url(#clipPath796)" fill="#d9e2ff"/>
<g clip-rule="evenodd" fill-rule="evenodd">
<path d="m133.61 262.95-8.308-14.367 8.297-4.786 8.298 4.786z" clip-path="url(#clipPath790)" fill="#7d8cb5"/>
<path d="m125.31 248.58 8.286 4.785 0.011 9.582-8.297-4.786z" clip-path="url(#clipPath784)" fill="#b2bfe8"/>
<path d="m133.6 253.37 8.297-4.785v9.571l-8.297 4.785z" clip-path="url(#clipPath778)" fill="#c91540"/>
</g>
<path d="m235.13 235.72c0.991-0.991 1.286-2.302 0.658-2.929-0.627-0.628-1.938-0.333-2.929 0.658s-1.286 2.303-0.659 2.93 1.939 0.332 2.93-0.659z" clip-path="url(#clipPath772)" fill="#7d8cb5"/>
<g clip-path="url(#clipPath766)" opacity=".5">
<g opacity=".5">
<path d="m288.71 198.44c45.393 0 82.19 36.796 82.19 82.19 0 45.393-36.797 82.19-82.19 82.19-45.394 0-82.19-36.797-82.19-82.19 0-45.394 36.796-82.19 82.19-82.19zm0-1.071c-45.908 0-83.261 37.353-83.261 83.261 0 45.907 37.353 83.26 83.261 83.26 45.907 0 83.26-37.353 83.26-83.26 0-45.918-37.353-83.261-83.26-83.261z" fill="#d9e2ff" opacity=".5"/>
</g>
</g>
<path d="m138.41 255.77c26.241-10.995 45.297 19.796 51.592-18.457 4.433-26.904 31.947-16.733 44.602-2.141" clip-path="url(#clipPath760)" stroke="#c91540" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.0706"/>
<path d="m131.84 306.89 16.648-9.614-10.449-5.45-16.648 9.614z" clip-path="url(#clipPath754)" clip-rule="evenodd" fill="url(#paint1_linear_1033_7057)" fill-rule="evenodd" opacity=".5"/>
<path d="m115.84 316.23 16.102-9.421-27.033-14.443-15.599 9.004z" clip-path="url(#clipPath748)" clip-rule="evenodd" fill="url(#paint2_linear_1033_7057)" fill-rule="evenodd" opacity=".5"/>
<path d="m333.41 242.64c12.015 0 21.755-9.74 21.755-21.755s-9.74-21.754-21.755-21.754c-12.014 0-21.754 9.739-21.754 21.754s9.74 21.755 21.754 21.755z" clip-path="url(#clipPath742)" fill="#d9e2ff"/>
<path d="m333.41 199.67c11.723 0 21.22 9.496 21.22 21.219s-9.497 21.219-21.22 21.219c-11.712 0-21.219-9.496-21.219-21.219s9.507-21.219 21.219-21.219zm0-1.071c-12.29 0-22.29 10-22.29 22.29 0 12.291 10 22.29 22.29 22.29 12.291 0 22.29-9.999 22.29-22.29 0-12.29-9.999-22.29-22.29-22.29z" clip-path="url(#clipPath736)" fill="#ffffff"/>
<g fill="#24386c">
<path d="m324.09 219.23h-0.771v-7.58h4.572v0.707h-3.801v2.58h3.533v0.706h-3.533z" clip-path="url(#clipPath730)"/>
<path d="m329.14 219.23h-0.899l3.298-7.58h0.749l3.297 7.58h-0.899l-0.835-1.991h-3.876zm1.125-2.698h3.286l-1.638-3.983z" clip-path="url(#clipPath724)"/>
<path d="m344.27 219.23h-4.336c-0.546 0-1.06-0.097-1.52-0.289-0.472-0.193-0.878-0.461-1.21-0.803-0.343-0.343-0.61-0.76-0.803-1.231s-0.289-0.996-0.289-1.563c0-0.568 0.096-1.082 0.289-1.564 0.193-0.471 0.46-0.888 0.803-1.231 0.342-0.342 0.749-0.621 1.21-0.803 0.471-0.192 0.974-0.289 1.52-0.289s1.049 0.097 1.52 0.289c0.471 0.193 0.867 0.461 1.21 0.803 0.342 0.343 0.61 0.76 0.803 1.231 0.192 0.471 0.289 0.996 0.289 1.564 0 0.685-0.139 1.295-0.418 1.841-0.278 0.546-0.738 0.985-1.349 1.306v0.021h2.291v0.718zm-7.334-3.886c0 0.417 0.064 0.824 0.204 1.199 0.139 0.374 0.331 0.717 0.588 1.006s0.568 0.525 0.942 0.707c0.375 0.171 0.793 0.267 1.264 0.267 0.46 0 0.878-0.085 1.252-0.267 0.375-0.182 0.686-0.407 0.943-0.707 0.256-0.3 0.449-0.632 0.588-1.006 0.14-0.386 0.204-0.782 0.204-1.199 0-0.418-0.064-0.825-0.204-1.2-0.139-0.385-0.332-0.717-0.588-1.017-0.257-0.299-0.568-0.524-0.943-0.706-0.374-0.172-0.792-0.268-1.252-0.268-0.471 0-0.889 0.086-1.264 0.268-0.374 0.171-0.685 0.407-0.942 0.706-0.257 0.3-0.449 0.632-0.588 1.017-0.14 0.386-0.204 0.782-0.204 1.2z" clip-path="url(#clipPath718)"/>
<path d="m323.03 222.35h2.259c0.31 0 0.621 0.032 0.91 0.096 0.289 0.065 0.557 0.172 0.781 0.322 0.225 0.149 0.407 0.342 0.546 0.588 0.14 0.247 0.204 0.546 0.204 0.9 0 0.417-0.118 0.771-0.353 1.06-0.236 0.299-0.557 0.492-0.985 0.599v0.022c0.535 0.042 0.952 0.224 1.252 0.567 0.3 0.332 0.461 0.771 0.461 1.338 0 0.118-0.032 0.3-0.086 0.536-0.064 0.235-0.182 0.471-0.385 0.695-0.193 0.236-0.472 0.439-0.836 0.611-0.364 0.171-0.845 0.257-1.456 0.257h-2.312zm0.771 3.319h1.552c0.182 0 0.375-0.022 0.557-0.064 0.182-0.043 0.342-0.129 0.492-0.225 0.15-0.107 0.268-0.246 0.364-0.418 0.097-0.171 0.14-0.374 0.14-0.621 0-0.075-0.011-0.192-0.043-0.332-0.032-0.139-0.107-0.289-0.214-0.428s-0.279-0.267-0.493-0.364c-0.214-0.107-0.503-0.15-0.867-0.15h-1.478v2.602zm0 3.554h1.477c0.279 0 0.536-0.032 0.782-0.085 0.246-0.054 0.449-0.14 0.631-0.268s0.322-0.268 0.418-0.45c0.107-0.182 0.161-0.396 0.161-0.642 0-0.503-0.161-0.867-0.482-1.113-0.321-0.247-0.792-0.364-1.413-0.364h-1.574z" clip-path="url(#clipPath712)"/>
<path d="m332.73 226.86v-0.128c0-0.868-0.428-1.296-1.285-1.296-0.589 0-1.092 0.193-1.531 0.589l-0.428-0.503c0.471-0.482 1.178-0.728 2.12-0.728 0.246 0 0.482 0.032 0.706 0.107 0.225 0.075 0.418 0.182 0.579 0.321 0.16 0.15 0.299 0.332 0.396 0.557 0.096 0.225 0.15 0.482 0.15 0.792v2.238c0 0.192 0.01 0.396 0.021 0.599 0.021 0.214 0.043 0.386 0.064 0.525h-0.685c-0.021-0.118-0.043-0.257-0.043-0.396 0-0.14-0.021-0.279-0.021-0.418h-0.022c-0.203 0.332-0.449 0.578-0.728 0.717-0.278 0.15-0.621 0.225-1.038 0.225-0.225 0-0.439-0.032-0.642-0.085-0.204-0.054-0.397-0.15-0.546-0.279-0.161-0.128-0.29-0.278-0.386-0.46s-0.139-0.396-0.139-0.632c0-0.407 0.107-0.728 0.31-0.963 0.215-0.236 0.471-0.407 0.793-0.514 0.321-0.107 0.653-0.182 1.017-0.214 0.364-0.033 0.696-0.043 0.995-0.043h0.343zm-0.364 0.578c-0.182 0-0.407 0.011-0.664 0.022-0.267 0.021-0.524 0.064-0.771 0.128-0.246 0.064-0.46 0.171-0.631 0.311-0.172 0.139-0.257 0.342-0.257 0.588 0 0.161 0.032 0.3 0.096 0.418s0.161 0.214 0.278 0.289c0.118 0.075 0.236 0.128 0.375 0.161 0.139 0.032 0.279 0.042 0.428 0.042 0.257 0 0.482-0.042 0.664-0.128 0.193-0.086 0.343-0.203 0.482-0.343 0.128-0.15 0.225-0.321 0.278-0.514 0.054-0.192 0.097-0.406 0.097-0.62v-0.365h-0.375z" clip-path="url(#clipPath706)"/>
<path d="m337.73 226.11c-0.107-0.204-0.246-0.375-0.428-0.493-0.182-0.117-0.396-0.182-0.653-0.182-0.118 0-0.246 0.011-0.375 0.043-0.128 0.032-0.235 0.075-0.331 0.129-0.097 0.064-0.182 0.139-0.236 0.224-0.064 0.097-0.096 0.204-0.096 0.343 0 0.236 0.085 0.407 0.246 0.514 0.16 0.107 0.407 0.203 0.739 0.278l0.717 0.172c0.353 0.074 0.642 0.235 0.878 0.481 0.235 0.247 0.353 0.536 0.353 0.889 0 0.268-0.053 0.503-0.171 0.706-0.118 0.204-0.257 0.354-0.439 0.482-0.182 0.129-0.386 0.214-0.621 0.268-0.236 0.053-0.471 0.086-0.717 0.086-0.386 0-0.75-0.075-1.071-0.225s-0.621-0.396-0.846-0.76l0.61-0.418c0.14 0.225 0.322 0.407 0.546 0.546 0.215 0.139 0.482 0.203 0.771 0.203 0.139 0 0.289-0.01 0.429-0.042 0.139-0.032 0.267-0.086 0.374-0.15s0.204-0.161 0.268-0.268 0.096-0.235 0.096-0.375c0-0.246-0.096-0.428-0.278-0.546-0.182-0.107-0.407-0.192-0.675-0.257l-0.685-0.16c-0.085-0.022-0.203-0.054-0.353-0.107-0.15-0.054-0.289-0.129-0.428-0.225-0.14-0.096-0.257-0.225-0.364-0.385-0.097-0.161-0.15-0.354-0.15-0.6 0-0.257 0.053-0.482 0.16-0.674 0.107-0.193 0.247-0.354 0.418-0.472 0.171-0.117 0.375-0.214 0.589-0.267 0.214-0.054 0.449-0.086 0.685-0.086 0.353 0 0.674 0.064 0.974 0.204 0.3 0.139 0.535 0.364 0.696 0.696z" clip-path="url(#clipPath700)"/>
<path d="m340.13 227.62c0.021 0.246 0.085 0.482 0.182 0.707 0.096 0.225 0.235 0.407 0.396 0.578 0.16 0.161 0.353 0.289 0.567 0.375 0.214 0.085 0.45 0.139 0.696 0.139 0.375 0 0.707-0.086 0.985-0.268 0.278-0.171 0.482-0.375 0.621-0.599l0.546 0.449c-0.3 0.375-0.632 0.653-0.985 0.814-0.364 0.161-0.749 0.246-1.167 0.246-0.375 0-0.717-0.064-1.028-0.203-0.31-0.139-0.589-0.311-0.813-0.546-0.225-0.236-0.407-0.514-0.536-0.835-0.128-0.321-0.203-0.675-0.203-1.049 0-0.375 0.064-0.728 0.193-1.05 0.128-0.321 0.31-0.599 0.535-0.835 0.225-0.235 0.492-0.417 0.803-0.546 0.31-0.128 0.642-0.192 0.995-0.192 0.375 0 0.718 0.064 1.018 0.203 0.299 0.139 0.556 0.31 0.76 0.535 0.203 0.225 0.353 0.493 0.471 0.793 0.107 0.299 0.16 0.62 0.16 0.974v0.321h-4.196zm3.404-0.578c0-0.482-0.139-0.867-0.428-1.156s-0.685-0.45-1.199-0.45c-0.225 0-0.45 0.043-0.664 0.129-0.214 0.085-0.407 0.214-0.567 0.353-0.161 0.15-0.289 0.321-0.386 0.514-0.096 0.193-0.139 0.396-0.139 0.599h3.383z" clip-path="url(#clipPath694)"/>
</g>
<g clip-rule="evenodd" fill-rule="evenodd">
<path d="m271.88 240.8c-14.303 0-25.898 9.465-25.898 21.145 0 4.903 2.066 9.41 5.503 12.997 0.653 0.674 0.974 1.595 0.974 2.537v6.799c0 1.124 1.36 1.691 2.152 0.888l2.966-2.965c1.049-1.05 2.591-1.36 3.982-0.868 3.159 1.124 6.649 1.756 10.321 1.756 14.303 0 25.898-9.464 25.898-21.144 0-11.67-11.595-21.145-25.898-21.145z" clip-path="url(#clipPath688)" fill="#7d8cb5"/>
<path d="m317.57 271.84c11.573 0 20.952 7.666 20.952 17.108 0 3.972-1.67 7.623-4.454 10.524-0.524 0.546-0.792 1.296-0.792 2.056v5.503c0 0.91-1.103 1.359-1.745 0.717l-2.398-2.398c-0.846-0.846-2.099-1.103-3.223-0.707-2.559 0.91-5.385 1.424-8.35 1.424-11.574 0-20.952-7.665-20.952-17.108 0.011-9.453 9.389-17.119 20.962-17.119z" clip-path="url(#clipPath682)" fill="#7d8cb5"/>
<path d="m271.88 239.29c-14.303 0-25.898 9.464-25.898 21.144 0 4.903 2.066 9.411 5.503 12.997 0.653 0.675 0.974 1.595 0.974 2.538v6.798c0 1.124 1.36 1.691 2.152 0.888l2.966-2.965c1.049-1.049 2.591-1.36 3.982-0.867 3.159 1.124 6.649 1.756 10.321 1.756 14.303 0 25.898-9.465 25.898-21.145 0-11.669-11.595-21.144-25.898-21.144z" clip-path="url(#clipPath676)" fill="#ffffff"/>
<path d="m273.46 292.96c-9.71 0-17.579 6.424-17.579 14.346 0 3.33 1.403 6.391 3.736 8.822 0.439 0.46 0.664 1.081 0.664 1.723v4.615c0 0.76 0.921 1.145 1.456 0.61l2.013-2.013c0.707-0.706 1.756-0.921 2.698-0.589 2.141 0.761 4.518 1.189 7.002 1.189 9.71 0 17.579-6.424 17.579-14.346 0-7.923-7.869-14.357-17.569-14.357z" clip-path="url(#clipPath670)" fill="#7d8cb5"/>
<path d="m317.57 270.52c11.573 0 20.952 7.666 20.952 17.108 0 3.972-1.67 7.623-4.454 10.524-0.524 0.546-0.792 1.296-0.792 2.056v5.503c0 0.91-1.103 1.359-1.745 0.717l-2.398-2.398c-0.846-0.846-2.099-1.103-3.223-0.707-2.559 0.91-5.385 1.424-8.35 1.424-11.574 0-20.952-7.665-20.952-17.108 0.011-9.453 9.389-17.119 20.962-17.119z" clip-path="url(#clipPath664)" fill="#ffffff"/>
<path d="m273.46 291.55c-9.71 0-17.579 6.423-17.579 14.346 0 3.329 1.403 6.391 3.736 8.822 0.439 0.46 0.664 1.081 0.664 1.723v4.615c0 0.76 0.921 1.145 1.456 0.61l2.013-2.013c0.707-0.706 1.756-0.921 2.698-0.589 2.141 0.76 4.518 1.189 7.002 1.189 9.71 0 17.579-6.424 17.579-14.346 0-7.923-7.869-14.357-17.569-14.357z" clip-path="url(#clipPath658)" fill="#ffffff"/>
</g>
<g stroke="#b2bfe8" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.0706">
<path d="m309.39 283.3h16.358" clip-path="url(#clipPath652)"/>
<path d="m309.39 287.76h16.358" clip-path="url(#clipPath646)"/>
<path d="m309.39 292.21h16.358" clip-path="url(#clipPath640)"/>
<path d="m262.22 256.06h19.303" clip-path="url(#clipPath634)"/>
<path d="m262.22 260.51h19.303" clip-path="url(#clipPath628)"/>
<path d="m262.22 264.96h19.303" clip-path="url(#clipPath622)"/>
<path d="m267.56 301.8h12.43" clip-path="url(#clipPath616)"/>
<path d="m267.56 306.26h12.43" clip-path="url(#clipPath610)"/>
<path d="m267.56 310.71h12.43" clip-path="url(#clipPath604)"/>
</g>
<defs>
<linearGradient id="paint0_linear_1033_7057" x1="88.679" x2="72.276" y1="267.74" y2="268.49" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF3364" offset="0"/>
<stop stop-color="#C91540" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="paint1_linear_1033_7057" x1="137.43" x2="132.46" y1="303.66" y2="295.05" gradientUnits="userSpaceOnUse">
<stop stop-color="#F2F6FF" stop-opacity="0" offset="0"/>
<stop stop-color="#24386C" offset="1"/>
</linearGradient>
<linearGradient id="paint2_linear_1033_7057" x1="117.18" x2="104.12" y1="315.46" y2="292.83" gradientUnits="userSpaceOnUse">
<stop stop-color="#F2F6FF" stop-opacity="0" offset="0"/>
<stop stop-color="#24386C" offset="1"/>
</linearGradient>
<clipPath id="clipPath604">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath610">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath616">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath622">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath628">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath634">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath640">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath646">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath652">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath658">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath664">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath670">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath676">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath682">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath688">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath694">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath700">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath706">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath712">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath718">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath724">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath730">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath736">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath742">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath748">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath754">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath760">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath766">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath772">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath778">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath784">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath790">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath796">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath802">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath808">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath814">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath820">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath826">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath832">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath838">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath844">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath850">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath856">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath862">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath868">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath874">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath880">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath886">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath892">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath898">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath904">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath910">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath916">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath922">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath928">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath934">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath940">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath946">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath952">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath958">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath964">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath970">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath976">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath988">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath994">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1000">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1006">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1012">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1018">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1024">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1030">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1036">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1042">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1048">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1054">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1060">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1066">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1072">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1078">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1084">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1090">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1096">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1102">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1108">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1114">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1120">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1126">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1132">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1138">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1144">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1150">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1156">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
<clipPath id="clipPath1162">
<rect width="396.12" height="380.06" fill="#ffffff"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 49 KiB

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