New Bookkeeper docusaurus based website

The Apache Bookkeeper website is a custom built website. While that is cool, its also additional maintenance for the PMC/Committers.
sijie suggested that we can follow the same path as the Pulsar project and have a docusaurus based website which  uses markdown heavily and is easier to manage and update.

This is a a WIP and this draft PR is to keep the PMC/Committers updated about the progress on the website.

The goal of this PR is to be able to create a basic skeleton of the website with the following pages (and their sub pages) fully fleshed out:
* Project
* Community
* Blog
* Landing page

So with this, the only thing that remains is the rest of the versioned documentation.
That work can be done in smaller modules as follow ups.
This PR will be opened for review and then can be merged once the above mentioned pages are declared to be complete.

cc eolivelli 

Reviewers: Enrico Olivelli <eolivelli@gmail.com>, Sijie Guo <sijie@apache.org>

This closes #2426 from Ghatage/docusaurus-website-poc
diff --git a/pom.xml b/pom.xml
index 6b9b039..ee65bf2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -964,6 +964,7 @@
 
             <!-- Website -->
             <exclude>site/**</exclude>
+            <exclude>site2/**</exclude>
 
             <!-- Thrift generated files -->
             <exclude>**/org/apache/distributedlog/thrift/*</exclude>
diff --git a/site2/.dockerignore b/site2/.dockerignore
new file mode 100644
index 0000000..27d2dae
--- /dev/null
+++ b/site2/.dockerignore
@@ -0,0 +1,2 @@
+*/node_modules
+*.log
diff --git a/site2/.gitignore b/site2/.gitignore
new file mode 100644
index 0000000..5395ea7
--- /dev/null
+++ b/site2/.gitignore
@@ -0,0 +1,12 @@
+.DS_Store
+
+node_modules
+
+lib/core/metadata.js
+lib/core/MetadataBlog.js
+
+website/translated_docs
+website/build/
+website/yarn.lock
+website/node_modules
+website/i18n/*
diff --git a/site2/Dockerfile b/site2/Dockerfile
new file mode 100644
index 0000000..c7f1856
--- /dev/null
+++ b/site2/Dockerfile
@@ -0,0 +1,10 @@
+FROM node:lts
+
+WORKDIR /app/website
+
+EXPOSE 3000 35729
+COPY ./docs /app/docs
+COPY ./website /app/website
+RUN yarn install
+
+CMD ["yarn", "start"]
diff --git a/site2/docker-compose.yml b/site2/docker-compose.yml
new file mode 100644
index 0000000..6711192
--- /dev/null
+++ b/site2/docker-compose.yml
@@ -0,0 +1,18 @@
+version: "3"
+
+services:
+  docusaurus:
+    build: .
+    ports:
+      - 3000:3000
+      - 35729:35729
+    volumes:
+      - ./docs:/app/docs
+      - ./website/blog:/app/website/blog
+      - ./website/core:/app/website/core
+      - ./website/i18n:/app/website/i18n
+      - ./website/pages:/app/website/pages
+      - ./website/static:/app/website/static
+      - ./website/sidebars.json:/app/website/sidebars.json
+      - ./website/siteConfig.js:/app/website/siteConfig.js
+    working_dir: /app/website
diff --git a/site2/docs/bylaws.md b/site2/docs/bylaws.md
new file mode 100644
index 0000000..78dd503
--- /dev/null
+++ b/site2/docs/bylaws.md
@@ -0,0 +1,16 @@
+---
+id: bylaws
+title: Bylaws
+---
+
+# Introduction
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ac euismod odio, eu consequat dui. Nullam molestie consectetur risus id imperdiet. Proin sodales ornare turpis, non mollis massa ultricies id. Nam at nibh scelerisque, feugiat ante non, dapibus tortor. Vivamus volutpat diam quis tellus elementum bibendum. Praesent semper gravida velit quis aliquam. Etiam in cursus neque. Nam lectus ligula, malesuada et mauris a, bibendum faucibus mi. Phasellus ut interdum felis. Phasellus in odio pulvinar, porttitor urna eget, fringilla lectus. Aliquam sollicitudin est eros. Mauris consectetur quam vitae mauris interdum hendrerit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
+
+# Roles and responsibilities
+Duis et egestas libero, imperdiet faucibus ipsum. Sed posuere eget urna vel feugiat. Vivamus a arcu sagittis, fermentum urna dapibus, congue lectus. Fusce vulputate porttitor nisl, ac cursus elit volutpat vitae. Nullam vitae ipsum egestas, convallis quam non, porta nibh. Morbi gravida erat nec neque bibendum, eu pellentesque velit posuere. Fusce aliquam erat eu massa eleifend tristique.
+
+Sed consequat sollicitudin ipsum eget tempus. Integer a aliquet velit. In justo nibh, pellentesque non suscipit eget, gravida vel lacus. Donec odio ante, malesuada in massa quis, pharetra tristique ligula. Donec eros est, tristique eget finibus quis, semper non nisl. Vivamus et elit nec enim ornare placerat. Sed posuere odio a elit cursus sagittis.
+
+Phasellus feugiat purus eu tortor ultrices finibus. Ut libero nibh, lobortis et libero nec, dapibus posuere eros. Sed sagittis euismod justo at consectetur. Nulla finibus libero placerat, cursus sapien at, eleifend ligula. Vivamus elit nisl, hendrerit ac nibh eu, ultrices tempus dui. Nam tellus neque, commodo non rhoncus eu, gravida in risus. Nullam id iaculis tortor.
+
+Nullam at odio in sem varius tempor sit amet vel lorem. Etiam eu hendrerit nisl. Fusce nibh mauris, vulputate sit amet ex vitae, congue rhoncus nisl. Sed eget tellus purus. Nullam tempus commodo erat ut tristique. Cras accumsan massa sit amet justo consequat eleifend. Integer scelerisque vitae tellus id consectetur.
diff --git a/site2/docs/doc2.md b/site2/docs/doc2.md
new file mode 100644
index 0000000..20c0c95
--- /dev/null
+++ b/site2/docs/doc2.md
@@ -0,0 +1,7 @@
+---
+id: doc2
+title: document number 2
+---
+
+This is a link to [another document.](doc3.md)  
+This is a link to an [external page.](http://www.example.com)
diff --git a/site2/docs/doc3.md b/site2/docs/doc3.md
new file mode 100644
index 0000000..2cc6183
--- /dev/null
+++ b/site2/docs/doc3.md
@@ -0,0 +1,14 @@
+---
+id: doc3
+title: This is document number 3
+---
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ac euismod odio, eu consequat dui. Nullam molestie consectetur risus id imperdiet. Proin sodales ornare turpis, non mollis massa ultricies id. Nam at nibh scelerisque, feugiat ante non, dapibus tortor. Vivamus volutpat diam quis tellus elementum bibendum. Praesent semper gravida velit quis aliquam. Etiam in cursus neque. Nam lectus ligula, malesuada et mauris a, bibendum faucibus mi. Phasellus ut interdum felis. Phasellus in odio pulvinar, porttitor urna eget, fringilla lectus. Aliquam sollicitudin est eros. Mauris consectetur quam vitae mauris interdum hendrerit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
+
+Duis et egestas libero, imperdiet faucibus ipsum. Sed posuere eget urna vel feugiat. Vivamus a arcu sagittis, fermentum urna dapibus, congue lectus. Fusce vulputate porttitor nisl, ac cursus elit volutpat vitae. Nullam vitae ipsum egestas, convallis quam non, porta nibh. Morbi gravida erat nec neque bibendum, eu pellentesque velit posuere. Fusce aliquam erat eu massa eleifend tristique.
+
+Sed consequat sollicitudin ipsum eget tempus. Integer a aliquet velit. In justo nibh, pellentesque non suscipit eget, gravida vel lacus. Donec odio ante, malesuada in massa quis, pharetra tristique ligula. Donec eros est, tristique eget finibus quis, semper non nisl. Vivamus et elit nec enim ornare placerat. Sed posuere odio a elit cursus sagittis.
+
+Phasellus feugiat purus eu tortor ultrices finibus. Ut libero nibh, lobortis et libero nec, dapibus posuere eros. Sed sagittis euismod justo at consectetur. Nulla finibus libero placerat, cursus sapien at, eleifend ligula. Vivamus elit nisl, hendrerit ac nibh eu, ultrices tempus dui. Nam tellus neque, commodo non rhoncus eu, gravida in risus. Nullam id iaculis tortor.
+
+Nullam at odio in sem varius tempor sit amet vel lorem. Etiam eu hendrerit nisl. Fusce nibh mauris, vulputate sit amet ex vitae, congue rhoncus nisl. Sed eget tellus purus. Nullam tempus commodo erat ut tristique. Cras accumsan massa sit amet justo consequat eleifend. Integer scelerisque vitae tellus id consectetur.
diff --git a/site2/docs/exampledoc4.md b/site2/docs/exampledoc4.md
new file mode 100644
index 0000000..6f94ffe
--- /dev/null
+++ b/site2/docs/exampledoc4.md
@@ -0,0 +1,6 @@
+---
+id: doc4
+title: Other Document
+---
+
+this is another document
diff --git a/site2/docs/exampledoc5.md b/site2/docs/exampledoc5.md
new file mode 100644
index 0000000..92e2d0d
--- /dev/null
+++ b/site2/docs/exampledoc5.md
@@ -0,0 +1,6 @@
+---
+id: doc5
+title: Fifth Document
+---
+
+Another one
diff --git a/site2/docs/getting-started.md b/site2/docs/getting-started.md
new file mode 100644
index 0000000..7381eb5
--- /dev/null
+++ b/site2/docs/getting-started.md
@@ -0,0 +1,29 @@
+---
+id: getting-started
+title: Latin-ish Lol
+sidebar_label: Example Page
+---
+
+Check the [documentation](https://docusaurus.io) for how to use Docusaurus.
+
+## Lorem
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus elementum massa eget nulla aliquet sagittis. Proin odio tortor, vulputate ut odio in, ultrices ultricies augue. Cras ornare ultrices lorem malesuada iaculis. Etiam sit amet libero tempor, pulvinar mauris sed, sollicitudin sapien.
+
+## Mauris In Code
+
+```
+Mauris vestibulum ullamcorper nibh, ut semper purus pulvinar ut. Donec volutpat orci sit amet mauris malesuada, non pulvinar augue aliquam. Vestibulum ultricies at urna ut suscipit. Morbi iaculis, erat at imperdiet semper, ipsum nulla sodales erat, eget tincidunt justo dui quis justo. Pellentesque dictum bibendum diam at aliquet. Sed pulvinar, dolor quis finibus ornare, eros odio facilisis erat, eu rhoncus nunc dui sed ex. Nunc gravida dui massa, sed ornare arcu tincidunt sit amet. Maecenas efficitur sapien neque, a laoreet libero feugiat ut.
+```
+
+## Nulla
+
+Nulla facilisi. Maecenas sodales nec purus eget posuere. Sed sapien quam, pretium a risus in, porttitor dapibus erat. Sed sit amet fringilla ipsum, eget iaculis augue. Integer sollicitudin tortor quis ultricies aliquam. Suspendisse fringilla nunc in tellus cursus, at placerat tellus scelerisque. Sed tempus elit a sollicitudin rhoncus. Nulla facilisi. Morbi nec dolor dolor. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras et aliquet lectus. Pellentesque sit amet eros nisi. Quisque ac sapien in sapien congue accumsan. Nullam in posuere ante. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin lacinia leo a nibh fringilla pharetra.
+
+## Orci
+
+Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Proin venenatis lectus dui, vel ultrices ante bibendum hendrerit. Aenean egestas feugiat dui id hendrerit. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Curabitur in tellus laoreet, eleifend nunc id, viverra leo. Proin vulputate non dolor vel vulputate. Curabitur pretium lobortis felis, sit amet finibus lorem suscipit ut. Sed non mollis risus. Duis sagittis, mi in euismod tincidunt, nunc mauris vestibulum urna, at euismod est elit quis erat. Phasellus accumsan vitae neque eu placerat. In elementum arcu nec tellus imperdiet, eget maximus nulla sodales. Curabitur eu sapien eget nisl sodales fermentum.
+
+## Phasellus
+
+Phasellus pulvinar ex id commodo imperdiet. Praesent odio nibh, sollicitudin sit amet faucibus id, placerat at metus. Donec vitae eros vitae tortor hendrerit finibus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Quisque vitae purus dolor. Duis suscipit ac nulla et finibus. Phasellus ac sem sed dui dictum gravida. Phasellus eleifend vestibulum facilisis. Integer pharetra nec enim vitae mattis. Duis auctor, lectus quis condimentum bibendum, nunc dolor aliquam massa, id bibendum orci velit quis magna. Ut volutpat nulla nunc, sed interdum magna condimentum non. Sed urna metus, scelerisque vitae consectetur a, feugiat quis magna. Donec dignissim ornare nisl, eget tempor risus malesuada quis.
diff --git a/site2/website/README.md b/site2/website/README.md
new file mode 100644
index 0000000..6477a55
--- /dev/null
+++ b/site2/website/README.md
@@ -0,0 +1,198 @@
+This website was created with [Docusaurus](https://docusaurus.io/).
+
+# What's In This Document
+
+- [Get Started in 5 Minutes](#get-started-in-5-minutes)
+- [Directory Structure](#directory-structure)
+- [Editing Content](#editing-content)
+- [Adding Content](#adding-content)
+- [Full Documentation](#full-documentation)
+
+# Get Started in 5 Minutes
+
+1. Make sure all the dependencies for the website are installed:
+
+```sh
+# Install dependencies
+$ yarn
+```
+
+2. Run your dev server:
+
+```sh
+# Start the site
+$ yarn start
+```
+
+## Directory Structure
+
+Your project file structure should look something like this
+
+```
+my-docusaurus/
+  docs/
+    doc-1.md
+    doc-2.md
+    doc-3.md
+  website/
+    blog/
+      2016-3-11-oldest-post.md
+      2017-10-24-newest-post.md
+    core/
+    node_modules/
+    pages/
+    static/
+      css/
+      img/
+    package.json
+    sidebars.json
+    siteConfig.js
+```
+
+# Editing Content
+
+## Editing an existing docs page
+
+Edit docs by navigating to `docs/` and editing the corresponding document:
+
+`docs/doc-to-be-edited.md`
+
+```markdown
+---
+id: page-needs-edit
+title: This Doc Needs To Be Edited
+---
+
+Edit me...
+```
+
+For more information about docs, click [here](https://docusaurus.io/docs/en/navigation)
+
+## Editing an existing blog post
+
+Edit blog posts by navigating to `website/blog` and editing the corresponding post:
+
+`website/blog/post-to-be-edited.md`
+
+```markdown
+---
+id: post-needs-edit
+title: This Blog Post Needs To Be Edited
+---
+
+Edit me...
+```
+
+For more information about blog posts, click [here](https://docusaurus.io/docs/en/adding-blog)
+
+# Adding Content
+
+## Adding a new docs page to an existing sidebar
+
+1. Create the doc as a new markdown file in `/docs`, example `docs/newly-created-doc.md`:
+
+```md
+---
+id: newly-created-doc
+title: This Doc Needs To Be Edited
+---
+
+My new content here..
+```
+
+1. Refer to that doc's ID in an existing sidebar in `website/sidebars.json`:
+
+```javascript
+// Add newly-created-doc to the Getting Started category of docs
+{
+  "docs": {
+    "Getting Started": [
+      "quick-start",
+      "newly-created-doc" // new doc here
+    ],
+    ...
+  },
+  ...
+}
+```
+
+For more information about adding new docs, click [here](https://docusaurus.io/docs/en/navigation)
+
+## Adding a new blog post
+
+1. Make sure there is a header link to your blog in `website/siteConfig.js`:
+
+`website/siteConfig.js`
+
+```javascript
+headerLinks: [
+    ...
+    { blog: true, label: 'Blog' },
+    ...
+]
+```
+
+2. Create the blog post with the format `YYYY-MM-DD-My-Blog-Post-Title.md` in `website/blog`:
+
+`website/blog/2018-05-21-New-Blog-Post.md`
+
+```markdown
+---
+author: Frank Li
+authorURL: https://twitter.com/foobarbaz
+authorFBID: 503283835
+title: New Blog Post
+---
+
+Lorem Ipsum...
+```
+
+For more information about blog posts, click [here](https://docusaurus.io/docs/en/adding-blog)
+
+## Adding items to your site's top navigation bar
+
+1. Add links to docs, custom pages or external links by editing the headerLinks field of `website/siteConfig.js`:
+
+`website/siteConfig.js`
+
+```javascript
+{
+  headerLinks: [
+    ...
+    /* you can add docs */
+    { doc: 'my-examples', label: 'Examples' },
+    /* you can add custom pages */
+    { page: 'help', label: 'Help' },
+    /* you can add external links */
+    { href: 'https://github.com/facebook/docusaurus', label: 'GitHub' },
+    ...
+  ],
+  ...
+}
+```
+
+For more information about the navigation bar, click [here](https://docusaurus.io/docs/en/navigation)
+
+## Adding custom pages
+
+1. Docusaurus uses React components to build pages. The components are saved as .js files in `website/pages/en`:
+1. If you want your page to show up in your navigation header, you will need to update `website/siteConfig.js` to add to the `headerLinks` element:
+
+`website/siteConfig.js`
+
+```javascript
+{
+  headerLinks: [
+    ...
+    { page: 'my-new-custom-page', label: 'My New Custom Page' },
+    ...
+  ],
+  ...
+}
+```
+
+For more information about custom pages, click [here](https://docusaurus.io/docs/en/custom-pages).
+
+# Full Documentation
+
+Full documentation can be found on the [website](https://docusaurus.io/).
diff --git a/site2/website/blog/2017-10-24-new-version-1.0.0.md b/site2/website/blog/2017-10-24-new-version-1.0.0.md
new file mode 100644
index 0000000..4a88cdc
--- /dev/null
+++ b/site2/website/blog/2017-10-24-new-version-1.0.0.md
@@ -0,0 +1,7 @@
+---
+title: New Website Version 1.0.0
+author: Anup Ghatage
+authorURL: http://twitter.com/ghatageanup
+---
+
+Welcome to the new Apache Bookkeeper website!
diff --git a/site2/website/core/Footer.js b/site2/website/core/Footer.js
new file mode 100644
index 0000000..0b27345
--- /dev/null
+++ b/site2/website/core/Footer.js
@@ -0,0 +1,203 @@
+/**
+ * Copyright (c) 2017-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+const React = require('react');
+
+/*
+class Footer extends React.Component {
+  docUrl(doc, language) {
+    const baseUrl = this.props.config.baseUrl;
+    const docsUrl = this.props.config.docsUrl;
+    const docsPart = `${docsUrl ? `${docsUrl}/` : ''}`;
+    const langPart = `${language ? `${language}/` : ''}`;
+    return `${baseUrl}${docsPart}${langPart}${doc}`;
+  }
+
+  pageUrl(doc, language) {
+    const baseUrl = this.props.config.baseUrl;
+    return baseUrl + (language ? `${language}/` : '') + doc;
+  }
+
+  render() {
+    return (
+      <footer className="nav-footer" id="footer">
+        <section className="sitemap">
+          <a href={this.props.config.baseUrl} className="nav-home">
+            {this.props.config.footerIcon && (
+              <img
+                src={this.props.config.baseUrl + this.props.config.footerIcon}
+                alt={this.props.config.title}
+                width="66"
+                height="58"
+              />
+            )}
+          </a>
+          <div>
+            <h5>Docs</h5>
+            <a href={this.docUrl('doc1.html', this.props.language)}>
+              Getting Started (or other categories)
+            </a>
+            <a href={this.docUrl('doc2.html', this.props.language)}>
+              Guides (or other categories)
+            </a>
+            <a href={this.docUrl('doc3.html', this.props.language)}>
+              API Reference (or other categories)
+            </a>
+          </div>
+          <div>
+            <h5>Community</h5>
+            <a href={this.pageUrl('users.html', this.props.language)}>
+              User Showcase
+            </a>
+            <a
+              href="https://stackoverflow.com/questions/tagged/"
+              target="_blank"
+              rel="noreferrer noopener">
+              Stack Overflow
+            </a>
+            <a href="https://discordapp.com/">Project Chat</a>
+            <a
+              href="https://twitter.com/"
+              target="_blank"
+              rel="noreferrer noopener">
+              Twitter
+            </a>
+          </div>
+          <div>
+            <h5>More</h5>
+            <a href={`${this.props.config.baseUrl}blog`}>Blog</a>
+            <a href="https://github.com/">GitHub</a>
+            <a
+              className="github-button"
+              href={this.props.config.repoUrl}
+              data-icon="octicon-star"
+              data-count-href="/facebook/docusaurus/stargazers"
+              data-show-count="true"
+              data-count-aria-label="# stargazers on GitHub"
+              aria-label="Star this project on GitHub">
+              Star
+            </a>
+            {this.props.config.twitterUsername && (
+              <div className="social">
+                <a
+                  href={`https://twitter.com/${this.props.config.twitterUsername}`}
+                  className="twitter-follow-button">
+                  Follow @{this.props.config.twitterUsername}
+                </a>
+              </div>
+            )}
+            {this.props.config.facebookAppId && (
+              <div className="social">
+                <div
+                  className="fb-like"
+                  data-href={this.props.config.url}
+                  data-colorscheme="dark"
+                  data-layout="standard"
+                  data-share="true"
+                  data-width="225"
+                  data-show-faces="false"
+                />
+              </div>
+            )}
+          </div>
+        </section>
+
+        <a
+          href="https://opensource.facebook.com/"
+          target="_blank"
+          rel="noreferrer noopener"
+          className="fbOpenSource">
+          <img
+            src={`${this.props.config.baseUrl}img/oss_logo.png`}
+            alt="Facebook Open Source"
+            width="170"
+            height="45"
+          />
+        </a>
+        <section className="copyright">{this.props.config.copyright}</section>
+      </footer>
+    );
+  }
+}
+*/
+
+class Footer extends React.Component {
+    docUrl(doc, language) {
+        const baseUrl = this.props.config.baseUrl;
+        return baseUrl + 'docs/' + (language ? language + '/' : '') + doc;
+    }
+
+    pageUrl(doc, language) {
+        const baseUrl = this.props.config.baseUrl;
+        return baseUrl + (language ? language + '/' : '') + doc;
+    }
+
+    render() {
+        const currentYear = new Date().getFullYear();
+
+        const contactUrl = this.pageUrl('contact', this.props.language)
+        const eventsUrl = this.pageUrl('events', this.props.language)
+        const twitterUrl = 'https://twitter.com/asfbookkeeper'
+        const wikiUrl = 'https://github.com/apache/bookkeeper/wiki'
+        const issuesUrl = 'https://github.com/apache/bookkeeper/issues'
+        const resourcesUrl = this.pageUrl('resources', this.props.language)
+        const teamUrl = this.pageUrl('team', this.props.language)
+        const poweredByUrl = this.pageUrl('powered-by', this.props.language)
+        const contributingUrl = this.pageUrl('contributing', this.props.language)
+        const codingUrl = this.pageUrl('coding-guide', this.props.language)
+
+        const communityMenuJs = `
+      const community = document.querySelector("a[href='#community']").parentNode;
+      const communityMenu =
+        '<li>' +
+        '<a id="community-menu" href="#">Community <span style="font-size: 0.75em">&nbsp;▼</span></a>' +
+        '<div id="community-dropdown" class="hide">' +
+          '<ul id="community-dropdown-items">' +
+            '<li><a href="${contactUrl}">Contact</a></li>' +
+            '<li><a href="${contributingUrl}">Contributing</a></li>' +
+            '<li><a href="${codingUrl}">Coding guide</a></li>' +
+            '<li><a href="${eventsUrl}">Events</a></li>' +
+            '<li><a href="${twitterUrl}" target="_blank">Twitter &#x2750</a></li>' +
+            '<li><a href="${wikiUrl}" target="_blank">Wiki &#x2750</a></li>' +
+            '<li><a href="${issuesUrl}" target="_blank">Issue tracking &#x2750</a></li>' +
+            '<li>&nbsp;</li>' +
+            '<li><a href="${resourcesUrl}">Resources</a></li>' +
+            '<li><a href="${teamUrl}">Team</a></li>' +
+            '<li><a href="${poweredByUrl}">Powered By</a></li>' +
+          '</ul>' +
+        '</div>' +
+        '</li>';
+
+      community.innerHTML = communityMenu;
+
+      const communityMenuItem = document.getElementById("community-menu");
+      const communityDropDown = document.getElementById("community-dropdown");
+      communityMenuItem.addEventListener("click", function(event) {
+        event.preventDefault();
+
+        if (communityDropDown.className == 'hide') {
+          communityDropDown.className = 'visible';
+        } else {
+          communityDropDown.className = 'hide';
+        }
+      });
+    `
+
+        return (
+            <footer className="nav-footer" id="footer">
+                <section className="copyright">{this.props.config.copyright}</section>
+                <span>
+        <script dangerouslySetInnerHTML={{__html: communityMenuJs }} />
+        </span>
+            </footer>
+        );
+    }
+}
+
+
+
+module.exports = Footer;
diff --git a/site2/website/package.json b/site2/website/package.json
new file mode 100644
index 0000000..1f87392
--- /dev/null
+++ b/site2/website/package.json
@@ -0,0 +1,14 @@
+{
+  "scripts": {
+    "examples": "docusaurus-examples",
+    "start": "docusaurus-start",
+    "build": "docusaurus-build",
+    "publish-gh-pages": "docusaurus-publish",
+    "write-translations": "docusaurus-write-translations",
+    "version": "docusaurus-version",
+    "rename-version": "docusaurus-rename-version"
+  },
+  "devDependencies": {
+    "docusaurus": "^1.14.4"
+  }
+}
diff --git a/site2/website/pages/en/community.js b/site2/website/pages/en/community.js
new file mode 100644
index 0000000..f20b2a1
--- /dev/null
+++ b/site2/website/pages/en/community.js
@@ -0,0 +1,300 @@
+/**
+ * Copyright (c) 2017-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+const React = require('react');
+
+const CompLibrary = require('../../core/CompLibrary.js');
+
+const Container = CompLibrary.Container;
+const GridBlock = CompLibrary.GridBlock;
+
+function Help(props) {
+  const {config: siteConfig, language = ''} = props;
+  const {baseUrl, docsUrl} = siteConfig;
+  const docsPart = `${docsUrl ? `${docsUrl}/` : ''}`;
+  const langPart = `${language ? `${language}/` : ''}`;
+  const docUrl = doc => `${baseUrl}${docsPart}${langPart}${doc}`;
+
+  const supportLinks = [
+    {
+      content: `Learn more about the [license.](http://www.apache.org/licenses/)`,
+      title: 'Apache License',
+    },
+    {
+      content: 'Ask questions about the documentation and project',
+      title: 'Join the community',
+    },
+    {
+      content: "Learn more about our [sponsors.](http://www.apache.org/licenses/)",
+      title: 'Sponsorship',
+    },
+  ];
+
+  return (
+    <div className="docMainWrapper wrapper">
+      <Container className="mainContainer documentContainer postContainer">
+        <div className="post">
+          <header className="postHeader">
+            <h1>Need help?</h1>
+          </header>
+          <p>This project is maintained by a dedicated group of people.</p>
+          <GridBlock contents={supportLinks} layout="threeColumn" />
+	  <p>BookKeeper’s PMC members are:</p>
+	  <table>
+  <thead>
+    <tr>
+      <th>Username</th>
+      <th>Name</th>
+      <th>Organization</th>
+      <th>Timezone</th>
+    </tr>
+  </thead>
+		<tbody>
+    <tr>
+      <td>breed</td>
+      <td>Ben Reed</td>
+      <td>Facebook</td>
+      <td>-8</td>
+    </tr>
+    <tr>
+      <td>drusek</td>
+      <td>Dave Rusek</td>
+      <td>Twitter</td>
+      <td>-7</td>
+    </tr>
+    <tr>
+      <td>eolivelli</td>
+      <td>Enrico Olivelli</td>
+      <td>Diennea</td>
+      <td>+2</td>
+    </tr>
+    <tr>
+      <td>fcuny</td>
+      <td>Franck Cuny</td>
+      <td>Twitter</td>
+      <td>-8</td>
+    </tr>
+    <tr>
+      <td>fpj</td>
+      <td>Flavio Junqueira</td>
+      <td>Pravega</td>
+      <td>+1</td>
+    </tr>
+    <tr>
+      <td>hsaputra</td>
+      <td>Henry Saputra</td>
+      <td> </td>
+      <td>-8</td>
+    </tr>
+    <tr>
+      <td>ivank</td>
+      <td>Ivan Kelly</td>
+      <td>Splunk</td>
+      <td>+2</td>
+    </tr>
+    <tr>
+      <td>jiannan</td>
+      <td>Jiannan Wang</td>
+      <td>Yahoo Inc.</td>
+      <td>+8</td>
+    </tr>
+    <tr>
+      <td>jujjuri</td>
+      <td>Venkateswararao (JV) Jujjuri</td>
+      <td>Salesforce</td>
+      <td>-8</td>
+    </tr>
+    <tr>
+      <td>lstewart</td>
+      <td>Leigh Stewart</td>
+      <td>Twitter</td>
+      <td>-8</td>
+    </tr>
+    <tr>
+      <td>mmerli</td>
+      <td>Matteo Merli</td>
+      <td>Splunk</td>
+      <td>-8</td>
+    </tr>
+    <tr>
+      <td>rakeshr</td>
+      <td>Rakesh Radhakrishnan</td>
+      <td>Huawei</td>
+      <td>+5:30</td>
+    </tr>
+    <tr>
+      <td>sijie</td>
+      <td>Sijie Guo</td>
+      <td>StreamNative</td>
+      <td>-8</td>
+    </tr>
+    <tr>
+      <td>umamahesh</td>
+      <td>Uma Maheswara Rao G</td>
+      <td>Intel</td>
+      <td>+5</td>
+    </tr>
+    <tr>
+      <td>zhaijia</td>
+      <td>Jia Zhai</td>
+      <td>StreamNative</td>
+      <td>+8</td>
+    </tr>
+    <tr>
+      <td>rdhabalia</td>
+      <td>Rajan Dhabalia</td>
+      <td>Yahoo Inc.</td>
+      <td>-8</td>
+    </tr>
+    <tr>
+      <td>reddycharan</td>
+      <td>Charan Reddy Guttapalem</td>
+      <td>Salesforce</td>
+      <td>-8</td>
+    </tr>
+		</tbody>
+	  </table>
+
+
+<h2 id="committers">Committers</h2>
+
+<p>BookKeeper’s active committers are:</p>
+
+<table>
+  <thead>
+    <tr>
+      <th>Username</th>
+      <th>Name</th>
+      <th>Organization</th>
+      <th>Timezone</th>
+    </tr>
+  </thead>
+  <tbody>
+    <tr>
+      <td>ayegorov</td>
+      <td>Andrey Yegorov</td>
+      <td>Salesforce</td>
+      <td>-8</td>
+    </tr>
+    <tr>
+      <td>breed</td>
+      <td>Ben Reed</td>
+      <td>Facebook</td>
+      <td>-8</td>
+    </tr>
+    <tr>
+      <td>drusek</td>
+      <td>Dave Rusek</td>
+      <td>Twitter</td>
+      <td>-7</td>
+    </tr>
+    <tr>
+      <td>eolivelli</td>
+      <td>Enrico Olivelli</td>
+      <td>Diennea</td>
+      <td>+2</td>
+    </tr>
+    <tr>
+      <td>fcuny</td>
+      <td>Franck Cuny</td>
+      <td>Twitter</td>
+      <td>-8</td>
+    </tr>
+    <tr>
+      <td>fpj</td>
+      <td>Flavio Junqueira</td>
+      <td>Pravega</td>
+      <td>+1</td>
+    </tr>
+    <tr>
+      <td>hsaputra</td>
+      <td>Henry Saputra</td>
+      <td> </td>
+      <td>-8</td>
+    </tr>
+    <tr>
+      <td>ivank</td>
+      <td>Ivan Kelly</td>
+      <td>Splunk</td>
+      <td>+2</td>
+    </tr>
+    <tr>
+      <td>jiannan</td>
+      <td>Jiannan Wang</td>
+      <td>Yahoo Inc.</td>
+      <td>+8</td>
+    </tr>
+    <tr>
+      <td>jujjuri</td>
+      <td>Venkateswararao (JV) Jujjuri</td>
+      <td>Salesforce</td>
+      <td>-8</td>
+    </tr>
+    <tr>
+      <td>mmerli</td>
+      <td>Matteo Merli</td>
+      <td>Splunk</td>
+      <td>-8</td>
+    </tr>
+    <tr>
+      <td>rakeshr</td>
+      <td>Rakesh Radhakrishnan</td>
+      <td>Huawei</td>
+      <td>+5:30</td>
+    </tr>
+    <tr>
+      <td>reddycharan</td>
+      <td>Charan Reddy G</td>
+      <td>Salesforce</td>
+      <td>-8</td>
+    </tr>
+    <tr>
+      <td>robindh</td>
+      <td>Robin Dhamankar</td>
+      <td>Facebook</td>
+      <td>-8</td>
+    </tr>
+    <tr>
+      <td>sboobna</td>
+      <td>Siddharth Boobna</td>
+      <td>Salesforce</td>
+      <td>-8</td>
+    </tr>
+    <tr>
+      <td>sijie</td>
+      <td>Sijie Guo</td>
+      <td>StreamNative</td>
+      <td>-8</td>
+    </tr>
+    <tr>
+      <td>sjust</td>
+      <td>Sam Just</td>
+      <td>Salesforce</td>
+      <td>-8</td>
+    </tr>
+    <tr>
+      <td>umamahesh</td>
+      <td>Uma Maheswara Rao G</td>
+      <td>Intel</td>
+      <td>+5</td>
+    </tr>
+    <tr>
+      <td>zhaijia</td>
+      <td>Jia Zhai</td>
+      <td>StreamNative</td>
+      <td>+8</td>
+    </tr>
+  </tbody>
+</table>
+
+        </div>
+      </Container>
+    </div>
+  );
+}
+
+module.exports = Help;
diff --git a/site2/website/pages/en/index.js b/site2/website/pages/en/index.js
new file mode 100644
index 0000000..4561821
--- /dev/null
+++ b/site2/website/pages/en/index.js
@@ -0,0 +1,206 @@
+/**
+ * Copyright (c) 2017-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+const React = require('react');
+
+const CompLibrary = require('../../core/CompLibrary.js');
+
+const MarkdownBlock = CompLibrary.MarkdownBlock; /* Used to read markdown */
+const Container = CompLibrary.Container;
+const GridBlock = CompLibrary.GridBlock;
+
+const CWD = process.cwd();
+const siteConfig = require(`${CWD}/siteConfig.js`);
+// const translate = require('../../server/translate.js').translate;
+// const users = require(`${CWD}/data/users.js`)
+// const featuredUsers = users.filter(x => x.hasOwnProperty('featured'))
+// featuredUsers.sort((a, b) => (a.featured > b.featured) ? 1 : -1);
+
+function imgUrl(img) {
+    return siteConfig.baseUrl + 'img/' + img;
+}
+
+function docUrl(doc, language) {
+    return siteConfig.baseUrl + 'docs/' + (language ? language + '/' : '') + doc;
+}
+
+function pageUrl(page, language) {
+    return siteConfig.baseUrl + (language ? language + '/' : '') + page;
+}
+
+function githubUrl() {
+    return siteConfig.githubUrl;
+}
+
+class HomeSplash extends React.Component {
+    render() {
+        let language = this.props.language || '';
+        return (
+            <SplashContainer>
+                <Logo img_src={imgUrl('bk-header.png')}/>
+                <div className="inner">
+                    <ProjectTitle/>
+                    <PromoSection>
+                        <Button href={docUrl('standalone', language)}>Read the docs</Button>
+                        <Button href={githubUrl()}>GitHub</Button>
+                    </PromoSection>
+                </div>
+            </SplashContainer>
+        );
+    }
+}
+
+const SplashContainer = props => (
+    <div className="homeContainer">
+        <div className="homeSplashFade" style={{marginTop: '5rem'}}>
+            <div className="wrapper homeWrapper">{props.children}</div>
+        </div>
+    </div>
+);
+
+const Logo = props => (
+    <div className="" style={{width: '500px', alignItems: 'center', margin: 'auto'}}>
+        <img src={props.img_src} />
+    </div>
+);
+
+const ProjectTitle = props => (
+    <h2 className="projectTitle" style={{maxWidth:'1024px', margin: 'auto'}}>
+        <small style={{color: 'black', fontSize: '2.0rem'}}>{siteConfig.projectDescription}</small>
+    </h2>
+);
+
+const PromoSection = props => (
+    <div className="section promoSection">
+        <div className="promoRow">
+            <div className="pluginRowBlock">{props.children}</div>
+        </div>
+    </div>
+);
+
+class Button extends React.Component {
+    render() {
+        return (
+            <div className="pluginWrapper buttonWrapper">
+                <a className="button" href={this.props.href} target={this.props.target}>
+                    {this.props.children}
+                </a>
+            </div>
+        );
+    }
+}
+
+const KeyFeaturesGrid = props => (
+    <Container
+        padding={['bottom']}
+        id={props.id}
+        background={props.background}>
+        <GridBlock align="center" contents={props.features.row1} layout="threeColumn" />
+        <GridBlock align="center" contents={props.features.row2} layout="threeColumn" />
+        <GridBlock align="center" contents={props.features.row3} layout="threeColumn" />
+    </Container>
+);
+
+const features_lang = language => {
+    return {
+        row1: [
+            {
+                content: 'BookKeeper has run in production at Yahoo, Twitter and Salesforce at scale for over 3 years, with petabytes of data stored',
+                title: `[Proven in production](${docUrl('concepts-architecture-overview', language)})`,
+            },
+            {
+                content: 'Seamlessly expand capacity to hundreds of nodes',
+                title: `[Horizontally scalable](${docUrl('concepts-architecture-overview', language)})`,
+            },
+            {
+                content: 'Persistent message storage based on Apache BookKeeper. Provides IO-level isolation between write and read operations',
+                title: `[Persistent storage](${docUrl('concepts-architecture-overview#persistent-storage', language)})`,
+            },
+        ],
+        row2: [
+            {
+                content: 'Designed for low publish latency (< 5ms) at scale with strong durabilty guarantees',
+                title: `[Low latency with durability](${docUrl('concepts-architecture-overview', language)})`,
+            },
+            {
+                content: 'Designed for configurable replication between data centers across multiple geographic regions',
+                title: `[Geo-replication](${docUrl('administration-geo', language)})`,
+            },
+            {
+                content: 'Built from the ground up as a multi-tenant system. Supports Isolation, Authentication, Authorization and Quotas',
+                title: `[Multi-tenancy](${docUrl('concepts-multi-tenancy', language)})`,
+            }
+        ]
+    };
+};
+
+const UsersBlock = props => (
+    <Container
+        padding={['bottom']}
+        id={props.id}
+        background={props.background}>
+
+        <p align="center"><small style={{color: 'black', fontSize: '1.7rem'}}>Used by companies such as</small></p>
+        <div class="logo-wrapper">
+            {
+/* TODO: Ghatage/eolivelli: Confirm with companies if it is OK to use their logo for BookKeeper website.
+                featuredUsers.map(
+                    c => (
+                        (() => {
+                            if (c.hasOwnProperty('logo_white')) {
+                                return <div className="logo-box-background-for-white">
+                                    <a href={c.url} title={c.name} target="_blank">
+                                        <img src={c.logo} alt={c.name} className={c.logo.endsWith('.svg') ? 'logo-svg' : ''}/>
+                                    </a>
+                                </div>
+                            } else {
+                                return <div className="logo-box">
+                                    <a href={c.url} title={c.name} target="_blank">
+                                        <img src={c.logo} alt={c.name} className={c.logo.endsWith('.svg') ? 'logo-svg' : ''}/>
+                                    </a>
+                                </div>
+                            }
+                        })()
+                    )
+                )
+*/
+	}
+        </div>
+        <p align="center"><small style={{color: 'black', fontSize: '1.7rem'}}>and many more</small></p>
+
+    </Container>
+);
+
+const ApacheBlock = prop => (
+    <Container>
+        <div className="Block" style={{textAlign: 'center'}}>
+            <p>
+                Apache BookKeeper is available under the <a href="https://www.apache.org/licenses">Apache License, version 2.0</a>.
+            </p>
+        </div>
+    </Container>
+);
+
+class Index extends React.Component {
+    render() {
+        let language = this.props.language || '';
+        let features = features_lang(language);
+
+        return (
+            <div>
+                <HomeSplash language={language} />
+                <div className="mainContainer">
+                    <KeyFeaturesGrid features={features} id={'key-features'} />
+                    //<UsersBlock id={'users'} />
+                    <ApacheBlock />
+                </div>
+            </div>
+        );
+    }
+}
+
+module.exports = Index;
diff --git a/site2/website/pages/en/powered-by.js b/site2/website/pages/en/powered-by.js
new file mode 100644
index 0000000..9107ee0
--- /dev/null
+++ b/site2/website/pages/en/powered-by.js
@@ -0,0 +1,60 @@
+
+
+const React = require('react');
+
+const CompLibrary = require('../../core/CompLibrary.js');
+const Container = CompLibrary.Container;
+const MarkdownBlock = CompLibrary.MarkdownBlock; /* Used to read markdown */
+const GridBlock = CompLibrary.GridBlock;
+
+const CWD = process.cwd();
+
+const translate = require('../../server/translate.js').translate;
+
+const siteConfig = require(`${CWD}/siteConfig.js`);
+const users = require(`${CWD}/data/users.js`)
+
+class Users extends React.Component {
+  render() {
+    let language = this.props.language || '';
+
+
+    return (
+        <div className="docMainWrapper wrapper">
+          <Container className="mainContainer documentContainer postContainer">
+            <div className="post">
+              <header className="postHeader">
+                <h1><translate>Companies using or contributing to Apache BookKeeper</translate></h1>
+                <hr />
+              </header>
+
+              <div class="logo-wrapper">
+                {
+                  users.map(
+                      c => (
+                          (() => {
+                            if (c.hasOwnProperty('logo_white')) {
+                              return <div className="logo-box-background-for-white">
+                                <a href={c.url} title={c.name} target="_blank">
+                                  <img src={c.logo} alt={c.name} className={c.logo.endsWith('.svg') ? 'logo-svg' : ''}/>
+                                </a>
+                              </div>
+                            } else {
+                              return <div className="logo-box">
+                                <a href={c.url} title={c.name} target="_blank">
+                                  <img src={c.logo} alt={c.name} className={c.logo.endsWith('.svg') ? 'logo-svg' : ''}/>
+                                </a>
+                              </div>
+                            }
+                          })()
+                      )
+                  )}
+              </div>
+            </div>
+          </Container>
+        </div>
+    );
+  }
+}
+
+module.exports = Users;
diff --git a/site2/website/pages/en/project.js b/site2/website/pages/en/project.js
new file mode 100644
index 0000000..a7f669f
--- /dev/null
+++ b/site2/website/pages/en/project.js
@@ -0,0 +1,56 @@
+/**
+ * Copyright (c) 2017-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+const React = require('react');
+
+const CompLibrary = require('../../core/CompLibrary.js');
+
+const Container = CompLibrary.Container;
+const GridBlock = CompLibrary.GridBlock;
+
+function Help(props) {
+  const {config: siteConfig, language = ''} = props;
+  const {baseUrl, docsUrl} = siteConfig;
+  const docsPart = `${docsUrl ? `${docsUrl}/` : ''}`;
+  const langPart = `${language ? `${language}/` : ''}`;
+  const docUrl = doc => `${baseUrl}${docsPart}${langPart}${doc}`;
+
+  const supportLinks = [
+    {
+      content: `Learn more about the [license.](http://www.apache.org/licenses/)`,
+      title: 'Apache License',
+    },
+    {
+      content: 'Learn more about our [sponsors.](http://www.apache.org/foundation/thanks.html)',
+      title: 'Join the community',
+    },
+    {
+      content: "Learn more about how to be an Apache [sponsor.](http://www.apache.org/licenses/)",
+      title: 'Sponsorship',
+    },
+    {
+      content: `Read through our [bylaws.](${docUrl('bylaws')})`,
+      title: 'Bylaws',
+    },
+  ];
+
+  return (
+    <div className="docMainWrapper wrapper">
+      <Container className="mainContainer documentContainer postContainer">
+        <div className="post">
+          <header className="postHeader">
+            <h1>Need help?</h1>
+          </header>
+          <p>This project is maintained by a dedicated group of people.</p>
+          <GridBlock contents={supportLinks} layout="threeColumn" />
+        </div>
+      </Container>
+    </div>
+  );
+}
+
+module.exports = Help;
diff --git a/site2/website/pages/en/users.js b/site2/website/pages/en/users.js
new file mode 100644
index 0000000..039dc39
--- /dev/null
+++ b/site2/website/pages/en/users.js
@@ -0,0 +1,48 @@
+/**
+ * Copyright (c) 2017-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+const React = require('react');
+
+const CompLibrary = require('../../core/CompLibrary.js');
+
+const Container = CompLibrary.Container;
+
+class Users extends React.Component {
+  render() {
+    const {config: siteConfig} = this.props;
+    if ((siteConfig.users || []).length === 0) {
+      return null;
+    }
+
+    const editUrl = `${siteConfig.repoUrl}/edit/master/website/siteConfig.js`;
+    const showcase = siteConfig.users.map(user => (
+      <a href={user.infoLink} key={user.infoLink}>
+        <img src={user.image} alt={user.caption} title={user.caption} />
+      </a>
+    ));
+
+    return (
+      <div className="mainContainer">
+        <Container padding={['bottom', 'top']}>
+          <div className="showcaseSection">
+            <div className="prose">
+              <h1>Who is Using This?</h1>
+              <p>This project is used by many folks</p>
+            </div>
+            <div className="logos">{showcase}</div>
+            <p>Are you using this project?</p>
+            <a href={editUrl} className="button">
+              Add your company
+            </a>
+          </div>
+        </Container>
+      </div>
+    );
+  }
+}
+
+module.exports = Users;
diff --git a/site2/website/sidebars.json b/site2/website/sidebars.json
new file mode 100644
index 0000000..7a1d054
--- /dev/null
+++ b/site2/website/sidebars.json
@@ -0,0 +1,10 @@
+{
+  "docs": {
+    "Docusaurus": ["doc1"],
+    "First Category": ["doc2"],
+    "Second Category": ["doc3"]
+  },
+  "docs-other": {
+    "First Category": ["doc4", "doc5"]
+  }
+}
diff --git a/site2/website/siteConfig.js b/site2/website/siteConfig.js
new file mode 100644
index 0000000..9f68a32
--- /dev/null
+++ b/site2/website/siteConfig.js
@@ -0,0 +1,124 @@
+/**
+ * Copyright (c) 2017-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+// See https://docusaurus.io/docs/site-config for all the possible
+// site configuration options.
+
+// List of projects/orgs using your project for the users page.
+const users = [
+  {
+    caption: 'User1',
+    // You will need to prepend the image path with your baseUrl
+    // if it is not '/', like: '/test-site/img/image.jpg'.
+    image: '/img/undraw_open_source.svg',
+    infoLink: 'https://www.facebook.com',
+    pinned: true,
+  },
+];
+
+const url = 'https://bookkeeper.apache.org/'
+const javadocUrl = url + '/api';
+const restApiUrl = url + '/en' + "/admin-rest-api";
+const functionsApiUrl = url + '/en' + "/functions-rest-api";
+const sourceApiUrl = url + '/en' + "/source-rest-api";
+const sinkApiUrl = url + '/en' + "/sink-rest-api";
+const baseUrl = '/bookkeeper-test/';
+const githubUrl = 'https://github.com/apache/bookkeeper';
+
+const siteConfig = {
+  title: 'Apache BookKeeper', // Title for your website.
+  disableTitleTagline: true,
+  tagline: '',
+  url: url,
+  baseUrl: '/', // Base URL for your project */
+  // For github.io type URLs, you would set the url and baseUrl like:
+  //   url: 'https://facebook.github.io',
+  //   baseUrl: '/test-site/',
+
+  // Used for publishing and more
+  projectName: 'bookkeeper',
+  organizationName: 'apache',
+  // For top-level user or org sites, the organization is still the same.
+  // e.g., for the https://JoelMarcey.github.io site, it would be set like...
+  //   organizationName: 'JoelMarcey'
+
+  // For no header links in the top nav bar -> headerLinks: [],
+  headerLinks: [
+    {doc: 'getting-started', label: 'Documentation'},
+    {page: 'community', label: 'Community'},
+    {page: 'project', label: 'Project'},
+    {blog: true, label: 'Blog'},
+  ],
+
+  // If you have users set above, you add it here:
+  users,
+
+  /* path to images for header/footer */
+  headerIcon: 'img/bk-header.png',
+  footerIcon: 'img/favicon.ico',
+  favicon: 'img/favicon.ico',
+
+  /* Colors for website */
+  colors: {
+    primaryColor: '#c86803',
+    secondaryColor: '#35092d',
+  },
+
+  /* Custom fonts for website */
+  /*
+  fonts: {
+    myFont: [
+      "Times New Roman",
+      "Serif"
+    ],
+    myOtherFont: [
+      "-apple-system",
+      "system-ui"
+    ]
+  },
+  */
+
+  githubUrl: githubUrl,
+
+  // This copyright info is used in /core/Footer.js and blog RSS/Atom feeds.
+  copyright: `
+  Copyright © 2020 The Apache Software Foundation. All Rights Reserved. Apache, Apache BookKeeper and the Apache feather logo are trademarks of The Apache Software Foundation.
+  `,
+
+  highlight: {
+    // Highlight.js theme to use for syntax highlighting in code blocks.
+    theme: 'default',
+  },
+
+  // Add custom scripts here that would be placed in <script> tags.
+  scripts: ['https://buttons.github.io/buttons.js'],
+
+  // On page navigation for the current documentation page.
+  onPageNav: 'separate',
+  // No .html extensions for paths.
+  cleanUrl: true,
+
+  // Open Graph and Twitter card images.
+  ogImage: 'img/undraw_online.svg',
+  twitterImage: 'img/undraw_tweetstorm.svg',
+
+  // For sites with a sizable amount of content, set collapsible to true.
+  // Expand/collapse the links and subcategories under categories.
+  // docsSideNavCollapsible: true,
+
+  // Show documentation's last contributor's name.
+  // enableUpdateBy: true,
+
+  // Show documentation's last update time.
+  // enableUpdateTime: true,
+
+  // You may provide arbitrary config keys to be used as needed by your
+  // template. For example, if you need your repo's URL...
+  //   repoUrl: 'https://github.com/facebook/test-site',
+};
+
+module.exports = siteConfig;
diff --git a/site2/website/static/css/code-blocks-buttons.css b/site2/website/static/css/code-blocks-buttons.css
new file mode 100644
index 0000000..06127c1
--- /dev/null
+++ b/site2/website/static/css/code-blocks-buttons.css
@@ -0,0 +1,46 @@
+/* "Copy" code block button */
+pre {
+    position: relative;
+}
+
+pre .btnIcon {
+    position: absolute;
+    top: 4px;
+    z-index: 2;
+    cursor: pointer;
+    border: 1px solid transparent;
+    padding: 0;
+    color: #fff;
+    background-color: transparent;
+    height: 30px;
+    transition: all .25s ease-out;
+}
+
+pre .btnIcon:hover {
+    text-decoration: none;
+}
+
+.btnIcon__body {
+    align-items: center;
+    display: flex;
+}
+
+.btnIcon svg {
+    fill: currentColor;
+    margin-right: .4em;
+}
+
+.btnIcon__label {
+    font-size: 11px;
+}
+
+.btnClipboard {
+    right: 10px;
+}
+
+.version_select {
+    width: 200px;
+    height: 30px;
+    border: 1px solid #000000;
+    border-radius: 4px;
+}
\ No newline at end of file
diff --git a/site2/website/static/css/custom.css b/site2/website/static/css/custom.css
new file mode 100644
index 0000000..e23b26d
--- /dev/null
+++ b/site2/website/static/css/custom.css
@@ -0,0 +1,149 @@
+/**
+ * Copyright (c) 2017-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+ 
+/* your custom css */
+
+@media only screen and (min-device-width: 360px) and (max-device-width: 736px) {
+}
+
+@media only screen and (min-width: 1024px) {
+}
+
+@media only screen and (max-width: 1023px) {
+}
+
+@media only screen and (min-width: 1400px) {
+}
+
+@media only screen and (min-width: 1500px) {
+}
+
+.topic {
+    color: #bcc5c5;
+    background-color: #232937;
+    font-size: 1.25rem;
+    font-family: "Inconsolata", monospace;
+    font-weight: 700;
+    padding: .5rem 0 .5rem 1rem;
+    border-radius: 0;
+}
+
+.tenant-color {
+    color: #b1cc00;
+}
+
+.navigationSlider .slidingNav ul li a {
+    color: #c86803;
+}
+
+.navigationSlider .slidingNav ul li.siteNavGroupActive a,
+.navigationSlider .slidingNav ul li.siteNavItemActive a,
+.navigationSlider .slidingNav ul li a:focus,
+.navigationSlider .slidingNav ul li a:hover {
+    background: white;
+    color: #c86803;
+}
+
+.navigationSlider .slidingNav ul li.siteNavItemActive a {
+    background: #c86803;
+    color: white;
+}
+
+/* header navigation */
+.fixedHeaderContainer {
+    background-color: white;
+}
+
+
+/* for drop down menus */
+#community-dropdown.hide,
+#apache-dropdown.hide,
+#restapis-dropdown.hide,
+#cli-dropdown.hide,
+#languages-dropdown.hide {
+    display: none;
+}
+
+
+#community-dropdown.visible,
+#apache-dropdown.visible,
+#restapis-dropdown.visible,
+#cli-dropdown.visible,
+#languages-dropdown.visible {
+    display: flex;
+}
+
+#community-dropdown,
+#apache-dropdown,
+#restapis-dropdown,
+#cli-dropdown,
+#languages-dropdown {
+    pointer-events: none;
+    position: absolute;
+    width: 100%;
+}
+
+#community-dropdown-items,
+#apache-dropdown-items,
+#restapis-dropdown-items,
+#cli-dropdown-items,
+#languages-dropdown-items {
+    background-color: white;
+    display: flex;
+    flex-direction: column;
+    min-width: 120px;
+    pointer-events: all;
+    border: 1px solid rgba(35, 41, 55, 0.15);
+    border-radius: 0.25rem;
+}
+
+
+.logo-wrapper {
+    display: grid;
+    grid-template-columns: 250px 250px 250px 250px;
+    grid-gap: 30px;
+    /* background-color: #fff; */
+    /* color: #444; */
+    /* border: dashed red 1px; */
+    /* align-items: center; */
+    justify-content: center;
+}
+
+.logo-box {
+    /* background-color: #fafafa; */
+    /* color: #fff; */
+    border-radius: 5px;
+    padding: 20px;
+    font-size: 150%;
+    /* border: dashed blue 1px; */
+    height: 120px;
+    display: flex;
+    align-items: center;
+    justify-content: center;
+
+}
+
+.logo-box-background-for-white {
+    background-color: #0f1637;
+    border-radius: 5px;
+    padding: 20px;
+    font-size: 150%;
+    /* border: dashed blue 1px; */
+    height: 120px;
+    display: flex;
+    align-items: center;
+    justify-content: center;
+}
+
+.logo-box img {
+    max-height: 80px;
+    /* border: dashed green 1px; */
+}
+
+.logo-svg {
+    min-width: 200px;
+}
\ No newline at end of file
diff --git a/site2/website/static/img/bk-header.png b/site2/website/static/img/bk-header.png
new file mode 100644
index 0000000..9e38105
--- /dev/null
+++ b/site2/website/static/img/bk-header.png
Binary files differ
diff --git a/site2/website/static/img/favicon.ico b/site2/website/static/img/favicon.ico
new file mode 100644
index 0000000..b2f132b
--- /dev/null
+++ b/site2/website/static/img/favicon.ico
Binary files differ
diff --git a/site2/website/static/img/oss_logo.png b/site2/website/static/img/oss_logo.png
new file mode 100644
index 0000000..8183e28
--- /dev/null
+++ b/site2/website/static/img/oss_logo.png
Binary files differ
diff --git a/site2/website/static/img/undraw_code_review.svg b/site2/website/static/img/undraw_code_review.svg
new file mode 100644
index 0000000..fc22b95
--- /dev/null
+++ b/site2/website/static/img/undraw_code_review.svg
@@ -0,0 +1 @@
+<svg id="a594ac37-6d44-4297-8862-1cbd9c01c0b7" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="1126.19355" height="855" viewBox="0 0 1126.19355 855"><title>code review</title><path d="M581.7675,778.43794C339.36866,759.99137,50.29677,572.17166,65.01385,378.78054S359.70017,5.35846,602.099,23.805,984.03089,403.667,969.31381,597.05809,824.16633,796.88451,581.7675,778.43794Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><ellipse cx="565.19355" cy="756" rx="506" ry="31" fill="#3f3d56"/><ellipse cx="565.19355" cy="755.5" rx="431" ry="20.5" opacity="0.1"/><ellipse cx="212.19355" cy="836.5" rx="212.19355" ry="18.5" fill="#3f3d56"/><ellipse cx="212.19355" cy="836.20161" rx="180.74194" ry="12.23387" opacity="0.1"/><rect x="196.19355" y="162" width="752" height="590" fill="#3f3d56"/><path d="M600.54135,265.12914H415.02363a2.25143,2.25143,0,1,1,0-4.50285H600.54135a2.25143,2.25143,0,0,1,0,4.50285Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M803.6202,289.89486H511.83506a2.25143,2.25143,0,0,1,0-4.50286H803.6202a2.25143,2.25143,0,1,1,0,4.50286Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M601.44192,314.66057H415.9242a2.25143,2.25143,0,1,1,0-4.50286H601.44192a2.25143,2.25143,0,1,1,0,4.50286Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M803.6202,315.11086H618.10249a2.25143,2.25143,0,0,1,0-4.50286H803.6202a2.25143,2.25143,0,1,1,0,4.50286Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M601.8922,339.42629H416.37449a2.25143,2.25143,0,0,1,0-4.50286H601.8922a2.25143,2.25143,0,1,1,0,4.50286Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M602.34249,364.192H416.82477a2.25143,2.25143,0,0,1,0-4.50286H602.34249a2.25143,2.25143,0,1,1,0,4.50286Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M686.54592,265.57943H633.4122a2.25143,2.25143,0,0,1,0-4.50286h53.13372a2.25143,2.25143,0,1,1,0,4.50286Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M686.54592,339.42629H633.4122a2.25143,2.25143,0,0,1,0-4.50286h53.13372a2.25143,2.25143,0,1,1,0,4.50286Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M686.54592,363.74171H633.4122a2.25143,2.25143,0,1,1,0-4.50285h53.13372a2.25143,2.25143,0,1,1,0,4.50285Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M775.70249,363.74171H722.56877a2.25143,2.25143,0,0,1,0-4.50285h53.13372a2.25143,2.25143,0,1,1,0,4.50285Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M467.70706,289.89486H414.57335a2.25143,2.25143,0,0,1,0-4.50286h53.13371a2.25143,2.25143,0,0,1,0,4.50286Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M600.76649,629.86057H415.24877a2.25143,2.25143,0,0,1,0-4.50286H600.76649a2.25143,2.25143,0,0,1,0,4.50286Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M599.86592,679.392H414.3482a2.25143,2.25143,0,1,1,0-4.50286H599.86592a2.25143,2.25143,0,0,1,0,4.50286Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M600.3162,704.15771H414.79849a2.25143,2.25143,0,1,1,0-4.50285H600.3162a2.25143,2.25143,0,1,1,0,4.50285Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M679.56649,679.84229H626.43277a2.25143,2.25143,0,0,1,0-4.50286h53.13372a2.25143,2.25143,0,0,1,0,4.50286Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M679.56649,704.15771H626.43277a2.25142,2.25142,0,0,1,0-4.50285h53.13372a2.25142,2.25142,0,1,1,0,4.50285Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M768.72306,679.84229H715.58935a2.25143,2.25143,0,1,1,0-4.50286h53.13371a2.25143,2.25143,0,0,1,0,4.50286Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M803.84535,654.62629H512.0602a2.25143,2.25143,0,0,1,0-4.50286H803.84535a2.25143,2.25143,0,0,1,0,4.50286Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M467.9322,654.62629H414.79849a2.25143,2.25143,0,0,1,0-4.50286H467.9322a2.25143,2.25143,0,0,1,0,4.50286Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M803.84535,729.37371H512.0602a2.25143,2.25143,0,1,1,0-4.50285H803.84535a2.25142,2.25142,0,0,1,0,4.50285Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><path d="M467.9322,729.37371H414.79849a2.25143,2.25143,0,1,1,0-4.50285H467.9322a2.25143,2.25143,0,1,1,0,4.50285Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><polygon points="519.06 401.13 447.014 472.275 519.06 543.42 535.27 527.21 480.786 472.725 535.72 417.79 519.06 401.13" fill="#4d0d41"/><polygon points="625.327 401.13 697.373 472.275 625.327 543.42 609.117 527.21 663.602 472.725 608.667 417.79 625.327 401.13" fill="#4d0d41"/><circle cx="216.19355" cy="177" r="9" fill="#4d0d41"/><circle cx="240.19355" cy="177" r="9" fill="#4d0d41"/><circle cx="264.19355" cy="177" r="9" fill="#4d0d41"/><rect x="196.19355" y="192" width="752" height="3" opacity="0.1"/><path d="M1163.09677,629.95357c0,63.77108-37.91089,86.03756-84.67635,86.03756s-84.67635-22.26648-84.67635-86.03756,84.67635-144.898,84.67635-144.898S1163.09677,566.18249,1163.09677,629.95357Z" transform="translate(-36.90323 -22.5)" fill="#f2f2f2"/><polygon points="1038.433 683.736 1039.3 630.365 1075.391 564.338 1039.436 621.993 1039.826 597.995 1064.699 550.226 1039.929 591.645 1039.929 591.645 1040.63 548.484 1067.265 510.453 1040.74 541.697 1041.178 462.556 1038.425 567.325 1038.651 563.003 1011.571 521.552 1038.217 571.3 1035.694 619.503 1035.619 618.223 1004.4 574.602 1035.524 622.743 1035.209 628.771 1035.152 628.862 1035.178 629.357 1028.776 751.653 1037.329 751.653 1038.355 688.485 1069.404 640.461 1038.433 683.736" fill="#3f3d56"/><path d="M159.52481,773.59144a43.12568,43.12568,0,0,1-8.17805,3.50253c-5.07883,1.38739-10.50718.8784-15.63716,2.06274-2.10034.4849-4.38629,1.49916-5.05424,3.54866-.48995,1.50331.04306,3.12668.55347,4.62317,5.66852,16.61991,9.08515,34.26625,18.12518,49.32052a74.64075,74.64075,0,0,0,13.99269,16.98766c2.05512,1.85228,4.38405,3.6643,7.13541,3.95491a7.24769,7.24769,0,0,0,7.37055-10.182c-.81056-1.8011-2.31727-3.19619-3.289-4.91569a18.757,18.757,0,0,1-1.81948-6.99071c-.89312-7.10831-1.7535-14.53764.70942-21.26517,1.6519-4.5122,4.68207-8.35894,7.20641-12.4475s4.62171-8.7719,4.06-13.544c-.38332-3.25659-1.97189-6.23685-3.65-9.054-1.68146-2.8227-5.00472-10.40837-8.38287-11.35035C169.16047,766.86441,162.583,772.02411,159.52481,773.59144Z" transform="translate(-36.90323 -22.5)" fill="#2f2e41"/><path d="M251.95981,831.00007a14.01882,14.01882,0,0,1-.66321,4.74531c-1.05756,2.79253-3.681,4.70608-5.03631,7.36685-1.885,3.70061-1.03063,8.17372.21823,12.13454.78295,2.48316,1.8099,5.067,3.91246,6.60271a12.89278,12.89278,0,0,0,5.95383,1.90719c18.03627,2.49619,36.35793,1.064,54.5586,1.587,3.31731.09532,6.82944.21147,9.72521-1.40969s4.686-5.6968,2.71651-8.36789c-1.76854-2.39854-5.26537-2.37621-8.24208-2.51756a33.912,33.912,0,0,1-20.913-8.61479,15.11172,15.11172,0,0,1-2.93335-3.37658,20.75292,20.75292,0,0,1-1.53436-3.51757,156.79876,156.79876,0,0,0-9.08354-20.11857c-.97877-1.81492-2.087-3.705-3.906-4.67631a10.32271,10.32271,0,0,0-4.23932-.92554c-4.53631-.294-16.28319-1.83785-19.791,1.68963C249.46137,816.76814,252.03167,826.86031,251.95981,831.00007Z" transform="translate(-36.90323 -22.5)" fill="#2f2e41"/><circle cx="242.9708" cy="376.72033" r="28.97496" fill="#fbbebe"/><path d="M253.709,423.14584c-1.72342,4.6139-4.64671,8.94711-8.90039,11.42995l40.0746,8.17466a42.45319,42.45319,0,0,1-.56181-17.869,10.30012,10.30012,0,0,0,.23975-4.409c-.75354-2.90746-4.02646-4.30693-6.95489-4.97449-7.31406-1.66731-13.7821-2.56141-20.57892-5.79173C254.9498,413.26279,255.24069,419.04525,253.709,423.14584Z" transform="translate(-36.90323 -22.5)" fill="#fbbebe"/><path d="M244.47385,423.72685a31.33845,31.33845,0,0,1,27.31312.71368c5.13776,2.70749,9.39191,6.79432,13.57151,10.82645,3.85264,3.71671,7.96244,7.97238,8.23588,13.31859.13245,2.58993-.67591,5.12286-1.08406,7.68385a25.76566,25.76566,0,0,0,13.78,26.46946c3.1836,5.30339,3.84065,11.7287,3.88948,17.91408.185,23.43592-7.20915,47.16094-1.93041,69.99538,1.23937,5.36117,3.16161,10.55391,4.2323,15.95129,1.38681,6.991,1.31835,14.17959,2.04391,21.26977a95.26625,95.26625,0,0,0,5.11322,22.49547c-1.744,2.7737-5.37357,3.83728-8.64228,3.61264s-6.3252-1.64311-9.24191-3.13567c-14.12327-7.22727-27.05918-16.75729-41.687-22.89955-9.67764-4.06367-19.98746-6.59488-29.37589-11.28823s-18.11988-12.14194-20.99049-22.238c-1.24124-4.36546-1.31765-8.96508-1.3854-13.50306-.28534-19.11376-.55046-38.43617,3.61-57.09382,3.669-16.45362,10.74145-32.1938,12.28438-48.98077.50223-5.46424.51295-11.31378,3.56594-15.87332C232.09135,432.52045,241.40863,430.85143,244.47385,423.72685Z" transform="translate(-36.90323 -22.5)" fill="#2f2e41"/><path d="M263.3948,399.62932c1.70735-2.22683,5.00024-2.53051,7.72786-1.87181s5.24265,2.06449,7.99738,2.59858a4.67544,4.67544,0,0,0,3.74325-.52575,5.44429,5.44429,0,0,0,1.61547-3.57028,68.16318,68.16318,0,0,0,.67089-17.38048,5.14652,5.14652,0,0,1,.15877-2.43744c.682-1.6434,2.7627-2.03456,4.46209-2.56176a13.31574,13.31574,0,0,0,9.01289-13.63308,5.42087,5.42087,0,0,0-1.6567-3.74055c-1.17523-.95765-2.82014-1.01649-4.33609-1.02867q-11.68307-.09382-23.36661.00565c-2.88278.02455-5.91029.09552-8.40937,1.53276-1.84769,1.06263-3.22171,2.773-4.88046,4.11154-4.32621,3.49111-10.17785,4.20145-15.44116,5.99071a15.30822,15.30822,0,0,0-6.76753,4.03565c-1.75035,1.99965-2.5919,4.97311-1.49261,7.39258a26.25205,26.25205,0,0,0,1.88685,2.9039c3.10463,4.96416,1.03778,11.40306,1.50139,17.23972.57892,7.28838,11.36495,19.11157,18.67879,20.83626C266.30761,422.31124,259.486,404.41359,263.3948,399.62932Z" transform="translate(-36.90323 -22.5)" fill="#2f2e41"/><path d="M247.0375,719.1826c.74512,5.32168,1.7007,10.66172,1.44525,16.02924-.35664,7.49365-3.05912,14.71381-3.55872,22.19929-.37315,5.59084.48989,11.24214-.28652,16.79137-.49715,3.55325-1.65585,6.97849-2.37315,10.49392a43.39491,43.39491,0,0,0,6.97307,33.26545,5.44788,5.44788,0,0,0,2.02339,1.961,5.7137,5.7137,0,0,0,2.50788.3318,179.9472,179.9472,0,0,0,25.17023-2.28749,2.41432,2.41432,0,0,0,1.61622-.71311,2.26567,2.26567,0,0,0,.351-.954c1.54379-7.936-1.97676-15.89332-2.872-23.92837-.95593-8.57968,1.10271-17.17733,3.14612-25.56477a113.54767,113.54767,0,0,1,3.46738-12.22773c.9877-2.69735,2.18054-5.32086,3.0366-8.06284a61.46035,61.46035,0,0,0,2.202-13.20261q.89161-10.57524.94476-21.19892a88.95779,88.95779,0,0,0-1.66511-20.01c-1.878-8.338-5.7238-16.08066-9.53591-23.73028a15.02852,15.02852,0,0,0-5.61784,2.67008,125.37991,125.37991,0,0,1-15.35,8.48057c-3.56655,1.65676-10.52195,2.83342-12.78554,6.28577-2.23228,3.40461-.792,10.35082-.62145,14.10572Q245.69419,709.58425,247.0375,719.1826Z" transform="translate(-36.90323 -22.5)" fill="#2f2e41"/><path d="M247.0375,719.1826c.74512,5.32168,1.7007,10.66172,1.44525,16.02924-.35664,7.49365-3.05912,14.71381-3.55872,22.19929-.37315,5.59084.48989,11.24214-.28652,16.79137-.49715,3.55325-1.65585,6.97849-2.37315,10.49392a43.39491,43.39491,0,0,0,6.97307,33.26545,5.44788,5.44788,0,0,0,2.02339,1.961,5.7137,5.7137,0,0,0,2.50788.3318,179.9472,179.9472,0,0,0,25.17023-2.28749,2.41432,2.41432,0,0,0,1.61622-.71311,2.26567,2.26567,0,0,0,.351-.954c1.54379-7.936-1.97676-15.89332-2.872-23.92837-.95593-8.57968,1.10271-17.17733,3.14612-25.56477a113.54767,113.54767,0,0,1,3.46738-12.22773c.9877-2.69735,2.18054-5.32086,3.0366-8.06284a61.46035,61.46035,0,0,0,2.202-13.20261q.89161-10.57524.94476-21.19892a88.95779,88.95779,0,0,0-1.66511-20.01c-1.878-8.338-5.7238-16.08066-9.53591-23.73028a15.02852,15.02852,0,0,0-5.61784,2.67008,125.37991,125.37991,0,0,1-15.35,8.48057c-3.56655,1.65676-10.52195,2.83342-12.78554,6.28577-2.23228,3.40461-.792,10.35082-.62145,14.10572Q245.69419,709.58425,247.0375,719.1826Z" transform="translate(-36.90323 -22.5)" opacity="0.1"/><path d="M207.86438,605.518c-3.84776,10.35941,1.80816,21.55375,6.722,31.45209,12.106,24.38615,20.51267,50.40745,28.87447,76.31727.62635,1.9408,1.2522,4.05818.55393,5.97428a7.82535,7.82535,0,0,1-2.82176,3.347c-5.76549,4.37915-13.10677,5.93873-19.97473,8.2298a90.18354,90.18354,0,0,0-18.94265,8.87995c-4.97678,3.08387-9.63891,6.64386-14.29189,10.1975l-14.812,11.31248a9.903,9.903,0,0,0-2.47578,2.39658c-1.4286,2.24131-.84344,5.16734-.13218,7.72829a131.43212,131.43212,0,0,0,7.25213,19.792,6.911,6.911,0,0,0,2.63,3.44664c2.31193,1.24241,5.13971-.405,6.90515-2.34714s3.29242-4.35894,5.78108-5.1927c2.48574-.83278,5.2216.17573,7.81767-.18871,4.19867-.58943,6.98621-4.45724,10.01273-7.42649,12.36533-12.13133,33.01009-11.25124,46.61244-21.97723a59.22781,59.22781,0,0,1,6.231-4.86753c2.29954-1.35929,4.90732-2.10533,7.29316-3.30673,7.25663-3.65411,11.81865-11.20854,14.26244-18.957s3.14074-15.92786,4.89686-23.86053c.90786-4.10092,2.10291-8.15769,2.50676-12.33845a66.09392,66.09392,0,0,0-.25308-11.6661L287.604,621.74782c-.3996-4.94331-.79987-9.89239-1.57574-14.79076-14.57664.5211-29.14284,1.10754-43.72778,1.28C230.69491,608.37423,218.87609,609.18554,207.86438,605.518Z" transform="translate(-36.90323 -22.5)" fill="#2f2e41"/><path d="M202.50573,619.721c1.97737,3.18011,6.79016,3.11442,10.10427,1.37092s5.8888-4.67259,9.21071-6.40118c4.46387-2.32282,9.74611-2.23547,14.77617-2.0934,7.96357.22492,16.02491.46432,23.68692,2.64671,7.92486,2.25727,15.63969,6.60332,23.834,5.7363,1.4259-.15087,2.98505-.55979,3.76106-1.76551a5.54448,5.54448,0,0,0,.61966-2.83582l.26794-7.159a6.46407,6.46407,0,0,0-.57-3.62533,6.08162,6.08162,0,0,0-2.71588-2.07944c-11.66338-5.64612-24.96458-6.69742-37.91511-7.14107q-9.87458-.33828-19.75748-.27827c-5.591.03409-12.303-.77486-17.73873.71906C202.77416,598.81994,198.8047,613.76883,202.50573,619.721Z" transform="translate(-36.90323 -22.5)" fill="#2f2e41"/><path d="M275.74249,432.22556c-15.28217-.13537-29.131-10.22251-44.4118-10.46824a11.51447,11.51447,0,0,0-5.39263.93046c-2.12932,1.07263-3.52928,3.14668-5.14679,4.89829-4.51828,4.89285-11.0612,7.50531-15.703,12.28109-4.35234,4.47793-6.77287,11.14957-5.05456,17.15307s8.20353,10.60849,14.279,9.16523A36.80081,36.80081,0,0,1,228.64955,446.706a72.88717,72.88717,0,0,1,11.20533-5.88209c6.86792-3.11167,14.54778-6.28282,21.71787-3.95031a30.63793,30.63793,0,0,1,7.40918,4.04034l11.95388,8.03C279.54293,443.44994,278.29044,437.28837,275.74249,432.22556Z" transform="translate(-36.90323 -22.5)" fill="#4d0d41"/><path d="M212.55243,460.87394c-2.0293,2.53158.894,6.19965.44656,9.41317-.29726,2.13512-2.05431,3.76539-2.786,5.79313-.75791,2.10039-.356,4.427-.64344,6.64132a28.48866,28.48866,0,0,1-1.2751,4.72964,84.97452,84.97452,0,0,0-2.68638,14.02574l-2.6749,19.97555a75.68111,75.68111,0,0,0-.846,9.07789,27.10744,27.10744,0,0,1-.45211,6.78677c-.59232,2.183-1.90386,4.09275-2.78616,6.17547s-1.29127,4.602-.09937,6.52435c-3.99144,3.32456-5.17826,9.85376-2.38732,14.235a7.89943,7.89943,0,0,1,1.23013,2.26518,5.81983,5.81983,0,0,1-.54176,3.34034l-2.7047,7.20665c-.69232,1.84469-.91128,4.65314,1.01352,5.07422a17.00617,17.00617,0,0,0-3.65133,5.76681,6.86617,6.86617,0,0,0,.97247,6.50559,8.28879,8.28879,0,0,1,1.69441,2.0563,5.47266,5.47266,0,0,1-.19586,3.24315,11.90573,11.90573,0,0,0,1.473,9.33345,8.37146,8.37146,0,0,0,8.41846,3.60852c5.41045-1.22031,10.27226-3.1467,15.72755-2.14571,11.746,2.15529,23.52979,4.31989,34.90618,7.952,12.984,4.1454,25.55606,10.22443,39.12586,11.50045a3.79783,3.79783,0,0,0,2.61662-.407,3.93069,3.93069,0,0,0,1.21-2.48763q2.097-9.83241,4.19405-19.66481a202.36327,202.36327,0,0,0,3.85525-22.02765c.47742-4.78125.61351-9.58923.7493-14.39234l1.08084-38.23106a38.19731,38.19731,0,0,0-2.2-16.61961l-6.21748-19.8483c-3.54813-11.32685-11.68773-21.37125-14.58576-32.8816-1.83417-7.285-3.18913-15.10292-8.10789-20.781-7.01237-8.09492-19.1447-9.354-29.76373-7.96222-4.79727.62876-9.63561,1.71382-13.78522,4.20176-4.79825,2.87682-8.33308,7.40861-11.75286,11.8363C218.30489,454.34281,215.43623,457.27636,212.55243,460.87394Z" transform="translate(-36.90323 -22.5)" fill="#4d0d41"/><path d="M237.34735,573.32348c.87491,3.77256,2.71233,7.25107,3.837,10.95684,1.88437,6.20878,1.72443,12.89561,3.60511,19.10551.78937,2.60646,1.93305,5.109,2.49961,7.77276,1.32091,6.21057-.60773,12.6356-3.0035,18.51576s-5.31347,11.678-6.0912,17.97962c-.54778,4.43849.23913,9.45012,3.66018,12.33051,3.55169,2.99038,8.71308,2.78787,13.33894,2.39a14.01584,14.01584,0,0,0,4.84121-1.00807c3.53766-1.67361,5.02767-5.85984,5.85461-9.685,2.77128-12.81912,1.97957-26.10621,1.17422-39.19671l-2.10613-34.2342c-.40547-6.59081-.83988-13.31809-2.87081-19.64644-.73878-2.302-2.02646-6.95382-4.12917-8.42371-2.0826-1.45584-8.02994-1.52068-10.60853-1.64177C235.25108,547.97044,235.3867,564.856,237.34735,573.32348Z" transform="translate(-36.90323 -22.5)" fill="#fbbebe"/><path d="M250.75137,446.9235c-2.47072-1.29382-5.58357-.736-7.97179.70446a24.56772,24.56772,0,0,0-5.9719,5.79818c-5.33892,6.51687-10.99072,13.99464-10.19889,22.38194.29689,3.14472,1.501,6.12087,2.31737,9.17226,3.57944,13.37964-.37874,27.53015.07542,41.37287.26243,7.99873,2.00293,15.86638,3.7363,23.67945.35375,1.59451.92034,3.44035,2.46284,3.97727,1.15873.40334,2.41033-.11521,3.55715-.55127A28.371,28.371,0,0,1,264.721,556.731c2.865-1.52869,1.79145-6.36261,1.14913-9.54579-1.90842-9.45767.68218-19.21438,3.82837-28.3353s6.91058-18.23032,7.43185-27.86453c.59061-10.91607-3.02875-21.57071-6.59987-31.903-.77948-2.25528-1.63134-4.6202-3.43861-6.17831a13.66523,13.66523,0,0,0-5.20292-2.377C258.09582,449.40594,254.25539,448.75842,250.75137,446.9235Z" transform="translate(-36.90323 -22.5)" fill="#2f2e41"/></svg>
diff --git a/site2/website/static/img/undraw_monitor.svg b/site2/website/static/img/undraw_monitor.svg
new file mode 100644
index 0000000..2eb2e3a
--- /dev/null
+++ b/site2/website/static/img/undraw_monitor.svg
@@ -0,0 +1 @@
+<svg id="ad7c1fe1-eb22-473c-bc85-8b4fe073a50d" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1094.72" height="788.69" viewBox="0 0 1094.72 788.69"><defs><linearGradient id="f137b292-0aa2-40b3-a442-9a256144b6d8" x1="2938.83" y1="215.4" x2="2938.83" y2="-91.93" gradientTransform="matrix(0.51, 0.86, -0.86, 0.51, -713.07, -2373.14)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="gray" stop-opacity="0.25"/><stop offset="0.54" stop-color="gray" stop-opacity="0.12"/><stop offset="1" stop-color="gray" stop-opacity="0.1"/></linearGradient><linearGradient id="ab747304-1bb2-44ed-8687-72ce94e318d2" x1="1364.21" y1="820.42" x2="1364.21" y2="492.03" gradientTransform="matrix(-1, -0.04, -0.04, 1, 2349.24, 29.65)" xlink:href="#f137b292-0aa2-40b3-a442-9a256144b6d8"/></defs><title>monitor</title><g opacity="0.5"><rect x="960.72" y="367.69" width="134" height="134" rx="14.12" fill="#d0d2d5"/><path d="M1061.36,461.85h38s32,28,0,57h-38S1029.36,492.85,1061.36,461.85Z" transform="translate(-52.64 -55.65)" opacity="0.1"/><rect x="1012.72" y="422.19" width="5" height="15" fill="#3f3d56"/><rect x="1037.72" y="420.19" width="5" height="18" fill="#3f3d56"/><path d="M1027.72,446.19h0a6,6,0,0,1,6,6v5a0,0,0,0,1,0,0h-12a0,0,0,0,1,0,0v-5A6,6,0,0,1,1027.72,446.19Z" fill="#3f3d56"/></g><path d="M674.41,294.11c3.17-.07,6.33.17,9.49,0,2.89-.14,5.76-.61,8.65-.9,4.94-.49,9.92-.45,14.88-.66,3.26-.14,6.7-.46,9.34-2.38,2.48-1.79,3.86-4.71,6.07-6.83,9-8.65,15.17-20.22,23.17-29.82,2-2.44,4.09-4.87,5.9-7.48,3.47-5,5.92-10.67,8.36-16.27a45.11,45.11,0,0,0,2.4-6.42c.45-1.76.68-3.58,1.28-5.3,1.24-3.52,4.22-6.6,4.58-10.31l-.42.06c3.64-4.63,3.08-12.7,4.88-18.63a80.28,80.28,0,0,1,4.17-10.29l6.69-14.57c1.15-2.5,2.35-5.08,4.34-7,2.41-2.33,5.77-3.49,8.19-5.81a12.71,12.71,0,0,0,3.14-5.11l.21.2c1.28,1.25,2.28,2.78,3.53,4.07,2.69,2.78,6.42,4.37,9.16,7.1,1.4,1.39,2.55,3.08,4.24,4.09a4.7,4.7,0,0,0,5.44-.67c4.91-4.32,12.23-4.72,17.54-8.53,1.47-1.06,2.75-2.35,4.13-3.51a56.32,56.32,0,0,1,10.67-6.7,26.61,26.61,0,0,1,6.59.94c3.08.85,6.09,2.26,9.29,2.2a13.4,13.4,0,0,0,7.81-3c1.63-1.26,3.12-3,3.36-5a6.42,6.42,0,0,0-2.4-5.4c-.22-.19-.45-.36-.68-.53A6.68,6.68,0,0,0,876,127a16,16,0,0,0-5.45-2.78,11.69,11.69,0,0,0-3.44-.78,15.7,15.7,0,0,0-5.34,1.25,51.34,51.34,0,0,1-10.47,2.2c-.63.06-1.91-.07-3-.08l-.37-1.06c-4.16,1.92-9,.34-13.56.35-2.22,0-4.43.39-6.64.53a59.92,59.92,0,0,1-7.34-.16L813,126a87.11,87.11,0,0,1-9.42-1c-.83-1.69-1.66-3.38-2.59-5a46.27,46.27,0,0,0-5.49-7.63,26.52,26.52,0,0,1,2.64-2l.18-.11c.23-.13.51-.27.82-.41A18.93,18.93,0,0,0,826.2,92.77a14.5,14.5,0,0,0,1.6-.73c.3-.16.6-.33.89-.52l.43-.29a8.34,8.34,0,0,0,.78-.67c.12-.12.24-.24.35-.37a4.78,4.78,0,0,0,.57-.84l0,0c.06-.12.12-.23.17-.35s0-.09.05-.14.07-.18.1-.26,0-.12.05-.18l.06-.24a1.29,1.29,0,0,0,0-.19c0-.08,0-.16,0-.23l0-.21a1.64,1.64,0,0,1,0-.22,1.7,1.7,0,0,0,0-.22c0-.07,0-.15,0-.22a1.62,1.62,0,0,0,0-.22V86.4a1.79,1.79,0,0,0,0-.23c0-.07,0-.14,0-.21l0-.24,0-.2c0-.09,0-.18,0-.26a1.16,1.16,0,0,0,0-.18,2.33,2.33,0,0,0,0-.28c0-.06,0-.11,0-.16s0-.2-.07-.3l0-.14-.09-.32,0-.12c0-.11-.07-.22-.1-.33l0-.1-.12-.36,0-.06c0-.17-.11-.35-.17-.52-.75-2.16-1.56-4.31-2.42-6.43a15.64,15.64,0,0,0-2.78-4.86c-1.77-1.88-4.31-2.82-6.43-4.32-2.5-1.76-4.37-4.25-6.49-6.47s-4.69-4.23-7.74-4.6A15.16,15.16,0,0,0,797.78,57c-18.37,6.78-33.41,20.14-49.88,30.74-6.41,4.13-13.59,8-21.18,7.47l6.7,10.64c.32.52.65,1,1,1.54s.7,1,1.07,1.5a12.07,12.07,0,0,0,3.51,3.22,7.69,7.69,0,0,0,1.08.52,8.88,8.88,0,0,0,1,.31c2.39.57,5,.09,7.42-.39.83-.16,1.66-.33,2.48-.52l1-.28.16,0c0,.06,0,.11,0,.16-.56,1-1.09,1.91-1.56,2.9a60.81,60.81,0,0,0-3.57,11.12c-1.89,7.5-3.79,15.16-3.29,22.86.17,2.6.61,5.26-.14,7.76-.36,1.23-1,2.49-.66,3.71a17.12,17.12,0,0,1,.92,2.18c.16,1.16-.76,2.16-1.42,3.12s-1,2.49-.06,3.16a5.39,5.39,0,0,0-3.57,4.45,3.79,3.79,0,0,1-.34,1.71,4.23,4.23,0,0,1-1,.93,5.39,5.39,0,0,0-1.87,3.36c-1.93,0-3.56,1.88-5.32,3a21.45,21.45,0,0,1-4.85,1.76c-4.83,1.54-9,4.71-12.77,8.05-2.1,1.83-4.22,3.85-5.14,6.47-.3.86-.46,1.76-.72,2.63a18.14,18.14,0,0,1-2.32,4.74,34.23,34.23,0,0,1-7,7.82,18.59,18.59,0,0,0-3.6,3.86c-1.53,2.21-4.64,2.87-6.28,5a23.75,23.75,0,0,1-2,3c-1.27,1.2-3.19,1.3-4.81,2-3.79,1.57-5.54,6-8.92,8.34a.94.94,0,0,1-.67.22c-.29,0-.46-.35-.71-.52-.49-.33-1.14-.08-1.72.07s-1.36.09-1.51-.49c-8.15-4.94-16.16-10.3-24.32-15.24l-3.72-2.25-19.9-12.06a1.48,1.48,0,0,0-1.57,0l-.62.43c-1-1.06-2.11-2-2.77-2.78-.27-.31-.54-.62-.82-.92a1.22,1.22,0,0,0,.53-.1,1,1,0,0,0,.43-1.3,3.26,3.26,0,0,0-.92-1.17,22.15,22.15,0,0,1-2.39-2.73,25.24,25.24,0,0,0-2.63-3.44,4.83,4.83,0,0,0-3.9-1.55,6.33,6.33,0,0,0-2.26.91,37.09,37.09,0,0,0-7.5,5.75.79.79,0,0,0-.33.62c0,.2.2.35.22.54a.7.7,0,0,1-.19.5,20.93,20.93,0,0,1-4.73,4.31q-3.81,2.85-7.45,5.92a10.42,10.42,0,0,0-3.48,4.25,8.31,8.31,0,0,0,.61,5.9c1.66,3.91,4.57,7.15,7.45,10.28a3.64,3.64,0,0,0,1.91,1.34,2.43,2.43,0,0,0,1.73-.42c1.77-1.16,2.06-3.56,2.19-5.66.05-1,.11-1.92.17-2.88a1.33,1.33,0,0,1,.11-.56,1.4,1.4,0,0,1,.61-.49l2.75-1.45c-.08-.13-.17-.26-.26-.39a11.21,11.21,0,0,1,6.49-.42c1.46.43,2.8,1.3,4.2,1.84a9.29,9.29,0,0,0,1,5.42c5.13.53,9.75,2.81,14.34,5.11A114.33,114.33,0,0,1,633,238.52q4.24,2.76,8.3,5.77c3.84,2.84,7.55,5.85,11.22,8.89a54.11,54.11,0,0,0,7.67,5.65c7.22,4.05,16.9,4.19,23.53-.86,8.36-6.37,19-9.68,28-15.19a31.6,31.6,0,0,0,7.25-5.57,4.94,4.94,0,0,1-.12.77c-.54,2.49-2.69,4.29-3.5,6.81-.63,2-.4,4.31-1.62,6-.93,1.29-2.67,2.21-2.72,3.8,0,.44.13.88.13,1.32a4.13,4.13,0,0,1-.48,1.59c-1,2.25-2.12,4.61-4.17,6-.8.55-1.82,1.05-2,2a1.89,1.89,0,0,1-.21.79c-.34.47-1.09.22-1.63.42-.75.28-.87,1.25-1.17,2a3.24,3.24,0,0,1-3.27,1.92c-6.83-.83-13.54,2.26-20.42,2.08-2.37-.07-4.73-.31-7.11-.33-7.3-.06-14.45,2-21.48,4a11.34,11.34,0,0,0-1.42,4.5,17.37,17.37,0,0,1-7.35.28,15.67,15.67,0,0,0-1.84-.25,2.77,2.77,0,0,0,.16-1.42,40.15,40.15,0,0,0-8.23,3.67c-1.71,1-3.52,2.4-3.68,4.37a6.57,6.57,0,0,0,.32,2.24l.93,3.53a3.72,3.72,0,0,0,.83,1.77c.31.3.72.48,1,.8a3.14,3.14,0,0,1,.54,1.27l.78,3.06a19.46,19.46,0,0,1,.62,3.11c.09,1,0,1.92.07,2.88a29.93,29.93,0,0,0,.69,4.7l1.11,5.54a18.91,18.91,0,0,0,1.31,4.5c.47,1,1.1,1.86,1.48,2.86.3.77.44,1.59.8,2.32a6.19,6.19,0,0,0,2.9,2.68,3.23,3.23,0,0,0,1.41.44c1.42,0,2.44-1.32,3.1-2.58a15.6,15.6,0,0,0,2.07-7.52c0-1.06-.21-2.11-.3-3.17-.24-3,.62-5.92.62-8.91a1.75,1.75,0,0,0-1.25-1.82c.09-2.54.08-5.23,1.42-7.4a11.15,11.15,0,0,1,2.44-2.65c.37,1.18.78,2.35,1.24,3.49C658.58,296.45,666.44,294.31,674.41,294.11ZM837,140.54c-.54.2-1.09.4-1.65.58-4.66,1.55-10,3.06-14.82,2a12.87,12.87,0,0,1-4.06-2l-.35-.22C822.91,139.71,830,140,837,140.54Z" transform="translate(-52.64 -55.65)" fill="url(#f137b292-0aa2-40b3-a442-9a256144b6d8)"/><path d="M864.06,130.25a15.45,15.45,0,0,1,5.31-1.23,11.65,11.65,0,0,1,3.42.79,16.08,16.08,0,0,1,5.44,2.8,6.51,6.51,0,0,1,2.41,5.4c-.23,2-1.71,3.73-3.33,5a13.27,13.27,0,0,1-7.76,3c-3.18.05-6.18-1.38-9.25-2.23a26.56,26.56,0,0,0-6.86-1,15,15,0,0,1-3.49-.22,3.74,3.74,0,0,1-2.68-2.06,5.28,5.28,0,0,1,0-3c.23-1.24.19-4.18,1.29-4.92.88-.6,4-.12,5.08-.21A50.14,50.14,0,0,0,864.06,130.25Z" transform="translate(-52.64 -55.65)" fill="#fbbebe"/><path d="M792.67,110.12a46.24,46.24,0,0,1,7.75,10c3.52,6.14,5.76,13.28,11.06,18a37.32,37.32,0,0,0,4.47,3.23,12.9,12.9,0,0,0,4.06,2c4.76,1.07,10.1-.42,14.74-2a93.35,93.35,0,0,0,13.33-6,11,11,0,0,0,1.56,5.48c1.11,1.57,3.38,2.49,5,1.5a59.3,59.3,0,0,0-11.53,7.13c-1.37,1.16-2.64,2.44-4.1,3.49-5.27,3.79-12.56,4.17-17.43,8.47a4.69,4.69,0,0,1-5.41.65c-1.69-1-2.84-2.72-4.23-4.11-2.74-2.74-6.46-4.34-9.15-7.13-1.25-1.29-2.25-2.82-3.53-4.08-1.83-1.8-4.21-3-5.89-5-1.25-1.47-2-3.26-3.17-4.83-1-1.36-2.18-2.55-3.07-4-2.18-3.47-2.16-8-.91-11.89S790.34,113.51,792.67,110.12Z" transform="translate(-52.64 -55.65)" fill="#f86d70"/><path d="M792.67,110.12a46.24,46.24,0,0,1,7.75,10c3.52,6.14,5.76,13.28,11.06,18a37.32,37.32,0,0,0,4.47,3.23,12.9,12.9,0,0,0,4.06,2c4.76,1.07,10.1-.42,14.74-2a93.35,93.35,0,0,0,13.33-6,11,11,0,0,0,1.56,5.48c1.11,1.57,3.38,2.49,5,1.5a59.3,59.3,0,0,0-11.53,7.13c-1.37,1.16-2.64,2.44-4.1,3.49-5.27,3.79-12.56,4.17-17.43,8.47a4.69,4.69,0,0,1-5.41.65c-1.69-1-2.84-2.72-4.23-4.11-2.74-2.74-6.46-4.34-9.15-7.13-1.25-1.29-2.25-2.82-3.53-4.08-1.83-1.8-4.21-3-5.89-5-1.25-1.47-2-3.26-3.17-4.83-1-1.36-2.18-2.55-3.07-4-2.18-3.47-2.16-8-.91-11.89S790.34,113.51,792.67,110.12Z" transform="translate(-52.64 -55.65)" opacity="0.1"/><path d="M614.94,202.47a10.36,10.36,0,0,0-2.82-2.55,8.54,8.54,0,0,0-5.27-.54c-4.46.68-8.6,2.72-12.52,5-3.16,1.81-6.3,3.82-8.56,6.67a6.85,6.85,0,0,0-1.51,3,6.18,6.18,0,0,0,.23,2.73,6.6,6.6,0,0,0,3.57,4.62c2.09.82,4.42-.05,6.52-.85,2.82-1.09,5.92-2.1,8.82-1.24,2.15.64,4,2.27,6.27,2.33,2.67.08,4.83-2.08,6.53-4.14,1.47-1.8,4.69-5.05,4.48-7.58S616.52,204.28,614.94,202.47Z" transform="translate(-52.64 -55.65)" fill="#fbbebe"/><path d="M648.64,280.3a17.27,17.27,0,0,1-7.5.31c-1.52-.28-3.38-.64-4.35.55a3.58,3.58,0,0,0-.61,1.48c-2.49,10.19-.21,21,4,30.65a.94.94,0,0,0,.28.42c.27.2.64.06.95-.07a11.28,11.28,0,0,0,2.83-1.65c1.92-1.74,2.33-4.57,2.42-7.16s.05-5.33,1.39-7.55c1.68-2.75,5.19-4.09,6.57-7,1.11-2.37.53-5.18-.45-7.6-.33-.84-.46-3-1.24-3.41S649.53,280.06,648.64,280.3Z" transform="translate(-52.64 -55.65)" fill="#fbbebe"/><path d="M614.65,201.45a1,1,0,0,0,.42-1.3,3.38,3.38,0,0,0-.92-1.18,20.69,20.69,0,0,1-2.38-2.74,27.68,27.68,0,0,0-2.63-3.44,4.85,4.85,0,0,0-3.89-1.56,6,6,0,0,0-2.25.9,36.36,36.36,0,0,0-7.45,5.72c-.17.17-.36.38-.32.62s.2.34.22.54a.69.69,0,0,1-.18.49,20.68,20.68,0,0,1-4.7,4.29q-3.78,2.84-7.4,5.9a10.3,10.3,0,0,0-3.45,4.23,8.41,8.41,0,0,0,.63,5.89c1.67,3.92,4.58,7.16,7.45,10.31a3.78,3.78,0,0,0,1.92,1.35,2.42,2.42,0,0,0,1.72-.42c1.75-1.15,2-3.55,2.15-5.64l.16-2.89a1.29,1.29,0,0,1,.11-.55,1.35,1.35,0,0,1,.61-.49l2.72-1.44a8.77,8.77,0,0,0-8-4.16,3,3,0,0,1-2.14-.29,1.76,1.76,0,0,1,0-2.44,5.38,5.38,0,0,1,2.36-1.31c7.17-2.63,13.65-6.85,20.61-10a5.29,5.29,0,0,1,2.46-.57C613.18,201.32,614,201.73,614.65,201.45Z" transform="translate(-52.64 -55.65)" fill="#f86d70"/><path d="M642.9,306.17c-.32.6-.43,1.3-.78,1.89s-1.11,1-1.7.7a1.75,1.75,0,0,1-.66-.89,37.36,37.36,0,0,1-2.45-22.06,13.91,13.91,0,0,1,1.07-3.52c.53-1.08,1.3-2.18,1.08-3.36a39.64,39.64,0,0,0-8.18,3.64c-1.7,1-3.49,2.39-3.65,4.35a6.84,6.84,0,0,0,.33,2.24l.94,3.53a3.65,3.65,0,0,0,.84,1.77c.3.3.71.49,1,.81a3,3,0,0,1,.54,1.26l.79,3.06a19.6,19.6,0,0,1,.63,3.12c.09,1,0,1.92.08,2.88a31,31,0,0,0,.7,4.69l1.13,5.54a19.26,19.26,0,0,0,1.32,4.5c.47,1,1.1,1.86,1.49,2.87.29.77.44,1.59.8,2.32a6.29,6.29,0,0,0,2.89,2.69,3.39,3.39,0,0,0,1.41.45c1.41.05,2.42-1.32,3.08-2.58a15.56,15.56,0,0,0,2-7.5c0-1.06-.22-2.11-.31-3.17-.25-3,.59-5.91.58-8.9C647.89,303.7,643.93,304.23,642.9,306.17Z" transform="translate(-52.64 -55.65)" fill="#f86d70"/><path d="M789.62,131.94a22.08,22.08,0,0,1-8-6.25,38.19,38.19,0,0,1-3-4.45,135.15,135.15,0,0,1-9.75-20.07c4.26.87,8.73,1.66,12.92.46a17.84,17.84,0,0,0,6-3.18,51.87,51.87,0,0,0,6.32-6.17,60.76,60.76,0,0,0,5,8c1.07,1.44,4.69,4.37,4.42,6.33s-4.27,2.94-5.89,3.87l-.17.11a22.68,22.68,0,0,0-6.15,5.73C788.18,120.78,787.09,127,789.62,131.94Z" transform="translate(-52.64 -55.65)" fill="#fbbebe"/><path d="M797.72,110.44a18.74,18.74,0,0,1-9.85-12,51.87,51.87,0,0,0,6.32-6.17,60.76,60.76,0,0,0,5,8c1.07,1.44,4.69,4.37,4.42,6.33S799.34,109.51,797.72,110.44Z" transform="translate(-52.64 -55.65)" opacity="0.1"/><circle cx="754.08" cy="37.53" r="18.73" fill="#fbbebe"/><path d="M765.75,209.85a8.74,8.74,0,0,1-8.62.21,16.59,16.59,0,0,1-3.72-3.13c-6.15-6.31-12-13-16.11-20.83a14.44,14.44,0,0,1-1.82-5.37,5.9,5.9,0,0,1,1.93-5.12,4.16,4.16,0,0,0,1-.93,3.75,3.75,0,0,0,.33-1.7,5.31,5.31,0,0,1,3.54-4.43c-1-.68-.6-2.19.05-3.16s1.56-2,1.4-3.12a17.12,17.12,0,0,0-.92-2.18c-.36-1.22.29-2.48.64-3.7.73-2.5.29-5.16.11-7.76-.53-7.7,1.34-15.34,3.19-22.83a61.24,61.24,0,0,1,3.52-11.1c.47-1,1-2,1.54-2.89a76.83,76.83,0,0,1,6.29-8.75,11.36,11.36,0,0,1,4.29-3.84,4.24,4.24,0,0,1,.5-.18,10.88,10.88,0,0,1,3.82-.29c3.38.21,6.93,1,9.34,3.38s3.19,5.72,4.28,8.94a24.63,24.63,0,0,0,1.26,3.15c1.59,3.16,4.18,5.68,6.73,8.13l2.77,2.67c1.39,1.34,3.8,1,5.11,2.41a6.48,6.48,0,0,1,1.17,2.24A34.75,34.75,0,0,1,799.92,141a18.75,18.75,0,0,1-.15,2.59,13.64,13.64,0,0,1-3.79,8c-2.4,2.31-5.74,3.45-8.13,5.77-2,1.92-3.16,4.49-4.3,7q-3.3,7.26-6.61,14.54a82.39,82.39,0,0,0-4.11,10.25C770.75,196.14,771.93,206,765.75,209.85Z" transform="translate(-52.64 -55.65)" fill="#f86d70"/><path d="M708,292.25c-4.94.2-9.89.14-14.81.61-2.87.28-5.73.75-8.61.87-3.14.14-6.29-.11-9.44-.05-7.93.17-15.75,2.28-23.38,4.46a44.4,44.4,0,0,1-3.31-16.57,10.57,10.57,0,0,1,0-1.13,11.37,11.37,0,0,1,1.41-4.58c7-2,14.1-4,21.37-3.9,2.37,0,4.72.28,7.08.35,6.85.21,13.51-2.86,20.31-2a3.2,3.2,0,0,0,3.25-1.91c.29-.74.41-1.71,1.16-2,.54-.2,1.28.05,1.62-.41a2.1,2.1,0,0,0,.21-.79c.2-1,1.21-1.45,2-2,2-1.38,3.13-3.74,4.13-6a4.07,4.07,0,0,0,.47-1.58c0-.44-.14-.88-.13-1.33,0-1.58,1.77-2.49,2.69-3.78,1.21-1.7,1-4,1.59-6,.8-2.52,2.93-4.31,3.46-6.79a4.94,4.94,0,0,0,.12-.77,31.32,31.32,0,0,1-7.21,5.54c-8.88,5.47-19.5,8.74-27.79,15.07-6.58,5-16.22,4.85-23.42.78a54.16,54.16,0,0,1-7.66-5.67c-3.66-3-7.36-6.07-11.19-8.93q-4-3-8.29-5.79a114.13,114.13,0,0,0-10.74-6.29c-4.58-2.32-9.19-4.62-14.29-5.17a10.53,10.53,0,0,1-.28-8.64A29.14,29.14,0,0,1,613,210.3a21.78,21.78,0,0,1,5.36-5.47,1.46,1.46,0,0,1,1.56,0L639.74,217l3.71,2.27c8.13,5,16.13,10.35,24.26,15.32.15.57.94.64,1.51.49s1.22-.39,1.71-.06c.24.16.41.46.71.52a1,1,0,0,0,.66-.22c3.36-2.31,5.08-6.75,8.85-8.3,1.61-.66,3.52-.76,4.78-2a22.71,22.71,0,0,0,2-3c1.63-2.13,4.72-2.77,6.23-5a18.35,18.35,0,0,1,3.57-3.84,33.83,33.83,0,0,0,7-7.79,18.08,18.08,0,0,0,2.29-4.72c.26-.87.42-1.77.71-2.63.91-2.62,3-4.63,5.09-6.45,3.79-3.32,7.88-6.47,12.68-8a21.44,21.44,0,0,0,4.83-1.75c1.93-1.18,3.7-3.37,5.91-2.86a5,5,0,0,1,2.19,1.38,69.61,69.61,0,0,1,7.45,8.53q5.35,6.81,10.69,13.63a15.75,15.75,0,0,0,4.19,4.15,11.49,11.49,0,0,0,7.75,1c-.35,3.71-3.3,6.77-4.52,10.29-.59,1.71-.82,3.53-1.26,5.28a43.25,43.25,0,0,1-2.37,6.41c-2.4,5.59-4.82,11.21-8.26,16.23-1.78,2.61-3.83,5-5.84,7.45-7.93,9.57-14,21.11-23,29.72-2.18,2.11-3.56,5-6,6.81C714.61,291.82,711.19,292.12,708,292.25Z" transform="translate(-52.64 -55.65)" fill="#434175"/><path d="M745.68,165.37a5.43,5.43,0,0,0-2.5.75c1.83-.64,4.06,1.07,5.75.26.79-.38.67-.49,0-.72C747.92,165.32,746.7,165.63,745.68,165.37Z" transform="translate(-52.64 -55.65)" opacity="0.1"/><rect x="987.99" y="508.41" width="78" height="14" transform="translate(-165.92 317.79) rotate(-19.55)" fill="#d0d2d5"/><path d="M1012.57,535.77h71a7,7,0,0,1,7,7v0a7,7,0,0,1-7,7h-71a0,0,0,0,1,0,0v-14A0,0,0,0,1,1012.57,535.77Z" transform="translate(-173.65 327.59) rotate(-19.55)" fill="#d0d2d5"/><path d="M963.62,496.55h17.3a58,58,0,0,1,58,58v17.3a22.68,22.68,0,0,1-22.68,22.68H963.62a22.68,22.68,0,0,1-22.68-22.68V519.23a22.68,22.68,0,0,1,22.68-22.68Z" transform="translate(-178.14 307.13) rotate(-19.55)" fill="#3f3d56"/><path d="M744.78,175.13a3.88,3.88,0,0,0-2.11-.13,4.46,4.46,0,0,0-2.75,1.35,1.5,1.5,0,0,0,1.23,0,7.27,7.27,0,0,1,2-.22c.58,0,2.31.64,2.76.36C746.57,176.06,745.23,175.3,744.78,175.13Z" transform="translate(-52.64 -55.65)" opacity="0.1"/><path d="M799.77,143.59a19.42,19.42,0,0,1-4.28-2.06c-3.51-2.23-6.46-5.26-9.93-7.54a55.25,55.25,0,0,0-5.43-3l-11.71-6a11.87,11.87,0,0,0-2.84-1.16c-1.91-.42-4.06.86-6,.59a7.23,7.23,0,0,1-4.88-3.37,17.57,17.57,0,0,1-2.2-5.67,29.09,29.09,0,0,1-.67-3.59,16,16,0,0,1-.07-3.79,9.48,9.48,0,0,1,3.3-6.46,12.09,12.09,0,0,1,4.64-2,19.37,19.37,0,0,1,3.21-.53,11.43,11.43,0,0,1,1.85,0c4.42.35,8.16,3.35,11.11,6.65,1.55,1.74,3,3.61,4.48,5.38a24.63,24.63,0,0,0,1.26,3.15c1.59,3.16,4.18,5.68,6.73,8.13l2.77,2.67c1.39,1.34,3.8,1,5.11,2.41a6.48,6.48,0,0,1,1.17,2.24A34.75,34.75,0,0,1,799.92,141,18.75,18.75,0,0,1,799.77,143.59Z" transform="translate(-52.64 -55.65)" opacity="0.1"/><path d="M708.7,271.57l-60.26,8.87a11.37,11.37,0,0,1,1.41-4.58c7-2,14.1-4,21.37-3.9,2.37,0,4.72.28,7.08.35,6.85.21,13.51-2.86,20.31-2a3.2,3.2,0,0,0,3.25-1.91c.29-.74.41-1.71,1.16-2,.54-.2,1.28.05,1.62-.41a2.1,2.1,0,0,0,.21-.79c.2-1,1.21-1.45,2-2,2-1.38,3.13-3.74,4.13-6a4.07,4.07,0,0,0,.47-1.58c0-.44-.14-.88-.13-1.33,0-1.58,1.77-2.49,2.69-3.78,1.21-1.7,1-4,1.59-6,.8-2.52,2.93-4.31,3.46-6.79l.26-.34,10.26-4Z" transform="translate(-52.64 -55.65)" opacity="0.1"/><ellipse cx="425" cy="668.67" rx="425" ry="33" fill="#4d0d41" opacity="0.1"/><ellipse cx="800.72" cy="752.92" rx="275" ry="35.77" fill="#4d0d41" opacity="0.1"/><path d="M527.89,697.6l.28-14.16q20-1.14,40-1.52c7.74-.14,15.58-.19,23.07,1.75,5.19,1.35,10.1,3.63,15.22,5.23,10.2,3.18,21,3.6,31.71,3.89,10.39.29,21.24.39,30.57-4.2,16.15-8,22.94-27.65,23.73-45.64s-2.79-36.12-.3-54" transform="translate(-52.64 -55.65)" fill="none" stroke="#3f3d56" stroke-miterlimit="10" stroke-width="12"/><polygon points="511.81 669.66 333.62 667.38 334.14 662.81 342.76 587.42 499.24 587.42 510.76 662.81 511.64 668.52 511.81 669.66" fill="#d0d2d5"/><polygon points="511.64 668.52 422.71 668.52 333.62 667.38 334.14 662.81 510.76 662.81 511.64 668.52" opacity="0.1"/><rect x="303.92" y="663.95" width="236.45" height="5.71" fill="#d0d2d5"/><path d="M818.6,190.27a14.87,14.87,0,0,0-14.8-15H143.48a14.88,14.88,0,0,0-14.8,15V590.53H818.6Z" transform="translate(-52.64 -55.65)" fill="#3f3d56"/><path d="M128.68,586.53v46.89a14.8,14.8,0,0,0,14.8,14.8H803.8a14.8,14.8,0,0,0,14.8-14.8V586.53Z" transform="translate(-52.64 -55.65)" fill="#d0d2d5"/><rect x="104.6" y="144.8" width="636.23" height="359.81" fill="#2f2e41"/><path d="M477.07,630.43a15.43,15.43,0,0,0,12.13-5.89h0a15.28,15.28,0,0,0,1.2-1.77l-8.46-1.39,9.15.07a15.44,15.44,0,0,0,.29-12.22l-12.27,6.37,11.32-8.32A15.42,15.42,0,1,0,465,624.53h0A15.4,15.4,0,0,0,477.07,630.43Z" transform="translate(-52.64 -55.65)" fill="#4d0d41"/><polygon points="439.85 592.56 510.94 663.95 500.03 592.56 439.85 592.56" opacity="0.1"/><path d="M797.82,197.52,836,146.93c2.28-3,4.63-6.13,7.76-8.29,9-6.22,22.19-2.54,29.72,5.43s10.69,19.06,13,29.78A316.11,316.11,0,0,1,893.64,249c-.32,13.29-1.51,26.72-5.74,39.33-6.42,19.18-19.43,35.33-29.26,53-15.83,28.47-22.46,66.44-2.42,92.13,6.53,8.37,15.42,14.77,21.45,23.51,6.81,9.87,9.46,21.94,12,33.66,3.79,17.7,7.59,35.51,8.29,53.6,2.26,58.49-31.09,116.93-82.59,144.75-35.75,19.32-79,24.92-110.09,51.12-11,9.23-20.48,22.8-17.78,36.86,2.2,11.41,12.22,20.08,23.22,23.85s22.93,3.46,34.53,2.8a636.33,636.33,0,0,0,83-10.25c23.23-4.44,46.42-8.27,66.67-20.49a14,14,0,0,0,5.05-4.53c1.31-2.19,1.53-4.84,1.71-7.39.55-7.51,1.07-15.3-1.58-22.35-3.09-8.24-10.14-14.48-13.52-22.6s-2.77-17.47-.58-26c2.7-10.54,7.61-20.36,12.55-30.05,4.81-9.44,9.69-18.85,15.35-27.8,15.94-25.16,37.72-46,59.27-66.55" transform="translate(-52.64 -55.65)" fill="none" stroke="#3f3d56" stroke-miterlimit="10" stroke-width="12"/><path d="M861,125a15,15,0,0,1,5.31-1.23,12,12,0,0,1,3.42.78,16.1,16.1,0,0,1,5.44,2.81,6.49,6.49,0,0,1,2.41,5.4c-.23,2-1.71,3.72-3.33,5a13.22,13.22,0,0,1-7.76,3c-3.18,0-6.18-1.38-9.25-2.24a26.55,26.55,0,0,0-6.86-1,15,15,0,0,1-3.49-.23,3.73,3.73,0,0,1-2.68-2.05,5.38,5.38,0,0,1,0-2.95c.24-1.24.2-4.19,1.3-4.93.88-.59,4-.11,5.08-.2A51.46,51.46,0,0,0,861,125Z" transform="translate(-52.64 -55.65)" fill="#fbbebe"/><path d="M847.13,126c-4.14,1.9-9,.32-13.5.31-2.21,0-4.41.37-6.61.5a59.44,59.44,0,0,1-7.31-.19l-7.32-.5a62.44,62.44,0,0,1-12.79-1.76c-3.58-4.22-9.39-6.08-13.71-9.52-3.46-2.76-5.94-6.52-8.89-9.83s-6.69-6.3-11.1-6.65a16.41,16.41,0,0,0-5.07.54,11.82,11.82,0,0,0-4.63,2,9.44,9.44,0,0,0-3.3,6.46,21.68,21.68,0,0,0,.73,7.38,17.62,17.62,0,0,0,2.2,5.68,7.34,7.34,0,0,0,4.89,3.37c1.93.26,4.07-1,6-.6a11.87,11.87,0,0,1,2.84,1.16l11.72,6a56.26,56.26,0,0,1,5.42,3c3.48,2.28,6.42,5.31,9.93,7.54s7.94,3.63,11.84,2.17c12-4.47,25.52-2.39,38.25-1.28-.08-.24.44-.46.59-.66a10.75,10.75,0,0,0,2-7.49C849,131,848,128.52,847.13,126Z" transform="translate(-52.64 -55.65)" fill="#f86d70"/><path d="M827,92.31a6.85,6.85,0,0,0,3-2.68c1.14-2.11.44-4.7-.34-7s-1.57-4.31-2.44-6.43a15.49,15.49,0,0,0-2.78-4.87c-1.77-1.89-4.3-2.84-6.41-4.33-2.5-1.77-4.37-4.28-6.48-6.49s-4.69-4.26-7.73-4.63A14.94,14.94,0,0,0,797,57.15c-18.26,6.71-33.19,20-49.54,30.54-6.36,4.11-13.5,7.94-21,7.39l6.71,10.66c1.71,2.73,3.63,5.62,6.63,6.79,2.65,1,5.61.5,8.39,0a22.61,22.61,0,0,0,6.39-1.92c4-2.17,6.57-6.68,10.87-8.25,3.21-1.17,6.79-.45,10,.67s6.36,2.64,9.74,3.1c6,.81,12-1.9,17-5.4,3-2.08,5.73-4.47,9-6a13.56,13.56,0,0,1,8-1.41C822.22,93.74,824,93.88,827,92.31Z" transform="translate(-52.64 -55.65)" fill="#2f2e41"/><path d="M830,89.63c1.12-2.07.46-4.61-.3-6.84a6,6,0,0,1-.5,3.77,7,7,0,0,1-3,2.68c-3,1.58-4.82,1.44-7.9.93a13.66,13.66,0,0,0-8,1.41c-3.25,1.57-6,4-9,6-5,3.5-11,6.2-17,5.39-3.39-.45-6.52-2-9.74-3.1s-6.81-1.84-10-.67c-4.29,1.57-6.83,6.09-10.86,8.25a22.71,22.71,0,0,1-6.39,1.92c-2.79.54-5.75,1.07-8.39,0-3-1.16-4.92-4.06-6.64-6.79l-4.75-7.55c-.38,0-.77,0-1.15,0l6.71,10.66c1.71,2.73,3.63,5.62,6.63,6.79,2.65,1,5.61.5,8.39,0a22.61,22.61,0,0,0,6.39-1.92c4-2.17,6.57-6.68,10.87-8.25,3.21-1.17,6.79-.45,10,.67s6.36,2.64,9.74,3.1c6,.81,12-1.9,17-5.4,3-2.08,5.73-4.47,9-6a13.56,13.56,0,0,1,8-1.41c3.08.5,4.9.64,7.89-.93A6.85,6.85,0,0,0,830,89.63Z" transform="translate(-52.64 -55.65)" opacity="0.1"/><path d="M881.7,773.66a10,10,0,0,1,2.18-2.42c4.37-4.12,6.4-10.18,7.48-16.12s1.39-12,3.12-17.81a57.24,57.24,0,0,1,3.52-8.67c1-2.14,2.25-6.34,4.09-7.83a2.66,2.66,0,0,1,1.26-.61,14.65,14.65,0,0,1,3.62-4.82c2.86-2.59,6.35-4.65,8.26-8a17.64,17.64,0,0,1,1.93-3.29c1.29-1.43,3.33-2,4.52-3.51,1.55-1.94,1.2-4.71,1-7.19s0-5.43,2.14-6.72c1.28-.79,2.93-.72,4.26-1.41,2-1,2.79-3.53,2.75-5.78s-.74-4.44-.92-6.68c-.56-7.16,4.16-14.28,2.33-21.22-.69-2.63-2.26-4.92-3.43-7.36a17.2,17.2,0,0,1-1-2.54,35.57,35.57,0,0,1-9.73,2.35c5.51-12.36,4.11-26.73,6.68-40l-.33-.46a20.71,20.71,0,0,1-4.22-11.85c0-5,2.31-9.57,3.35-14.4.88-4.12.85-8.41,2-12.45a38.32,38.32,0,0,1,3.17-7.22c1.25-2.32,2.56-4.59,3.93-6.83q1.92-6.36,3.85-12.72c1.8-6,3.65-12,7.15-17.14,1.28-1.89,1.67-5.7,3.64-6.84a8.73,8.73,0,0,1,5.2-.91c2.78-1.56,5.22-3.81,5.57-6.89a6.68,6.68,0,0,0-.2-2l-.34,0c-4.41-.41-6.63-4.29-8.92-7.68-3.71-5.51-2.29-12.95,0-19.2a13,13,0,0,1,3-5.29c3.21-3,8.29-2.34,12.43-3.79a42.64,42.64,0,0,1,4.11-1.55c2.75-.65,5.63.26,8.15,1.52s4.87,2.92,7.51,3.92,5.9,1.79,6.55,4.5a4.91,4.91,0,0,1-.23,2.73,10.18,10.18,0,0,1-3.08,4.45,17.82,17.82,0,0,1-10.87,24.83c-.76,1.21-1.47,2.46-2.12,3.73-1.16,2.24-2.14,4.88-1.75,7.28a21.37,21.37,0,0,1,2,2.44c2.87,4,4.5,8.7,6,13.38a139.66,139.66,0,0,1,4.84,18.27c2.44,5.18,5.42,10.14,7.19,15.59a35.2,35.2,0,0,0,9.38-1.25l8.44-1.92c2.93-.66,6-1.38,8.3-3.32,1.22-1,2.17-2.33,3.41-3.33s3.73-2.15,5.09-1.33a4,4,0,0,1,.69.53c1.23-2.5,9.1,7.73,3.72,8.74l.35,1c.71,2.07,2.22,4.59,1.84,6.75L997,588.21a23.19,23.19,0,0,1-7.56,1.67,12.21,12.21,0,0,1-3-.4l0,1.92v.07c-.1,13.19,2,26.3,2.39,39.48.07,2.4,0,5-1.52,6.88-1.7,2.06-4.72,2.46-7.35,2a16.65,16.65,0,0,1-1.86-.41,69.45,69.45,0,0,0-1.92,10.1l-2.49,17.76a26.45,26.45,0,0,0-.39,5.54c.29,4.18,2.5,7.94,4.1,11.81s2.55,8.5.44,12.11c-.65,1.12-1.56,2.08-2.15,3.24a13.1,13.1,0,0,0-1,5.67q-.23,8.1-.44,16.18a1.89,1.89,0,0,1,1.26.26c2.08,1.61,1.85,9.33,2,11.72.16,4,0,8.08.22,12.12a71.1,71.1,0,0,0,2.68,16.13,10.29,10.29,0,0,0,2.29,4.61,9.82,9.82,0,0,0,4.06,2.11,46.58,46.58,0,0,0,15.42,2.1c2.11-.07,4.31-.27,6.27.53s3.54,3,2.83,5c-.61,1.68-2.46,2.48-4.13,3.11a64.81,64.81,0,0,0-11,5.06,29.31,29.31,0,0,1-4.26,2.41,21.58,21.58,0,0,1-4.38,1.08l-17.72,3c-3.63.63-8,1-10.31-2-1.25-1.62-1.43-3.82-1.37-5.87.1-4,.9-8.07.37-12.07a36.46,36.46,0,0,0-1.85-6.94l-5.32-15.72c-1.78-5.27-3.58-10.58-4.27-16.1-.25-2-.23-4.27,1.3-5.52a3.54,3.54,0,0,1,1.32-.68c.06-4.82.69-9.65.42-14.47-.07-1.2-.19-2.41-.29-3.61a16.82,16.82,0,0,0-2.48,2.92c-1.7,2.67-2.33,6.21-4.94,8-2.22,1.52-5.51,1.44-7.07,3.64a10.26,10.26,0,0,0-1.12,2.71,19.6,19.6,0,0,1-4,6.35,32.91,32.91,0,0,1-2.47,6.34q-2.21,4.65-4.4,9.3c-1.57,3.32-3.15,6.64-5,9.78a27,27,0,0,0-3.35,6.46c-1.41,4.94.88,10.36,4.53,14s8.44,5.73,13.16,7.68a3.62,3.62,0,0,1,1.35.8,2.58,2.58,0,0,1,.6,1.74c0,2.31-1.89,4.29-4.07,5a15.27,15.27,0,0,1-6.83.25c-12.78-1.55-25.52-4.67-36.82-10.88a13.22,13.22,0,0,1-4.4-3.39A5.18,5.18,0,0,1,881.7,773.66Z" transform="translate(-52.64 -55.65)" fill="url(#ab747304-1bb2-44ed-8687-72ce94e318d2)"/><path d="M935.72,549.41q-3.19,4.9-6,10.06a37.17,37.17,0,0,0-3.17,7.16c-1.17,4-1.13,8.28-2,12.36-1,4.8-3.34,9.38-3.34,14.29a20.5,20.5,0,0,0,4.22,11.77,56.63,56.63,0,0,0,8.82,9.1,187.62,187.62,0,0,0,12.48-61.21c.1-2.9.11-5.9-.94-8.6-.66-1.7-3.77-6.36-5.78-4.53-.73.67-.92,3.69-1.37,4.69A36.23,36.23,0,0,1,935.72,549.41Z" transform="translate(-52.64 -55.65)" fill="#f86d70"/><path d="M935.72,549.41q-3.19,4.9-6,10.06a37.17,37.17,0,0,0-3.17,7.16c-1.17,4-1.13,8.28-2,12.36-1,4.8-3.34,9.38-3.34,14.29a20.5,20.5,0,0,0,4.22,11.77,56.63,56.63,0,0,0,8.82,9.1,187.62,187.62,0,0,0,12.48-61.21c.1-2.9.11-5.9-.94-8.6-.66-1.7-3.77-6.36-5.78-4.53-.73.67-.92,3.69-1.37,4.69A36.23,36.23,0,0,1,935.72,549.41Z" transform="translate(-52.64 -55.65)" opacity="0.1"/><path d="M1043.07,560.34c3.91-.65,8.25-.33,11.29,2.2a9.32,9.32,0,0,1,3.24,6.16c.26,2.78-1.35,6.06-4.13,6.28a13.17,13.17,0,0,1-2-.13,29.88,29.88,0,0,0-5.24.43,21.42,21.42,0,0,1-18.24-7.36c-2.38-2.94.76-4.29,3.59-4.89C1035.44,562.21,1039.21,561,1043.07,560.34Z" transform="translate(-52.64 -55.65)" fill="#fbbebe"/><path d="M976.19,650.66l-2.48,17.62a26,26,0,0,0-.38,5.5c.29,4.15,2.49,7.88,4.09,11.72s2.56,8.43.45,12c-.65,1.12-1.57,2.06-2.15,3.21a13,13,0,0,0-1,5.64l-.68,25a158.71,158.71,0,0,1-23.18-.13A1.35,1.35,0,0,1,950,731a1.38,1.38,0,0,1-.29-.91c-.34-5.85.68-11.71.35-17.56-.12-2.14-.43-4.27-.46-6.42-.13-8.71,4.18-17.24,2.88-25.86a57.35,57.35,0,0,0-1.6-6.42c-4.11-15-3.24-30.77-2.34-46.25a1.18,1.18,0,0,1,.2-.7,1.23,1.23,0,0,1,.55-.3,28.48,28.48,0,0,1,25.78,4.91c1.09.88,3.84,1.73,4.56,2.77,1,1.47-.32,2.92-.89,4.48A56.89,56.89,0,0,0,976.19,650.66Z" transform="translate(-52.64 -55.65)" fill="#3f3d56"/><path d="M976.19,650.66l-2.48,17.62a26,26,0,0,0-.38,5.5c.29,4.15,2.49,7.88,4.09,11.72s2.56,8.43.45,12c-.65,1.12-1.57,2.06-2.15,3.21a13,13,0,0,0-1,5.64l-.68,25a158.71,158.71,0,0,1-23.18-.13A1.35,1.35,0,0,1,950,731a1.38,1.38,0,0,1-.29-.91c-.34-5.85.68-11.71.35-17.56-.12-2.14-.43-4.27-.46-6.42-.13-8.71,4.18-17.24,2.88-25.86a57.35,57.35,0,0,0-1.6-6.42c-4.11-15-3.24-30.77-2.34-46.25a1.18,1.18,0,0,1,.2-.7,1.23,1.23,0,0,1,.55-.3,28.48,28.48,0,0,1,25.78,4.91c1.09.88,3.84,1.73,4.56,2.77,1,1.47-.32,2.92-.89,4.48A56.89,56.89,0,0,0,976.19,650.66Z" transform="translate(-52.64 -55.65)" opacity="0.1"/><path d="M929.82,645.34c1.17,2.43,2.74,4.7,3.43,7.31,1.83,6.89-2.88,14-2.32,21.06.18,2.23.87,4.4.92,6.63s-.77,4.71-2.75,5.73c-1.33.69-3,.62-4.25,1.4-2.11,1.28-2.35,4.22-2.14,6.67s.55,5.21-1,7.14c-1.19,1.49-3.23,2.06-4.51,3.47a17.3,17.3,0,0,0-1.94,3.27c-1.91,3.33-5.39,5.38-8.25,8s-5.28,6.46-4,10.08c.94,2.67,3.58,4.31,6.12,5.56a64.93,64.93,0,0,0,14.57,5.15,3.51,3.51,0,0,0,1.67.08,3.64,3.64,0,0,0,1.46-1c2.95-2.89,6-5.92,7.36-9.81a10.27,10.27,0,0,1,1.12-2.69c1.56-2.18,4.84-2.11,7.07-3.61,2.6-1.77,3.23-5.29,4.93-7.94,1.61-2.5,4.19-4.22,6-6.56,3-3.88,3.81-9.05,6-13.48.93-1.89,2.12-3.64,2.86-5.61a30.4,30.4,0,0,0,1.37-7.23c1.41-11.68,5-23.44,2.74-35-.5-2.55-1.27-5-1.59-7.62-.56-4.54.32-9.17-.35-13.7a3.73,3.73,0,0,0-1.51-2.9,4.18,4.18,0,0,0-1.72-.36,118.6,118.6,0,0,0-17.78.41c-3,.29-6.37.9-8.16,3.35-1.53,2.09-1.45,4.91-2,7.46-.6,3.13-2.19,4.85-3.86,7.31S928.59,642.81,929.82,645.34Z" transform="translate(-52.64 -55.65)" fill="#3f3d56"/><path d="M952.89,726.6c-1.58,0-3.33-.09-4.55.91-1.52,1.24-1.55,3.53-1.3,5.49.7,5.47,2.49,10.74,4.28,16l5.32,15.61a35.87,35.87,0,0,1,1.85,6.88c.53,4-.27,8-.37,12,0,2,.13,4.22,1.38,5.83,2.26,2.9,6.67,2.56,10.3,1.94l17.71-3a21.72,21.72,0,0,0,4.38-1.07,29.68,29.68,0,0,0,4.25-2.4,65.38,65.38,0,0,1,11-5c1.66-.62,3.52-1.42,4.12-3.09.71-2-.87-4.19-2.83-5s-4.15-.6-6.27-.53a46.72,46.72,0,0,1-15.4-2.09,9.61,9.61,0,0,1-4.06-2.09,10.12,10.12,0,0,1-2.3-4.57,71.27,71.27,0,0,1-2.68-16c-.2-4-.06-8-.22-12-.1-2.37.13-10-2-11.63-1.59-1.22-8.14,2.15-10.28,2.64A49.57,49.57,0,0,1,952.89,726.6Z" transform="translate(-52.64 -55.65)" fill="#2f2e41"/><path d="M894.54,737.72c-1.72,5.74-2,11.79-3.11,17.68s-3.1,11.91-7.47,16a9.69,9.69,0,0,0-2.17,2.4,5.06,5.06,0,0,0,.75,5.23,13.13,13.13,0,0,0,4.39,3.37c11.29,6.16,24,9.26,36.81,10.8a15.36,15.36,0,0,0,6.82-.24c2.18-.74,4.11-2.7,4.07-5a2.53,2.53,0,0,0-.6-1.72,3.73,3.73,0,0,0-1.35-.79c-4.72-1.94-9.52-4.06-13.16-7.63s-5.94-9-4.53-13.86a27.38,27.38,0,0,1,3.34-6.41,106.05,106.05,0,0,0,5-9.7l4.4-9.23c1.28-2.69,2.59-5.47,2.8-8.46a40.57,40.57,0,0,1-16.21-2.59,25.54,25.54,0,0,1-6.67-4c-1.7-1.42-3.25-4.06-5.54-2.21-1.84,1.48-3,5.64-4.09,7.76A59.48,59.48,0,0,0,894.54,737.72Z" transform="translate(-52.64 -55.65)" fill="#2f2e41"/><path d="M959,508.54c-.44,3.83-4.16,6.37-7.71,7.88l22.46,7.18c-1.45-2.78-.27-6.18,1.17-9a50.81,50.81,0,0,1,4-6.4c.22-.31.47-.71.31-1.06a1.12,1.12,0,0,0-.63-.49c-4.62-2.06-9.38-4.19-14.43-4.94-1.46-.22-4.22-.8-5.31.69S959.24,506.77,959,508.54Z" transform="translate(-52.64 -55.65)" fill="#fbbebe"/><path d="M959,508.54c-.44,3.83-4.16,6.37-7.71,7.88l22.46,7.18c-1.45-2.78-.27-6.18,1.17-9a50.81,50.81,0,0,1,4-6.4c.22-.31.47-.71.31-1.06a1.12,1.12,0,0,0-.63-.49c-4.62-2.06-9.38-4.19-14.43-4.94-1.46-.22-4.22-.8-5.31.69S959.24,506.77,959,508.54Z" transform="translate(-52.64 -55.65)" opacity="0.1"/><circle cx="919.45" cy="438.38" r="17.62" fill="#fbbebe"/><path d="M987.31,639c-1.7,2-4.71,2.44-7.34,2-6.15-1-11.19-5.53-17.2-7.16-7.38-2-15.2.57-22.16,3.71s-13.9,6.95-21.52,7.55c6.89-15.36,2.95-33.85,9.53-49.34,1.62-3.78,3.87-7.44,4.23-11.53.45-5.09-2.09-10-2.48-15.07-.36-4.51,1-9,2.29-13.29l4.83-15.85c1.8-5.9,3.65-11.91,7.14-17,1.28-1.87,1.68-5.65,3.64-6.79,4.28-2.46,10.77.65,15.41.82s8.87,3.47,11.58,7.2c2.87,3.94,4.5,8.63,6,13.27a125.22,125.22,0,0,1,5.34,21.23c.15,1.08.28,2.16.38,3.25,1,10.27-.46,20.6-.54,30.91,0,0,0,0,0,.08-.09,13.08,2,26.09,2.4,39.17C988.9,634.59,988.84,637.2,987.31,639Z" transform="translate(-52.64 -55.65)" fill="#f86d70"/><path d="M986.44,593c-3.45-.87-6.58-3.09-9.25-5.53a39,39,0,0,1-6.14-6.95,50.28,50.28,0,0,1-5.29-11.16,129.34,129.34,0,0,1-7-32.28c-.26-3-.34-6.21,1.45-8.59a7.23,7.23,0,0,1,8.74-2.13c2.37,1.16,3.9,3.49,5.31,5.71,2.82,4.43,5.65,8.9,7.46,13.82.8,2.18,1.39,4.43,2.17,6.62a61,61,0,0,0,2.74,6.33c.15,1.08.28,2.16.38,3.25C987.94,572.31,986.52,582.64,986.44,593Z" transform="translate(-52.64 -55.65)" opacity="0.1"/><path d="M960.25,526.55c-1.78,2.37-1.7,5.62-1.45,8.59a129.28,129.28,0,0,0,7,32.27,49.43,49.43,0,0,0,5.29,11.16,38.67,38.67,0,0,0,6.14,6.95c3.4,3.11,7.54,5.88,12.15,5.92a23.42,23.42,0,0,0,7.56-1.65l37.51-12.74c.38-2.15-1.13-4.64-1.84-6.7l-2-5.94c-.57-1.63-1.24-3.4-2.72-4.29s-3.85.33-5.09,1.32-2.19,2.29-3.4,3.3c-2.32,1.92-5.37,2.63-8.3,3.29l-8.43,1.9a35.6,35.6,0,0,1-9.38,1.24c-2.35-7.17-6.82-13.49-9.35-20.61-.78-2.18-1.38-4.43-2.18-6.61-1.81-4.92-4.64-9.39-7.45-13.82-1.41-2.23-2.94-4.56-5.31-5.71A7.25,7.25,0,0,0,960.25,526.55Z" transform="translate(-52.64 -55.65)" fill="#f86d70"/><path d="M966.47,498a8.9,8.9,0,0,1,1.06-3.29,2.79,2.79,0,0,1,3-1.33c1.76.55,2.35,3.28,4.19,3.37,1.24.06,2.13-1.2,2.52-2.39s.6-2.52,1.53-3.36a5.61,5.61,0,0,1,2.18-1c4.27-1.35,8.68-3.85,10.1-8.1a4.9,4.9,0,0,0,.23-2.7c-.65-2.69-4-3.5-6.55-4.48s-5-2.62-7.5-3.88-5.4-2.16-8.15-1.52a40.67,40.67,0,0,0-4.11,1.54c-4.14,1.43-9.22.77-12.43,3.75a13,13,0,0,0-3,5.25c-2.25,6.21-3.66,13.6.05,19.06,2.28,3.37,4.51,7.22,8.91,7.62C963.62,507,965.66,502.32,966.47,498Z" transform="translate(-52.64 -55.65)" fill="#2f2e41"/><g opacity="0.1"><path d="M974.29,492.24c.39-1.18.6-2.52,1.52-3.36a5.83,5.83,0,0,1,2.18-1c4.28-1.35,8.68-3.84,10.11-8.1a4.89,4.89,0,0,0,.22-2.7,3.39,3.39,0,0,0-.53-1.19c1.63.7,3.05,1.65,3.45,3.31a4.9,4.9,0,0,1-.23,2.7c-1.42,4.25-5.83,6.75-10.1,8.1a5.61,5.61,0,0,0-2.18,1c-.93.84-1.14,2.18-1.53,3.36s-1.28,2.45-2.52,2.39-1.84-1.19-2.63-2.14C973.14,494.47,973.92,493.33,974.29,492.24Z" transform="translate(-52.64 -55.65)"/><path d="M955.57,504.4c5.14.47,7.17-4.2,8-8.52a8.9,8.9,0,0,1,1.06-3.29,2.78,2.78,0,0,1,3-1.32c.95.29,1.56,1.23,2.21,2a3,3,0,0,0-2.26,1.4,8.9,8.9,0,0,0-1.06,3.29c-.81,4.32-2.85,9-8,8.52a8.2,8.2,0,0,1-5.28-2.73A7.45,7.45,0,0,0,955.57,504.4Z" transform="translate(-52.64 -55.65)"/></g><path d="M223.42,705.94l19.14-11.26a46.29,46.29,0,0,0-9.79-11.7l-36.11,11.23L225,677.57a46,46,0,0,0-68.1,40.35c0,25.4,20.59,26.29,46,26.29s46-.89,46-26.29a45.71,45.71,0,0,0-4-18.66Z" transform="translate(-52.64 -55.65)" fill="#4d0d41"/><path d="M228.29,730.64a35.81,35.81,0,0,0-6.78-5.33c-3.48-2.31-7.07-4.67-11.17-5.45-3.6-.69-7.31-.11-11-.31a25.65,25.65,0,0,1-16.81-7.71c-2.61-2.7-4.67-6-7.81-8.09-3.39-2.22-7.69-2.7-11.71-2.15a31.2,31.2,0,0,0-3.46.71,45.9,45.9,0,0,0-2.72,15.61c0,25.4,20.59,26.29,46,26.29,12.33,0,23.52-.21,31.78-3.33l-1.38-2.58A36.08,36.08,0,0,0,228.29,730.64Z" transform="translate(-52.64 -55.65)" opacity="0.1"/><path d="M636.6,770.25l-25.39-14.93a61.14,61.14,0,0,1,13-15.52l47.89,14.89-37.53-22.06a61,61,0,0,1,90.31,53.5c0,33.69-27.31,34.86-61,34.86s-61-1.17-61-34.86a60.84,60.84,0,0,1,5.23-24.75Z" transform="translate(-52.64 -55.65)" fill="#4d0d41"/><path d="M630.13,803a47.57,47.57,0,0,1,9-7.07c4.61-3.06,9.38-6.18,14.81-7.22,4.77-.91,9.69-.14,14.54-.42a34.09,34.09,0,0,0,22.3-10.21c3.46-3.59,6.19-8,10.36-10.73,4.49-3,10.19-3.59,15.52-2.85a38.27,38.27,0,0,1,4.6.94,60.88,60.88,0,0,1,3.6,20.69c0,33.69-27.31,34.86-61,34.86-16.35,0-31.19-.27-42.15-4.41l1.83-3.42C625.45,809.59,627.39,806,630.13,803Z" transform="translate(-52.64 -55.65)" opacity="0.1"/></svg>
diff --git a/site2/website/static/img/undraw_note_list.svg b/site2/website/static/img/undraw_note_list.svg
new file mode 100644
index 0000000..68c6108
--- /dev/null
+++ b/site2/website/static/img/undraw_note_list.svg
@@ -0,0 +1 @@
+<svg id="ada6f7ae-8394-4767-8700-18704e9e9034" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="974" height="805.02" viewBox="0 0 974 805.02"><title>note list</title><path d="M1087,816.24v5a19.11,19.11,0,0,1-20.91,19c-39.15-3.72-78.12-10.64-117.4-9.43-72.42,2.21-145.44,31.83-215.54,13.53-19.77-5.16-39.32-14.13-59.66-12.2-18.25,1.73-34.49,12.05-52.17,16.89C567.55,863.79,512.8,826.49,457.06,828c-36.74,1-71.92,18.89-108.62,16.9-21.27-1.14-41.53-8.92-62.28-13.71-51.66-11.94-104.86-5.27-158.09-1.13A14,14,0,0,1,113,816.13v-4.28a14,14,0,0,1,14-14l940.92-.76A19.11,19.11,0,0,1,1087,816.24Z" transform="translate(-113 -47.49)" fill="#3f3d56"/><path d="M1087,816.24v5a19.11,19.11,0,0,1-20.91,19c-39.15-3.72-78.12-10.64-117.4-9.43-72.42,2.21-145.44,31.83-215.54,13.53-19.77-5.16-39.32-14.13-59.66-12.2-18.25,1.73-34.49,12.05-52.17,16.89C567.55,863.79,512.8,826.49,457.06,828c-36.74,1-71.92,18.89-108.62,16.9-21.27-1.14-41.53-8.92-62.28-13.71-51.66-11.94-104.86-5.27-158.09-1.13A14,14,0,0,1,113,816.13v-4.28a14,14,0,0,1,14-14l940.92-.76A19.11,19.11,0,0,1,1087,816.24Z" transform="translate(-113 -47.49)" opacity="0.1"/><path d="M1087,807.1v5a20.39,20.39,0,0,1-.11,2.08,19.11,19.11,0,0,1-20.8,17c-39.15-3.73-78.12-10.65-117.4-9.44-72.42,2.22-145.44,31.84-215.54,13.53-19.77-5.16-39.32-14.13-59.66-12.2-18.25,1.73-34.49,12.05-52.17,16.9-53.77,14.72-108.52-22.58-164.26-21.08-36.74,1-71.92,18.89-108.62,16.91-21.27-1.15-41.53-8.92-62.28-13.72-51.65-11.93-104.86-5.26-158.09-1.12a14,14,0,0,1-14.86-11.5A13.7,13.7,0,0,1,113,807v-4.28a14,14,0,0,1,14-14l235.83-.19,481.81-.4,223.28-.18A19.11,19.11,0,0,1,1087,807.1Z" transform="translate(-113 -47.49)" fill="#3f3d56"/><path d="M856.59,791c0,2.21-4.36,4.33-12.4,6.32C812,805.27,721,811,613.59,811c-105.67,0-195.58-5.55-229-13.31-9-2.09-14-4.34-14-6.69,0-.82.6-1.63,1.78-2.43l481.81-.4C855.77,789.1,856.59,790,856.59,791Z" transform="translate(-113 -47.49)" opacity="0.1"/><g opacity="0.5"><rect x="552" width="402" height="121" rx="19.03" fill="#36334a"/><rect x="601" y="26" width="93" height="21" fill="#4d0d41"/><rect x="601" y="60" width="285" height="11" fill="#4d0d41" opacity="0.3"/><rect x="601" y="84" width="114" height="11" fill="#4d0d41" opacity="0.3"/></g><g opacity="0.5"><rect x="48" y="98.51" width="402" height="121" rx="19.03" fill="#36334a"/><rect x="97" y="124.51" width="93" height="21" fill="#36334a"/><rect x="97" y="158.51" width="285" height="11" fill="#36334a"/><rect x="97" y="182.51" width="114" height="11" fill="#36334a"/><rect x="48" y="98.51" width="402" height="121" rx="19.03" fill="#36334a"/><rect x="97" y="124.51" width="93" height="21" fill="#4d0d41"/><rect x="97" y="158.51" width="285" height="11" fill="#4d0d41" opacity="0.3"/><rect x="97" y="182.51" width="114" height="11" fill="#4d0d41" opacity="0.3"/></g><rect x="667.58" y="211.54" width="10.31" height="85.02" rx="2.29" fill="#3f3d56"/><rect x="324.76" y="144.93" width="5.79" height="27.99" rx="1.5" fill="#3f3d56"/><rect x="324.55" y="196.17" width="6.52" height="48.72" rx="1.69" fill="#3f3d56"/><rect x="324.65" y="261.94" width="6.21" height="49.14" rx="1.61" fill="#3f3d56"/><rect x="328.04" y="52.43" width="345.1" height="701.37" rx="35.69" fill="#3f3d56"/><rect x="467.3" y="73.38" width="48.19" height="9.79" rx="2.54" fill="#e6e8ec"/><circle cx="528.33" cy="78.27" r="5.55" fill="#e6e8ec"/><path d="M764.83,145.6v610A27.41,27.41,0,0,1,737.42,783H489.76a27.41,27.41,0,0,1-27.41-27.4v-610a27.41,27.41,0,0,1,27.41-27.41h37.06V123a22.58,22.58,0,0,0,22.57,22.57h126A22.57,22.57,0,0,0,697.91,123v-4.76h39.51A27.41,27.41,0,0,1,764.83,145.6Z" transform="translate(-113 -47.49)" fill="#36334a"/><rect x="358" y="129" width="31" height="4" fill="#3f3d56"/><rect x="358" y="136" width="31" height="4" fill="#3f3d56"/><rect x="358" y="143" width="31" height="4" fill="#3f3d56"/><rect x="358" y="129" width="31" height="4" fill="#3f3d56"/><rect x="358" y="136" width="31" height="4" fill="#3f3d56"/><rect x="358" y="143" width="31" height="4" fill="#3f3d56"/><path d="M750.66,186.49h-.91l-.35-.29a7.61,7.61,0,0,0,1.78-4.89,7.44,7.44,0,1,0-7.4,7.48,7.73,7.73,0,0,0,4.88-1.78l.34.29v.92l5.74,5.75,1.72-1.72Zm-6.88,0a5.18,5.18,0,1,1,5.16-5.18A5.15,5.15,0,0,1,743.78,186.49Z" transform="translate(-113 -47.49)" fill="#3f3d56"/><rect x="358" y="200" width="93" height="21" fill="#4d0d41"/><rect x="358" y="234" width="285" height="11" fill="#4d0d41" opacity="0.3"/><rect x="358" y="258" width="114" height="11" fill="#4d0d41" opacity="0.3"/><rect x="358" y="444" width="93" height="21" fill="#4d0d41"/><rect x="358" y="478" width="285" height="11" fill="#4d0d41" opacity="0.3"/><rect x="358" y="502" width="114" height="11" fill="#4d0d41" opacity="0.3"/><rect x="358" y="566" width="93" height="21" fill="#4d0d41"/><rect x="358" y="600" width="285" height="11" fill="#4d0d41" opacity="0.3"/><rect x="358" y="624" width="114" height="11" fill="#4d0d41" opacity="0.3"/><circle cx="592" cy="676" r="34" fill="#4d0d41"/><path d="M722.33,720.81v16.43a1.25,1.25,0,0,1-1.25,1.25h-33.5a1.25,1.25,0,0,1-1.25-1.25V711.07a1.25,1.25,0,0,1,1.25-1.25h23.31" transform="translate(-113 -47.49)" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10"/><line x1="579.67" y1="672" x2="602.33" y2="672" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10"/><line x1="580" y1="676.67" x2="602.67" y2="676.67" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10"/><line x1="580.33" y1="681.33" x2="603" y2="681.33" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10"/><line x1="605" y1="661" x2="605" y2="672.33" fill="none" stroke="#f0f" stroke-miterlimit="10"/><line x1="610.67" y1="666.67" x2="599.33" y2="666.67" fill="none" stroke="#f0f" stroke-miterlimit="10"/><line x1="605" y1="661" x2="605" y2="672.33" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10"/><line x1="610.67" y1="666.67" x2="599.33" y2="666.67" fill="none" stroke="#fff" stroke-linecap="round" stroke-miterlimit="10"/><path d="M1001.6,792.66c3-5.51-.4-12.27-4.29-17.18s-8.61-10-8.51-16.29c.15-9,9.7-14.31,17.33-19.09a84,84,0,0,0,15.56-12.51,22.8,22.8,0,0,0,4.78-6.4c1.58-3.52,1.54-7.52,1.44-11.37q-.51-19.26-1.91-38.49" transform="translate(-113 -47.49)" fill="none" stroke="#3f3d56" stroke-miterlimit="10" stroke-width="4"/><path d="M1040.51,670.63a14,14,0,0,0-7-11.5l-3.14,6.22.1-7.53a14.22,14.22,0,0,0-4.63-.56,14,14,0,1,0,14.68,13.37Z" transform="translate(-113 -47.49)" fill="#57b894"/><path d="M1015.48,765.62a14,14,0,1,1,.68-11.3l-8.77,7.13,9.65-2.23A14,14,0,0,1,1015.48,765.62Z" transform="translate(-113 -47.49)" fill="#57b894"/><path d="M1008.55,738.37a14,14,0,0,1-4.45-27.53l-.08,5.78,3.18-6.29h0a14,14,0,0,1,14.67,13.36,13.84,13.84,0,0,1-.6,4.79A14,14,0,0,1,1008.55,738.37Z" transform="translate(-113 -47.49)" fill="#57b894"/><path d="M1042.62,715.7a14,14,0,1,1,6.21-26.27l-2.48,6.8,5.1-4.9A14,14,0,0,1,1056,701a13.79,13.79,0,0,1-.35,3.87A14,14,0,0,1,1042.62,715.7Z" transform="translate(-113 -47.49)" fill="#57b894"/><path d="M1038.62,674.37c-3.24.35-6.39,1.36-9.64,1.56s-6.82-.57-8.88-3.1c-1.1-1.36-1.66-3.08-2.59-4.57a10,10,0,0,0-3.54-3.33,14,14,0,1,0,26.24,9.32Q1039.42,674.28,1038.62,674.37Z" transform="translate(-113 -47.49)" opacity="0.1"/><path d="M1042.62,715.7a14,14,0,0,1-13.35-20,10.37,10.37,0,0,1,2.82,2.82c1,1.51,1.61,3.26,2.78,4.64,2.19,2.57,5.92,3.41,9.31,3.26s6.66-1.12,10-1.43c.47,0,.94-.07,1.42-.08A14,14,0,0,1,1042.62,715.7Z" transform="translate(-113 -47.49)" opacity="0.1"/><path d="M1008.55,738.37a14,14,0,0,1-13.46-19.76,11.48,11.48,0,0,1,3,2.85c1.09,1.54,1.77,3.32,3.05,4.74,2.37,2.63,6.35,3.56,9.93,3.48s6.83-.93,10.28-1.2A14,14,0,0,1,1008.55,738.37Z" transform="translate(-113 -47.49)" opacity="0.1"/><path d="M1015.48,765.62a14,14,0,0,1-25.59-11.45,13.84,13.84,0,0,1,3.08,2.75c1.34,1.62,2.22,3.47,3.76,5,2.87,2.82,7.5,4,11.63,4.09A60,60,0,0,0,1015.48,765.62Z" transform="translate(-113 -47.49)" opacity="0.1"/><path d="M980.43,786.31s11.08-.34,14.42-2.72,17-5.21,17.86-1.4,16.65,19,4.15,19.06-29.06-1.94-32.4-4S980.43,786.31,980.43,786.31Z" transform="translate(-113 -47.49)" fill="#656380"/><path d="M1017.08,799.93c-12.51.1-29.06-1.95-32.39-4-2.54-1.55-3.55-7.09-3.89-9.65h-.37s.7,8.94,4,11,19.89,4.07,32.4,4c3.61,0,4.85-1.31,4.78-3.21C1021.14,799.19,1019.77,799.9,1017.08,799.93Z" transform="translate(-113 -47.49)" opacity="0.2"/><path d="M755,378.52v82.94a19,19,0,0,1-19,19H462.35v-121H736A19,19,0,0,1,755,378.52Z" transform="translate(-113 -47.49)" fill="#3f3d56"/><rect x="208" y="295" width="402" height="121" rx="19.03" fill="#f2f2f2"/><rect x="208" y="295" width="402" height="121" rx="19.03" fill="#f2f2f2"/><rect x="257" y="321" width="93" height="21" fill="#4d0d41"/><rect x="257" y="355" width="285" height="11" fill="#4d0d41" opacity="0.3"/><rect x="257" y="379" width="114" height="11" fill="#4d0d41" opacity="0.3"/><circle cx="92.34" cy="246.84" r="35.75" fill="#3f3d56"/><path d="M184.6,572.43c3.69,25.89-.81,52.29-7.82,77.48-1.31,4.69-2.72,9.42-5.17,13.63s-5.86,7.83-8.74,11.79c-6,8.26-9.52,18-12.81,27.64a779.65,779.65,0,0,0-22.82,81.32,5.57,5.57,0,0,0,0,3.47c.87,2,3.51,2.26,5.68,2.25l28.06-.15c1-1.92-.85-4-2-5.84-4-6.22-.16-14.3,3.37-20.81a223.74,223.74,0,0,0,19.78-50c1.92-7.33,3.48-14.82,6.6-21.73,3.77-8.38,9.68-15.59,14.48-23.43,5.58-9.11,9.65-19,13.69-28.93,5.64-13.78,11.33-27.73,13.55-42.45,2.09-13.82,1.06-27.9-.3-41.81a2.64,2.64,0,0,0-3.06-3l-37.65-1.94c-7.76-.4-9.6-2.1-8.42,5.52C181.84,561.13,183.78,566.67,184.6,572.43Z" transform="translate(-113 -47.49)" fill="#3f3d56"/><path d="M184.6,572.43c3.69,25.89-.81,52.29-7.82,77.48-1.31,4.69-2.72,9.42-5.17,13.63s-5.86,7.83-8.74,11.79c-6,8.26-9.52,18-12.81,27.64a779.65,779.65,0,0,0-22.82,81.32,5.57,5.57,0,0,0,0,3.47c.87,2,3.51,2.26,5.68,2.25l28.06-.15c1-1.92-.85-4-2-5.84-4-6.22-.16-14.3,3.37-20.81a223.74,223.74,0,0,0,19.78-50c1.92-7.33,3.48-14.82,6.6-21.73,3.77-8.38,9.68-15.59,14.48-23.43,5.58-9.11,9.65-19,13.69-28.93,5.64-13.78,11.33-27.73,13.55-42.45,2.09-13.82,1.06-27.9-.3-41.81a2.64,2.64,0,0,0-3.06-3l-37.65-1.94c-7.76-.4-9.6-2.1-8.42,5.52C181.84,561.13,183.78,566.67,184.6,572.43Z" transform="translate(-113 -47.49)" opacity="0.1"/><path d="M192,509.48c-7.65,11-15.67,23.66-13.13,36.83,1.93,10,9.55,17.75,16.74,25,28.74,28.86,57,60.92,66.78,100.47,2.52,10.22,3.74,20.71,5.91,31,3.94,18.7,11,36.58,18,54.35l18.72,47.38a28.36,28.36,0,0,0,27.1-18c-2.46-.19-5.67-2.57-7.11-4.57-8-11.07-9.64-25.31-11.69-38.81-2.27-14.92-5.3-29.72-8.34-44.51L291.58,633.2c-1.55-7.55-3.1-15.11-5.12-22.54-7.82-28.83-22.64-56-24.93-85.81-.34-4.38-.55-9.19-3.52-12.44-3.12-3.43-8.24-4-12.87-4.27C226.41,506.9,210.25,505.07,192,509.48Z" transform="translate(-113 -47.49)" fill="#3f3d56"/><path d="M141.47,783.62a29.86,29.86,0,0,0-6.22-.8,12.92,12.92,0,0,0-10.16,5.55,25.25,25.25,0,0,0-2.73,6l-2.71,7.78c-.8,2.28-1.58,4.91-.39,7A7.42,7.42,0,0,0,122.9,812c6.56,2.92,13.95,3.08,21.1,3.78,6.94.68,13.82,1.9,20.67,3.19,2.36.44,4.71.89,7.1,1.13,5.34.54,10.72,0,16.06-.48l5.51-.53a19.84,19.84,0,0,0,5.42-1,6.83,6.83,0,0,0,4-3.59c1.36-3.37-1.56-7.36-5.13-8-1.45-.29-2.95-.16-4.42-.35a20.88,20.88,0,0,1-4.84-1.45c-7.05-2.77-14.17-5.57-20.37-9.93-1.72-1.21-3.52-2.9-3.33-5a10.19,10.19,0,0,1,.89-2.59,9.46,9.46,0,0,0,.08-6.69c-.34-.92-1-1.89-1.93-2-2.64-.32-2.32,3.53-2.71,5-.53,2-1.49,2.18-3.37,2C152.23,784.91,146.83,784.64,141.47,783.62Z" transform="translate(-113 -47.49)" fill="#f2f2f2"/><path d="M299.34,810.45a17.65,17.65,0,0,0,3.82,10.75,8.36,8.36,0,0,0,2.72,2.19,10.92,10.92,0,0,0,4.95.79,40.05,40.05,0,0,0,13.89-2.81,39.7,39.7,0,0,1,4.8-1.81,53.88,53.88,0,0,1,6.24-.9c8.27-1.19,15.53-6.07,23.52-8.54a49.45,49.45,0,0,0,7-2.3c3.16-1.49,5.72-4,8.23-6.43a19.89,19.89,0,0,0,3.78-4.52c1.47-2.74,1.56-6,1.62-9.1a2.59,2.59,0,0,0-.24-1.41,2.1,2.1,0,0,0-.9-.71c-2.43-1.2-5.31-.6-8-.13-9.72,1.73-19.67,1.41-29.54,1.09a4.29,4.29,0,0,1-4.54-2.59l-3.75-6c-1.07-1.72-2.77-3.69-4.71-3.1-1.55.47-2.18,2.37-2.12,4s.56,3.25.25,4.84a6.61,6.61,0,0,1-3.2,4.16,20.44,20.44,0,0,1-5,1.92c-5.52,1.56-11.94,3.33-16.21,7.39C298.86,800.15,299.15,806.6,299.34,810.45Z" transform="translate(-113 -47.49)" fill="#f2f2f2"/><path d="M297.4,413.75a23.17,23.17,0,0,0,5.46-5.94,24.21,24.21,0,0,0,2.33-8.21l1.57-9.92c.87-5.47,1.89-11.26,5.54-15.43s10.92-5.66,14.63-1.54c1.62,1.79,2.26,4.25,2.66,6.64a48.34,48.34,0,0,1-11.82,40c-4.49,4.92-10,8.83-14.75,13.48-4.14,4-7.73,8.59-11.55,12.94A159.42,159.42,0,0,1,260,473.27c.14-7.44,1.09-15.42,0-22.81-.81-5.34-3-8.22,2.17-11.71C274.17,430.59,286.28,423.21,297.4,413.75Z" transform="translate(-113 -47.49)" fill="#fbbebe"/><path d="M196.56,340.57c-.39,5.32-2.6,10.76-7,13.83q18.69,6.54,36.87,14.42c-2.34-2.25-3.05-5.7-3.16-8.94-.31-8.47,2.62-16.8,6.9-24.1a5.85,5.85,0,0,0,1.13-3.18c-.14-2.36-2.94-3.45-5.24-4a128.86,128.86,0,0,0-23.92-3.47c-3.45-.11-7.54-1.2-6.76,3.19C196.12,332.42,196.87,336.42,196.56,340.57Z" transform="translate(-113 -47.49)" fill="#fbbebe"/><circle cx="107.66" cy="266.7" r="29.23" fill="#fbbebe"/><path d="M249.6,393.14a35.36,35.36,0,0,0-3.71-6.22c-5.3-7.61-10.74-15.21-17.54-21.51a109.19,109.19,0,0,0-16.65-12.23,37.79,37.79,0,0,0-10.42-5,40.77,40.77,0,0,0-6.69-.91l-7.59-.62a6.21,6.21,0,0,0-2,.06c-2.06.52-3,3.08-2.56,5.15s2,3.75,3.38,5.32c.34,15.49-6.55,30.77-7.48,46.24-1.63,27,14.88,52.21,16.2,79.28a8.55,8.55,0,0,1-.38,3.63c-.22.56-.55,1.07-.8,1.62-.78,1.7-.75,3.63-.89,5.5a27.94,27.94,0,0,1-8.23,17.62,12.23,12.23,0,0,0,4.64,3.54c3.19,1.39,7,1.51,10.39,2.48,8.84,2.58,17.9,5.18,27.09,4.63a23.9,23.9,0,0,0,2.09-7.87c1.3-.81,2.8.92,3,2.44s-.09,3.29,1,4.39,2.47.93,3.8.76c5.61-.71,11-2.6,16.5-3.87s11.38-1.88,16.73-.06c1.08-1.37.62-3.4-.26-4.9s-2.13-2.82-2.63-4.49a10.08,10.08,0,0,1-.32-2.95c0-8.55,1.76-17.19.09-25.58-.49-2.46-1.27-4.86-1.77-7.33-1-4.79-.85-9.73-.72-14.62s-.46-10.18-.56-15.14a48.29,48.29,0,0,0-.4-6.13c-.34-2.13-1-4.21-1.18-6.36-.54-5.46,1.66-10.88,1.33-16.36C262.51,405.33,252.84,400.81,249.6,393.14Z" transform="translate(-113 -47.49)" fill="#ff6584"/><path d="M183.63,389.22c-7.08,18.78-10.54,38.7-14,58.48l-8,46.46c-2.27,13.13-4.55,26.34-4.46,39.66,0,3.74.24,7.55-.74,11.16-1.28,4.74-4.46,8.69-6.87,13a42.78,42.78,0,0,0-4.6,28.93c.82,4.15,3.06,8.86,7.27,9.34,3.46.38,6.45-2.37,8.47-5.21,4.64-6.51,6.94-14.37,9-22.11a500.11,500.11,0,0,0,13.87-77.09,75.06,75.06,0,0,1,1.39-9.8,69.54,69.54,0,0,1,3.38-9.76q4.59-11.38,9.19-22.76c7.07-17.53,14.18-35.14,23.89-51.36-9.6-2.76-19.59-6-29.19-8.73C189.46,388.61,186.49,389.1,183.63,389.22Z" transform="translate(-113 -47.49)" fill="#fbbebe"/><path d="M200.27,403.46c-6.72-1.45-13.67-1-20.53-1.17a4.43,4.43,0,0,1-2.76-.72c-1.39-1.19-.8-3.42-.1-5.11l3.32-8a11.64,11.64,0,0,1,2.66-4.42c1.69-1.5,4.07-1.87,6.31-2.14,7.29-.84,14.79-1.12,21.86.85s13.72,6.45,16.88,13.08c1.32,2.76,1.93,6.24.18,8.75-2.6,3.73-8.43,7.9-12.78,5.86C210.1,408,206.11,404.73,200.27,403.46Z" transform="translate(-113 -47.49)" fill="#ff6584"/><path d="M236,268.79a29.52,29.52,0,0,0-16.28,4.69,35.75,35.75,0,0,0-35.1-8.22A20.43,20.43,0,1,0,161,288.91,35.75,35.75,0,1,0,229.57,309a32,32,0,0,0,6.41.65c14.1,0,25.54-9.15,25.54-20.43S250.08,268.79,236,268.79Z" transform="translate(-113 -47.49)" fill="#3f3d56"/><path d="M241.09,299.43a31.1,31.1,0,0,1-6.41-.65A35.57,35.57,0,0,1,230,309.07a32.11,32.11,0,0,0,6,.58c13.18,0,24-8,25.39-18.24C256.7,296.29,249.35,299.43,241.09,299.43Z" transform="translate(-113 -47.49)" opacity="0.1"/><path d="M200.23,325a35.8,35.8,0,0,1-34.18-46.28,20.43,20.43,0,0,1-16.89-20.12,20.09,20.09,0,0,1,.33-3.66,20.43,20.43,0,0,0,11.46,34,35.75,35.75,0,0,0,68.29,21.18A35.68,35.68,0,0,1,200.23,325Z" transform="translate(-113 -47.49)" opacity="0.1"/></svg>
diff --git a/site2/website/static/img/undraw_online.svg b/site2/website/static/img/undraw_online.svg
new file mode 100644
index 0000000..83d08f6
--- /dev/null
+++ b/site2/website/static/img/undraw_online.svg
@@ -0,0 +1 @@
+<svg id="f9ea829a-01ef-4860-a3a7-641ca853f294" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1082.19" height="847.94" viewBox="0 0 1082.19 847.94"><defs><linearGradient id="0bbd7947-ca61-424a-a753-fb567ef3345a" x1="276.42" y1="818" x2="276.42" y2="60" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="gray" stop-opacity="0.25"/><stop offset="0.54" stop-color="gray" stop-opacity="0.12"/><stop offset="1" stop-color="gray" stop-opacity="0.1"/></linearGradient><linearGradient id="7762d21b-e061-4c19-a9a4-793dedfcbc4f" x1="891.13" y1="675.02" x2="891.13" y2="214.93" gradientTransform="matrix(-1, 0, 0, 1, 1114, 0)" xlink:href="#0bbd7947-ca61-424a-a753-fb567ef3345a"/></defs><title>online</title><path d="M968.1,62.19c37.27,12.37,51.62,19.46,88.51,32.93,15.11,5.52,30.64,11.41,42.27,22.52,12.21,11.67,18.87,27.95,23.58,44.17,10.1,34.82,12.19,74.1-5.42,105.79-16.11,29-47.49,49.78-54.54,82.18-5.2,23.89,4.26,48.17,8.9,72.17a184.8,184.8,0,0,1-6.35,93.79c-9.69,28.64-28.59,56.43-57.16,66.3-33.23,11.47-69.43-3.86-104.57-2.76-39.43,1.24-75.24,23.14-105.67,48.24S739.76,681.76,706,702.07c-34.43,20.69-73.83,31.26-112.65,41.6-21.59,5.75-43.41,11.53-65.74,12.27-24.69.82-49.33-4.61-72.37-13.54-42.71-16.54-80.4-45.17-109.34-80.67-16.84-20.65-31.41-47.31-24.05-72.91,5.35-18.6,21-32,33-47.17,31.94-40.17,38.93-98.64,17.36-145.21-10.93-23.6-28.17-43.58-43.46-64.62s-29.13-44.43-31.5-70.33,9.64-54.65,33.65-64.64c29.45-12.24,71.25,3.84,90.26-21.78,7.2-9.71,8.12-22.5,10.32-34.38C443.19,77.71,503,27.15,567,26.05c49.92-.86,97,24.71,146.85,27.07C763.94,55.49,814.81,34.39,863.31,47,881.1,51.69,897.48,60.69,915.1,66s38,6.31,53.18-4.07" transform="translate(-58.9 -26.03)" fill="#4d0d41" opacity="0.1"/><rect x="492.93" y="182.79" width="437.49" height="30.27" fill="#4d0d41" opacity="0.1"/><rect x="492.93" y="313.49" width="437.49" height="30.27" fill="#4d0d41" opacity="0.1"/><rect x="492.93" y="449.69" width="437.49" height="30.27" fill="#4d0d41" opacity="0.1"/><rect x="655.27" y="104.38" width="27.51" height="78.42" fill="#4d0d41" opacity="0.1"/><rect x="655.27" y="116.76" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="655.27" y="159.41" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="696.55" y="104.38" width="27.51" height="78.42" fill="#4d0d41" opacity="0.1"/><rect x="696.55" y="116.76" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="696.55" y="159.41" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="737.82" y="104.38" width="27.51" height="78.42" fill="#4d0d41" opacity="0.1"/><rect x="737.82" y="116.76" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="737.82" y="159.41" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="779.09" y="104.38" width="27.51" height="78.42" fill="#4d0d41" opacity="0.1"/><rect x="779.09" y="116.76" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="779.09" y="159.41" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="840.74" y="397.3" width="27.51" height="78.42" transform="translate(-163.91 403.24) rotate(-26.63)" fill="#4d0d41" opacity="0.1"/><rect x="829.95" y="412.24" width="27.51" height="5.5" transform="translate(-155.41 396.12) rotate(-26.63)" fill="#4d0d41" opacity="0.1"/><rect x="849.07" y="450.36" width="27.51" height="5.5" transform="translate(-170.47 408.73) rotate(-26.63)" fill="#4d0d41" opacity="0.1"/><rect x="785.97" y="236.45" width="27.51" height="78.42" fill="#4d0d41" opacity="0.1"/><rect x="785.97" y="248.83" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="785.97" y="291.48" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="827.24" y="236.45" width="27.51" height="78.42" fill="#4d0d41" opacity="0.1"/><rect x="827.24" y="248.83" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="827.24" y="291.48" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="868.51" y="236.45" width="27.51" height="78.42" fill="#4d0d41" opacity="0.1"/><rect x="868.51" y="248.83" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="868.51" y="291.48" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="531.46" y="371.27" width="27.51" height="78.42" fill="#4d0d41" opacity="0.1"/><rect x="531.46" y="383.65" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="531.46" y="426.3" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="572.73" y="371.27" width="27.51" height="78.42" fill="#4d0d41" opacity="0.1"/><rect x="572.73" y="383.65" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="572.73" y="426.3" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="614" y="371.27" width="27.51" height="78.42" fill="#4d0d41" opacity="0.1"/><rect x="614" y="383.65" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="614" y="426.3" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="655.27" y="371.27" width="27.51" height="78.42" fill="#4d0d41" opacity="0.1"/><rect x="655.27" y="383.65" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="655.27" y="426.3" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="696.55" y="371.27" width="27.51" height="78.42" fill="#4d0d41" opacity="0.1"/><rect x="696.55" y="383.65" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="696.55" y="426.3" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="737.82" y="371.27" width="27.51" height="78.42" fill="#4d0d41" opacity="0.1"/><rect x="737.82" y="383.65" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><rect x="737.82" y="426.3" width="27.51" height="5.5" fill="#4d0d41" opacity="0.1"/><g opacity="0.1"><path d="M756,312.39s-8.34-2.83-12.36,4.52a13.41,13.41,0,0,0,.18,12.91c2.64,4.77,8.07,11,18.37,10.41,8.73-.47,11.64-7.13,12.43-13.33a13.7,13.7,0,0,0-18.19-14.66Z" transform="translate(-58.9 -26.03)" fill="#4d0d41"/><path d="M745.56,330.48a13.41,13.41,0,0,1-.18-12.91c4-7.35,12.36-4.52,12.36-4.52l.43-.15a13.57,13.57,0,0,1,9.8.22,13.58,13.58,0,0,0-11.57-1.1l-.43.15s-8.34-2.83-12.36,4.52a13.41,13.41,0,0,0,.18,12.91,20,20,0,0,0,9.43,8.93A20.68,20.68,0,0,1,745.56,330.48Z" transform="translate(-58.9 -26.03)" fill="#4d0d41" opacity="0.1"/><path d="M751.67,315.92s3.09,2.43,10.61,0" transform="translate(-58.9 -26.03)" fill="#4d0d41" opacity="0.2"/><path d="M751,298.25s5.3,14.36,4.86,18.12l4.2-.44s-7.07-12.59-5.3-17.68Z" transform="translate(-58.9 -26.03)" fill="#4d0d41"/><path d="M751,298.25s5.3,14.36,4.86,18.12l4.2-.44s-7.07-12.59-5.3-17.68Z" transform="translate(-58.9 -26.03)" fill="#4d0d41" opacity="0.2"/><path d="M772.65,299.45s-8.35-4.27-12.08-.74-4.31,12.54-4.31,12.54S769.87,313.12,772.65,299.45Z" transform="translate(-58.9 -26.03)" fill="#4d0d41"/><path d="M772.65,299.45s-8.35-4.27-12.08-.74-4.31,12.54-4.31,12.54S769.87,313.12,772.65,299.45Z" transform="translate(-58.9 -26.03)" fill="#4d0d41" opacity="0.1"/><path d="M756.26,311.25s2.19-10.46,16.39-11.8" transform="translate(-58.9 -26.03)" fill="#4d0d41"/></g><g opacity="0.1"><path d="M932.07,448.59s-8.34-2.83-12.36,4.52a13.41,13.41,0,0,0,.18,12.91c2.64,4.77,8.07,11,18.37,10.41,8.73-.47,11.64-7.13,12.43-13.33a13.7,13.7,0,0,0-18.19-14.66Z" transform="translate(-58.9 -26.03)" fill="#4d0d41"/><path d="M921.66,466.68a13.41,13.41,0,0,1-.18-12.91c4-7.35,12.36-4.52,12.36-4.52l.43-.15a13.57,13.57,0,0,1,9.8.22,13.58,13.58,0,0,0-11.57-1.1l-.43.15s-8.34-2.83-12.36,4.52a13.41,13.41,0,0,0,.18,12.91,20,20,0,0,0,9.43,8.93A20.68,20.68,0,0,1,921.66,466.68Z" transform="translate(-58.9 -26.03)" fill="#4d0d41" opacity="0.1"/><path d="M927.76,452.12s3.09,2.43,10.61,0" transform="translate(-58.9 -26.03)" fill="#4d0d41" opacity="0.2"/><path d="M927.1,434.45s5.3,14.36,4.86,18.12l4.2-.44s-7.07-12.59-5.3-17.68Z" transform="translate(-58.9 -26.03)" fill="#4d0d41"/><path d="M927.1,434.45s5.3,14.36,4.86,18.12l4.2-.44s-7.07-12.59-5.3-17.68Z" transform="translate(-58.9 -26.03)" fill="#4d0d41" opacity="0.2"/><path d="M948.74,435.65s-8.35-4.27-12.08-.74-4.31,12.54-4.31,12.54S946,449.32,948.74,435.65Z" transform="translate(-58.9 -26.03)" fill="#4d0d41"/><path d="M948.74,435.65s-8.35-4.27-12.08-.74-4.31,12.54-4.31,12.54S946,449.32,948.74,435.65Z" transform="translate(-58.9 -26.03)" fill="#4d0d41" opacity="0.1"/><path d="M932.36,447.44s2.19-10.46,16.39-11.8" transform="translate(-58.9 -26.03)" fill="#4d0d41"/></g><path d="M92.56,775S225.1,902.19,591.1,868.19s512-12,512-12,66-64-23-93-313-17-383-17-215-35-215-35Z" transform="translate(-58.9 -26.03)" fill="#4d0d41"/><path d="M1039.46,807.24s-21.72-110.07,23-185.51c18.77-31.66,27.41-68.35,23.45-104.94a285.89,285.89,0,0,0-10.46-51.23" transform="translate(-58.9 -26.03)" fill="none" stroke="#535461" stroke-miterlimit="10" stroke-width="2"/><path d="M1103.36,417.85c-1.21,13.13-28.49,49-28.49,49s-20.28-40.27-19.08-53.41a23.88,23.88,0,1,1,47.56,4.37Z" transform="translate(-58.9 -26.03)" fill="#4d0d41"/><path d="M1136,494.22c-8.15,10.37-50.57,25.68-50.57,25.68s4.86-44.83,13-55.2A23.88,23.88,0,1,1,1136,494.22Z" transform="translate(-58.9 -26.03)" fill="#4d0d41"/><path d="M1122.85,618.39c-12.27,4.84-56.61-3.36-56.61-3.36s26.83-36.24,39.1-41.08a23.88,23.88,0,1,1,17.51,44.44Z" transform="translate(-58.9 -26.03)" fill="#4d0d41"/><path d="M1091.75,710.1c-11.28,6.84-56.37,6.26-56.37,6.26s20.32-40.26,31.59-47.1a23.88,23.88,0,0,1,24.77,40.84Z" transform="translate(-58.9 -26.03)" fill="#4d0d41"/><path d="M1035.25,517.86c8.58,10,51.6,23.53,51.6,23.53s-6.74-44.59-15.32-54.6a23.88,23.88,0,1,0-36.28,31.07Z" transform="translate(-58.9 -26.03)" fill="#4d0d41"/><path d="M1000.25,625.58c11.18,7,56.28,7,56.28,7s-19.78-40.53-31-47.52a23.88,23.88,0,0,0-25.32,40.5Z" transform="translate(-58.9 -26.03)" fill="#4d0d41"/><path d="M980.59,734.95c9.84,8.78,54.28,16.42,54.28,16.42s-12.64-43.28-22.49-52.07a23.88,23.88,0,1,0-31.8,35.64Z" transform="translate(-58.9 -26.03)" fill="#4d0d41"/><path d="M905.94,186l-14.77-6.14,19.76-47.55,14.77,6.14ZM921,128.86a9.31,9.31,0,1,1,12.14-5.08A9.34,9.34,0,0,1,921,128.86Zm40.21,80.08-14.74-6.12,9.62-23.15c2.29-5.52,5.12-12.64-2.45-15.78s-11.35,2.31-13.92,8.51l-9.78,23.54-14.75-6.13,19.76-47.55,14.16,5.89-2.7,6.49.21.09c3.52-2.92,10-4.86,17.16-1.87,14.94,6.21,13.6,17.19,8.29,30l-10.85,26.12Z" transform="translate(-58.9 -26.03)" fill="#4d0d41" opacity="0.1"/><path d="M595.58,121.14l-5.87,15v61.28h20.86v11.07h11.74l11.07-11.07h17l22.81-22.81V121.14Zm69.76,49.54-13,13H631.43L620.36,194.8V183.73H602.75V129h62.58Zm-13-26.73v22.79h-7.82V144Zm-20.86,0v22.79h-7.82V144Z" transform="translate(-58.9 -26.03)" fill="#4d0d41" opacity="0.1"/><path d="M493.89,695.71l-.47-40.27v-1.18l-6.35-540.39c0-.66,0-1.31-.06-2a53.87,53.87,0,0,0-2.15-12.74c-.1-.33-.19-.65-.29-1s-.2-.61-.31-.92-.26-.77-.4-1.15-.21-.55-.31-.83-.31-.8-.47-1.2l-.33-.78c-.17-.41-.35-.81-.53-1.21l-.35-.74q-.29-.6-.59-1.2l-.37-.72q-.31-.59-.64-1.18l-.39-.7c-.23-.39-.46-.78-.69-1.16l-.41-.67c-.25-.39-.5-.78-.76-1.16L477.6,84c-.28-.41-.57-.81-.86-1.21l-.37-.51q-.63-.85-1.3-1.67A55.29,55.29,0,0,0,428.68,60.1l-274,16.12a55.49,55.49,0,0,0-18.42,4.29C96.48,92.68,58,119.1,58.92,166.86L69.23,725c.85,46.12,39.53,83,84.46,90.81a55.35,55.35,0,0,0,28.09.75l269.61-62.4a54.65,54.65,0,0,0,42.55-53.71Z" transform="translate(-58.9 -26.03)" fill="url(#0bbd7947-ca61-424a-a753-fb567ef3345a)"/><path d="M63.57,173.93,73.66,726.16c.94,51.45,48.94,91.34,99.71,91.34h0L150.66,85.33l-2,.51C106.65,96.45,62.64,122.86,63.57,173.93Z" transform="translate(-58.9 -26.03)" fill="#535461"/><path d="M63.57,173.93,73.66,726.16c.94,51.45,48.94,91.34,99.71,91.34h0L150.66,85.33l-2,.51C106.65,96.45,62.64,122.86,63.57,173.93Z" transform="translate(-58.9 -26.03)" opacity="0.1"/><path d="M489.29,701.87A54,54,0,0,1,447.65,755L183.8,816.75a53.93,53.93,0,0,1-66.22-51.56l-.8-45.88v-.46l-2.5-141.19-7.59-430.05-.16-8.59a53.94,53.94,0,0,1,50.73-54.78L425.43,68.29a53.89,53.89,0,0,1,57,50c.09,1.05.13,2.13.14,3.21l6.21,534.69,0,2.76.45,38.25Z" transform="translate(-58.9 -26.03)" fill="#4d0d41"/><path d="M489.29,701.87A54,54,0,0,1,447.65,755L183.8,816.75a53.93,53.93,0,0,1-66.22-51.56l-.8-45.88v-.46l-2.5-141.19-7.59-430.05-.16-8.59a53.94,53.94,0,0,1,50.73-54.78L425.43,68.29a53.89,53.89,0,0,1,57,50c.09,1.05.13,2.13.14,3.21l6.21,534.69,0,2.76.45,38.25Z" transform="translate(-58.9 -26.03)" opacity="0.1"/><path d="M489.24,697.2,249,722.77,230.6,109.67,470.82,88.53a53.65,53.65,0,0,1,11.74,33Z" transform="translate(-58.9 -26.03)" fill="#4d0d41"/><polygon points="429.89 632.92 57.87 692.82 55.37 551.64 185.24 534.27 429.89 632.92" fill="#4d0d41"/><polygon points="429.89 632.92 57.87 692.82 55.37 551.64 185.24 534.27 429.89 632.92" fill="#fff" opacity="0.1"/><path d="M489.29,701.87A54,54,0,0,1,447.65,755L183.8,816.75a53.93,53.93,0,0,1-66.22-51.56l-.8-45.88,372-63.13,0,2.76.45,38.25Z" transform="translate(-58.9 -26.03)" fill="#535461"/><path d="M482.41,118.29,106.68,147.61l-.16-8.59a53.94,53.94,0,0,1,50.73-54.78L425.43,68.29a53.89,53.89,0,0,1,57,50Z" transform="translate(-58.9 -26.03)" fill="#535461"/><circle cx="262.48" cy="711.22" r="26.31" fill="#fff"/><polygon points="271.69 78.69 226.96 81.01 226.96 78.38 271.69 76.06 271.69 78.69" fill="#fff"/><rect x="17.66" y="180.71" width="16" height="51.88" rx="8" ry="8" fill="#fff"/><circle cx="215.12" cy="81.01" r="2.63" fill="#fff"/><path d="M134.24,288.67a11.36,11.36,0,0,0,6.7,6.25c1.33.43,2.73.58,4.08.91,6.45,1.61,11,7.19,16.9,10.27a3.25,3.25,0,0,0,1.56.48l.2,0a1.92,1.92,0,0,0,.37,0,3.13,3.13,0,0,0,1.65-.69l.26-.2a19.78,19.78,0,0,1,.29,8c-2.34,0-17.49.93-15.42,18.83,2.25,19.38,24.72,46.52,24.72,46.52s15.73,16.06,10.67,70.89l-.56,26.58s6-.91,13.75-1.82q.27.53.55,1a41.39,41.39,0,0,0,8.3,10.26l12.79,30.39s1.1,2,2.72,5.1c.15,6.44-3.85,12.07-3.85,12.07-24.72,7.2-34.83,33.23-34.83,33.23s-14,8.36-17,17.67c-5.89,4.77-5.49,17.78-5.49,17.78s20.79,11.08,36,17.17a25,25,0,0,0,5.47,1.5l-3.38,7h0c-3.52,1.27-3.78,18.67-3.78,18.67s37.08,26.58,48.31,28.25,20.79-6.09,9-11.63c-9.5-4.46-20.1-21.5-23.86-28,4.7-6.45,19.54-27.35,20.49-35.73C252,589.5,266,581.19,266,581.19c20.22-21.6,6.74-47.08,5.06-60.37,0-.25-.07-.53-.12-.83a145.4,145.4,0,0,0-4.75-17c2.21-13.94,4-35.71,5-50.08,4.46,1.44,8.83,3.13,8.83,3.13,8.2-16.65-19.66-85.2-27.68-104.2,4.68-1.55,12.74-4,24.31-6.56,19.66-4.43,20.79-14.4,20.79-14.4l15.17-41c-1.29.58-3.27.55-5.59.15,0-.34,0-.71,0-1.11.12-3.89.49-10.1,1.63-11.23,0,0-3.73,0-8.26-.4l0-.55,2-25.07s-2.81-27.69-12.36-23.82c-7.67,3.11-6.64,28-5.94,37.69a16.81,16.81,0,0,0,2.13,7l.64,1.14.44.78a9.44,9.44,0,0,1-1.21-.69v8.58c-1.06-.51-1.69-.82-1.69-.82.56,9.42-11.24,41-11.24,41s-20.79-2.22-27.53,2.22c-4.94,3.25-11.4-3-14.49-6.61l14.49-31.6a41.43,41.43,0,0,1-5.17-1.26c.06-.38.14-.79.21-1.21.74-4,2.06-9.56,3.84-10.26a63,63,0,0,0-8-3.66c.06-.32.13-.66.21-1,1.05-5.54,2.7-17.51-.65-25.77-4.49-11.08-6.18-32.68-14.61-27.69-6.69,4-7,27.79-6.85,37.46a16.61,16.61,0,0,0,1.92,7.51l3.25,6.15.45.85-.45.08v7.57c-1.42-.9-2.25-1.47-2.25-1.47-.28,10.65-7.33,24.84-14.22,36.26l-3.5-2.52-.86-.62a2.14,2.14,0,0,1,0-.33s-1.44-.41-3.72-.87c-2.83-5.37-4.41-11.85-5.29-17.23-.09-.56-.17-1.11-.25-1.64a22.35,22.35,0,0,0,2-9.17,22.81,22.81,0,0,0-19.26-22.4c.69-.77,1-1,1.2-1h.15a4.17,4.17,0,0,0,2.54-.68c1.78-.87,3.79-2.16,3.78-4.11,0-1.43-1.14-2.61-2.34-3.42-2.9-1.94-3-5.29-5.68-5a3.58,3.58,0,0,0-1.53.2c-2.47.81-4.62,2.36-7,3.34a16.64,16.64,0,0,1-5.28,1.2,21.85,21.85,0,0,0-3.46.27,10.16,10.16,0,0,0-2.61,1.06c-5.08,2.77-10.93,7-12.56,12.47-1.53,5.14.59,11.81-3.35,15.51a14.5,14.5,0,0,0-2,1.89,6.56,6.56,0,0,0-1,2.52A15.11,15.11,0,0,0,134.24,288.67ZM237,555c.21,2.65-.29,4.53-1.84,5.14-8.43,3.32-18,33.78-18,33.78l-6.39,13.19a170,170,0,0,1-14.53-12.29l.69-4.77s18-13.29,19.1-17.17C216.92,569.75,231.45,559,237,555Z" transform="translate(-58.9 -26.03)" fill="url(#7762d21b-e061-4c19-a9a4-793dedfcbc4f)"/><path d="M249.5,348.37s38.2,88.42,28.93,107.52c0,0-15.28-6-17.47-4.91s-24-114.07-24-114.07Z" transform="translate(-58.9 -26.03)" fill="#c4c8e2"/><path d="M249.5,348.37s38.2,88.42,28.93,107.52c0,0-15.28-6-17.47-4.91s-24-114.07-24-114.07Z" transform="translate(-58.9 -26.03)" opacity="0.05"/><path d="M228.76,630s13.1,24.56,24.56,30,2.18,13.1-8.73,11.46-46.94-27.84-46.94-27.84.25-17.15,3.67-18.4S228.76,630,228.76,630Z" transform="translate(-58.9 -26.03)" fill="#4c495a"/><path d="M194.37,590.15s18.56,18.56,26.74,20.19-7.1,12.55-21.83,6.55S164.35,600,164.35,600s-.55-17.47,8.73-19.1S194.37,590.15,194.37,590.15Z" transform="translate(-58.9 -26.03)" fill="#4c495a"/><path d="M270.78,438.42S267,505,262,514.29s-23.47,37.66-23.47,37.66-21.29,15.28-22.38,19.1S197.65,588,197.65,588l-1.09,7.64s-28.93-1.64-27.29-11.46S186.19,565,186.19,565,196,539.39,220,532.3c0,0,7.64-10.92,1.09-19.65,0,0-16.37-40.93-25.65-45.85s3.82-33.29,3.82-33.29Z" transform="translate(-58.9 -26.03)" fill="#5f5d7e"/><path d="M270.78,438.42S267,505,262,514.29s-23.47,37.66-23.47,37.66-21.29,15.28-22.38,19.1S197.65,588,197.65,588l-1.09,7.64s-28.93-1.64-27.29-11.46S186.19,565,186.19,565,196,539.39,220,532.3c0,0,7.64-10.92,1.09-19.65,0,0-16.37-40.93-25.65-45.85s3.82-33.29,3.82-33.29Z" transform="translate(-58.9 -26.03)" opacity="0.05"/><path d="M217.3,591.79l-17.47,36.57c2.73,9.28,28.93,6,28.93,6S249,607.07,250,597.25s14.74-18,14.74-18c19.65-21.29,6.55-46.39,4.91-59.49,0-.25-.07-.52-.12-.81-1.45-8.78-10.28-34.06-17.15-53-4.63-12.75-8.38-22.62-8.38-22.62s-36.57,1.64-44.21,14.74c-3.5,6-1.93,12.24.79,17.25a40.65,40.65,0,0,0,8.07,10.11l12.43,30s21.83,39.84,13.64,43.12S217.3,591.79,217.3,591.79Z" transform="translate(-58.9 -26.03)" fill="#5f5d7e"/><path d="M282.47,268.17a16.74,16.74,0,0,0,2.07,6.95l.62,1.12,3.08,5.55h9.82l.21-2.58,2-24.71s-2.73-27.29-12-23.47C280.8,234.09,281.79,258.61,282.47,268.17Z" transform="translate(-58.9 -26.03)" fill="#fdc2cc"/><path d="M285.17,276.24l3.08,5.55h9.82l.21-2.58C293.71,278.8,288.26,278,285.17,276.24Z" transform="translate(-58.9 -26.03)" opacity="0.1"/><path d="M284.43,276.33v12.55l20.19,5.46s0-1.3.05-3.13c.11-3.83.47-10,1.58-11.06C306.26,280.15,289.88,280.15,284.43,276.33Z" transform="translate(-58.9 -26.03)" fill="#eaeaf3"/><path d="M284.43,283.69v5.19l20.19,5.46s0-1.3.05-3.13C298,290,288.25,285.54,284.43,283.69Z" transform="translate(-58.9 -26.03)" opacity="0.1"/><path d="M166.64,304.4c4,11.51-1.2,16.68-1.2,16.68s49.12,3.27,37.11-5.46c-7-5.1-10.12-16.35-11.48-24.82A84.65,84.65,0,0,1,190,280.15s-39.25-.58-31.11,10.37A52.55,52.55,0,0,1,166.64,304.4Z" transform="translate(-58.9 -26.03)" fill="#fdc2cc"/><path d="M158.9,290.52c4,5.38,5.31,6.17,6.65,10.06a21.94,21.94,0,0,0,3.72.31c9.36,0,18.47-1.93,21.81-10.09A84.65,84.65,0,0,1,190,280.15S150.75,279.57,158.9,290.52Z" transform="translate(-58.9 -26.03)" opacity="0.1"/><circle cx="111.45" cy="254.12" r="22.38" fill="#fdc2cc"/><path d="M282.79,284s21.29,10.92,27.29,8.19l-14.74,40.39s-1.09,9.82-20.19,14.19-28.38,8.19-28.38,8.19l-35.48-42,18,4.91s9.28,13.1,15.83,8.73,26.74-2.18,26.74-2.18S283.34,293.25,282.79,284Z" transform="translate(-58.9 -26.03)" fill="#c4c8e2"/><path d="M282.79,284s21.29,10.92,27.29,8.19l-14.74,40.39s-1.09,9.82-20.19,14.19-28.38,8.19-28.38,8.19l-35.48-42,18,4.91s9.28,13.1,15.83,8.73,26.74-2.18,26.74-2.18S283.34,293.25,282.79,284Z" transform="translate(-58.9 -26.03)" opacity="0.05"/><path d="M199.83,309.73s-28.85-8.25-31.89,7.08c0,0,13.33-6.5,32.44,5,1.43.86,2.83,1.78,4.2,2.74,16.81,11.78,28.55,30,33.27,50.71L250,428.67,251.13,443s17.47,3.45,20.74-1.72,1.09-22.41-3.82-28.15S255.5,382.7,255.5,382.7l-4.78-14.33A95.85,95.85,0,0,0,232,335.59h0l-1.15-1.39a71.66,71.66,0,0,0-26.61-19.9C201.47,313.07,199.45,311.54,199.83,309.73Z" transform="translate(-58.9 -26.03)" opacity="0.1"/><path d="M199.83,308.64s-28.85-8.25-31.89,7.08c0,0,13.33-6.5,32.44,5,1.43.86,2.83,1.78,4.2,2.74,16.81,11.78,28.55,30,33.27,50.71L250,427.57l1.09,14.36s17.47,3.45,20.74-1.72,1.09-22.41-3.82-28.15-12.55-30.45-12.55-30.45l-4.78-14.33A95.85,95.85,0,0,0,232,334.49h0l-1.15-1.39a71.66,71.66,0,0,0-26.61-19.9C201.47,312,199.45,310.45,199.83,308.64Z" transform="translate(-58.9 -26.03)" fill="#eaeaf3"/><path d="M272.39,418.66l-.24,9.4-7.64-4.91s-13.61-49.53-23.2-63c-1.13-1.59-1.68-4-2.73-4.37l-39-37.66v-8.73s19.92,14.74,21.56,17.47c.7,1.16,11.16,6.88,17.47,15.83a197.85,197.85,0,0,1,15,25.92L266.69,398Z" transform="translate(-58.9 -26.03)" opacity="0.1"/><path d="M199.56,308.8v8.46l39.57,37.93c1.05.4,1.6,2.78,2.73,4.37,9.59,13.51,23.2,63,23.2,63l7.64,4.91.24-9.4-5.7-20.62L254.14,368a197.8,197.8,0,0,0-15-25.92c-6.3-9-16.77-14.67-17.47-15.83-1.41-2.35-16.8-13.62-21-16.69Z" transform="translate(-58.9 -26.03)" fill="#d39999"/><rect x="163.19" y="153.16" width="78" height="78" rx="11.17" ry="11.17" fill="#4d0d41"/><rect x="163.19" y="153.16" width="78" height="78" rx="11.17" ry="11.17" fill="#fff" opacity="0.1"/><path d="M261.1,201.84a16.36,16.36,0,1,0,16.36,16.36A16.33,16.33,0,0,0,261.1,201.84Zm0,27a10.63,10.63,0,1,1,10.63-10.63,10.65,10.65,0,0,1-10.63,10.63Zm20.84-27.66a3.82,3.82,0,1,1-3.82-3.82A3.81,3.81,0,0,1,281.95,201.17ZM292.78,205c-.24-5.11-1.41-9.64-5.15-13.37s-8.26-4.9-13.37-5.15c-5.27-.3-21.06-.3-26.32,0-5.1.24-9.62,1.41-13.37,5.14s-4.9,8.26-5.15,13.37c-.3,5.27-.3,21.06,0,26.32.24,5.11,1.41,9.64,5.15,13.37s8.26,4.9,13.37,5.15c5.27.3,21.06.3,26.32,0,5.11-.24,9.64-1.41,13.37-5.15s4.9-8.26,5.15-13.37c.3-5.27.3-21,0-26.31ZM286,237a10.77,10.77,0,0,1-6.06,6.06c-4.2,1.67-14.17,1.28-18.81,1.28s-14.62.37-18.81-1.28a10.77,10.77,0,0,1-6.06-6.06c-1.67-4.2-1.28-14.17-1.28-18.81s-.37-14.62,1.28-18.81a10.77,10.77,0,0,1,6.06-6.06c4.2-1.67,14.17-1.28,18.81-1.28s14.62-.37,18.81,1.28a10.77,10.77,0,0,1,6.06,6.06c1.67,4.2,1.28,14.17,1.28,18.81S287.64,232.81,286,237Z" transform="translate(-58.9 -26.03)" opacity="0.2"/><path d="M177.81,256.39c1.73-.85,3.68-2.13,3.67-4.05A4.45,4.45,0,0,0,179.2,249c-3.12-2.12-2.88-6-6.46-4.77-2.4.8-4.49,2.32-6.83,3.29a16,16,0,0,1-5.13,1.19,20.93,20.93,0,0,0-3.37.27,9.79,9.79,0,0,0-2.54,1,21.92,21.92,0,0,0-10.31,12.86c-1.48,5.07-1.33,11.07-5.15,14.71a14.19,14.19,0,0,0-1.9,1.86,6.51,6.51,0,0,0-1,2.49,15.09,15.09,0,0,0,.75,9.06,11.1,11.1,0,0,0,6.51,6.16c1.29.42,2.65.57,4,.9,6.27,1.58,10.71,7.08,16.42,10.12a3.13,3.13,0,0,0,1.52.48,3,3,0,0,0,1.6-.68c2.21-1.58,4-4,4-6.74a13.63,13.63,0,0,0-1.46-4.86,47.09,47.09,0,0,1-2.73-8.79,4.29,4.29,0,0,1-.06-2.13c.41-1.32,1.88-1.94,2.9-2.88,1.94-1.8,2.17-4.84,1.45-7.38s-2.21-4.78-3.33-7.17a5.65,5.65,0,0,1-.66-2.33c0-3.19,4.31-4.92,6.13-7C176,255.78,174.44,258.06,177.81,256.39Z" transform="translate(-58.9 -26.03)" opacity="0.1"/><path d="M177.26,256.39c1.73-.85,3.68-2.13,3.67-4.05a4.45,4.45,0,0,0-2.28-3.37c-3.12-2.12-2.88-6-6.46-4.77-2.4.8-4.49,2.32-6.83,3.29a16,16,0,0,1-5.13,1.19c-1.13.07-4.77-1.65-5.87-1.4a9.79,9.79,0,0,0-2.54,1,21.92,21.92,0,0,0-10.31,12.86c-1.48,5.07-.45,11.4-4.27,15-.64.61.23,2.47-.29,3.19a6.51,6.51,0,0,0-1,2.49,15.09,15.09,0,0,0,.75,9.06,11.1,11.1,0,0,0,6.51,6.16c1.29.42,2.65.57,4,.9,6.27,1.58,10.71,7.08,16.42,10.12a3.13,3.13,0,0,0,1.52.48,3,3,0,0,0,1.6-.68c2.21-1.58,4-4,4-6.74a13.63,13.63,0,0,0-1.46-4.86,47.09,47.09,0,0,1-2.73-8.79,4.29,4.29,0,0,1-.06-2.13c.41-1.32,1.88-1.94,2.9-2.88,1.94-1.8,2.17-4.84,1.45-7.38s-2.21-4.78-3.33-7.17a5.65,5.65,0,0,1-.66-2.33c0-3.19,4.31-4.92,6.13-7C175.45,255.78,173.89,258.06,177.26,256.39Z" transform="translate(-58.9 -26.03)" fill="#865a61"/><path d="M200.62,475.32c10-1.18,22.6-2.34,28.14-1.42,8.91,1.48,21.41-6.46,23.66-7.95-4.63-12.75-8.38-22.62-8.38-22.62s-36.57,1.64-44.21,14.74C196.33,464.07,197.9,470.31,200.62,475.32Z" transform="translate(-58.9 -26.03)" opacity="0.1"/><path d="M152.89,334.18c2.18,19.1,24,45.85,24,45.85s15.28,15.83,10.37,69.86l-.55,26.2s32.2-4.91,42-3.27,24-8.19,24-8.19,5.46-94.42-18-114.07a138.64,138.64,0,0,0-9.43-12.83c-6.3-7.63-14.87-16.22-22.88-18.34a14.32,14.32,0,0,0-3.16-.49s-24.56-13.64-31.11-3.27C168.17,315.62,150.71,315.08,152.89,334.18Z" transform="translate(-58.9 -26.03)" fill="#c4c8e2"/><path d="M252.5,436s-8.73-3.82-23.47-2.73-41-12-41-12" transform="translate(-58.9 -26.03)" opacity="0.1"/><path d="M236.67,557.68s-.55,1.64,6.55,3.82,9.28,4.37,9.28,4.37" transform="translate(-58.9 -26.03)" opacity="0.05"/><path d="M215,255.94a16.56,16.56,0,0,0,1.87,7.4L220,269.4l2.18,4.2,13.64,1.09s.28-1.12.63-3c1-5.46,2.63-17.25-.63-25.4-4.37-10.92-6-32.2-14.19-27.29C215.17,222.92,214.86,246.41,215,255.94Z" transform="translate(-58.9 -26.03)" fill="#fdc2cc"/><path d="M220,269.23v.17l2.18,4.2,13.64,1.09s.28-1.12.63-3C231.6,269.81,225.2,268.08,220,269.23Z" transform="translate(-58.9 -26.03)" opacity="0.1"/><path d="M220,270.32v9.82l19.65,10.37s.22-1.78.64-4.08c.71-3.95,2-9.43,3.73-10.11C244,276.33,229.85,268.14,220,270.32Z" transform="translate(-58.9 -26.03)" fill="#eaeaf3"/><path d="M166.89,359.53a23.12,23.12,0,0,0,17.65,5.65c34.55-3.51,35.49-15.72,35.49-15.72l5.31-11.74c-6.3-7.63-14.87-16.22-22.88-18.34-5.73,9.23-10.8,15.89-10.8,15.89s-25.65-19.65-33.29-1.09C153.9,345,160.55,353.94,166.89,359.53Z" transform="translate(-58.9 -26.03)" opacity="0.05"/><path d="M220,276.34v3.81l19.65,10.37s.22-1.78.64-4.08C231.85,283.72,223.47,278.58,220,276.34Z" transform="translate(-58.9 -26.03)" opacity="0.1"/><path d="M217.84,276.33s14.74,10.37,27.29,12.55l-25.65,56.76s-.94,12.21-35.49,15.72a23.13,23.13,0,0,1-17.65-5.65c-6.33-5.6-13-14.55-8.53-25.35,7.64-18.56,33.29,1.09,33.29,1.09S217.3,297.07,217.84,276.33Z" transform="translate(-58.9 -26.03)" fill="#c4c8e2"/><path d="M428.2,189c0,.68,0,1.35,0,2,0,20.59-15.67,44.32-44.32,44.32a44,44,0,0,1-23.92-7,32.22,32.22,0,0,0,3.76.19,31.2,31.2,0,0,0,19.34-6.65,15.6,15.6,0,0,1-14.56-10.8,19.64,19.64,0,0,0,2.94.24,16.47,16.47,0,0,0,4.1-.53,15.58,15.58,0,0,1-12.49-15.29v-.19a15.69,15.69,0,0,0,7,2,15.6,15.6,0,0,1-4.82-20.83,44.28,44.28,0,0,0,32.12,16.3,17.58,17.58,0,0,1-.39-3.57,15.59,15.59,0,0,1,27-10.66,30.67,30.67,0,0,0,9.89-3.76,15.53,15.53,0,0,1-6.85,8.58,31.23,31.23,0,0,0,9-2.41A33.48,33.48,0,0,1,428.2,189Z" transform="translate(-58.9 -26.03)" opacity="0.2"/><path d="M369.64,351.15v58.71a3.64,3.64,0,0,1-3.64,3.64H349.17V387.95h8.57L359,378h-9.87v-6.36c0-2.89.8-4.85,4.94-4.85h5.27v-8.91a70.91,70.91,0,0,0-7.69-.4c-7.6,0-12.82,4.64-12.82,13.17V378h-8.6v10h8.6v25.56H307.28a3.65,3.65,0,0,1-3.64-3.64V351.15a3.65,3.65,0,0,1,3.64-3.64H366A3.65,3.65,0,0,1,369.64,351.15Z" transform="translate(-58.9 -26.03)" opacity="0.2"/><path d="M680.72,272.9a13.31,13.31,0,0,0-9.89-8.88c-8.38-1.76-41.45.11-41.45.11s-33.08,1.87-41.2,4.56a13.31,13.31,0,0,0-8.82,9.94c-1.74,8.43-.76,25.75-.76,25.75s1,17.32,3.66,25.5a13.11,13.11,0,0,0,9.88,8.73c8.38,1.76,41.45-.11,41.45-.11s33.08-1.87,41.2-4.56a13.11,13.11,0,0,0,8.83-9.79c1.74-8.43.76-25.75.76-25.75S683.4,281.08,680.72,272.9Zm-59.16,44.84-1.78-31.46,28.54,14.16-26.76,17.29Z" transform="translate(-58.9 -26.03)" fill="#4d0d41" opacity="0.1"/></svg>
diff --git a/site2/website/static/img/undraw_open_source.svg b/site2/website/static/img/undraw_open_source.svg
new file mode 100644
index 0000000..ac065dd
--- /dev/null
+++ b/site2/website/static/img/undraw_open_source.svg
@@ -0,0 +1 @@
+<svg id="a58ef234-55dd-4456-b368-278f056cc5c7" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="1028" height="598.99741" viewBox="0 0 1028 598.99741"><title>open source</title><circle cx="332.00497" cy="292.00357" r="292.00357" fill="#f2f2f2"/><path d="M1114,668.4987a13.68982,13.68982,0,0,1-.16992,2.12c-7.14014,43.76-234.46008,78.88-513.83008,78.88s-506.69-35.12-513.83-78.88a13.67509,13.67509,0,0,1-.17-2.12c0-.2,0-.41.02-.61,0-.11005.01-.21.01-.32a.48944.48944,0,0,0,.01-.12c.04-.45.1-.88.18-1.32,3.26-17.89,43.35-34.33,108.74-47.5,53.48-10.77,123.89-19.36,204.93-24.76,61.5-4.1,129.12-6.37,200.11-6.37,57.12,0,112.06,1.47,163.38,4.17h.02q16.11.855,31.74,1.87c71.33,4.62,134.63,11.69,185.63,20.54,31.37,5.45,58.1,11.58,79.18994,18.22h.01c32.46,10.23,51.6001,21.7,53.81006,33.83.08.44.13989.87.17993,1.32a.48659.48659,0,0,0,.01.12c0,.11.01.21.01.32C1114,668.08867,1114,668.29869,1114,668.4987Z" transform="translate(-86 -150.5013)" fill="#3f3d56"/><ellipse cx="501" cy="571.99741" rx="165" ry="24" opacity="0.1"/><path d="M1059.96,632.29869c-5.77,1.65-12.27,3.18-19.3999,4.58-29.36011,5.78-69.42005,9.33-113.53,9.33-49.28,0-93.45-4.43-123.38-11.44-24.84-5.81994-39.88-13.38995-39.88-21.69995,0-7.30005,11.63995-14.06,31.37-19.53,71.33,4.62,134.63,11.69,185.63,20.54C1012.14,619.52867,1038.87,625.65868,1059.96,632.29869Z" transform="translate(-86 -150.5013)" opacity="0.1"/><path d="M618,621.2487c0,15.13-94.92,27.4-212,27.4s-212-12.27-212-27.4a4.372,4.372,0,0,1,.96-2.62c53.48-10.77,123.89-19.36,204.93-24.76q3.045-.015,6.11-.01C523.08,593.85869,618,606.1187,618,621.2487Z" transform="translate(-86 -150.5013)" opacity="0.1"/><rect x="416.47191" y="334.97493" width="41.68539" height="134.58427" fill="#4d0d41"/><rect x="279.50562" y="271.85134" width="41.68539" height="197.70787" fill="#4d0d41"/><rect x="143.73034" y="271.85134" width="41.68539" height="197.70787" fill="#4d0d41"/><rect x="211.61798" y="271.85134" width="41.68539" height="134.58427" fill="#4d0d41"/><rect x="347.39326" y="271.85134" width="41.68539" height="39.30337" fill="#4d0d41"/><rect x="347.39326" y="334.97493" width="41.68539" height="134.58427" fill="#8a8b8c"/><rect x="416.47191" y="271.85134" width="109.57303" height="39.30337" fill="#4d0d41"/><path d="M901.062,410.53031q42.74823,0,72.77372,29.83923A97.98265,97.98265,0,0,1,995.66753,473.208a107.34579,107.34579,0,0,1,.09551,78.40916,93.53335,93.53335,0,0,1-21.73946,32.294,104.70367,104.70367,0,0,1-33.84136,22.5609,101.42451,101.42451,0,0,1-39.11384,7.82277,99.01466,99.01466,0,0,1-38.66173-7.73362A104.84511,104.84511,0,0,1,807.00731,551.165a101.7643,101.7643,0,0,1,.08913-77.59409A102.30668,102.30668,0,0,1,829.565,440.18488Q858.67354,410.53668,901.062,410.53031Zm.36932,18.3773q-34.93023,0-58.76787,24.37889A87.59486,87.59486,0,0,0,824.197,480.66778a80.78885,80.78885,0,0,0,0,63.31126,86.24851,86.24851,0,0,0,45.5771,45.30965,82.68682,82.68682,0,0,0,63.41-.08914,87.99456,87.99456,0,0,0,27.74106-18.37412q23.83128-23.28683,23.82809-58.40491a83.65859,83.65859,0,0,0-6.18627-32.02018,81.465,81.465,0,0,0-18.0016-26.92917Q935.98906,428.9092,901.43132,428.90761Zm-1.27673,66.59064-13.64925,7.09685a14.0061,14.0061,0,0,0-5.36482-6.36774,12.08742,12.08742,0,0,0-5.91563-1.818q-13.63969,0-13.64606,18.01115,0,8.18574,3.45449,13.09526,3.45768,4.9143,10.19157,4.91589,8.91644,0,12.55719-8.73335l12.55082,6.36774a29.99,29.99,0,0,1-26.74451,16.01168q-13.64448,0-22.01646-8.3704-8.36721-8.36721-8.36721-23.28364,0-14.55666,8.45954-23.10535,8.45795-8.5487,21.37969-8.55187Q891.97045,480.75694,900.15459,495.49825Zm58.76469,0-13.46459,7.09685a13.99175,13.99175,0,0,0-5.368-6.36774,12.37253,12.37253,0,0,0-6.09393-1.818q-13.64446,0-13.64924,18.01115,0,8.18574,3.45767,13.09526,3.45291,4.9143,10.19157,4.91589,8.90688,0,12.54764-8.73335l12.73548,6.36774a31.27658,31.27658,0,0,1-11.27409,11.73575,29.39766,29.39766,0,0,1-15.46405,4.27593q-13.83072,0-22.09923-8.3704-8.2908-8.36721-8.28444-23.28364,0-14.55666,8.46273-23.10535,8.45319-8.5487,21.37333-8.55187Q950.91184,480.75694,958.91928,495.49825Z" transform="translate(-86 -150.5013)" fill="#4d0d41"/><path d="M839.41688,660.83685c0,48.73748-67.93425,33.66253-151.11288,33.66253s-150.10359,15.075-150.10359-33.66253,67.925-59.33747,151.10359-59.33747S839.41688,612.09937,839.41688,660.83685Z" transform="translate(-86 -150.5013)" opacity="0.1"/><path d="M839.41688,648.83685c0,48.73748-67.93425,33.66253-151.11288,33.66253s-150.10359,15.075-150.10359-33.66253,67.925-59.33747,151.10359-59.33747S839.41688,600.09937,839.41688,648.83685Z" transform="translate(-86 -150.5013)" fill="#3f3d56"/><path d="M825.54156,561.34329l3.43359,14.16355a.88462.88462,0,0,1-.01719.478l-15.57547,48.67335a.88465.88465,0,0,1-1.72156-.16974l-2.15469-18.96122a.88471.88471,0,0,1,.03787-.374l14.29657-43.87567A.88465.88465,0,0,1,825.54156,561.34329Z" transform="translate(-86 -150.5013)" fill="#2f2e41"/><polygon points="738.278 412.038 741.449 424.19 727.711 468.572 724.541 454.835 738.278 412.038" fill="#f2f2f2"/><path d="M755.06392,628.58381c.52836,1.58507,54.949-.52835,55.47732-1.05671a11.4687,11.4687,0,0,0,1.16235-2.11342c.49669-1.05671.95107-2.11342.95107-2.11342l-2.11342-17.10815L756.649,604.27946s-1.34734,14.49808-1.62209,21.13422A15.85321,15.85321,0,0,0,755.06392,628.58381Z" transform="translate(-86 -150.5013)" fill="#2f2e41"/><polygon points="717.673 458.005 718.729 472.799 694.953 472.799 694.953 458.005 717.673 458.005" opacity="0.1"/><polygon points="687.028 462.76 687.17 462.732 686.5 469.1 673.291 469.1 673.291 462.76 687.028 462.76" opacity="0.1"/><path d="M755.06392,628.58381c.52836,1.58507,54.949-.52835,55.47732-1.05671a11.4687,11.4687,0,0,0,1.16235-2.11342H755.0269A15.85321,15.85321,0,0,0,755.06392,628.58381Z" transform="translate(-86 -150.5013)" opacity="0.1"/><path d="M671.05541,573.10649h14.79395l36.45652-14.26559s25.88942-10.56711,23.776,9.5104S740.27,615.37493,740.27,615.37493s-11.62382-5.28356-17.96409-3.69849-2.11342-32.22968-2.11342-32.22968-51.77883,24.8327-56.534,21.66257-5.81191-25.36106-5.81191-25.36106Z" transform="translate(-86 -150.5013)" fill="#2f2e41"/><path d="M671.05541,573.10649h14.79395l36.45652-14.26559s25.88942-10.56711,23.776,9.5104S740.27,615.37493,740.27,615.37493s-11.62382-5.28356-17.96409-3.69849-2.11342-32.22968-2.11342-32.22968-51.77883,24.8327-56.534,21.66257-5.81191-25.36106-5.81191-25.36106Z" transform="translate(-86 -150.5013)" opacity="0.1"/><path d="M694.36337,526.77716l17.90376,25.72347,41.74008,34.87146s38.56994,8.982,33.28639,15.32231-37.51323-6.34027-37.51323-6.34027S701.7,561.48268,700.115,558.8409s-19.0208-27.47448-19.0208-27.47448Z" transform="translate(-86 -150.5013)" fill="#a0616a"/><path d="M694.36337,526.77716l17.90376,25.72347,41.74008,34.87146s38.56994,8.982,33.28639,15.32231-37.51323-6.34027-37.51323-6.34027S701.7,561.48268,700.115,558.8409s-19.0208-27.47448-19.0208-27.47448Z" transform="translate(-86 -150.5013)" opacity="0.1"/><circle cx="605.66127" cy="324.33109" r="23.77599" fill="#a0616a"/><path d="M690.0762,495.9666s-7.92533,13.73724-9.51039,21.13422-23.776-14.79395-23.776-14.79395l-2.90595-7.66115s20.87-9.77458,19.285-17.69991S690.0762,495.9666,690.0762,495.9666Z" transform="translate(-86 -150.5013)" fill="#a0616a"/><path d="M683.73594,506.00536l11.62382,22.71928s-2.64178,11.09546-6.86862,12.15217-22.19093-13.73724-22.19093-13.73724Z" transform="translate(-86 -150.5013)" fill="#d0cde1"/><path d="M694.30305,537.17833l21.66257,28.53119,51.77883,38.56994s37.51323,7.92534,29.05955,13.73724-32.758-5.28355-32.758-5.28355-52.30718-28.00284-63.40265-39.62666-31.70132-31.173-31.70132-31.173Z" transform="translate(-86 -150.5013)" fill="#a0616a"/><path d="M665.2435,581.56018l6.34026,10.03875,37.83932-11.9045a29.75135,29.75135,0,0,1,24.7708,2.98851c6.60444,4.1608,10.83129,10.76524,1.32089,20.53981-19.0208,19.54915-31.70133,8.982-31.70133,8.982s-63.931,30.11625-74.49811,15.3223-11.09546-22.19093-11.09546-22.19093S658.90323,579.97511,665.2435,581.56018Z" transform="translate(-86 -150.5013)" fill="#2f2e41"/><path d="M744.49681,616.43164s16.90737,11.09546-3.17013,16.379-34.87146-2.11343-34.87146-2.11343-17.43573,0-17.43573-8.982,5.81191-10.03875,5.81191-10.03875l17.96409,2.64178S734.45806,608.50631,744.49681,616.43164Z" transform="translate(-86 -150.5013)" fill="#d0cde1"/><path d="M711.16583,468.8514a17.728,17.728,0,0,0,4.98235,1.78469,4.548,4.548,0,0,0,4.59533-1.96886,6.18073,6.18073,0,0,0,.522-2.7952c.06365-2.90132-.14619-6.03778-1.98475-8.28309-1.1701-1.429-2.87816-2.32977-4.08936-3.72406a17.59821,17.59821,0,0,1-2.06717-3.37767c-2.35552-4.42406-5.84318-8.67589-10.69025-9.9513a23.18347,23.18347,0,0,0-6.24-.47707l-12.20625.17221a21.25081,21.25081,0,0,0-5.872.632c-3.92885,1.1879-6.78945,4.49179-9.40936,7.65139a47.85117,47.85117,0,0,0-5.39639,7.44763,26.133,26.133,0,0,0-3.09771,12.80437,11.97989,11.97989,0,0,0,.43881,3.38808,18.80129,18.80129,0,0,0,1.33168,2.925c2.28907,4.49613,3.64824,10.1121,1.07032,14.44908,4.47812-1.82926,8.90892-4.22774,11.863-8.05834,1.3215-1.71364,2.35787-3.7197,4.119-4.9772s4.63076-1.36658,5.76072.479a5.163,5.163,0,0,1,.58258,2.41835,11.084,11.084,0,0,0,.66762,4.08133,3.05833,3.05833,0,0,0,3.32224,1.8956c2.30039-.648,2.0801-4.17861,3.85194-5.78243,1.3456-1.218,3.42157-.98516,5.15028-1.53807a7.64334,7.64334,0,0,0,4.38653-4.32052c.65453-1.46807.64508-5.3098,1.88365-6.10481C706.19386,466.62453,709.72609,468.20958,711.16583,468.8514Z" transform="translate(-86 -150.5013)" fill="#2f2e41"/><path d="M651.99646,492.13947a6.27057,6.27057,0,0,1,3.26389.00831c3.39162.91054,10.99473,3.321,12.62493,6.989,2.11342,4.7552,9.51039,12.15217,9.51039,12.15217s10.03876,10.03875,7.92534,16.90737-10.03876,14.794-10.03876,14.794,2.11342,32.758-8.45368,41.21172-14.794,2.64178-14.794,10.56711-32.758,32.758-39.0983,17.43573c0,0,3.17014-28.5312,2.11343-38.56995C614.00826,563.74087,615.53292,502.01108,651.99646,492.13947Z" transform="translate(-86 -150.5013)" fill="#d0cde1"/><path d="M668.942,505.477s32.22968,23.776,26.41777,33.81475c0,0-19.54915,9.5104-23.776,8.982s-20.60586-19.02079-24.8327-20.60586S640.4108,497.55167,668.942,505.477Z" transform="translate(-86 -150.5013)" fill="#d0cde1"/><path d="M579.81065,526.78274c-5.01266,1.69284-9.5539,5.65228-10.58039,10.84253-.47582,2.40592-.18409,4.907-.58451,7.32661-.92865,5.61161-5.33358,9.89722-9.39638,13.878s-8.2584,8.60617-8.55492,14.28636c-.3247,6.22,4.1862,12.047,3.40563,18.22633-.90687,7.17909-8.48947,11.831-10.36389,18.82016-1.25164,4.667.28211,9.6942,2.8055,13.81484,4.80858,7.85231,13.0279,13.18323,21.78085,16.041s18.07506,3.45905,27.28222,3.55552c11.21079.11746,23.38277-.845,31.806-8.244a25.48043,25.48043,0,0,0,8.459-16.5882c.8002-8.57064-2.77695-17.42641-.30951-25.67311,1.55287-5.19,5.44709-9.93,4.86592-15.316-.56823-5.26625-5.16773-8.99907-8.32312-13.25346-2.9461-3.97222-4.7338-8.66319-6.48587-13.28794l-5.99481-15.82383c-1.17848-3.1107-2.47257-6.38232-5.09885-8.424-4.91665-3.8221-12.82242-3.07115-18.57152-2.28285C590.61855,525.412,584.93966,525.0506,579.81065,526.78274Z" transform="translate(-86 -150.5013)" fill="#2f2e41"/><path d="M581.68806,572.87747s2.65748,8.63681-17.27362,18.60236,1.99311,20.59548,1.99311,20.59548l23.25295,5.315s23.91732-3.32185,26.5748-7.30808,7.30808-17.27362,5.97934-19.26673a31.0614,31.0614,0,0,0-3.32186-3.98622s-15.94488-2.65748-15.28051-9.96555S581.68806,572.87747,581.68806,572.87747Z" transform="translate(-86 -150.5013)" fill="#ffb9b9"/><path d="M581.68806,572.87747s2.65748,8.63681-17.27362,18.60236,1.99311,20.59548,1.99311,20.59548l23.25295,5.315s23.91732-3.32185,26.5748-7.30808,7.30808-17.27362,5.97934-19.26673a31.0614,31.0614,0,0,0-3.32186-3.98622s-15.94488-2.65748-15.28051-9.96555S581.68806,572.87747,581.68806,572.87747Z" transform="translate(-86 -150.5013)" opacity="0.1"/><circle cx="508.64328" cy="414.73592" r="21.25984" fill="#ffb9b9"/><path d="M592.318,610.08219s-25.60367-1.87245-26.08923-19.53858c0,0-9.12238-1.05689-11.77986,1.60059s-11.2943,4.65059-11.2943,11.29429,14.61615,26.57481,14.61615,26.57481,7.97244,26.5748,4.65059,31.22539-3.98622,16.60925-3.98622,16.60925,33.2185-2.65748,38.53346,0,26.57481,2.65748,27.90355,0-1.32874-35.876-1.32874-35.876,5.97933-7.97244,4.65059-17.27362L644.13885,606.096s-5.97933-17.938-15.28051-17.938c0,0-12.623-3.32185-12.95522-1.66092S622.21464,606.76034,592.318,610.08219Z" transform="translate(-86 -150.5013)" fill="#ff6584"/><path d="M532.52467,668.54676s5.97933,9.30118,21.25985,11.29429,17.938-3.32185,16.60925-4.65059-17.27362-7.30807-17.27362-7.30807l-9.30119-7.30807Z" transform="translate(-86 -150.5013)" fill="#ffb9b9"/><path d="M641.48137,660.57432l-17.27362,9.96555s-22.58859-1.32874-13.95178,5.315,24.5817,3.98622,24.5817,3.98622l15.28051-7.30807Z" transform="translate(-86 -150.5013)" fill="#ffb9b9"/><path d="M555.11326,677.84794s-15.94489,39.19784,3.32185,45.17717,72.41634,4.65059,84.375-3.32185,15.28051-18.60236,13.2874-21.92421-15.28051-12.623-24.58169-13.2874S555.11326,677.84794,555.11326,677.84794Z" transform="translate(-86 -150.5013)" fill="#2f2e41"/><path d="M555.11326,677.84794s-15.94489,39.19784,3.32185,45.17717,72.41634,4.65059,84.375-3.32185,15.28051-18.60236,13.2874-21.92421-15.28051-12.623-24.58169-13.2874S555.11326,677.84794,555.11326,677.84794Z" transform="translate(-86 -150.5013)" opacity="0.05"/><path d="M630.37766,680.28318s56.28087-20.37323,55.6165,4.20847-35.876,31.22539-35.876,31.22539l-10.62992,1.32874-58.46457,1.99311s1.99311-10.62992-2.65748-11.95866c0,0,15.28051-3.98622,15.94488-4.65059s38.53347-13.95177,41.19095-14.61614,10.62992-5.97934,16.60925-5.315c0,0,6.6437-5.315,13.95177-3.98622l-20.59547,1.32874Z" transform="translate(-86 -150.5013)" fill="#2f2e41"/><path d="M630.37766,680.28318s56.28087-20.37323,55.6165,4.20847-35.876,31.22539-35.876,31.22539l-10.62992,1.32874-58.46457,1.99311s1.99311-10.62992-2.65748-11.95866c0,0,15.28051-3.98622,15.94488-4.65059s38.53347-13.95177,41.19095-14.61614,10.62992-5.97934,16.60925-5.315c0,0,6.6437-5.315,13.95177-3.98622l-20.59547,1.32874Z" transform="translate(-86 -150.5013)" opacity="0.1"/><polygon points="534.434 533.081 541.53 549.271 584.714 533.99 588.036 525.354 576.741 523.36 554.035 527.347 544.187 530.004 534.434 533.081" fill="#2f2e41"/><polygon points="534.434 533.081 541.53 549.271 584.714 533.99 588.036 525.354 576.741 523.36 554.035 527.347 544.187 530.004 534.434 533.081" opacity="0.1"/><path d="M528.53845,703.094s12.623,15.94488,27.23918,19.9311,22.58858-1.32874,22.58858-1.32874L573.71562,703.094l-1.99311-11.95866L563.0857,685.156l-17.27363-7.97245-20.59547-6.6437s-8.63681-1.32874-8.63681,0,7.97244,21.25985,7.97244,21.25985Z" transform="translate(-86 -150.5013)" fill="#2f2e41"/><path d="M543.819,711.73082s2.65748,19.26673,5.97934,20.59547,13.2874-1.32874,15.94488-2.65748,11.69054-7.45919,11.69054-7.45919S545.81207,710.40208,543.819,711.73082Z" transform="translate(-86 -150.5013)" fill="#f2f2f2"/><polygon points="518.277 563.223 530.9 565.216 529.571 580.496 511.964 576.22 518.277 563.223" fill="#ffb9b9"/><path d="M612.18567,717.97655s-5.91592,7.04167.06341,11.02789l3.98622,3.32185s13.28741,2.65748,14.61615,3.98622,6.6437-1.99311,6.6437-1.99311.66437-19.9311,0-21.25984-8.63681-2.65748-9.30118-1.32874-8.63682,3.32185-13.28741,1.99311Z" transform="translate(-86 -150.5013)" fill="#f2f2f2"/><path d="M559.09948,682.49853s-46.50591-27.23917-53.814-17.27362-15.28051,23.91733,5.97933,34.54725,87.69685,32.55413,87.69685,32.55413,9.96555-15.28051,9.96555-19.26673c0,0-35.21161-15.94488-41.19094-17.27362s-29.89666-16.60926-33.21851-17.938-7.97244-5.315-7.97244-5.315Z" transform="translate(-86 -150.5013)" fill="#2f2e41"/><path d="M545.81207,600.11664l-2.65748,1.99311s-5.97933,15.28052-6.6437,23.91733-8.63681,35.21161-7.97244,38.53346,1.32874,5.97933,5.315,9.30118c0,0,5.315-11.95866,14.61615-9.96555l11.29429-41.19094Z" transform="translate(-86 -150.5013)" fill="#ff6584"/><path d="M638.82389,600.11664l5.315,5.97933s3.32185,7.97245,3.32185,9.96556,6.6437,31.22539,7.30807,32.55413,3.32185,17.938,0,21.92421-9.30118,6.6437-9.30118,6.6437,3.98622-13.95177-8.63681-14.61614l1.32874-5.315-11.95866-39.8622Z" transform="translate(-86 -150.5013)" fill="#ff6584"/><path d="M547.14082,645.85762v34.9949a8.41342,8.41342,0,0,0,8.2888,8.41251l73.18511,1.08423a8.41344,8.41344,0,0,0,8.53185-8.08916l1.34611-34.999a8.41344,8.41344,0,0,0-8.28529-8.73591l-74.53123-1.08016A8.41342,8.41342,0,0,0,547.14082,645.85762Z" transform="translate(-86 -150.5013)" fill="#3f3d56"/><ellipse cx="509.89011" cy="401.732" rx="22.88412" ry="12.32222" fill="#2f2e41"/><circle cx="505.9858" cy="513.72706" r="5.31496" fill="#f2f2f2"/></svg>
diff --git a/site2/website/static/img/undraw_operating_system.svg b/site2/website/static/img/undraw_operating_system.svg
new file mode 100644
index 0000000..c4b5c11
--- /dev/null
+++ b/site2/website/static/img/undraw_operating_system.svg
@@ -0,0 +1 @@
+<svg id="a91a722e-5259-4ef2-8c31-2e8a1147b313" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1100" height="806.74" viewBox="0 0 1100 806.74"><defs><linearGradient id="f0793c8d-2cc7-4dcf-96d3-b23677fc2573" x1="459.23" y1="847.99" x2="459.23" y2="385.75" gradientTransform="translate(250.84)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="gray" stop-opacity="0.25"/><stop offset="0.54" stop-color="gray" stop-opacity="0.12"/><stop offset="1" stop-color="gray" stop-opacity="0.1"/></linearGradient></defs><title>operating system</title><ellipse cx="629.72" cy="780.56" rx="122.56" ry="26.18" fill="#4d0d41" opacity="0.1"/><path d="M1120.55,730.47c-24.35,20.2-59,28.56-92.51,33.84l-5.64.86c-58.57,8.74-118.32,10.52-177.79,12.28-165.87,4.91-332.17,9.81-497.6-1.51-73.16-5-148.13-13.76-212.25-43.7l-1.67-.79c-.83-.39-1.66-.78-2.49-1.19A224.11,224.11,0,0,1,98,711.17c-18.31-13.06-33.43-29-41.42-47.91-12.52-29.66-5.9-63,8.4-92s35.8-55.12,54.34-82.43c5.44-8,10.6-16.3,15.4-24.81,30-53.37,44.88-115.13,13.43-166.56a228.58,228.58,0,0,0-13.43-19c-7.67-10-15.47-20-20.74-31.07-12.29-25.76-9.65-54.73-5.17-82.25,6-36.59,17.05-76,51.38-98.86,35.67-23.74,86.3-22.54,130.57-14,68.83,13.19,132.36,40.8,196.49,65.7S618.6,165.56,689.11,168c62.26,2.17,134.89-14,176.23-56.08,40.15-40.85,115.6-43.94,170-19.27,51.91,23.54,85.48,73.36,83,123.12-3.16,62.1-54.93,111.83-95.9,164.7-6.81,8.79-13.33,17.68-19.28,26.72-19.42,29.53-33.15,65-19.78,96.88,7.5,17.85,21.81,31.47,39.06,43.36,38.65,26.63,92,44.55,116,81.83C1159.11,661.42,1151.45,704.82,1120.55,730.47Z" transform="translate(-50 -46.63)" fill="#4d0d41" opacity="0.1"/><ellipse cx="972.5" cy="704.85" rx="57.01" ry="10.96" fill="#4d0d41"/><ellipse cx="971.55" cy="700.19" rx="6.64" ry="8.69" fill="#3f3d56"/><ellipse cx="971.55" cy="689.57" rx="6.64" ry="8.69" fill="#3f3d56"/><ellipse cx="971.55" cy="678.94" rx="6.64" ry="8.69" fill="#3f3d56"/><ellipse cx="971.55" cy="668.32" rx="6.64" ry="8.69" fill="#3f3d56"/><ellipse cx="971.55" cy="657.7" rx="6.64" ry="8.69" fill="#3f3d56"/><ellipse cx="971.55" cy="647.08" rx="6.64" ry="8.69" fill="#3f3d56"/><ellipse cx="971.55" cy="636.46" rx="6.64" ry="8.69" fill="#3f3d56"/><path d="M1046.4,610.41a31,31,0,0,0,2.47-3.64l-17.44-2.86,18.86.14a31.78,31.78,0,0,0,.61-25.2L1025.59,592l23.34-17.15a31.8,31.8,0,1,0-52.51,35.58,31.55,31.55,0,0,0-3.63,5.8L1015.43,628l-24.14-8.1a31.79,31.79,0,0,0,5.13,29.86,31.8,31.8,0,1,0,50,0,31.78,31.78,0,0,0,0-39.32Z" transform="translate(-50 -46.63)" fill="#4d0d41"/><path d="M989.61,630.07a31.68,31.68,0,0,0,6.81,19.66,31.8,31.8,0,1,0,50,0C1050.66,644.32,989.61,626.5,989.61,630.07Z" transform="translate(-50 -46.63)" opacity="0.1"/><path d="M184.73,720.54c0,5.59-21.81,10.21-50,10.87l-1.67,0c-.83-.39-1.66-.78-2.49-1.19A224.11,224.11,0,0,1,98,711.17c6.85-.8,14.64-1.34,23-1.52l1.13,0c1.82,0,3.67-.06,5.54-.06,1.22,0,2.43,0,3.62,0l1.18,0c.76,0,1.51,0,2.25,0C162.92,710.32,184.73,715,184.73,720.54Z" transform="translate(-50 -46.63)" fill="#4d0d41"/><ellipse cx="76.76" cy="669.25" rx="6.64" ry="8.69" fill="#3f3d56"/><ellipse cx="76.76" cy="658.63" rx="6.64" ry="8.69" fill="#3f3d56"/><ellipse cx="76.76" cy="648.01" rx="6.64" ry="8.69" fill="#3f3d56"/><ellipse cx="76.76" cy="637.39" rx="6.64" ry="8.69" fill="#3f3d56"/><ellipse cx="76.76" cy="626.77" rx="6.64" ry="8.69" fill="#3f3d56"/><ellipse cx="76.76" cy="616.15" rx="6.64" ry="8.69" fill="#3f3d56"/><ellipse cx="76.76" cy="605.52" rx="6.64" ry="8.69" fill="#3f3d56"/><path d="M151.61,579.47a32.28,32.28,0,0,0,2.48-3.63L136.64,573l18.87.14a31.8,31.8,0,0,0,.6-25.19l-25.3,13.13,23.34-17.16a31.8,31.8,0,1,0-52.52,35.58,32.45,32.45,0,0,0-3.63,5.8L120.64,597,96.5,588.93a31.87,31.87,0,0,0,5.13,29.86,31.8,31.8,0,1,0,50,0,31.78,31.78,0,0,0,0-39.32Z" transform="translate(-50 -46.63)" fill="#4d0d41"/><path d="M94.83,599.13a31.67,31.67,0,0,0,6.8,19.66,31.8,31.8,0,1,0,50,0C155.87,613.38,94.83,595.56,94.83,599.13Z" transform="translate(-50 -46.63)" opacity="0.1"/><g opacity="0.2"><path d="M355.84,601.92c0,.94-.1,1.86-.2,2.76Q344,600,332.72,594.75a18.59,18.59,0,0,1-10.6-5.17c-2.19-1.1-4.37-2.24-6.54-3.39a26.82,26.82,0,0,1,1.66-3c4.2-6.66,10.6-10.83,17.65-10.6s13.15,4.78,16.93,11.66A34.37,34.37,0,0,1,355.84,601.92Z" transform="translate(-50 -46.63)" fill="#3f3d56"/><path d="M357,567a34.56,34.56,0,0,1-5.13,17.32c-4.21,6.64-10.6,10.81-17.65,10.58-.49,0-1-.06-1.45-.1a18.59,18.59,0,0,1-10.6-5.17,25.27,25.27,0,0,1-4.88-6.37,35.82,35.82,0,0,1,1.1-35c4.21-6.66,10.6-10.83,17.65-10.6s13.15,4.78,16.93,11.66A34.47,34.47,0,0,1,357,567Z" transform="translate(-50 -46.63)" fill="#3f3d56"/><ellipse cx="336.18" cy="531.28" rx="28.63" ry="21.87" transform="translate(-255.43 803.92) rotate(-88.19)" fill="#3f3d56"/><ellipse cx="337.29" cy="496.31" rx="28.63" ry="21.87" transform="translate(-219.41 771.16) rotate(-88.19)" fill="#3f3d56"/><ellipse cx="338.39" cy="461.34" rx="28.63" ry="21.87" transform="translate(-183.39 738.39) rotate(-88.19)" fill="#3f3d56"/><path d="M264.12,219.46a105.78,105.78,0,0,1-7.76-12.24l57.72-7.62L252,198.1a104.92,104.92,0,0,1,.62-83l82,45.85L259.47,102A104.75,104.75,0,1,1,428.69,224.65,105.13,105.13,0,0,1,440,244.11l-75.77,36.38,80.33-24.17a104.85,104.85,0,0,1-20,97.78A104.75,104.75,0,1,1,260,348.91a104.73,104.73,0,0,1,4.08-129.45Z" transform="translate(-50 -46.63)" fill="#4d0d41"/><path d="M449.05,290.08a104.29,104.29,0,0,1-24.44,64A104.75,104.75,0,1,1,260,348.91C246.57,330.66,449.42,278.33,449.05,290.08Z" transform="translate(-50 -46.63)" opacity="0.1"/></g><g opacity="0.2"><path d="M848.18,527.14c0,.67-.07,1.32-.14,2q-8.31-3.29-16.31-7.06a13.31,13.31,0,0,1-7.55-3.68c-1.55-.79-3.11-1.6-4.65-2.41a19.78,19.78,0,0,1,1.18-2.13c3-4.74,7.54-7.7,12.56-7.54s9.36,3.4,12.05,8.3A24.5,24.5,0,0,1,848.18,527.14Z" transform="translate(-50 -46.63)" fill="#3f3d56"/><path d="M849,502.25a24.56,24.56,0,0,1-3.65,12.33c-3,4.72-7.54,7.69-12.56,7.53l-1-.07a13.31,13.31,0,0,1-7.55-3.68,18.32,18.32,0,0,1-3.47-4.54,25.51,25.51,0,0,1,.78-24.88c3-4.74,7.55-7.71,12.56-7.55s9.37,3.4,12.05,8.3A24.55,24.55,0,0,1,849,502.25Z" transform="translate(-50 -46.63)" fill="#3f3d56"/><ellipse cx="834.19" cy="476.87" rx="20.37" ry="15.56" transform="translate(281.27 1248.98) rotate(-88.19)" fill="#3f3d56"/><ellipse cx="834.98" cy="451.98" rx="20.37" ry="15.56" transform="translate(306.9 1225.67) rotate(-88.19)" fill="#3f3d56"/><ellipse cx="835.76" cy="427.1" rx="20.37" ry="15.56" transform="translate(332.53 1202.35) rotate(-88.19)" fill="#3f3d56"/><path d="M782.91,255a73.57,73.57,0,0,1-5.52-8.71l41.08-5.42-44.21-1.07a74.67,74.67,0,0,1,.43-59.07L833,213.32,779.6,171.39A74.55,74.55,0,1,1,900,258.65a74.71,74.71,0,0,1,8.06,13.86L854.17,298.4l57.17-17.2a74.55,74.55,0,0,1-14.22,69.58A74.54,74.54,0,1,1,780,347.09,74.55,74.55,0,0,1,782.91,255Z" transform="translate(-50 -46.63)" fill="#4d0d41"/><path d="M914.52,305.22a74.2,74.2,0,0,1-17.4,45.56A74.54,74.54,0,1,1,780,347.09C770.42,334.09,914.78,296.86,914.52,305.22Z" transform="translate(-50 -46.63)" opacity="0.1"/></g><g opacity="0.2"><path d="M635,449.09c0,.67-.08,1.32-.15,2q-8.31-3.29-16.31-7.06a13.28,13.28,0,0,1-7.54-3.68c-1.56-.79-3.11-1.6-4.65-2.41a19,19,0,0,1,1.17-2.13c3-4.73,7.55-7.7,12.56-7.54s9.36,3.4,12.05,8.3A24.5,24.5,0,0,1,635,449.09Z" transform="translate(-50 -46.63)" fill="#3f3d56"/><path d="M635.74,424.2a24.56,24.56,0,0,1-3.65,12.33c-3,4.72-7.54,7.69-12.56,7.53-.35,0-.68,0-1-.07a13.28,13.28,0,0,1-7.54-3.68,18.11,18.11,0,0,1-3.48-4.54,25.48,25.48,0,0,1,.79-24.88c3-4.74,7.54-7.71,12.56-7.55s9.36,3.4,12,8.3A24.54,24.54,0,0,1,635.74,424.2Z" transform="translate(-50 -46.63)" fill="#3f3d56"/><ellipse cx="620.97" cy="398.82" rx="20.37" ry="15.56" transform="matrix(0.03, -1, 1, 0.03, 152.77, 960.28)" fill="#3f3d56"/><ellipse cx="621.75" cy="373.93" rx="20.37" ry="15.56" transform="translate(178.4 936.96) rotate(-88.19)" fill="#3f3d56"/><ellipse cx="622.54" cy="349.05" rx="20.37" ry="15.56" transform="translate(204.04 913.64) rotate(-88.19)" fill="#3f3d56"/><path d="M569.68,176.91a74.87,74.87,0,0,1-5.52-8.71l41.08-5.42L561,161.71a74.62,74.62,0,0,1,.44-59.07l58.33,32.63L566.38,93.34A74.54,74.54,0,1,1,686.8,180.6a74.76,74.76,0,0,1,8.07,13.86L641,220.35l57.16-17.2a74.55,74.55,0,0,1-14.22,69.58A74.54,74.54,0,1,1,566.78,269a74.57,74.57,0,0,1,2.9-92.13Z" transform="translate(-50 -46.63)" fill="#4d0d41"/><path d="M701.29,227.17a74.2,74.2,0,0,1-17.4,45.56A74.54,74.54,0,1,1,566.78,269C557.19,256.05,701.55,218.81,701.29,227.17Z" transform="translate(-50 -46.63)" opacity="0.1"/></g><path d="M1022.4,547.44V765.17c-58.57,8.74-118.32,10.52-177.79,12.28-165.87,4.91-332.17,9.81-497.6-1.51-73.16-5-148.13-13.76-212.25-43.7V464c.24-185-.76,0,0-185.56V211.85a14.1,14.1,0,0,1,14.1-14.1H1008.3a14.1,14.1,0,0,1,14.1,14.1V380.48C1023,547,1022,381,1022.4,547.44Z" transform="translate(-50 -46.63)" fill="#3f3d56"/><rect x="344.15" y="217.75" width="368.86" height="28.56" rx="5.22" fill="#4d0d41" opacity="0.3"/><path d="M737.94,279.85h-.61l-.23-.19a5.1,5.1,0,0,0,1.19-3.25,4.94,4.94,0,1,0-4.92,5,5.09,5.09,0,0,0,3.24-1.18l.22.19V281l3.81,3.82,1.14-1.14Zm-4.57,0a3.44,3.44,0,1,1,3.43-3.44A3.42,3.42,0,0,1,733.37,279.85Z" transform="translate(-50 -46.63)" fill="#444053"/><rect x="222.84" y="493.2" width="34.42" height="11.9" rx="5" fill="#3f3d56" opacity="0.7"/><rect x="222.84" y="522.95" width="53.54" height="11.9" rx="5" fill="#4d0d41" opacity="0.3"/><rect x="222.84" y="508.08" width="107.09" height="11.9" rx="5" fill="#4d0d41" opacity="0.3"/><path d="M214.57,569.21a5.74,5.74,0,0,0-5.8,5.69,3.88,3.88,0,0,1-3.87,3.79,10,10,0,0,0,7.73,3.8,7.67,7.67,0,0,0,7.75-7.59A5.75,5.75,0,0,0,214.57,569.21Zm26.53-17.76-2.6-2.55a1.94,1.94,0,0,0-2.72,0l-17.34,17,5.32,5.22,17.32-17A1.86,1.86,0,0,0,241.1,551.45Z" transform="translate(-50 -46.63)" fill="#4d0d41"/><rect x="222.84" y="345.66" width="34.42" height="11.9" rx="5" fill="#3f3d56" opacity="0.7"/><rect x="222.84" y="375.41" width="53.54" height="11.9" rx="5" fill="#4d0d41" opacity="0.3"/><rect x="222.84" y="360.53" width="107.09" height="11.9" rx="5" fill="#4d0d41" opacity="0.3"/><path d="M241.18,424.78,226,409.5a10.82,10.82,0,0,0-2.51-11.58,11,11,0,0,0-12.35-2.18l7.18,7.22-5,5L206,400.78a10.86,10.86,0,0,0,2.17,12.41,10.66,10.66,0,0,0,11.51,2.52L234.83,431a1.61,1.61,0,0,0,2.34,0l3.84-3.86a1.51,1.51,0,0,0,.17-2.35Z" transform="translate(-50 -46.63)" fill="#4d0d41"/><rect x="509.6" y="493.2" width="34.42" height="11.9" rx="5" fill="#3f3d56" opacity="0.7"/><rect x="509.6" y="522.95" width="53.54" height="11.9" rx="5" fill="#4d0d41" opacity="0.3"/><rect x="509.6" y="508.08" width="107.09" height="11.9" rx="5" fill="#4d0d41" opacity="0.3"/><path d="M509.44,572.63a10,10,0,0,1-9.89,0c-3.87,1.19-6.24,5.09-7.12,8.54h24.12C515.68,577.72,513.32,573.82,509.44,572.63Zm-4.94-18.37a8.69,8.69,0,1,0,8.69,8.68A8.69,8.69,0,0,0,504.5,554.26Zm0,15.3a6.71,6.71,0,0,1-6.07-4.14h12.14A6.71,6.71,0,0,1,504.5,569.56Z" transform="translate(-50 -46.63)" fill="#4d0d41"/><path d="M522.09,568a10.07,10.07,0,0,1-8.4.69,12,12,0,0,1-2.3,2.86,11.24,11.24,0,0,1,4.9,4.33H529.2A10.72,10.72,0,0,0,522.09,568Zm-4.94-18.38a8.71,8.71,0,0,0-7.33,4,10.78,10.78,0,0,1,5.15,7.14h8.25a6.72,6.72,0,0,1-6.07,4.12,6,6,0,0,1-2.08-.38,11.65,11.65,0,0,1-.54,2.07,8.35,8.35,0,0,0,2.62.4,8.69,8.69,0,0,0,0-17.38Z" transform="translate(-50 -46.63)" fill="#4d0d41"/><rect x="222.84" y="603.86" width="34.42" height="11.9" rx="5" fill="#3f3d56" opacity="0.7"/><rect x="222.84" y="633.61" width="53.54" height="11.9" rx="5" fill="#4d0d41" opacity="0.3"/><rect x="222.84" y="618.74" width="107.09" height="11.9" rx="5" fill="#4d0d41" opacity="0.3"/><path d="M226.57,654.25h-9.82a3.28,3.28,0,0,0-3.32,3.24v.7h-.62a3.28,3.28,0,0,0-3.32,3.24v23.63a3.34,3.34,0,0,0,3.32,3.32h17.08a3.27,3.27,0,0,0,3.23-3.32v-.62h.71a3.27,3.27,0,0,0,3.23-3.32V664.75Zm0,3.66,6.84,6.84h-6.84Zm3.94,27.15a.67.67,0,0,1-.62.7H212.81a.73.73,0,0,1-.69-.7V661.43a.67.67,0,0,1,.69-.62h.62v21c0,1.82.86,2.66,2.67,2.66h14.41Zm3.93-3.94a.66.66,0,0,1-.61.7H216.75a.73.73,0,0,1-.69-.7V657.49a.67.67,0,0,1,.69-.62h7.19v10.51h10.5Z" transform="translate(-50 -46.63)" fill="#4d0d41"/><rect x="509.6" y="345.66" width="34.42" height="11.9" rx="5" fill="#3f3d56" opacity="0.7"/><rect x="509.6" y="375.41" width="53.54" height="11.9" rx="5" fill="#4d0d41" opacity="0.3"/><rect x="509.6" y="360.53" width="107.09" height="11.9" rx="5" fill="#4d0d41" opacity="0.3"/><path d="M507.32,400H495.94a3.51,3.51,0,0,0-3.5,3.51v19.25a3.5,3.5,0,0,0,3.5,3.5H525.7a3.5,3.5,0,0,0,3.5-3.5V407.42a3.51,3.51,0,0,0-3.5-3.5H510.82l-3.5-3.94Z" transform="translate(-50 -46.63)" fill="#4d0d41"/><rect x="792.79" y="493.2" width="34.42" height="11.9" rx="5" fill="#3f3d56" opacity="0.7"/><rect x="792.79" y="522.95" width="53.54" height="11.9" rx="5" fill="#4d0d41" opacity="0.3"/><rect x="792.79" y="508.08" width="107.09" height="11.9" rx="5" fill="#4d0d41" opacity="0.3"/><path d="M812.93,555.91l-6.77-.32-.4-4.41a1.7,1.7,0,0,0-1.88-1.52l-24.27,2a1.67,1.67,0,0,0-1.59,1.79l1.73,19.35a1.7,1.7,0,0,0,1.88,1.49l1.23-.09-.19,3.76a1.87,1.87,0,0,0,1.83,1.93l27.09,1.28a1.88,1.88,0,0,0,2-1.74l1.14-21.6A1.86,1.86,0,0,0,812.93,555.91Zm-29.12.44-.58,11.06-1.44,2-1.32-14.61v-.09a.89.89,0,0,1,.78-.77l21.42-1.75a.81.81,0,0,1,.87.64s0,0,0,0,0,0,0,0l.21,2.52-18-.86A1.9,1.9,0,0,0,783.81,556.35Zm27.4,19.44-7-8.17-3.07,2.82-5.67-6.63-10.07,10.72.86-16.33v0a.94.94,0,0,1,1-.74l23.9,1.16a.87.87,0,0,1,.85.83s0,0,0,0Z" transform="translate(-50 -46.63)" fill="#4d0d41"/><path d="M806.89,565.42a2.63,2.63,0,1,0-2.62-2.63A2.64,2.64,0,0,0,806.89,565.42Z" transform="translate(-50 -46.63)" fill="#4d0d41"/><rect x="795.17" y="345.66" width="34.42" height="11.9" rx="5" fill="#3f3d56" opacity="0.7"/><rect x="795.17" y="375.41" width="53.54" height="11.9" rx="5" fill="#4d0d41" opacity="0.3"/><rect x="795.17" y="360.53" width="107.09" height="11.9" rx="5" fill="#4d0d41" opacity="0.3"/><circle cx="762.56" cy="356.63" r="5.25" fill="#4d0d41"/><path d="M808.53,409.45l-10.42,6.94-14.44-9.62v-3.51l14.44,9.63,8.3-5.53a7.39,7.39,0,0,1-.1-8H783.24a3.52,3.52,0,0,0-3.51,3.51v21.88a3.52,3.52,0,0,0,3.51,3.51H813a3.51,3.51,0,0,0,3.5-3.51v-15.2a7.37,7.37,0,0,1-8-.06Z" transform="translate(-50 -46.63)" fill="#4d0d41"/><ellipse cx="509.64" cy="746.02" rx="26.08" ry="5.01" fill="#4d0d41"/><ellipse cx="509.21" cy="743.89" rx="3.04" ry="3.97" fill="#3f3d56"/><ellipse cx="509.21" cy="739.03" rx="3.04" ry="3.97" fill="#3f3d56"/><ellipse cx="509.21" cy="734.17" rx="3.04" ry="3.97" fill="#3f3d56"/><ellipse cx="509.21" cy="729.31" rx="3.04" ry="3.97" fill="#3f3d56"/><ellipse cx="509.21" cy="724.46" rx="3.04" ry="3.97" fill="#3f3d56"/><ellipse cx="509.21" cy="719.6" rx="3.04" ry="3.97" fill="#3f3d56"/><ellipse cx="509.21" cy="714.74" rx="3.04" ry="3.97" fill="#3f3d56"/><path d="M570.57,728.13a13.59,13.59,0,0,0,1.13-1.67l-8-1.31,8.62.07a14.59,14.59,0,0,0,.28-11.52l-11.57,6,10.67-7.85a14.54,14.54,0,1,0-24,16.28,15.11,15.11,0,0,0-1.66,2.65l10.36,5.38-11-3.7a14.53,14.53,0,0,0,2.34,13.65,14.54,14.54,0,1,0,22.86,0,14.55,14.55,0,0,0,0-18Z" transform="translate(-50 -46.63)" fill="#4d0d41"/><path d="M544.6,737.12a14.45,14.45,0,0,0,3.11,9,14.54,14.54,0,1,0,22.86,0C572.52,743.64,544.6,735.49,544.6,737.12Z" transform="translate(-50 -46.63)" opacity="0.1"/><path d="M802,436.86a13.68,13.68,0,0,1-1-2.7c-.1-1.07.32-2.48-.63-3-.53-.29-1.27-.07-1.74-.45a2.15,2.15,0,0,1-.51-1.2,4.1,4.1,0,0,0-3.8-3c1-2.71,4.68-3.37,6.3-5.76.81-1.19.55-3.38-.88-3.39a2.49,2.49,0,0,0-1,.25l-5.33,2.2a27.35,27.35,0,0,0-3,1.39c-2.93,1.67-5.12,4.38-7.09,7.13a30.49,30.49,0,0,0-4.41,8,18,18,0,0,0-.94,5.49c0,.19,0,.38,0,.56-.87.15-1.58.53-2.49.71l-2.07,5.47a6.93,6.93,0,0,1-1.35,2.49,12.52,12.52,0,0,1-1.46,1.15,8.45,8.45,0,0,0-2.91,7.37,7.93,7.93,0,0,0-4.66,9.78,9.31,9.31,0,0,0-6.81,6,4.43,4.43,0,0,1-.89,1.88,3.55,3.55,0,0,1-2.37.73c-2.34.15-4.38,2-6.49,1a13.21,13.21,0,0,0-7.71-1.08,5.77,5.77,0,0,1-1.65.15,4.43,4.43,0,0,1-1.35-.47,10.46,10.46,0,0,0-3.06-1.21,2.84,2.84,0,0,0-2.9,1.12c-.74-.81-1.18-1.86-1.85-2.73a3,3,0,0,0-2.82-1.35c.7-.63,0-1.89-.93-2.11a11.56,11.56,0,0,0-2.81.1c-2.44,0-4.32-2.24-6.69-2.83-2.18-.53-5.09.11-6.21-1.85-.35-.63-.45-1.45-1-1.92a3.64,3.64,0,0,0-.71-1.45c-.9-1-2.41-1.16-3.76-1.12a15.68,15.68,0,0,0-4.37.75c0-.17-.09-.36-.15-.56a11.09,11.09,0,0,0-4.84-5.94A20,20,0,0,0,688,454.2c0-.18,0-.35,0-.53a22.55,22.55,0,0,1,1.16-7.43c.08-.26.18-.52.27-.78a26.6,26.6,0,0,0,12-44.63,6.83,6.83,0,0,0-.21-1.6,7.86,7.86,0,0,0-1.6-3.12c-1.22-2.72-3.12-3.92-5.55-5.06-.7-.33-1.44-.65-2.22-1-3.87-1.74-7.61-4.3-12-4.29-4,0-7.86,2.21-11.82,2.13l-.3,0h-.29l-.36,0c-1.11-.13-2.44-.39-3.17.46a4.5,4.5,0,0,0-.56,1.09,2.64,2.64,0,0,1-.2.37h0a4.4,4.4,0,0,1-.51.69h0c-1.28,1.4-3.43,2-5.2,2.94-4,2.05-6.62,6.23-7.66,10.61s-.68,9,.1,13.44c.4,2.22,1.26,4.74,2.84,6.14h0l0,0s-13.37,9.51-10.93,10.86c1.33.74,6.87-2.77,11.64-6.12.05.2.09.41.15.61a44,44,0,0,0,2.18,6.25c1,2.39,2.44,5,4.93,5.69a5.36,5.36,0,0,0,1.69.19l.44,0a39.39,39.39,0,0,1-1.15,10.87,6.61,6.61,0,0,0-4.09,1.13,3.29,3.29,0,0,1-1.66.88,2.89,2.89,0,0,1-1.71-.84,9.7,9.7,0,0,0-12.14.64c-4.84,4.57-4.29,13.49-10,16.95-1.56.95-3.56,1.46-4.48,3.05a11.41,11.41,0,0,1-.77,1.47,4.05,4.05,0,0,1-1.36,1,26.48,26.48,0,0,0-4.68,2.7,6.72,6.72,0,0,0-2.69,4.54,8.61,8.61,0,0,0,.82,3.81,36.44,36.44,0,0,0,3.12,6,6.38,6.38,0,0,0-1.26,2.95c-.4,2.81.94,5.58,1.09,8.42.13,2.48-.66,4.9-1.1,7.34-1.76,9.54,1.61,19.2,5,28.26a14.58,14.58,0,0,1,1.2,4.65c.09,3-1.6,5.67-2.07,8.59-1,6.14,3.53,11.92,3.63,18.13,0,2.87-.86,5.78-.14,8.55.47,1.85,1.62,3.44,2.44,5.17,1.44,3.06,1.83,6.53,3.21,9.62a23.07,23.07,0,0,0,7.12,8.48c1.73,5.49-.73,12.12,0,18q1.41-.56,2.85-1a41.17,41.17,0,0,0,6.3,24.84c1.55,2.42,3.37,4.68,4.54,7.31a34.26,34.26,0,0,1,1.77,5.79q2.51,10.47,5,20.92c1.36,5.65,2.73,11.4,2.32,17.2-.28,4-1.3,8.57,1.18,11.77a8.51,8.51,0,0,1,1.49,2.06,5.22,5.22,0,0,1,0,2.72,180.71,180.71,0,0,0-2.48,20.39c-.56.75-1.12,1.51-1.63,2.26-4.11,6-6.09,13.21-7.69,20.32a245.83,245.83,0,0,0-5.16,42.44,28.38,28.38,0,0,0-5.26,6.41c-2.15,4-2.43,8.7-2.66,13.24a4.73,4.73,0,0,0,.24,2.18A4.48,4.48,0,0,0,644.2,822l1.24.59c-.27,1-.51,2-.72,3.05-1.58-1.78-4.39-4.6-4.87-2.54a101.78,101.78,0,0,0-2.56,21,1.77,1.77,0,0,0,1.9,2.12A116.25,116.25,0,0,0,660,848c5.65,0,11.29-.46,16.92-.89l5.77-.44a127.7,127.7,0,0,0,17.67-2.19c2.55-.56,5.18-1.35,7.1-3.14s2.86-4.85,1.54-7.12v0c-1.61-2.74-5.37-2.94-8.51-3.38a27.85,27.85,0,0,1-8.92-2.84c-.63-.32-1.24-.68-1.85-1,.16,0,.33-.08.48-.14,2.7-.91,4.85-3,7.39-4.25,3-1.45,6.31-1.78,9.57-2.19s6.62-1,9.33-2.86c2.54-1.74,4.34-4.91,3.75-7.89a5.15,5.15,0,0,0-.16-.62c-1-3.23-4.5-5-7.76-5.8s-6.8-1.28-9.44-3.38l-.39-.31c-.22-.19-.45-.37-.69-.56a5.62,5.62,0,0,0,.77-3.26c-.14-1.79-1.18-3.37-1.89-5-1.39-3.25-1.5-6.88-1.88-10.39-.94-8.83-3.65-17.35-5.69-26-.23-1-.45-2-.67-3a62.86,62.86,0,0,1,7.27-11.64,38,38,0,0,0,7-13.77c.42-1.54.73-3.1,1.05-4.67Q713.18,694.18,718,667a45.19,45.19,0,0,0,.91-7.84,23.89,23.89,0,0,0,1.35-7.43c.94-3.67,1.89-7.52,1.12-9.92-.54-1.7-.81-7.51-1.11-13.08a50.24,50.24,0,0,0-.54-8.93c-.09-.51-.19-1-.3-1.51q-.09-.45-.18-.75a25.68,25.68,0,0,0-1.76-4.86,23.63,23.63,0,0,0-1.32-2.71,12.34,12.34,0,0,0-1-1.48,62,62,0,0,1,6.22.58c.5.07,1.12.11,1.43-.3A1.47,1.47,0,0,0,723,608a12.75,12.75,0,0,0-1.62-6.76c-.8-1.42-1.91-2.8-1.88-4.43a6.53,6.53,0,0,1,.55-2.2l2.77-7.44c2.35-6.29,1.23-13.58,2.45-20.18a118.46,118.46,0,0,0,1.82-15.61c.23-4.47.09-9.32-2.6-12.9a14.73,14.73,0,0,1-2-2.84,8.41,8.41,0,0,1-.48-3.39q-.07-10.51.42-21a206.38,206.38,0,0,0,35.05-4,22,22,0,0,0,4-1.08,20.19,20.19,0,0,0,4-2.53c3.93-2.84,7.92-5.73,10.91-9.55a32.36,32.36,0,0,0,6.46-15.94c2.84-2.63,4.35-6.37,5.77-10a15.42,15.42,0,0,0,1.32-4.85c.07-1.72-1.06-3.52-.74-5.21a13.78,13.78,0,0,1,4.19-7.58,2.74,2.74,0,0,0,1-1.33,2.12,2.12,0,0,0-.23-1.3l-.09-.15c.28-.17.54-.35.81-.53.93-.66,1.82-1.39,2.69-2.1a17,17,0,0,0,3.49-3.54A5.75,5.75,0,0,0,802,436.86ZM673.69,820.15c-.24,0-.48,0-.71.06a9.57,9.57,0,0,0-2.54.73l-.19.1c1.1-2.38,2.14-4.8,3.08-7.26.11-.29.21-.58.32-.88l-.12,1.64A20.22,20.22,0,0,0,673.69,820.15Z" transform="translate(-50 -46.63)" fill="url(#f0793c8d-2cc7-4dcf-96d3-b23677fc2573)"/><path d="M688,455.73c.1,3.88,1.42,7.64,1.62,11.52-11.43.57-22.72-5-34-3.28,3.17-2.05,4.86-5.74,5.86-9.37a38.9,38.9,0,0,0,1.11-14.41,6.61,6.61,0,0,0-.14-.79c-.42-1.9-1.51-4.59-1.22-6.08.39-2,2.25-1.59,3.93-1.48a150.51,150.51,0,0,1,15.26,2c1.32.23,14.13,3.43,14.33,3.1a59.69,59.69,0,0,0-5.55,11.43A22.32,22.32,0,0,0,688,455.73Z" transform="translate(-50 -46.63)" fill="#ee8e9e"/><path d="M801.05,443.73a16.64,16.64,0,0,1-3.49,3.52c-.87.71-1.76,1.44-2.69,2.09a11.5,11.5,0,0,1-5.72,2.33c-2.72.18-8.51-1.42-10.2-3.75a6.77,6.77,0,0,1-1-3.91,17.88,17.88,0,0,1,.94-5.46,30.42,30.42,0,0,1,4.41-8c2-2.74,4.16-5.43,7.09-7.09a27.35,27.35,0,0,1,3-1.39l5.33-2.18a2.5,2.5,0,0,1,1-.26c1.43,0,1.69,2.2.88,3.38-1.62,2.38-5.27,3-6.3,5.73a4.09,4.09,0,0,1,3.8,2.95,2.11,2.11,0,0,0,.51,1.19c.47.37,1.21.16,1.74.45.95.5.53,1.91.63,3a13.5,13.5,0,0,0,1,2.68A5.69,5.69,0,0,1,801.05,443.73Z" transform="translate(-50 -46.63)" fill="#ee8e9e"/><path d="M643.4,833.08c.88-.88,2.32-.73,3.55-.54a132,132,0,0,0,19.95,1.61c.84-4.08-1.59-8-2.37-12.14a10.76,10.76,0,0,0-.8-3.08c-.94-1.8-3.06-2.63-5.05-3-3.59-.76-9.21-2.09-11.22,1.54C645.05,821.78,644.28,828.22,643.4,833.08Z" transform="translate(-50 -46.63)" fill="#65617d"/><path d="M716.49,817.65c-2.71,1.85-6.07,2.42-9.33,2.84s-6.61.74-9.57,2.19c-2.54,1.26-4.69,3.32-7.39,4.22a15.31,15.31,0,0,1-7.67.12c-3-.57-6.26-1.67-7.89-4.29-1.46-2.32-1.31-5.27-1.11-8,.24-3.09.47-6.2.69-9.3a4.4,4.4,0,0,1,.58-2.24c2.19-3.2,7.52,1.33,10.37,1.33,4.52,0,9.37-2.46,12.62-5.45a3.89,3.89,0,0,1,1-.74c1.29-.58,2.58.49,3.72,1.42l.39.31c2.64,2.09,6.18,2.52,9.44,3.37s6.75,2.55,7.76,5.77a4.57,4.57,0,0,1,.16.61C720.83,812.76,719,815.91,716.49,817.65Z" transform="translate(-50 -46.63)" fill="#3f3d56"/><path d="M716.49,817.65c-2.71,1.85-6.07,2.42-9.33,2.84s-6.61.74-9.57,2.19c-2.54,1.26-4.69,3.32-7.39,4.22a15.31,15.31,0,0,1-7.67.12c-3-.57-6.26-1.67-7.89-4.29-1.46-2.32-1.31-5.27-1.11-8,.24-3.09.47-6.2.69-9.3a4.4,4.4,0,0,1,.58-2.24c2.19-3.2,7.52,1.33,10.37,1.33,4.52,0,9.37-2.46,12.62-5.45a3.89,3.89,0,0,1,1-.74c1.29-.58,2.58.49,3.72,1.42l.39.31c2.64,2.09,6.18,2.52,9.44,3.37s6.75,2.55,7.76,5.77a4.57,4.57,0,0,1,.16.61C720.83,812.76,719,815.91,716.49,817.65Z" transform="translate(-50 -46.63)" fill="#434175"/><path d="M716.49,818.69c-2.71,1.85-6.07,2.43-9.33,2.85s-6.61.73-9.57,2.18c-2.54,1.26-4.69,3.32-7.39,4.22a15.31,15.31,0,0,1-7.67.12,12.6,12.6,0,0,1-7.89-5.33c-1.46-2.32-1.31-5.27-1.11-8,.24-3.09.47-6.2.69-9.3a4.4,4.4,0,0,1,.58-2.24c2.19-3.2,7.52,1.33,10.37,1.33,4.52,0,9.37-2.46,12.62-5.45a3.89,3.89,0,0,1,1-.74c1.29-.58,2.58.49,3.72,1.42a26.4,26.4,0,0,1-3.17,6.56,13.63,13.63,0,0,1-10,6.22c-2,.15-4.09-.25-6,.27s-3.77,2.52-3.08,4.42,3.06,2.25,5,2.36a22.38,22.38,0,0,0,8.21-.58c1.6-.53,3.07-1.41,4.62-2.06,6.62-2.74,15-1.21,20.46-5.85a13,13,0,0,1,1.67-1.28C721.67,812.8,719,817,716.49,818.69Z" transform="translate(-50 -46.63)" fill="#e8eaf2"/><path d="M716.49,818.69c-2.71,1.85-6.07,2.43-9.33,2.85s-6.61.73-9.57,2.18c-2.54,1.26-4.69,3.32-7.39,4.22a15.31,15.31,0,0,1-7.67.12,12.6,12.6,0,0,1-7.89-5.33c-1.46-2.32-1.31-5.27-1.11-8,.24-3.09.47-6.2.69-9.3a4.4,4.4,0,0,1,.58-2.24c2.19-3.2,7.52,1.33,10.37,1.33,4.52,0,9.37-2.46,12.62-5.45a3.89,3.89,0,0,1,1-.74c1.29-.58,2.58.49,3.72,1.42a26.4,26.4,0,0,1-3.17,6.56,13.63,13.63,0,0,1-10,6.22c-2,.15-4.09-.25-6,.27s-3.77,2.52-3.08,4.42,3.06,2.25,5,2.36a22.38,22.38,0,0,0,8.21-.58c1.6-.53,3.07-1.41,4.62-2.06,6.62-2.74,15-1.21,20.46-5.85a13,13,0,0,1,1.67-1.28C721.67,812.8,719,817,716.49,818.69Z" transform="translate(-50 -46.63)" opacity="0.05"/><path d="M644.64,616.07a40.77,40.77,0,0,0,5.58,30c1.55,2.4,3.37,4.66,4.54,7.27a33.77,33.77,0,0,1,1.77,5.77l5,20.8c1.36,5.62,2.73,11.34,2.32,17.11-.28,4-1.3,8.53,1.18,11.71a8.46,8.46,0,0,1,1.49,2.05,5.15,5.15,0,0,1,0,2.7c-2.54,15.11-4.43,30.9.16,45.51,4.17,13.25,4.41,27.93,7.95,41.35a9.24,9.24,0,0,0,2.19,4.59,7.27,7.27,0,0,0,3.3,1.56c5.22,1.25,10.73-.21,15.59-2.46,3.42-1.59,7.1-4.37,6.81-8.12-.14-1.79-1.18-3.36-1.89-5-1.39-3.23-1.5-6.83-1.88-10.33-.94-8.78-3.65-17.26-5.69-25.84s-3.44-17.57-1.71-26.23a229.79,229.79,0,0,1,16.87-51.9,6.27,6.27,0,0,1,1.55-2.32,16.86,16.86,0,0,0,2.19-1.49,6.66,6.66,0,0,0,1-2.72c.76-2.74,3-4.77,4.53-7.17,3.83-6.08,2.62-13.87,2.48-21.05-.14-7,.86-14-.28-20.92S714.65,607,708,604.88c-3.29-1.07-6.85-.82-10.29-.48C679.48,606.2,661.76,609.51,644.64,616.07Z" transform="translate(-50 -46.63)" fill="#696791"/><path d="M644.64,617.07a40.77,40.77,0,0,0,5.58,30c1.55,2.4,3.37,4.66,4.54,7.27a33.77,33.77,0,0,1,1.77,5.77l5,20.8c1.36,5.62,2.73,11.34,2.32,17.11-.28,4-1.3,8.53,1.18,11.71a8.46,8.46,0,0,1,1.49,2.05,5.15,5.15,0,0,1,0,2.7c-2.54,15.11-4.43,30.9.16,45.51,4.17,13.25,4.41,27.93,7.95,41.35a9.24,9.24,0,0,0,2.19,4.59,7.27,7.27,0,0,0,3.3,1.56c5.22,1.25,10.73-.21,15.59-2.46,3.42-1.59,7.1-4.37,6.81-8.12-.14-1.79-1.18-3.36-1.89-5-1.39-3.23-1.5-6.83-1.88-10.33-.94-8.78-3.65-17.26-5.69-25.84s-3.44-17.57-1.71-26.23a229.79,229.79,0,0,1,16.87-51.9,6.27,6.27,0,0,1,1.55-2.32,16.86,16.86,0,0,0,2.19-1.49,6.66,6.66,0,0,0,1-2.72c.76-2.74,3-4.77,4.53-7.17,3.83-6.08,2.62-13.87,2.48-21.05-.14-7,.86-14-.28-20.92S714.65,608,708,605.88c-3.29-1.07-6.85-.82-10.29-.48C679.48,607.2,661.76,610.51,644.64,617.07Z" transform="translate(-50 -46.63)" opacity="0.1"/><path d="M718.92,659.86a44,44,0,0,1-.91,8.07q-4.83,27-10.28,54c-.32,1.56-.63,3.12-1.05,4.65a37.78,37.78,0,0,1-7,13.7c-15.15,18.89-16.46,46.32-24.68,69.1-.56,1.54-1.11,3.09-1.7,4.61a115.75,115.75,0,0,1-5.07,11.31,3.22,3.22,0,0,1-1,1.35,3.08,3.08,0,0,1-1.65.33,48.31,48.31,0,0,1-21.36-4.86,4.48,4.48,0,0,1-2.27-1.89,4.66,4.66,0,0,1-.24-2.17c.23-4.51.51-9.19,2.66-13.16a28.22,28.22,0,0,1,5.26-6.38,242.36,242.36,0,0,1,5.16-42.22c1.6-7.08,3.58-14.23,7.69-20.21,3-4.42,7.38-8.78,6.84-14.11-.23-2.34-1.21-5.25.69-6.62.83-.61,2.06-.69,2.63-1.55a3,3,0,0,0,.37-1.32,32.66,32.66,0,0,0-.68-10.93,58.79,58.79,0,0,1-1.63-7.13,9,9,0,0,1,1.79-6.88c.1-4.87,0-9.92.07-14.78a27.16,27.16,0,0,0-.69-8.25c-.36-1.27-.93-2.49-1.21-3.79-1-4.67,1.52-10.27-1.5-14-1.26-1.54-3.2-2.31-4.85-3.42a17.71,17.71,0,0,1-6.66-9.57A52.59,52.59,0,0,1,655.75,622a11.28,11.28,0,0,1,0-2.53,4.35,4.35,0,0,1,.34-1.27c.94-2.11,3.46-2.93,5.71-3.47a185.15,185.15,0,0,1,43.61-5.1c5.44-3.7,8.49-2.37,10.8,1.54a41.09,41.09,0,0,1,3.07,7.51c1,3.18,1.12,21,2.14,24.17C722.72,647,718.87,655.5,718.92,659.86Z" transform="translate(-50 -46.63)" fill="#696791"/><path d="M620.68,497.92c-.4,2.8.94,5.55,1.09,8.38.13,2.47-.66,4.88-1.1,7.31-1.76,9.48,1.61,19.09,5,28.11a14.4,14.4,0,0,1,1.2,4.62c.09,2.94-1.6,5.64-2.07,8.55-1,6.11,3.53,11.85,3.63,18,0,2.85-.86,5.75-.14,8.5.47,1.84,1.62,3.43,2.43,5.14,1.45,3,1.84,6.5,3.22,9.57,2.49,5.55,7.84,9.18,12.94,12.51,2.89-1,6-2.11,7.62-4.72a11.63,11.63,0,0,0,1.33-4.14c1.1-6.33,1.06-12.79,1-19.21A118.59,118.59,0,0,0,656,564c-1-7-3.29-13.7-4.92-20.57-2-8.65-3.09-17.59-6.28-25.9-2.81-7.29-7.17-13.84-11.77-20.12-1.75-2.39-3.14-5.81-6.54-5.26A7.13,7.13,0,0,0,620.68,497.92Z" transform="translate(-50 -46.63)" fill="#434175"/><path d="M620.68,495.92c-.4,2.8.94,5.55,1.09,8.38.13,2.47-.66,4.88-1.1,7.31-1.76,9.48,1.61,19.09,5,28.11a14.4,14.4,0,0,1,1.2,4.62c.09,2.94-1.6,5.64-2.07,8.55-1,6.11,3.53,11.85,3.63,18,0,2.85-.86,5.75-.14,8.5.47,1.84,1.62,3.43,2.43,5.14,1.45,3,1.84,6.5,3.22,9.57,2.49,5.55,7.84,9.18,12.94,12.51,2.89-1,6-2.11,7.62-4.72a11.63,11.63,0,0,0,1.33-4.14c1.1-6.33,1.06-12.79,1-19.21A118.59,118.59,0,0,0,656,562c-1-7-3.29-13.7-4.92-20.57-2-8.65-3.09-17.59-6.28-25.9-2.81-7.29-7.17-13.84-11.77-20.12-1.75-2.39-3.14-5.81-6.54-5.26A7.13,7.13,0,0,0,620.68,495.92Z" transform="translate(-50 -46.63)" opacity="0.05"/><path d="M694.66,436.91a59.69,59.69,0,0,0-5.55,11.43,26.19,26.19,0,0,1-6.3.76c-8.25,0-14.08-4.69-18.93-10.62-.42-1.9-3-3.67-2.74-5.16.39-2,2.25-1.59,3.93-1.48a150.51,150.51,0,0,1,15.26,2C681.65,434,694.46,437.24,694.66,436.91Z" transform="translate(-50 -46.63)" opacity="0.1"/><circle cx="632.81" cy="375.34" r="26.41" fill="#ee8e9e"/><path d="M716.18,611.19c-4.57-.27-9.18-.08-13.76.1a47.15,47.15,0,0,0-8.55.88c-3.47.79-6.71,2.37-10.13,3.36-5.48,1.59-11.26,1.66-16.93,2.22a94.36,94.36,0,0,0-11.09,1.74,4.35,4.35,0,0,1,.34-1.27c.94-2.11,3.46-2.93,5.71-3.47a185.15,185.15,0,0,1,43.61-5.1C710.82,606,713.87,607.28,716.18,611.19Z" transform="translate(-50 -46.63)" opacity="0.1"/><path d="M698.18,465.21c-1.15,1.33-2.7,2.8-4.4,2.37a6.08,6.08,0,0,1-1.72-.92c-3-2-6.78-2.42-10.36-3a152.4,152.4,0,0,1-21.34-4.8,21.93,21.93,0,0,0-6.32-1.28c-4.47,0-8.44,3-11.24,6.48s-4.8,7.57-7.55,11.1c-2,2.52-4.3,4.74-6.13,7.35-4.62,6.59-5.62,15.19-4.42,23.15s4.37,15.47,7.53,22.88A78.47,78.47,0,0,0,638.37,541c-1.06,6-.5,13,2.38,18.4.93,1.77,2.08,3.49,2.39,5.47a13.85,13.85,0,0,1-.16,4l-1.35,9.56c-.41,2.91-.82,5.82-1.35,8.72-1,5.29-2.28,11,.17,15.82,2.93,5.74-.15,13.09.62,19.49a97.8,97.8,0,0,1,25.74-6.11c5.67-.56,11.45-.63,16.93-2.22,3.42-1,6.66-2.57,10.13-3.37a47,47,0,0,1,8.55-.87c6.33-.25,12.7-.51,19,.42.5.08,1.12.12,1.43-.29a1.47,1.47,0,0,0,.19-.75,12.63,12.63,0,0,0-1.62-6.72c-.8-1.41-1.91-2.79-1.88-4.41a6.48,6.48,0,0,1,.55-2.19l2.77-7.4c2.35-6.25,1.23-13.51,2.45-20.07a117.46,117.46,0,0,0,1.82-15.53c.23-4.45.09-9.27-2.6-12.83a14.67,14.67,0,0,1-2-2.83,8.34,8.34,0,0,1-.48-3.37q-.09-13.36.73-26.72c-2.34-4.21-4.79-8.51-7.13-12.72-2.73-4.9-5.49-9.9-6.59-15.4-.73-3.63-.71-7.38-1.23-11.05a4.9,4.9,0,0,0-.93-2.59,4.69,4.69,0,0,0-3.76-1.11A16.44,16.44,0,0,0,698.18,465.21Z" transform="translate(-50 -46.63)" fill="#434175"/><path d="M794.87,449.34a11.5,11.5,0,0,1-5.72,2.33c-2.72.18-8.51-1.42-10.2-3.75a6.77,6.77,0,0,1-1-3.91,4.91,4.91,0,0,1,1.14-.22,29.88,29.88,0,0,1,8.86.36c2.88.7,5.66,2.45,6.87,5.16Z" transform="translate(-50 -46.63)" opacity="0.1"/><path d="M707,506.46c1.61,2,3.28,4.06,5.56,5.25,2.63,1.36,5.72,1.39,8.67,1.33a208,208,0,0,0,36.23-4,22.81,22.81,0,0,0,4-1.07,20.6,20.6,0,0,0,4-2.52c3.93-2.82,7.92-5.7,10.91-9.51a32.05,32.05,0,0,0,6.46-15.85c2.84-2.61,4.35-6.34,5.77-9.93a15.24,15.24,0,0,0,1.32-4.82c.07-1.71-1.06-3.5-.74-5.18a13.64,13.64,0,0,1,4.19-7.54,2.74,2.74,0,0,0,1-1.33,2.1,2.1,0,0,0-.23-1.29c-1.22-2.71-4-4.45-6.88-5.16a29.61,29.61,0,0,0-8.87-.36,20.06,20.06,0,0,0-2.9.78l-2.07,5.43a6.88,6.88,0,0,1-1.35,2.48,12.52,12.52,0,0,1-1.46,1.15,8.38,8.38,0,0,0-2.91,7.33,7.88,7.88,0,0,0-4.66,9.72,9.3,9.3,0,0,0-6.81,6,4.45,4.45,0,0,1-.89,1.87A3.66,3.66,0,0,1,753,480c-2.34.14-4.38,2-6.49,1a13.29,13.29,0,0,0-7.71-1.08,5.77,5.77,0,0,1-1.65.15,4.43,4.43,0,0,1-1.35-.47,10.72,10.72,0,0,0-3.06-1.2,2.84,2.84,0,0,0-2.9,1.12c-.74-.81-1.18-1.85-1.85-2.72a3,3,0,0,0-2.82-1.35c.7-.62,0-1.87-.93-2.1a12.66,12.66,0,0,0-2.81.1c-2.44,0-4.32-2.23-6.69-2.81-2.18-.53-5.09.11-6.21-1.84-.39-.69-.47-1.63-1.14-2a2.2,2.2,0,0,0-1.48-.17,14.24,14.24,0,0,0-4.45,1.35c-2.29,9-1.09,18.24.65,27.3A24.07,24.07,0,0,0,707,506.46Z" transform="translate(-50 -46.63)" fill="#434175"/><path d="M706.93,538.51l-11.37,22.94c1.23-2.13,3.82-3,5.87-4.31A15.54,15.54,0,0,0,707,549.6a47.14,47.14,0,0,0,2.15-9.29c.23-1.45.71-3.49,0-4.81C707.89,535.77,707.47,537.44,706.93,538.51Z" transform="translate(-50 -46.63)" opacity="0.1"/><path d="M674.21,558c-2.57,2.54-5.71,4.41-8.53,6.66-6.6,5.26-11.3,12.46-15.89,19.53a30.77,30.77,0,0,0-3.25,5.92c.54.46,1.34,0,1.88-.49l8.93-7.84a20.19,20.19,0,0,0,3-3c1.55-2.09,2.24-4.69,3.65-6.88a26.84,26.84,0,0,1,5.43-5.53c2.05-1.76,11.47-9.73,9.18-12.83C676.92,554.34,675.56,556.64,674.21,558Z" transform="translate(-50 -46.63)" opacity="0.1"/><path d="M693.72,458.58a26.78,26.78,0,0,0-9.45-3.11,20,20,0,0,0-6-.43c-1.86.23-3.65.95-5.52,1-2.63.15-5.14-.92-7.68-1.61s-5.47-1-7.6.57a3.29,3.29,0,0,1-1.66.88,3,3,0,0,1-1.71-.84,9.74,9.74,0,0,0-12.14.64c-4.84,4.54-4.29,13.41-10,16.86-1.56,1-3.56,1.45-4.48,3a12,12,0,0,1-.77,1.46,4,4,0,0,1-1.36,1,26.43,26.43,0,0,0-4.68,2.69,6.66,6.66,0,0,0-2.69,4.51,8.53,8.53,0,0,0,.82,3.79,35.62,35.62,0,0,0,34.61,22.13,5.42,5.42,0,0,0,3.63-1.13,6.93,6.93,0,0,0,1.27-2.09c2.67-5.59,7.68-9.72,10.86-15,1.89-3.17,3.11-6.72,5.09-9.84,3-4.73,7.54-8.23,12-11.62,2.52-1.91,5.31-3.92,8.47-3.79,2.81.12,4.86.27,3.82-3.17A11,11,0,0,0,693.72,458.58Z" transform="translate(-50 -46.63)" fill="#434175"/><path d="M693.72,458.58a26.78,26.78,0,0,0-9.45-3.11,20,20,0,0,0-6-.43c-1.86.23-3.65.95-5.52,1-2.63.15-5.14-.92-7.68-1.61s-5.47-1-7.6.57a3.29,3.29,0,0,1-1.66.88,3,3,0,0,1-1.71-.84,9.74,9.74,0,0,0-12.14.64c-4.84,4.54-4.29,13.41-10,16.86-1.56,1-3.56,1.45-4.48,3a12,12,0,0,1-.77,1.46,4,4,0,0,1-1.36,1,26.43,26.43,0,0,0-4.68,2.69,6.66,6.66,0,0,0-2.69,4.51,8.53,8.53,0,0,0,.82,3.79,35.62,35.62,0,0,0,34.61,22.13,5.42,5.42,0,0,0,3.63-1.13,6.93,6.93,0,0,0,1.27-2.09c2.67-5.59,7.68-9.72,10.86-15,1.89-3.17,3.11-6.72,5.09-9.84,3-4.73,7.54-8.23,12-11.62,2.52-1.91,5.31-3.92,8.47-3.79,2.81.12,4.86.27,3.82-3.17A11,11,0,0,0,693.72,458.58Z" transform="translate(-50 -46.63)" opacity="0.05"/><path d="M707.47,841.36c-1.92,1.79-4.55,2.57-7.1,3.12a127.7,127.7,0,0,1-17.67,2.19l-5.77.44c-5.63.43-11.27.86-16.92.88a117.17,117.17,0,0,1-20.82-1.8,2.28,2.28,0,0,1-1.65-.8,2.24,2.24,0,0,1-.25-1.31,100.74,100.74,0,0,1,2.56-20.9c.65-2.81,5.7,3.5,5.93,3.77a5.76,5.76,0,0,0,4.59,2.43c5.81.32,12.32-3.21,16.93-6.35a22.18,22.18,0,0,1,3.14-1.95,9.19,9.19,0,0,1,2.54-.72,15.28,15.28,0,0,1,8.64,1.75c3.47,1.72,6.51,4.19,10,6a28.06,28.06,0,0,0,8.92,2.82c3.14.43,6.9.64,8.51,3.36v0C710.33,836.54,709.37,839.58,707.47,841.36Z" transform="translate(-50 -46.63)" fill="#434175"/><path d="M707.47,842.4c-1.92,1.79-4.55,2.57-7.1,3.12a127.7,127.7,0,0,1-17.67,2.19l-5.77.44c-5.63.43-11.27.86-16.92.88a116.24,116.24,0,0,1-20.82-1.8,2.27,2.27,0,0,1-1.65-.79,9.26,9.26,0,0,1-1.29-2.36c.12-7,2-14.05,3.6-20.9.65-2.81,5.7,3.5,5.93,3.77a5.76,5.76,0,0,0,4.59,2.43c5.81.32,12.32-3.21,16.93-6.35a22.18,22.18,0,0,1,3.14-1.95,9.19,9.19,0,0,1,2.54-.72c-.75,4.18-6.74,9.23-9.84,10.77-6.26,3.11-13.7,1.55-20.68,1.92a3,3,0,0,0-1.47.35c-.83.56-.88,1.75-.86,2.75.06,1.66.27,3.62,1.72,4.46a4.94,4.94,0,0,0,2.32.49,327.89,327.89,0,0,0,51.57-1.81,28.23,28.23,0,0,0,8.4-1.87,21.44,21.44,0,0,0,4.87-3.14C711.21,836,709.37,840.62,707.47,842.4Z" transform="translate(-50 -46.63)" fill="#e8eaf2"/><path d="M693.09,421.69c-.1,2.73,1.76,8-3.35,6.55-3-.88-3.9-4.49-7.76-3.69s-4.76,5.57-6.06,8.68a16.59,16.59,0,0,1-12,9.72,7.26,7.26,0,0,1-3.31,0c-2.49-.71-3.91-3.28-4.93-5.66a44.08,44.08,0,0,1-2.18-6.22,25.31,25.31,0,0,1-.79-4.56h0a19.48,19.48,0,0,1,0-3.15c.46-6.21,4-11.87,8.52-16.15s10-7.38,15.45-10.43a22.9,22.9,0,0,1,5.7-2.54,19.21,19.21,0,0,1,6-.24,20.85,20.85,0,0,1,7.66,1.8,10.71,10.71,0,0,1,2.69,1.89,8.11,8.11,0,0,1,2.34,3.89c1,4-1.58,7.63-3.66,10.8C695.51,415.19,693.22,418.17,693.09,421.69Z" transform="translate(-50 -46.63)" fill="#434175"/><path d="M779,480.3c-1.09-2.75-5.67-10.36-4.35-13a33.77,33.77,0,0,1,3.49,6.24C779,475.69,778.32,478.55,779,480.3Z" transform="translate(-50 -46.63)" opacity="0.1"/><path d="M697.47,412.37c2.08-3.17,4.64-6.79,3.66-10.8a8.35,8.35,0,0,0-3-4.44,7.27,7.27,0,0,1,.76,1.87c1,4-1.58,7.62-3.66,10.8-1.85,2.82-4.14,5.81-4.28,9.32-.1,2.73,1.77,8-3.34,6.55-3-.88-3.9-4.49-7.77-3.69s-4.75,5.56-6.06,8.68a16.57,16.57,0,0,1-12,9.72,7.26,7.26,0,0,1-3.31,0,5.05,5.05,0,0,1-1.56-.77,6.76,6.76,0,0,0,3.77,3.34,7.44,7.44,0,0,0,3.32,0,16.63,16.63,0,0,0,12-9.73c1.31-3.12,2.16-7.86,6.06-8.67s4.72,2.8,7.77,3.68c5.11,1.48,3.24-3.82,3.34-6.55C693.33,418.18,695.63,415.19,697.47,412.37Z" transform="translate(-50 -46.63)" opacity="0.1"/><path d="M698.6,406.94a21.84,21.84,0,0,1-1.56,2.24,26.58,26.58,0,0,1-3.61,3.74c-.79.68-1.6,1.31-2.44,1.91a38.47,38.47,0,0,1-4.93,2.95,91.47,91.47,0,0,1-15.78,5.65l-10.54,3.07c-1.3,1-3.67,2.74-6.28,4.57a25.31,25.31,0,0,1-.79-4.56h0a19.48,19.48,0,0,1,0-3.15c.46-6.21,4-11.87,8.52-16.15s10-7.38,15.45-10.43a22.9,22.9,0,0,1,5.7-2.54,19.21,19.21,0,0,1,6-.24,20.85,20.85,0,0,1,7.66,1.8,10.71,10.71,0,0,1,2.69,1.89,10.14,10.14,0,0,1,1.35,2.86C700.7,402.7,699.78,405,698.6,406.94Z" transform="translate(-50 -46.63)" opacity="0.1"/><path d="M698.6,406.23a21.84,21.84,0,0,1-1.56,2.24,26.58,26.58,0,0,1-3.61,3.74c-.79.68-1.6,1.31-2.44,1.91a39.65,39.65,0,0,1-4.93,2.95,91.47,91.47,0,0,1-15.78,5.65l-10.54,3.06c-3.68,2.79-16,11.91-18.07,10.77-2.44-1.34,10.93-10.81,10.93-10.81l.61.47c-2-1.23-3-4.08-3.42-6.55-.78-4.42-1.15-9-.1-13.37s3.67-8.51,7.66-10.55c1.77-.92,3.92-1.53,5.2-2.93a4.4,4.4,0,0,0,.51-.69,2.08,2.08,0,0,0,.2-.36,4.32,4.32,0,0,1,.56-1.09c.73-.84,2.06-.59,3.17-.45l.36,0a5.68,5.68,0,0,0,.59,0c4,.09,7.81-2.12,11.82-2.12,4.39,0,8.13,2.54,12,4.28.78.35,1.52.67,2.22,1,2.8,1.3,4.9,2.69,6,6.38C700.7,402,699.78,404.31,698.6,406.23Z" transform="translate(-50 -46.63)" fill="#4d0d41"/><path d="M667.94,390.28a1.8,1.8,0,0,1-.42,2.32,3.2,3.2,0,0,1-1.66.59,11.2,11.2,0,0,1-1.3.1,3.58,3.58,0,0,1-1.71-.29,2.2,2.2,0,0,1-.3-.19,4.4,4.4,0,0,0,.51-.69c.1.08.2.06.59,0a9.13,9.13,0,0,0,2.14-.36,2.38,2.38,0,0,0,.8-.39,2.48,2.48,0,0,0,.76-1.15Z" transform="translate(-50 -46.63)" opacity="0.1"/><path d="M652.86,425.64a4.87,4.87,0,0,0,1.83.68,8.29,8.29,0,0,0,1.41.23,7.84,7.84,0,0,0,3.45-1" transform="translate(-50 -46.63)" opacity="0.1"/></svg>
diff --git a/site2/website/static/img/undraw_react.svg b/site2/website/static/img/undraw_react.svg
new file mode 100644
index 0000000..b2230d1
--- /dev/null
+++ b/site2/website/static/img/undraw_react.svg
@@ -0,0 +1 @@
+<svg id="a75d69e6-d07c-4db3-9c83-72b2470e5561" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="1108" height="731.18" viewBox="0 0 1108 731.18"><title>react</title><path d="M813.68,415.2l6.89-2.7c.66-.26,1.31-.54,2-.81a59.85,59.85,0,0,1,15.28-115.77l-4.8,24.2,18.22-23.92.16,0a59.87,59.87,0,0,1,51.16,67.45c-.15,1.13-.39,2.23-.6,3.34,5.61-4.43,10.87-9.32,14.81-15,8-11.54,10.71-25.76,13.47-43.17,5.47-34.48,10.4-69.34,14.84-104.18a59.83,59.83,0,0,1-42-65.36c.25-1.82.6-3.59,1-5.34.1-.44.2-.88.31-1.31.43-1.69.91-3.35,1.47-5,.09-.27.21-.52.3-.78.5-1.37,1-2.72,1.65-4,.22-.5.44-1,.67-1.47.69-1.43,1.42-2.83,2.22-4.19.27-.45.56-.88.83-1.33.62-1,1.27-2,1.94-2.93.36-.5.71-1,1.08-1.49l.27-.39,0,0a59.81,59.81,0,0,1,74.64-17l-6.24,31.49,18-23.64a59.5,59.5,0,0,1,16.32,68.62h.07c-.17.4-.38.78-.55,1.18-.33.74-.67,1.47-1,2.2-.46.93-1,1.84-1.45,2.74-.38.68-.75,1.36-1.16,2-.59,1-1.23,1.9-1.87,2.83-.38.54-.73,1.1-1.12,1.63-1,1.39-2.12,2.72-3.26,4-.4.45-.83.86-1.25,1.3-.81.86-1.62,1.71-2.48,2.52-.53.5-1.09,1-1.64,1.46-.79.7-1.6,1.38-2.43,2-.59.47-1.19.92-1.79,1.36-.87.63-1.75,1.22-2.64,1.81-.6.39-1.2.78-1.81,1.15-1,.61-2.05,1.17-3.1,1.72-.53.27-1,.57-1.59.83-1.58.77-3.2,1.48-4.85,2.11-.31.12-.64.21-.95.32-1.38.5-2.77,1-4.18,1.35-.61.17-1.23.31-1.85.46-1.15.28-2.31.54-3.48.76q-1,.18-2.07.33c-1.15.17-2.31.3-3.48.4-.69.06-1.37.12-2.07.16-1.26.06-2.53.07-3.8.06a2.08,2.08,0,0,0-.25,0q-2.82,22-5.92,44A59.82,59.82,0,0,1,1042,240.88l-15.68,26.58,25.21-16.59a59.68,59.68,0,0,1,11.5,44.16,58.76,58.76,0,0,1-4.5,15.94,59.83,59.83,0,0,1-111.19-4c-.23,1.48-.45,3-.68,4.46-2.44,15.35-5.47,34.46-16.23,50-7.29,10.56-17.33,18.36-27.09,25.22q-9.52,6.7-19.48,12.77a59.85,59.85,0,0,1-24.53,13.74q-16,8.19-32.69,14.81l-6.95,2.72c-6.25,2.44-12.65,4.94-19,7.6,1,.09,2,.17,3,.3a59.9,59.9,0,0,1,50.86,49.05l-42.31,23.11,42.18-1.89A59.16,59.16,0,0,1,843,534.54a59.87,59.87,0,0,1-82.7,11.74l2.1,3.91c1.4,2.58,2.78,5.15,4.12,7.7,18.33,34.74,19.66,64.74,3.75,84.49l-13-10.45c15.49-19.22,3.2-49.77-5.5-66.27-1.32-2.5-2.68-5-4-7.56C736,536.27,722.65,511.53,728,485.2,736,445.5,779.05,428.7,813.68,415.2Z" transform="translate(-46 -84.41)" fill="#f2f2f2"/><path d="M315.6,603.42l-5.38-2.11c-.52-.2-1-.43-1.54-.63a46.75,46.75,0,0,0-11.94-90.42l3.75,18.9-14.22-18.68h-.13a46.76,46.76,0,0,0-40,52.68c.12.89.31,1.74.47,2.61a55.84,55.84,0,0,1-11.56-11.73c-6.23-9-8.37-20.12-10.53-33.71C220.29,493.4,216.45,466.18,213,439a46.72,46.72,0,0,0,32.77-51.05c-.2-1.42-.47-2.8-.79-4.17l-.24-1c-.34-1.32-.71-2.62-1.15-3.88-.07-.21-.16-.41-.24-.61-.39-1.07-.82-2.12-1.28-3.15-.18-.38-.35-.77-.53-1.15-.54-1.11-1.11-2.2-1.73-3.26-.21-.36-.44-.7-.65-1-.49-.78-1-1.55-1.52-2.29-.28-.39-.55-.79-.84-1.17l-.21-.3h0a46.76,46.76,0,0,0-58.29-13.32l4.88,24.6-14.07-18.46a46.48,46.48,0,0,0-12.75,53.59h-.05c.13.31.29.61.43.92.26.58.52,1.15.8,1.72q.54,1.08,1.14,2.13c.29.54.58,1.07.9,1.59.46.75,1,1.48,1.46,2.21.3.42.57.86.88,1.27.8,1.08,1.65,2.12,2.54,3.13.31.35.65.67,1,1,.63.67,1.27,1.33,1.94,2,.41.4.85.77,1.28,1.14q.93.83,1.89,1.59c.46.36.93.71,1.4,1.06.68.49,1.37,1,2.06,1.41.47.31.94.61,1.42.9.79.48,1.6.91,2.42,1.34.42.22.82.45,1.24.66,1.24.6,2.5,1.15,3.79,1.64.24.1.5.16.74.25,1.07.39,2.16.75,3.27,1.06.47.13,1,.24,1.44.35.9.22,1.8.43,2.72.6l1.61.26c.9.13,1.81.23,2.72.31.54.05,1.07.09,1.62.12,1,.05,2,.06,3,.05h.19q2.2,17.22,4.62,34.41a46.71,46.71,0,0,0-67.48-8.14L149.49,488l-19.68-12.95a46.57,46.57,0,0,0-9,34.49A45.8,45.8,0,0,0,124.34,522a46.73,46.73,0,0,0,86.84-3.12c.18,1.15.35,2.32.53,3.48,1.9,12,4.27,26.92,12.67,39.08,5.7,8.24,13.54,14.33,21.16,19.69q7.44,5.24,15.21,10a46.88,46.88,0,0,0,19.16,10.74c8.32,4.26,16.84,8.14,25.54,11.56l5.42,2.13c4.88,1.9,9.88,3.85,14.81,5.93-.78.07-1.57.13-2.36.24A46.77,46.77,0,0,0,283.6,660l33,18-32.94-1.47a46.78,46.78,0,0,0,73.57,29.2c-.55,1-1.09,2-1.64,3.05-1.09,2-2.17,4-3.22,6-14.31,27.13-15.35,50.57-2.92,66l10.13-8.16c-12.1-15-2.5-38.87,4.3-51.76,1-1.95,2.09-3.92,3.16-5.9,9.19-17,19.61-36.37,15.46-56.94C376.29,627.08,342.64,614,315.6,603.42Z" transform="translate(-46 -84.41)" fill="#f2f2f2"/><ellipse cx="554" cy="707.68" rx="554" ry="23.5" fill="#3f3d56"/><ellipse cx="554" cy="707.68" rx="554" ry="23.5" opacity="0.1"/><ellipse cx="554" cy="694.68" rx="554" ry="23.5" fill="#3f3d56"/><path d="M131,770.73c-3-5.51.4-12.26,4.28-17.18s8.61-10,8.51-16.29c-.14-9-9.7-14.31-17.33-19.08a84.78,84.78,0,0,1-15.56-12.51,23,23,0,0,1-4.78-6.4c-1.58-3.52-1.53-7.52-1.43-11.38q.5-19.26,1.9-38.48" transform="translate(-46 -84.41)" fill="none" stroke="#3f3d56" stroke-miterlimit="10" stroke-width="4"/><path d="M92.11,648.7a14,14,0,0,1,7-11.49l3.14,6.21-.09-7.52a13.86,13.86,0,0,1,4.62-.56A14,14,0,1,1,92.11,648.7Z" transform="translate(-46 -84.41)" fill="#4d0d41"/><path d="M117.14,743.7a14,14,0,0,0,26.5-5.76,13.82,13.82,0,0,0-.91-5.69,14,14,0,0,0-26.27.15l8.77,7.13-9.64-2.24A13.89,13.89,0,0,0,117.14,743.7Z" transform="translate(-46 -84.41)" fill="#4d0d41"/><path d="M124.07,716.45a14,14,0,0,0,4.46-27.54l.07,5.79-3.18-6.29h0a14,14,0,0,0-1.31,28.05Z" transform="translate(-46 -84.41)" fill="#4d0d41"/><path d="M90,693.78a14,14,0,0,0,1.32-28,13.88,13.88,0,0,0-7.52,1.78l2.48,6.8-5.11-4.9a14,14,0,0,0-4.53,9.69A13.33,13.33,0,0,0,77,683,14,14,0,0,0,90,693.78Z" transform="translate(-46 -84.41)" fill="#4d0d41"/><path d="M94,652.44c3.24.36,6.39,1.37,9.64,1.57s6.82-.58,8.88-3.1c1.11-1.37,1.66-3.09,2.59-4.57a10.08,10.08,0,0,1,3.54-3.33,14,14,0,1,1-26.24,9.32C92.94,652.35,93.47,652.39,94,652.44Z" transform="translate(-46 -84.41)" opacity="0.1"/><path d="M90,693.78a14,14,0,0,0,13.35-20,10.4,10.4,0,0,0-2.82,2.83c-1,1.51-1.61,3.25-2.78,4.64-2.19,2.57-5.92,3.41-9.31,3.25s-6.66-1.11-10-1.42c-.47,0-.94-.08-1.41-.09A14,14,0,0,0,90,693.78Z" transform="translate(-46 -84.41)" opacity="0.1"/><path d="M124.07,716.45a14,14,0,0,0,13.47-19.76,11.36,11.36,0,0,0-3,2.85c-1.09,1.54-1.77,3.31-3,4.73-2.36,2.64-6.34,3.57-9.93,3.48s-6.82-.93-10.28-1.19A14,14,0,0,0,124.07,716.45Z" transform="translate(-46 -84.41)" opacity="0.1"/><path d="M117.14,743.7a14,14,0,0,0,26.5-5.76,13.82,13.82,0,0,0-.91-5.69,14,14,0,0,0-3.08,2.74c-1.34,1.63-2.21,3.47-3.76,5-2.87,2.82-7.5,4-11.62,4.09A62.35,62.35,0,0,1,117.14,743.7Z" transform="translate(-46 -84.41)" opacity="0.1"/><path d="M152.19,764.39s-11.08-.34-14.41-2.72-17-5.22-17.87-1.4-16.65,19-4.14,19.06,29.06-2,32.39-4S152.19,764.39,152.19,764.39Z" transform="translate(-46 -84.41)" fill="#656380"/><path d="M115.54,778c12.51.1,29.06-2,32.4-4,2.53-1.54,3.54-7.09,3.88-9.65l.37,0s-.7,8.93-4,11-19.89,4.08-32.39,4c-3.61,0-4.86-1.31-4.79-3.22C111.48,777.26,112.86,778,115.54,778Z" transform="translate(-46 -84.41)" opacity="0.2"/><path d="M1101,779.73c-3-5.51.4-12.26,4.28-17.18s8.61-10,8.51-16.29c-.14-9-9.7-14.31-17.33-19.08a84.78,84.78,0,0,1-15.56-12.51,23,23,0,0,1-4.78-6.4c-1.58-3.52-1.53-7.52-1.43-11.38q.49-19.26,1.9-38.48" transform="translate(-46 -84.41)" fill="none" stroke="#3f3d56" stroke-miterlimit="10" stroke-width="4"/><path d="M1062.11,657.7a14,14,0,0,1,7-11.49l3.14,6.21-.09-7.52a13.86,13.86,0,0,1,4.62-.56,14,14,0,1,1-14.68,13.36Z" transform="translate(-46 -84.41)" fill="#4d0d41"/><path d="M1087.14,752.7a14,14,0,0,0,26.5-5.76,13.82,13.82,0,0,0-.91-5.69,14,14,0,0,0-26.27.15l8.77,7.13-9.64-2.24A13.89,13.89,0,0,0,1087.14,752.7Z" transform="translate(-46 -84.41)" fill="#4d0d41"/><path d="M1094.07,725.45a14,14,0,0,0,4.46-27.54l.07,5.79-3.18-6.29h0a14,14,0,0,0-1.31,28.05Z" transform="translate(-46 -84.41)" fill="#4d0d41"/><path d="M1060,702.78a14,14,0,0,0,1.32-28,13.88,13.88,0,0,0-7.52,1.78l2.48,6.8-5.11-4.9a14,14,0,0,0-4.53,9.69A13.33,13.33,0,0,0,1047,692,14,14,0,0,0,1060,702.78Z" transform="translate(-46 -84.41)" fill="#4d0d41"/><path d="M1064,661.44c3.24.36,6.39,1.37,9.64,1.57s6.82-.58,8.88-3.1c1.11-1.37,1.66-3.09,2.59-4.57a10.08,10.08,0,0,1,3.54-3.33,14,14,0,1,1-26.24,9.32C1062.94,661.35,1063.47,661.39,1064,661.44Z" transform="translate(-46 -84.41)" opacity="0.1"/><path d="M1060,702.78a14,14,0,0,0,13.35-20,10.4,10.4,0,0,0-2.82,2.83c-1,1.51-1.61,3.25-2.78,4.64-2.19,2.57-5.92,3.41-9.31,3.25s-6.66-1.11-10-1.42c-.47,0-.94-.08-1.41-.09A14,14,0,0,0,1060,702.78Z" transform="translate(-46 -84.41)" opacity="0.1"/><path d="M1094.07,725.45a14,14,0,0,0,13.47-19.76,11.36,11.36,0,0,0-3,2.85c-1.09,1.54-1.77,3.31-3,4.73-2.36,2.64-6.34,3.57-9.93,3.48s-6.82-.93-10.28-1.19A14,14,0,0,0,1094.07,725.45Z" transform="translate(-46 -84.41)" opacity="0.1"/><path d="M1087.14,752.7a14,14,0,0,0,26.5-5.76,13.82,13.82,0,0,0-.91-5.69,14,14,0,0,0-3.08,2.74c-1.34,1.63-2.21,3.47-3.76,5-2.87,2.82-7.5,4-11.62,4.09A62.35,62.35,0,0,1,1087.14,752.7Z" transform="translate(-46 -84.41)" opacity="0.1"/><path d="M1122.19,773.39s-11.08-.34-14.41-2.72-17-5.22-17.87-1.4-16.65,19-4.14,19.06,29.06-2,32.39-4S1122.19,773.39,1122.19,773.39Z" transform="translate(-46 -84.41)" fill="#656380"/><path d="M1085.54,787c12.51.1,29.06-2,32.4-4,2.53-1.54,3.54-7.09,3.88-9.65l.37,0s-.7,8.93-4,11-19.89,4.08-32.39,4c-3.61,0-4.86-1.31-4.79-3.22C1081.48,786.26,1082.86,787,1085.54,787Z" transform="translate(-46 -84.41)" opacity="0.2"/><path d="M791.57,415.56q-9.92-3.4-20-6.3,1.66-6.79,3.09-13.65c15.14-73.51,5.24-132.73-28.57-152.22-32.42-18.7-85.44.8-139,47.39q-7.92,6.92-15.47,14.2-5.07-4.85-10.3-9.51C525.21,245.64,469,224.65,435.18,244.2c-32.39,18.75-42,74.42-28.35,144.09q2,10.35,4.59,20.58c-7.95,2.26-15.64,4.67-23,7.24C322.63,439,280.61,475,280.61,512.29c0,38.51,45.11,77.14,113.64,100.56q8.34,2.83,16.8,5.26-2.74,11-4.88,22.18c-13,68.46-2.84,122.82,29.46,141.45C469,801,525,781.2,579.52,733.54c4.31-3.77,8.63-7.77,13-11.95q8.18,7.89,16.79,15.32c52.82,45.45,105,63.81,137.26,45.12,33.33-19.29,44.16-77.69,30.1-148.73q-1.6-8.14-3.73-16.61,5.91-1.74,11.56-3.61c71.24-23.6,117.6-61.76,117.6-100.79,0-37.43-43.38-73.62-110.5-96.73Z" transform="translate(-46 -84.41)" fill="#53c1de"/><path d="M776.12,587.88c-3.4,1.13-6.88,2.21-10.44,3.27a621.6,621.6,0,0,0-31.47-78.73,623.06,623.06,0,0,0,30.25-77.58c6.35,1.84,12.53,3.78,18.47,5.83,57.51,19.79,92.59,49.06,92.59,71.62,0,24-37.89,55.21-99.4,75.59ZM750.6,638.46c6.22,31.41,7.1,59.81,3,82-3.7,19.95-11.14,33.25-20.34,38.58-19.59,11.33-61.47-3.4-106.64-42.27q-7.77-6.69-15.63-14.25a624.23,624.23,0,0,0,52.09-66.14,620.2,620.2,0,0,0,84.17-13q1.9,7.68,3.37,15ZM492.48,757.1c-19.14,6.76-34.38,6.95-43.59,1.64-19.6-11.31-27.75-55-16.63-113.5q2-10.37,4.53-20.63a625.79,625.79,0,0,0,83.75,12.13,645.09,645.09,0,0,0,53.35,65.9q-5.79,5.61-11.84,10.91c-24.11,21.08-48.28,36-69.57,43.55ZM402.84,587.73c-30.31-10.36-55.33-23.82-72.49-38.5-15.41-13.2-23.19-26.31-23.19-36.94,0-22.63,33.74-51.5,90-71.11q10.6-3.69,21.39-6.73a637.08,637.08,0,0,0,30.29,78.48,646.29,646.29,0,0,0-30.66,79.6Q410.44,590.32,402.84,587.73Zm30.05-204.54c-11.68-59.69-3.93-104.72,15.59-116,20.79-12,66.76,5.12,115.22,48.15,3.1,2.75,6.21,5.63,9.32,8.6a635.89,635.89,0,0,0-52.93,65.52,648.42,648.42,0,0,0-82.93,12.89q-2.39-9.52-4.27-19.15ZM701,449.38q-9.11-15.74-18.89-31.08c19.83,2.51,38.82,5.83,56.66,9.91a565.54,565.54,0,0,1-19.89,53.51q-8.61-16.35-17.88-32.34ZM591.64,342.91a569.3,569.3,0,0,1,36.57,44.14q-36.71-1.73-73.45,0c12.07-15.92,24.44-30.72,36.88-44.13Zm-110,106.65q-9.15,15.87-17.55,32.14c-7.73-18.33-14.34-36.36-19.74-53.77,17.73-4,36.64-7.21,56.34-9.68Q490.77,433.69,481.62,449.56Zm19.61,158.65A564.64,564.64,0,0,1,444,599c5.49-17.71,12.25-36.13,20.15-54.86q8.43,16.29,17.61,32.16Q491.1,592.49,501.23,608.21Zm91.14,75.33C579.79,670,567.24,655,555,638.79q17.85.71,36.36.71,19,0,37.51-.84A563.94,563.94,0,0,1,592.37,683.54ZM719.08,543.19A562.82,562.82,0,0,1,740,597.85a561.35,561.35,0,0,1-58,9.89q9.85-15.63,19.08-31.63,9.38-16.26,18-32.92Zm-41,19.66q-14.12,24.52-29.81,48.1c-18.44,1.32-37.49,2-56.91,2s-38.15-.6-56.27-1.78Q519,587.67,504.7,563t-26.51-50.08q12.27-25.53,26.43-50.1h0q14.14-24.56,30.13-48c18.49-1.4,37.43-2.13,56.59-2.13s38.22.74,56.69,2.14q15.81,23.37,30,47.81t26.79,49.87q-12.45,25.62-26.71,50.3Zm54.77-296.46c20.81,12,28.9,60.4,15.83,123.87q-1.29,6.19-2.8,12.35a635.74,635.74,0,0,0-83.09-13.13,625.16,625.16,0,0,0-52.53-65.56q7-6.74,14.29-13.11c45.88-39.93,88.76-55.69,108.3-44.42Z" transform="translate(-46 -84.41)" fill="#fff"/><path d="M591.34,456.79a55.5,55.5,0,1,1-55.5,55.5,55.49,55.49,0,0,1,55.5-55.5" transform="translate(-46 -84.41)" fill="#53c1de"/><path d="M605.26,104.81a16.6,16.6,0,1,1-16.6-16.6A16.52,16.52,0,0,1,605.26,104.81Z" transform="translate(-46 -84.41)" fill="#3f3d56"/><path d="M575.4,109a16.62,16.62,0,0,1,12.49-24.54,16.6,16.6,0,1,0,1.41,33.07A16.6,16.6,0,0,1,575.4,109Z" transform="translate(-46 -84.41)" fill="#3f3d56"/><rect x="521.91" y="43.52" width="44.47" height="69.37" fill="#3f3d56"/><rect x="521.91" y="43.52" width="44.47" height="69.37" opacity="0.1"/><path d="M497.66,379.61s-4.75,13.05-16,14.83-17.79,4.74-17.79,4.74l26.68,17.19,14.23-1.78s1.78-18.38,7.71-22.53S497.66,379.61,497.66,379.61Z" transform="translate(-46 -84.41)" fill="#a0616a"/><path d="M690.34,379.61s4.75,13.05,16,14.83,17.79,4.74,17.79,4.74l-26.68,17.19-14.23-1.78s-1.78-18.38-7.71-22.53S690.34,379.61,690.34,379.61Z" transform="translate(-46 -84.41)" fill="#a0616a"/><path d="M560.5,264.59s-7.11,3.56-9.48,10.68c0,0-13,4.15-20.16,15.41,0,0-8.9,9.49-10.08,14.23S506,338.11,506,338.11s-13.64,44.47-20.75,49.21c0,0,22.53-4.74,26.68,17.79,0,0,5.33,0,11.26-20.75s20.16-46.25,20.16-46.25,4.74-17.78,8.89-20.75,10.67-16.6,16.6-13,45.06-.6,45.06-.6S637,314.4,637.58,321.51s4.74,7.71,5.33,13.64,22.53,52.76,22.53,52.76,4.15,13,5.34,16c0,0,13-31.42,30.24-13.63,0,0-.6-11.86-5.93-19s-28.46-62.84-28.46-62.84-2.37-8.3-4.74-10.67-20.76-21.35-27.28-21.35c0,0-3.55-8.89-7.7-10.08Z" transform="translate(-46 -84.41)" fill="#3f3d56"/><path d="M507.14,410.44a28.89,28.89,0,0,1-28.22-3.79,56.37,56.37,0,0,0-12.59-7.3c-6.29-2.54-13.81-4.42-16.1-.17-4.15,7.71,50.39,26.68,50.39,26.68S507.74,421.71,507.14,410.44Z" transform="translate(-46 -84.41)" fill="#3f3d56"/><path d="M680.86,410.44a28.89,28.89,0,0,0,28.22-3.79,56.37,56.37,0,0,1,12.59-7.3c6.29-2.54,13.81-4.42,16.1-.17,4.15,7.71-50.39,26.68-50.39,26.68S680.26,421.71,680.86,410.44Z" transform="translate(-46 -84.41)" fill="#3f3d56"/><path d="M579.88,167.08c-.22,2.06-.9,4.29-2.66,5.38-1.44.9-3.26.83-4.92,1.17a11.46,11.46,0,0,0-7.82,6.77,17.51,17.51,0,0,0-.75,10.55,39.22,39.22,0,0,0,1.52,5.06c1.74,4.92,3.84,9.8,7.09,13.89a59,59,0,0,0,9.3,8.77c2.11,1.72,4.29,3.47,6.89,4.28a21.75,21.75,0,0,0,5.4.72c2.25.1,4.65.17,6.6-.95,3-1.73,3.89-5.55,5.52-8.62,1.38-2.6,3.44-4.81,4.73-7.46a29.49,29.49,0,0,0,2-6.52l2.77-12.3c1-4.47,1.92-9.51-.59-13.34a2.28,2.28,0,0,0-.74-.77,2.79,2.79,0,0,0-1.52-.15,16.44,16.44,0,0,1-9.15-2.09,3.93,3.93,0,0,1-1.15-.9,4.72,4.72,0,0,1-.7-2.12,22.2,22.2,0,0,0-1.28-4.45,3,3,0,0,0-.87-1.34,3.15,3.15,0,0,0-1.41-.47,114.47,114.47,0,0,0-12.93-1.35c-1.42-.07-3.56-.64-4.54.62S580,165.58,579.88,167.08Z" transform="translate(-46 -84.41)" fill="#a0616a"/><path d="M579.88,167.08c-.22,2.06-.9,4.29-2.66,5.38-1.44.9-3.26.83-4.92,1.17a11.46,11.46,0,0,0-7.82,6.77,17.51,17.51,0,0,0-.75,10.55,39.22,39.22,0,0,0,1.52,5.06c1.74,4.92,3.84,9.8,7.09,13.89a59,59,0,0,0,9.3,8.77c2.11,1.72,4.29,3.47,6.89,4.28a21.75,21.75,0,0,0,5.4.72c2.25.1,4.65.17,6.6-.95,3-1.73,3.89-5.55,5.52-8.62,1.38-2.6,3.44-4.81,4.73-7.46a29.49,29.49,0,0,0,2-6.52l2.77-12.3c1-4.47,1.92-9.51-.59-13.34a2.28,2.28,0,0,0-.74-.77,2.79,2.79,0,0,0-1.52-.15,16.44,16.44,0,0,1-9.15-2.09,3.93,3.93,0,0,1-1.15-.9,4.72,4.72,0,0,1-.7-2.12,22.2,22.2,0,0,0-1.28-4.45,3,3,0,0,0-.87-1.34,3.15,3.15,0,0,0-1.41-.47,114.47,114.47,0,0,0-12.93-1.35c-1.42-.07-3.56-.64-4.54.62S580,165.58,579.88,167.08Z" transform="translate(-46 -84.41)" opacity="0.1"/><path d="M571.85,174.15a26.93,26.93,0,0,0-7.13-1.12c-5.72-.14-11.84,1.83-15.14,6.5A15.34,15.34,0,0,0,547.29,191a23.57,23.57,0,0,0,5.2,10.66,32,32,0,0,1,4,5.24c1.58,3,1.63,6.59,2.06,10,1,8.12,4.46,15.75,5.83,23.82s.19,17.42-6.18,22.55c-1.07.86-2.37,1.77-2.46,3.14-.14,2.19,2.71,3.12,4.9,3.33,6.55.62,13.27,1.23,19.63-.46,2.63-.7,5.17-1.79,7.85-2.29,6.8-1.27,13.64,1.34,20.45,2.59a90.61,90.61,0,0,0,14.91,1.21,7.94,7.94,0,0,0,3.43-.45,2.75,2.75,0,0,0,1.74-2.74,4.76,4.76,0,0,0-1.18-2c-3.44-4.25-4.49-9.9-5.43-15.29l-3.15-18.11c-1.69-9.68-3.26-20.2,1.32-28.89,3.29-6.25,9.36-10.65,12.83-16.8a9.84,9.84,0,0,0,1.55-6.28c-.52-3.09-3.31-5.3-6.17-6.59A23.21,23.21,0,0,0,611,173c.1,4.33-1,8.71-1.71,13l-1.21,7a88.83,88.83,0,0,1-2.71,12.2,12.85,12.85,0,0,1-2.17,4.42,11.43,11.43,0,0,1-3.83,2.79,22.83,22.83,0,0,1-10.14,2.32,13.54,13.54,0,0,1-4.48-.69,19,19,0,0,1-6.17-4.34,10.11,10.11,0,0,1-1.63-1.77,9.93,9.93,0,0,1-1.11-2.67,55.42,55.42,0,0,1-1.91-7.48c-.3-1.94-.4-3.91-.54-5.87C573,186.12,573,179.72,571.85,174.15Z" transform="translate(-46 -84.41)" fill="#4d0d41"/><path d="M565.84,288.9s-2.37,31.43,12.45,36.76,1.78-26.09,1.78-26.09l-4.75-9.48Z" transform="translate(-46 -84.41)" fill="#a0616a"/><path d="M616.23,288.9s2.37,31.43-12.45,36.76S602,299.57,602,299.57l4.75-9.48Z" transform="translate(-46 -84.41)" fill="#a0616a"/><path d="M552.79,184l-4.74,7.71s4.15,26.68,4.74,31.42a62.2,62.2,0,0,0,2.38,10.08s.59,14.23.59,19.57,3,14.23,3,14.23a64.82,64.82,0,0,0,3,14.82c2.37,6.52,4.74,14.23,4.74,14.23s3-8.3,14.82,4.15a7.18,7.18,0,0,0,0-10.08s-3.55-16-3.55-24.31-6.53-48-6.53-48S567,172.7,552.79,184Z" transform="translate(-46 -84.41)" opacity="0.1"/><path d="M551.61,183.37l-4.74,7.71s4.15,26.68,4.74,31.42A61.84,61.84,0,0,0,554,232.58s.59,14.23.59,19.56,3,14.23,3,14.23a64.53,64.53,0,0,0,3,14.82c2.37,6.53,4.75,14.23,4.75,14.23s3-8.3,14.82,4.15a7.18,7.18,0,0,0,0-10.07s-3.56-16-3.56-24.31-6.52-48-6.52-48S565.84,172.1,551.61,183.37Z" transform="translate(-46 -84.41)" fill="#4d0d41"/><path d="M629.87,179.22l3,3.53s3.49,20.18-4.22,45.68l-2.37,23.12s-4.15,19.57-4.74,24.31-.59,5.33-1.78,7.11a2.29,2.29,0,0,0,0,3l-3.56,13s-5.33-6.52-16,1.78c0,0-3-4.74-.6-8.89s2.37-5.93,1.78-7.12,2.37-7.11,2.37-8.3S607.93,248,607.93,248s1.78-26.68,3.56-35.57c1.09-5.47,1.07-17.66.88-26.24-.19-8.94,10.63-13.78,17-7.5C629.52,178.85,629.7,179,629.87,179.22Z" transform="translate(-46 -84.41)" opacity="0.1"/><path d="M631.65,178l3,3.53s3.49,20.19-4.22,45.68l-2.37,23.12s-4.15,19.57-4.74,24.31-.6,5.34-1.78,7.12a2.28,2.28,0,0,0,0,3L618,297.8s-5.33-6.53-16,1.77c0,0-3-4.74-.59-8.89s2.37-5.93,1.78-7.11,2.37-7.12,2.37-8.3,4.15-28.46,4.15-28.46,1.78-26.68,3.56-35.58.59-35.57.59-35.57S623.35,169.14,631.65,178Z" transform="translate(-46 -84.41)" fill="#4d0d41"/><circle cx="545.92" cy="61.61" r="23.72" fill="#a0616a"/><path d="M604.29,110.41a16.6,16.6,0,0,1-31.09.44c9.26-3.73,18.72-.41,18.72-.41C596.65,108.78,600.75,108.93,604.29,110.41Z" transform="translate(-46 -84.41)" opacity="0.1"/><path d="M591.92,111.63s-45.65-16-34.38,61.66c0,0,10.08,6.52,17.78,2.37,0,0-5.33-53.95,15.42-51.58s17.19,50.4,17.19,50.4,11.86,3.55,15.42-3S622.16,101,591.92,111.63Z" transform="translate(-46 -84.41)" fill="#3f3d56"/><path d="M590.74,120.52c-14.24-1.62-16.2,23.27-16,39.05.17-15.69,2.81-37,16-35.49,14.81,1.69,17.24,26.66,17.41,40.8C608.32,151.9,606.9,122.37,590.74,120.52Z" transform="translate(-46 -84.41)" opacity="0.1"/><path d="M557.54,169.73a159.38,159.38,0,0,1-1.77-20.53,152.12,152.12,0,0,0,1.77,24.09s10.08,6.52,17.78,2.37c0,0-.12-1.28-.26-3.43C567.39,176.1,557.54,169.73,557.54,169.73Z" transform="translate(-46 -84.41)" opacity="0.1"/><path d="M623.35,168c-3.32,6.08-13.83,3.41-15.25,3-.07,2.2-.17,3.52-.17,3.52s11.86,3.55,15.42-3c.73-1.34,1.11-5.13,1-10.2C624.25,164.57,623.9,167,623.35,168Z" transform="translate(-46 -84.41)" opacity="0.1"/><path d="M872.73,757.37c4.74-8.78-.64-19.54-6.82-27.37s-13.73-16-13.57-26c.23-14.35,15.45-22.81,27.62-30.42a134.77,134.77,0,0,0,24.79-19.93c3-3.05,5.87-6.31,7.62-10.21,2.52-5.6,2.45-12,2.29-18.12q-.79-30.71-3-61.34" transform="translate(-46 -84.41)" fill="none" stroke="#3f3d56" stroke-miterlimit="10" stroke-width="4"/><path d="M934.74,562.9a22.31,22.31,0,0,0-11.16-18.32l-5,9.9.15-12a22.37,22.37,0,1,0,16,20.41Z" transform="translate(-46 -84.41)" fill="#4d0d41"/><path d="M894.86,714.29a22.36,22.36,0,1,1,1.08-18l-14,11.37,15.37-3.57A22.25,22.25,0,0,1,894.86,714.29Z" transform="translate(-46 -84.41)" fill="#4d0d41"/><path d="M883.81,670.86A22.37,22.37,0,0,1,876.72,627l-.12,9.22,5.06-10h.06a22.37,22.37,0,1,1,2.09,44.69Z" transform="translate(-46 -84.41)" fill="#4d0d41"/><path d="M938.11,634.73A22.37,22.37,0,1,1,948,592.87l-4,10.83,8.13-7.8a22.37,22.37,0,0,1-14.07,38.83Z" transform="translate(-46 -84.41)" fill="#4d0d41"/><path d="M931.74,568.86c-5.17.57-10.19,2.18-15.37,2.5s-10.87-.92-14.14-5c-1.77-2.17-2.65-4.91-4.14-7.28a16,16,0,0,0-5.63-5.3,22.37,22.37,0,1,0,41.81,14.84C933.42,568.71,932.58,568.77,931.74,568.86Z" transform="translate(-46 -84.41)" opacity="0.1"/><path d="M938.11,634.73a22.39,22.39,0,0,1-21.28-31.91,16.37,16.37,0,0,1,4.5,4.51c1.59,2.4,2.56,5.18,4.43,7.39,3.48,4.09,9.44,5.43,14.84,5.19s10.6-1.78,16-2.28c.75-.06,1.5-.11,2.26-.13A22.37,22.37,0,0,1,938.11,634.73Z" transform="translate(-46 -84.41)" opacity="0.1"/><path d="M883.81,670.86a22.37,22.37,0,0,1-21.46-31.49,17.83,17.83,0,0,1,4.73,4.55c1.74,2.45,2.82,5.27,4.86,7.54,3.77,4.2,10.11,5.68,15.83,5.54,5.54-.12,10.87-1.48,16.38-1.9A22.36,22.36,0,0,1,883.81,670.86Z" transform="translate(-46 -84.41)" opacity="0.1"/><path d="M894.86,714.29A22.37,22.37,0,0,1,854.08,696a22.27,22.27,0,0,1,4.91,4.38c2.13,2.59,3.53,5.53,6,7.94,4.57,4.49,11.95,6.34,18.52,6.51A97.1,97.1,0,0,0,894.86,714.29Z" transform="translate(-46 -84.41)" opacity="0.1"/><path d="M839,747.26s17.65-.54,23-4.33,27.16-8.31,28.48-2.24,26.53,30.22,6.6,30.38-46.31-3.1-51.62-6.34S839,747.26,839,747.26Z" transform="translate(-46 -84.41)" fill="#656380"/><path d="M897.4,769c-19.93.16-46.31-3.11-51.62-6.34-4-2.47-5.65-11.3-6.19-15.38l-.59,0s1.12,14.24,6.43,17.47,31.69,6.5,51.62,6.34c5.75,0,7.74-2.09,7.63-5.12C903.88,767.78,901.69,768.92,897.4,769Z" transform="translate(-46 -84.41)" opacity="0.2"/><path d="M369,127.27l-18.25,11.57,11.08-20.15a18,18,0,0,0-11-3.94h-.3a21.58,21.58,0,0,1-3.78-.28l-6.19,3.92,2.65-4.82a22.06,22.06,0,0,1-10.82-8.21l-11.07,7,7-12.72c-6.48-7.77-15.2-12.54-24.81-12.54-11.51,0-21.76,6.85-28.38,17.52a21.24,21.24,0,0,1-18.76,10.12l-.62,0c-12.71,0-23,14.41-23,32.19s10.3,32.18,23,32.18a17.2,17.2,0,0,0,8-2c8.29-4.31,19.17-4.39,27.85-.54a29,29,0,0,0,23.68.05c8.62-3.77,19.37-3.69,27.61.54a17.23,17.23,0,0,0,7.93,2c12.71,0,23-14.41,23-32.18A40.86,40.86,0,0,0,369,127.27Z" transform="translate(-46 -84.41)" fill="#f2f2f2"/><path d="M334.59,174.36a34,34,0,0,0-19.72,2.14,29,29,0,0,1-23.67-.05c-8.69-3.85-19.57-3.77-27.86.54a17.2,17.2,0,0,1-8,2c-11.29,0-20.68-11.38-22.64-26.38a21.58,21.58,0,0,0,5.64-6.08C245,135.87,255.21,129,266.72,129s21.64,6.77,28.26,17.32a21.79,21.79,0,0,0,18.76,10.31H314C323,156.64,330.8,163.85,334.59,174.36Z" transform="translate(-46 -84.41)" opacity="0.03"/><path d="M846.07,150.83,837,156.6l5.53-10a9,9,0,0,0-5.51-2h-.14a10.79,10.79,0,0,1-1.89-.14l-3.09,2L833.2,144a11,11,0,0,1-5.4-4.09l-5.52,3.5,3.49-6.34a16.17,16.17,0,0,0-12.37-6.26c-5.75,0-10.86,3.42-14.16,8.74a10.57,10.57,0,0,1-9.36,5h-.31c-6.34,0-11.48,7.19-11.48,16s5.14,16.05,11.48,16.05a8.62,8.62,0,0,0,4-1,16.56,16.56,0,0,1,13.89-.27,14.52,14.52,0,0,0,11.81,0,16.58,16.58,0,0,1,13.77.27,8.61,8.61,0,0,0,4,1c6.34,0,11.48-7.18,11.48-16.05A20.28,20.28,0,0,0,846.07,150.83Z" transform="translate(-46 -84.41)" fill="#f2f2f2"/><path d="M828.92,174.32a17,17,0,0,0-9.83,1.07,14.52,14.52,0,0,1-11.81,0,16.58,16.58,0,0,0-13.9.27,8.55,8.55,0,0,1-4,1c-5.64,0-10.32-5.67-11.3-13.15a10.93,10.93,0,0,0,2.82-3c3.3-5.32,8.42-8.73,14.16-8.73s10.79,3.37,14.09,8.63a10.85,10.85,0,0,0,9.36,5.14h.15C823.15,165.48,827,169.08,828.92,174.32Z" transform="translate(-46 -84.41)" opacity="0.03"/><path d="M250.34,300.27,265,309.55l-8.88-16.15a14.48,14.48,0,0,1,8.85-3.15h.23a17.08,17.08,0,0,0,3-.22l4.95,3.14L271,289.31a17.78,17.78,0,0,0,8.67-6.58l8.87,5.62L283,278.16c5.19-6.22,12.18-10,19.87-10,9.23,0,17.44,5.48,22.75,14a17,17,0,0,0,15,8.11h.5c10.18,0,18.43,11.54,18.43,25.78s-8.25,25.79-18.43,25.79a13.86,13.86,0,0,1-6.43-1.61,26.59,26.59,0,0,0-22.31-.43,23.28,23.28,0,0,1-19,0,26.64,26.64,0,0,0-22.12.43,13.9,13.9,0,0,1-6.35,1.57c-10.19,0-18.44-11.54-18.44-25.79A32.78,32.78,0,0,1,250.34,300.27Z" transform="translate(-46 -84.41)" fill="#f2f2f2"/><path d="M277.89,338a27.36,27.36,0,0,1,15.8,1.72,23.28,23.28,0,0,0,19,0,26.61,26.61,0,0,1,22.32.43,13.82,13.82,0,0,0,6.42,1.61c9.05,0,16.57-9.11,18.14-21.13a17.44,17.44,0,0,1-4.52-4.88c-5.31-8.54-13.52-14-22.75-14s-17.33,5.42-22.64,13.88a17.44,17.44,0,0,1-15,8.25h-.23C287.17,323.81,280.93,329.59,277.89,338Z" transform="translate(-46 -84.41)" opacity="0.03"/></svg>
diff --git a/site2/website/static/img/undraw_tweetstorm.svg b/site2/website/static/img/undraw_tweetstorm.svg
new file mode 100644
index 0000000..2fa8b0f
--- /dev/null
+++ b/site2/website/static/img/undraw_tweetstorm.svg
@@ -0,0 +1 @@
+<svg id="5315dcf4-9ab7-45f5-a3d8-2e76525705db" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="813.15" height="752" viewBox="0 0 813.15 752"><title>tweetstorm</title><polygon points="559.73 403.7 347.86 352.67 347.86 752 559.73 696.54 559.73 403.7" fill="#e0e0e0"/><polygon points="559.73 403.7 347.86 352.67 347.86 752 559.73 696.54 559.73 403.7" opacity="0.1"/><polygon points="135.99 403.7 347.86 352.67 347.86 752 135.99 697.65 135.99 403.7" fill="#e0e0e0"/><polygon points="135.99 401.93 347.86 350.91 347.86 752 135.99 697.65 135.99 401.93" opacity="0.17"/><polygon points="346.09 354.44 457.68 261.71 669.54 316.07 557.96 405.46 346.09 354.44" fill="#e0e0e0"/><polygon points="29.05 318.94 137.76 405.46 349.62 354.44 242.03 263.48 29.05 318.94" fill="#e0e0e0"/><polygon points="27.29 317.18 138.64 405.46 350.51 354.44 240.26 261.71 27.29 317.18" opacity="0.05"/><polygon points="135.99 403.7 135.99 697.65 347.86 752 350.72 460.27 135.99 403.7" fill="#e0e0e0"/><polygon points="559.73 696.54 347.86 752 347.86 460.27 559.73 403.7 559.73 696.54" fill="#e0e0e0"/><polygon points="559.73 696.54 347.86 752 347.86 460.27 559.73 403.7 559.73 696.54" opacity="0.07"/><polygon points="475.42 598.92 475.42 695.43 559.73 672.13 559.73 575.63 475.42 598.92" opacity="0.07"/><polygon points="133.22 556.22 251.91 586.17 347.31 508.52 347.31 460.82 135.44 407.58 133.22 556.22" opacity="0.1"/><polygon points="561.39 556.22 442.7 586.17 347.31 508.52 347.31 460.82 559.17 407.58 561.39 556.22" opacity="0.1"/><path d="M452.66,473.1l8.21-1.64s-6.9,7.72-8.21,8.21h0a33.05,33.05,0,0,0,0,4.93c-15.77,67.69-73.93,37.79-73.93,37.79,21.19.49,23-8.21,23-8.21-12.32-1.81-14.79-9.86-14.79-9.86a5.08,5.08,0,0,0,6.57-1.64c-13.31-3.45-11.5-16.43-11.5-16.43,2.3,2,5.91,2.79,8.05,3.12-1.48-1.81-14-16.76-6.41-24.48,0,0,9.2,16.43,33.35,17.91l1.64-.33a12.89,12.89,0,0,1-.33-3.61,17.25,17.25,0,0,1,17.25-17.25c11.5,0,14,6.57,14,6.57l8.21-4.93C457.59,463.24,456.77,471.46,452.66,473.1Z" transform="translate(-193.43 -74)" fill="#00aced"/><polygon points="135.99 403.7 27.29 493.55 239.15 546.79 347.86 460.27 135.99 403.7" fill="#e0e0e0"/><path d="M618.25,470.91l4.06-5.65s.18,8.6-.34,9.65h0a27.47,27.47,0,0,0,2.79,3c28.77,50.08-23.53,64.86-23.53,64.86,13.16-11.71,9.33-18,9.33-18C602,530.62,596,527.12,596,527.12a4.22,4.22,0,0,0,3.06-4.72c-10,5.44-16.3-3.47-16.3-3.47,2.52-.1,5.18-1.65,6.66-2.66-1.92-.26-18-2.27-17.77-11.25,0,0,14.9,4.77,30.42-8l.81-1.13a10.71,10.71,0,0,1-2.25-2,14.33,14.33,0,0,1,.71-20.26c7-6.52,12.21-3.92,12.21-3.92l2.2-7.65C615.66,462.13,619.81,467.58,618.25,470.91Z" transform="translate(-193.43 -74)" fill="#4d0d41"/><polygon points="559.73 403.7 669.54 493.55 458.78 546.79 347.86 460.27 559.73 403.7" fill="#e0e0e0"/><polygon points="559.73 403.7 669.54 493.55 458.78 546.79 347.86 460.27 559.73 403.7" opacity="0.07"/><path d="M610.52,196.35l7.51-3.61s-4.74,9.15-5.89,9.95h0a32.88,32.88,0,0,0,1.22,4.75c1.53,69.12-61.9,54.68-61.9,54.68,20.54-4.76,20.13-13.6,20.13-13.6-12.32,1.3-16.68-5.84-16.68-5.84a5,5,0,0,0,5.93-3.21c-13.68,0-15.14-13-15.14-13,2.7,1.33,6.39,1.23,8.53,1-1.87-1.38-17.6-12.7-12.22-22,0,0,12.93,13.56,36.56,9l1.5-.72a12.82,12.82,0,0,1-1.21-3.4,17.16,17.16,0,0,1,12.36-20.89c11.08-2.84,15.08,2.88,15.08,2.88l6.7-6.78C612.83,185.63,614.07,193.75,610.52,196.35Z" transform="translate(-193.43 -74)" fill="#00aced"/><path d="M267,249l8.17-1.63s-6.86,7.68-8.17,8.17h0a32.88,32.88,0,0,0,0,4.9c-15.69,67.33-73.54,37.59-73.54,37.59,21.08.49,22.88-8.17,22.88-8.17-12.26-1.8-14.71-9.81-14.71-9.81a5,5,0,0,0,6.54-1.63C194.9,275,196.7,262.12,196.7,262.12c2.29,2,5.88,2.78,8,3.11-1.47-1.8-13.89-16.67-6.37-24.35,0,0,9.15,16.34,33.18,17.81l1.63-.33a12.82,12.82,0,0,1-.33-3.6A17.16,17.16,0,0,1,250,237.61c11.44,0,13.89,6.54,13.89,6.54l8.17-4.9C271.87,239.24,271.06,247.41,267,249Z" transform="translate(-193.43 -74)" fill="#00aced"/><path d="M993.24,103.71l13.33-2.67s-11.2,12.53-13.33,13.33h0a53.64,53.64,0,0,0,0,8c-25.6,109.85-120,61.32-120,61.32,34.39.8,37.33-13.33,37.33-13.33-20-2.93-24-16-24-16a8.24,8.24,0,0,0,10.66-2.67c-21.6-5.6-18.66-26.66-18.66-26.66,3.73,3.2,9.6,4.53,13.06,5.07-2.4-2.93-22.66-27.2-10.4-39.73,0,0,14.93,26.66,54.12,29.06l2.67-.53a20.92,20.92,0,0,1-.53-5.87,28,28,0,0,1,28-28c18.66,0,22.66,10.66,22.66,10.66l13.33-8C1001.24,87.71,999.91,101,993.24,103.71Z" transform="translate(-193.43 -74)" fill="#00aced"/><path d="M775.38,81.73l5.52-1.1s-4.64,5.19-5.52,5.52h0a22.21,22.21,0,0,0,0,3.31c-10.6,45.5-49.69,25.4-49.69,25.4,14.25.33,15.46-5.52,15.46-5.52-8.28-1.21-9.94-6.63-9.94-6.63a3.41,3.41,0,0,0,4.42-1.1c-8.94-2.32-7.73-11-7.73-11a11.48,11.48,0,0,0,5.41,2.1c-1-1.21-9.39-11.26-4.31-16.45,0,0,6.18,11,22.42,12l1.1-.22a8.66,8.66,0,0,1-.22-2.43A11.59,11.59,0,0,1,763.9,74c7.73,0,9.39,4.42,9.39,4.42l5.52-3.31C778.69,75.1,778.14,80.63,775.38,81.73Z" transform="translate(-193.43 -74)" fill="#00aced"/><path d="M524.71,302.58l5.52-1.1s-4.64,5.19-5.52,5.52h0a22.21,22.21,0,0,0,0,3.31c-10.6,45.5-49.69,25.4-49.69,25.4,14.25.33,15.46-5.52,15.46-5.52-8.28-1.21-9.94-6.63-9.94-6.63a3.41,3.41,0,0,0,4.42-1.1c-8.94-2.32-7.73-11-7.73-11a11.48,11.48,0,0,0,5.41,2.1c-1-1.21-9.39-11.26-4.31-16.45,0,0,6.18,11,22.42,12l1.1-.22a8.66,8.66,0,0,1-.22-2.43,11.59,11.59,0,0,1,11.59-11.59c7.73,0,9.39,4.42,9.39,4.42l5.52-3.31C528,296,527.47,301.48,524.71,302.58Z" transform="translate(-193.43 -74)" fill="#535461" opacity="0.3"/><path d="M740,199.89l5.52-1.1S740.93,204,740,204.3h0a22.21,22.21,0,0,0,0,3.31c-10.6,45.5-49.69,25.4-49.69,25.4,14.25.33,15.46-5.52,15.46-5.52-8.28-1.21-9.94-6.63-9.94-6.63a3.41,3.41,0,0,0,4.42-1.1c-8.94-2.32-7.73-11-7.73-11a11.48,11.48,0,0,0,5.41,2.1c-1-1.21-9.39-11.26-4.31-16.45,0,0,6.18,11,22.42,12l1.1-.22a8.66,8.66,0,0,1-.22-2.43,11.59,11.59,0,0,1,11.59-11.59c7.73,0,9.39,4.42,9.39,4.42l5.52-3.31C743.36,193.26,742.8,198.78,740,199.89Z" transform="translate(-193.43 -74)" fill="#00aced" opacity="0.3"/><path d="M635.8,384.76l11.48-2.3s-9.65,10.8-11.48,11.48h0a46.21,46.21,0,0,0,0,6.89c-22.05,94.63-103.36,52.83-103.36,52.83,29.63.69,32.16-11.48,32.16-11.48-17.23-2.53-20.67-13.78-20.67-13.78a7.1,7.1,0,0,0,9.19-2.3c-18.6-4.82-16.08-23-16.08-23,3.22,2.76,8.27,3.9,11.25,4.36-2.07-2.53-19.52-23.43-9-34.22,0,0,12.86,23,46.63,25l2.3-.46a18,18,0,0,1-.46-5.05,24.11,24.11,0,0,1,24.12-24.12c16.08,0,19.52,9.19,19.52,9.19L642.92,371C642.69,371,641.54,382.47,635.8,384.76Z" transform="translate(-193.43 -74)" fill="#4d0d41"/><path d="M554.52,100.5,560,99.4s-4.64,5.19-5.52,5.52h0a22.21,22.21,0,0,0,0,3.31c-10.6,45.5-49.69,25.4-49.69,25.4,14.25.33,15.46-5.52,15.46-5.52-8.28-1.21-9.94-6.63-9.94-6.63a3.41,3.41,0,0,0,4.42-1.1c-8.94-2.32-7.73-11-7.73-11a11.48,11.48,0,0,0,5.41,2.1c-1-1.21-9.39-11.26-4.31-16.45,0,0,6.18,11,22.42,12l1.1-.22a8.66,8.66,0,0,1-.22-2.43A11.59,11.59,0,0,1,543,92.77c7.73,0,9.39,4.42,9.39,4.42l5.52-3.31C557.84,93.88,557.29,99.4,554.52,100.5Z" transform="translate(-193.43 -74)" fill="#4d0d41"/><path d="M385.57,223.08l5.52-1.1s-4.64,5.19-5.52,5.52h0a22.21,22.21,0,0,0,0,3.31c-10.6,45.5-49.69,25.4-49.69,25.4,14.25.33,15.46-5.52,15.46-5.52-8.28-1.21-9.94-6.63-9.94-6.63a3.41,3.41,0,0,0,4.42-1.1c-8.94-2.32-7.73-11-7.73-11a11.48,11.48,0,0,0,5.41,2.1c-1-1.21-9.39-11.26-4.31-16.45,0,0,6.18,11,22.42,12l1.1-.22a8.66,8.66,0,0,1-.22-2.43,11.59,11.59,0,0,1,11.59-11.59c7.73,0,9.39,4.42,9.39,4.42l5.52-3.31C388.88,216.45,388.33,222,385.57,223.08Z" transform="translate(-193.43 -74)" fill="#4d0d41"/><path d="M339.19,143.57l5.52-1.1s-4.64,5.19-5.52,5.52h0a22.21,22.21,0,0,0,0,3.31c-10.6,45.5-49.69,25.4-49.69,25.4,14.25.33,15.46-5.52,15.46-5.52-8.28-1.21-9.94-6.63-9.94-6.63a3.41,3.41,0,0,0,4.42-1.1c-8.94-2.32-7.73-11-7.73-11a11.48,11.48,0,0,0,5.41,2.1c-1-1.21-9.39-11.26-4.31-16.45,0,0,6.18,11,22.42,12l1.1-.22a8.66,8.66,0,0,1-.22-2.43,11.59,11.59,0,0,1,11.59-11.59c7.73,0,9.39,4.42,9.39,4.42l5.52-3.31C342.5,136.94,342,142.47,339.19,143.57Z" transform="translate(-193.43 -74)" fill="#4d0d41" opacity="0.3"/><path d="M533.54,480.37l5.52-1.1s-4.64,5.19-5.52,5.52h0a22.21,22.21,0,0,0,0,3.31c-10.6,45.5-49.69,25.4-49.69,25.4,14.25.33,15.46-5.52,15.46-5.52-8.28-1.21-9.94-6.63-9.94-6.63a3.41,3.41,0,0,0,4.42-1.1c-8.94-2.32-7.73-11-7.73-11a11.48,11.48,0,0,0,5.41,2.1c-1-1.21-9.39-11.26-4.31-16.45,0,0,6.18,11,22.42,12l1.1-.22a8.66,8.66,0,0,1-.22-2.43,11.59,11.59,0,0,1,11.59-11.59c7.73,0,9.39,4.42,9.39,4.42l5.52-3.31C536.86,473.75,536.3,479.27,533.54,480.37Z" transform="translate(-193.43 -74)" fill="#535461"/><path d="M855.77,240.7,867,238.45s-9.46,10.59-11.26,11.26h0a45.32,45.32,0,0,0,0,6.76c-21.63,92.81-101.37,51.81-101.37,51.81C783.46,309,785.94,297,785.94,297c-16.9-2.48-20.27-13.52-20.27-13.52a7,7,0,0,0,9-2.25c-18.25-4.73-15.77-22.53-15.77-22.53,3.15,2.7,8.11,3.83,11,4.28-2-2.48-19.15-23-8.79-33.57,0,0,12.62,22.53,45.73,24.55l2.25-.45a17.67,17.67,0,0,1-.45-5,23.65,23.65,0,0,1,23.65-23.65c15.77,0,19.15,9,19.15,9l11.26-6.76C862.53,227.18,861.4,238.45,855.77,240.7Z" transform="translate(-193.43 -74)" fill="#535461"/><path d="M408.54,331.25,419.8,329s-9.46,10.59-11.26,11.26h0a45.32,45.32,0,0,0,0,6.76c-21.63,92.81-101.37,51.81-101.37,51.81,29.06.68,31.54-11.26,31.54-11.26-16.9-2.48-20.27-13.52-20.27-13.52a7,7,0,0,0,9-2.25c-18.25-4.73-15.77-22.53-15.77-22.53,3.15,2.7,8.11,3.83,11,4.28-2-2.48-19.15-23-8.79-33.57,0,0,12.62,22.53,45.73,24.55l2.25-.45a17.67,17.67,0,0,1-.45-5,23.65,23.65,0,0,1,23.65-23.65c15.77,0,19.15,9,19.15,9l11.26-6.76C415.3,317.73,414.17,329,408.54,331.25Z" transform="translate(-193.43 -74)" fill="#535461"/></svg>
diff --git a/site2/website/static/img/undraw_youtube_tutorial.svg b/site2/website/static/img/undraw_youtube_tutorial.svg
new file mode 100644
index 0000000..bbb3b88
--- /dev/null
+++ b/site2/website/static/img/undraw_youtube_tutorial.svg
@@ -0,0 +1 @@
+<svg id="b847c0d8-de26-4ae3-b269-ef35a8ef771f" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1130" height="831.56" viewBox="0 0 1130 831.56"><defs><linearGradient id="af868219-7e5b-405b-a411-f7ffae4abd96" x1="321.68" y1="857.11" x2="321.68" y2="447.21" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="gray" stop-opacity="0.25"/><stop offset="0.54" stop-color="gray" stop-opacity="0.12"/><stop offset="1" stop-color="gray" stop-opacity="0.1"/></linearGradient></defs><title>youtube tutorial</title><path d="M691.54,158.91C619.1,156.4,550.1,133,484.22,107.42S353.07,53.49,282.37,39.93C236.89,31.21,184.88,30,148.24,54.36c-35.27,23.46-46.66,64-52.78,101.55-4.61,28.28-7.32,58,5.3,84.51,8.77,18.37,24.34,33.82,35.11,51.42,37.45,61.26,11,136.79-29.62,196.59-19,28.06-41.13,54.82-55.82,84.69s-21.49,64.08-8.64,94.54c12.75,30.2,43.11,52.88,76,68.83,66.81,32.4,145.54,41.68,222.31,46.93C510.05,795,680.9,790,851.29,785c63.06-1.87,126.39-3.76,188.43-13.51,34.44-5.41,70-14,95-34.75,31.75-26.34,39.62-70.94,18.34-104-35.68-55.39-134.35-69.15-159.29-128.6-13.73-32.72.37-69.17,20.32-99.52,42.8-65.11,114.54-122.22,118.32-196.64,2.6-51.11-31.89-102.3-85.21-126.48-55.9-25.35-133.4-22.16-174.64,19.8C830.12,144.51,755.5,161.13,691.54,158.91Z" transform="translate(-35 -34.22)" fill="#4d0d41" opacity="0.1"/><polygon points="664.18 755.89 469.18 753.39 469.75 748.39 479.18 665.89 650.43 665.89 663.03 748.39 663.99 754.64 664.18 755.89" fill="#d0d2d5"/><polygon points="663.99 754.64 566.68 754.64 469.18 753.39 469.75 748.39 663.03 748.39 663.99 754.64" opacity="0.1"/><rect x="436.68" y="749.64" width="258.75" height="6.25" fill="#d0d2d5"/><path d="M977.3,204.59a16.27,16.27,0,0,0-16.19-16.35H238.5a16.27,16.27,0,0,0-16.2,16.35v438h755Z" transform="translate(-35 -34.22)" fill="#444053"/><path d="M222.3,638.24v51.3a16.2,16.2,0,0,0,16.2,16.2H961.11a16.2,16.2,0,0,0,16.19-16.2v-51.3Z" transform="translate(-35 -34.22)" fill="#d0d2d5"/><rect x="218.55" y="181.52" width="696.25" height="393.75" fill="#4d0d41" opacity="0.1"/><path d="M603.55,686.27a16.89,16.89,0,0,0,13.28-6.44v0a17.21,17.21,0,0,0,1.31-1.93l-9.26-1.52,10,.08a16.85,16.85,0,0,0,.32-13.38l-13.43,7,12.39-9.1a16.87,16.87,0,1,0-27.87,18.88v0A16.87,16.87,0,0,0,603.55,686.27Z" transform="translate(-35 -34.22)" fill="#4d0d41"/><polygon points="585.43 671.52 663.22 749.64 651.29 671.52 585.43 671.52" opacity="0.1"/><rect x="239" y="252.56" width="457" height="274" rx="2.6" fill="#fff"/><rect x="219" y="181.56" width="696" height="23" fill="#fff"/><rect x="222" y="185.56" width="20" height="14" rx="0.78" fill="#4d0d41"/><rect x="460" y="185.56" width="210" height="14" rx="0.58" fill="#4d0d41" opacity="0.3"/><path d="M698.77,228.22h-.51l-.19-.16a4.25,4.25,0,0,0,1-2.72,4.14,4.14,0,1,0-4.13,4.17,4.27,4.27,0,0,0,2.72-1l.19.16v.52l3.2,3.2,1-1Zm-3.84,0a2.89,2.89,0,1,1,2.88-2.88A2.86,2.86,0,0,1,694.93,228.22Z" transform="translate(-35 -34.22)" fill="#444053"/><circle cx="905" cy="192.56" r="7" fill="#4d0d41"/><rect x="729" y="229.56" width="65" height="44" rx="2.43" fill="#fff"/><rect x="811" y="229.56" width="84" height="7" rx="0.61" fill="#fff"/><rect x="811" y="244.56" width="84" height="7" rx="0.61" fill="#fff"/><rect x="811" y="259.56" width="84" height="7" rx="0.61" fill="#fff"/><rect x="729" y="298.56" width="65" height="44" rx="2.43" fill="#fff"/><rect x="811" y="298.56" width="84" height="7" rx="0.61" fill="#fff"/><rect x="811" y="313.56" width="84" height="7" rx="0.61" fill="#fff"/><rect x="811" y="328.56" width="84" height="7" rx="0.66" fill="#fff"/><rect x="729" y="367.56" width="65" height="44" rx="2.43" fill="#fff"/><rect x="811" y="367.56" width="84" height="7" rx="0.66" fill="#fff"/><rect x="811" y="382.56" width="84" height="7" rx="0.66" fill="#fff"/><rect x="811" y="397.56" width="84" height="7" rx="0.66" fill="#fff"/><rect x="729" y="436.56" width="65" height="44" rx="2.43" fill="#fff"/><rect x="811" y="436.56" width="84" height="7" rx="0.66" fill="#fff"/><rect x="811" y="451.56" width="84" height="7" rx="0.66" fill="#fff"/><rect x="811" y="466.56" width="84" height="7" rx="0.66" fill="#fff"/><rect x="729" y="505.56" width="65" height="44" rx="2.43" fill="#fff"/><rect x="811" y="505.56" width="84" height="7" rx="0.66" fill="#fff"/><rect x="811" y="520.56" width="84" height="7" rx="0.66" fill="#fff"/><rect x="811" y="535.56" width="84" height="7" rx="0.66" fill="#fff"/><rect x="304.92" y="325.17" width="102.83" height="5.33" fill="#4d0d41" opacity="0.1"/><rect x="314.06" y="296.99" width="9.9" height="28.18" fill="#4d0d41" opacity="0.1"/><rect x="328.53" y="296.99" width="9.9" height="28.18" fill="#4d0d41" opacity="0.1"/><rect x="343" y="296.99" width="9.9" height="28.18" fill="#4d0d41" opacity="0.1"/><rect x="357.47" y="296.99" width="9.9" height="28.18" fill="#4d0d41" opacity="0.1"/><rect x="371.94" y="296.99" width="9.9" height="28.18" fill="#4d0d41" opacity="0.1"/><rect x="386.42" y="296.99" width="9.9" height="28.18" fill="#4d0d41" opacity="0.1"/><rect x="314.06" y="302.32" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="328.53" y="302.32" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="343" y="302.32" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="357.47" y="302.32" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="371.94" y="302.32" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="386.42" y="302.32" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="314.06" y="316.03" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="328.53" y="316.03" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="343" y="316.03" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="357.47" y="316.03" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="371.94" y="316.03" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="386.42" y="316.03" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="530.37" y="338.88" width="102.83" height="5.33" fill="#4d0d41" opacity="0.1"/><rect x="539.51" y="310.7" width="9.9" height="28.18" fill="#4d0d41" opacity="0.1"/><rect x="553.98" y="310.7" width="9.9" height="28.18" fill="#4d0d41" opacity="0.1"/><rect x="568.45" y="310.7" width="9.9" height="28.18" fill="#4d0d41" opacity="0.1"/><rect x="582.93" y="310.7" width="9.9" height="28.18" fill="#4d0d41" opacity="0.1"/><rect x="597.4" y="310.7" width="9.9" height="28.18" fill="#4d0d41" opacity="0.1"/><rect x="611.87" y="310.7" width="9.9" height="28.18" fill="#4d0d41" opacity="0.1"/><rect x="539.51" y="316.03" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="553.98" y="316.03" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="568.45" y="316.03" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="582.93" y="316.03" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="597.4" y="316.03" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="611.87" y="316.03" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="539.51" y="329.74" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="553.98" y="329.74" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="568.45" y="329.74" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="582.93" y="329.74" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="597.4" y="329.74" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="611.87" y="329.74" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="530.37" y="377.72" width="102.83" height="5.33" fill="#4d0d41" opacity="0.1"/><rect x="539.51" y="349.54" width="9.9" height="28.18" fill="#4d0d41" opacity="0.1"/><rect x="553.98" y="349.54" width="9.9" height="28.18" fill="#4d0d41" opacity="0.1"/><rect x="568.45" y="349.54" width="9.9" height="28.18" fill="#4d0d41" opacity="0.1"/><rect x="582.93" y="349.54" width="9.9" height="28.18" fill="#4d0d41" opacity="0.1"/><rect x="597.4" y="349.54" width="9.9" height="28.18" fill="#4d0d41" opacity="0.1"/><rect x="611.87" y="349.54" width="9.9" height="28.18" fill="#4d0d41" opacity="0.1"/><rect x="539.51" y="354.87" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="553.98" y="354.87" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="568.45" y="354.87" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="582.93" y="354.87" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="597.4" y="354.87" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="611.87" y="354.87" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="539.51" y="368.58" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="553.98" y="368.58" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="568.45" y="368.58" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="582.93" y="368.58" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="597.4" y="368.58" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><rect x="611.87" y="368.58" width="9.9" height="3.05" fill="#4d0d41" opacity="0.1"/><path d="M403,419.66a28.45,28.45,0,0,1-2.1-3.09l14.81-2.43-16,.12a27.06,27.06,0,0,1-.52-21.38L420.64,404l-19.81-14.56a27,27,0,1,1,44.57,30.2,26.24,26.24,0,0,1,3.08,4.92l-19.22,10,20.49-6.87A27,27,0,0,1,445.4,453,27,27,0,1,1,403,453a27,27,0,0,1,0-33.37Z" transform="translate(-35 -34.22)" fill="#4d0d41" opacity="0.1"/><path d="M451.18,436.34A26.89,26.89,0,0,1,445.4,453,27,27,0,1,1,403,453C399.37,448.43,451.18,433.31,451.18,436.34Z" transform="translate(-35 -34.22)" fill="#4d0d41" opacity="0.1"/><path d="M428.52,503.88a2.53,2.53,0,0,1,.13.22h-9.16c.05-.07.08-.15.13-.22a8.87,8.87,0,0,1-1.18-4.51,9.26,9.26,0,0,1,.55-3.18v0c.51.08,1.14.17,1.87.25a32.1,32.1,0,0,0,6.39,0q.92-.09,1.89-.24a.09.09,0,0,0,0,.05,9,9,0,0,1,.54,3.13A8.87,8.87,0,0,1,428.52,503.88Z" transform="translate(-35 -34.22)" fill="#3f3d56" opacity="0.2"/><path d="M395.6,504.1h-51c-.11-.29-.21-.6-.3-.9a26.85,26.85,0,0,1,.59-17.64,27,27,0,0,1-9.85-31.89,25.83,25.83,0,0,1-2.91-2.33l13.42-6.69-15.26,4.84a27,27,0,0,1-6.8-20.27l23.81,4.3-23.22-8.07a27,27,0,1,1,51.49,15.7A27.35,27.35,0,0,1,380,445l-15.42,15.21,17.55-12.62a27,27,0,0,1,3.32,25.5A27,27,0,0,1,395.6,504.1Z" transform="translate(-35 -34.22)" fill="#4d0d41" opacity="0.1"/><path d="M395.6,504.1h-51c-.11-.29-.21-.6-.3-.9a26.85,26.85,0,0,1,.59-17.64c-4.8-3.32,40.23-33.07,41.12-30.17a26.88,26.88,0,0,1-.59,17.65A27,27,0,0,1,395.6,504.1Z" transform="translate(-35 -34.22)" fill="#4d0d41" opacity="0.1"/><path d="M626.35,467.56a26.9,26.9,0,0,1-13.51,11.36,27.4,27.4,0,0,1,.11,5.8l-21.61-1.3L612.45,488a27,27,0,0,1-3.22,8.16,26.57,26.57,0,0,1-7.2,7.9H572.61v.77h-30c.06-.26.12-.51.19-.77a27,27,0,0,1,16.45-18.31,27,27,0,0,1,17.13-28.64,27.36,27.36,0,0,1-.22-3.73l13.95,5.51-13.8-8.11A27,27,0,0,1,586.9,432.2l12.71,20.58-9.53-22.66a27,27,0,0,1,36.27,37.44Z" transform="translate(-35 -34.22)" fill="#4d0d41" opacity="0.1"/><path d="M609.23,496.2a26.57,26.57,0,0,1-7.2,7.9H572.61v.77h-30c.06-.26.12-.51.19-.77a27,27,0,0,1,16.45-18.31c-.25-2,5.56-1.7,13.31-.4C587.75,487.94,610.26,494.48,609.23,496.2Z" transform="translate(-35 -34.22)" fill="#4d0d41" opacity="0.1"/><path d="M481.71,424.19s3.7,20-4.56,26.53,7,45.67,32.18,41.1,35.44-37.4,35.44-37.4-25.22-5.22-15.87-31.75Z" transform="translate(-35 -34.22)" fill="#ee8e9e"/><path d="M481.71,424.19s3.7,20-4.56,26.53,7,45.67,32.18,41.1,35.44-37.4,35.44-37.4-25.22-5.22-15.87-31.75Z" transform="translate(-35 -34.22)" opacity="0.1"/><circle cx="469" cy="362.9" r="41.75" fill="#ee8e9e"/><path d="M572.61,476.49v28.38H434.75V477.78a17.48,17.48,0,0,1,10.67-16.1l3.95-1.68c10-4.26,22.15-9.55,26.12-11.75a6.53,6.53,0,0,0,1.22-.79c2.17-2.17,1.74.65,1.74.65s-.06.54-.1,1.47c-.24,6.39.68,31.5,30.11,29.41,28.71-2,30-21.42,29.71-27.13a15.45,15.45,0,0,0-.13-1.58,37.09,37.09,0,0,1,5.81,1.9c6,2.22,14.86,5.78,17.23,7.46.74.52,1.64,1.06,2.62,1.61a17.23,17.23,0,0,1,3.1,2.21A17.51,17.51,0,0,1,572.61,476.49Z" transform="translate(-35 -34.22)" fill="#4d0d41"/><path d="M543.85,452.18c-2.43,11.26-10.06,32.35-37.56,32.9-29.3.58-31-28.56-30.81-36.83a5.91,5.91,0,0,0,1.23-.79c2.18-2.17,1.74.65,1.74.65s-3.69,33.27,30,30.88S538,450.29,538,450.29C538,450.13,540.51,451,543.85,452.18Z" transform="translate(-35 -34.22)" opacity="0.1"/><path d="M454.58,399.21a7.15,7.15,0,0,1,7.53,2.75c1.52,2.13,1.75,4.7,1.94,7.16,1.81.38,2.83-1.67,3-3.22.67-6.31.72-12.74,2.84-18.84s6.75-12,13.86-14.33a16.08,16.08,0,0,1,7.57-.72c1.51.25,2.93.78,4.43,1,5.2.86,10.85-1.6,15.72.11,3.06,1.08,5,3.57,6.43,6.06a13.08,13.08,0,0,0,2.5,3.63c2.07,1.86,5.31,2.34,8.28,2.92s6.21,1.59,7.48,3.88c1.14,2.07.3,4.46-.08,6.7a16.42,16.42,0,0,0,1.69,10.37c.55,1,1.67,2.21,3,1.88a2.63,2.63,0,0,0,1.42-1.15c3.41-4.78,3.32-11,7.6-15.31,1.43-1.44,3.28-2.56,4.67-4a9.08,9.08,0,0,0,2.42-8.24c-.77-3.3-3.41-6-5.54-8.9a35,35,0,0,1-5.93-12.31,2.23,2.23,0,0,1,0-1.61,4.29,4.29,0,0,1,1.52-1.24,5.74,5.74,0,0,0,1.94-7.33C547.66,346,545,344.12,542,343a44.8,44.8,0,0,0-9.37-2c-2.1.3-4.56-.89-5.21-2.57-.29-.75-.29-1.56-.58-2.31a5.3,5.3,0,0,0-4-2.8,11.7,11.7,0,0,0-5.35.38c-2,.56-4.27,1.4-6,.42-.91-.51-1.41-1.44-2.39-1.86-2-.84-4.06.86-5.49,2.26a13.36,13.36,0,0,1-4.95,3.33,7.37,7.37,0,0,1-6.14-.41c-1.37-.87-2.06-2.27-3.15-3.38a11.86,11.86,0,0,0-7.45-3,26.23,26.23,0,0,0-8.41.92,50.78,50.78,0,0,0-14.77,6.2,15.87,15.87,0,0,0-5.67,5.27,12,12,0,0,0-1.27,5.43c-.22,5.91,1.74,12.13,6.85,16.27-3.12,1.3-4.17,4.49-4.9,7.32-1.17,4.52-2.34,9.11-1.9,13.71.22,2.38.87,4.76.52,7.13a15.36,15.36,0,0,0-.46,3.41A3.27,3.27,0,0,0,454.58,399.21Z" transform="translate(-35 -34.22)" fill="#454b69"/><g opacity="0.1"><path d="M556.23,378a9.76,9.76,0,0,1-1.8,2.66c-1.39,1.46-3.24,2.59-4.67,4-4.28,4.28-4.19,10.54-7.6,15.32a2.57,2.57,0,0,1-1.42,1.14c-1.3.34-2.42-.84-3-1.88a17.2,17.2,0,0,1-1.49-4c-.07.35-.14.7-.2,1a16.42,16.42,0,0,0,1.69,10.37c.55,1,1.67,2.21,3,1.88a2.63,2.63,0,0,0,1.42-1.15c3.41-4.78,3.32-11,7.6-15.31,1.43-1.44,3.28-2.56,4.67-4a9.08,9.08,0,0,0,2.42-8.24A10.74,10.74,0,0,0,556.23,378Z" transform="translate(-35 -34.22)"/><path d="M546.91,348.4a4.19,4.19,0,0,0-1.52,1.24,2.21,2.21,0,0,0,0,1.6,33.82,33.82,0,0,0,1.51,4.56h0a5.74,5.74,0,0,0,1.94-7.33,7,7,0,0,0-.7-1.17A5.76,5.76,0,0,1,546.91,348.4Z" transform="translate(-35 -34.22)"/><path d="M458.71,357.67a18.54,18.54,0,0,1-6.55-11.59,15.62,15.62,0,0,0-.3,2.72,20.82,20.82,0,0,0,3.29,12.37A7,7,0,0,1,458.71,357.67Z" transform="translate(-35 -34.22)"/><path d="M536.08,388.94c.38-2.25,1.22-4.64.08-6.7-1.27-2.3-4.51-3.3-7.48-3.88s-6.21-1.07-8.28-2.92a13.08,13.08,0,0,1-2.5-3.63c-1.41-2.49-3.37-5-6.43-6.06-4.87-1.71-10.52.74-15.72-.11-1.5-.25-2.92-.77-4.43-1a16,16,0,0,0-7.57.72c-7.11,2.34-11.74,8.24-13.86,14.33s-2.17,12.52-2.84,18.84c-.17,1.54-1.19,3.6-3,3.22-.19-2.47-.42-5-1.94-7.17a7.15,7.15,0,0,0-7.53-2.74,3.66,3.66,0,0,1-2.11-1.35,11.59,11.59,0,0,1,0,2.76,15.36,15.36,0,0,0-.46,3.41,3.27,3.27,0,0,0,2.61,2.57,7.15,7.15,0,0,1,7.53,2.75c1.52,2.13,1.75,4.7,1.94,7.16,1.81.38,2.83-1.67,3-3.22.67-6.31.72-12.74,2.84-18.84s6.75-12,13.86-14.33a16.08,16.08,0,0,1,7.57-.72c1.51.25,2.93.78,4.43,1,5.2.86,10.85-1.6,15.72.11,3.06,1.08,5,3.57,6.43,6.06a13.08,13.08,0,0,0,2.5,3.63c2.07,1.86,5.31,2.34,8.28,2.92s6,1.52,7.33,3.64C536,389.24,536.05,389.09,536.08,388.94Z" transform="translate(-35 -34.22)"/><path d="M452.43,385.83a19,19,0,0,0-.33-5.57,24.82,24.82,0,0,0-.19,5.84c0,.5.11,1,.18,1.49C452.2,387,452.35,386.42,452.43,385.83Z" transform="translate(-35 -34.22)"/></g><path d="M403.49,545.22V527.17a.51.51,0,0,1,.51-.51h2.05a.51.51,0,0,1,.51.51v7.51l8.32-7.71a1.36,1.36,0,0,1,2.23,1v16.35a1.36,1.36,0,0,1-2.23,1l-8.32-7.66v7.47a.51.51,0,0,1-.51.51H404A.51.51,0,0,1,403.49,545.22Z" transform="translate(-35 -34.22)" fill="#444053"/><path d="M604.52,527.17v18.05a.51.51,0,0,1-.52.51h-2a.51.51,0,0,1-.51-.51v-7.51l-8.32,7.7a1.37,1.37,0,0,1-2.24-1V528a1.37,1.37,0,0,1,2.24-1l8.32,7.66v-7.46a.51.51,0,0,1,.51-.51h2A.51.51,0,0,1,604.52,527.17Z" transform="translate(-35 -34.22)" fill="#444053"/><path d="M500.61,546h-4.07a2,2,0,0,1-2-2V529.06a2,2,0,0,1,2-2h4.07a2,2,0,0,1,2,2V544A2,2,0,0,1,500.61,546Zm12.9-2V529.06a2,2,0,0,0-2-2H507.4a2,2,0,0,0-2,2V544a2,2,0,0,0,2,2h4.07A2,2,0,0,0,513.51,544Z" transform="translate(-35 -34.22)" fill="#444053"/><rect x="349" y="468.62" width="240" height="2.67" fill="#444053" opacity="0.6"/><circle cx="423.11" cy="469.95" r="6.33" fill="#444053"/><rect x="349" y="468.62" width="74.11" height="2.67" fill="#444053"/><ellipse cx="957.08" cy="758.54" rx="59.47" ry="11.44" fill="#4d0d41"/><ellipse cx="956.09" cy="753.68" rx="6.92" ry="9.06" fill="#3f3d56"/><ellipse cx="956.09" cy="742.6" rx="6.92" ry="9.06" fill="#3f3d56"/><ellipse cx="956.09" cy="731.53" rx="6.92" ry="9.06" fill="#3f3d56"/><ellipse cx="956.09" cy="720.45" rx="6.92" ry="9.06" fill="#3f3d56"/><ellipse cx="956.09" cy="709.37" rx="6.92" ry="9.06" fill="#3f3d56"/><ellipse cx="956.09" cy="698.29" rx="6.92" ry="9.06" fill="#3f3d56"/><ellipse cx="956.09" cy="687.21" rx="6.92" ry="9.06" fill="#3f3d56"/><path d="M1017,645.63a34.28,34.28,0,0,0,2.58-3.8l-18.2-3,19.68.15a33.27,33.27,0,0,0,.63-26.28L995.31,626.4l24.34-17.89a33.17,33.17,0,1,0-54.78,37.12,33.85,33.85,0,0,0-3.78,6l23.62,12.27-25.18-8.45a33.19,33.19,0,0,0,5.34,31.14,33.16,33.16,0,1,0,52.14,0,33.18,33.18,0,0,0,0-41Z" transform="translate(-35 -34.22)" fill="#4d0d41"/><path d="M957.78,666.13a33,33,0,0,0,7.09,20.5,33.16,33.16,0,1,0,52.14,0C1021.45,681,957.78,662.41,957.78,666.13Z" transform="translate(-35 -34.22)" opacity="0.1"/><ellipse cx="290" cy="810.56" rx="99" ry="21" fill="#4d0d41" opacity="0.1"/><path d="M358.15,842.34c-2-.73-4.14-.61-6.23-.84a19.28,19.28,0,0,1-11.46-5.56,21,21,0,0,1-4.58-7c.66.24,1.32.49,2,.76-2-4.67.1-9.91,1.94-14.63q4.68-12,8.85-24.13c7-20.49,13-41.8,12.87-63.6,0-7.88-1.45-15.33-1.73-23.2-.21-5.84.69-11.67.65-17.52,0-.82,0-1.63-.06-2.45a15.53,15.53,0,0,0,5.27-12.66,30.48,30.48,0,0,0-.53-3.68,59.68,59.68,0,0,0-1.4-6.26c-.66-2.17-1.56-4.25-2.33-6.37-1.49-4.11-2.5-8.39-3.77-12.57A4.33,4.33,0,0,1,359,643a2.93,2.93,0,0,1-.64-1.31,32.41,32.41,0,0,1-1.2-8.17l.85-.38a21.27,21.27,0,0,0-.41-8.09c.48-4.29,1.23-8.61,1.69-12.88.17-1.6.1-3.61-1.37-4-.3-2.29-.42-4.61-.54-6.92q-.63-12.09-1.25-24.17c-.42-8.09-.84-16.17-1-24.27-.11-5.14-.17-10.46-1.39-15.38a18.6,18.6,0,0,0-.71-7c-1.86-5.89-7.64-10.56-13.5-10.23a26.86,26.86,0,0,0-6.39-6.46c1.17-2.62,2.57-5.32,3.72-7.44C346.24,503.25,353.1,494,353.1,483a25.43,25.43,0,0,0-2.75-11.59,12.52,12.52,0,0,0,.44-1.35,11.09,11.09,0,0,0-.45-6.49,19,19,0,0,0-1-2.32c-.26-.5-.54-1-.83-1.48L348,459c-.31-.47-.63-.92-1-1.36a33.1,33.1,0,0,0-2.28-2.74,22.56,22.56,0,0,0-3.28-2.92,14.46,14.46,0,0,0-5.4-2.49,16.46,16.46,0,0,0-3.43-.31c-.69,0-1.39,0-2.08.06-1.4.08-2.79.18-4.18.17-.46,0-.93,0-1.39-.07a50.63,50.63,0,0,1-7.24-1.51l-1.2-.25c-.41-.08-.81-.15-1.22-.2a22.89,22.89,0,0,0-3.31-.2l-1.11,0a30.68,30.68,0,0,0-3.31.34l-1.1.17a31.6,31.6,0,0,0-8.05,2.39c-.33.15-.67.32-1,.5l-.2.11c-.27.14-.54.29-.8.45l-.15.09-.85.54-.07.05c-7.94,5.34-12.63,15.46-13.82,25.5-1.33,11.27,1,22.63,3.33,33.72l2.1,10c.09.45.19.89.28,1.34a22,22,0,0,0-6.59,9.14c-2,5-2.05,10.41-1.89,15.83,0,1.1.06,2.2.17,3.3-.25,2.08-.47,4.17-.61,6.27-.63,9.7.55,19.45.24,29.17-.24,7.49-1.37,15-.82,22.44.48,6.6,2.25,13,4,19.37l2.52,9.08a2.41,2.41,0,0,0,.63,1.25,1.9,1.9,0,0,0,1.41.29A85.12,85.12,0,0,0,282.2,650a35.5,35.5,0,0,0-1.48,7.38c-.33,4.58.73,9.13,1.79,13.58q2.4,10,4.78,20.08,1.68,7.05,3.35,14.09c2.2,9.26,4.41,18.58,4.82,28.11a61.05,61.05,0,0,1-1,14.29,124.52,124.52,0,0,0-1.24,42.83,210,210,0,0,0,8.09,35.41c.81-.43,1.63-.83,2.47-1.2l-.35.65q-1.73,3-3.2,6.15a35,35,0,0,0-1.71,4.21c-1.28,4-1.48,8.26-1.66,12.47a6.1,6.1,0,0,0,.21,2.41c.55,1.51,2.13,2.28,3.6,2.7,4.32,1.23,8.81.79,13.3.21a1.61,1.61,0,0,0,.09.29c.55,1.51,2.12,2.28,3.6,2.7,6.18,1.76,12.7.1,19.07-.5s12.63-.16,18.76-1.63a8.93,8.93,0,0,0,2.6-1,8.51,8.51,0,0,0,3.28-4.55,5.83,5.83,0,0,0,.38-1.49C362,845,360.13,843.07,358.15,842.34ZM337,749.73a25.2,25.2,0,0,1-2,6.78,129.4,129.4,0,0,0-10.26,32.17,149.15,149.15,0,0,0-2.27,22.25c-.1,5.5.11,11.26-2.18,16.2l.83-.13c-.26.48-.51,1-.75,1.38l-.12.22a21.68,21.68,0,0,1-2.73-7.66c0-.09-.45-.16-1.14-.2a206.93,206.93,0,0,1-2.92-47.89,22.17,22.17,0,0,1,.8-5.75c.51-1.61,1.37-3.08,2-4.64a34.09,34.09,0,0,0,2-8.14,115.64,115.64,0,0,0,1.26-21.52c-.24-6.79,1.33-13.54,2.67-20.3.64-3.21,1.23-6.43,1.55-9.65l.06-.65a96.87,96.87,0,0,1,12.28,31.88A45.6,45.6,0,0,1,337,749.73Zm-42.8-144.52.32.28a22,22,0,0,1,2.66,2.79,3.69,3.69,0,0,1,.84,1.54c.3,1.46-.91,2.7-1.9,3.77a17,17,0,0,0-1.21,1.46Q294.59,610.13,294.23,605.21Z" transform="translate(-35 -34.22)" fill="url(#af868219-7e5b-405b-a411-f7ffae4abd96)"/><path d="M280.36,542.53l-1.1,8.49c-.37,2.88-.74,5.75-.94,8.64-.67,9.62.57,19.28.25,28.92-.26,7.42-1.44,14.83-.87,22.24.51,6.54,2.37,12.9,4.23,19.2l2.64,9a2.38,2.38,0,0,0,.66,1.24,2.33,2.33,0,0,0,1.69.27l11.72-1.06c-.75-3.44-1.58-7-2-10.53-.32-2.76-.51-5.54-.71-8.32-.62-8.66-1.33-17.32-2-26l-1.25-15.2c-.53-6.6-1.08-13.23-2.74-19.64A39.09,39.09,0,0,0,280.36,542.53Z" transform="translate(-35 -34.22)" fill="#4d0d41"/><path d="M280.36,542.53l-1.1,8.49c-.37,2.88-.74,5.75-.94,8.64-.67,9.62.57,19.28.25,28.92-.26,7.42-1.44,14.83-.87,22.24.51,6.54,2.37,12.9,4.23,19.2l2.64,9a2.38,2.38,0,0,0,.66,1.24,2.33,2.33,0,0,0,1.69.27l11.72-1.06c-.75-3.44-1.58-7-2-10.53-.32-2.76-.51-5.54-.71-8.32-.62-8.66-1.33-17.32-2-26l-1.25-15.2c-.53-6.6-1.08-13.23-2.74-19.64A39.09,39.09,0,0,0,280.36,542.53Z" transform="translate(-35 -34.22)" opacity="0.1"/><path d="M301.24,831.55a35.81,35.81,0,0,0-1.8,4.18c-1.34,3.95-1.54,8.19-1.74,12.36a6,6,0,0,0,.22,2.39c.58,1.5,2.24,2.26,3.79,2.67,6.49,1.75,13.33.11,20-.49s13.26-.16,19.7-1.61a10.06,10.06,0,0,0,2.73-.95,8.51,8.51,0,0,0,3.45-4.5,5.88,5.88,0,0,0,.39-1.48c.21-2.2-1.7-4.1-3.78-4.82s-4.35-.61-6.54-.83a20.6,20.6,0,0,1-18.24-17.21c-.08-.48-10.84-.19-12,.43-1.32.73-2.12,2.54-2.87,3.77Q302.78,828.43,301.24,831.55Z" transform="translate(-35 -34.22)" fill="#a26565"/><path d="M301.24,831.55a35.81,35.81,0,0,0-1.8,4.18c-1.34,3.95-1.54,8.19-1.74,12.36a6,6,0,0,0,.22,2.39c.58,1.5,2.24,2.26,3.79,2.67,6.49,1.75,13.33.11,20-.49s13.26-.16,19.7-1.61a10.06,10.06,0,0,0,2.73-.95,8.51,8.51,0,0,0,3.45-4.5,5.88,5.88,0,0,0,.39-1.48c.21-2.2-1.7-4.1-3.78-4.82s-4.35-.61-6.54-.83a20.6,20.6,0,0,1-18.24-17.21c-.08-.48-10.84-.19-12,.43-1.32.73-2.12,2.54-2.87,3.77Q302.78,828.43,301.24,831.55Z" transform="translate(-35 -34.22)" opacity="0.1"/><path d="M319.09,834.73a34,34,0,0,0-1.8,4.17c-1.35,4-1.55,8.19-1.74,12.36a5.83,5.83,0,0,0,.22,2.39c.57,1.5,2.23,2.26,3.78,2.68,6.49,1.74,13.34.1,20-.5s13.27-.16,19.7-1.61a9.62,9.62,0,0,0,2.73-1,8.47,8.47,0,0,0,3.45-4.5,5.88,5.88,0,0,0,.39-1.48c.21-2.19-1.7-4.1-3.78-4.82s-4.35-.6-6.54-.83a20.61,20.61,0,0,1-18.24-17.2c-.08-.48-10.84-.2-12,.42-1.33.73-2.13,2.54-2.88,3.77C321.24,830.61,320.12,832.65,319.09,834.73Z" transform="translate(-35 -34.22)" fill="#a26565"/><path d="M365.62,728.5c.14,21.61-6.14,42.73-13.51,63q-4.38,12.06-9.29,23.91c-1.94,4.68-4.13,9.88-2.05,14.5-6-2.28-12.1-3.62-18.41-2.57,2.4-4.9,2.17-10.6,2.28-16A140.3,140.3,0,0,1,327,789.29a123,123,0,0,1,10.79-31.89,24.3,24.3,0,0,0,2.09-6.72c.82-5.14.18-10.42-.89-15.51a92.47,92.47,0,0,0-12.9-31.6l-.06.64a93.27,93.27,0,0,1-1.62,9.57c-1.41,6.69-3.06,13.39-2.81,20.12a108.83,108.83,0,0,1-1.32,21.33,32.43,32.43,0,0,1-2.15,8.06c-.69,1.55-1.59,3-2.13,4.61a21,21,0,0,0-.84,5.7c-.8,16.27,0,32.79,3.32,48.74-5.57-.44-11.14,1.17-16.12,3.67a198.54,198.54,0,0,1-8.5-35.1,116.62,116.62,0,0,1,1.3-42.46,56.42,56.42,0,0,0,1.05-14.15c-.43-9.45-2.75-18.69-5.06-27.87l-3.52-14q-2.5-10-5-19.91c-1.11-4.41-2.23-8.92-1.88-13.46a33.4,33.4,0,0,1,1.56-7.32,81.69,81.69,0,0,1,11.07-22.64c19.27,1.08,38.77-.72,58-2.2a3.89,3.89,0,0,1,2.72.46,3.85,3.85,0,0,1,1.1,2.48l7.23,41a103,103,0,0,1,2.05,17.3c0,5.8-.9,11.58-.68,17.37C364.1,713.31,365.58,720.69,365.62,728.5Z" transform="translate(-35 -34.22)" fill="#454b69"/><path d="M326.05,704.21a93.27,93.27,0,0,1-1.62,9.57c-4.19-7.25-8.71-14.32-12.57-21.75-1-1.91-1.94-3.85-2.89-5.79l-2.85-5.8c-.53-1.09-1.06-2.18-1.54-3.29a23.77,23.77,0,0,1-1.79-5c1.4-.26,4.86,3.52,5.9,4.51a80.64,80.64,0,0,1,6,6.64,72.81,72.81,0,0,1,6.26,8.2A39.88,39.88,0,0,1,326.05,704.21Z" transform="translate(-35 -34.22)" opacity="0.1"/><path d="M342.1,505.3s-10.7,17.05-8.72,20.62-33.7-3.17-33.7-3.17,19.43-17.05,17.44-24.19S342.1,505.3,342.1,505.3Z" transform="translate(-35 -34.22)" fill="#efb7b9"/><circle cx="297.59" cy="452.05" r="24.19" fill="#efb7b9"/><path d="M342.46,523.18A24.56,24.56,0,0,0,332.29,515a36.38,36.38,0,0,0-7.23-1.78l-9.65-1.7c-2.36-.42-4.89-.81-7.09.16a11.62,11.62,0,0,0-3,2.21c-3.35,3.11-6.6,6.52-10.81,8.32-1.15.49-2.35.85-3.5,1.34-4.71,2-8.23,6.26-10.22,11-2.1,4.94-2.16,10.31-2,15.68a27.56,27.56,0,0,0,.55,5.52,35.57,35.57,0,0,0,1.83,5.06,92.57,92.57,0,0,1,3.34,10.73q3.75,14.35,6.24,29a10.87,10.87,0,0,0,1.21,4,14.36,14.36,0,0,0,3.34,3.21,20.86,20.86,0,0,1,2.79,2.77A3.62,3.62,0,0,1,299,612c.31,1.44-1,2.68-2,3.73a18.06,18.06,0,0,0-4.52,7.87,3.17,3.17,0,0,0-.72,2.17,3.8,3.8,0,0,1,.23,1.72,3.88,3.88,0,0,1-.91,1.41,5.33,5.33,0,0,0-1,4.28,67.89,67.89,0,0,0,23.68,5.54c2,.1,4,.1,6,.34,1.42.18,2.82.47,4.24.64a45.78,45.78,0,0,0,6.2.16c10.77-.22,21.85-.49,31.74-4.76.93-5.07-1.08-10.24-2.34-15.24-2-8-2.5-16.19-4-24.26-1-5.51-2.5-10.94-3.35-16.49s-1-11.3.48-16.7c1.35-4.78,1.76-9.66,3.16-14.43s2.38-9.94.8-14.66C354.69,527.48,348.62,522.85,342.46,523.18Z" transform="translate(-35 -34.22)" fill="#4d0d41"/><path d="M354.34,473.44c1.18-4.29-1.14-8.76-3.9-12.25-3-3.75-6.82-7.13-11.51-8.07-3.81-.77-7.76.16-11.64-.15-3.43-.27-6.73-1.51-10.14-2a32.12,32.12,0,0,0-9.28.35,35.25,35.25,0,0,0-8.45,2.36c-10.3,4.57-16.33,15.83-17.73,27s1.05,22.43,3.49,33.42l2.21,9.94c2.3,10.35,4.6,20.74,5.21,31.32s-.53,21.44-4.88,31.1a66.89,66.89,0,0,0,30.73-34.79c1.56-4.09,2.72-8.34,4.46-12.36,1.49-3.46,3.4-6.74,4.72-10.27a33.36,33.36,0,0,0,2.11-12.47c-.08-3.2-.61-6.38-.52-9.58s.91-6.53,3.12-8.85c2-2.05,4.75-3,7.28-4.33a30.31,30.31,0,0,0,10.19-8.5c1.59-2.08,1.68-3,2.08-5.36S353.72,475.71,354.34,473.44Z" transform="translate(-35 -34.22)" fill="#a26565"/><path d="M354.37,655.15c.25,2.49-.2,5,.34,7.47.41,1.84,1.36,3.5,1.92,5.3a25.2,25.2,0,0,1,.85,6.37c.08,1.8-.06,4-1.66,4.84-.7.37-1.54.37-2.27.69s-1.35,1.19-.93,1.87,1.14.57,1.8.7,1.37.81,1,1.36a1.14,1.14,0,0,1-.58.37,7.08,7.08,0,0,0-1.88.9,1.92,1.92,0,0,0-.77,1.83,1.13,1.13,0,0,0,1.61.74,5,5,0,0,0-.47,2c2.56,1.1,5.43-.34,7.83-1.73a29.49,29.49,0,0,0,3-1.92A15,15,0,0,0,370,673.17a29.79,29.79,0,0,0-.57-3.65,54.92,54.92,0,0,0-1.47-6.21c-.69-2.15-1.63-4.2-2.44-6.31-1.72-4.49-2.83-9.19-4.39-13.74a2.08,2.08,0,0,0-.75-1.19,2.11,2.11,0,0,0-1.11-.21,18.19,18.19,0,0,0-5.21.48c-1,.3-2.71,1-3.18,2s.28,1.84.73,2.67A22.38,22.38,0,0,1,354.37,655.15Z" transform="translate(-35 -34.22)" fill="#efb7b9"/><path d="M352.74,533.64a7.33,7.33,0,0,1,1.28,1.78c3.44,6.25,3.48,13.72,3.64,20.85.18,8,.62,16,1.06,24.05l1.31,24c.13,2.29.25,4.58.58,6.85,1.54.39,1.6,2.39,1.43,4-1.11,9.78-3.86,19.85-1,29.26a2.94,2.94,0,0,0,.67,1.3,7.81,7.81,0,0,0-4.47-.06c-1.43.3-2.81.83-4.25,1.16-1.82.41-3.88.59-5.12,2a99.24,99.24,0,0,1-3.35-12.92c-.68-4-.87-8.12-2.49-11.82-.65-1.49-1.53-2.87-2.33-4.3-4.19-7.48-6.25-15.93-8.26-24.27a35.43,35.43,0,0,1-.64-12.06,41.47,41.47,0,0,0,.5-5.55,42.64,42.64,0,0,0-.77-5.84,39.15,39.15,0,0,1,1.17-16.91c1.5-5.09,2.82-10.45,6-14.73S347.43,533.71,352.74,533.64Z" transform="translate(-35 -34.22)" opacity="0.1"/><path d="M353.93,532.84a7.39,7.39,0,0,1,1.28,1.79c3.44,6.24,3.48,13.72,3.64,20.85.18,8,.62,16,1.06,24l1.31,24c.13,2.29.25,4.58.58,6.85,1.54.39,1.6,2.39,1.42,4-1.1,9.78-3.85,19.84-1,29.26a2.94,2.94,0,0,0,.67,1.3,7.81,7.81,0,0,0-4.47-.06c-1.43.3-2.81.83-4.25,1.15-1.82.42-3.88.59-5.12,2A98.21,98.21,0,0,1,345.73,635c-.68-4-.87-8.11-2.49-11.81a48.28,48.28,0,0,0-2.33-4.3c-4.2-7.48-6.25-15.94-8.26-24.28a35.42,35.42,0,0,1-.64-12.06,26,26,0,0,0-.27-11.39,39.1,39.1,0,0,1,1.17-16.9c1.5-5.09,2.82-10.45,6-14.73S348.62,532.92,353.93,532.84Z" transform="translate(-35 -34.22)" fill="#4d0d41"/><g opacity="0.1"><path d="M350.44,461.19c-3-3.75-6.82-7.13-11.51-8.07-3.81-.77-7.76.16-11.64-.15-3.43-.27-6.73-1.51-10.14-2a32.12,32.12,0,0,0-9.28.35,35.25,35.25,0,0,0-8.45,2.36,25.09,25.09,0,0,0-4.17,2.37,35.56,35.56,0,0,1,7.47-2,32,32,0,0,1,9.27-.35c3.42.44,6.71,1.67,10.15,1.94,3.87.31,7.82-.61,11.64.15,4.69.94,8.53,4.33,11.5,8.08,2.77,3.48,5.08,7.95,3.91,12.25-.62,2.26-2.06,4.24-2.45,6.57s-.49,3.28-2.09,5.36a30.38,30.38,0,0,1-7.34,6.83c.77-.36,1.56-.72,2.31-1.11a30.31,30.31,0,0,0,10.19-8.5c1.59-2.08,1.68-3,2.08-5.36s1.83-4.3,2.45-6.57C355.52,469.15,353.2,464.68,350.44,461.19Z" transform="translate(-35 -34.22)"/><path d="M332.34,498.2a10,10,0,0,1,1.35-1.17c-2.31,1.12-4.74,2.1-6.51,4-2.21,2.31-3,5.65-3.12,8.85s.45,6.38.52,9.57a33.41,33.41,0,0,1-2.11,12.48c-1.32,3.53-3.23,6.8-4.72,10.27-1.73,4-2.89,8.26-4.45,12.35a67,67,0,0,1-25.41,31.62c-.06.13-.11.27-.17.4a66.89,66.89,0,0,0,30.73-34.79c1.56-4.09,2.72-8.34,4.46-12.36,1.49-3.46,3.4-6.74,4.72-10.27a33.36,33.36,0,0,0,2.11-12.47c-.08-3.2-.61-6.38-.52-9.58S330.13,500.52,332.34,498.2Z" transform="translate(-35 -34.22)"/></g></svg>