aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChen Wei <chenwei@byzantine-lab.io>2019-08-26 12:13:31 +0800
committerChen Wei <chenwei@byzantine-lab.io>2019-08-26 12:13:31 +0800
commit87e3a4dd0247fcc62fb33b86301426e338f70ccb (patch)
tree4677c81242f89eedbb1a7ba583b4fe447259f853
parent19f03f07c2fac1b7a13e3cff4079cff21d5686fb (diff)
downloadtangerine-official-website-87e3a4dd0247fcc62fb33b86301426e338f70ccb.tar.gz
tangerine-official-website-87e3a4dd0247fcc62fb33b86301426e338f70ccb.tar.zst
tangerine-official-website-87e3a4dd0247fcc62fb33b86301426e338f70ccb.zip
current version for tangerine network
-rw-r--r--src/components/Bubble/index.js6
-rw-r--r--src/components/LandingPage/Explorer.js65
-rw-r--r--src/components/LandingPage/Resources.js62
-rw-r--r--src/components/LandingPage/Wallet.js2
-rw-r--r--src/global.css2
-rw-r--r--src/images/explorer-logo.svg299
-rw-r--r--src/images/flyingMonkey.pngbin49933 -> 0 bytes
-rw-r--r--src/images/gama_pay.pngbin9519 -> 0 bytes
-rw-r--r--src/images/gamania.jpgbin29405 -> 0 bytes
-rw-r--r--src/images/gatsby-astronaut.pngbin167273 -> 0 bytes
-rw-r--r--src/images/main-chainlines-2.svg206
-rw-r--r--src/images/main-chainlines-3.svg206
-rw-r--r--src/images/main_background.pngbin585811 -> 0 bytes
-rw-r--r--src/images/orange_house.pngbin8359 -> 0 bytes
-rw-r--r--src/images/stone2.pngbin11322 -> 0 bytes
-rw-r--r--src/images/taihu_brew.pngbin58026 -> 0 bytes
-rw-r--r--src/pages/index.js29
-rw-r--r--src/translations/en.json3
-rw-r--r--src/translations/zh-Hant.json3
19 files changed, 420 insertions, 463 deletions
diff --git a/src/components/Bubble/index.js b/src/components/Bubble/index.js
index 2184ef2..050bcbf 100644
--- a/src/components/Bubble/index.js
+++ b/src/components/Bubble/index.js
@@ -22,7 +22,7 @@ const Canvas = styled.canvas`
/* border: 1px solid #EEE; */
`;
-const AnimatedBubble = ({ size }) => {
+const AnimatedBubble = () => {
const wrapperRef = useRef(null);
useEffect(() => {
@@ -118,9 +118,7 @@ const Bubble = () => {
return (
<Wrapper ref={wrapperRef}>
{size && (
- <AnimatedBubble
- size={size}
- />
+ <AnimatedBubble />
)}
</Wrapper>
);
diff --git a/src/components/LandingPage/Explorer.js b/src/components/LandingPage/Explorer.js
index 6cb3045..94a9ab3 100644
--- a/src/components/LandingPage/Explorer.js
+++ b/src/components/LandingPage/Explorer.js
@@ -2,13 +2,18 @@ import React from "react";
import styled from 'styled-components';
import { MOBILE_WIDTH } from 'src/constants/app';
import { FormattedMessage } from 'react-intl';
+import explorerLogo from 'src/images/explorer-logo.svg';
const Wrapper = styled.div`
+ position: relative;
display: flex;
padding: 100px 0px;
+ overflow: hidden;
+ justify-content: center;
@media screen and (max-width: ${MOBILE_WIDTH}px) {
flex-direction: column;
- padding: 40px 0px;
+ padding: 80px 0px;
+ align-items: center;
}
`;
@@ -17,14 +22,19 @@ const Section = styled.div`
display: flex;
flex-direction: column;
align-items: ${p => p.align || 'flex-start'};
- /* border: 1px solid #DDD; */
padding: 20px;
+ margin-bottom: 100px;
+ @media screen and (max-width: ${MOBILE_WIDTH}px) {
+ margin-bottom: 0px;
+ align-items: center;
+ }
`;
const TextArea = styled.div`
width: 386px;
@media screen and (max-width: ${MOBILE_WIDTH}px) {
width: 100%;
height: auto;
+ text-align: center;
}
`;
const Title = styled.div`
@@ -38,18 +48,59 @@ const SubTitle = styled.div`
margin-bottom: 20px;
`;
+const Link = styled.div`
+ width: 100%;
+ margin-top: 50px;
+ font-weight: bold;
+ cursor: pointer;
+ display: flex;
+ &:hover {
+ cursor: pointer;
+ }
+ @media screen and (max-width: ${MOBILE_WIDTH}px) {
+ margin-top: 25px;
+ text-align: center;
+ justify-content: center;
+ }
+`;
+
+const Logo = styled.img`
+ position: absolute;
+ height: 800px;
+ margin-left: 200px;
+ bottom: -450px;
+ @media screen and (max-width: ${MOBILE_WIDTH}px) {
+ flex-direction: column;
+ padding: 40px 0px;
+ width: 90%;
+ margin-left: 0px;
+ bottom: auto;
+ }
+`;
+
+const ArrowIcon = styled.span`
+ font-weight: normal;
+ margin-left: 30px;
+ @media screen and (max-width: ${MOBILE_WIDTH}px) {
+ margin-left: 15px;
+ }
+`;
+
const Explorer = () => (
<Wrapper>
- <Section align="flex-end">
+ <Logo src={explorerLogo} />
+ <Section />
+ <Section>
<TextArea>
<Title><FormattedMessage id="tangerine-explorer" /></Title>
<SubTitle><FormattedMessage id="tangerine-explorer-description" /></SubTitle>
</TextArea>
-
- </Section>
- <Section>
- s
+ <Link onClick={() => window.open('https://testnet.tangerine.garden')} >
+ <FormattedMessage id="see_how_it_works" /><ArrowIcon>></ArrowIcon>
+ </Link>
</Section>
+ <Section />
+ <Section />
</Wrapper>
);
diff --git a/src/components/LandingPage/Resources.js b/src/components/LandingPage/Resources.js
index c15c0b0..4019727 100644
--- a/src/components/LandingPage/Resources.js
+++ b/src/components/LandingPage/Resources.js
@@ -24,6 +24,7 @@ const Card = styled.div`
padding: 20px;
width: 90%;
height: 200px;
+ margin-top: 20px;
}
`;
@@ -46,31 +47,38 @@ const Padding = styled.div`
`;
-const ResourceItems = [{
- title: 'Faucet',
- content: 'read_the_paper',
- links: [{
- title: 'get_mainnet_token',
- link: 'https://byzantine-lab.gitlab.io/wiki/#/Dapp-Development-Guide'
- }]
-}, {
- title: 'Paper',
- content: 'read_the_paper',
- links: [{
- title: 'Manifesto',
- link: 'https://byzantine-lab.gitlab.io/wiki/#/Dapp-Development-Guide'
- }, {
- title: 'Consensus_Algorithm',
- link: 'https://byzantine-lab.gitlab.io/wiki/#/Dapp-Development-Guide'
- }]
-}, {
- title: 'dev-guide',
- content: 'build_your_dapps',
- links: [{
- title: 'Resource_Wiki',
- link: 'https://byzantine-lab.gitlab.io/wiki/#/Dapp-Development-Guide'
- }]
-}]
+const ResourceItems = [
+ // {
+ // title: 'Faucet',
+ // content: 'read_the_paper',
+ // links: [{
+ // title: 'get_mainnet_token',
+ // link: 'https://byzantine-lab.gitlab.io/wiki/#/Dapp-Development-Guide'
+ // }]
+ // },
+ {
+ title: 'Paper',
+ // content: 'read_the_paper',
+ links: [
+ // {
+ // title: 'Manifesto',
+ // link: 'https://byzantine-lab.gitlab.io/wiki/#/Dapp-Development-Guide'
+ // },
+ {
+ title: 'Consensus_Algorithm',
+ link: 'https://arxiv.org/abs/1907.03437'
+ }
+ ]
+ },
+ {
+ title: 'dev-guide',
+ content: 'build_your_dapps',
+ links: [{
+ title: 'Resource_Wiki',
+ link: 'https://byzantine-lab.gitlab.io/wiki/#/Dapp-Development-Guide'
+ }]
+ }
+];
const Resources = () => (
<Slide bottom>
@@ -81,7 +89,9 @@ const Resources = () => (
<Title>
<FormattedMessage id={resource.title} />
</Title>
- <Content><FormattedMessage id={resource.content} /></Content>
+ {resource.content && (
+ <Content><FormattedMessage id={resource.content} /></Content>
+ )}
<Padding />
{(resource.links || []).map((link, key) => (
<ExtLink onClick={() => window.open(link.link)} key={key}>
diff --git a/src/components/LandingPage/Wallet.js b/src/components/LandingPage/Wallet.js
index 86d108f..fc74b75 100644
--- a/src/components/LandingPage/Wallet.js
+++ b/src/components/LandingPage/Wallet.js
@@ -9,7 +9,7 @@ const Wrapper = styled.div`
padding: 100px 0px;
@media screen and (max-width: ${MOBILE_WIDTH}px) {
flex-direction: column;
- padding: 0px;
+ padding: 80px 0px;
}
`;
diff --git a/src/global.css b/src/global.css
index 1954458..98148bc 100644
--- a/src/global.css
+++ b/src/global.css
@@ -1,3 +1,5 @@
+@import url('https://fonts.googleapis.com/css?family=Lato|Montserrat:300,700');
+
html {
font-family: Avenir, sans-serif;
-ms-text-size-adjust: 100%;
diff --git a/src/images/explorer-logo.svg b/src/images/explorer-logo.svg
new file mode 100644
index 0000000..f6d917d
--- /dev/null
+++ b/src/images/explorer-logo.svg
@@ -0,0 +1,299 @@
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="800" height="800" viewBox="0 0 800 800">
+ <defs>
+ <path id="a" d="M6.111.505c.325.051.504.429-1.133 1.463-2.97 1.885-3.954 1.504-3.966 1.494-.054-.044.065-.15.185-.242.006-.014 2.066-1.578 2.245-1.694.191-.12 1.366-.657 2.156-.932"/>
+ <path id="c" d="M1.47-1.652C1.415-1.5.29-.797.078-.686c-.457.243-.953.41-1.06.345-.07-.048.134-.291.366-.426.195-.117 1.334-.651 1.851-.84"/>
+ <path id="e" d="M9.873-5.248c-.843.184-1.555.648-2.333.956L4.805-3.25C9.721-5.801 15.08-7.672 15.138-7.69c.228-.07.228-.07.326-.041-.229.174-1.68.914-1.692.93-1.271.647-2.062.967-2.147 1"/>
+ <path id="g" d="M4.2-1.729c-.027.109-.078.211-.057.326-.346.282-6.495 3.5-6.951 3.4.76-.722 5.244-3.915 11.002-5.91.116-.039.292-.071.418-.087-.075.067-.194.138-.278.192-.495.275-1.42.69-2.09.998-1.964.89-2.024.94-2.137 1.052"/>
+ <path id="i" d="M10.273-2.712c-.006.006-1.501.912-1.661.93.513-.726.513-.726.326-.822 0-.01-.012-.015-.012-.027.128-.171 2.142-1.677 3.302-2.061.146-.036.164-.03.19-.006-.006.024-.006.069-.207.258-.345.315-.712.603-1.05.918-.19.18-.35.387-.55.558"/>
+ <path id="k" d="M-4.432 7.5c.287.039-.088.393-.49.68-1.09.78-3.714 1.813-3.962 1.825-.006-.015-.015-.03-.015-.04.097-.143 1.717-1.343 3.107-2.03 0 0 .463-.225.991-.378"/>
+ <path id="m" d="M-1.285 14.138c-.021.162-2.486 2.27-2.504 2.287-1.955 1.33-4.146 2.24-6.104 3.563.993-.235 1.917-.749 2.969-.785.956-.033-.498 2.892-.999 3.406-2.28 2.308-10.64 7.253-11.572 6.261-.069-.063-.099-.19-.116-.276-.084-.56.256-1.052.256-1.597.012-.31-.173-.565-.233-.853-.137-.743-.527-1.389-.72-2.107-.03-.097.014-.238.056-.328.357-.854 3.424-2.504 4.041-2.6-.024.841-1.195 1.17-.948 2.137.206.012.25.021.623-.183.888-.475 4.188-2.95 4.411-3.304.128-.201.31-.472-.298-.896-.39-.27-.834-.057-1.237-.186-.006-.03-.024-.072-.03-.108.683-.96 5.654-3.343 7.189-3.686 1.249-.258 2.5-.508 3.746-.76.128-.024.298-.054.43-.075"/>
+ <path id="o" d="M-25.796 13.208c.06-.048.142-.125.194-.182-1.58.755-2.747 2.242-4.614 2.474C-26.479 12.489-8.96 3.251-6.319 2.093c.133-.05.33-.119.466-.083-.366.46-.735.668-.984.808L-19.21 9.736c.179-.19.179-.19 3.83-2.45"/>
+ <path id="q" d="M-26.3 39.5c.163.003 1.386.572 1.985 1.544.006.02 1.37 2.39.82 3.01-.014.017-2.048 1.913-6.947 2.768-.78.136-1.562.214-1.716.161-.496-.163-.407-.735-.785-.977-.201-.136-.337-.142-1.415.075-.69.133-.895.175-1.116.144-.02-.005-.047-.036-.07-.05.129-.394.982-.891 3.82-2.521 1.713-.986 2.885-2.53 4.453-3.674.399-.294.617-.388.81-.458"/>
+ <path id="s" d="M-19.023 18.502c.49.048.199.536-.97 1.65-.277.264-2.725 2.565-3.554 2.828-.503.16-.127-.698.02-1.017.243-.53.226-.56.173-.743-.246-.106-.489.027-.735.024a.153.153 0 0 1-.036-.038c.091-.237 1.85-1.867 4.314-2.574"/>
+ <path id="u" d="M156.107-40c2.652.01 5.219.046 6.912.105 2.81.099 5.286 2.01 8.2 1.489.82-.15 5.086-.881 8.463-.686.05.003 5.094.32 6.842.56l-.54.135a9.473 9.473 0 0 0-.281 1.114c.395.183.932.45 1.331.65 1.895 7.23 9.8 4.216 13.691 8.023-.2.081-.48.18-.68.258-.075.17-.162.387-.234.554 1.14 1.768 1.253 1.954 14.579 9.815 4.08 2.403 5.454 3.217 3.472 5.23-1.433 1.445-1.961 2.134-.786 4.686 1.017 2.181.966 4.737 2.43 6.759 2.299 3.164 5.927 4.943 8.311 8.017 1.634 2.112.32 3.07.26 3.11-2.647 1.872-5.768 2.816-8.635 4.296-6.992 3.595-15.047 4.098-22.048 7.645-2.894 1.471-3.137 3.197-3.562 6.33-.42 3.042-.42 3.042-16.474 7.898-5.095 1.546-5.188 1.576-6.018 2.948-1.56 2.654-.12 5.554-.648 8.293-.03.182-3.712 18.787-5.868 21.199-1.301 1.459-1.733 1.95-22.108-1.96-4.507-66.275-7.506-88.582-11.218-99.952 4.13 12.927 7.128 40.133 11.218 99.952-8.15-2.75-25.155-31.526-25.572-32.859-.896-2.828.267-7.651 1.458-9.407 2.153-3.193 6.512-3.068 8.911-5.902.042-.042 2.738-4.736-3.1-7.33-3.422-1.529-5.724 1.458-8.594 2.13-.948-1.648-.246-3.593-.942-5.294-.455-1.109-2.033-1.205-2.27-2.514-.068-.345-.074-.437 1.257-2.921 3.286-6.109-6.83-17.346-6.945-17.442-1.532-1.327-1.808-1.564-23.574.027-.108.015-8.885-1.495-5.394-6.184.542-.734 13.19-4.398 13.307-4.425 2.5-.677 7.154-1.935 8.936-4.119-2.33.003-2.33.003-2.903-.306.117-.05 11.784-5.281 28.024-7.094 2.198-.207 2.89-.198 4.744-.177 4.519.075 4.519.075 4.858.036-1.212-.305-1.212-.305-5.26-.605-.072-.012-.153-.02-.222-.033-.02-.003-.05.01-.06-.02.04-.082.13-.025.192-.043h.018c3.31-.632 3.31-.632 10.234-1.01.012-.005.03-.005.03-.005.735-.495.735-.495 7.098-.851 1.487-.072 3.941-.11 6.568-.12h2.592"/>
+ <path id="w" d="M38.65 38.749c-.023.066-2.412 6.301-4.231 5.097-.738-.48-2.595-3.569-2.134-4.758.825-2.065 5.279-3.296 5.322-3.302"/>
+ <path id="y" d="M71.014-26.774c-5.613 1.46-5.784 1.39-6.45 1.078 1.335-1.59 14.278-4.705 15.382-4.571 1.584.199 2.118.03 2.748-.157a1.62 1.62 0 0 1-.606-.487c3.246-1.239 18.31-3.784 18.46-3.802.048-.012 6.316-.781 10.08-.787-3.893.983-7.878 1.56-11.754 2.584 1.524-.107 1.77-.137 5.811-.71-.8.235-16.426 5.049-16.5 5.073 1.205-.211 1.205-.211 1.763-.173-2.154 1.411-5.316 2.234-12.252 4.025.12.041.273.092.384.127-.066.63-2.691 3.41-10.174 5.195-1.254.294-6.798 3.772-7.422 4.642.288.065.666.151.942.232.762 2.049-7.618 6.073-10.24 5.56.828-.621.828-.621 1.113-1.305-3.936-.86-7.11 1.655-10.69 2.356-4.854.944-5.385.92-6.126.879a4.536 4.536 0 0 1-.225-.327c2.346-2.287 5.784-2.47 8.43-4.196.12-.844.39-2.596 5.047-2.706.474.52 1.185 1.307 7.33-2.005-3.565 1.31-3.973 1.357-5.047 1.494.021-.11.078-.255.114-.36-.708-.43-1.575-.296-2.31-.617.327-.276 8.673-5.067 11.887-4.102 1.035-.935 1.617-2.981 1.617-3.391.552-.419.975-.755 2.397-1.052 6.078-1.274 11.782-3.148 18.991-5.518-1.734.487-12.505 3.413-15.844 4.19"/>
+ <path id="A" d="M11.372-.57a.491.491 0 0 1 .144-.11c.516-.293 5.606-1.76 5.649-1.77.322-.066.322-.066.583-.006-.13.218-.19.27-1.037.948-3.94 3.178-3.94 3.178-5.437 4.566a.24.24 0 0 0 .046-.081c.116-.308.034-.443.015-.49C8.071 5.26 8.071 5.26 7.577 5.53 6.847 5.92 1.069 8.01 1.047 8A1.436 1.436 0 0 0 1 7.928c.334-1.034 4.632-3.349 6.25-4.222-5.121 1.642-5.121 1.642-5.428 1.55-.028-.09-.028-.09.2-.539-.28-.173-.56.135-.83-.003 1.762-.975 3.891-1.187 5.49-2.5a.737.737 0 0 0 .009-.143c-.15.009-.313.02-.46.02C7.617.694 8.96.553 9.095.622c0 .227-.132.418-.196.619-.169.397-.383.924-.55 1.318 1.648-1.247 1.713-1.294 2.191-1.83"/>
+ <path id="C" d="M65.29 39.085c-.077.003-7.563 2.385-6.014 6.798 1.88 5.366 8.02 4.917 11.317 8.35 1.524 1.586-1.636 8.737-3.528 9.322-.319.097-.79-.223-1.437-.672-3.357-2.276-5.218-3.03-11.11-3.669 7.555 7.054 7.555 7.054 8.003 7.274.884.429.884.429 1.02.956-3.465 1.926-20.453-1.619-22.646-3.56 4.006-1.505 4.006-1.505 4.812-2.352-9.936-4.38-9.936-4.38-15.524-2.48-7.31 2.48-9.773 2.176-10.534 1.488-.5-.44-.448-3.391 1.302-4.32 3.949-2.107 8.466-1.869 12.625-3.117 13.908-4.178 14.922-14.184 14.922-14.277-.045-4.462-4.713-4.197-6.74-6.63-1.608-1.929-2.333-4.431-4.053-6.276-.018-.021-3.245-2.822-4.46-3.464-.5.808-1.242 2.026-6.25 2.572-5.9.645-5.725 1.395-5.455 2.532-1.82.883-15.358 3.657-19.289.962-3.963-2.71 17.13-20.43 24.206-22.104 1.384-.253 6.03-1.043 7.516-.455.216 5.354.48 5.969.721 6.56.578.033.61.039 4.28-1.345 3.618-1.362 8.565-3.232 10.868-3.048 2.502.196 2.274 3.172 4.105 4.07 1.72.85 3.609.308 5.39.594 4.008.648 12.266 8.492 12.459 10.18.08.646-1.155 1.197-3.636 2.298-5.645 2.517-6.277 2.996-6.935 3.515l23.514 5.345c.03.398-.084.925-.201 1.302-.049.127-4.854 12.436-8.07 13.048-1.157.217-2.429-1.438-3.653-3.036"/>
+ <path id="E" d="M-11.944 5.8c.035-.22 3.014-1.398 3.585-1.581a.643.643 0 0 1 .193-.042c.004 0 .022.006.029.012-.078.096-.515.333-.765.468"/>
+ <path id="G" d="M118.554 19.187c-1.037.196-2.026-.099-2.593-.447-2.612-1.583 2.173-4.34 3.849-4.697 1.321-.155 1.797.161 1.797.161.044.034.063.1.063.15 0 .17.012.459.263.766.4.488 1.07.665 1.409 1.22.16.252.32.54.17.985-.245.698-1.22 1.127-1.22 1.127"/>
+ <path id="I" d="M48.883 6.549c-.08.038-8.08 3.51-10.563 1.657-.766-.575-1.79-2.59 1.482-3.09 3.732-.521 8.783.847 9.16 1.374"/>
+ <path id="K" d="M23.196-10.602c1.544-.582 1.886-.772 1.799-1.015-.64-.056-1.216.42-1.868.233.478-.324 4.35-2.103 7.268-3.06.218-.065.218-.065.295-.043-.462.589-1.368.545-1.734 1.265.413.006.757-.368 1.191-.224 0 .57-3.25 3.405-4.256 3.944-.198.103-2.99 1.24-3.201.957.133-.598.94-.58 1.089-1.166 0-.006-1.626-.137-3.27.396-.149.047-.307.106-.477.119"/>
+ <path id="M" d="M9.186 4.976c.302-.209 5.311-3.161 7.106-3.665.122-.03.304-.066.43-.06 1.035.097-1.228 2.452-2.332 3.413-1.926 1.667-4.174 2.18-5.067 1.616"/>
+ <path id="O" d="M39.826-12.183c-.122.143-.27.249-.413.358-1.675 1.255-2.261 1.495-3.493 1.87-2.478.74-7.084 1.552-7.514 1.446.236-.158.933-.417 2.057-.79 1.585-.526 3.215-.863 4.797-1.377 1.365-.444 2.697-1.021 4.074-1.459.062-.024.145-.042.213-.066.066-.019.157-.043.233-.049"/>
+ <path id="Q" d="M28.406-9.296c.308-.755.845-.955 2.438-1.53 1.285-.47 1.99-1.673 3.06-2.419.305-.217.57-.34.748-.412.302-.093.41-.127.654-.052a.417.417 0 0 1 .209.134c.017.017.023.04.023.055.091.145 0 .287 0 .423.018.29.481.148.481.456-.014.258-.135.374-.757.658-1.402.653-6.284 2.672-6.809 2.733"/>
+ <path id="S" d="M39.56-16.958c-.977.522-1.733.915-1.956.792 0 0-.373-.402.714-.987.947-.495 4.183-1.623 4.217-1.638.102-.027.215-.078.336-.063"/>
+ <path id="U" d="M47.423-18.43c-.338.107-3.33 1.054-3.613.88.012-.016 1.389-1.67 4.125-2.327.795-.185 2.64-.635 3.313-1.233-.464.079-.894.307-1.374.22.88-.604 9.878-4.194 12.353-4.848.12-.025.306-.003.439-.003-.404.588-1.098.782-1.542 1.326.162.794-.615.938-.927 1.407.191.178.438.106.662.166-.038.222-.05.31-2.095 1.326-.253.128-.515.244-.754.406.021.032.027.079.045.113 1.082.253 1.082.253 1.159.338a1.287 1.287 0 0 1-.315.234c-1.45.779-3.084.985-4.578 1.683-2.387 1.135-4.497 2.849-6.968 3.793-1.016.394-2.107.132-3.122.447-2.555.782-2.555.782-2.666.735-.383-.184-.3-1.313.597-1.907.256-.172 1.277-.66 5.273-2.011 1.468-.497 1.957-.67 2.39-.954a.666.666 0 0 0 .038-.181"/>
+ <path id="W" d="M17.792 4.998c-.72.012-1.634.03.637-2.49C19.59 1.221 21.366.792 22.635-.35c.106-.11 2.17-2.67 1.524-3.078-.334-.21-1.935.325-3.092.715-1.028.34-1.071.34-1.598.355-.015-.502 2.018-2.561 2.657-2.818.776-.195 2.01-.349 2.371-.39 1.22-.127 2.408.319 3.637.174 1.053-.12 1.985-.753 3.083-.697.45.02 2.526 1.315-1.67 2.46-.795.222-1.142.334-1.346.559-.456.505 1.233 2.448 3.385 1.604 2.416-.948 14.051-4.844 16.437-4.782.05 0 4.645.263 2.776 2.053"/>
+ <path id="Y" d="M529.356 322.703c-.03 9.69-.662 21.713-1.1 31.46.027-.573.033-1.176.054-1.81-.827 12.04-1.374 16.471-1.813 20.012l-1.067 7.737-.19 1.233a101.61 101.61 0 0 1-.66 3.684c.096-.597.216-1.392.306-1.986-.469 2.697-.469 2.697-10.195 23.644-1.64-.363-1.64-.363-5.316 1.356-1.082-33.517 8.577-67.091-.535-100.576-.28 1.192-1.061 2.779-2.014 3.559-.932-6.415-.932-6.415-1.821-7.798l3.735 44.369c1.257 14.094-1.487 28.072-1.205 42.136.096 5.418 1.332 10.782.704 16.228-1.69 14.7-1.69 14.7-.878 15.825 3.604-.762 3.604-.762 5.665-.09-2.702 9.195-13.543 32.677-21.622 41.63-5.139 5.442-22.472 24.357-27.542 36.712-1.263 3.093-13.426 27.916-26.515 40.423-5.482 5.226-12.891 7.698-18.445 12.825-4.851 4.477-7.55 10.639-12.086 15.364l-20.098 15.993-15.884 11.176c-3.964 2.69-16.032 10.896-26.284 7.722 2.258-5.142 3.46-6.381 5.639-8.613 3.213-3.303 3.793-3.897 23.813-39.466 5.148-9.142 5.785-20.035 11.349-29.005 5.98-9.646 14.655-17.461 19.19-28.096 9.85-23.101 7.448-33.631 5.693-41.312-1.121-4.866-1.121-4.866 6.149-21.918 27.281 5.034 45.155 9.816 57.53 15.825-12.57-6.108-29.96-10.731-57.53-15.825 2.618-6.13 2.618-6.13.51-12.49-3.179-.996-6.873.22-9.701-2.24-2.888-2.503-.778-6.961-3.733-9.43-.406-.342-1.028-.79-1.563-.846-16.398-1.761-31.859 4.26-47.875 5.766-3.228.306-20.246-15.922-22.509-20.65-5.395-11.256-11.706-22.074-16.254-33.736-3.041-7.782 6.567-10.968 6.447-17.691-.132-8.005-5.57-14.905-4.839-23.095 0-.024 17.7-30.682 20.107-34.54.812-1.32 7.493-6.477 11.37-8.352 4.316-2.083 4.316-2.083 5.158-18.094.072-1.473-.325-3.66.514-4.881 2.789-4.125 8.463-4.056 11.493-7.848 2.423-3.052.541-7.348 3.027-10.38.417-.52 1.148-1.054 1.647-1.495.018 0 .048 0 .775.51 4.06 4.848 5.329 4.593 9.07 3.837.256.003.512.015 1.963.141 13.2 4.56 23.94-9.963 37.215-4.797.613-1.023 1.656-2.238 2.507-3.06 10.234 2.346 10.234 2.346 12.692.477 1.83.984 2.453 1.317 5.485 3.312 1.164 15.03 1.164 15.03-.354 17.449-.646 1.017-1.479 2.886-.863 3.918 2.002 3.315 29.956 28.696 32.592 30.628l1.737-.705c1.632-4.332-.24-9.223 2.128-13.444 12.729.204 11.614 17.887 23.801 18.781.704-.726 2.11-1.281 3.114-1.311 1.178 3.585 1.776 4.374 5.44 4.677 2.792-6.87 2.576-10.782 1.202-36.232-1.006-.402-2.245-1.251-2.996-2.025-.102 1.116-.442 2.586-.827 3.63-3.137-1.893-4.027-5.673-6.726-7.93.015.544.045 1.264.063 1.81-.385.387-.896.909-1.283 1.299-8.302-6.978-9.949-19.483-10.832-26.203-.505-.147-1.185-.345-1.686-.495-.052-1.212.05-2.85.231-4.05 2.2-1.098 4.947-.045 6.99-1.78-.75-.71-1.478-1.98-1.703-2.981 1.079.243 2.503.648 3.561 1.002.716-.762 1.269-2.184 1.34-3.234 8.882-2.322 8.594 9.786 14.07 13.446.478-.258 1.124-.618 1.587-.876.417-13.416-9.925-22.183-14.505-33.433.315-.456.736-1.065 1.049-1.521-1.455-5.655-1.455-5.655-2.447-7.233.283-.513.653-1.188.932-1.698-.817-2.176-1.301-3.106-4.124-2.506-1.881 5.347 7.59 11.815 1.242 15.478-1.488-2.08-2.285-4.587-4.007-6.525.62-3.588.62-3.588.057-5.901-1.935-1.158-2.605-1.66-4.27-3.595.228-.483.535-1.14.76-1.623-.923-.423-2.435-.513-3.393-.174-1.635 13.12 7.763 24.478 6.002 37.622-.565.03-1.326.078-1.906.117a23.479 23.479 0 0 1-1.548 3.423c-1.133-4.197-6.56-7.423-9.146-7.978-1.421 1.078-1.421 1.078 1.482 15.505.899 4.446 2.666 8.718 2.678 13.335 0 1.131-.096 2.644-.25 3.769l-8.496-19.432c-7.98-22.918-7.98-22.918-8.079-23.074l-26.815-31.45c-.99.378-2.146 1.356-2.708 2.247 11.823 24.133 15.334 25.69 19.77 27.661-.126.546-.297 1.275-.433 1.812 9.447 11.326 9.447 11.326 10.033 14.194-.73-.96-1.68-2.26-2.393-3.234-.538.14-1.25.33-1.779.465-.051 2.205-.051 2.205 1.701 8.3-1.367 2.245-1.96 4.864-3.438 7.054-.52-.069-1.22-.168-1.75-.231-.597 3.174 1.392 6.243.385 9.43-.05-.028-7.186-6.199-9.491-10.102 11.776-1.614 12.734-1.752 10.66-8.52-2.75-8.962-30.644-40.943-30.896-41.156-5.086-4.37-7.779-.639-11.028 5.116-3.567-.015-6.537-5.077-10.348-1.912-.89.733-.89.733-1.007 11.32-8.232 3.234-8.388 3.3-11.571 16.42 2.981 4.698 1.593 11.676-3.928 12.366l-19.99 6.621c-.081-.12-.081-.12-1.488-5.877-3.66-.828-5.44-.69-13.97-.03.214-.924.214-.924 1.35-11.002-4.208-1.233-5.573-33.895-5.555-34.216-.817-.89-1.76-2.214-2.362-3.267 12.212 1.24 24.044 4.908 36.322 5.781.15-.237 4.286-26.667-22.07-33.976.451-.324 1.064-.753 1.515-1.077l-3.676-3.234c.226-.513.55-1.197.782-1.71 4.397.114 4.397.114 7.123 1.86 1.19-.294 2.738-.858 3.865-1.335.174-.549.415-1.29.586-1.839a37.802 37.802 0 0 1-2.239-3.447c2.453 1.788 3.354 2.457 8.98 2.74.509-1.096.824-2.713.857-3.916 1.317-.42 2.982-1.24 4.112-2.013-2.092-5.136-2.092-5.136-2.116-5.403 2.753-1.02 2.753-1.02 7.63-.91.286-.494.66-1.151.945-1.655-1.963-5.428-2.516-8.392-2.82-9.988 1.596-1.563 1.596-1.563 7.442-1.395.325-.45.755-1.056 1.085-1.506 1.106-.177 2.588-.423 3.685-.612 1.572-.297 1.626-.36 1.89-.648-.054-.159-.15-.486-2.266-2.916-5.211-6.006-12.55-18.802-12.972-19.999-.982-2.787 4.737-2.754 4.98-2.748 2.002.216 4.695 7.726 4.623 9.502-.183 4.305 3.37 9.324 6.384 12.771 4.111 4.698 4.445 4.68 5.906 4.605 4.3-.207 6.696 1.584 7.592 2.26l-5.323-.93c3.042.62 5.948 1.44 8.226 2.756.466-.285 1.076-.654 1.527-.933.075-1.062.075-1.062 11.109-.29l.078.011c-.118-.162-.289-.378-.406-.54.312-.744.427-1.557.757-2.295.463-.12.463-.12 2.859.096.225-1.818-2.964-5.907-3.607-6.711-.487-.609-5.197-9.246-5.245-9.318.135-.192.3-.46.421-.654 4.21-.33 4.481 5.34 8.382 5.49-3.092-6.15-8.755-10.218-12.722-15.664 3.634.468 6.97 1.983 10.456 2.985-.43-.675-.922-1.31-1.286-2.028l.583-.36c.959.363 1.824.933 2.867 1.08-6.014-5.499-15.103-4.656-21.078-10.215-6.85-6.36-6.85-6.36-14.09-22.492.229-.027.532-.05.764-.075-.682-1.926-10.015-8.085-12.807-9.009l-.376.58c.133.29.292.68.424.968.226.444.226.444 7.737 8.241 2.876 2.985-.346 6.934 1.604 10.072 5.107 8.226 5.107 8.226 8.867 10.71 5.43 3.588 5.653 4.284 5.578 6.141-2.098 1.938-3.066 2.811 1.11 10.537 1.812 3.372 1.523 10.716.943 11.76-2.876-.015-4.454-2.643-6.11-5.433-3.496-5.865-22.226-24.457-23.092-25.078.812 2.67 2.489 8.217-.875 9.774-10.462 4.833-21.793-21.636-21.904-21.91-.839-2.03-.869-2.57.682-3.687 4.247-3.027 4.247-3.027 5.293-10.722.042-.309.255-3.198-5.146-11.481-.066-.108-7.306-12.838-7.604-15.088-.186-1.506-.186-1.506.941-3.972-.595-1.4-2.143-2.07-2.729-3.486 3.108 1.11 4.683 4.401 7.812 5.487-1.497-1.749-1.497-1.749-1.912-2.778.67.198 9.663 4.308 10.498 6.267a20.962 20.962 0 0 1-1.46-.498c4.91 3.327 6.167 3.801 6.82 4.053.165-.126.375-.297.531-.42 2.056 1.224 2.507 1.587 3.312 2.238-.4-.189-.946-.399-1.37-.53.778.713 1.572 1.457 8.938 5.9 10.255 6.18 25.833 19.624 27.14 22.003-5.572-2.559-9.608-7.272-14.73-10.452 10.246 8.14 18.884 18.07 29.028 26.332.162-.111.388-.261.553-.375-2.39-2.406-5.452-4.143-7.153-7.233 1.025.726 1.956 1.575 3.053 2.199-6.047-6.256-6.284-6.577-6.912-7.423.565.48 1.103.975 1.659 1.476l.033.049 14.54 14.688c13.619 14.625 14.036 15.198 36.001 45.121 5.127 7.65 11.298 18.274 16.113 26.131-3.418-4.839-7.836-8.844-13.336-12.333 5.894 3.762 9.891 7.785 13.336 12.333l12.506 24.436c5.59 12.075 7.496 16.213 11.613 28.336l-.159-.174c.19 1.875.19 1.875 11.887 40.615a10.273 10.273 0 0 1-.19-.363c4.78 28.465 4.993 29.761 7.43 37.805.391 2.616.806 5.403 1.257 8.45 1.043 10.13 1.535 23.71 2.107 33.875.003.212.003.425.003.64v1.348m-2.282 36.821c.523-1.893.725-2.643 1.245-7.401.243-11.616-.415-31.798-2.005-34.201-.562 3.456-.968 5.952-.012 33.24.225-1.76.225-1.76.577-5.753"/>
+ <path id="aa" d="M518.702 239.796c.11.459.264 1.07.359 1.535l1.795 8.243a5.35 5.35 0 0 0-.103-.404c.636 4.895 1.577 9.74 2.512 14.58-2.746-18.11-3.76-21.83-7.829-36.91-.737-2.34-1.423-4.528-2.068-6.59 4.213 14.799 4.352 15.41 6.13 23.21"/>
+ <path id="ac" d="M512.233 216.521c.414 1.35.788 2.572 1.135 3.729-2.986-8.918-5.11-15.248-6.852-20.25.162.21.291.504.83 1.893l-.051-.166 4.423 12.676a51.54 51.54 0 0 0-.6-1.712c.386 1.783 1.115 3.465 1.67 5.198"/>
+ <path id="ae" d="M526.834 279.5c-.116-.41-.228-.788-.344-1.169-.877-5.762-1.599-10.543-2.226-14.581"/>
+ <path id="ag" d="M319 108.337c-1.059-.286-2.213-.08-3.233-.599-1.32-.672-1.605-1.426-1.813-1.97-.234-1.508.36-2.496.908-3.064.771-.806 1.563-1.64 4.928-3.323.222-.116.551-.262.738-.456-.718-.058-.902-.165-1.225-.35-5.1-2.915 3.014-4.989 3.352-5.074.119-.006.137.012.247.128.148.17.468.51 1.373.936 1.243.58 2.602.885 3.842 1.487.457.222 1.047.553 1.46.842.833.568 1.892 1.553 2.26 2.964.368 1.435-.113 2.584-.397 3.265-.683 1.605-.617 2.162.397 3.7.617.915 1.202 1.772 1.694 3.168.955 2.736 1.175 4.517.644 5.287-.952 1.359-2.59.9-3.818 1.526-1.05.544-1.952 1.298-2.946 1.949-3.901 2.568-9.27 3.167-10.425 1.742-.68-.849-.795-1.84-.457-3.916.006-.052.985-5.22 2.338-7.926"/>
+ <path id="ai" d="M-21.874 11.776c-6.908 4.468-7.253 4.468-7.58 4.474.327-.422 6.804-4.09 7.592-4.494.012 0 .012-.003.02-.006"/>
+ <path id="ak" d="M491.874 262.925c-1.93.655-9.141-3.163-10.22-5.04-.503-.88-.264-1.586.57-1.633.155-.01.155-.01 1.982.692 1.023.388 2.126.362 3.173.617.221.066.827.255 1.405.904 0 .006 3.214 4.202 3.242 4.237.025.031.006.094.025.142"/>
+ <path id="am" d="M425.727 214.028c-.953-1.005-.792-5.21-.146-6.376 1.089-1.98 4.163-3.119 5.422-3.152.791.079 1.586.334 1.905 2.508.205 1.37.118 2.766.31 4.148.199 1.287.689 2.505.884 3.79.04.342.097.807.087 1.153-.087 3.085-4.014 4.32-4.793 4.132-.285-.066-.949-.233-1.219-1.16-.322-1.129.14-2.292-.105-3.428"/>
+ <path id="ao" d="M406.814 213.034c-.252.264-.43.445-.79.464-1.056.058-3.618-1.105-4.296-1.943-1.22-1.514 1.912-1.962 3.867-1.76 1.803.222 2.833.753 2.699 1.382"/>
+ <path id="aq" d="M425.556 195.688c.423-.394 1.001-.929 1.001-2.371 0-1.303-.425-2.572-.21-3.88.012-.075.037-.182.057-.257.045-.266.133-.373.164-.418.026-.003.057-.006.08-.012.55.376 1.431 4.477 1.437 4.522.553 2.697 1.137 7.911.496 8.228-.187-.084-2.97-3.533-2.993-3.566-.238-.308-.477-.797-.513-1.033"/>
+ <path id="as" d="M504.117 271.793c-.162-.05-.496-.193-.845-.62-1.125-1.353-1.61-4.347-1.153-4.953.077-.106.237-.326.625-.16.477.22.762.698 1.194.98.325.213.705.338 1.013.344.486.003.897-.333 1.374-.33.102.033.19.06.19.481 0 .071 0 .166-.008.237 0 .039-.34 3.915-.59 4.185"/>
+ <path id="au" d="M-58.64 39.573c-4.178 3.21-7.61 7.383-12.506 9.677-.046-.024-.127-.057-.181-.08 1.466-3.049 2.878-4.202 4.66-5.663 20.446-16.716 20.446-16.716 25.082-18.654.132-.05.313-.098.442-.137.045.027.103.062.15.083-.15.662-.15.662-1.098 1.483 1.135-.6 2.095-1.51 3.404-1.782l.097.225c-1.099 2.042-1.099 2.042-1.96 2.67-3.717 2.695-7.772 4.866-11.54 7.477-2.083 1.45-3.892 3.234-5.984 4.665a1.09 1.09 0 0 1-.436.17"/>
+ <path id="aw" d="M-29.834 19.998c-.577-.072-.563-.713.483-1.202 2.96-1.383 8.196-4.273 9.813-5.432-1.78.664-2.654 1.159-3.119 1.424-1.724.984-1.771.984-1.949.984 1.001-.838 2.317-1.255 3.03-2.492-7.052 4.108-7.052 4.108-7.117 4.064.121-2.142 14.84-9.626 14.982-9.657 1.051 1.23-1.496 1.74-2.246 2.603a1.3 1.3 0 0 1-.139.153c-.145.153-.299.318-.426.495.041.038.083.087.118.125 5.498-1.346 6.472-3.289 6.632-4.058.225-1.053 7.414-4.933 7.488-4.977.071-.01.163-.016.237-.028-2.115 2.336-4.66 4.158-6.836 6.422 1.756-1.065 3.282-2.513 5.041-3.563.012-.01.942-.551 1.745-.489-.125.224-.199.364-1.312 1.177-.054.04-5.809 4.26-7.331 5.092-1.92 1.053-4.011 1.626-6.016 2.433-.012.009-3.196 1.445-9.414 5.116"/>
+ <path id="ay" d="M-72.151 57.014c-1.72-.416-.788-4.642 8.853-7.519 1.458-.443 4.905-1.47 7.476-3.44-1.445.312-2.891-.314-4.331 0-2.031.447-3.7 1.803-5.741 2.204a1.155 1.155 0 0 1-.673-.087c-.012-.524.148-.955 3.812-3.155 2.188-1.31 2.207-1.335 2.557-1.928a3.86 3.86 0 0 0-.713-.377c-.44-2.203 17.996-14.02 19.409-14.16-1.579 1.69-3.879 2.543-5.267 4.45 2.252-.85 4.002-2.664 6.345-3.361.045.05.12.122.172.176-.414.85-1.262 1.332-1.751 2.102 1.763-.378 3.136-1.617 4.784-2.227.094.068.227.161.323.224-.513 1.23-2.297 1.778-1.895 3.493 4.201-2.376 6.658-6.582 10.244-9.596a.687.687 0 0 0 .09-.063c.043.11.106.254.149.371.38.126.775.18 1.135.371.18.767-7.58 10.216-8.464 11.294-1.005 1.218-.22 3.295 1.666 4.358.302 1.485-1.518 3.131-1.54 3.143-.313.227-.485.284-1.349.242-2.405-.116-5.916 2.518-6.281 3.691 3.335-1.78 3.335-1.78 3.71-1.712-.022.036-.049.066-.17.207-3.507 3.888-3.507 3.888-7.099 5.091-.027.003-3.854-.82-4.34-1.287.06-.192.06-.192.537-1.084-.07-.038-.154-.095-.217-.134-1.024.383-1.784.993-3.622 2.46-5.714 4.562-15.793 9.007-17.037 8.989.643-1.161 1.869-1.904 2.343-3.185-.052-.057-.106-.126-.163-.182"/>
+ <path id="aA" d="M12.353 73.922c-.417 1.04-3.876 4.516-4.896 3.707-.42-.324-.665-1.924.316-3.06.692-.788 3.41-1.265 3.445-1.273"/>
+ <path id="aC" d="M7.875 67.232c-2.41.866-4.769-.46-7.15-.188-3.534.4-6.552 2.999-8.35 4.553-1.25 1.078-1.87 1.587-2.174 1.645-.217.033-.217.033-.439-1.463-.18-1.182-.18-1.182-2.467-1.37l3.848-6.373c.42-.679.989-1.578 1.448-2.236.142-.209 3.664-5.274 4.704-5.777.1-.027.246-.039.329.013.734.445.746 1.484 1.472 1.938 1.143.712 2.553.588 3.693 1.309.187.112.439.279.608.415 1.146.933 1.664 2.378 2.645 3.441.563.615 1.357.945 1.952 1.521.352.33.826 1.39.518 2.033"/>
+ <path id="aE" d="M1.058 71.819c1.696-.282 1.613.355 1.246.94-1.16 1.81-7.543 5.677-8.6 4.886-.554-.41-.403-2.598.582-3.383"/>
+ <path id="aG" d="M-12.46 360.57c2.43-.52 5.775 2.013 5.844 3.184.1 1.97-4.725 1.083-5.497.81"/>
+ <path id="aI" d="M342.587 106.598c.41.003.947.192 2.293.804l-2.497-.192"/>
+ <path id="aK" d="M104.297 132.603c-.509.66-1.243 1.491-1.625 2.218-.26.531-.26.713.278.996 1.013.528 1.661.99 2.392 3.652.379 1.407.746 1.759 2.421 1.392 5.494-1.201 5.494-1.201 7.051.486 2.998 3.25 5.985 9.394 5.692 13.356-.19 2.462-2.04 5.366-3.54 5.542-.281.033-.764-.06-.814-1.082-.056-.942-.127-2.367-.861-3.152-1.48-1.562-3.052-.035-4.568-.125-.488-.038-1.116-.262-1.595-.387-4.165-1.148-8.096-1.622-13.444-2.057-9.35-.763-9.35-.763-9.753-.978-.258-.128-.734-.37-.14-1.213 1.549-2.192 3.834-3.68 5.488-5.775 3.09-3.941 5.236-8.535 8.386-12.437 2.605-3.22 5.967-6.109 7.228-6.535.133-.02.3.045.426.083"/>
+ <path id="aM" d="M325.536 83.471c-.376-2.332-2.023-4.218-2.384-6.562-.051-.263-.176-.634-.079-.879 1.11-2.64 8.612-2.78 8.694-2.78 2.814.173-.622 3.898-.567 5.883.024.99.724.903 4.575.404.822-.105 2.077-.266 3.184-.224 6.095.236 3.111 10.087.85 12.078.014 0 .026 0 .039.009 1.783.077 5.333.58 9.208 3.016 2.238 1.405 3.557 3.677 5.395 5.468 3.826 3.731 9.084 5.319 13.28 8.526.944.733 1.25 1.175 1.423 1.411.006.033.024.07.03.1.121.612-1.555.035-2.78-.387-2.699-.594-2.699-.594-2.914-.526-.043.063-.082.15-.11.216 0 .047 2.36 4.813 5.81 4.636 1.522-.08 3.412-.17 5.234 4.554 1.019 2.64-1.47 5.06-.516 7.71 2.017.708 4.376-.897 6.229.914-.03.087-.037.222-.097.3l-8.912 2.968c-.055.024-.143.024-.185.033-5.188.735-10.437.338-15.628.98-10.261 1.271-10.261 1.271-10.974 1.104-.018-.132-.045-.308-.057-.44 1.28-1.345 2.99-2.197 4.239-3.587 1.01-1.121 1.188-2.733 2.34-3.77.613-.55 1.095-.987 2.681-.963 1.634.033 2.714.048 2.602-1.348-.128-1.528-4.876-1.393-7.15-1.333-5.373.146-6.365-.981-6.544-1.33-.33-.667.58-1.098 1.174-1.379 2.247-1.067 3.817-1.943 3.466-3.6-.65-3.073-3.9-4.45-4.9-7.3 2.486.194 2.486.194 3.36.598 2.043.954 4.833 2.263 4.275.012-1.053-2.191-3.148-3.612-4.336-5.698-.389-.673.015-1.39-.122-2.081-.818-.556-1.38-.703-5.8-1.845-2.826-.735-5.055-1.318-6.95-5.593-.94-2.11 2.232-5.017-.5-6.505-.662-.36-1.498.269-2.475 1.001-2.662 1.98-3.926 2.123-4.527 1.899"/>
+ <path id="aO" d="M-165.482 180.938a.895.895 0 0 1-.204.312c-.395-.632 1.88-10.972 3.885-12.59.078-.05.204-.128.294-.149.607-.14.23 1.072.21 1.123-.058.154-.114.359-.174.513-.494 1.348-1.12 2.65-1.647 3.985"/>
+ <path id="aQ" d="M276.778 34.458c-.578-.033-.578-.033-.805.176.29.944 1.145 1.595 1.372 2.572.364 1.502-6.833 6.632-11.55 7.764-5.214 1.255-6.141 1.267-6.806 1.279-.242.006-.546-.01-.776-.02-1.879-.115-3.632-.937-5.511-1.063-.82-.055-1.71.015-4.286.279-3.934.408-4.33.243-4.79-.144-.015-1.71-.02-2.425-2-2.968-1.889-.53-4.116 1.188-5.79-.833 3.907-3.174-3.095-5.561-5.317-5.165-1.265.229-3.513.543-4.17.085 1.128-1.637 3.92-1.267 4.477-3.578-.883-1.165-2.854-.822-3.415-2.417 1.993-1.566 9.144.387 10.83 3.534.745 1.39 5.248 5.03 5.842 5.265 1.926-1.528.343-3.528.74-5.262.154-.1.375-.232.53-.328 1.056-.605 2.15.53 3.206-.074.987-.563.08-2.088 1.336-2.502 1.966-.657 4.065-.536 6.057-1 2.055-.475 3.994-1.31 6.049-1.804 1.801-.094 2.902 1.364 4.396 1.957 2.105.833 4.39.328 6.525.9.242.068.56.185.805.276 1.423.56 2.63 1.927 3.045 2.657"/>
+ <path id="aS" d="M-5.76 352.4c.754-.832 2.534-.758 2.421-2.335-.036-.492-.531-1.116-1.213-1.971-.98-1.235-1.29-2.129-1.765-3.602-.961-2.942-1.276-3.931-5.927-5.11-2.53-.644-6.349-1.606-6.539-3.901.042-.042.11-.092.167-.128 1.53.864 2.177.19 2.432-.288-.305-.843-3.486-2.375-8.25.356-3.328 1.91-7.386 2.51-8.066 1.859.024-.128 3.735-3.726 9.042-5.475 9.493-1.912 14.616 1.639 16.304 2.806.175.116 16.645 19.118 16.526 19.932"/>
+ <path id="aU" d="M14.674 368.37c-3.03-1.66-6.688-1.607-9.694-3.343-.084-.05-.12-.194-.175-.273.281-.082.764-.23 5.691.545 2.677.423 4.619.728 5.078.338.181-.165 1.341-3.928-2.244-7.14-.36-.326-.36-.326-.354-.684.166-.15.22-.182.616-.294 1.535-.243 25.916 1.802 24.704 6.446-.393 1.493.849 2.701.764 4.148-.03.387-.317.469-.74.534-.036.008-8.878-.241-13.998-1.098-1.009-.16-1.299-.184-1.613-.152-2.87.273-2.495 4.661-5.833 4.336"/>
+ <path id="aW" d="M63.93 143.794c2.196-.35 12.374 1.46 11.64 3.04-.02.037-2.115 2.989-8.137.258"/>
+ <path id="aY" d="M454.44 532.957c1.662-2.165 1.662-2.165 2.365-2.957.068.024.163.069.225.102-1.022 3.091-7.38 11.753-9.457 14.394-.836 1.075-.836 1.075-1.189 1.326.77-1.3.77-1.3.806-1.553-8.81 9.275-16.908 19.216-26.128 28.105-11.304 10.906-11.304 10.906-14.28 10.873.324-1.174 11.411-15.431 19.618-21.92 2.7-2.132 3.713-2.932 6.425-6.917 5.471-8.02 6.61-9.693 10.237-10.992"/>
+ <path id="ba" d="M167.663 662.75c-7.305-.094-27.372-3.315-47.967-32.302-20.292-28.557-31.949-80.85-32.054-81.344-2.144-11.008-6.61-19.43-12.58-23.713-7.832-5.626-17.902-7.087-25.329-13.5-.243-.212-30.671-30.292-38.083-41.29-.435-.645-.918-1.575-1.296-2.26-2.346-4.177 3.122-26.54 3.188-26.744 5.655-12.41 5.655-12.41 4.965-15.386-2.21-9.427-8.408-29.546-18.463-12.774-22.6.81-31.142-24.738-51.774-27.62a83.468 83.468 0 0 0-2.306-.282c-4.614-.492-4.614-.492-17.746-7.976-5.73-3.266-11.95.102-17.806-1.32-5.714-1.382-11.545-2.288-17.233-3.748-1.632-.423-3.614-1.54-5.177-2.142-.855-.336-2.049-.756-2.799-1.29-5.534-3.887-4.244-10.758-6.938-15.893-3.33-6.373-10.103-9.619-14.08-15.413-3.069-4.472-6.605-8.602-9.488-13.206-1.35-2.148-2.106-5.585-2.778-8.626-.938-4.268-1.688-7.642-8.756-12.804 5.64 22.876 8.972 27.611 11.921 31.792 6.473 9.202 5.15 11.143 3.864 13.014-.126-.147-14.213-18.355-16.15-22.395a94.01 94.01 0 0 1 3.785-.12c-15.976-32.723-15.976-32.723-16.918-32.882-7.343-12.854-3.497-81.71 7.523-95.437a72.418 72.418 0 0 1 3.018 1.596c.153-2.73-.756-5.27-1.662-7.808 0 .045-.021.087-.012.132.018.432.126.852.099 1.281-.006.297-.048.993-.3 1.614-.29.693-.74 1.173-1.227 1.322-.027.003-1.875.366-2.636-2.24-.927-3.164-.108-7.015-.102-7.04.015-.002.02-.011.03-.017.336.075.75 1.427.851 1.832.225.801.273.843.393.969.132.141.333.204.711.234.801.06 1.323.183 1.644.3-.828-2.436-1.449-4.898-.903-7.58 2.244-11.223 2.244-11.223 4.32-17.785-.3-.495-.7-1.146-1-1.644.439-1.298 1-3.041 1.42-4.349.804-4.49.804-4.49 7.346-20.974-.147.228-.34.531-.492.753l-.075.126c9.773-16.226 10.19-16.781 32.3-45.556 5.12-5.747 11.935-13.401 17.056-19.148-.36.444-.804 1.086-1.08 1.593 8.267-8.251 14.872-13.212 14.905-13.227-2.97 2.747-6.131 5.285-9.056 8.077l.03-.015c9.254-7.861 9.254-7.861 14.317-12.519-2.94 3.63-2.94 3.63-3.914 5.65 1.866-1.796 1.866-1.796 3.011-2.627-.398.507-.875 1.251-1.178 1.827 1.661-1.128 2.864-2.94 4.985-3.383.438.39.957.984 1.293 1.46 2.975.324 3.134.234 4.17-.326.24.128.554.302.794.431-.72 3.084-3.812 3.777-5.726 5.663 4.58.687 8.012-2.75 12.208-3.422.261 2.186-1.733 4.064-.881 6.334 4.616-8.994 6.929-13.508 14.698-15.506.663.897.549 2.1 1.173 3.008 9.61.453 12.208-1.202 12.64-1.538 7.79-6.134 7.79-6.134 10.18-5.516-4.172 4.457-4.172 4.457-1.937 6.775 2.379-5.521 8.74-7.228 11.657-12.234a32.697 32.697 0 0 0-.873-.192h-.021l.036-.734c1.388-1.33 1.868-1.6 4.901-3.108-.072-.27-.156-.624-.222-.89-1.455.09-2.886.407-4.343.413-.141-.29-.327-.665-.462-.96.135-.245 18.624-25.898 32.294-29.099 1.913-.344 1.913-.344 3.101-.203-17.08 10.065-17.08 10.065-20.742 15.719.285.207.684.492.969.708-.006 1.253-.006 1.253-6.413 11.577 3.701.147 3.701.147 3.917.23-.042.055-4.26 5.556-3.528 7.64 3.06-2.702 4.725-6.874 8.867-8.437 3.65 3.827-4.163 6.317-4.73 10.177 6.503 5.806 10.346-6.722 15.694-9.8 2.925-12.572 11.612-3.7 11.705-3.613-.483.942-.597 2.036-1.266 2.894-1.218 1.28-3.393 1.116-4.314 2.846-1.002 1.878.825 3.888-.279 5.762-.399.663-1.095 1.452-1.68 1.965-2.714 2.384-2.714 2.384-13.036 6.11-3.095-1.965-6.041 1.598-6.062 1.634.552.036 1.28.294 1.743.615-4.494 6.919-12.134 3.188-18.055 5.326 5.006 2.847 6.284 2.622 12.445 1.545-9.056 9.649-9.056 9.649-24.966 12.48 1.566 1.236 4.302.132 5.244 2.63-8.177 6.071-27.33 20.285-25.956 28.14 6.068.48 6.068.48 6.51 3.05 1.229 7.384 1.229 7.384 2.207 8.182 2.802-.798 5.108-3.182 8.342-2.633.63.102 1.46.318 2.07.528 3.54 1.244 5.423 4.993 9.122 5.992 3.626.981 7.706-1.97 11.083 1.29.621-.018 1.461.039 2.076.129.084.303 0 .924.084 1.22-.543.432-1.47 1.215-2.019 1.644 1.059 2.61 1.884 4.67-.045 10.324 3.555 2.543 8.117 3.67 10.682 7.6 8.207-5.684 3.473-14.673 5.372-21.868 1.44-1.107 1.62-1.272 1.965-1.715-.759-2.625 2.799-3.756 4.361-4.118 7.154-1.653 6.93-14.061 6.918-14.187-.108-3.09-3.357-4.961-3.162-8.167.165-2.766 3.233-3.557 4.001-5.909-4.001-5.03 1.911-9.36 1.002-14.174 5.073-2.109 10.634-.96 15.82-2.355.951-.09 1.242-.117 2.511.303 5.67 1.872 6.236 2.843 6.48 3.254.716 1.215 1.05 1.584 1.586 1.779 2.3.843 4.727-.276 7.028.495-2.388 1.92-3.938 9.984-3.248 11.208 3.923.87 7.073 4.535 11.587 3.158.726-.219.726-.219 3.312-3.76 1.143-1.54 3.296-.274 4.49-1.65 1.038-1.194-.564-2.448.072-3.654 4.065-7.759 4.065-7.759 12.365 7.067 3.3 5.884 3.3 5.884 1.796 7.98-1.028 1.42-1.394 2.07-.857 2.802 1.286 1.734 3.839 1.299 5.14 3.015.958 1.28-.122 2.747.358 4.067.807.27.807.27 2.352-.13 6.845-1.796 12.292 2.889 11.974 3.717-.207.339-.735.576-1.095.759-16.408 1.331-28.007 2.378-41.353 3.782 14.525-1.461 27.729-2.592 41.27-3.75-6.987 2.7-7.878 3.048-9.762 5.732.204.471.483 1.095.696 1.557 6.17-4.028 9.653-4.373 10.799-4.484.012 0 .036-.006 1.647.009 1.899.384 3.78.798 5.67 1.206.32.482.728 1.13 1.046 1.62-1.698 4.198-1.698 4.198-.537 7.042-3.6 6.535-27.174 18.223-32.417 14.636-23.052 6.991-23.052 6.991-45.504 30.338 32.615-20.401 32.615-20.401 34.96-18.086-.975 4.592-4.274 5.486-8.855 6.734 1.302 1.601 1.503 1.847 4.563 2.972 1.272 3.935 1.827 5.59 5.078 7.123-.966-1.955.087-4.598.261-4.877.027-.015.07-.042.093-.057.06.042.141.087.1.627-.112 1.392.14 2.364 1.802 3.2.678.342 2.595 1.071 5.948.546.498-.08.555-.08.714-.042.015.015.021.04.04.057a.478.478 0 0 1-.03.1c-.01.026-1.438 2.039-3.315 2.435 1.883.56 4.151 1.196 6.938 1.973 2.15-3.242 2.3-7.663 5.888-10.065 4.661 11.748-21.432 26.915-29.912 26.768.165-2.594.165-2.594 12.685-11.478v-1.878c-1.206.036-2.78-.365-3.893-.782.216-.46.504-1.065.722-1.518-21.624 12.525-21.624 12.525-22.878 12.462-7.45 6.964-7.45 6.964-8.858 20.251-1.118-.084-16.273 8.146-16.357 8.236-3.56 3.462-2.792 8.662-5.099 12.633-.432-2.1-2.049-3.52-2.99-5.323-1.083 16.937-1.083 16.937-2.301 17.72.006-.022.012-11.61-.186-15.41L.536 247.971c.483.177 1.125.423 1.617.603-.057.609-.144 1.416-.204 2.027-.498.141-1.149.336-1.638.483-.06.504-.14 1.176-.207 1.689.351.393.81.912 1.152 1.302.015-.006.02-.006.195.015-7.835 8.964-21.864 12.225-24.22 26.261-2.258 13.575 18.245 25.53 5.481 39.006-10.825-6.274-3.947-22.117-15.226-28.136-.114-.06-26.439 2.222-29.753 4.142-.12.549-.273 1.275-.39 1.82 1.437 1.137 3.305 1.617 4.568 3.006-.44.369-1.026.863-1.479 1.23-.123-.064-16.695-3.804-20.964-.51-2.394 1.844-12.595 12.237-14.305 17.77-1.311 4.268 3.713 6.086 3.791 9.814.135 5.846-5.069 10.683-3.227 16.868 1.494 4.997 5.945 14.499 19.005 21.979 5.574 3.194 8.7-3.63 13.562-3.314 3.014-31.88 17.13-20.492 18.732-19.09-1.35 7.776-1.35 7.776-5.015 16.348 2.034 4.31 2.034 4.31-.756 13.572 8.474.57 17.005-3.845 25.407.408.063.024 4.676 7.987 3.123 18.787-2.553 17.852 25.092 5.76 35.845 13.401 3.237-28.73 31.871-24.42 68.122-18.964 1.188.174 2.753.663 3.842 1.185 7.49 3.608 12.179 10.797 19.168 15.041 8.83 5.35 19.803 3.62 28.715 8.695 6.81 3.89 11.684 10.78 18.205 15.03 3.822 4.13 4.377 11.298 10.58 13.58 10.682 2.664 21.564 4.535 32.108 7.78 7.07 2.18 11.908 8.596 19.3 10.207 2.27.495 4.535-1.212 6.827-.051 3.224 1.64-.183 5.126.3 7.67.318 1.697 1.7 2.935 2.006 4.636.036.168.024.405.01.579-.022.14-5.055 15.482-19.22 20.644.115.468.424 1.07.712 1.464 1.556 2.138.74 3.35-1.473 6.59-1.91 2.812-.21 5.767-.351 8.646-.25 5.15.219 10.315-.471 15.443-.318 2.343-.516 2.316-2.994 1.998-1.434-.186-3.15-.144-5.06 1.587-4.242 3.86-4.332 10.911-10.334 13.406-2.633 1.095-9.014 4.193-11.45 9.418-.05.414-7.258 41.363-24.18 41.822l2.187 3.078c1.926 2.81-.564 8.964-8.009 6.688-.318.195-.738.462-1.053.65.312 2.988.312 2.988-3.893 6.728 5.456 7.576 5.456 7.576 5.498 8.044-4.52-.147-4.52-.147-5.498.174 6.29 17.315 6.29 17.315 9.62 20.87-2.259 10.146-2.259 10.146 21.714 22.497-.039.013-.82.143-2.221.162h-.674m-2.702-211.738c.033.453.072.93.105 1.383m6.713 76.998c.012.173.039.36.069.54-.894-8.81-1.698-17.18-2.475-25.59M28.253 439.71c6.91-.855 13.435-1.635 19.74-2.367m-180.395-289.77c5.04-1.64 10.322-3.21 15.749-4.71"/>
+ <path id="bc" d="M46.638 369.652c.926-.232 1.603-.387 6.222 1.014 4.169 1.271 4.59 1.944 4.456 2.23-.234.562-5.863 1.326-7.618 1.043"/>
+ <linearGradient id="be" x1="119.847%" x2="28.163%" y1="56.313%" y2="50.992%">
+ <stop offset="0%" stop-color="#FAA969" stop-opacity="0"/>
+ <stop offset="100%" stop-color="#F27038"/>
+ </linearGradient>
+ <linearGradient id="bf" x1="-8.472%" x2="85.721%" y1="50%" y2="50%">
+ <stop offset="0%" stop-color="#FAA969" stop-opacity="0"/>
+ <stop offset="100%" stop-color="#F27038"/>
+ </linearGradient>
+ <linearGradient id="bg" x1="1.285%" x2="85.85%" y1="46.256%" y2="47.933%">
+ <stop offset="0%" stop-color="#FAA969" stop-opacity="0"/>
+ <stop offset="100%" stop-color="#F27038"/>
+ </linearGradient>
+ </defs>
+ <g fill="none" fill-rule="evenodd">
+ <g opacity=".106" transform="translate(261 101)">
+ <mask id="b" fill="#fff">
+ <use xlink:href="#a"/>
+ </mask>
+ <path fill="#000" d="M6.111.505c-.107-.02-.262.021-.513.09-.79.274-1.965.811-2.156.93-.179.117-2.24 1.681-2.245 1.695-.12.092-.239.198-.185.242.012.01.996.39 3.966-1.494C6.615.934 6.436.556 6.111.505" mask="url(#b)"/>
+ <mask id="d" fill="#fff">
+ <use xlink:href="#c"/>
+ </mask>
+ <path fill="#000" d="M1.47-1.652c-.085-.054-.155.012-.235.045-.517.189-1.656.723-1.851.84-.232.135-.436.378-.366.426.107.066.603-.102 1.06-.345.213-.111 1.337-.813 1.392-.966" mask="url(#d)"/>
+ <mask id="f" fill="#fff">
+ <use xlink:href="#e"/>
+ </mask>
+ <path fill="#000" d="M9.873-5.248c.873-.195.873-.195 1.752-.553.085-.033.876-.353 2.147-1 .013-.016 1.463-.756 1.692-.93-.098-.03-.098-.03-.326.041-.058.018-5.417 1.889-10.333 4.44L7.54-4.292c.778-.308 1.49-.772 2.333-.956" mask="url(#f)"/>
+ <mask id="h" fill="#fff">
+ <use xlink:href="#g"/>
+ </mask>
+ <path fill="#000" d="M4.2-1.729c-.027-.01-.066-.025-.093-.029.113-.112.173-.163 2.136-1.052.671-.307 1.596-.723 2.091-.998.084-.054.203-.125.278-.192a2.558 2.558 0 0 0-.418.086C2.436-1.918-2.047 1.275-2.808 1.998c.456.099 6.605-3.12 6.95-3.4-.02-.116.03-.218.058-.327" mask="url(#h)"/>
+ <mask id="j" fill="#fff">
+ <use xlink:href="#i"/>
+ </mask>
+ <path fill="#000" d="M10.273-2.712c.119-.075.244-.16.338-.252.2-.171.36-.378.55-.558.338-.315.705-.603 1.05-.918.201-.19.201-.234.207-.258-.026-.024-.044-.03-.19.006-1.16.384-3.174 1.89-3.302 2.06 0 .013.012.019.012.028.187.096.187.096-.326.822.16-.018 1.655-.924 1.661-.93" mask="url(#j)"/>
+ <mask id="l" fill="#fff">
+ <use xlink:href="#k"/>
+ </mask>
+ <path fill="#000" d="M-4.432 7.5c-.124-.018-.248.027-.369.057-.528.153-.99.378-.99.378-1.391.687-3.01 1.887-3.108 2.03 0 .01.01.025.015.04.248-.012 2.872-1.044 3.963-1.824.401-.288.776-.642.49-.681" mask="url(#l)"/>
+ <mask id="n" fill="#fff">
+ <use xlink:href="#m"/>
+ </mask>
+ <path fill="#000" d="M-1.285 14.138c-.14-.096-.28-.201-1.04-.09a18.21 18.21 0 0 0-.43.075c-1.246.252-2.497.502-3.746.76-1.535.343-6.506 2.727-7.189 3.686.006.036.024.078.03.108.403.13.847-.084 1.237.186.608.424.426.695.298.896-.223.355-3.523 2.829-4.41 3.304-.373.204-.418.195-.624.183-.247-.968.924-1.296.948-2.137-.617.096-3.684 1.746-4.041 2.6-.042.09-.087.231-.057.328.194.718.584 1.364.721 2.107.06.288.245.544.233.853 0 .545-.34 1.038-.256 1.597.017.087.047.213.116.276.933.992 9.292-3.953 11.572-6.261.501-.514 1.955-3.44.999-3.406-1.052.036-1.976.55-2.969.785 1.958-1.323 4.149-2.234 6.104-3.563.018-.018 2.483-2.125 2.504-2.287" mask="url(#n)"/>
+ <mask id="p" fill="#fff">
+ <use xlink:href="#o"/>
+ </mask>
+ <path fill="#000" d="M-25.796 13.208c3.685-1.622 6.804-4.181 10.416-5.921-3.651 2.26-3.651 2.26-3.83 2.45l12.373-6.92c.249-.139.618-.347.984-.807-.137-.036-.333.033-.466.083C-8.96 3.251-26.48 12.489-30.216 15.5c1.867-.232 3.035-1.72 4.614-2.474a1.847 1.847 0 0 1-.194.182" mask="url(#p)"/>
+ <mask id="r" fill="#fff">
+ <use xlink:href="#q"/>
+ </mask>
+ <path fill="#000" d="M-26.3 39.5a.735.735 0 0 0-.162.022c-.192.07-.41.164-.809.458-1.568 1.144-2.74 2.688-4.453 3.674-2.838 1.63-3.691 2.127-3.82 2.521.023.014.05.045.07.05.221.03.425-.01 1.116-.144 1.078-.217 1.214-.211 1.415-.075.378.242.289.814.785.977.154.053.936-.025 1.716-.16 4.899-.856 6.933-2.752 6.948-2.77.55-.618-.815-2.99-.821-3.01-.6-.971-1.822-1.54-1.984-1.543" mask="url(#r)"/>
+ <mask id="t" fill="#fff">
+ <use xlink:href="#s"/>
+ </mask>
+ <path fill="#000" d="M-19.023 18.502c-.105-.009-.324.003-.788.13-2.464.707-4.223 2.337-4.314 2.574.011.014.022.03.036.038.246.003.49-.13.735-.024.053.184.07.213-.174.743-.146.32-.522 1.177-.02 1.017.83-.263 3.278-2.564 3.554-2.827 1.17-1.115 1.46-1.603.97-1.65" mask="url(#t)"/>
+ <mask id="v" fill="#fff">
+ <use xlink:href="#u"/>
+ </mask>
+ <path fill="#000" d="M100.194-29.77c-1.782 2.184-6.435 3.442-8.936 4.12-.117.026-12.765 3.69-13.307 4.424-3.49 4.689 5.286 6.199 5.394 6.184 21.766-1.591 22.042-1.355 23.574-.027.114.095 10.231 11.333 6.945 17.441-1.331 2.484-1.325 2.577-1.256 2.921.236 1.31 1.814 1.405 2.27 2.514.695 1.701-.007 3.646.94 5.293 2.87-.67 5.173-3.657 8.595-2.13 5.838 2.595 3.142 7.29 3.1 7.331-2.399 2.834-6.758 2.708-8.911 5.902-1.19 1.756-2.354 6.579-1.458 9.407.417 1.333 17.422 30.108 25.572 32.858-4.09-59.818-7.089-87.023-11.218-99.95 3.712 11.37 6.71 33.676 11.218 99.95 20.375 3.91 20.807 3.419 22.108 1.96 2.156-2.412 5.838-21.016 5.868-21.199.528-2.738-.912-5.638.648-8.292.83-1.372.923-1.402 6.018-2.948 16.054-4.857 16.054-4.857 16.474-7.897.425-3.134.668-4.86 3.562-6.33 7.001-3.548 15.056-4.05 22.048-7.646 2.867-1.48 5.988-2.424 8.636-4.296.06-.039 1.373-.998-.261-3.11-2.384-3.073-6.012-4.853-8.312-8.017-1.463-2.022-1.412-4.577-2.429-6.758-1.175-2.553-.647-3.242.786-4.686 1.982-2.013.609-2.828-3.472-5.23-13.326-7.861-13.44-8.047-14.58-9.815.073-.167.16-.383.235-.554.2-.078.48-.177.68-.258-3.892-3.807-11.796-.793-13.691-8.022-.399-.201-.936-.468-1.331-.65.06-.336.177-.791.282-1.115l.54-.135c-1.749-.24-6.792-.557-6.843-.56-3.377-.195-7.644.536-8.462.686-2.915.521-5.392-1.39-8.201-1.489-3.94-.138-12.615-.153-16.072.015-6.363.357-6.363.357-7.098.85 0 0-.018 0-.03.007-6.923.377-6.923.377-10.234 1.01h-.018c-.063.017-.153-.04-.192.041.01.03.04.018.06.021.07.012.15.021.222.033 4.048.3 4.048.3 5.26.606-.34.038-.34.038-4.858-.036-1.853-.021-2.546-.03-4.744.176-16.24 1.813-27.907 7.044-28.024 7.094.573.309.573.309 2.903.306" mask="url(#v)"/>
+ <mask id="x" fill="#fff">
+ <use xlink:href="#w"/>
+ </mask>
+ <path fill="#000" d="M38.65 38.749c.796-2.208.444-3.206-1.043-2.963-.043.006-4.497 1.237-5.322 3.302-.46 1.189 1.396 4.278 2.134 4.758 1.819 1.204 4.208-5.031 4.231-5.097" mask="url(#x)"/>
+ <mask id="z" fill="#fff">
+ <use xlink:href="#y"/>
+ </mask>
+ <path fill="#000" d="M71.014-26.774c-1.029.421-2.088.784-3.144 1.17 3.34-.778 14.11-3.704 15.844-4.19-7.21 2.37-12.913 4.243-18.991 5.517-1.422.297-1.845.633-2.397 1.052 0 .41-.582 2.456-1.617 3.391-3.214-.965-11.56 3.826-11.887 4.102.735.32 1.602.187 2.31.618-.036.104-.093.25-.114.36 1.074-.138 1.482-.185 5.046-1.495-6.144 3.312-6.855 2.525-7.33 2.005-4.655.11-4.925 1.862-5.045 2.706-2.647 1.725-6.085 1.91-8.431 4.196.06.101.153.229.225.327.741.041 1.272.065 6.126-.88 3.58-.7 6.754-3.216 10.69-2.355-.285.684-.285.684-1.113 1.304 2.622.514 11.002-3.51 10.24-5.56-.276-.08-.654-.166-.942-.231.624-.87 6.168-4.348 7.422-4.642 7.483-1.785 10.108-4.565 10.174-5.195a19.518 19.518 0 0 1-.384-.127c6.936-1.791 10.098-2.614 12.252-4.025-.558-.038-.558-.038-1.764.173.075-.024 15.7-4.838 16.501-5.073-4.04.573-4.287.603-5.811.71 3.876-1.025 7.86-1.6 11.755-2.584-3.765.006-10.033.775-10.08.787-.15.018-15.215 2.563-18.461 3.802.129.187.39.392.606.487-.63.187-1.164.356-2.748.157-1.104-.134-14.047 2.982-15.382 4.57.666.313.837.384 6.45-1.077" mask="url(#z)"/>
+ <mask id="B" fill="#fff">
+ <use xlink:href="#A"/>
+ </mask>
+ <path fill="#000" d="M11.372-.57c-.304.425-.497.91-.832 1.298-.478.536-.543.583-2.19 1.83.166-.394.38-.92.549-1.318.064-.2.196-.392.196-.62C8.96.553 7.617.694 6.23 2.093c.147 0 .31-.012.46-.021 0 .042 0 .105-.01.143-1.598 1.313-3.727 1.525-5.488 2.5.27.138.549-.17.828.003-.227.449-.227.449-.2.538.308.093.308.093 5.428-1.549-1.617.873-5.915 3.188-6.25 4.222l.05.072c.021.009 5.798-2.081 6.529-2.47.494-.269.494-.269 3.758-3.043.019.047.101.182-.015.49a.24.24 0 0 1-.046.08C12.77 1.67 12.77 1.67 16.71-1.507c.846-.679.908-.73 1.037-.948-.261-.06-.261-.06-.583.006-.043.01-5.133 1.477-5.649 1.77a.491.491 0 0 0-.144.11" mask="url(#B)"/>
+ <mask id="D" fill="#fff">
+ <use xlink:href="#C"/>
+ </mask>
+ <path fill="#000" d="M65.29 39.085c2.334-.196 7.47 6.292 7.525 6.361 1.224 1.598 2.496 3.253 3.654 3.036 3.215-.612 8.02-12.921 8.069-13.048.117-.377.231-.904.201-1.302l-23.514-5.345c.658-.519 1.29-.998 6.935-3.515 2.48-1.1 3.717-1.652 3.636-2.297-.193-1.689-8.451-9.533-12.46-10.181-1.78-.286-3.669.256-5.389-.594-1.831-.898-1.603-3.874-4.105-4.07-2.303-.184-7.25 1.686-10.868 3.048-3.67 1.384-3.702 1.378-4.28 1.345-.24-.591-.505-1.206-.721-6.56-1.486-.588-6.132.202-7.516.455-7.076 1.673-28.17 19.393-24.206 22.104 3.931 2.695 17.47-.079 19.29-.962-.271-1.137-.446-1.887 5.455-2.532 5.007-.546 5.75-1.764 6.249-2.572 1.215.642 4.442 3.443 4.46 3.464 1.72 1.845 2.445 4.347 4.054 6.276 2.026 2.433 6.694 2.168 6.739 6.63 0 .093-1.014 10.099-14.922 14.277-4.16 1.248-8.676 1.01-12.625 3.117-1.75.929-1.801 3.88-1.302 4.32.76.688 3.224.992 10.534-1.489 5.588-1.899 5.588-1.899 15.524 2.481-.806.847-.806.847-4.812 2.352 2.193 1.941 19.181 5.486 22.645 3.56-.135-.527-.135-.527-1.019-.956-.448-.22-.448-.22-8.002-7.274 5.89.64 7.752 1.393 11.109 3.669.646.45 1.118.769 1.437.672 1.892-.585 5.052-7.736 3.528-9.321-3.296-3.434-9.437-2.985-11.317-8.35-1.549-4.414 5.937-6.796 6.015-6.799" mask="url(#D)"/>
+ <mask id="F" fill="#fff">
+ <use xlink:href="#E"/>
+ </mask>
+ <path fill="#000" d="M-11.944 5.8c.24.153 1.794-.477 3.042-1.143.25-.135.687-.372.765-.468a.075.075 0 0 0-.029-.012.643.643 0 0 0-.193.042c-.571.183-3.55 1.362-3.585 1.58" mask="url(#F)"/>
+ <mask id="H" fill="#fff">
+ <use xlink:href="#G"/>
+ </mask>
+ <path fill="#000" d="M118.554 19.187l3.739-.735s.974-.429 1.218-1.127c.15-.444-.01-.733-.169-.985-.338-.555-1.008-.732-1.41-1.22a1.133 1.133 0 0 1-.262-.767c0-.05-.019-.115-.063-.149 0 0-.476-.316-1.797-.161-1.676.357-6.46 3.114-3.849 4.697.567.348 1.556.643 2.593.447" mask="url(#H)"/>
+ <mask id="J" fill="#fff">
+ <use xlink:href="#I"/>
+ </mask>
+ <path fill="#000" d="M48.883 6.549c.027-.011.051-.04.079-.059-.377-.527-5.428-1.895-9.16-1.373-3.271.5-2.248 2.514-1.482 3.089 2.484 1.853 10.484-1.619 10.563-1.657" mask="url(#J)"/>
+ <mask id="L" fill="#fff">
+ <use xlink:href="#K"/>
+ </mask>
+ <path fill="#000" d="M23.196-10.602c-1.055.4-2.798 1.131-3.164 1.406.17-.013.328-.072.477-.119 1.644-.533 3.27-.402 3.27-.396-.15.586-.956.568-1.089 1.166.21.283 3.003-.854 3.201-.957 1.005-.539 4.256-3.374 4.256-3.944-.434-.144-.778.23-1.191.224.366-.72 1.272-.676 1.734-1.265-.077-.022-.077-.022-.295.044-2.919.956-6.79 2.735-7.268 3.06.652.186 1.229-.29 1.868-.234.087.243-.255.433-1.8 1.015" mask="url(#L)"/>
+ <mask id="N" fill="#fff">
+ <use xlink:href="#M"/>
+ </mask>
+ <path fill="#000" d="M9.186 4.976c-.675.485-.901.649.137 1.304.893.564 3.141.051 5.067-1.616 1.104-.96 3.367-3.316 2.332-3.413a1.731 1.731 0 0 0-.43.06c-1.795.504-6.804 3.456-7.106 3.665" mask="url(#N)"/>
+ <mask id="P" fill="#fff">
+ <use xlink:href="#O"/>
+ </mask>
+ <path fill="#000" d="M39.826-12.183c-.014-.021-.04-.052-.046-.067-.076.006-.167.03-.233.049-.068.024-.15.042-.213.066-1.377.438-2.709 1.015-4.074 1.459-1.582.514-3.212.85-4.797 1.377-1.124.373-1.82.632-2.057.79.43.106 5.036-.705 7.514-1.447 1.232-.374 1.818-.614 3.493-1.869.143-.109.29-.215.413-.358" mask="url(#P)"/>
+ <mask id="R" fill="#fff">
+ <use xlink:href="#Q"/>
+ </mask>
+ <path fill="#000" d="M28.406-9.296c.02.011.032.034.047.046.525-.06 5.407-2.08 6.81-2.733.621-.284.742-.4.756-.658 0-.308-.463-.166-.48-.456 0-.136.09-.278 0-.423a.081.081 0 0 0-.024-.055s-.062-.087-.209-.134c-.243-.075-.352-.04-.654.052a3.593 3.593 0 0 0-.748.412c-1.07.746-1.775 1.95-3.06 2.42-1.593.574-2.13.774-2.438 1.529" mask="url(#R)"/>
+ <mask id="T" fill="#fff">
+ <use xlink:href="#S"/>
+ </mask>
+ <path fill="#000" d="M39.56-16.958c3.245-1.758 3.264-1.8 3.311-1.896-.121-.015-.234.036-.336.063-.034.015-3.27 1.143-4.217 1.638-1.087.585-.714.987-.714.987.223.123.98-.27 1.956-.792" mask="url(#T)"/>
+ <mask id="V" fill="#fff">
+ <use xlink:href="#U"/>
+ </mask>
+ <path fill="#000" d="M47.423-18.43c1.486-.475 1.945-.603 2.44-.39 0 .056-.021.125-.039.181-.432.285-.92.457-2.389.954-3.996 1.35-5.017 1.839-5.273 2.01-.898.595-.98 1.724-.597 1.908.111.047.111.047 2.666-.735 1.015-.315 2.106-.053 3.122-.447 2.471-.944 4.581-2.658 6.968-3.793 1.494-.698 3.127-.904 4.578-1.683.106-.056.238-.15.315-.234-.077-.085-.077-.085-1.16-.338-.017-.034-.023-.081-.044-.113.239-.162.5-.278.754-.406 2.045-1.017 2.057-1.104 2.095-1.326-.224-.06-.471.012-.662-.166.312-.469 1.089-.613.927-1.407.444-.544 1.138-.738 1.542-1.326-.133 0-.318-.022-.439.003-2.475.654-11.473 4.244-12.353 4.847.48.088.91-.14 1.374-.219-.673.598-2.518 1.048-3.313 1.233-2.736.656-4.113 2.31-4.125 2.326.282.175 3.275-.772 3.613-.878" mask="url(#V)"/>
+ <mask id="X" fill="#fff">
+ <use xlink:href="#W"/>
+ </mask>
+ <path fill="#000" d="M17.792 4.998c.235-.003 26.144-2.587 33.007-9.194 1.869-1.79-2.727-2.053-2.776-2.053-2.386-.062-14.02 3.834-16.437 4.782-2.152.844-3.841-1.099-3.385-1.604.204-.225.551-.337 1.345-.558 4.197-1.146 2.122-2.44 1.671-2.46-1.098-.057-2.03.575-3.083.696-1.23.145-2.416-.301-3.637-.174-.362.041-1.595.195-2.37.39-.64.257-2.673 2.316-2.658 2.818.527-.015.57-.015 1.598-.355 1.157-.39 2.758-.924 3.092-.715.646.408-1.418 2.969-1.524 3.078-1.27 1.143-3.044 1.572-4.206 2.86-2.27 2.519-1.358 2.501-.637 2.49" mask="url(#X)"/>
+ <mask id="Z" fill="#fff">
+ <use xlink:href="#Y"/>
+ </mask>
+ <path fill="#000" d="M527.073 359.524c-.712-1.518-.712-1.518-.195-14.115-.352 3.993-.352 3.993-.577 5.754-.956-27.289-.55-29.785.012-33.241 1.59 2.403 2.248 22.585 2.005 34.2-.52 4.76-.722 5.51-1.245 7.402m2.278-38.81c-.57-10.163-1.063-23.745-2.106-33.873-.451-3.048-.866-5.835-1.257-8.451-2.437-8.044-2.65-9.34-7.43-37.805.055.108.133.261.19.363-11.698-38.74-11.698-38.74-11.887-40.615l.16.174c-4.118-12.123-6.024-16.26-11.614-28.336l-12.506-24.436c-3.444-4.548-7.442-8.571-13.336-12.333 5.5 3.489 9.919 7.494 13.336 12.333-4.815-7.857-10.985-18.48-16.113-26.13-21.964-29.924-22.382-30.497-36-45.122l-14.54-14.688-.034-.049c-.556-.5-1.094-.996-1.659-1.476.628.846.866 1.167 6.913 7.423-1.097-.624-2.029-1.473-3.054-2.2 1.701 3.09 4.764 4.828 7.153 7.234-.165.114-.39.264-.553.375-10.143-8.262-18.781-18.193-29.027-26.332 5.121 3.18 9.158 7.893 14.73 10.452-1.307-2.379-16.885-15.822-27.14-22.002-7.367-4.444-8.16-5.188-8.938-5.902.423.132.97.342 1.37.531-.805-.65-1.256-1.014-3.312-2.238-.156.123-.367.294-.532.42-.652-.252-1.908-.726-6.82-4.053.44.165 1.02.372 1.461.498-.835-1.959-9.828-6.069-10.498-6.267.415 1.03.415 1.03 1.911 2.778-3.128-1.086-4.703-4.377-7.811-5.487.586 1.416 2.134 2.085 2.729 3.486-1.127 2.466-1.127 2.466-.94 3.972.297 2.25 7.537 14.98 7.603 15.088 5.401 8.283 5.188 11.172 5.146 11.481-1.046 7.695-1.046 7.695-5.293 10.722-1.55 1.116-1.52 1.657-.682 3.688.111.273 11.442 26.742 21.904 21.91 3.363-1.558 1.686-7.105.875-9.775.865.621 19.596 19.213 23.091 25.078 1.656 2.79 3.234 5.418 6.11 5.433.58-1.044.87-8.388-.943-11.76-4.175-7.726-3.207-8.599-1.11-10.537.076-1.857-.147-2.553-5.578-6.141-3.76-2.484-3.76-2.484-8.866-10.71-1.95-3.138 1.271-7.087-1.605-10.072-7.51-7.797-7.51-7.797-7.736-8.24-.132-.289-.292-.679-.424-.97l.376-.579c2.792.924 12.124 7.083 12.806 9.01-.231.023-.535.047-.763.074 7.24 16.132 7.24 16.132 14.09 22.492 5.975 5.56 15.064 4.716 21.078 10.215-1.043-.147-1.909-.717-2.868-1.08l-.583.36c.364.717.857 1.353 1.287 2.028-3.487-1.002-6.823-2.517-10.457-2.985 3.968 5.446 9.63 9.514 12.723 15.664-3.901-.15-4.172-5.82-8.383-5.49-.12.195-.285.462-.42.654.048.072 4.757 8.709 5.244 9.318.644.804 3.832 4.893 3.607 6.711-2.395-.216-2.395-.216-2.858-.096-.33.738-.445 1.551-.758 2.295.118.162.289.378.406.54l-.078-.012c-11.033-.77-11.033-.77-11.108.291-.451.28-1.061.648-1.527.933-2.279-1.317-5.185-2.136-8.226-2.757l5.322.93c-.895-.675-3.29-2.466-7.592-2.259-1.46.075-1.794.093-5.906-4.605-3.014-3.447-6.567-8.466-6.383-12.771.072-1.776-2.621-9.286-4.623-9.502-.243-.006-5.963-.039-4.98 2.748.42 1.197 7.76 13.993 12.972 20 2.116 2.43 2.212 2.756 2.266 2.915-.264.288-.318.351-1.89.648a349.26 349.26 0 0 1-3.685.612c-.33.45-.76 1.056-1.085 1.506-5.846-.168-5.846-.168-7.442 1.395.304 1.596.857 4.56 2.82 9.988-.286.504-.659 1.16-.944 1.656-4.878-.111-4.878-.111-7.631.909.024.267.024.267 2.115 5.403-1.13.774-2.795 1.593-4.111 2.013-.033 1.203-.349 2.82-.857 3.915-5.626-.282-6.528-.951-8.98-2.739a37.802 37.802 0 0 0 2.239 3.447c-.171.55-.412 1.29-.586 1.84-1.127.476-2.675 1.04-3.865 1.334-2.726-1.746-2.726-1.746-7.123-1.86-.232.513-.556 1.197-.782 1.71 1.097.966 2.567 2.26 3.676 3.234-.45.324-1.064.753-1.515 1.077 26.356 7.309 22.22 33.74 22.07 33.976-12.278-.873-24.11-4.542-36.322-5.78.601 1.052 1.545 2.375 2.362 3.266-.018.321 1.347 32.983 5.554 34.216-1.136 10.078-1.136 10.078-1.349 11.002 8.53-.66 10.309-.798 13.97.03 1.406 5.757 1.406 5.757 1.487 5.877l19.99-6.621c5.521-.69 6.91-7.668 3.928-12.367 3.183-13.119 3.34-13.185 11.572-16.42.117-10.586.117-10.586 1.007-11.319 3.81-3.165 6.78 1.897 10.348 1.912 3.249-5.755 5.942-9.487 11.027-5.116.252.213 28.147 32.194 30.897 41.156 2.074 6.768 1.115 6.906-10.66 8.52 2.304 3.903 9.44 10.074 9.49 10.101 1.008-3.186-.982-6.255-.384-9.429.529.063 1.23.162 1.75.231 1.478-2.19 2.07-4.81 3.438-7.053-1.753-6.096-1.753-6.096-1.702-8.301.53-.135 1.242-.324 1.78-.465a230.34 230.34 0 0 0 2.392 3.234c-.586-2.868-.586-2.868-10.032-14.194.135-.537.306-1.266.432-1.812-4.436-1.971-7.946-3.528-19.77-27.66.562-.892 1.72-1.87 2.708-2.248l26.815 31.45c.1.156.1.156 8.08 23.074l8.496 19.432c.153-1.125.25-2.638.25-3.769-.013-4.617-1.78-8.889-2.679-13.335-2.903-14.427-2.903-14.427-1.481-15.505 2.584.555 8.012 3.78 9.146 7.978a23.479 23.479 0 0 0 1.547-3.423c.58-.04 1.34-.087 1.906-.117 1.761-13.144-7.637-24.502-6.002-37.622.959-.339 2.47-.249 3.393.174-.225.483-.532 1.14-.76 1.623 1.665 1.936 2.335 2.437 4.27 3.595.563 2.313.563 2.313-.057 5.9 1.723 1.939 2.52 4.447 4.007 6.526 6.348-3.663-3.123-10.131-1.241-15.478 2.822-.6 3.306.33 4.123 2.506-.28.51-.649 1.185-.932 1.698.992 1.578.992 1.578 2.447 7.233-.313.456-.733 1.065-1.049 1.52 4.58 11.251 14.922 20.018 14.505 33.434a150.8 150.8 0 0 1-1.587.876c-5.476-3.66-5.188-15.768-14.07-13.446-.071 1.05-.624 2.472-1.34 3.234a40.561 40.561 0 0 0-3.561-1.002c.225 1.002.953 2.27 1.704 2.982-2.044 1.734-4.79.68-6.99 1.779-.181 1.2-.283 2.838-.232 4.05.502.15 1.18.348 1.686.495.883 6.72 2.53 19.225 10.832 26.203.387-.39.898-.912 1.283-1.3-.018-.545-.048-1.265-.063-1.808 2.699 2.256 3.589 6.036 6.726 7.929.385-1.044.725-2.514.827-3.63.751.774 1.99 1.623 2.996 2.025 1.374 25.45 1.59 29.362-1.202 36.232-3.664-.303-4.262-1.092-5.44-4.677-1.004.03-2.41.585-3.114 1.311-12.187-.894-11.072-18.577-23.8-18.78-2.369 4.22-.496 9.11-2.128 13.443l-1.737.705c-2.636-1.932-30.59-27.313-32.592-30.628-.617-1.032.216-2.901.862-3.918 1.518-2.418 1.518-2.418.355-17.449-3.033-1.995-3.655-2.328-5.485-3.312-2.459 1.87-2.459 1.87-12.693-.477-.85.822-1.893 2.037-2.506 3.06-13.276-5.166-24.015 9.357-37.215 4.797-1.452-.126-1.707-.138-1.962-.14-3.742.755-5.01 1.01-9.071-3.838-.728-.51-.758-.51-.776-.51-.499.441-1.229.975-1.647 1.494-2.485 3.033-.604 7.33-3.026 10.38-3.03 3.793-8.704 3.724-11.493 7.849-.839 1.22-.442 3.408-.514 4.88-.842 16.012-.842 16.012-5.158 18.095-3.877 1.875-10.558 7.032-11.37 8.352-2.407 3.858-20.107 34.516-20.107 34.54-.73 8.19 4.707 15.09 4.84 23.095.12 6.723-9.49 9.909-6.448 17.691 4.548 11.662 10.86 22.48 16.254 33.736 2.263 4.728 19.28 20.956 22.509 20.65 16.016-1.506 31.477-7.527 47.875-5.766.535.057 1.157.504 1.563.846 2.954 2.469.844 6.927 3.733 9.43 2.828 2.46 6.522 1.244 9.701 2.24 2.107 6.36 2.107 6.36-.51 12.49 27.57 5.094 44.96 9.717 57.528 15.825-12.373-6.01-30.247-10.791-57.529-15.825-7.27 17.052-7.27 17.052-6.149 21.918 1.755 7.68 4.157 18.21-5.692 41.312-4.536 10.635-13.21 18.45-19.19 28.096-5.564 8.97-6.201 19.863-11.35 29.005-20.02 35.569-20.6 36.163-23.812 39.466-2.18 2.232-3.382 3.47-5.639 8.613 10.252 3.174 22.32-5.031 26.284-7.722l15.884-11.176 20.098-15.993c4.535-4.725 7.234-10.887 12.085-15.364 5.554-5.127 12.963-7.599 18.445-12.825 13.09-12.507 25.253-37.33 26.515-40.423 5.07-12.355 22.403-31.27 27.543-36.712 8.078-8.953 18.92-32.435 21.621-41.63-2.061-.672-2.061-.672-5.665.09-.811-1.125-.811-1.125.878-15.825.628-5.446-.608-10.81-.704-16.228-.282-14.064 2.462-28.042 1.206-42.136l-3.736-44.369c.89 1.383.89 1.383 1.821 7.798.953-.78 1.734-2.367 2.014-3.559 9.112 33.485-.547 67.059.535 100.576 3.675-1.72 3.675-1.72 5.316-1.356 9.726-20.947 9.726-20.947 10.195-23.644-.09.594-.21 1.389-.306 1.986.216-1.101.49-2.574.66-3.684l.19-1.233 1.067-7.737c.439-3.54.986-7.972 1.813-20.011-.021.633-.027 1.236-.055 1.809.47-10.425 1.16-23.455 1.097-33.448" mask="url(#Z)"/>
+ <mask id="ab" fill="#fff">
+ <use xlink:href="#aa"/>
+ </mask>
+ <path fill="#000" d="M518.702 239.796c.11.459.264 1.07.359 1.535l1.795 8.243a5.35 5.35 0 0 0-.103-.404c.636 4.895 1.577 9.74 2.512 14.58-2.746-18.11-3.76-21.83-7.829-36.91-.737-2.34-1.423-4.528-2.068-6.59 4.213 14.799 4.352 15.41 6.13 23.21-.257-1.226-.53-2.442-.796-3.664" mask="url(#ab)"/>
+ <mask id="ad" fill="#fff">
+ <use xlink:href="#ac"/>
+ </mask>
+ <path fill="#000" d="M512.233 216.521c.178.463.353.92.555 1.368-.555-1.733-1.284-3.415-1.67-5.198.208.564.41 1.136.6 1.712l-4.423-12.676.052.166c-.54-1.389-.669-1.682-.831-1.893 1.741 5.002 3.866 11.332 6.852 20.25-.347-1.157-.72-2.38-1.135-3.729" mask="url(#ad)"/>
+ <mask id="af" fill="#fff">
+ <use xlink:href="#ae"/>
+ </mask>
+ <path fill="#000" d="M526.834 279.5c-.548-5.3-1.553-10.528-2.57-15.75.627 4.038 1.349 8.819 2.226 14.581.116.38.228.758.344 1.169" mask="url(#af)"/>
+ <mask id="ah" fill="#fff">
+ <use xlink:href="#ag"/>
+ </mask>
+ <path fill="#000" d="M319 108.337a1.262 1.262 0 0 1-.133.316c-1.353 2.706-2.332 7.874-2.338 7.926-.338 2.076-.222 3.067.457 3.916 1.154 1.425 6.524.826 10.425-1.742.994-.651 1.896-1.405 2.946-1.95 1.228-.625 2.866-.166 3.818-1.525.53-.77.311-2.551-.644-5.287-.492-1.396-1.077-2.253-1.694-3.168-1.014-1.538-1.08-2.095-.397-3.7.284-.68.765-1.83.397-3.265-.368-1.41-1.427-2.396-2.26-2.964a11.821 11.821 0 0 0-1.46-.842c-1.24-.602-2.599-.906-3.842-1.487-.905-.426-1.225-.766-1.373-.936-.11-.116-.128-.134-.247-.128-.338.085-8.452 2.159-3.352 5.074.323.185.507.292 1.225.35-.187.194-.516.34-.738.456-3.365 1.684-4.157 2.517-4.928 3.323-.549.568-1.142 1.556-.908 3.064.208.544.493 1.298 1.813 1.97 1.02.52 2.174.313 3.233.599" mask="url(#ah)"/>
+ <mask id="aj" fill="#fff">
+ <use xlink:href="#ai"/>
+ </mask>
+ <path fill="#000" d="M-21.874 11.776c.006-.011.024-.02.033-.026-.009.003-.009.006-.02.006-.79.404-7.266 4.072-7.593 4.494.327-.006.672-.006 7.58-4.474" mask="url(#aj)"/>
+ <mask id="al" fill="#fff">
+ <use xlink:href="#ak"/>
+ </mask>
+ <path fill="#000" d="M491.874 262.925c.062-.019.124-.056.177-.081-.019-.048 0-.11-.025-.142-.028-.035-3.242-4.23-3.242-4.237a2.961 2.961 0 0 0-1.405-.904c-1.047-.255-2.15-.23-3.173-.617-1.827-.702-1.827-.702-1.983-.692-.833.047-1.072.752-.569 1.634 1.079 1.876 8.29 5.694 10.22 5.04" mask="url(#al)"/>
+ <mask id="an" fill="#fff">
+ <use xlink:href="#am"/>
+ </mask>
+ <path fill="#000" d="M425.727 214.028c.663.705 2.078.358 2.345 1.615.245 1.136-.217 2.299.105 3.429.27.926.934 1.093 1.22 1.16.778.188 4.705-1.048 4.792-4.133.01-.346-.046-.81-.087-1.154-.195-1.284-.685-2.502-.884-3.79-.192-1.38-.105-2.778-.31-4.147-.32-2.174-1.114-2.43-1.905-2.508-1.26.033-4.333 1.172-5.422 3.152-.646 1.166-.807 5.371.146 6.376" mask="url(#an)"/>
+ <mask id="ap" fill="#fff">
+ <use xlink:href="#ao"/>
+ </mask>
+ <path fill="#000" d="M406.814 213.034c.023-.012 1.477-1.774 1.48-1.857.134-.63-.896-1.16-2.7-1.381-1.954-.203-5.086.245-3.866 1.759.678.838 3.24 2.001 4.296 1.943.36-.019.538-.2.79-.464" mask="url(#ap)"/>
+ <mask id="ar" fill="#fff">
+ <use xlink:href="#aq"/>
+ </mask>
+ <path fill="#000" d="M425.556 195.688c-.294.28-.58.553-.481 1.213.036.236.275.725.513 1.033.022.033 2.806 3.482 2.993 3.566.64-.317.057-5.531-.496-8.228-.006-.045-.887-4.146-1.437-4.522-.023.006-.054.009-.08.012-.03.045-.119.152-.164.418-.02.075-.045.182-.057.257-.215 1.308.21 2.577.21 3.88 0 1.442-.578 1.977-1 2.371" mask="url(#ar)"/>
+ <mask id="at" fill="#fff">
+ <use xlink:href="#as"/>
+ </mask>
+ <path fill="#000" d="M504.117 271.793s1.65.32 1.8.164c.25-.27.59-4.146.59-4.185.009-.07.009-.166.009-.237 0-.421-.089-.448-.191-.48-.477-.004-.888.332-1.374.329-.308-.006-.688-.13-1.013-.345-.432-.281-.717-.76-1.194-.979-.388-.166-.548.054-.625.16-.457.606.028 3.6 1.153 4.953.349.427.683.57.845.62" mask="url(#at)"/>
+ <mask id="av" fill="#fff">
+ <use xlink:href="#au"/>
+ </mask>
+ <path fill="#000" d="M-58.64 39.573c.033.039.09.093.13.135.135-.015.319-.09.436-.171 2.092-1.431 3.901-3.216 5.984-4.665 3.768-2.611 7.823-4.782 11.54-7.477.861-.628.861-.628 1.96-2.67l-.097-.225c-1.309.272-2.269 1.183-3.404 1.782.948-.82.948-.82 1.099-1.483-.048-.02-.106-.056-.15-.083-.13.039-.31.086-.443.137-4.636 1.938-4.636 1.938-25.083 18.654-1.781 1.461-3.193 2.614-4.659 5.662.054.024.135.057.18.081 4.898-2.294 8.33-6.467 12.507-9.677" mask="url(#av)"/>
+ <mask id="ax" fill="#fff">
+ <use xlink:href="#aw"/>
+ </mask>
+ <path fill="#000" d="M-29.834 19.998c.498.053 2.106-.89 3.664-1.81 6.218-3.671 9.402-5.107 9.414-5.116 2.005-.807 4.096-1.38 6.016-2.433 1.522-.831 7.277-5.051 7.33-5.092 1.114-.813 1.188-.953 1.313-1.177-.803-.062-1.733.48-1.745.489-1.76 1.05-3.285 2.498-5.041 3.563C-6.706 6.158-4.162 4.336-2.047 2c-.074.012-.166.019-.237.028-.074.044-7.263 3.924-7.488 4.977-.16.769-1.134 2.712-6.632 4.058-.035-.038-.077-.087-.118-.125.127-.177.281-.342.426-.495a1.3 1.3 0 0 0 .14-.153c.749-.862 3.296-1.373 2.245-2.603-.143.031-14.861 7.515-14.982 9.657.065.044.065.044 7.117-4.064-.713 1.237-2.029 1.654-3.03 2.492.178 0 .225 0 1.95-.984.464-.265 1.338-.76 3.118-1.424-1.617 1.159-6.854 4.049-9.813 5.432-1.046.489-1.06 1.13-.483 1.202" mask="url(#ax)"/>
+ <mask id="az" fill="#fff">
+ <use xlink:href="#ay"/>
+ </mask>
+ <path fill="#000" d="M-72.151 57.014c1.086.267 1.92-.685 2.952-.631.057.056.111.125.163.182-.474 1.281-1.7 2.024-2.343 3.185 1.244.018 11.323-4.427 17.037-8.989 1.838-1.467 2.598-2.077 3.622-2.46.063.039.148.096.217.134-.477.892-.477.892-.537 1.084.486.467 4.313 1.29 4.34 1.287 3.592-1.203 3.592-1.203 7.1-5.091.12-.141.147-.171.169-.207-.375-.069-.375-.069-3.71 1.712.365-1.173 3.876-3.807 6.281-3.69.864.041 1.036-.016 1.35-.243.02-.012 1.84-1.658 1.539-3.143-1.887-1.063-2.671-3.14-1.666-4.358.884-1.078 8.645-10.527 8.464-11.294-.36-.191-.755-.245-1.135-.37-.043-.118-.106-.261-.148-.372a.687.687 0 0 1-.09.063c-3.587 3.014-6.044 7.22-10.245 9.596-.402-1.715 1.382-2.263 1.895-3.493a7.77 7.77 0 0 1-.323-.224c-1.648.61-3.021 1.85-4.784 2.227.489-.77 1.337-1.252 1.75-2.102-.05-.054-.126-.125-.171-.176-2.343.697-4.093 2.511-6.345 3.361 1.388-1.907 3.688-2.76 5.267-4.45-1.413.14-19.85 11.957-19.409 14.16.227.09.51.237.713.377-.35.593-.369.617-2.557 1.928-3.664 2.2-3.824 2.631-3.812 3.155.184.093.47.129.673.087 2.04-.401 3.71-1.757 5.741-2.203 1.44-.315 2.886.311 4.331 0-2.571 1.97-6.018 2.996-7.476 3.439-9.641 2.877-10.574 7.103-8.853 7.52" mask="url(#az)"/>
+ <mask id="aB" fill="#fff">
+ <use xlink:href="#aA"/>
+ </mask>
+ <path fill="#000" d="M12.353 73.922c.302-.748-.505-.715-1.135-.626-.036.008-2.753.485-3.445 1.272-.981 1.137-.736 2.737-.316 3.06 1.02.81 4.48-2.666 4.896-3.706" mask="url(#aB)"/>
+ <mask id="aD" fill="#fff">
+ <use xlink:href="#aC"/>
+ </mask>
+ <path fill="#000" d="M7.875 67.232c.119-.043.486-.249.637-.54.308-.642-.166-1.702-.518-2.032-.595-.576-1.39-.906-1.952-1.52-.98-1.064-1.499-2.509-2.645-3.442a6.01 6.01 0 0 0-.608-.415c-1.14-.721-2.55-.597-3.693-1.309-.726-.454-.738-1.493-1.472-1.938-.083-.052-.228-.04-.33-.013-1.039.503-4.56 5.568-4.703 5.777a53.953 53.953 0 0 0-1.448 2.236l-3.848 6.374c2.286.187 2.286.187 2.467 1.369.222 1.496.222 1.496.439 1.463.305-.058.924-.567 2.174-1.645 1.798-1.554 4.816-4.153 8.35-4.553 2.381-.273 4.74 1.054 7.15.188" mask="url(#aD)"/>
+ <mask id="aF" fill="#fff">
+ <use xlink:href="#aE"/>
+ </mask>
+ <path fill="#000" d="M1.058 71.819c-.054.006-5.12 1.127-6.772 2.443-.985.785-1.136 2.974-.581 3.383 1.056.79 7.439-3.077 8.599-4.886.367-.585.45-1.222-1.246-.94" mask="url(#aF)"/>
+ <mask id="aH" fill="#fff">
+ <use xlink:href="#aG"/>
+ </mask>
+ <path fill="#000" d="M-12.46 360.57c-1.851.738-.795 3.589.347 3.993.772.274 5.596 1.16 5.497-.809-.069-1.171-3.415-3.704-5.844-3.185" mask="url(#aH)"/>
+ <mask id="aJ" fill="#fff">
+ <use xlink:href="#aI"/>
+ </mask>
+ <path fill="#000" d="M342.587 106.598c-.363.045-.305.24-.204.612l2.497.192c-1.346-.612-1.882-.801-2.293-.804" mask="url(#aJ)"/>
+ <mask id="aL" fill="#fff">
+ <use xlink:href="#aK"/>
+ </mask>
+ <path fill="#000" d="M104.297 132.603c2.306-3.037 3.327-5.062 3.022-6.016-.127-.038-.293-.104-.426-.083-1.26.426-4.623 3.315-7.228 6.535-3.15 3.902-5.296 8.496-8.386 12.437-1.654 2.096-3.94 3.583-5.488 5.775-.594.843-.118 1.085.14 1.213.402.215.402.215 9.753.978 5.348.435 9.28.909 13.444 2.057.48.125 1.107.349 1.595.387 1.516.09 3.088-1.437 4.568.125.734.785.805 2.21.86 3.152.051 1.022.534 1.115.815 1.082 1.5-.176 3.35-3.08 3.54-5.542.293-3.962-2.694-10.106-5.692-13.356-1.557-1.687-1.557-1.687-7.05-.486-1.676.367-2.043.015-2.422-1.392-.731-2.662-1.38-3.124-2.392-3.652-.538-.283-.538-.465-.278-.996.382-.727 1.116-1.559 1.625-2.218" mask="url(#aL)"/>
+ <mask id="aN" fill="#fff">
+ <use xlink:href="#aM"/>
+ </mask>
+ <path fill="#000" d="M325.536 83.471c.309 1.932-1.195 3.731-.419 5.69.6.224 1.865.08 4.527-1.899.977-.732 1.813-1.36 2.475-1.001 2.732 1.488-.44 4.394.5 6.505 1.895 4.275 4.124 4.858 6.95 5.593 4.42 1.142 4.982 1.289 5.8 1.845.137.69-.267 1.408.122 2.08 1.188 2.087 3.283 3.508 4.336 5.699.558 2.251-2.232.942-4.276-.012-.873-.404-.873-.404-3.36-.598 1.001 2.85 4.252 4.227 4.9 7.3.352 1.657-1.218 2.533-3.465 3.6-.595.281-1.504.712-1.174 1.378.18.35 1.17 1.477 6.544 1.33 2.274-.06 7.022-.194 7.15 1.334.112 1.396-.968 1.381-2.602 1.348-1.586-.024-2.068.413-2.68.963-1.153 1.037-1.332 2.649-2.341 3.77-1.25 1.39-2.96 2.242-4.24 3.587.013.132.04.308.058.44.713.167.713.167 10.974-1.103 5.191-.643 10.44-.246 15.628-.981.042-.009.13-.009.185-.033l8.912-2.969c.06-.077.066-.212.097-.299-1.853-1.811-4.212-.206-6.229-.914-.955-2.65 1.535-5.07.516-7.71-1.822-4.724-3.712-4.634-5.234-4.554-3.45.177-5.81-4.589-5.81-4.636.028-.066.067-.153.11-.216.215-.068.215-.068 2.914.526 1.225.422 2.901.999 2.78.386-.006-.03-.024-.066-.03-.099-.173-.236-.48-.678-1.422-1.41-4.197-3.208-9.455-4.796-13.281-8.527-1.838-1.79-3.157-4.063-5.395-5.468-3.875-2.436-7.425-2.939-9.208-3.016-.013-.01-.025-.01-.04-.01 2.262-1.99 5.246-11.841-.849-12.077-1.107-.042-2.362.12-3.184.224-3.85.5-4.551.586-4.575-.404-.055-1.985 3.38-5.71.567-5.883-.082 0-7.584.14-8.694 2.78-.097.245.028.616.08.88.36 2.343 2.007 4.23 2.383 6.561" mask="url(#aN)"/>
+ <mask id="aP" fill="#fff">
+ <use xlink:href="#aO"/>
+ </mask>
+ <path fill="#000" d="M-165.482 180.938c.958-2.212 1.481-4.567 2.364-6.806.527-1.336 1.153-2.637 1.647-3.985.06-.154.116-.359.173-.513.021-.05.398-1.262-.21-1.123-.089.021-.215.098-.293.149-2.005 1.618-4.28 11.958-3.885 12.59a.895.895 0 0 0 .204-.312" mask="url(#aP)"/>
+ <mask id="aR" fill="#fff">
+ <use xlink:href="#aQ"/>
+ </mask>
+ <path fill="#000" d="M276.778 34.458c0-.126.033-.294-.006-.414-.414-.73-1.622-2.097-3.045-2.657-.244-.091-.563-.208-.805-.276-2.135-.572-4.42-.067-6.525-.9-1.494-.593-2.595-2.05-4.396-1.957-2.055.493-3.994 1.329-6.049 1.804-1.992.464-4.091.343-6.057 1-1.255.414-.349 1.94-1.336 2.502-1.056.604-2.15-.53-3.206.074-.155.096-.376.228-.53.328-.397 1.734 1.186 3.734-.74 5.262-.594-.235-5.097-3.875-5.843-5.265-1.685-3.147-8.836-5.1-10.829-3.534.561 1.595 2.532 1.252 3.415 2.417-.558 2.31-3.349 1.941-4.476 3.578.656.458 2.904.144 4.169-.085 2.222-.396 9.224 1.991 5.318 5.165 1.673 2.02 3.9.302 5.788.833 1.98.543 1.986 1.258 2.001 2.968.46.387.856.552 4.79.144 2.577-.264 3.466-.334 4.286-.279 1.879.126 3.632.948 5.511 1.062.23.012.534.027.776.02.665-.011 1.592-.023 6.805-1.278 4.718-1.132 11.915-6.262 11.55-7.764-.226-.977-1.082-1.628-1.371-2.572.227-.209.227-.209.805-.176" mask="url(#aR)"/>
+ <mask id="aT" fill="#fff">
+ <use xlink:href="#aS"/>
+ </mask>
+ <path fill="#000" d="M-5.76 352.4c2.053 2.683 14.91 3.64 15.132 2.143.12-.814-16.35-19.816-16.526-19.932-1.688-1.167-6.811-4.718-16.304-2.806-5.307 1.749-9.018 5.347-9.042 5.475.68.65 4.738.05 8.066-1.859 4.764-2.731 7.945-1.2 8.25-.356-.255.478-.902 1.152-2.432.288a1.066 1.066 0 0 0-.167.128c.19 2.295 4.008 3.257 6.539 3.901 4.651 1.179 4.966 2.168 5.927 5.11.474 1.473.786 2.367 1.765 3.602.682.855 1.177 1.479 1.213 1.971.113 1.577-1.667 1.503-2.42 2.334" mask="url(#aT)"/>
+ <mask id="aV" fill="#fff">
+ <use xlink:href="#aU"/>
+ </mask>
+ <path fill="#000" d="M14.674 368.37c1.347.746.278 3.172 2.202 3.363 3.338.325 2.963-4.063 5.833-4.336.314-.032.604-.009 1.613.152 5.12.857 13.962 1.106 13.998 1.098.423-.065.71-.147.74-.534.085-1.447-1.157-2.655-.764-4.148 1.212-4.644-23.169-6.69-24.704-6.446-.395.112-.45.144-.616.294-.006.358-.006.358.354.683 3.585 3.213 2.425 6.976 2.244 7.14-.459.39-2.401.086-5.078-.337-4.927-.774-5.41-.627-5.69-.545.054.079.09.223.174.273 3.006 1.736 6.664 1.683 9.694 3.344" mask="url(#aV)"/>
+ <mask id="aX" fill="#fff">
+ <use xlink:href="#aW"/>
+ </mask>
+ <path fill="#000" d="M63.93 143.794c-2.005.722 2.566 2.873 3.503 3.298 6.022 2.73 8.117-.22 8.137-.257.734-1.58-9.444-3.39-11.64-3.041" mask="url(#aX)"/>
+ <mask id="aZ" fill="#fff">
+ <use xlink:href="#aY"/>
+ </mask>
+ <path fill="#000" d="M454.44 532.957c-6.772 8.809-6.944 8.869-11.378 10.46-3.628 1.3-4.766 2.973-10.237 10.993-2.712 3.985-3.725 4.785-6.425 6.918-8.207 6.488-19.294 20.745-19.617 21.919 2.975.033 2.975.033 14.28-10.873 9.22-8.89 17.316-18.83 26.127-28.105-.035.254-.035.254-.806 1.553.353-.25.353-.25 1.189-1.326 2.077-2.64 8.435-11.303 9.457-14.394a1.92 1.92 0 0 0-.225-.102c-.703.792-.703.792-2.365 2.957" mask="url(#aZ)"/>
+ <mask id="bb" fill="#fff">
+ <use xlink:href="#ba"/>
+ </mask>
+ <path fill="#000" d="M164.96 451.01c.034.468.073.927.106 1.383-.033-.453-.072-.93-.105-1.382m6.818 78.38c-.267-2.487-1.104-10.642-2.406-25.05.777 8.41 1.581 16.78 2.475 25.59a5.78 5.78 0 0 1-.07-.54M28.254 439.709c6.389-.804 12.901-1.586 19.74-2.366-6.305.732-12.83 1.511-19.74 2.366m-160.655-292.136c5.013-1.643 10.301-3.209 15.749-4.709-5.427 1.5-10.71 3.069-15.749 4.71m355.199 320.05c-.483-2.544 2.924-6.029-.3-7.67-2.292-1.16-4.557.546-6.828.051-7.39-1.61-12.229-8.026-19.3-10.206-10.543-3.245-21.425-5.117-32.107-7.78-6.203-2.283-6.758-9.451-10.58-13.581-6.521-4.25-11.395-11.14-18.205-15.03-8.912-5.074-19.884-3.344-28.715-8.694-6.99-4.244-11.678-11.434-19.168-15.042-1.089-.522-2.654-1.01-3.842-1.184-36.25-5.456-64.885-9.766-68.122 18.964-10.753-7.642-38.398 4.45-35.845-13.4 1.553-10.801-3.06-18.764-3.123-18.788-8.402-4.253-16.933.162-25.407-.408 2.79-9.262 2.79-9.262.756-13.572 3.666-8.572 3.666-8.572 5.015-16.349-1.601-1.4-15.718-12.789-18.732 19.09-4.863-.315-7.988 6.509-13.562 3.315-13.06-7.48-17.511-16.982-19.005-21.98-1.842-6.184 3.362-11.021 3.227-16.867-.078-3.728-5.102-5.546-3.791-9.814 1.71-5.533 11.911-15.926 14.305-17.77 4.269-3.294 20.841.446 20.964.51.453-.367 1.038-.861 1.48-1.23-1.264-1.389-3.132-1.869-4.57-3.006.118-.545.27-1.271.39-1.82 3.315-1.92 29.64-4.202 29.754-4.142 11.279 6.02 4.4 21.862 15.226 28.136 12.764-13.476-7.739-25.43-5.48-39.006 2.355-14.036 16.384-17.296 24.219-26.261-.174-.021-.18-.021-.195-.015-.342-.39-.8-.909-1.152-1.302.066-.513.147-1.185.207-1.689.489-.147 1.14-.341 1.638-.482.06-.612.147-1.42.204-2.028-.492-.18-1.134-.426-1.617-.603l2.6-25.734c.199 3.8.193 15.39.187 15.41 1.218-.782 1.218-.782 2.3-17.72.942 1.803 2.56 3.225 2.991 5.325 2.307-3.971 1.539-9.172 5.1-12.633.083-.09 15.238-8.32 16.356-8.236 1.407-13.287 1.407-13.287 8.858-20.252 1.254.063 1.254.063 22.878-12.462-.218.453-.506 1.06-.722 1.518 1.112.417 2.687.819 3.893.783v1.877c-12.52 8.884-12.52 8.884-12.685 11.479 8.48.147 34.573-15.02 29.912-26.769-3.588 2.403-3.738 6.824-5.888 10.066a437.07 437.07 0 0 1-6.938-1.974c1.877-.396 3.305-2.408 3.314-2.435a.478.478 0 0 0 .03-.1c-.018-.017-.024-.041-.039-.056-.159-.04-.216-.04-.714.042-3.353.525-5.27-.204-5.948-.546-1.662-.837-1.914-1.809-1.803-3.2.042-.54-.039-.585-.099-.627-.024.015-.066.042-.093.057-.174.279-1.227 2.921-.26 4.877-3.252-1.533-3.807-3.189-5.08-7.124-3.059-1.124-3.26-1.37-4.562-2.972 4.58-1.248 7.88-2.141 8.855-6.733-2.345-2.316-2.345-2.316-34.96 18.085 22.452-23.346 22.452-23.346 45.504-30.337 5.243 3.587 28.817-8.101 32.417-14.637-1.16-2.843-1.16-2.843.537-7.042-.318-.489-.726-1.137-1.047-1.62-1.89-.408-3.77-.822-5.67-1.205-1.61-.015-1.634-.01-1.646-.01-1.146.112-4.628.456-10.799 4.484a81.529 81.529 0 0 1-.696-1.556c1.884-2.685 2.775-3.032 9.761-5.732-13.54 1.158-26.744 2.289-41.269 3.75 13.346-1.404 24.945-2.451 41.353-3.783.36-.183.888-.42 1.095-.759.318-.827-5.13-5.512-11.974-3.716-1.545.4-1.545.4-2.352.13-.48-1.32.6-2.787-.357-4.068-1.302-1.715-3.855-1.28-5.141-3.014-.537-.732-.171-1.383.857-2.801 1.503-2.097 1.503-2.097-1.796-7.981-8.3-14.826-8.3-14.826-12.365-7.067-.636 1.206.966 2.46-.072 3.653-1.194 1.377-3.347.111-4.49 1.65-2.586 3.542-2.586 3.542-3.312 3.761-4.514 1.377-7.664-2.288-11.587-3.158-.69-1.224.86-9.289 3.248-11.209-2.3-.77-4.727.348-7.028-.494-.537-.195-.87-.564-1.587-1.779-.243-.41-.81-1.383-6.479-3.254-1.269-.42-1.56-.393-2.51-.303-5.187 1.395-10.748.246-15.82 2.354.908 4.814-5.004 9.145-1.003 14.175-.768 2.351-3.836 3.143-4.001 5.909-.195 3.206 3.054 5.077 3.162 8.167.012.126.236 12.534-6.918 14.186-1.562.363-5.12 1.494-4.361 4.118-.345.444-.525.609-1.965 1.716-1.899 7.195 2.835 16.184-5.372 21.868-2.565-3.93-7.127-5.057-10.682-7.6 1.929-5.654 1.104-7.715.045-10.324.55-.43 1.476-1.212 2.019-1.644-.084-.297 0-.918-.084-1.22a13.353 13.353 0 0 0-2.076-.13c-3.377-3.26-7.457-.308-11.083-1.29-3.699-.998-5.583-4.747-9.122-5.992a13.87 13.87 0 0 0-2.07-.528c-3.234-.548-5.54 1.836-8.342 2.634-.978-.798-.978-.798-2.208-8.182-.44-2.57-.44-2.57-6.509-3.05-1.374-7.856 17.779-22.07 25.956-28.14-.942-2.498-3.678-1.394-5.244-2.63 15.91-2.831 15.91-2.831 24.966-12.48-6.16 1.077-7.439 1.302-12.445-1.545 5.921-2.138 13.561 1.593 18.055-5.327-.462-.32-1.191-.578-1.743-.614.02-.036 2.967-3.6 6.062-1.635 10.322-3.725 10.322-3.725 13.037-6.11.584-.512 1.28-1.301 1.68-1.964 1.103-1.875-.724-3.884.278-5.762.921-1.73 3.096-1.565 4.314-2.846.669-.858.783-1.953 1.266-2.894-.093-.087-8.78-8.96-11.705 3.614-5.348 3.077-9.19 15.605-15.694 9.798.567-3.86 8.38-6.349 4.73-10.176-4.142 1.563-5.807 5.735-8.867 8.437-.731-2.085 3.486-7.585 3.528-7.64-.216-.083-.216-.083-3.917-.23 6.407-10.324 6.407-10.324 6.413-11.577-.285-.216-.684-.501-.97-.708 3.663-5.654 3.663-5.654 20.743-15.72-1.188-.14-1.188-.14-3.101.204-13.67 3.2-32.16 28.854-32.294 29.1.135.293.32.668.462.96 1.457-.007 2.888-.325 4.343-.415.066.267.15.621.222.891-3.033 1.509-3.513 1.779-4.901 3.107l-.036.735h.02c.259.054.613.13.874.192-2.916 5.006-9.278 6.713-11.657 12.234-2.235-2.318-2.235-2.318 1.938-6.775-2.391-.618-2.391-.618-10.181 5.516-.432.335-3.03 1.991-12.64 1.538-.624-.909-.51-2.111-1.173-3.008-7.77 1.997-10.082 6.511-14.698 15.506-.852-2.27 1.142-4.148.881-6.334-4.196.672-7.628 4.109-12.208 3.422 1.914-1.887 5.006-2.58 5.726-5.663-.24-.129-.555-.303-.795-.432-1.035.561-1.194.651-4.17.327a9.489 9.489 0 0 0-1.292-1.46c-2.12.444-3.324 2.255-4.985 3.383.303-.576.78-1.32 1.178-1.827-1.145.831-1.145.831-3.011 2.628.975-2.022.975-2.022 3.914-5.651-5.063 4.658-5.063 4.658-14.317 12.519l-.03.015c2.925-2.792 6.086-5.33 9.056-8.077-.033.015-6.638 4.976-14.905 13.227.276-.507.72-1.149 1.08-1.593l-17.056 19.148c-22.11 28.775-22.527 29.33-32.3 45.556l.075-.126c.153-.222.345-.525.492-.753-6.542 16.484-6.542 16.484-7.346 20.974-.42 1.307-.981 3.05-1.42 4.349.3.498.7 1.148 1 1.643-2.076 6.563-2.076 6.563-4.32 17.786-.546 2.681.075 5.144.903 7.58-.32-.118-.843-.24-1.644-.3-.378-.03-.579-.094-.71-.235-.12-.126-.169-.168-.394-.968-.102-.405-.515-1.758-.851-1.833-.01.006-.015.015-.03.018-.006.024-.825 3.875.102 7.04.761 2.606 2.61 2.243 2.636 2.24.486-.15.936-.63 1.227-1.323.252-.62.294-1.317.3-1.613.027-.43-.081-.85-.099-1.281-.009-.045.012-.087.012-.132.906 2.537 1.815 5.078 1.662 7.807a72.42 72.42 0 0 0-3.018-1.596c-11.02 13.728-14.866 82.583-7.523 95.438.942.158.942.158 16.918 32.88a94.01 94.01 0 0 0-3.785.12c1.937 4.04 16.024 22.25 16.15 22.396 1.286-1.871 2.61-3.812-3.864-13.014-2.949-4.18-6.281-8.916-11.92-31.792 7.067 5.162 7.817 8.536 8.755 12.804.672 3.041 1.428 6.478 2.778 8.626 2.883 4.604 6.42 8.734 9.488 13.206 3.977 5.794 10.75 9.04 14.08 15.413 2.694 5.135 1.404 12.006 6.938 15.893.75.534 1.944.954 2.799 1.29 1.563.603 3.545 1.718 5.177 2.141 5.688 1.461 11.519 2.367 17.233 3.75 5.855 1.421 12.077-1.947 17.806 1.32 13.132 7.482 13.132 7.482 17.746 7.974.693.075 1.62.186 2.306.282 20.632 2.882 29.175 28.43 51.774 27.62 10.055-16.771 16.252 3.348 18.463 12.774.69 2.976.69 2.976-4.965 15.387-.066.204-5.534 22.566-3.188 26.744.378.684.86 1.614 1.296 2.259 7.412 10.998 37.84 41.078 38.083 41.291 7.427 6.412 17.497 7.873 25.329 13.5 5.97 4.283 10.436 12.705 12.58 23.712.105.495 11.762 52.787 32.054 81.344 25.731 36.216 50.637 32.212 50.862 32.14-23.973-12.351-23.973-12.351-21.714-22.498-3.33-3.554-3.33-3.554-9.62-20.869.978-.32.978-.32 5.498-.174-.042-.468-.042-.468-5.498-8.044 4.205-3.74 4.205-3.74 3.893-6.727.315-.19.735-.456 1.053-.651 7.445 2.276 9.935-3.878 8.01-6.688l-2.187-3.078c16.92-.459 24.129-41.408 24.18-41.822 2.435-5.224 8.816-8.323 11.45-9.417 6.001-2.496 6.091-9.547 10.333-13.407 1.91-1.73 3.626-1.773 5.06-1.587 2.478.318 2.676.345 2.994-1.997.69-5.13.222-10.294.47-15.444.142-2.879-1.559-5.833.352-8.647 2.214-3.239 3.03-4.45 1.473-6.589-.288-.393-.597-.996-.711-1.464 14.164-5.161 19.197-20.503 19.218-20.644.015-.174.027-.41-.009-.579-.306-1.7-1.688-2.939-2.006-4.636" mask="url(#bb)"/>
+ <mask id="bd" fill="#fff">
+ <use xlink:href="#bc"/>
+ </mask>
+ <path fill="#000" d="M46.638 369.652c-2.02 1.331.59 3.882 3.06 4.287 1.755.283 7.384-.481 7.618-1.042.134-.287-.287-.96-4.456-2.23-4.619-1.402-5.296-1.247-6.222-1.015" mask="url(#bd)"/>
+ </g>
+ <g transform="translate(-7 101)">
+ <ellipse cx="361.729" cy="190.837" fill="#F27038" opacity=".6" rx="4.989" ry="4.992"/>
+ <ellipse cx="179.056" cy="107.13" fill="#F27038" rx="4.989" ry="4.992"/>
+ <ellipse cx="506.025" cy="276.848" fill="#F27038" opacity=".2" rx="4.989" ry="4.992"/>
+ <ellipse cx="581.243" cy="62.588" fill="#F27038" opacity=".3" rx="4.989" ry="4.992"/>
+ <path stroke="url(#be)" stroke-width="3" d="M583.35 116.717c0-43.31-39.594-70.006-75.867-67.666-36.273 2.34-106.55 15.722-174.793 88.926" transform="rotate(-25 458.02 93.443)"/>
+ <path stroke="url(#bf)" stroke-width="3" d="M384.8 153.49c0-43.579-29.826-76.214-58.1-73.859-28.274 2.355-55.607 5.935-140.051 70.3" transform="scale(-1 1) rotate(-25 0 1405.32)"/>
+ <path stroke="url(#bg)" stroke-width="3" d="M372.343 157.746c194.784 78.492 121.317 151.793 53.522 143.815-67.796-7.978-236.91-64.224-418.822-162.416" opacity=".354" transform="scale(-1 1) rotate(-31 0 1130.694)"/>
+ </g>
+ </g>
+</svg>
diff --git a/src/images/flyingMonkey.png b/src/images/flyingMonkey.png
deleted file mode 100644
index 0deb70e..0000000
--- a/src/images/flyingMonkey.png
+++ /dev/null
Binary files differ
diff --git a/src/images/gama_pay.png b/src/images/gama_pay.png
deleted file mode 100644
index 827b3e2..0000000
--- a/src/images/gama_pay.png
+++ /dev/null
Binary files differ
diff --git a/src/images/gamania.jpg b/src/images/gamania.jpg
deleted file mode 100644
index b5e968f..0000000
--- a/src/images/gamania.jpg
+++ /dev/null
Binary files differ
diff --git a/src/images/gatsby-astronaut.png b/src/images/gatsby-astronaut.png
deleted file mode 100644
index da58ece..0000000
--- a/src/images/gatsby-astronaut.png
+++ /dev/null
Binary files differ
diff --git a/src/images/main-chainlines-2.svg b/src/images/main-chainlines-2.svg
deleted file mode 100644
index 5b843fd..0000000
--- a/src/images/main-chainlines-2.svg
+++ /dev/null
@@ -1,206 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="1502" height="539" viewBox="0 0 1502 539">
- <defs>
- <linearGradient id="a" x1="56.872%" x2="52.15%" y1="47.71%" y2="51.087%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="b" x1="56.872%" x2="52.15%" y1="47.82%" y2="51.035%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="c" x1="56.872%" x2="52.15%" y1="47.914%" y2="50.99%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="d" x1="56.872%" x2="52.15%" y1="48%" y2="50.949%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="e" x1="56.872%" x2="52.15%" y1="48.098%" y2="50.903%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="f" x1="56.872%" x2="52.15%" y1="48.175%" y2="50.866%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="g" x1="56.872%" x2="52.15%" y1="48.253%" y2="50.829%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="h" x1="56.872%" x2="52.15%" y1="48.338%" y2="50.789%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="i" x1="56.872%" x2="52.15%" y1="48.408%" y2="50.756%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="j" x1="56.872%" x2="52.15%" y1="48.481%" y2="50.721%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="k" x1="56.872%" x2="52.15%" y1="48.55%" y2="50.689%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="l" x1="56.872%" x2="52.15%" y1="48.619%" y2="50.656%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="m" x1="56.872%" x2="52.15%" y1="48.677%" y2="50.628%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="n" x1="56.872%" x2="52.15%" y1="48.745%" y2="50.596%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="o" x1="56.872%" x2="52.15%" y1="48.811%" y2="50.565%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="p" x1="56.872%" x2="52.15%" y1="48.868%" y2="50.538%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="q" x1="56.872%" x2="52.15%" y1="48.933%" y2="50.507%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="r" x1="56.872%" x2="52.15%" y1="48.994%" y2="50.478%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="s" x1="56.872%" x2="52.15%" y1="49.04%" y2="50.456%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="t" x1="56.872%" x2="52.15%" y1="49.097%" y2="50.429%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="u" x1="56.872%" x2="52.15%" y1="49.15%" y2="50.404%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="v" x1="56.872%" x2="52.15%" y1="49.2%" y2="50.38%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="w" x1="56.872%" x2="52.15%" y1="49.244%" y2="50.359%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="x" x1="56.872%" x2="52.15%" y1="49.289%" y2="50.338%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="y" x1="56.872%" x2="52.15%" y1="49.334%" y2="50.316%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="z" x1="56.872%" x2="52.15%" y1="49.364%" y2="50.302%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="A" x1="56.872%" x2="52.15%" y1="49.408%" y2="50.281%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="B" x1="56.872%" x2="52.15%" y1="49.438%" y2="50.267%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="C" x1="56.872%" x2="52.15%" y1="49.474%" y2="50.25%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="D" x1="56.872%" x2="52.15%" y1="49.503%" y2="50.236%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="E" x1="56.872%" x2="52.15%" y1="49.536%" y2="50.22%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="F" x1="56.872%" x2="52.15%" y1="49.564%" y2="50.207%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="G" x1="56.872%" x2="52.15%" y1="49.587%" y2="50.196%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="H" x1="56.872%" x2="52.15%" y1="49.613%" y2="50.184%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="I" x1="56.872%" x2="52.15%" y1="49.64%" y2="50.171%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="J" x1="56.872%" x2="52.15%" y1="49.664%" y2="50.159%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="K" x1="56.872%" x2="52.15%" y1="49.666%" y2="50.158%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="L" x1="56.872%" x2="52.15%" y1="49.64%" y2="50.171%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="M" x1="56.872%" x2="52.15%" y1="49.61%" y2="50.185%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="N" x1="56.872%" x2="52.15%" y1="49.577%" y2="50.201%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- </defs>
- <g fill="none" fill-rule="evenodd" stroke-width=".691" opacity=".519">
- <path stroke="url(#a)" d="M1501.26 28.457c-17.568-6.245-35.454-11.551-53.716-15.753-252.394-58.061-497.82 108.65-714.72 265.226C515.924 434.505 264.524 594.616 14.953 522.713a450.297 450.297 0 0 1-13.967-4.272"/>
- <path stroke="url(#b)" d="M1501.076 43.003c-21.008-7.908-42.45-14.556-64.425-19.655-239.129-55.47-471.89 84.836-680.882 230.54a6452.696 6452.696 0 0 0-32.12 22.524C506.764 429.63 258.255 587.092 8.702 522.232a474.032 474.032 0 0 1-7.645-2.056"/>
- <path stroke="url(#c)" d="M1500.65 59.531c-24.745-9.852-50.058-18.075-76.102-24.187-238.14-55.863-469.848 77.036-678.87 219.502a5031.545 5031.545 0 0 0-32.175 22.064C496.713 427.168 250.942 582.705 1.723 524.392l-.733-.172"/>
- <path stroke="url(#d)" d="M1500.98 74.674c-28.645-11.992-58.003-21.972-88.328-29.177-237.23-56.335-467.964 69.322-677.088 208.74a4212.299 4212.299 0 0 0-32.236 21.635C488.473 422.065 247.548 574.776 1.081 526.703"/>
- <path stroke="url(#e)" d="M1500.942 90.778c-32.107-13.869-65.05-25.437-99.186-33.615-236.32-56.577-466.08 61.325-675.304 197.128a3523.572 3523.572 0 0 0-32.301 21.115C481.123 417.07 244.645 566.707 1.016 528.094"/>
- <path stroke="url(#f)" d="M1501.138 108.84c-35.768-15.924-72.496-29.28-110.679-38.542-235.448-57.055-464.274 53.585-673.633 186.341a3032.309 3032.309 0 0 0-32.37 20.688C473.439 414.957 241.414 562.253 1.023 532.677"/>
- <path stroke="url(#g)" d="M1501.131 124.584c-39.307-17.865-79.678-32.987-121.768-43.312-234.461-57.458-462.237 45.75-671.626 175.27a2658.481 2658.481 0 0 0-32.423 20.227C466.132 410.406 238.154 555.597.911 533.985"/>
- <path stroke="url(#h)" d="M1500.926 139.868c-42.857-19.672-86.863-36.534-132.861-47.907-233.592-57.688-460.146 38.211-669.957 163.692-10.89 6.515-21.753 13.05-32.49 19.709C458.128 404.056 234.51 547.119.748 533.442"/>
- <path stroke="url(#i)" d="M1500.854 157.969c-46.712-21.627-94.646-40.471-144.887-53.035-232.602-58.091-458.08 30.427-667.946 152.62-10.91 6.352-21.791 12.73-32.542 19.25C450.244 401.285 230.891 542.333 1 536.22"/>
- <path stroke="url(#j)" d="M1501.216 173.194c-50.217-23.175-101.687-43.77-155.745-57.417-231.654-58.405-456.095 22.592-666.052 141.31-10.928 6.18-21.83 12.388-32.6 18.761C443.296 396.292 227.452 535.652.81 535.865"/>
- <path stroke="url(#k)" d="M1500.887 188.106c-53.65-24.492-108.554-46.76-166.313-61.48-230.745-58.714-454.194 14.768-664.27 130.012-10.95 6.008-21.874 12.047-32.663 18.272C436.047 391.226 223.849 528.829.75 535.277"/>
- <path stroke="url(#l)" d="M1500.817 205.27c-58.147-26.156-117.524-50.682-180.142-66.787-229.833-59.016-452.292 6.954-662.483 118.727-10.973 5.834-21.921 11.708-32.728 17.783C426.798 386.68 219.232 521.836.891 535.26"/>
- <path stroke="url(#m)" d="M1501.027 219.918c-61.49-27.016-124.129-53.148-190.25-70.371-228.925-59.528-450.398-.853-660.702 107.835-10.995 5.682-21.964 11.406-32.792 17.355C420.398 382.892 216.114 517.069 1.135 535.73"/>
- <path stroke="url(#n)" d="M1501.025 235.427c-65.306-27.726-131.644-55.59-201.746-74.02-227.974-59.835-448.426-8.676-658.805 96.549-11.015 5.509-22.005 11.068-32.848 16.867C412.891 378.942 212.204 511.474 1.01 535.329"/>
- <path stroke="url(#o)" d="M1501.096 249.832c-69.379-28.185-139.612-57.839-213.905-77.557-226.986-60.134-446.384-16.485-656.797 85.28-11.032 5.336-22.043 10.727-32.901 16.376C405.108 373.994 208.156 504.787.954 533.629"/>
- <path stroke="url(#p)" d="M1501.348 264.285a3926.877 3926.877 0 0 1-9.244-3.537c-70.598-27.424-141.912-57.216-217.217-77.46-226.119-60.666-444.576-24.375-655.128 74.316-11.057 5.182-22.09 10.429-32.97 15.95-189.763 96.263-382.77 225.537-585.685 259.442"/>
- <path stroke="url(#q)" d="M1500.771 278.666a2670.83 2670.83 0 0 1-19.837-7.19c-70.71-25.946-141.91-55.173-216.95-75.49-225.205-60.86-442.69-32.135-653.344 62.935-11.077 5-22.13 10.07-33.032 15.43-187.604 92.252-377.211 219.722-576.43 257.75"/>
- <path stroke="url(#r)" d="M1500.863 292.28a2130.863 2130.863 0 0 1-32.096-10.905c-70.766-24.658-141.91-53.244-216.685-73.679-224.294-61.173-440.805-39.937-651.56 51.72-11.1 4.828-22.173 9.737-33.093 14.948C382.209 362.76 196.177 488.504.877 530.59"/>
- <path stroke="url(#s)" d="M1500.93 303.993a1772.627 1772.627 0 0 1-43.333-13.78c-70.818-23.504-141.907-51.604-216.418-72.268-223.382-61.828-438.926-47.996-649.772 40.744-11.125 4.683-22.22 9.452-33.16 14.543C375.244 358.395 192.565 483.253.944 529.245"/>
- <path stroke="url(#t)" d="M1500.977 315.55a1525.582 1525.582 0 0 1-54.179-15.89c-70.859-22.182-141.88-49.6-216.111-70.35-222.437-62.054-436.977-55.748-647.879 29.455-11.144 4.504-22.258 9.105-33.216 14.04-180.897 81.46-360.376 204.683-548.488 253.939"/>
- <path stroke="url(#u)" d="M1501.012 327.23c-22.67-5.402-45.522-11.516-68.635-18.342-70.889-20.937-141.832-47.764-215.771-68.668-221.451-62.488-434.953-63.684-645.876 18.276-11.164 4.338-22.292 8.786-33.268 13.58-177.698 77.631-352.955 198.64-536.376 251.605"/>
- <path stroke="url(#v)" d="M1501.06 337.219c-26.014-5.33-52.26-11.658-78.854-19.017-70.942-19.629-141.83-45.78-215.504-66.776-220.54-62.727-433.08-71.42-644.09 7.049-11.188 4.16-22.338 8.441-33.332 13.08C353.545 345.711 181.26 465.188 1.092 520.87"/>
- <path stroke="url(#w)" d="M1501.05 346.81c-29.862-5.059-60.016-11.507-90.639-19.44-70.984-18.39-141.804-43.951-215.2-65.108-219.59-63.177-431.137-79.395-642.197-4.15-11.21 3.995-22.377 8.125-33.39 12.625C346.3 341.552 177.38 459.48.921 518.022"/>
- <path stroke="url(#x)" d="M1500.98 356.534c-33.273-4.438-66.898-10.675-101.115-18.905-71.046-17.09-141.825-41.98-214.97-63.228-218.717-63.418-429.34-87.113-640.521-15.329-11.233 3.818-22.421 7.782-33.46 12.127C339.798 338.571 174.013 454.667.995 515.611"/>
- <path stroke="url(#y)" d="M1501.007 366.525c-37.564-3.517-75.556-9.403-114.315-18.023-71.098-15.812-141.822-40.057-214.701-61.42-217.807-63.729-427.473-94.911-638.737-26.498-11.257 3.645-22.465 7.45-33.522 11.646C331.642 336.009 169.715 449.603.986 512.988"/>
- <path stroke="url(#z)" d="M1501.103 373.446c-40.644-2.325-81.78-7.511-123.828-16.136-71.127-14.59-141.773-38.273-214.36-59.824-216.823-64.259-425.463-103.058-636.736-37.78-11.276 3.484-22.498 7.142-33.574 11.202C326.14 331.933 166.743 444.798.734 510.323"/>
- <path stroke="url(#A)" d="M1500.993 381.478c-45.071-.667-90.721-4.9-137.511-13.635-71.165-13.284-141.747-36.269-214.057-57.886-215.874-64.427-423.524-110.625-634.84-48.845-11.299 3.302-22.537 6.795-33.633 10.696C317.83 329.165 162.5 438.893 1.018 506.275"/>
- <path stroke="url(#B)" d="M1500.941 387.927c-48.646 1.2-97.954-1.809-148.63-10.292-71.193-12.194-141.746-34.48-213.791-56.294-214.962-64.974-421.658-118.849-633.052-60.198-11.325 3.142-22.583 6.489-33.696 10.253C311.173 325.79 159.12 433.764 1.242 503.06"/>
- <path stroke="url(#C)" d="M1501.024 392.963c-52.664 3.53-106.083 2.104-161.127-6.12-71.224-10.9-141.694-32.52-213.449-54.42C912.47 267.22 706.796 205.922 495.396 261.16c-11.343 2.963-22.615 6.15-33.747 9.76C303.759 322.107 155.11 427.615.983 498.281"/>
- <path stroke="url(#D)" d="M1501 398.083c-56.357 6.142-113.567 6.588-172.656-1.212-71.291-9.66-141.715-30.701-213.216-52.782-213.105-65.713-417.86-134.707-629.378-82.64-11.366 2.798-22.66 5.836-33.816 9.306C296.724 319.023 151.411 422.41.967 494.538"/>
- <path stroke="url(#E)" d="M1501.103 401.251c-59.952 9.01-120.869 11.628-183.932 4.45-71.347-8.351-141.714-28.676-212.951-50.786-212.192-65.772-415.999-141.977-627.592-93.427-11.391 2.613-22.701 5.485-33.878 8.792C290.158 315.405 148.09 416.009 1.222 488.904"/>
- <path stroke="url(#F)" d="M1500.998 403.586c-63.984 12.455-129.067 17.71-196.619 11.189-71.39-7.102-141.687-26.846-212.648-49.137-211.245-66.275-414.06-150.196-625.696-104.819-11.412 2.448-22.74 5.173-33.937 8.338-149.548 42.26-288.046 140.308-430.951 214.2"/>
- <path stroke="url(#G)" d="M1501.047 406.55c-67.326 15.945-135.898 24.012-207.226 18.364-71.458-5.848-141.708-25.008-212.415-47.476-210.371-66.772-412.268-158.441-624.02-116.25-11.439 2.28-22.786 4.86-34.005 7.88C276.18 308.709 140.615 404.799.93 479.597"/>
- <path stroke="url(#H)" d="M1501.028 407.179c-71.334 20.125-144.107 31.626-219.998 26.934-71.501-4.588-141.685-23.159-212.111-45.805C859.496 321.043 658.586 221.6 446.792 260.593c-11.46 2.11-22.827 4.544-34.064 7.42C268.63 304.903 136.603 398.236.853 473.586"/>
- <path stroke="url(#I)" d="M1500.957 407.95c-74.851 24.257-151.361 39.331-231.333 35.802-71.533-3.303-141.634-21.17-211.772-43.844-208.438-67.33-408.324-173.898-620.124-138.337-11.481 1.926-22.861 4.2-34.118 6.914C262.214 302.589 133.345 392.972 1.086 468.302"/>
- <path stroke="url(#J)" d="M1501.121 406.812c-78.771 29.097-159.485 48.437-244.058 46.166-71.602-2.038-141.656-19.315-211.54-42.166C837.958 342.992 638.938 228.292 427.076 261a480.502 480.502 0 0 0-34.186 6.453C254.722 299.187 129.327 386.533.958 461.865"/>
- <path stroke="url(#K)" d="M1500.907 408.124c-1.013.417-2.025.832-3.038 1.246-81.006 33.09-164.25 56.124-251.595 55.297-71.644-.772-141.63-17.418-211.237-40.396-206.616-68.167-404.626-190.359-616.554-160.99a467.995 467.995 0 0 0-34.243 5.977C248.555 298.498 126.077 383.406.93 458.754"/>
- <path stroke="url(#L)" d="M1501.006 404.188c-4.599 2.081-9.205 4.13-13.82 6.146-80.817 35.63-164.248 60.874-251.7 61.556-71.69.498-141.605-15.497-210.936-38.567-205.668-68.41-402.668-197.892-614.66-171.903a455.598 455.598 0 0 0-34.3 5.494C242.353 293.696 122.727 376.042.734 451.154"/>
- <path stroke="url(#M)" d="M1500.946 402.484a1226.091 1226.091 0 0 1-25.445 12.306c-80.718 38.033-164.241 65.739-251.804 67.932-71.733 1.764-141.578-13.612-210.63-36.82-204.723-68.795-400.713-205.822-612.77-183.153a444.34 444.34 0 0 0-34.357 5.023C235.71 292.118 119.336 371.46.987 446.066"/>
- <path stroke="url(#N)" d="M1501.078 398.087c-92.066 49.994-187.912 89.622-289.168 93.903-284.441 12.032-537.49-255.672-821.204-229.765C249.174 275.15 126 358.699.927 439.352"/>
- </g>
-</svg>
diff --git a/src/images/main-chainlines-3.svg b/src/images/main-chainlines-3.svg
deleted file mode 100644
index b6f67ec..0000000
--- a/src/images/main-chainlines-3.svg
+++ /dev/null
@@ -1,206 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="1502" height="539" viewBox="0 0 1502 539">
- <defs>
- <linearGradient id="a" x1="71.482%" x2="45.379%" y1="47.778%" y2="51.042%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="b" x1="71.482%" x2="45.379%" y1="47.885%" y2="50.991%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="c" x1="71.482%" x2="45.379%" y1="47.976%" y2="50.949%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="d" x1="71.482%" x2="45.379%" y1="48.06%" y2="50.909%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="e" x1="71.482%" x2="45.379%" y1="48.154%" y2="50.865%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="f" x1="71.482%" x2="45.379%" y1="48.229%" y2="50.83%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="g" x1="71.482%" x2="45.379%" y1="48.305%" y2="50.794%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="h" x1="71.482%" x2="45.379%" y1="48.387%" y2="50.756%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="i" x1="71.482%" x2="45.379%" y1="48.455%" y2="50.724%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="j" x1="71.482%" x2="45.379%" y1="48.526%" y2="50.691%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="k" x1="71.482%" x2="45.379%" y1="48.592%" y2="50.66%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="l" x1="71.482%" x2="45.379%" y1="48.66%" y2="50.628%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="m" x1="71.482%" x2="45.379%" y1="48.717%" y2="50.602%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="n" x1="71.482%" x2="45.379%" y1="48.782%" y2="50.571%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="o" x1="71.482%" x2="45.379%" y1="48.846%" y2="50.541%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="p" x1="71.482%" x2="45.379%" y1="48.901%" y2="50.515%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="q" x1="71.482%" x2="45.379%" y1="48.965%" y2="50.485%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="r" x1="71.482%" x2="45.379%" y1="49.023%" y2="50.458%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="s" x1="71.482%" x2="45.379%" y1="49.068%" y2="50.437%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="t" x1="71.482%" x2="45.379%" y1="49.123%" y2="50.411%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="u" x1="71.482%" x2="45.379%" y1="49.175%" y2="50.387%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="v" x1="71.482%" x2="45.379%" y1="49.223%" y2="50.364%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="w" x1="71.482%" x2="45.379%" y1="49.266%" y2="50.344%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="x" x1="71.482%" x2="45.379%" y1="49.31%" y2="50.323%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="y" x1="71.482%" x2="45.379%" y1="49.353%" y2="50.303%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="z" x1="71.482%" x2="45.379%" y1="49.383%" y2="50.289%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="A" x1="71.482%" x2="45.379%" y1="49.425%" y2="50.269%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="B" x1="71.482%" x2="45.379%" y1="49.455%" y2="50.255%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="C" x1="71.482%" x2="45.379%" y1="49.489%" y2="50.239%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="D" x1="71.482%" x2="45.379%" y1="49.517%" y2="50.226%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="E" x1="71.482%" x2="45.379%" y1="49.55%" y2="50.211%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="F" x1="71.482%" x2="45.379%" y1="49.577%" y2="50.198%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="G" x1="71.482%" x2="45.379%" y1="49.599%" y2="50.188%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="H" x1="71.482%" x2="45.379%" y1="49.624%" y2="50.176%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="I" x1="71.482%" x2="45.379%" y1="49.651%" y2="50.164%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="J" x1="71.482%" x2="45.379%" y1="49.674%" y2="50.153%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="K" x1="71.482%" x2="45.379%" y1="49.676%" y2="50.152%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="L" x1="71.482%" x2="45.379%" y1="49.651%" y2="50.164%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="M" x1="71.482%" x2="45.379%" y1="49.622%" y2="50.177%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- <linearGradient id="N" x1="71.482%" x2="45.379%" y1="49.589%" y2="50.193%">
- <stop offset="0%" stop-color="#FFF"/>
- <stop offset="100%" stop-color="#F27038"/>
- </linearGradient>
- </defs>
- <g fill="none" fill-rule="evenodd" stroke-width=".691" opacity=".519">
- <path stroke="url(#a)" d="M1501.26 28.457c-17.568-6.245-35.454-11.551-53.716-15.753-252.394-58.061-497.82 108.65-714.72 265.226C515.924 434.505 264.524 594.616 14.953 522.713a450.297 450.297 0 0 1-13.967-4.272"/>
- <path stroke="url(#b)" d="M1501.076 43.003c-21.008-7.908-42.45-14.556-64.425-19.655-239.129-55.47-471.89 84.836-680.882 230.54a6452.696 6452.696 0 0 0-32.12 22.524C506.764 429.63 258.255 587.092 8.702 522.232a474.032 474.032 0 0 1-7.645-2.056"/>
- <path stroke="url(#c)" d="M1500.65 59.531c-24.745-9.852-50.058-18.075-76.102-24.187-238.14-55.863-469.848 77.036-678.87 219.502a5031.545 5031.545 0 0 0-32.175 22.064C496.713 427.168 250.942 582.705 1.723 524.392l-.733-.172"/>
- <path stroke="url(#d)" d="M1500.98 74.674c-28.645-11.992-58.003-21.972-88.328-29.177-237.23-56.335-467.964 69.322-677.088 208.74a4212.299 4212.299 0 0 0-32.236 21.635C488.473 422.065 247.548 574.776 1.081 526.703"/>
- <path stroke="url(#e)" d="M1500.942 90.778c-32.107-13.869-65.05-25.437-99.186-33.615-236.32-56.577-466.08 61.325-675.304 197.128a3523.572 3523.572 0 0 0-32.301 21.115C481.123 417.07 244.645 566.707 1.016 528.094"/>
- <path stroke="url(#f)" d="M1501.138 108.84c-35.768-15.924-72.496-29.28-110.679-38.542-235.448-57.055-464.274 53.585-673.633 186.341a3032.309 3032.309 0 0 0-32.37 20.688C473.439 414.957 241.414 562.253 1.023 532.677"/>
- <path stroke="url(#g)" d="M1501.131 124.584c-39.307-17.865-79.678-32.987-121.768-43.312-234.461-57.458-462.237 45.75-671.626 175.27a2658.481 2658.481 0 0 0-32.423 20.227C466.132 410.406 238.154 555.597.911 533.985"/>
- <path stroke="url(#h)" d="M1500.926 139.868c-42.857-19.672-86.863-36.534-132.861-47.907-233.592-57.688-460.146 38.211-669.957 163.692-10.89 6.515-21.753 13.05-32.49 19.709C458.128 404.056 234.51 547.119.748 533.442"/>
- <path stroke="url(#i)" d="M1500.854 157.969c-46.712-21.627-94.646-40.471-144.887-53.035-232.602-58.091-458.08 30.427-667.946 152.62-10.91 6.352-21.791 12.73-32.542 19.25C450.244 401.285 230.891 542.333 1 536.22"/>
- <path stroke="url(#j)" d="M1501.216 173.194c-50.217-23.175-101.687-43.77-155.745-57.417-231.654-58.405-456.095 22.592-666.052 141.31-10.928 6.18-21.83 12.388-32.6 18.761C443.296 396.292 227.452 535.652.81 535.865"/>
- <path stroke="url(#k)" d="M1500.887 188.106c-53.65-24.492-108.554-46.76-166.313-61.48-230.745-58.714-454.194 14.768-664.27 130.012-10.95 6.008-21.874 12.047-32.663 18.272C436.047 391.226 223.849 528.829.75 535.277"/>
- <path stroke="url(#l)" d="M1500.817 205.27c-58.147-26.156-117.524-50.682-180.142-66.787-229.833-59.016-452.292 6.954-662.483 118.727-10.973 5.834-21.921 11.708-32.728 17.783C426.798 386.68 219.232 521.836.891 535.26"/>
- <path stroke="url(#m)" d="M1501.027 219.918c-61.49-27.016-124.129-53.148-190.25-70.371-228.925-59.528-450.398-.853-660.702 107.835-10.995 5.682-21.964 11.406-32.792 17.355C420.398 382.892 216.114 517.069 1.135 535.73"/>
- <path stroke="url(#n)" d="M1501.025 235.427c-65.306-27.726-131.644-55.59-201.746-74.02-227.974-59.835-448.426-8.676-658.805 96.549-11.015 5.509-22.005 11.068-32.848 16.867C412.891 378.942 212.204 511.474 1.01 535.329"/>
- <path stroke="url(#o)" d="M1501.096 249.832c-69.379-28.185-139.612-57.839-213.905-77.557-226.986-60.134-446.384-16.485-656.797 85.28-11.032 5.336-22.043 10.727-32.901 16.376C405.108 373.994 208.156 504.787.954 533.629"/>
- <path stroke="url(#p)" d="M1501.348 264.285a3926.877 3926.877 0 0 1-9.244-3.537c-70.598-27.424-141.912-57.216-217.217-77.46-226.119-60.666-444.576-24.375-655.128 74.316-11.057 5.182-22.09 10.429-32.97 15.95-189.763 96.263-382.77 225.537-585.685 259.442"/>
- <path stroke="url(#q)" d="M1500.771 278.666a2670.83 2670.83 0 0 1-19.837-7.19c-70.71-25.946-141.91-55.173-216.95-75.49-225.205-60.86-442.69-32.135-653.344 62.935-11.077 5-22.13 10.07-33.032 15.43-187.604 92.252-377.211 219.722-576.43 257.75"/>
- <path stroke="url(#r)" d="M1500.863 292.28a2130.863 2130.863 0 0 1-32.096-10.905c-70.766-24.658-141.91-53.244-216.685-73.679-224.294-61.173-440.805-39.937-651.56 51.72-11.1 4.828-22.173 9.737-33.093 14.948C382.209 362.76 196.177 488.504.877 530.59"/>
- <path stroke="url(#s)" d="M1500.93 303.993a1772.627 1772.627 0 0 1-43.333-13.78c-70.818-23.504-141.907-51.604-216.418-72.268-223.382-61.828-438.926-47.996-649.772 40.744-11.125 4.683-22.22 9.452-33.16 14.543C375.244 358.395 192.565 483.253.944 529.245"/>
- <path stroke="url(#t)" d="M1500.977 315.55a1525.582 1525.582 0 0 1-54.179-15.89c-70.859-22.182-141.88-49.6-216.111-70.35-222.437-62.054-436.977-55.748-647.879 29.455-11.144 4.504-22.258 9.105-33.216 14.04-180.897 81.46-360.376 204.683-548.488 253.939"/>
- <path stroke="url(#u)" d="M1501.012 327.23c-22.67-5.402-45.522-11.516-68.635-18.342-70.889-20.937-141.832-47.764-215.771-68.668-221.451-62.488-434.953-63.684-645.876 18.276-11.164 4.338-22.292 8.786-33.268 13.58-177.698 77.631-352.955 198.64-536.376 251.605"/>
- <path stroke="url(#v)" d="M1501.06 337.219c-26.014-5.33-52.26-11.658-78.854-19.017-70.942-19.629-141.83-45.78-215.504-66.776-220.54-62.727-433.08-71.42-644.09 7.049-11.188 4.16-22.338 8.441-33.332 13.08C353.545 345.711 181.26 465.188 1.092 520.87"/>
- <path stroke="url(#w)" d="M1501.05 346.81c-29.862-5.059-60.016-11.507-90.639-19.44-70.984-18.39-141.804-43.951-215.2-65.108-219.59-63.177-431.137-79.395-642.197-4.15-11.21 3.995-22.377 8.125-33.39 12.625C346.3 341.552 177.38 459.48.921 518.022"/>
- <path stroke="url(#x)" d="M1500.98 356.534c-33.273-4.438-66.898-10.675-101.115-18.905-71.046-17.09-141.825-41.98-214.97-63.228-218.717-63.418-429.34-87.113-640.521-15.329-11.233 3.818-22.421 7.782-33.46 12.127C339.798 338.571 174.013 454.667.995 515.611"/>
- <path stroke="url(#y)" d="M1501.007 366.525c-37.564-3.517-75.556-9.403-114.315-18.023-71.098-15.812-141.822-40.057-214.701-61.42-217.807-63.729-427.473-94.911-638.737-26.498-11.257 3.645-22.465 7.45-33.522 11.646C331.642 336.009 169.715 449.603.986 512.988"/>
- <path stroke="url(#z)" d="M1501.103 373.446c-40.644-2.325-81.78-7.511-123.828-16.136-71.127-14.59-141.773-38.273-214.36-59.824-216.823-64.259-425.463-103.058-636.736-37.78-11.276 3.484-22.498 7.142-33.574 11.202C326.14 331.933 166.743 444.798.734 510.323"/>
- <path stroke="url(#A)" d="M1500.993 381.478c-45.071-.667-90.721-4.9-137.511-13.635-71.165-13.284-141.747-36.269-214.057-57.886-215.874-64.427-423.524-110.625-634.84-48.845-11.299 3.302-22.537 6.795-33.633 10.696C317.83 329.165 162.5 438.893 1.018 506.275"/>
- <path stroke="url(#B)" d="M1500.941 387.927c-48.646 1.2-97.954-1.809-148.63-10.292-71.193-12.194-141.746-34.48-213.791-56.294-214.962-64.974-421.658-118.849-633.052-60.198-11.325 3.142-22.583 6.489-33.696 10.253C311.173 325.79 159.12 433.764 1.242 503.06"/>
- <path stroke="url(#C)" d="M1501.024 392.963c-52.664 3.53-106.083 2.104-161.127-6.12-71.224-10.9-141.694-32.52-213.449-54.42C912.47 267.22 706.796 205.922 495.396 261.16c-11.343 2.963-22.615 6.15-33.747 9.76C303.759 322.107 155.11 427.615.983 498.281"/>
- <path stroke="url(#D)" d="M1501 398.083c-56.357 6.142-113.567 6.588-172.656-1.212-71.291-9.66-141.715-30.701-213.216-52.782-213.105-65.713-417.86-134.707-629.378-82.64-11.366 2.798-22.66 5.836-33.816 9.306C296.724 319.023 151.411 422.41.967 494.538"/>
- <path stroke="url(#E)" d="M1501.103 401.251c-59.952 9.01-120.869 11.628-183.932 4.45-71.347-8.351-141.714-28.676-212.951-50.786-212.192-65.772-415.999-141.977-627.592-93.427-11.391 2.613-22.701 5.485-33.878 8.792C290.158 315.405 148.09 416.009 1.222 488.904"/>
- <path stroke="url(#F)" d="M1500.998 403.586c-63.984 12.455-129.067 17.71-196.619 11.189-71.39-7.102-141.687-26.846-212.648-49.137-211.245-66.275-414.06-150.196-625.696-104.819-11.412 2.448-22.74 5.173-33.937 8.338-149.548 42.26-288.046 140.308-430.951 214.2"/>
- <path stroke="url(#G)" d="M1501.047 406.55c-67.326 15.945-135.898 24.012-207.226 18.364-71.458-5.848-141.708-25.008-212.415-47.476-210.371-66.772-412.268-158.441-624.02-116.25-11.439 2.28-22.786 4.86-34.005 7.88C276.18 308.709 140.615 404.799.93 479.597"/>
- <path stroke="url(#H)" d="M1501.028 407.179c-71.334 20.125-144.107 31.626-219.998 26.934-71.501-4.588-141.685-23.159-212.111-45.805C859.496 321.043 658.586 221.6 446.792 260.593c-11.46 2.11-22.827 4.544-34.064 7.42C268.63 304.903 136.603 398.236.853 473.586"/>
- <path stroke="url(#I)" d="M1500.957 407.95c-74.851 24.257-151.361 39.331-231.333 35.802-71.533-3.303-141.634-21.17-211.772-43.844-208.438-67.33-408.324-173.898-620.124-138.337-11.481 1.926-22.861 4.2-34.118 6.914C262.214 302.589 133.345 392.972 1.086 468.302"/>
- <path stroke="url(#J)" d="M1501.121 406.812c-78.771 29.097-159.485 48.437-244.058 46.166-71.602-2.038-141.656-19.315-211.54-42.166C837.958 342.992 638.938 228.292 427.076 261a480.502 480.502 0 0 0-34.186 6.453C254.722 299.187 129.327 386.533.958 461.865"/>
- <path stroke="url(#K)" d="M1500.907 408.124c-1.013.417-2.025.832-3.038 1.246-81.006 33.09-164.25 56.124-251.595 55.297-71.644-.772-141.63-17.418-211.237-40.396-206.616-68.167-404.626-190.359-616.554-160.99a467.995 467.995 0 0 0-34.243 5.977C248.555 298.498 126.077 383.406.93 458.754"/>
- <path stroke="url(#L)" d="M1501.006 404.188c-4.599 2.081-9.205 4.13-13.82 6.146-80.817 35.63-164.248 60.874-251.7 61.556-71.69.498-141.605-15.497-210.936-38.567-205.668-68.41-402.668-197.892-614.66-171.903a455.598 455.598 0 0 0-34.3 5.494C242.353 293.696 122.727 376.042.734 451.154"/>
- <path stroke="url(#M)" d="M1500.946 402.484a1226.091 1226.091 0 0 1-25.445 12.306c-80.718 38.033-164.241 65.739-251.804 67.932-71.733 1.764-141.578-13.612-210.63-36.82-204.723-68.795-400.713-205.822-612.77-183.153a444.34 444.34 0 0 0-34.357 5.023C235.71 292.118 119.336 371.46.987 446.066"/>
- <path stroke="url(#N)" d="M1501.078 398.087c-92.066 49.994-187.912 89.622-289.168 93.903-284.441 12.032-537.49-255.672-821.204-229.765C249.174 275.15 126 358.699.927 439.352"/>
- </g>
-</svg>
diff --git a/src/images/main_background.png b/src/images/main_background.png
deleted file mode 100644
index 89123e1..0000000
--- a/src/images/main_background.png
+++ /dev/null
Binary files differ
diff --git a/src/images/orange_house.png b/src/images/orange_house.png
deleted file mode 100644
index 785d18b..0000000
--- a/src/images/orange_house.png
+++ /dev/null
Binary files differ
diff --git a/src/images/stone2.png b/src/images/stone2.png
deleted file mode 100644
index 0ab62e2..0000000
--- a/src/images/stone2.png
+++ /dev/null
Binary files differ
diff --git a/src/images/taihu_brew.png b/src/images/taihu_brew.png
deleted file mode 100644
index 43979e7..0000000
--- a/src/images/taihu_brew.png
+++ /dev/null
Binary files differ
diff --git a/src/pages/index.js b/src/pages/index.js
index 06919a6..abb321e 100644
--- a/src/pages/index.js
+++ b/src/pages/index.js
@@ -7,8 +7,9 @@ import Layout from "../components/layout";
// import SEO from "../components/seo";
// import BackgroundImage from 'gatsby-background-image';
import {
+ HEADER_HEIGHT,
MAIN_AREA_DESKTOP_HEIGHT,
- MAIN_AREA_MOBILE_HEIGHT,
+ MOBILE_HEADER_HEIGHT,
MOBILE_WIDTH,
} from 'src/constants/app';
import Bubble from 'src/components/Bubble';
@@ -23,7 +24,7 @@ const Sections = styled.div`
`;
const SectionWrapper = styled.div`
&:nth-child(even) {
- background-color: #F8F8F8;
+ background-color: #FBFBFB;
}
&:nth-child(odd) {
background-color: white;
@@ -46,10 +47,11 @@ const Section = ({ children, title, id }) => (
const Landing = styled.div`
position: relative;
width: 100%;
- height: ${MAIN_AREA_DESKTOP_HEIGHT}px;
+ /* height: ${MAIN_AREA_DESKTOP_HEIGHT}px; */
+ height: calc(100vh - ${HEADER_HEIGHT}px);
overflow: hidden;
@media screen and (max-width: ${MOBILE_WIDTH}px) {
- height: ${MAIN_AREA_MOBILE_HEIGHT}px;
+ height: calc(100vh - ${MOBILE_HEADER_HEIGHT}px);
}
display: flex;
align-items: center;
@@ -61,15 +63,19 @@ const TitleSection = styled.div`
max-width: 900px;
padding: 0px 40px;
z-index: 10;
+ font-family: Montserrat;
@media screen and (max-width: ${MOBILE_WIDTH}px) {
padding: 0px 20px;
}
`;
const Title = styled.div`
+ /* border: 1px solid red; */
font-weight: bolder;
font-size: 70px;
+ line-height: 70px;
@media screen and (max-width: ${MOBILE_WIDTH}px) {
- font-size: 50px;
+ font-size: 35px;
+ line-height: 35px;
}
`;
const SubTitle = styled.div`
@@ -116,8 +122,9 @@ const movementEffectMobile = keyframes`
const CircleBackground = styled.div`
position: absolute;
- background: radial-gradient(closest-side, rgba(224, 91, 33, 1) 40%, transparent 95%);
- animation: ${movementEffect} 5s ease-in-out infinite;
+ background: radial-gradient(white 45%, rgba(224, 91, 33, 0.5) 50%, white 65%);
+ /* background: -webkit-radial-gradient(closest-side, rgba(224, 91, 33, 1) 40%, transparent 95%); */
+ animation: ${movementEffect} 8s ease-in-out infinite;
display: flex;
align-items: center;
justify-content: center;
@@ -135,13 +142,13 @@ const IndexPage = ({ pageContext: { locale }, intl }) => {
<Bubble />
<CircleBackground />
<TitleSection>
- <Title>BUILD <HightLight>TRUST</HightLight></Title>
- <Title>GO VIRAL</Title>
+ <Title>Better <HightLight>Trust</HightLight></Title>
+ <Title>For a Better Future</Title>
<SubTitle>Ignite your idea with Tangerine Network</SubTitle>
</TitleSection>
</Landing>
- <Section><PartnerList /></Section>
- <Section><Contact /></Section>
+ {/* <Section><PartnerList /></Section>
+ <Section><Contact /></Section> */}
<Section
id="technology"
title={
diff --git a/src/translations/en.json b/src/translations/en.json
index 07b46f3..089ffe0 100644
--- a/src/translations/en.json
+++ b/src/translations/en.json
@@ -31,5 +31,6 @@
"Paper": "Paper",
"read_the_paper": "Read the paper",
"Faucet": "Faucet",
- "get_mainnet_token": "Get Mainnet Token"
+ "get_mainnet_token": "Get Mainnet Token",
+ "see_how_it_works": "See How It Works"
} \ No newline at end of file
diff --git a/src/translations/zh-Hant.json b/src/translations/zh-Hant.json
index 107dd4d..157ede1 100644
--- a/src/translations/zh-Hant.json
+++ b/src/translations/zh-Hant.json
@@ -30,5 +30,6 @@
"Paper": "Paper",
"read_the_paper": "Read the paper",
"Faucet": "Faucet",
- "get_mainnet_token": "Get Mainnet Token"
+ "get_mainnet_token": "Get Mainnet Token",
+ "see_how_it_works": "See How It Works"
} \ No newline at end of file