Compare commits
9 Commits
e91c91f759
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| de52687a28 | |||
| 59d9b819c4 | |||
| 3e417198fc | |||
| aec189f0f9 | |||
| cee5330bbc | |||
| 5f6284fae4 | |||
| 6ca4040e93 | |||
| 21a4b3975a | |||
| f466e116f1 |
25
.drone.yml
@@ -1,25 +0,0 @@
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: build
|
||||
|
||||
clone:
|
||||
disable: true
|
||||
|
||||
steps:
|
||||
- name: bulid
|
||||
image: node:16
|
||||
environment:
|
||||
SSH_PRIVATE_KEY:
|
||||
from_secret: ssh_private_key
|
||||
commands:
|
||||
- git clone https://git.radner.ru/anatolykopyl/games.anatolykopyl.ru.git
|
||||
- cd games.anatolykopyl.ru
|
||||
- npm install
|
||||
- npm run build
|
||||
- mkdir ~/.ssh
|
||||
- echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
|
||||
- chmod 400 ~/.ssh/id_rsa
|
||||
- scp -o StrictHostKeyChecking=no -r ./dist/* webmaster@games.anatolykopyl.ru:~/www/games.anatolykopyl.ru
|
||||
when:
|
||||
branch:
|
||||
- master
|
||||
34
.gitea/workflows/ci.yaml
Normal file
@@ -0,0 +1,34 @@
|
||||
name: Deploy
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build-and-deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
|
||||
- name: Build project
|
||||
run: npm run build
|
||||
|
||||
- name: Set up SSH
|
||||
uses: webfactory/ssh-agent@v0.5.3
|
||||
with:
|
||||
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||
|
||||
- name: Deploy to Server
|
||||
env:
|
||||
SSH_USER: ${{ secrets.DEPLOY_USER }}
|
||||
SSH_HOST: ${{ secrets.DEPLOY_HOST }}
|
||||
SSH_PORT: ${{ secrets.DEPLOY_PORT }}
|
||||
DEPLOY_PATH: ${{ secrets.DEPLOY_PATH }}
|
||||
run: |
|
||||
echo "Deploying to ${SSH_USER}@${SSH_HOST}:${DEPLOY_PATH}"
|
||||
ssh -o StrictHostKeyChecking=no -p ${SSH_PORT} ${SSH_USER}@${SSH_HOST} "mkdir -p ${DEPLOY_PATH}"
|
||||
scp -o StrictHostKeyChecking=no -P ${SSH_PORT} -r dist/* ${SSH_USER}@${SSH_HOST}:${DEPLOY_PATH}
|
||||
1
.gitignore
vendored
@@ -1,5 +1,6 @@
|
||||
node_modules
|
||||
.DS_Store
|
||||
.idea
|
||||
dist
|
||||
dist-ssr
|
||||
*.local
|
||||
|
||||
|
Before Width: | Height: | Size: 453 KiB |
|
Before Width: | Height: | Size: 250 KiB |
|
Before Width: | Height: | Size: 228 KiB |
|
Before Width: | Height: | Size: 229 KiB |
|
Before Width: | Height: | Size: 199 KiB |
|
Before Width: | Height: | Size: 203 KiB |
29
src/base.scss
Normal file
@@ -0,0 +1,29 @@
|
||||
$clr-text: #171c20;
|
||||
|
||||
#app {
|
||||
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
text-align: center;
|
||||
color: $clr-text;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 32px;
|
||||
line-height: 1.2;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 32px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
a {
|
||||
cursor: pointer;
|
||||
color: inherit;
|
||||
text-decoration-style: dotted;
|
||||
text-underline-offset: 3px;
|
||||
}
|
||||
@@ -2,24 +2,47 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Game Collection</title>
|
||||
|
||||
<script type="module">
|
||||
import 'reset-css'
|
||||
import './index.scss'
|
||||
</script>
|
||||
|
||||
<!-- Yandex.Metrika counter -->
|
||||
<script type="text/javascript" >
|
||||
(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
|
||||
m[i].l=1*new Date();
|
||||
for (var j = 0; j < document.scripts.length; j++) {if (document.scripts[j].src === r) { return; }}
|
||||
k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})
|
||||
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
|
||||
|
||||
ym(86673990, "init", {
|
||||
clickmap:true,
|
||||
trackLinks:true,
|
||||
accurateTrackBounce:true,
|
||||
webvisor:true
|
||||
});
|
||||
</script>
|
||||
<noscript><div><img src="https://mc.yandex.ru/watch/86673990" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
|
||||
<!-- /Yandex.Metrika counter -->
|
||||
</head>
|
||||
<body>
|
||||
<div id="app">
|
||||
<h1 class="title">My games</h1>
|
||||
<!-- <h1 class="title">My games</h1> -->
|
||||
<div class="games">
|
||||
<div class="games__section stroll">
|
||||
<div class="games__section__game">
|
||||
<img src="/assets/stroll/screenshot4.png" class="games__section__game__thumb">
|
||||
<img src="/screenshots/stroll.png" class="games__section__game__thumb">
|
||||
<div class="games__section__game__info">
|
||||
<h2>Stroll</h2>
|
||||
<div class="description">
|
||||
An atmospheric platformer.
|
||||
</div>
|
||||
<div class="links">
|
||||
<a href="https://games.anatolykopyl.ru/stroll" target="_blank">Play now</a>
|
||||
<a href="/games/stroll/" target="_blank">Play now</a>
|
||||
<a href="https://gamejolt.com/games/Stroll/279158" target="_blank">Check out on GameJolt</a>
|
||||
</div>
|
||||
</div>
|
||||
@@ -28,7 +51,7 @@
|
||||
|
||||
<div class="games__section inverted mwg">
|
||||
<div class="games__section__game">
|
||||
<img src="/assets/mwg/thumb.jpg" class="games__section__game__thumb">
|
||||
<img src="/screenshots/mwg.jpg" class="games__section__game__thumb">
|
||||
<div class="games__section__game__info">
|
||||
<h2>Monkeys With Grenades</h2>
|
||||
<div class="description">
|
||||
@@ -36,17 +59,21 @@
|
||||
Two people on one keyboard, oldschool.
|
||||
</div>
|
||||
<div class="links">
|
||||
<a href="https://games.anatolykopyl.ru/mwg" target="_blank">Play now</a>
|
||||
<a href="/games/mwg/" target="_blank">Play now</a>
|
||||
<a href="https://gamejolt.com/games/monkeys-with-grenades/83237" target="_blank">Check out on GameJolt</a><br>
|
||||
<a href="https://music.amazon.com.au/artists/B08FHBMW58/lebtr" target="_blank">Music by Lebtr</a>
|
||||
<a href="https://linktr.ee/lebtr" target="_blank">Music by Lebtr</a>
|
||||
</div>
|
||||
<a class="games__section__game__trophy" href="mwg-scores.html">
|
||||
<img src="/trophy.png" class="games__section__game__trophy__img"/>
|
||||
<div class="games__section__game__trophy__text">Tournaments</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="games__section zombieline">
|
||||
<div class="games__section__game">
|
||||
<img src="/assets/zombieline/thumb.gif" class="games__section__game__thumb">
|
||||
<img src="/screenshots/zombieline.gif" class="games__section__game__thumb">
|
||||
<div class="games__section__game__info">
|
||||
<h2>Zombieline Zombieami</h2>
|
||||
<div class="description">
|
||||
@@ -61,11 +88,11 @@
|
||||
|
||||
<div class="games__section inferno-cop inverted">
|
||||
<div class="games__section__game">
|
||||
<img src="/assets/inferno-cop/screenshot.jpg" class="games__section__game__thumb">
|
||||
<img src="/screenshots/inferno-cop.jpg" class="games__section__game__thumb">
|
||||
<div class="games__section__game__info">
|
||||
<h2>Inferno Cop</h2>
|
||||
<div class="description">
|
||||
A video game adaptation of the show Inferno Cop by studio Trigger.
|
||||
A video game adaptation of the show Inferno Cop by studio Trigger.
|
||||
Featuring jump groans, bandits and quick time events.
|
||||
</div>
|
||||
<div class="links">
|
||||
@@ -77,7 +104,7 @@
|
||||
|
||||
<div class="games__section drift last">
|
||||
<div class="games__section__game">
|
||||
<img src="/assets/drift/screenshot1.png" class="games__section__game__thumb">
|
||||
<img src="/screenshots/drift.png" class="games__section__game__thumb">
|
||||
<div class="games__section__game__info">
|
||||
<h2>Drift</h2>
|
||||
<div class="description">
|
||||
@@ -91,22 +118,20 @@
|
||||
|
||||
<!-- <div class="games__section murk">
|
||||
<div class="games__section__game">
|
||||
<img src="/assets/murk/thumb.png" class="games__section__game__thumb">
|
||||
<img src="/screenshots/murk.png" class="games__section__game__thumb">
|
||||
<div class="games__section__game__info">
|
||||
<h2>Murk</h2>
|
||||
<div class="description">
|
||||
|
||||
|
||||
</div>
|
||||
<div class="links">
|
||||
<a href="https://gamejolt.com/games/murk/92990" target="_blank">Check out on GameJolt</a><br>
|
||||
<a href="https://music.amazon.com.au/artists/B08FHBMW58/lebtr" target="_blank">Music by Lebtr</a>
|
||||
<a href="https://linktr.ee/lebtr" target="_blank">Music by Lebtr</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div> -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="module" src="/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,36 +1,8 @@
|
||||
$clr-text: #171c20;
|
||||
|
||||
#app {
|
||||
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
text-align: center;
|
||||
color: $clr-text;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
|
||||
h1 {
|
||||
font-size: 32px;
|
||||
line-height: 32px;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 32px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
a {
|
||||
cursor: pointer;
|
||||
color: inherit;
|
||||
text-decoration-style: dotted;
|
||||
text-underline-offset: 3px;
|
||||
}
|
||||
}
|
||||
@import "base";
|
||||
|
||||
.title {
|
||||
position: relative;
|
||||
padding: 64px 0;
|
||||
padding: 32px 20px;
|
||||
background-color: #F3B61F;
|
||||
//box-shadow: 0px 10px 20px rgba(19, 19, 19, 0.897);
|
||||
box-shadow: 0 5px 0 $clr-text;
|
||||
@@ -69,7 +41,8 @@ $clr-text: #171c20;
|
||||
// background-color: rgb(211, 211, 211);
|
||||
// }
|
||||
|
||||
&::before, &::after {
|
||||
&::before,
|
||||
&::after {
|
||||
position: absolute;
|
||||
content: "";
|
||||
z-index: -10;
|
||||
@@ -107,6 +80,7 @@ $clr-text: #171c20;
|
||||
}
|
||||
|
||||
&__info {
|
||||
position: relative;
|
||||
text-align: center;
|
||||
width: -webkit-fill-available;
|
||||
display: flex;
|
||||
@@ -119,11 +93,30 @@ $clr-text: #171c20;
|
||||
}
|
||||
|
||||
.links {
|
||||
> * {
|
||||
>* {
|
||||
margin: 0 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__trophy {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 33%;
|
||||
transform: translate(0, -50%) rotate(6deg);
|
||||
color: $clr-text;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
|
||||
&__img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -131,7 +124,8 @@ $clr-text: #171c20;
|
||||
z-index: -20;
|
||||
padding: 48px 0;
|
||||
|
||||
&::before, &::after {
|
||||
&::before,
|
||||
&::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@@ -160,9 +154,19 @@ $clr-text: #171c20;
|
||||
&__info {
|
||||
padding: 0 8px;
|
||||
|
||||
> * {
|
||||
>* {
|
||||
margin-top: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
&__trophy {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
right: 16px;
|
||||
|
||||
&__text {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
208
src/mwg-scores.html
Normal file
@@ -0,0 +1,208 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Game Collection</title>
|
||||
|
||||
<script type="module">
|
||||
import 'reset-css'
|
||||
import './mwg-scores.scss'
|
||||
</script>
|
||||
|
||||
<!-- Yandex.Metrika counter -->
|
||||
<script type="text/javascript" >
|
||||
(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
|
||||
m[i].l=1*new Date();
|
||||
for (var j = 0; j < document.scripts.length; j++) {if (document.scripts[j].src === r) { return; }}
|
||||
k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})
|
||||
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
|
||||
|
||||
ym(86673990, "init", {
|
||||
clickmap:true,
|
||||
trackLinks:true,
|
||||
accurateTrackBounce:true,
|
||||
webvisor:true
|
||||
});
|
||||
</script>
|
||||
<noscript><div><img src="https://mc.yandex.ru/watch/86673990" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
|
||||
<!-- /Yandex.Metrika counter -->
|
||||
</head>
|
||||
<body id="app">
|
||||
<main>
|
||||
<section class="season season--first">
|
||||
<h1 class="season__title">
|
||||
Первый турнир
|
||||
<div class="season__subtitle">сентябрь 2022</div>
|
||||
</h1>
|
||||
|
||||
<img class="season__cardboard" src="/cardboard.webp">
|
||||
<img class="season__sharpie" src="/sharpie.png">
|
||||
|
||||
<div class="tournament">
|
||||
<div class="bracket">
|
||||
<div class="bracket__columnWrapper">
|
||||
<h2>Отборочный тур</h2>
|
||||
<ul class="bracket__column">
|
||||
<li class="bracketMatch bracketMatch--down">
|
||||
<div class="bracketCard">
|
||||
<div class="bracketCard__names">
|
||||
<div class="bracketCard__name">Альфред</div>
|
||||
<div class="bracketCard__name bracketCard__name--winner">Маша</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="bracketMatch bracketMatch--up">
|
||||
<div class="bracketCard">
|
||||
<div class="bracketCard__names">
|
||||
<div class="bracketCard__name">Маша</div>
|
||||
<div class="bracketCard__name bracketCard__name--winner">
|
||||
Толя
|
||||
<img class="bracketCard__trophy" src="/bronze-pizza.webp" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="bracketMatch bracketMatch--straight">
|
||||
<div class="bracketCard">
|
||||
<div class="bracketCard__names">
|
||||
<div class="bracketCard__name bracketCard__name--winner">Альфред</div>
|
||||
<div class="bracketCard__name">Толя</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="bracket__columnWrapper">
|
||||
<h2>Финал</h2>
|
||||
<ul class="bracket__column">
|
||||
<li class="bracketMatch bracketMatch--down">
|
||||
<div class="bracketCard">
|
||||
<div class="bracketCard__names">
|
||||
<div class="bracketCard__name bracketCard__name--winner">
|
||||
Маша
|
||||
<img class="bracketCard__trophy" src="/silver-pizza.webp" />
|
||||
</div>
|
||||
<div class="bracketCard__name">Толя</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="bracket__columnWrapper">
|
||||
<h2>Финал 2</h2>
|
||||
<ul class="bracket__column">
|
||||
<li class="bracketMatch">
|
||||
<div class="bracketCard bracketCard--bottomExtendo">
|
||||
<div class="bracketCard__names">
|
||||
<div class="bracketCard__name bracketCard__name--winner">
|
||||
Альфред
|
||||
<img class="bracketCard__trophy" src="/gold-pizza.webp" />
|
||||
</div>
|
||||
<div class="bracketCard__name">Маша</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="season season--second">
|
||||
<h1 class="season__title">
|
||||
Второй турнир
|
||||
<div class="season__subtitle">июнь 2023</div>
|
||||
</h1>
|
||||
<input
|
||||
class="season__fakeSubtitle"
|
||||
placeholder="Нажмите, чтобы ввести подзаголовок"
|
||||
>
|
||||
|
||||
<div class="screen">
|
||||
<img src="/screen.webp" class="screen__image">
|
||||
|
||||
<div class="bracket">
|
||||
<div class="bracket__columnWrapper">
|
||||
<h2>Отборочный тур</h2>
|
||||
<ul class="bracket__column">
|
||||
<li class="bracketMatch">
|
||||
<div class="bracketCard">
|
||||
<div class="bracketCard__names">
|
||||
<div class="bracketCard__name bracketCard__name--winner">Леша</div>
|
||||
<div class="bracketCard__name">Степа</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="bracketMatch">
|
||||
<div class="bracketCard">
|
||||
<div class="bracketCard__names">
|
||||
<div class="bracketCard__name bracketCard__name--winner">Ваня</div>
|
||||
<div class="bracketCard__name">Маша</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="bracket__columnWrapper">
|
||||
<h2>Полуфинал</h2>
|
||||
<ul class="bracket__column">
|
||||
<li class="bracketMatch bracketMatch--down">
|
||||
<div class="bracketCard bracketCard--singleIn">
|
||||
<div class="bracketCard__names">
|
||||
<div class="bracketCard__name">Альфред</div>
|
||||
<div class="bracketCard__name bracketCard__name--winner">Леша</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="bracketMatch bracketMatch--up">
|
||||
<div class="bracketCard bracketCard--singleIn">
|
||||
<div class="bracketCard__names">
|
||||
<div class="bracketCard__name bracketCard__name--winner">Ваня</div>
|
||||
<div class="bracketCard__name">Толя</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="bracket__columnWrapper">
|
||||
<h2>Финал</h2>
|
||||
<ul class="bracket__column">
|
||||
<li class="bracketMatch">
|
||||
<div class="bracketCard">
|
||||
<div class="bracketCard__names">
|
||||
<div class="bracketCard__name">Ваня</div>
|
||||
<div class="bracketCard__name bracketCard__name--winner">Леша</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<video
|
||||
src="/gameplay-table.webm"
|
||||
class="laptopTable"
|
||||
loop
|
||||
autoplay
|
||||
muted
|
||||
></video>
|
||||
</section>
|
||||
</main>
|
||||
<footer class="footer">
|
||||
<img src="/monkey.png" class="footer__logo">
|
||||
<p class="footer__disclaimer">
|
||||
Игры проведены всемирной лигой обезьян с гранатами (WMWGL).
|
||||
</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
498
src/mwg-scores.scss
Normal file
@@ -0,0 +1,498 @@
|
||||
@import "base";
|
||||
|
||||
$card-width: 150px;
|
||||
|
||||
$clr-dodo: #FF6900;
|
||||
$line-radius-dodo: 8px;
|
||||
$card-width-dodo: 200px;
|
||||
$clr-dodo-secondary: rgb(156, 168, 174);
|
||||
|
||||
$line-radius-second: 4px;
|
||||
$clt-cardBg-second: #5cb3ff;
|
||||
|
||||
@font-face {
|
||||
font-family: 'Dodo';
|
||||
font-style: normal;
|
||||
src: url("/DoDo-VF.woff2") format('woff2');
|
||||
}
|
||||
|
||||
main {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 780px) {
|
||||
main {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.season {
|
||||
position: relative;
|
||||
padding: 64px;
|
||||
overflow: hidden;
|
||||
|
||||
&__title {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
align-items: baseline;
|
||||
position: relative;
|
||||
font-weight: 800;
|
||||
font-size: 64px;
|
||||
margin-bottom: 64px;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
&__subtitle {
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
&--first {
|
||||
background: #f5f2f2;
|
||||
font-family: Dodo;
|
||||
font-weight: 400;
|
||||
|
||||
.bracketMatch {
|
||||
&::after {
|
||||
border-color: $clr-dodo-secondary;
|
||||
}
|
||||
|
||||
&--down {
|
||||
&::after {
|
||||
border-top-right-radius: $line-radius-dodo;
|
||||
}
|
||||
}
|
||||
|
||||
&--up {
|
||||
&::after {
|
||||
border-bottom-right-radius: $line-radius-dodo;
|
||||
}
|
||||
}
|
||||
|
||||
&--straight {
|
||||
&::after {
|
||||
border-bottom-right-radius: $line-radius-dodo;
|
||||
width: calc($card-width-dodo + 60px);
|
||||
right: calc(-62px - $card-width-dodo);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.bracketCard {
|
||||
width: $card-width-dodo;
|
||||
|
||||
&::before, &::after {
|
||||
border-color: $clr-dodo-secondary;
|
||||
}
|
||||
|
||||
&::before {
|
||||
border-bottom-left-radius: $line-radius-dodo;
|
||||
}
|
||||
|
||||
&::after {
|
||||
border-top-left-radius: $line-radius-dodo;
|
||||
}
|
||||
|
||||
&--bottomExtendo {
|
||||
&::after {
|
||||
border-top-left-radius: $line-radius-dodo;
|
||||
}
|
||||
}
|
||||
|
||||
&__name {
|
||||
&--winner {
|
||||
color: $clr-dodo;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&--second {
|
||||
background-image: url("/white-texture.jpg");
|
||||
background-size: cover;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
padding-bottom: 128px;
|
||||
|
||||
.season {
|
||||
&__title {
|
||||
font-weight: 500;
|
||||
border: 1px dotted gray;
|
||||
padding: 0 12px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
&__fakeSubtitle {
|
||||
border: 1px dotted gray;
|
||||
padding: 12px;
|
||||
box-sizing: border-box;
|
||||
margin-bottom: 64px;
|
||||
background: none;
|
||||
display: block;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
font-size: 18px;
|
||||
|
||||
&:focus {
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.bracketMatch {
|
||||
&::after {
|
||||
|
||||
}
|
||||
|
||||
&--down {
|
||||
&::after {
|
||||
border-top-right-radius: $line-radius-second;
|
||||
}
|
||||
}
|
||||
|
||||
&--up {
|
||||
&::after {
|
||||
border-bottom-right-radius: $line-radius-second;
|
||||
}
|
||||
}
|
||||
|
||||
&--straight {
|
||||
&::after {
|
||||
border-bottom-right-radius: $line-radius-second;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.bracketCard {
|
||||
background: $clt-cardBg-second;
|
||||
border: 2px solid black;
|
||||
|
||||
&::before, &::after {
|
||||
}
|
||||
|
||||
&::before {
|
||||
border-bottom-left-radius: $line-radius-second;
|
||||
}
|
||||
|
||||
&::after {
|
||||
border-top-left-radius: $line-radius-second;
|
||||
}
|
||||
|
||||
&--bottomExtendo {
|
||||
&::after {
|
||||
border-top-left-radius: $line-radius-second;
|
||||
}
|
||||
}
|
||||
|
||||
&__name {
|
||||
&--winner {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__cardboard {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
transform: translate(40%, -50%) rotate(-45deg);
|
||||
width: 500px;
|
||||
filter: drop-shadow(1px 1px 2px #222);
|
||||
}
|
||||
|
||||
&__sharpie {
|
||||
position: absolute;
|
||||
top: 72px;
|
||||
right: 28px;
|
||||
transform: rotate(150deg);
|
||||
width: 300px;
|
||||
filter: drop-shadow(2px 2px 4px #222);
|
||||
}
|
||||
}
|
||||
|
||||
.tournament {
|
||||
padding: 32px;
|
||||
}
|
||||
|
||||
.bracket {
|
||||
position: relative;
|
||||
display: flex;
|
||||
z-index: 10;
|
||||
|
||||
&__columnWrapper {
|
||||
display: flex;
|
||||
padding: 20px;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 32px;
|
||||
|
||||
h2 {
|
||||
text-align: center;
|
||||
font-weight: 600;
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
|
||||
&__column {
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: space-evenly;
|
||||
gap: 32px;
|
||||
}
|
||||
}
|
||||
|
||||
.bracketMatch {
|
||||
position: relative;
|
||||
|
||||
&::after {
|
||||
position: absolute;
|
||||
right: -22px;
|
||||
content: '';
|
||||
display: block;
|
||||
width: 20px;
|
||||
height: 45%;
|
||||
border: 0 solid gray;
|
||||
}
|
||||
|
||||
&--down {
|
||||
&::after {
|
||||
top: 50%;
|
||||
border-width: 2px 2px 0 0;
|
||||
}
|
||||
}
|
||||
|
||||
&--up {
|
||||
&::after {
|
||||
bottom: 50%;
|
||||
border-width: 0 2px 2px 0;
|
||||
}
|
||||
}
|
||||
|
||||
&--straight {
|
||||
&::after {
|
||||
bottom: 50%;
|
||||
border-width: 0 2px 2px 0;
|
||||
width: calc($card-width + 60px);
|
||||
right: calc(-62px - $card-width);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.bracketCard {
|
||||
padding: 16px 32px;
|
||||
background: white;
|
||||
border-radius: 6px;
|
||||
width: $card-width;
|
||||
box-sizing: border-box;
|
||||
|
||||
&::before, &::after {
|
||||
border: 0 solid gray;
|
||||
position: absolute;
|
||||
left: -20px;
|
||||
content: '';
|
||||
display: block;
|
||||
width: 18px;
|
||||
height: 45%;
|
||||
}
|
||||
|
||||
&::before {
|
||||
border-width: 0 0 2px 2px;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
&::after {
|
||||
border-width: 2px 0 0 2px;
|
||||
top: 50%;
|
||||
}
|
||||
|
||||
&--bottomExtendo {
|
||||
&::after {
|
||||
border-width: 2px 0 0 2px;
|
||||
top: 50%;
|
||||
height: 87px;
|
||||
}
|
||||
}
|
||||
|
||||
&--singleIn {
|
||||
&::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
&::after {
|
||||
border-top-left-radius: 0 !important;
|
||||
border-width: 2px 0 0 0;
|
||||
top: 50%;
|
||||
width: 40px;
|
||||
left: -40px;
|
||||
}
|
||||
}
|
||||
|
||||
&__name {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 24px;
|
||||
|
||||
&--winner {
|
||||
font-weight: 800;
|
||||
}
|
||||
}
|
||||
|
||||
&__trophy {
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.bracket__columnWrapper:first-child {
|
||||
.bracketCard {
|
||||
&::before, &::after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.screen {
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
width: 800px;
|
||||
padding: 48px 40px 29px 34px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
&__image {
|
||||
left: 0;
|
||||
top: 0;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
filter: drop-shadow(0 6px 6px #222);
|
||||
}
|
||||
|
||||
.bracket {
|
||||
background: #ffffff4a;
|
||||
padding: 50px 67px;
|
||||
|
||||
&::before {
|
||||
position: absolute;
|
||||
display: block;
|
||||
content: '';
|
||||
width: 100%;
|
||||
height: 30px;
|
||||
background: rgba(255, 68, 0, 0.575);
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 780px) {
|
||||
.screen {
|
||||
width: 100%;
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
|
||||
&__image {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.bracket {
|
||||
padding: 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.laptopTable {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
width: 50%;
|
||||
max-width: 600px;
|
||||
display: block;
|
||||
z-index: 100;
|
||||
filter: drop-shadow(0 10px 32px #11111160);
|
||||
}
|
||||
|
||||
.footer {
|
||||
padding: 32px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 16px;
|
||||
|
||||
&__logo {
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
&__disclaimer {
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 780px) {
|
||||
.season {
|
||||
padding: 8px;
|
||||
|
||||
&__sharpie {
|
||||
display: none;
|
||||
}
|
||||
|
||||
&__title {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
&--second {
|
||||
padding-bottom: 128px;
|
||||
}
|
||||
}
|
||||
|
||||
.tournament {
|
||||
padding: 32px 0;
|
||||
}
|
||||
|
||||
.bracket {
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
|
||||
&__columnWrapper {
|
||||
padding: 32px 0;
|
||||
border-bottom: 2px dashed $clr-dodo-secondary;
|
||||
|
||||
&:last-child {
|
||||
border-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&__column {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.bracketMatch {
|
||||
width: 100%;
|
||||
|
||||
&::before, &::after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.bracketCard {
|
||||
width: 100% !important;
|
||||
|
||||
&::before, &::after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.laptopTable {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
BIN
src/public/DoDo-VF.woff2
Normal file
BIN
src/public/bronze-pizza.webp
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
src/public/cardboard.webp
Normal file
|
After Width: | Height: | Size: 5.6 MiB |
|
Before Width: | Height: | Size: 108 B After Width: | Height: | Size: 108 B |
BIN
src/public/gameplay-table.webm
Normal file
BIN
src/public/gameplay.mp4
Normal file
BIN
src/public/games/mwg/game.data
Normal file
297
src/public/games/mwg/game.js
Normal file
111
src/public/games/mwg/index.html
Normal file
@@ -0,0 +1,111 @@
|
||||
<!doctype html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, minimum-scale=1, maximum-scale=1">
|
||||
<title>MWG</title>
|
||||
|
||||
<!-- Load custom style sheet -->
|
||||
<link rel="stylesheet" type="text/css" href="theme/love.css">
|
||||
</head>
|
||||
<body>
|
||||
<center>
|
||||
<div>
|
||||
<h1>MWG</h1>
|
||||
<canvas id="loadingCanvas" oncontextmenu="event.preventDefault()" width="800" height="600"></canvas>
|
||||
<canvas id="canvas" oncontextmenu="event.preventDefault()"></canvas>
|
||||
</div>
|
||||
</center>
|
||||
|
||||
<script type='text/javascript'>
|
||||
function goFullScreen(){
|
||||
var canvas = document.getElementById("canvas");
|
||||
if(canvas.requestFullScreen)
|
||||
canvas.requestFullScreen();
|
||||
else if(canvas.webkitRequestFullScreen)
|
||||
canvas.webkitRequestFullScreen();
|
||||
else if(canvas.mozRequestFullScreen)
|
||||
canvas.mozRequestFullScreen();
|
||||
}
|
||||
function FullScreenHook(){
|
||||
var canvas = document.getElementById("canvas");
|
||||
canvas.width = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
|
||||
canvas.height = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
|
||||
}
|
||||
var loadingContext = document.getElementById('loadingCanvas').getContext('2d');
|
||||
function drawLoadingText(text) {
|
||||
var canvas = loadingContext.canvas;
|
||||
|
||||
loadingContext.fillStyle = "rgb(142, 195, 227)";
|
||||
loadingContext.fillRect(0, 0, canvas.scrollWidth, canvas.scrollHeight);
|
||||
|
||||
loadingContext.font = '2em arial';
|
||||
loadingContext.textAlign = 'center'
|
||||
loadingContext.fillStyle = "rgb( 11, 86, 117 )";
|
||||
loadingContext.fillText(text, canvas.scrollWidth / 2, canvas.scrollHeight / 2);
|
||||
|
||||
loadingContext.fillText("Powered By Emscripten.", canvas.scrollWidth / 2, canvas.scrollHeight / 4);
|
||||
loadingContext.fillText("Powered By LÖVE.", canvas.scrollWidth / 2, canvas.scrollHeight / 4 * 3);
|
||||
}
|
||||
|
||||
window.onload = function () { window.focus(); };
|
||||
window.onclick = function () { window.focus(); };
|
||||
|
||||
window.addEventListener("keydown", function(e) {
|
||||
// space and arrow keys
|
||||
if([32, 37, 38, 39, 40].indexOf(e.keyCode) > -1) {
|
||||
e.preventDefault();
|
||||
}
|
||||
}, false);
|
||||
|
||||
var Module = {
|
||||
arguments: ["./"],
|
||||
INITIAL_MEMORY: 16777216,
|
||||
printErr: console.error.bind(console),
|
||||
canvas: (function() {
|
||||
var canvas = document.getElementById('canvas');
|
||||
|
||||
// As a default initial behavior, pop up an alert when webgl context is lost. To make your
|
||||
// application robust, you may want to override this behavior before shipping!
|
||||
// See http://www.khronos.org/registry/webgl/specs/latest/1.0/#5.15.2
|
||||
canvas.addEventListener("webglcontextlost", function(e) { alert('WebGL context lost. You will need to reload the page.'); e.preventDefault(); }, false);
|
||||
|
||||
return canvas;
|
||||
})(),
|
||||
setStatus: function(text) {
|
||||
if (text) {
|
||||
drawLoadingText(text);
|
||||
} else if (Module.remainingDependencies === 0) {
|
||||
document.getElementById('loadingCanvas').style.display = 'none';
|
||||
document.getElementById('canvas').style.visibility = 'visible';
|
||||
}
|
||||
},
|
||||
totalDependencies: 0,
|
||||
remainingDependencies: 0,
|
||||
monitorRunDependencies: function(left) {
|
||||
this.remainingDependencies = left;
|
||||
this.totalDependencies = Math.max(this.totalDependencies, left);
|
||||
Module.setStatus(left ? 'Preparing... (' + (this.totalDependencies-left) + '/' + this.totalDependencies + ')' : 'All downloads complete.');
|
||||
}
|
||||
};
|
||||
Module.setStatus('Downloading...');
|
||||
window.onerror = function(event) {
|
||||
// TODO: do not warn on ok events like simulating an infinite loop or exitStatus
|
||||
Module.setStatus('Exception thrown, see JavaScript console');
|
||||
Module.setStatus = function(text) {
|
||||
if (text) Module.printErr('[post-exception status] ' + text);
|
||||
};
|
||||
};
|
||||
|
||||
var applicationLoad = function(e) {
|
||||
Love(Module);
|
||||
}
|
||||
</script>
|
||||
<script type="text/javascript" src="game.js"></script>
|
||||
<script async type="text/javascript" src="love.js" onload="applicationLoad(this)"></script>
|
||||
<footer>
|
||||
<p>Built with <a href="https://github.com/Davidobot/love.js">love.js</a> <button onclick="goFullScreen();">Go Fullscreen</button><br>Hint: Reload the page if screen is blank</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
22
src/public/games/mwg/love.js
Normal file
BIN
src/public/games/mwg/love.wasm
Normal file
50
src/public/games/mwg/theme/bg.svg
Normal file
@@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="1600px" height="1200px" viewBox="0 0 1600 1200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 55.2 (78181) - https://sketchapp.com -->
|
||||
<title>Whangaehu</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="Patterns" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Whangaehu" stroke-width="5">
|
||||
<g transform="translate(-146.000000, -400.000000)" id="Shape">
|
||||
<path d="M1536.16343,861.908843 C1536.27139,890.151271 1579.34543,921.910618 1597.74501,938.284472 C1634.12584,970.669782 1671.96406,1000.57595 1709.45143,1030.95983 C1746.9388,1061.34371 1784.52738,1091.64522 1820.27398,1125.00242 C1843.4843,1146.65577 1870.75643,1171.04359 1886.49761,1201.96283 C1920.03113,1267.85359 1814.30272,1258.06881 1786.91588,1259.51017 C1717.24443,1263.19182 1637.33075,1261.51161 1572.02473,1295.82422 C1533.03948,1316.30801 1517.49396,1350.66181 1525.86722,1400.73055 C1528.5661,1417.0138 1536.55477,1435.75149 1529.78734,1451.61469 C1522.5611,1468.55685 1505.93603,1478.33339 1492.13804,1484.88952 C1441.81077,1508.77493 1383.94689,1511.54234 1330.6981,1514.54037 C1273.27954,1517.83491 1215.3212,1516.87125 1158.30747,1517.12658 C1134.1323,1517.23365 1108.88433,1527.83383 1085.86293,1536.44905 C1055.68276,1547.74108 1025.86019,1560.42505 995.929671,1572.68897 C930.083874,1599.60534 862.234163,1627.95484 792.569459,1634.79101 C748.942148,1639.07391 701.259778,1633.28376 667.368659,1596.03077 C650.352253,1577.32603 641.445967,1549.52013 631.608568,1524.81933 C619.699783,1494.97905 608.263302,1464.8505 595.585337,1435.47969 C554.744615,1340.88526 496.435426,1248.44876 401.792636,1243.80346 C387.475105,1243.10337 373.413968,1245.38484 359.163909,1245.81313 C350.088943,1246.07669 342.01256,1243.39988 338.638967,1231.81134 C330.157753,1202.74528 356.815888,1156.8606 367.746331,1133.79884 C391.678603,1083.31828 418.66735,1035.10271 443.949059,985.635221 C460.675336,952.920458 489.627515,908.213576 489.931138,868.464974 C490.201026,833.048689 451.607117,807.450128 430.596377,790.005549 C410.908085,773.672876 375.235708,750.817018 373.076608,717.591601 C372.030795,701.48131 380.734666,688.130194 389.823126,677.768872 C405.753235,659.648912 424.105583,646.866105 438.436608,626.192878 C461.93706,592.275608 481.571374,545.608476 478.379954,499.904996 C476.166877,468.236249 461.363549,447.497132 442.53215,427.672248 C434.6177,419.337067 428.194378,413.439844 427.776053,399.907529 C427.101334,378.418904 433.996959,355.678355 439.67809,335.754635 C460.000617,264.452595 488.865083,195.506149 520.974945,131.130874 C537.019755,98.9597095 554.353278,66.8873811 575.627159,39.4438787 C589.5601,21.4227553 608.351015,-0.0246877056 629.604654,0 C654.211644,0 680.249038,10.8390517 704.167816,18.9436154 C748.84094,34.0902543 792.97429,51.6007243 836.932212,69.5641933 C938.589828,111.124791 1039.29159,156.051309 1139.0375,204.343747 C1209.29596,238.417507 1281.04555,272.540686 1347.10051,317.840585 C1359.98267,326.736403 1372.14196,337.108808 1383.41387,348.817479 C1395.4576,361.114343 1410.40261,366.616221 1425.5568,370.717921 C1519.61258,396.176464 1622.65562,376.631617 1717.10274,364.375935 C1741.0755,361.270833 1765.04825,358.149258 1789.08848,355.974863 C1809.75511,354.105213 1834.49705,348.743352 1854.58342,356.798498 C1894.16242,372.653462 1859.56284,431.090332 1844.93494,454.901606 C1793.43367,538.739364 1726.98737,609.670769 1665.39905,682.084717 C1636.11626,716.570295 1606.61081,750.965272 1578.92035,787.402864 C1564.50162,806.346458 1536.06897,837.150389 1536.16343,861.908843 Z" stroke="#5BE7C3" transform="translate(1115.000000, 818.000000) rotate(-180.000000) translate(-1115.000000, -818.000000) "></path>
|
||||
<path d="M1529.41551,872.669814 C1545.20124,902.554534 1572.89717,924.642882 1595.88708,945.430463 C1628.97095,975.356347 1663.0946,1003.61922 1696.70512,1032.69714 C1728.48589,1060.19438 1760.33418,1088.00445 1789.76532,1119.2311 C1807.71163,1138.27335 1830.22892,1161.04502 1838.72945,1189.2091 C1857.16864,1250.25461 1757.97104,1240.99282 1733.48223,1242.58996 C1672.60115,1246.54166 1603.57739,1247.44726 1547.25379,1279.58774 C1512.08361,1299.65907 1497.63474,1332.9439 1505.136,1379.15408 C1507.72869,1395.14199 1512.40095,1408.79182 1506.48636,1424.6974 C1499.64678,1443.10573 1483.91506,1454.58212 1469.49319,1462.6831 C1424.31683,1488.06454 1370.91676,1493.45696 1321.94588,1497.94378 C1271.35457,1502.57879 1218.64318,1505.84718 1169.67905,1502.4553 C1150.0988,1501.10514 1127.56126,1508.76979 1108.18356,1514.64794 C1078.36757,1523.70392 1048.85541,1534.15122 1019.18795,1543.86581 C958.894285,1563.6243 897.034198,1582.65832 834.30988,1584.82352 C789.025488,1586.38773 741.810078,1577.90805 704.134976,1545.13365 C665.953488,1511.89822 649.013196,1460.37795 627.839519,1411.40158 C591.271714,1326.72821 541.882221,1223.77823 457.282037,1205.88856 C444.453597,1203.17177 432.124792,1204.64542 419.309856,1203.97857 C412.720089,1203.64103 405.218827,1202.57078 401.876681,1194.64269 C393.200605,1174.06092 416.973729,1136.42923 424.974624,1120.6636 C447.080052,1077.09612 471.933466,1035.66091 495.098927,992.933173 C513.49761,959.006194 536.818363,921.308637 543.934771,881.091871 C552.570337,832.288394 496.145458,797.562843 476.301887,763.199531 C441.901413,703.61121 507.076639,669.659534 539.208504,641.248468 C576.107148,608.630489 606.564564,549.124495 573.487445,498.658012 C560.834553,479.360551 545.264878,467.859461 539.613613,442.675616 C530.775493,403.290354 537.459785,358.282154 544.630208,319.34969 C555.433104,260.823388 572.528688,202.931005 595.76842,150.035873 C612.418384,112.165429 640.04004,52.7829255 680.490136,57.236819 C707.720187,60.2088256 735.40261,71.0677639 761.916969,80.6670983 C801.617614,95.0331691 840.818625,111.40802 879.81033,128.416789 C969.818714,167.571535 1058.83458,210.743842 1146.10173,258.230086 C1205.64595,290.642247 1371.74048,423.098243 1384.23808,427.823815 C1421.50132,441.901742 1463.86893,439.423697 1502.28674,437.24203 C1553.39119,434.344118 1604.23907,426.835891 1655.04645,419.879255 C1679.23143,416.586173 1703.53795,412.56038 1727.85122,410.938537 C1745.15611,409.785958 1767.8827,408.798034 1783.04051,421.072997 C1812.62695,445.021937 1779.66461,499.818823 1766.0327,523.002121 C1724.27276,594.075066 1671.44659,655.622771 1621.91531,718.55357 C1597.60879,749.450913 1572.93093,780.29886 1550.86601,813.674248 C1541.96713,827.151186 1519.65914,854.212088 1529.41551,872.669814 Z" stroke="#5ACEF2" transform="translate(1120.500000, 821.000000) rotate(-180.000000) translate(-1120.500000, -821.000000) "></path>
|
||||
<path d="M1536.57663,844.996554 C1579.68735,904.799208 1639.18906,949.276505 1690.54254,999.22185 C1716.31716,1024.29746 1742.2538,1050.05658 1764.48425,1079.92496 C1776.0484,1095.4562 1790.4884,1115.0967 1792.71617,1136.74654 C1798.67039,1194.66338 1709.26255,1186.83188 1682.50231,1189.03063 C1630.76404,1193.29637 1572.31546,1196.53273 1525.37702,1226.08818 C1496.69954,1244.1558 1482.57683,1273.81007 1487.93698,1312.78638 C1490.31327,1330.07991 1494.01272,1344.77117 1487.93698,1361.75176 C1481.78024,1378.9547 1468.95368,1391.09311 1455.96511,1400.1928 C1418.63983,1426.36366 1372.25496,1434.73043 1330.23112,1440.96434 C1280.93285,1448.22525 1231.26404,1451.06023 1181.62536,1449.4464 C1138.15009,1448.05468 1094.8841,1463.70944 1052.43495,1474.02791 C996.200638,1487.68979 938.946949,1499.62233 881.402975,1497.81886 C835.956467,1496.38597 790.152166,1485.12871 751.301208,1455.21091 C711.822424,1424.74137 688.086547,1379.13587 666.686453,1329.92344 C634.336533,1255.52835 594.020647,1155.8353 523.049296,1127.58098 C512.727295,1123.46347 503.107379,1123.01054 492.461339,1122.2941 C487.290212,1121.94823 480.613653,1121.84117 478.048342,1115.2614 C471.878094,1099.41724 494.689109,1068.70064 501.05513,1057.99513 C521.375093,1023.81983 543.403013,991.184479 564.229287,957.462107 C583.671643,925.979658 604.848959,893.171372 616.926173,856.27852 C636.145752,797.521713 574.699806,763.165245 576.421264,707.175401 C577.494644,672.415418 604.7747,647.488038 626.377318,630.243924 C652.975542,609.038769 691.272933,595.096895 704.585546,556.400575 C714.502498,527.578035 698.941863,510.803317 686.95916,488.931126 C666.652699,451.873574 665.268782,401.640004 667.381788,358.743829 C670.230633,300.777583 681.362732,241.954895 700.312279,188.674371 C708.899319,164.521082 719.417094,139.396062 734.903471,120.636705 C749.410979,103.054956 763.142143,98.5504044 782.530493,102.149104 C841.883686,113.18402 901.810698,143.941788 958.726846,171.413786 C1030.23826,205.934955 1100.76406,244.046588 1169.1836,286.926293 C1215.83851,316.168819 1263.54654,347.107757 1304.497,387.508724 C1315.17004,398.041304 1326.09962,409.48797 1333.90356,423.380434 C1339.80378,433.822429 1342.30833,442.444486 1352.25229,448.406634 C1381.72636,466.070734 1422.72408,461.450892 1454.30441,459.614485 C1504.80053,456.691056 1555.05362,448.90897 1605.2392,441.900975 C1634.52425,437.783469 1689.69193,424.829796 1713.07677,455.900495 C1733.26171,482.730162 1708.90476,528.475651 1696.463,552.110134 C1664.99069,611.879848 1624.50603,664.336871 1586.94448,718.350312 C1569.72989,743.104757 1551.84023,768.048607 1537.623,795.570015 C1533.99106,802.586245 1528.17186,811.883573 1527.17274,820.40681 C1526.0521,830.173534 1531.28398,837.626219 1536.57663,844.996554 Z" stroke="#5BE7C3" transform="translate(1135.000000, 799.500000) rotate(-180.000000) translate(-1135.000000, -799.500000) "></path>
|
||||
<path d="M1528.87044,826.074857 C1568.70623,878.95138 1616.69822,922.391553 1659.4643,971.872638 C1678.63949,994.058361 1698.00373,1017.33194 1712.61468,1044.39655 C1720.47381,1058.95078 1728.81907,1077.27131 1726.65173,1095.36108 C1720.4333,1147.2816 1646.89914,1142.59227 1617.1911,1145.63333 C1573.04765,1150.10014 1522.33467,1154.59992 1483.30236,1182.5958 C1457.73319,1200.93281 1448.14559,1228.0139 1452.91913,1262.94075 C1458.04377,1300.40595 1446.58592,1327.60241 1420.51036,1348.50248 C1387.81801,1374.68526 1346.55084,1385.35782 1308.59206,1392.93986 C1262.85922,1402.03112 1216.54703,1406.06103 1170.2201,1404.98048 C1125.16516,1403.92558 1081.51459,1413.13942 1036.75672,1419.13088 C977.414908,1427.0673 916.169078,1430.98195 857.495695,1414.71352 C806.411366,1400.54663 760.269375,1369.32838 725.679761,1321.05054 C689.55073,1270.6629 671.665139,1207.17976 642.328447,1151.43524 C624.030994,1116.66497 598.515836,1070.66998 564.32458,1057.15416 C552.920743,1052.64614 532.138617,1058.72826 541.246833,1036.55078 C546.452492,1023.86734 556.19538,1012.74151 563.892463,1002.37389 C576.32933,985.619215 589.178058,969.32606 601.824232,952.802146 C628.777528,917.578602 657.641592,881.605095 677.843061,839.895606 C703.297452,787.381703 665.460209,746.966107 670.071707,693.718723 C672.549628,665.063538 688.875548,642.193782 706.146723,624.227632 C717.320998,612.590841 729.548558,602.511666 742.032688,593.108282 C755.070467,583.284589 770.498394,575.80144 781.868472,563.101515 C798.072859,545.028227 791.037454,523.633674 787.999131,500.269437 C782.651473,459.209225 781.476775,417.500264 784.501685,376.088726 C788.201686,325.330231 796.877785,273.121258 815.154983,226.994403 C822.264657,209.036495 831.271596,189.998968 844.646967,177.958351 C858.022337,165.917734 871.856833,166.741869 887.183482,170.368065 C932.643538,181.081824 978.009069,206.011918 1021.13299,229.639878 C1075.1071,259.218095 1128.02118,292.274163 1178.55186,329.879458 C1213.4318,355.839721 1248.42652,383.885046 1277.60792,419.083866 C1286.09497,429.327868 1294.17016,440.297109 1300.69917,452.54376 C1305.18239,460.941699 1307.58604,471.779079 1314.0813,478.091955 C1334.4043,497.797031 1375.20559,491.912705 1399.03955,490.767157 C1446.60617,488.484302 1493.42335,477.63044 1540.92921,474.993207 C1566.85623,473.55097 1607.46172,469.924774 1626.50187,496.865758 C1644.40772,522.191437 1628.18983,562.079587 1617.48818,586.482234 C1596.45624,634.463393 1568.19984,677.211292 1542.87373,721.813496 C1532.46242,740.16699 1521.05183,759.369343 1514.30675,780.327105 C1508.31113,799.002011 1518.66168,812.517831 1528.87044,826.074857 Z" stroke="#5ACEF2" transform="translate(1133.000000, 797.000000) rotate(-180.000000) translate(-1133.000000, -797.000000) "></path>
|
||||
<path d="M1527.07255,781.209958 C1558.78057,827.739777 1597.00561,869.043839 1628.94301,916.330776 C1647.63725,944.023178 1679.83102,990.577687 1665.37351,1029.61862 C1649.51275,1072.51922 1594.2261,1073.68781 1562.26846,1077.14422 C1524.23232,1081.25899 1479.56448,1086.87976 1447.01316,1113.66692 C1436.71817,1122.13511 1427.94787,1133.34375 1424.23061,1148.10754 C1420.25024,1163.90826 1424.60166,1177.73389 1425.16836,1193.55106 C1426.35572,1226.73257 1410.12391,1253.37159 1388.64341,1271.66586 C1358.28467,1297.5313 1320.32274,1309.7604 1284.46569,1318.2862 C1243.84169,1327.90239 1202.54341,1332.64328 1161.16195,1332.44101 C1121.61463,1332.27642 1082.48557,1333.34626 1042.89777,1334.58069 C991.125987,1336.2266 938.625594,1333.56846 888.405481,1316.78843 C838.934217,1300.24705 793.956048,1269.24637 758.625214,1223.64649 C724.157917,1179.14937 700.903117,1124.76034 680.535771,1069.35907 C668.979208,1037.914 649.455161,990.923327 621.88942,975.040315 C609.631232,967.97114 597.602422,968.456683 610.636444,950.07189 C627.050406,926.922194 649.171813,908.348122 668.183135,888.547849 C695.607202,859.974886 723.719402,830.842314 746.738078,796.870772 C761.438457,775.177705 767.9892,754.126541 766.977242,726.039121 C766.194661,704.642317 762.646061,683.46771 764.4406,661.988611 C768.6436,611.574448 801.18143,577.00215 829.948029,544.80819 C848.453371,524.102667 865.353073,508.310179 874.878973,478.856656 C886.145441,444.045701 890.874659,406.173358 898.403629,370.029218 C906.6747,330.338146 916.227586,289.050543 934.28092,254.091457 C950.350817,222.967337 969.895103,209.010037 999.147442,217.395938 C1044.77326,230.464448 1089.74469,262.658408 1130.25,292.441114 C1171.47718,322.74228 1211.99599,356.812576 1246.1597,398.462279 C1264.60432,420.953612 1277.19308,447.362206 1293.57331,471.524135 C1314.17678,501.85822 1360.78758,490.369782 1388.48825,487.802166 C1434.47163,483.539264 1579.16141,451.641567 1565.81031,554.955213 C1560.23779,598.078003 1538.29179,637.876058 1522.24214,675.929452 C1515.5902,691.721939 1505.9631,710.67457 1504.45866,728.771328 C1502.81928,748.481077 1517.5399,767.20328 1527.07255,781.209958 Z" stroke="#FF8062" transform="translate(1137.000000, 775.000000) rotate(-180.000000) translate(-1137.000000, -775.000000) "></path>
|
||||
<path d="M1530.33132,733.2589 C1554.56193,775.424345 1583.56043,815.259616 1604.35168,860.800931 C1617.83936,890.294511 1631.08426,929.701622 1613.68515,960.907839 C1594.0471,996.123931 1550.74492,1004.33306 1518.92749,1008.8205 C1486.14569,1013.43968 1447.0112,1017.32604 1420.21793,1044.02836 C1411.69372,1052.5339 1404.66664,1064.00363 1403.35834,1077.73766 C1402.09724,1090.91178 1405.65799,1104.08591 1404.47782,1117.49882 C1401.83423,1147.61817 1386.86966,1172.43494 1367.57554,1190.43409 C1310.50244,1243.68227 1225.55705,1255.52252 1156.69573,1256.91404 C1122.22797,1257.60568 1086.75538,1253.97456 1052.06508,1251.37267 C1007.04996,1247.9968 961.967407,1240.75103 919.036136,1223.28707 C827.75829,1186.16897 766.578193,1103.84713 723.849236,1001.41005 C710.402024,969.166371 700.110927,934.279632 679.036434,908.367768 C668.172111,894.987794 670.545942,885.378914 681.653043,873.176378 C699.018425,854.106827 720.20082,839.532947 739.474709,823.616953 C766.88841,800.982154 794.888824,778.009768 819.132922,750.895765 C835.844152,732.20497 847.706563,714.197583 851.307772,686.169625 C853.877174,666.186119 853.276973,645.823857 854.821311,625.716843 C857.761625,587.520105 867.830175,549.61155 885.654138,517.927772 C899.816198,492.814589 916.675792,469.990412 934.101869,448.228398 C956.754421,419.895789 975.913664,391.110318 993.117195,357.483355 C1015.92485,312.971269 1047.97157,230.863514 1101.69298,252.592592 C1160.94434,276.569505 1216.47985,337.491615 1254.49486,396.519945 C1267.26095,416.338774 1277.74087,440.645041 1294.95789,455.26009 C1320.73284,477.104441 1346.88544,476.338695 1377.54293,476.248123 C1423.44149,476.124615 1523.31773,463.963248 1524.39674,547.882446 C1524.8216,581.130653 1513.03337,612.567416 1507.38878,644.547613 C1501.0226,680.364775 1513.78194,704.522833 1530.33132,733.2589 Z" stroke="#F1B170" transform="translate(1147.000000, 753.000000) rotate(-180.000000) translate(-1147.000000, -753.000000) "></path>
|
||||
<path d="M1532.28383,702.499329 C1556.25118,757.45462 1609.99554,847.757708 1569.11879,908.867597 C1547.52658,941.162779 1509.33536,953.299185 1477.29792,960.53166 C1451.51548,966.381819 1420.4227,968.578714 1400.94248,993.378122 C1386.62414,1011.61153 1392.98035,1038.14706 1387.49458,1060.97173 C1380.68629,1089.26807 1365.05892,1112.42186 1345.85535,1129.82424 C1292.19197,1178.46037 1217.57739,1193.38609 1153.02344,1196.56213 C1085.97963,1199.85336 1012.10728,1184.45863 949.01755,1154.8458 C870.354435,1117.90999 811.421201,1047.97138 770.207072,959.404414 C762.602566,943.055235 755.69306,926.278197 748.392194,909.731544 C743.486714,898.631876 736.212839,887.894242 732.346484,876.218608 C725.909307,856.75099 733.49357,840.8379 745.652683,828.150213 C763.142372,809.883894 784.626619,796.88354 804.565674,783.175573 C831.832585,764.415569 859.706777,745.992916 885.070875,723.982824 C902.115224,709.172295 919.955787,693.218064 926.055586,667.521796 C930.218833,649.996003 931.082522,631.433473 930.934075,613.282347 C930.610192,574.363567 932.283588,542.891193 947.168717,507.247186 C971.662379,448.729139 1009.32729,396.11062 1049.11768,352.32905 C1080.34541,317.968623 1129.75783,264.593121 1175.25666,287.565897 C1216.07943,308.136077 1239.95907,357.372858 1266.85486,397.18027 C1279.93164,416.532694 1294.62109,434.206593 1311.88136,447.972157 C1333.64226,465.32516 1354.12787,472.607004 1379.91032,475.445688 C1423.30391,480.226198 1488.73505,481.468637 1502.14921,544.989351 C1507.10192,568.431127 1504.27469,592.712167 1506.8725,616.458382 C1510.26653,647.856704 1520.1922,674.778955 1532.28383,702.499329 Z" stroke="#5BE7C3" transform="translate(1157.000000, 739.500000) rotate(-180.000000) translate(-1157.000000, -739.500000) "></path>
|
||||
<path d="M1527.36202,689.464429 C1544.42899,749.596148 1566.85002,825.378589 1525.62903,878.821684 C1505.6625,904.711272 1477.5772,919.184071 1450.39549,929.999543 C1430.92796,937.750769 1400.01727,940.032479 1388.08186,963.862762 C1379.31574,981.399807 1378.10197,1005.59253 1370.172,1024.38163 C1359.27504,1050.21356 1342.76776,1071.4903 1323.40138,1088.14597 C1272.94899,1131.54789 1207.2368,1148.31887 1147.31026,1153.12117 C1017.09966,1163.54126 884.609867,1080.55125 814.932698,944.011058 C794.156994,903.310945 767.339409,859.991395 800.913649,818.409899 C837.569518,773.047519 892.789331,751.795486 936.539014,719.563237 C953.255331,707.256828 974.557002,692.462777 983.882806,670.181092 C989.493122,656.78737 989.877483,639.983437 990.133724,625.23881 C990.80804,587.685316 993.363702,553.912706 1005.73742,518.871565 C1024.84756,464.720068 1055.31994,414.761318 1089.85171,373.8388 C1119.96671,338.155155 1162.91395,296.219459 1206.65015,321.944302 C1240.18393,341.713635 1261.45188,383.674043 1287.50749,414.604811 C1316.50312,449.052872 1352.36329,472.265364 1391.7434,483.608018 C1430.05135,494.612946 1472.06804,502.034683 1492.25708,548.789154 C1499.18232,564.827025 1506.41774,585.593061 1509.01386,603.344275 C1513.20487,632.612129 1519.34123,661.41415 1527.36202,689.464429 L1527.36202,689.464429 Z" stroke="#FF8062" transform="translate(1167.000000, 734.000000) rotate(-180.000000) translate(-1167.000000, -734.000000) "></path>
|
||||
<path d="M1512.57366,658.040683 C1520.46932,718.760915 1521.34661,782.075325 1484.66219,829.93173 C1467.54144,852.25813 1445.89925,868.119674 1424.01411,882.490596 C1407.91238,893.064959 1391.28426,901.983989 1379.25857,919.319685 C1368.11693,935.370646 1359.64766,954.007549 1348.89067,970.478519 C1334.70109,992.306111 1317.72275,1011.20155 1298.60817,1026.43864 C1250.69437,1064.5607 1192.40824,1082.39053 1136.64602,1088.57538 C1109.65233,1091.58133 1080.37093,1093.14607 1053.55944,1084.95176 C1027.66575,1077.0457 1002.06223,1064.54423 978.253794,1049.96742 C927.640623,1019.01023 883.775875,973.673887 851.977306,916.354911 C830.173152,877.038705 818.383658,838.809583 846.619059,798.925128 C878.451369,753.967614 928.362704,729.162333 969.501089,699.984009 C997.716245,679.97178 1029.33935,660.354855 1034.60987,617.826809 C1038.80739,583.987201 1042.21534,551.868809 1053.07356,519.882185 C1069.23378,472.701336 1092.99474,429.962199 1122.94673,394.200446 C1150.33857,361.620866 1184.99173,333.974343 1224.17307,351.375923 C1255.21581,365.186832 1279.30093,396.127549 1306.42285,418.248062 C1336.64903,442.954518 1369.85802,456.57601 1404.82835,467.529205 C1436.25575,477.411788 1465.84759,492.598022 1486.16034,524.839947 C1490.31737,531.428335 1494.6836,538.601442 1497.8891,545.972202 C1501.97864,555.377126 1501.66146,564.699695 1502.46453,575.241116 C1504.55654,603.060585 1509.00375,630.55887 1512.57366,658.040683 Z" stroke="#F1B170" transform="translate(1173.500000, 718.500000) rotate(-180.000000) translate(-1173.500000, -718.500000) "></path>
|
||||
<path d="M1485.9342,616.003735 C1485.25967,673.678934 1473.89387,728.186616 1442.7644,773.134007 C1429.45596,792.361823 1413.56408,808.199406 1398.92008,825.818718 C1387.12933,840.02305 1375.98613,853.221036 1362.42811,864.926 C1330.26662,892.641771 1304.12866,928.507298 1269.95032,953.187532 C1224.32525,986.182497 1172.06281,1004.42046 1120.2051,1011.71235 C1094.88332,1015.27581 1068.72512,1016.52137 1043.10654,1012.49598 C1021.10344,1009.03976 1000.03118,996.90586 980.483362,984.491505 C942.17017,960.174215 904.969949,925.61199 880.093355,881.885412 C825.247481,785.482373 933.38107,715.392818 988.881236,674.347082 C1014.40538,655.465713 1053.40659,633.5983 1063.86177,596.198507 C1071.33554,569.480834 1075.88861,542.30948 1085.51412,516.416682 C1111.36878,446.879793 1163.85381,365.093523 1233.79562,375.981862 C1263.72443,380.634152 1291.00234,399.532018 1318.94129,412.218582 C1347.70991,425.284588 1377.40264,432.568227 1407.30446,440.561257 C1435.25016,448.026368 1457.52308,458.650747 1475.57345,487.13365 C1484.20066,500.735825 1483.43844,517.01884 1484.2074,533.706043 C1485.46203,561.116611 1486.23773,588.683904 1485.9342,616.003735 Z" stroke="#5BE7C3" transform="translate(1175.500000, 695.000000) rotate(-180.000000) translate(-1175.500000, -695.000000) "></path>
|
||||
<path d="M1446.03446,582.391195 C1434.79785,669.446683 1393.06571,764.486648 1331.70326,815.044024 C1259.52287,874.516027 1181.32576,924.595981 1095.08609,938.992733 C1055.10292,945.668414 1011.30444,948.95275 973.576696,927.123026 C944.863905,910.520254 911.511959,885.702526 895.71047,850.801309 C857.050845,765.433261 943.040656,697.474665 992.032025,657.980316 C1018.40836,636.718561 1051.98314,616.000079 1071.86331,584.951166 C1083.39704,566.949053 1089.28546,543.135557 1098.59754,523.363688 C1126.81737,463.447189 1173.2697,415.120527 1231.13421,406.477537 C1257.8887,402.485299 1284.83902,407.42415 1311.39092,411.350537 C1338.57083,415.36747 1366.08838,417.548796 1393.09947,423.154392 C1414.66108,427.632284 1440.07176,435.213421 1448.01302,463.373106 C1458.02738,498.858754 1450.61959,546.839696 1446.03446,582.391195 Z" stroke="#5ACEF2" transform="translate(1169.500000, 674.500000) rotate(-180.000000) translate(-1169.500000, -674.500000) "></path>
|
||||
<path d="M1412.67569,577.375891 C1396.28793,659.222787 1361.58563,739.059553 1303.24818,787.920543 C1272.31154,813.829802 1236.39909,831.715017 1201.91989,849.386038 C1162.8367,869.413194 1122.00251,884.95875 1080.2962,892.669741 C1028.36782,902.275526 944.265616,910.933915 917.135218,838.725757 C890.207638,767.053086 958.253354,703.618652 998.492609,667.469263 C1024.29116,644.311576 1051.90157,623.056921 1076.55081,597.740816 C1089.91658,584.015911 1100.21301,568.157303 1111.52354,552.059785 C1142.78468,507.457964 1187.35074,472.148875 1232.77539,453.299787 C1276.8006,435.027374 1331.26422,426.937425 1377.73677,432.976053 C1397.78879,435.571098 1412.12132,444.328345 1418.1856,469.224301 C1426.58906,503.833139 1419.44984,543.566162 1412.67569,577.375891 Z" stroke="#F1B170" transform="translate(1166.500000, 665.000000) rotate(-180.000000) translate(-1166.500000, -665.000000) "></path>
|
||||
<path d="M1376.49035,582.420099 C1360.21043,654.483212 1325.09569,720.303152 1273.87629,763.554146 C1216.46176,812.039232 1142.53136,838.98086 1074.58039,852.681384 C1038.46121,859.958249 960.189502,879.688643 941.779371,823.221156 C923.36924,766.753669 976.590764,711.106573 1007.22263,680.473187 C1044.40018,643.350511 1084.48316,607.507645 1124.51896,574.199785 C1159.30339,545.239996 1196.42026,515.632098 1234.09665,493.26825 C1255.34603,480.581379 1277.48158,470.222686 1300.241,462.314911 C1317.09392,456.506546 1338.52409,447.843221 1356.1927,452.166679 C1400.75856,463.086078 1384.2764,547.963693 1376.49035,582.420099 Z" stroke="#FF8062" transform="translate(1162.000000, 656.500000) rotate(-180.000000) translate(-1162.000000, -656.500000) "></path>
|
||||
<path d="M1341.93332,586.999565 C1306.2133,723.279394 1193.04149,790.304285 1084.0752,813.666306 C1058.75442,819.089192 987.772674,838.641204 973.619458,797.010888 C959.904318,756.647833 1003.52318,708.779964 1023.94425,686.100947 C1087.22261,615.825616 1165.40228,563.719833 1239.48425,512.099558 C1262.60791,495.987252 1304.31272,461.022395 1332.99657,477.151159 C1364.14039,494.695305 1349.33343,558.741311 1341.93332,586.999565 Z" stroke="#5ACEF2" transform="translate(1161.500000, 648.000000) rotate(-180.000000) translate(-1161.500000, -648.000000) "></path>
|
||||
<path d="M1303.34474,588.229739 C1272.28074,688.589725 1181.92872,746.149977 1098.85923,765.125431 C1078.51278,769.768449 1026.83862,784.224371 1011.42833,756.218081 C997.167558,730.311029 1031.20002,692.771734 1043.93261,677.854804 C1072.27834,644.637468 1105.87128,617.273298 1139.0585,590.971095 C1169.74384,566.636412 1200.76051,541.692539 1233.04841,521.111786 C1250.0545,510.278077 1281.95021,487.161775 1301.27561,503.889811 C1322.08187,521.885622 1310.24184,565.944899 1303.34474,588.229739 Z" stroke="#5ACEF2" transform="translate(1160.500000, 635.500000) rotate(-180.000000) translate(-1160.500000, -635.500000) "></path>
|
||||
<path d="M1257.02553,587.551323 C1233.34927,653.090471 1169.93747,695.649321 1114.00061,709.791676 C1098.94927,713.588779 1066.41808,723.439831 1053.72084,705.936917 C1042.03153,689.817762 1060.87107,666.186769 1069.23217,655.273187 C1106.28891,606.89925 1160.55491,563.689703 1210.27506,537.151166 C1222.77613,530.479467 1245.24828,517.383169 1258.10788,530.850117 C1271.29894,544.679478 1262.46431,572.502935 1257.02553,587.551323 Z" stroke="#5BE7C3" transform="translate(1157.500000, 620.500000) rotate(-180.000000) translate(-1157.500000, -620.500000) "></path>
|
||||
<path d="M1207.25345,590.081724 C1193.91179,622.62583 1159.04249,647.179418 1130.15843,654.995325 C1109.83057,660.491404 1085.39601,655.743657 1103.11175,627.415152 C1120.71094,599.302831 1153.36578,573.626746 1181.0432,562.243792 C1202.15949,553.563147 1218.70972,562.127385 1207.25345,590.081724 Z" stroke="#F1B170" transform="translate(1154.000000, 608.000000) rotate(-180.000000) translate(-1154.000000, -608.000000) "></path>
|
||||
<path d="M645.14602,750.676909 C646.001695,814.972512 673.996428,881.793866 660.17087,947.307096 C648.818012,1001.11301 591.662942,1005.60507 557.37529,1029.98227 C530.128431,1049.34911 514.665636,1083.65656 499.930502,1116.5736 C486.691116,1146.12572 474.79925,1176.56638 460.852416,1205.63309 C451.82403,1224.42402 436.32081,1261.32304 416.741341,1261.98944 C397.997334,1262.63116 380.809714,1233.87708 369.92175,1216.87968 C355.725625,1194.72382 343.139786,1171.10351 329.354654,1148.59388 C306.123405,1110.62533 278.249949,1082.5212 246.333933,1055.92265 C210.013771,1025.65751 173.093962,996.426249 135.574507,968.228877 C107.950343,947.405822 80.137525,926.739084 53.5846389,903.859229 C36.9292888,889.502757 0.168936947,862.56689 0,836.099973 C-0.0803542957,823.471214 9.72285538,809.484966 16.3324421,799.390187 C27.51686,782.302283 40.2644014,766.678822 53.0523684,751.392676 C76.8697884,722.918321 101.697849,695.735637 126.256405,668.223866 C158.131996,632.517798 188.579216,597.395863 216.600899,556.860426 C245.572584,514.901683 273.250649,471.56077 301.494673,428.812216 C320.622723,399.852456 339.73056,367.330317 367.321036,349.559555 C401.878193,327.346103 430.243494,350.768954 465.191431,351.040452 C495.254607,351.279041 493.037936,436.315426 496.858156,459.960412 C500.691851,483.89335 509.140803,506.172619 512.415277,530.163148 C516.498263,560.110172 516.552164,590.748281 517.556067,621.016167 C518.775573,658.038587 519.26068,693.283931 551.675279,707.401813 C570.122831,715.423338 590.079606,717.109915 609.173967,721.914602 C621.544203,725.032713 644.876516,730.363941 645.14602,750.676909 Z" stroke="#FF8062" transform="translate(332.000000, 801.000000) rotate(-180.000000) translate(-332.000000, -801.000000) "></path>
|
||||
<path d="M619.366456,721.114394 C622.517684,775.009959 641.134896,843.992327 623.529856,899.626459 C608.488983,947.169252 561.449987,953.332512 529.775759,978.306898 C503.627989,998.906029 491.988013,1032.61445 478.917502,1065.72961 C468.431403,1092.29425 458.26245,1119.11431 446.35931,1144.83027 C437.587155,1163.78147 424.192749,1195.77604 405.953414,1199.69811 C389.556231,1203.22468 371.971434,1174.97916 362.767418,1160.6092 C349.339273,1139.63105 337.854497,1116.84841 325.991844,1094.54367 C305.147854,1055.36413 283.804525,1020.13137 253.297668,991.350268 C222.655855,962.445568 189.132726,940.83296 155.251964,918.338709 C128.746559,900.738812 102.376111,882.628057 77.1932773,862.309074 C58.4343607,847.181073 31.4633571,827.81789 22.8801406,800.841269 C16.0850941,779.500569 50.5461687,744.086544 60.7083732,731.586992 C81.6265897,705.887516 103.793151,681.761815 126.0002,657.784427 C153.07242,628.56662 181.008361,603.015459 204.915858,569.686065 C247.676741,510.096901 283.4199,435.890593 338.441557,391.602462 C371.627295,364.88951 408.558069,358.058838 445.468599,362.055069 C460.084359,363.637082 463.593221,388.825699 465.435374,403.516999 C468.498881,427.922849 468.883506,452.748921 471.238492,477.253647 C473.445027,500.192839 478.343938,521.986719 482.291408,544.480969 C486.286112,567.271847 487.406249,590.623022 490.348295,613.570453 C492.170204,627.816812 493.97187,644.394992 501.941036,655.848109 C510.186862,667.704968 523.79045,672.673478 535.680094,676.447239 C558.008603,683.467423 617.139678,683.080159 619.366456,721.114394 Z" stroke="#5BE7C3" transform="translate(326.500000, 780.500000) rotate(-180.000000) translate(-326.500000, -780.500000) "></path>
|
||||
<path d="M575.344372,682.675982 C580.644047,732.14807 588.063591,793.766 566.473325,839.345823 C548.825746,876.614467 511.18793,884.654093 484.30474,908.937548 C461.94484,929.131245 453.499116,961.248604 442.40018,991.094788 C433.292841,1015.57574 424.138244,1040.16366 413.100069,1063.45965 C404.728608,1081.12708 393.940226,1105.08138 377.318827,1111.24482 C363.107598,1116.5113 347.053297,1092.91908 339.174673,1081.17645 C325.760083,1061.16379 314.823175,1038.74006 303.96053,1016.61258 C286.19143,980.40546 269.840077,941.729676 244.550166,912.278478 C219.975879,883.699542 190.783786,866.830317 161.044848,847.862725 C138.266375,833.330505 115.629676,818.23872 94.1676816,800.908677 C77.6880568,787.61079 57.2657441,771.852466 48.6782461,749.72498 C41.2519506,730.642183 60.3172765,708.05388 69.8431883,694.591415 C85.5734324,672.373411 103.031978,651.99045 120.247481,631.5252 C138.826722,609.447088 159.404312,589.080584 177.382698,566.459365 C215.189294,518.855235 245.394063,466.149193 291.990692,429.678751 C322.168456,406.053607 362.77679,384.592662 398.450013,388.452011 C424.104489,391.233376 422.416694,460.53709 424.880874,482.681033 C428.931581,518.88815 436.756196,556.93031 449.185114,590.282002 C459.858726,618.860938 485.222901,627.67408 508.554971,634.084385 C523.171271,638.108312 538.489693,640.280739 552.626659,646.50178 C568.991514,653.710288 573.123235,661.939179 575.344372,682.675982 Z" stroke="#5ACEF2" transform="translate(314.000000, 750.000000) rotate(-180.000000) translate(-314.000000, -750.000000) "></path>
|
||||
<path d="M518.600887,646.865271 C521.756362,688.691435 521.046887,738.151616 500.607249,774.332733 C482.694694,806.024223 450.802102,814.367998 428.119172,839.333299 C410.416081,858.81036 403.463226,890.567873 393.942747,916.325461 C382.307357,947.818879 366.002945,1005.98597 336.65095,1017.83726 C309.346297,1028.85501 280.791616,958.473492 270.906264,937.486133 C255.257273,904.26784 242.169148,867.839133 223.189002,837.162762 C206.844048,810.753187 184.944919,796.153644 161.701166,780.464706 C132.065381,760.426442 87.0711508,736.666078 71.2262087,697.612919 C59.4151388,668.512869 97.8213867,625.250685 110.936539,605.088626 C124.653056,584.02699 134.984364,559.061689 149.14008,538.742823 C171.478408,506.679949 207.675148,480.86459 237.560938,461.164698 C266.61563,442.00125 304.346187,420.791061 337.30637,422.053768 C358.969007,422.879068 363.090719,463.714872 367.712442,483.662354 C374.334209,512.019635 383.138456,537.430597 402.051033,556.717839 C421.301455,576.351707 443.991142,585.603312 467.843017,593.699497 C480.086529,597.825993 494.053051,601.04466 505.005994,609.380182 C517.107611,618.45022 517.384644,630.788443 518.600887,646.865271 Z" stroke="#F1B170" transform="translate(294.500000, 720.500000) rotate(-180.000000) translate(-294.500000, -720.500000) "></path>
|
||||
<path d="M460.981867,627.973643 C460.806757,664.108362 454.038084,702.641111 433.96779,730.514119 C417.251525,753.730675 391.086058,761.491427 375.083703,785.225367 C362.408437,804.01542 355.956308,830.393765 347.470211,852.214207 C337.091579,878.953898 322.416018,925.666234 296.607506,934.946287 C271.418614,943.979966 249.13924,892.529055 239.481253,872.170426 C225.337757,842.318222 213.888261,810.675706 199.6168,780.905626 C188.436703,757.549458 174.764658,742.496063 156.559958,727.442668 C135.189809,709.761293 105.373973,690.174633 93.9581516,660.921936 C85.7279841,639.742064 105.650108,605.898616 112.883496,587.239961 C117.732695,574.707784 122.171058,561.978508 124.609127,548.395139 C126.508397,537.817522 126.696977,528.028298 132.19947,518.945344 C146.053361,496.098347 176.428202,493.117233 197.037296,485.586429 C224.408328,475.591894 253.449639,464.234095 282.093586,462.066012 C299.69887,460.71096 308.683358,480.511144 318.731975,494.439435 C330.605776,510.905369 347.416331,522.747702 362.098627,535.173117 C381.475216,551.597989 402.562495,561.814259 424.377153,572.276903 C434.216985,576.999053 445.774242,581.630867 453.398259,591.017682 C461.359027,600.749418 461.042482,614.932295 460.981867,627.973643 Z" stroke="#FF8062" transform="translate(276.500000, 699.000000) rotate(-180.000000) translate(-276.500000, -699.000000) "></path>
|
||||
<path d="M414.275567,639.425242 C410.796763,669.773512 399.95584,698.779376 381.644929,720.233174 C367.608361,736.704419 348.967097,745.977731 337.701437,765.767932 C327.204349,784.215727 319.889423,805.191859 311.219382,824.916176 C302.0437,845.768773 288.411644,880.621928 267.248922,886.296273 C244.441185,892.407105 226.871878,857.249231 217.143364,837.763747 C204.852939,813.139235 195.515453,786.645236 184.526209,761.172455 C176.247424,742.18646 165.687091,724.822511 153.196751,709.658634 C140.097303,693.67329 122.332482,678.363267 115.705226,656.38239 C109.846544,636.913377 120.80882,613.359496 122.743736,593.618708 C124.813489,572.527278 121.186365,550.373452 132.661023,532.263318 C156.324978,494.914768 215.714088,501.840927 249.666132,501.042072 C283.166471,500.218509 310.100232,523.072363 337.20928,544.814407 C355.11568,559.169098 373.763686,571.324877 392.121791,584.699528 C410.837215,598.345955 417.336375,612.717117 414.275567,639.425242 Z" stroke="#5ACEF2" transform="translate(264.500000, 694.000000) rotate(-180.000000) translate(-264.500000, -694.000000) "></path>
|
||||
<path d="M385.179198,672.795423 C374.891626,716.76132 342.760673,740.129021 319.790718,773.354842 C300.996505,800.55534 286.904218,856.8851 255.252227,864.336388 C219.316559,872.79327 197.803729,798.156751 185.310232,769.357193 C171.447307,737.417213 146.757135,711.436616 136.489801,677.625572 C131.093043,659.879307 135.727509,643.319974 138.601283,625.581952 C141.751641,606.104746 144.119469,586.190684 154.993939,570.513306 C176.398834,539.661347 218.203477,539.875653 248.310646,539.026668 C279.476929,538.144713 307.047621,559.286918 331.879458,580.387911 C358.215641,602.733533 395.71637,627.708536 385.179198,672.795423 Z" stroke="#5ACEF2" transform="translate(260.500000, 702.000000) rotate(-180.000000) translate(-260.500000, -702.000000) "></path>
|
||||
<path d="M358.948584,700.71743 C347.356407,732.041788 322.996527,757.50768 303.23003,781.547875 C286.731901,801.589564 268.983503,841.93514 243.828615,844.811114 C214.263806,848.203289 196.345534,805.121031 184.712587,778.704675 C173.263104,752.747164 156.764976,725.339375 150.425291,696.850023 C143.813809,667.172591 161.419513,627.203923 178.209824,606.203576 C196.936694,582.786099 227.575104,574.133595 253.864749,575.067672 C281.391074,576.018137 306.647887,595.371559 327.494781,615.446023 C349.782202,636.905215 372.429756,664.353972 358.948584,700.71743 Z" stroke="#FF8062" transform="translate(256.000000, 710.000000) rotate(-180.000000) translate(-256.000000, -710.000000) "></path>
|
||||
<path d="M332.960285,717.614721 C321.887343,743.668217 302.693337,765.7078 284.995674,785.366944 C271.338138,800.544296 251.185112,826.35154 231.480988,826.983587 C209.804412,827.681302 191.433395,806.019306 182.815816,783.815555 C174.320666,761.915514 165.369811,734.45838 164.097919,710.432361 C161.336485,658.11195 217.558192,599.503897 259.775484,604.272983 C299.802673,608.795818 355.038153,665.704731 332.960285,717.614721 Z" stroke="#5ACEF2" transform="translate(251.000000, 715.500000) rotate(-180.000000) translate(-251.000000, -715.500000) "></path>
|
||||
<path d="M310.174104,725.487438 C294.898362,759.433059 257.793335,807.827118 223.441611,808.976425 C184.011571,810.28992 174.113271,756.436649 179.252773,717.409447 C184.473854,677.57773 229.933971,619.923535 266.182416,627.714199 C301.560679,635.316047 328.277931,685.228834 310.174104,725.487438 Z" stroke="#5BE7C3" transform="translate(247.000000, 718.000000) rotate(-180.000000) translate(-247.000000, -718.000000) "></path>
|
||||
<path d="M292.562068,719.97627 C279.628614,748.398378 252.029605,783.899353 223.244413,784.973898 C188.946158,786.245305 189.593168,740.778136 197.370764,712.479068 C205.458385,683.097253 241.077618,632.913572 271.109652,640.837311 C300.312705,648.57239 304.956348,692.735341 292.562068,719.97627 Z" stroke="#FF8062" transform="translate(246.000000, 712.500000) rotate(-180.000000) translate(-246.000000, -712.500000) "></path>
|
||||
<path d="M275.964355,712.247268 C267.427375,732.52775 246.061269,758.160025 225.749611,758.980192 C200.92275,759.966048 205.748881,723.903574 212.163444,706.497818 C219.78792,685.786542 245.344784,649.798628 266.792002,655.630924 C287.908015,661.372089 283.007532,695.53741 275.964355,712.247268 Z" stroke="#5ACEF2" transform="translate(244.500000, 707.000000) rotate(-180.000000) translate(-244.500000, -707.000000) "></path>
|
||||
<path d="M397.06899,1559.49303 C452.02074,1518.80361 514.142455,1485.21673 572.72303,1451.07844 C658.330935,1401.19604 745.200161,1352.65514 835.151865,1315.49642 C883.378821,1295.57967 945.871513,1266.86499 997.619373,1282.46919 C1016.53918,1288.17262 1033.79296,1305.42283 1050.75671,1316.63217 C1074.14847,1332.08822 1097.88423,1346.77888 1121.57951,1361.50246 C1169.11173,1391.01546 1216.79234,1420.23217 1263.50841,1451.63808 C1286.00308,1466.76493 1307.82999,1485.81752 1331.24873,1498.72226 C1344.9344,1506.26922 1361.31133,1502.73853 1375.93455,1502.26118 C1409.80808,1501.15013 1443.66138,1499.04323 1477.51468,1497.24908 C1518.92241,1495.05988 1560.42458,1492.73077 1601.87952,1493.59493 C1620.57674,1493.98997 1666.36874,1489.94078 1676.66166,1509.59417 C1682.19933,1520.17803 1669.14769,1539.26354 1663.0974,1548.09439 C1651.98834,1564.32407 1639.22,1578.94889 1626.62029,1593.42557 C1597.48176,1626.90545 1566.53557,1658.78871 1540.63466,1696.1861 C1527.32672,1715.41152 1509.89082,1738.90012 1518.57842,1765.14578 C1527.34695,1791.6548 1542.53676,1814.60844 1551.80443,1841.02694 C1562.47506,1871.42878 1566.8998,1903.06513 1571.93834,1935.30228 C1575.66834,1959.12831 1584.35594,1980.23841 1592.52417,2002.20444 C1601.54902,2026.48312 1610.89763,2050.96755 1617.16376,2076.57127 C1621.30521,2093.48405 1627.98953,2123.91058 1613.50121,2134.61789 C1592.91538,2149.8435 1554.31358,2137.51487 1530.84762,2133.02949 C1498.41753,2126.84048 1466.2235,2118.95608 1433.88109,2112.16628 C1410.40165,2107.22825 1386.84126,2101.81287 1362.9706,2101.23676 C1324.49021,2100.30677 1285.88167,2103.52472 1247.50245,2106.52046 C1176.43683,2112.06752 1105.88046,2119.5898 1034.57539,2119.5898 C972.104265,2119.5898 827.739078,2031.38824 793.946484,2015.85812 C726.496196,1984.85548 657.251731,1955.46593 593.423523,1914.21687 C576.15625,1903.04867 549.580836,1888.16873 540.495282,1865.18217 C534.890163,1851.01823 537.466764,1842.82932 524.246508,1833.70218 C506.210301,1821.2501 483.101832,1816.36145 463.136547,1810.7897 C430.982995,1801.81893 398.579877,1794.22258 366.277934,1786.09951 C300.945585,1769.71346 236.058408,1751.17937 170.99586,1733.34483 C151.327356,1727.95414 127.530895,1726.76078 108.779715,1717.26329 C96.6926232,1711.16481 97.9471986,1703.48617 107.302554,1694.21912 C123.713209,1677.95652 146.713757,1668.92814 166.098969,1659.65286 C194.502286,1646.06503 223.371009,1633.94215 252.253222,1621.99211 C281.135435,1610.04206 310.166039,1598.46236 339.061743,1586.48762 C358.150174,1578.60323 379.916382,1572.19201 397.06899,1559.49303 Z" stroke="#FF8062" transform="translate(889.000000, 1710.000000) rotate(-180.000000) translate(-889.000000, -1710.000000) "></path>
|
||||
<path d="M339.289256,1542.44336 C397.416922,1501.67106 461.94025,1469.19003 524.14279,1437.50022 C603.751247,1396.91748 685.161013,1358.88147 769.039991,1333.51314 C818.28929,1318.6284 876.396717,1302.19421 926.718707,1319.26302 C944.671088,1325.35373 958.083089,1339.0434 973.471809,1351.12591 C991.012655,1364.91448 1009.22815,1377.5492 1027.44364,1389.98611 C1064.94058,1415.58521 1102.8333,1440.31068 1141.12182,1464.16252 C1161.40174,1476.84669 1183.72584,1493.83309 1206.63688,1498.23422 C1224.85238,1501.73699 1245.54383,1496.66827 1263.84028,1495.19299 C1296.79009,1492.53912 1329.73314,1489.80283 1362.69644,1487.47864 C1400.73309,1484.80005 1438.87769,1482.3275 1476.9953,1482.75607 C1498.23996,1482.99509 1534.71143,1479.04725 1549.73584,1495.80288 C1562.84425,1510.42388 1515.11965,1563.30342 1506.72703,1573.3502 C1480.51696,1604.71858 1452.95084,1634.58695 1428.55557,1668.13117 C1414.13835,1687.91154 1396.58401,1711.96943 1390.50543,1738.18667 C1385.33088,1760.53025 1395.31567,1785.98924 1401.21209,1806.64325 C1408.586,1832.51434 1414.53639,1859.33323 1423.10442,1884.66036 C1430.73469,1907.22647 1442.87835,1927.32828 1453.54453,1947.84217 C1465.27666,1970.40829 1477.15721,1993.34528 1485.86692,2017.96361 C1491.20338,2033.11208 1500.03452,2058.48041 1489.42906,2072.92009 C1477.17745,2089.56857 1439.41066,2078.68936 1423.88701,2076.31572 C1392.39444,2071.43656 1361.14475,2064.18375 1329.86807,2057.6892 C1277.92018,2046.90889 1228.39428,2037.48025 1175.49513,2039.73851 C1106.60683,2042.68908 1037.786,2049.62869 968.911189,2053.46938 C943.476961,2054.90346 917.637945,2057.7881 892.183479,2056.23039 C877.590844,2055.33204 866.479392,2049.89243 857.992321,2037.62036 C846.40187,2020.87297 819.706051,2011.60092 801.13974,2001.99095 C772.190597,1987.01556 742.877144,1973.08688 713.644649,1958.97688 C649.472137,1927.98762 584.06502,1898.11925 523.205029,1858.03927 C503.950577,1845.36334 481.903083,1831.22861 467.661265,1810.28614 C459.713912,1798.60748 461.717617,1787.35739 456.866898,1774.9452 C450.44425,1758.61815 429.327769,1751.24996 416.705106,1745.90926 C392.343569,1735.59049 366.983553,1728.6756 341.819185,1722.19753 C284.878899,1707.54357 227.803684,1697.90888 169.939131,1690.81267 C156.378707,1689.1643 102.980323,1683.45272 131.025438,1655.92503 C162.012017,1625.50446 206.754668,1610.595 243.232882,1593.45201 C276.094983,1578.0398 308.98407,1563.69902 339.289256,1542.44336 Z" stroke="#5BE7C3" transform="translate(837.500000, 1697.000000) rotate(-180.000000) translate(-837.500000, -1697.000000) "></path>
|
||||
<path d="M317.620812,1536.98343 C372.258575,1501.11366 432.7856,1474.35328 491.630944,1448.75317 C563.038245,1417.68907 636.235288,1389.99883 711.127519,1374.48735 C758.174078,1364.75256 810.042807,1357.27249 856.771939,1373.45051 C888.683365,1384.49369 913.368287,1414.34814 941.396312,1434.88747 C969.424336,1455.42681 998.586989,1474.70712 1028.62087,1490.77816 C1047.2612,1500.75159 1067.31305,1510.79907 1088.05379,1509.48245 C1138.48398,1506.28964 1188.85337,1498.67791 1239.33759,1494.98313 C1272.73483,1492.51446 1306.19962,1490.48192 1339.69817,1491.09086 C1359.89861,1491.45293 1387.64973,1489.97173 1405.53364,1502.94048 C1425.30184,1517.28345 1320.04479,1639.74593 1310.09653,1653.52934 C1285.15496,1688.09072 1254.95224,1733.95861 1259.77441,1783.10983 C1264.38721,1830.09684 1284.37828,1865.17664 1306.98981,1901.99274 C1319.82192,1922.93529 1360.97246,1978.88358 1345.72251,2006.12124 C1337.01019,2021.69032 1308.29328,2016.30039 1294.65072,2015.23886 C1267.76408,2013.14872 1241.02602,2008.65574 1214.28121,2004.75524 C1175.28511,1999.10199 1135.21516,1990.37113 1096.05022,1987.81194 C1068.77862,1986.0345 1041.34492,1988.41265 1014.02604,1988.46202 C974.854343,1988.52785 935.682647,1988.16578 896.51095,1987.73788 C863.620233,1987.37581 830.452612,1987.73788 797.676708,1983.88675 C777.300672,1981.51683 761.834605,1976.19273 747.21951,1961.1503 C734.502216,1948.06635 715.314839,1940.40525 699.105861,1932.08583 C672.334032,1918.35179 645.211009,1905.62169 618.175785,1892.68586 C561.572683,1865.59632 504.321223,1839.07457 450.142714,1805.22088 C425.410515,1789.77524 383.827733,1768.14969 378.02627,1730.69996 C375.93261,1717.19634 374.392757,1711.36205 363.586772,1703.68449 C348.249027,1692.78942 329.878852,1687.87677 312.67032,1683.60597 C272.5531,1673.649 231.274236,1675.13843 191.224553,1665.29667 C174.914269,1661.23982 153.619725,1652.48427 172.239788,1632.43867 C193.966572,1608.99454 225.59434,1596.10808 251.623257,1581.62522 C264.617455,1574.40024 278.003369,1567.63609 290.342453,1558.81471 C299.817952,1552.01763 307.929194,1543.30323 317.620812,1536.98343 Z" stroke="#5ACEF2" transform="translate(786.500000, 1690.500000) rotate(-180.000000) translate(-786.500000, -1690.500000) "></path>
|
||||
<path d="M325.106141,1537.1826 C375.584794,1508.04871 430.405987,1486.86643 484.242692,1467.77103 C544.040274,1446.58874 605.280873,1429.04407 667.330642,1421.57913 C710.176136,1416.40729 755.826748,1414.8813 797.411286,1430.71028 C823.709276,1440.72402 841.537964,1461.78258 864.167721,1479.44273 C898.321392,1506.13505 935.273438,1527.28434 976.305045,1522.13724 C1022.3063,1516.37975 1068.45814,1512.06026 1114.76059,1509.17876 C1142.6904,1507.43832 1170.7281,1506.13505 1198.69163,1507.34759 C1216.37197,1508.10645 1239.15008,1509.38498 1254.53103,1519.15951 C1275.11089,1532.24997 1197.80829,1631.8595 1188.17244,1646.37695 C1164.27498,1682.38189 1146.75647,1720.16026 1136.52049,1764.76844 C1128.17256,1801.1693 1145.2258,1829.78353 1162.81848,1857.01201 C1173.75574,1873.92154 1209.0962,1916.45108 1198.03081,1938.40873 C1191.96204,1950.51761 1171.96209,1949.89072 1161.22037,1950.50936 C1140.7484,1951.68065 1120.18876,1950.45987 1099.71679,1949.92371 C1069.48759,1949.09886 1037.30964,1954.76561 1007.33667,1950.20416 C940.910648,1940.10793 874.653201,1931.36447 807.81585,1924.44393 C770.971693,1920.6331 733.905014,1917.16871 697.391267,1909.81924 C684.282731,1907.17971 670.742638,1904.38345 658.321895,1898.4115 C650.331352,1894.57592 645.975326,1888.04306 639.232252,1882.6815 C607.081274,1857.16048 565.11238,1844.02878 528.902072,1827.6719 C480.763265,1805.92872 432.368222,1784.52372 385.510599,1758.83773 C360.864663,1745.3266 326.441269,1729.80282 309.482438,1702.2279 C304.357701,1693.89687 306.542457,1687.23204 303.319268,1679.22269 C299.610577,1669.98431 288.3429,1667.22929 281.067123,1664.65574 C264.553334,1658.80752 195.430081,1649.96507 227.284363,1615.65934 C242.483253,1599.31895 261.849362,1588.83504 278.983513,1575.99205 C285.187141,1571.33986 291.235679,1566.66293 296.407617,1560.38578 C305.058981,1549.86063 313.582227,1543.85568 325.106141,1537.1826 Z" stroke="#F1B170" transform="translate(738.500000, 1685.000000) rotate(-180.000000) translate(-738.500000, -1685.000000) "></path>
|
||||
<path d="M377.369705,1525.79619 C477.021217,1478.6614 593.808357,1446.54877 702.45337,1452.77023 C738.582787,1454.8468 777.455525,1461.77693 808.773993,1485.49265 C827.24074,1499.50124 841.99792,1515.31447 864.18099,1520.37404 C880.194964,1524.02452 897.438703,1519.87962 913.547273,1518.37988 C936.879025,1516.20443 960.22429,1514.25971 983.589827,1512.6858 C1012.55688,1510.7658 1041.61852,1509.28254 1070.63963,1510.07361 C1091.37671,1510.64219 1120.01267,1509.99945 1138.0267,1523.59602 C1159.53407,1539.81303 1104.78925,1615.88792 1097.08633,1629.44329 C1078.41688,1662.29756 1065.32866,1694.13002 1060.5988,1733.72489 C1059.20686,1745.26138 1054.51754,1757.08628 1055.12567,1768.71341 C1055.76082,1780.58775 1061.75423,1791.16012 1067.28818,1800.49643 C1074.52487,1812.73335 1099.6337,1841.75586 1092.44431,1856.67913 C1088.47122,1864.91947 1073.55863,1865.95776 1065.82868,1867.70471 C1051.32826,1871.00085 1036.61838,1872.77252 1022.03012,1875.39296 C997.279409,1879.85922 972.704379,1894.40344 947.865827,1893.99142 C881.073367,1892.90369 813.314664,1867.62231 747.86008,1853.73732 C708.9468,1845.45577 669.769999,1837.94057 631.329705,1826.72546 C619.167193,1823.17387 606.639806,1819.49868 595.078663,1813.47498 C587.010864,1809.2724 581.828283,1801.78193 574.355095,1797.07669 C545.698866,1779.00561 512.745217,1768.0377 481.974062,1755.87495 C442.026968,1740.05348 401.944736,1724.70995 362.274677,1707.86668 C337.409097,1697.3108 305.435206,1688.02392 284.008914,1668.44486 C268.359816,1654.14785 279.056069,1649.87111 287.313063,1636.55471 C291.529401,1629.76466 290.5564,1623.0735 292.387534,1615.38526 C295.002474,1604.40911 302.394578,1596.50662 309.32721,1589.40344 C318.888295,1579.58918 331.625148,1571.5054 339.44294,1559.4745 C342.199776,1555.23896 342.071394,1549.98161 344.301187,1546.28994 C350.78786,1535.53628 367.997814,1530.2295 377.369705,1525.79619 Z" stroke="#FF8062" transform="translate(709.500000, 1673.000000) rotate(-180.000000) translate(-709.500000, -1673.000000) "></path>
|
||||
<path d="M480.319855,1529.58905 C561.198206,1499.95496 651.188945,1483.08125 736.680822,1490.91224 C766.425925,1493.64072 796.353141,1499.97969 824.061277,1513.90235 C836.667535,1520.2166 846.13066,1527.25624 859.944258,1527.63543 C891.996124,1528.5092 924.149164,1525.45099 956.194285,1524.71735 C979.127017,1524.18979 1002.17441,1524.0002 1025.05319,1526.25058 C1040.35067,1527.75083 1061.03734,1529.54783 1073.5694,1540.99756 C1091.78069,1557.67343 1058.90595,1614.3615 1052.21498,1630.02347 C1041.12633,1655.9976 1030.12537,1684.87332 1034.52306,1714.92781 C1035.87204,1724.11891 1038.25974,1732.23841 1038.57001,1741.61086 C1038.86678,1749.66441 1038.03716,1757.09972 1040.37765,1764.79881 C1043.27122,1774.34437 1056.14053,1789.15729 1051.71586,1797.94448 C1048.70088,1803.94548 1039.75711,1804.22575 1033.80809,1806.1464 C1024.15922,1809.26087 1014.73807,1813.34695 1005.6413,1818.36274 C996.063514,1823.67132 987.908904,1831.87324 977.987125,1836.25859 C961.880253,1843.36418 943.851079,1844.03187 926.921326,1844 C859.37094,1843.86701 790.963949,1827.6033 725.126772,1810.5977 C690.842337,1801.74457 656.369045,1792.30617 623.049134,1778.87809 C612.931752,1774.79774 601.465386,1770.7009 592.568835,1763.16667 C587.017764,1758.47632 583.254098,1752.59896 576.947597,1749.0709 C523.075911,1718.95047 460.793308,1707.76452 403.60312,1686.01088 C388.717079,1680.34784 306.219947,1651.7359 349.353719,1624.82205 C375.557738,1608.46766 403.24564,1601.03235 427.156385,1578.66046 C434.4409,1571.85987 439.297244,1566.22981 442.143601,1555.85169 C444.018689,1548.94394 439.506336,1552.44728 445.806093,1545.22629 C453.448089,1536.54626 470.8972,1533.04293 480.319855,1529.58905 Z" stroke="#F1B170" transform="translate(708.000000, 1666.500000) rotate(-180.000000) translate(-708.000000, -1666.500000) "></path>
|
||||
<path d="M531.414819,1547.11206 C626.105045,1522.92371 726.381995,1521.77306 822.566973,1543.21628 C846.814435,1548.61612 872.04938,1547.32575 896.59444,1548.69831 C920.442849,1550.01334 962.84378,1547.27644 980.165328,1569.65661 C992.72531,1585.8808 979.096681,1620.35927 974.38246,1638.50669 C968.376395,1661.62657 963.127851,1685.51082 972.989161,1707.96497 C978.765265,1721.11527 986.678663,1733.63272 992.874109,1746.65974 C995.83656,1752.88148 1001.93732,1762.41546 999.394207,1768.30844 C995.187256,1778.03144 975.505216,1782.12448 965.95503,1786.71065 C935.430959,1801.36502 903.107774,1805.10464 870.473464,1805 C810.196372,1804.80876 749.608154,1794.74877 690.480872,1781.10533 C663.277722,1774.82606 635.695812,1768.12762 609.459856,1757.21287 C594.613781,1751.04044 583.663533,1739.13119 569.487053,1732.07112 C523.839601,1709.32109 474.796827,1697.16528 428.364799,1676.36313 C414.92555,1670.33865 364.726203,1650.28443 390.015257,1626.63854 C414.499444,1603.74878 450.211186,1606.46925 475.66933,1584.93563 C478.550618,1582.46994 482.115029,1579.51934 483.785635,1575.53316 C484.773119,1573.14966 483.034877,1568.61281 483.785635,1567.25668 C491.604342,1552.52012 519.395924,1550.17772 531.414819,1547.11206 Z" stroke="#5ACEF2" transform="translate(691.500000, 1666.500000) rotate(-180.000000) translate(-691.500000, -1666.500000) "></path>
|
||||
<path d="M520.763246,1572.09823 C569.341836,1563.9668 618.988831,1561.95047 668.38563,1561.43813 C695.386508,1561.15716 725.051636,1559.0582 751.470977,1567.40448 C767.699905,1572.54447 783.374344,1577.03989 800.103664,1580.27924 C818.10425,1583.7665 847.08641,1586.30344 858.047698,1605.20241 C866.236544,1619.32498 860.62404,1648.35518 860.32651,1665.52704 C860.008693,1684.3599 863.173334,1698.32546 874.067002,1711.80347 C880.916962,1720.29024 912.340223,1751.09712 908.709001,1759.98055 C905.253591,1768.44252 883.358063,1769.73991 873.891189,1771.93805 C843.969103,1778.91256 813.648057,1781.34208 783.212055,1780.96195 C736.073782,1780.38349 688.759696,1774.5163 642.358487,1764.43465 C623.174542,1760.24498 603.348202,1755.90657 585.023038,1747.53549 C572.682291,1741.89142 562.390446,1731.88414 550.130843,1726.05 C515.022263,1709.31612 477.898591,1697.9536 442.668294,1680.91396 C431.362141,1675.43516 394.522475,1660.84982 403.353716,1638.37269 C410.717592,1619.60595 435.764237,1613.89577 448.071174,1601.31849 C469.006491,1579.86606 494.06666,1576.5606 520.763246,1572.09823 Z" stroke="#5ACEF2" transform="translate(655.500000, 1671.000000) rotate(-180.000000) translate(-655.500000, -1671.000000) "></path>
|
||||
<path d="M512.366469,1599.88339 C550.902093,1594.50013 590.333424,1592.14598 629.434757,1592.03075 C654.669462,1591.95667 681.291504,1591.53687 706.054783,1598.45938 C718.493668,1601.93298 729.302769,1610.05726 741.074924,1615.85208 C753.19728,1621.81153 769.926132,1628.4624 775.165683,1642.12633 C780.088707,1654.96714 778.25015,1673.70154 782.57379,1689.18458 C786.419271,1702.92259 794.467168,1711.40904 803.134653,1720.69393 C808.65706,1726.62868 837.016639,1752.31852 833.736868,1757.98987 C830.221385,1764.06456 813.189474,1763.57068 804.326685,1764.41027 C779.907998,1766.76391 755.403555,1767.51404 730.919083,1766.65741 C697.501788,1765.40626 663.828576,1761.91619 630.99046,1754.01416 C607.695332,1748.41689 590.12465,1735.08221 568.405428,1725.30345 C540.268093,1712.60258 511.12056,1702.56041 483.25261,1688.66601 C469.365778,1681.7435 448.811649,1672.83725 441.699867,1654.96714 C438.965602,1648.11871 436.312153,1630.70131 439.356211,1623.85289 C443.013122,1615.6216 456.623834,1612.13154 463.048683,1610.0161 C479.144479,1604.73985 495.987819,1602.17169 512.366469,1599.88339 Z" stroke="#FF8062" transform="translate(636.000000, 1679.500000) rotate(-180.000000) translate(-636.000000, -1679.500000) "></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 56 KiB |
63
src/public/games/mwg/theme/love.css
Normal file
@@ -0,0 +1,63 @@
|
||||
* {
|
||||
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
h1 {
|
||||
background: white;
|
||||
color: #171c20;
|
||||
width: fit-content;
|
||||
box-shadow: 5px 5px 0 #171c20;
|
||||
padding: 8px 16px;
|
||||
}
|
||||
|
||||
body {
|
||||
background-image: url(bg.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
margin: 0;
|
||||
padding: none;
|
||||
background-color: rgb(5, 15, 34);
|
||||
}
|
||||
|
||||
footer {
|
||||
font-size: 12px;
|
||||
padding-left: 10px;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
color: white;
|
||||
}
|
||||
|
||||
/* Links */
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
a:link {
|
||||
color: rgb( 233, 73, 154 );
|
||||
}
|
||||
a:visited {
|
||||
color: rgb( 110, 30, 71 );
|
||||
}
|
||||
a:hover {
|
||||
color: rgb( 252, 207, 230 );
|
||||
}
|
||||
|
||||
.controls {
|
||||
background: white;
|
||||
color: #171c20;
|
||||
width: fit-content;
|
||||
box-shadow: 5px 5px 0 #171c20;
|
||||
padding: 16px;
|
||||
margin: 32px;
|
||||
}
|
||||
|
||||
/* the canvas *must not* have any border or padding, or mouse coords will be wrong */
|
||||
#canvas {
|
||||
padding-right: 0;
|
||||
display: display;
|
||||
border: 0px none;
|
||||
visibility: hidden;
|
||||
box-shadow: 5px 5px 0 #171c20;
|
||||
}
|
||||
BIN
src/public/games/stroll/game.data
Normal file
300
src/public/games/stroll/game.js
Normal file
152
src/public/games/stroll/index.html
Normal file
@@ -0,0 +1,152 @@
|
||||
<!doctype html>
|
||||
<html lang="en-us">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, minimum-scale=1, maximum-scale=1">
|
||||
<title>Stroll</title>
|
||||
|
||||
<!-- Load custom style sheet -->
|
||||
<link rel="stylesheet" type="text/css" href="theme/love.css">
|
||||
</head>
|
||||
<body>
|
||||
<center>
|
||||
<div>
|
||||
<h1>Stroll</h1>
|
||||
<canvas id="loadingCanvas" oncontextmenu="event.preventDefault()" width="800" height="600"></canvas>
|
||||
<canvas id="canvas" oncontextmenu="event.preventDefault()"></canvas>
|
||||
</div>
|
||||
</center>
|
||||
|
||||
<script type='text/javascript'>
|
||||
function goFullScreen(){
|
||||
var canvas = document.getElementById("canvas");
|
||||
if(canvas.requestFullScreen)
|
||||
canvas.requestFullScreen();
|
||||
else if(canvas.webkitRequestFullScreen)
|
||||
canvas.webkitRequestFullScreen();
|
||||
else if(canvas.mozRequestFullScreen)
|
||||
canvas.mozRequestFullScreen();
|
||||
}
|
||||
function FullScreenHook(){
|
||||
var canvas = document.getElementById("canvas");
|
||||
canvas.width = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
|
||||
canvas.height = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
|
||||
}
|
||||
var loadingContext = document.getElementById('loadingCanvas').getContext('2d');
|
||||
function drawLoadingText(text) {
|
||||
var canvas = loadingContext.canvas;
|
||||
|
||||
loadingContext.fillStyle = "rgb(142, 195, 227)";
|
||||
loadingContext.fillRect(0, 0, canvas.scrollWidth, canvas.scrollHeight);
|
||||
|
||||
loadingContext.font = '2em arial';
|
||||
loadingContext.textAlign = 'center'
|
||||
loadingContext.fillStyle = "rgb( 11, 86, 117 )";
|
||||
loadingContext.fillText(text, canvas.scrollWidth / 2, canvas.scrollHeight / 2);
|
||||
|
||||
loadingContext.fillText("Powered By Emscripten.", canvas.scrollWidth / 2, canvas.scrollHeight / 4);
|
||||
loadingContext.fillText("Powered By LÖVE.", canvas.scrollWidth / 2, canvas.scrollHeight / 4 * 3);
|
||||
}
|
||||
|
||||
window.onload = function () { window.focus(); };
|
||||
window.onclick = function () { window.focus(); };
|
||||
|
||||
window.addEventListener("keydown", function(e) {
|
||||
// space and arrow keys
|
||||
if([32, 37, 38, 39, 40].indexOf(e.keyCode) > -1) {
|
||||
e.preventDefault();
|
||||
}
|
||||
}, false);
|
||||
|
||||
var Module = {
|
||||
arguments: ["./"],
|
||||
INITIAL_MEMORY: 16777216,
|
||||
printErr: console.error.bind(console),
|
||||
canvas: (function() {
|
||||
var canvas = document.getElementById('canvas');
|
||||
|
||||
// As a default initial behavior, pop up an alert when webgl context is lost. To make your
|
||||
// application robust, you may want to override this behavior before shipping!
|
||||
// See http://www.khronos.org/registry/webgl/specs/latest/1.0/#5.15.2
|
||||
canvas.addEventListener("webglcontextlost", function(e) { alert('WebGL context lost. You will need to reload the page.'); e.preventDefault(); }, false);
|
||||
|
||||
return canvas;
|
||||
})(),
|
||||
setStatus: function(text) {
|
||||
if (text) {
|
||||
drawLoadingText(text);
|
||||
} else if (Module.remainingDependencies === 0) {
|
||||
document.getElementById('loadingCanvas').style.display = 'none';
|
||||
document.getElementById('canvas').style.visibility = 'visible';
|
||||
}
|
||||
},
|
||||
totalDependencies: 0,
|
||||
remainingDependencies: 0,
|
||||
monitorRunDependencies: function(left) {
|
||||
this.remainingDependencies = left;
|
||||
this.totalDependencies = Math.max(this.totalDependencies, left);
|
||||
Module.setStatus(left ? 'Preparing... (' + (this.totalDependencies-left) + '/' + this.totalDependencies + ')' : 'All downloads complete.');
|
||||
}
|
||||
};
|
||||
Module.setStatus('Downloading...');
|
||||
window.onerror = function(event) {
|
||||
// TODO: do not warn on ok events like simulating an infinite loop or exitStatus
|
||||
Module.setStatus('Exception thrown, see JavaScript console');
|
||||
Module.setStatus = function(text) {
|
||||
if (text) Module.printErr('[post-exception status] ' + text);
|
||||
};
|
||||
};
|
||||
|
||||
var applicationLoad = function(e) {
|
||||
Love(Module);
|
||||
}
|
||||
</script>
|
||||
<script type="text/javascript" src="game.js"></script>
|
||||
<script async type="text/javascript" src="love.js" onload="applicationLoad(this)"></script>
|
||||
|
||||
<center>
|
||||
<div class="controls">
|
||||
<h2>Debug controls</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Key</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>1</td>
|
||||
<td>Debug view</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>2</td>
|
||||
<td>Cheat menu</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>3</td>
|
||||
<td>Level select</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>+</td>
|
||||
<td>Next level</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>-</td>
|
||||
<td>Previous level</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>t + click</td>
|
||||
<td>Teleport</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>e</td>
|
||||
<td>Level editor</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</center>
|
||||
|
||||
<footer>
|
||||
<p>Built with <a href="https://github.com/Davidobot/love.js">love.js</a> <button onclick="goFullScreen();">Go Fullscreen</button><br>Hint: Reload the page if screen is blank</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
22
src/public/games/stroll/love.js
Normal file
BIN
src/public/games/stroll/love.wasm
Normal file
50
src/public/games/stroll/theme/bg.svg
Normal file
@@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="1600px" height="1200px" viewBox="0 0 1600 1200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 55.2 (78181) - https://sketchapp.com -->
|
||||
<title>Whangaehu</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="Patterns" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Whangaehu" stroke-width="5">
|
||||
<g transform="translate(-146.000000, -400.000000)" id="Shape">
|
||||
<path d="M1536.16343,861.908843 C1536.27139,890.151271 1579.34543,921.910618 1597.74501,938.284472 C1634.12584,970.669782 1671.96406,1000.57595 1709.45143,1030.95983 C1746.9388,1061.34371 1784.52738,1091.64522 1820.27398,1125.00242 C1843.4843,1146.65577 1870.75643,1171.04359 1886.49761,1201.96283 C1920.03113,1267.85359 1814.30272,1258.06881 1786.91588,1259.51017 C1717.24443,1263.19182 1637.33075,1261.51161 1572.02473,1295.82422 C1533.03948,1316.30801 1517.49396,1350.66181 1525.86722,1400.73055 C1528.5661,1417.0138 1536.55477,1435.75149 1529.78734,1451.61469 C1522.5611,1468.55685 1505.93603,1478.33339 1492.13804,1484.88952 C1441.81077,1508.77493 1383.94689,1511.54234 1330.6981,1514.54037 C1273.27954,1517.83491 1215.3212,1516.87125 1158.30747,1517.12658 C1134.1323,1517.23365 1108.88433,1527.83383 1085.86293,1536.44905 C1055.68276,1547.74108 1025.86019,1560.42505 995.929671,1572.68897 C930.083874,1599.60534 862.234163,1627.95484 792.569459,1634.79101 C748.942148,1639.07391 701.259778,1633.28376 667.368659,1596.03077 C650.352253,1577.32603 641.445967,1549.52013 631.608568,1524.81933 C619.699783,1494.97905 608.263302,1464.8505 595.585337,1435.47969 C554.744615,1340.88526 496.435426,1248.44876 401.792636,1243.80346 C387.475105,1243.10337 373.413968,1245.38484 359.163909,1245.81313 C350.088943,1246.07669 342.01256,1243.39988 338.638967,1231.81134 C330.157753,1202.74528 356.815888,1156.8606 367.746331,1133.79884 C391.678603,1083.31828 418.66735,1035.10271 443.949059,985.635221 C460.675336,952.920458 489.627515,908.213576 489.931138,868.464974 C490.201026,833.048689 451.607117,807.450128 430.596377,790.005549 C410.908085,773.672876 375.235708,750.817018 373.076608,717.591601 C372.030795,701.48131 380.734666,688.130194 389.823126,677.768872 C405.753235,659.648912 424.105583,646.866105 438.436608,626.192878 C461.93706,592.275608 481.571374,545.608476 478.379954,499.904996 C476.166877,468.236249 461.363549,447.497132 442.53215,427.672248 C434.6177,419.337067 428.194378,413.439844 427.776053,399.907529 C427.101334,378.418904 433.996959,355.678355 439.67809,335.754635 C460.000617,264.452595 488.865083,195.506149 520.974945,131.130874 C537.019755,98.9597095 554.353278,66.8873811 575.627159,39.4438787 C589.5601,21.4227553 608.351015,-0.0246877056 629.604654,0 C654.211644,0 680.249038,10.8390517 704.167816,18.9436154 C748.84094,34.0902543 792.97429,51.6007243 836.932212,69.5641933 C938.589828,111.124791 1039.29159,156.051309 1139.0375,204.343747 C1209.29596,238.417507 1281.04555,272.540686 1347.10051,317.840585 C1359.98267,326.736403 1372.14196,337.108808 1383.41387,348.817479 C1395.4576,361.114343 1410.40261,366.616221 1425.5568,370.717921 C1519.61258,396.176464 1622.65562,376.631617 1717.10274,364.375935 C1741.0755,361.270833 1765.04825,358.149258 1789.08848,355.974863 C1809.75511,354.105213 1834.49705,348.743352 1854.58342,356.798498 C1894.16242,372.653462 1859.56284,431.090332 1844.93494,454.901606 C1793.43367,538.739364 1726.98737,609.670769 1665.39905,682.084717 C1636.11626,716.570295 1606.61081,750.965272 1578.92035,787.402864 C1564.50162,806.346458 1536.06897,837.150389 1536.16343,861.908843 Z" stroke="#5BE7C3" transform="translate(1115.000000, 818.000000) rotate(-180.000000) translate(-1115.000000, -818.000000) "></path>
|
||||
<path d="M1529.41551,872.669814 C1545.20124,902.554534 1572.89717,924.642882 1595.88708,945.430463 C1628.97095,975.356347 1663.0946,1003.61922 1696.70512,1032.69714 C1728.48589,1060.19438 1760.33418,1088.00445 1789.76532,1119.2311 C1807.71163,1138.27335 1830.22892,1161.04502 1838.72945,1189.2091 C1857.16864,1250.25461 1757.97104,1240.99282 1733.48223,1242.58996 C1672.60115,1246.54166 1603.57739,1247.44726 1547.25379,1279.58774 C1512.08361,1299.65907 1497.63474,1332.9439 1505.136,1379.15408 C1507.72869,1395.14199 1512.40095,1408.79182 1506.48636,1424.6974 C1499.64678,1443.10573 1483.91506,1454.58212 1469.49319,1462.6831 C1424.31683,1488.06454 1370.91676,1493.45696 1321.94588,1497.94378 C1271.35457,1502.57879 1218.64318,1505.84718 1169.67905,1502.4553 C1150.0988,1501.10514 1127.56126,1508.76979 1108.18356,1514.64794 C1078.36757,1523.70392 1048.85541,1534.15122 1019.18795,1543.86581 C958.894285,1563.6243 897.034198,1582.65832 834.30988,1584.82352 C789.025488,1586.38773 741.810078,1577.90805 704.134976,1545.13365 C665.953488,1511.89822 649.013196,1460.37795 627.839519,1411.40158 C591.271714,1326.72821 541.882221,1223.77823 457.282037,1205.88856 C444.453597,1203.17177 432.124792,1204.64542 419.309856,1203.97857 C412.720089,1203.64103 405.218827,1202.57078 401.876681,1194.64269 C393.200605,1174.06092 416.973729,1136.42923 424.974624,1120.6636 C447.080052,1077.09612 471.933466,1035.66091 495.098927,992.933173 C513.49761,959.006194 536.818363,921.308637 543.934771,881.091871 C552.570337,832.288394 496.145458,797.562843 476.301887,763.199531 C441.901413,703.61121 507.076639,669.659534 539.208504,641.248468 C576.107148,608.630489 606.564564,549.124495 573.487445,498.658012 C560.834553,479.360551 545.264878,467.859461 539.613613,442.675616 C530.775493,403.290354 537.459785,358.282154 544.630208,319.34969 C555.433104,260.823388 572.528688,202.931005 595.76842,150.035873 C612.418384,112.165429 640.04004,52.7829255 680.490136,57.236819 C707.720187,60.2088256 735.40261,71.0677639 761.916969,80.6670983 C801.617614,95.0331691 840.818625,111.40802 879.81033,128.416789 C969.818714,167.571535 1058.83458,210.743842 1146.10173,258.230086 C1205.64595,290.642247 1371.74048,423.098243 1384.23808,427.823815 C1421.50132,441.901742 1463.86893,439.423697 1502.28674,437.24203 C1553.39119,434.344118 1604.23907,426.835891 1655.04645,419.879255 C1679.23143,416.586173 1703.53795,412.56038 1727.85122,410.938537 C1745.15611,409.785958 1767.8827,408.798034 1783.04051,421.072997 C1812.62695,445.021937 1779.66461,499.818823 1766.0327,523.002121 C1724.27276,594.075066 1671.44659,655.622771 1621.91531,718.55357 C1597.60879,749.450913 1572.93093,780.29886 1550.86601,813.674248 C1541.96713,827.151186 1519.65914,854.212088 1529.41551,872.669814 Z" stroke="#5ACEF2" transform="translate(1120.500000, 821.000000) rotate(-180.000000) translate(-1120.500000, -821.000000) "></path>
|
||||
<path d="M1536.57663,844.996554 C1579.68735,904.799208 1639.18906,949.276505 1690.54254,999.22185 C1716.31716,1024.29746 1742.2538,1050.05658 1764.48425,1079.92496 C1776.0484,1095.4562 1790.4884,1115.0967 1792.71617,1136.74654 C1798.67039,1194.66338 1709.26255,1186.83188 1682.50231,1189.03063 C1630.76404,1193.29637 1572.31546,1196.53273 1525.37702,1226.08818 C1496.69954,1244.1558 1482.57683,1273.81007 1487.93698,1312.78638 C1490.31327,1330.07991 1494.01272,1344.77117 1487.93698,1361.75176 C1481.78024,1378.9547 1468.95368,1391.09311 1455.96511,1400.1928 C1418.63983,1426.36366 1372.25496,1434.73043 1330.23112,1440.96434 C1280.93285,1448.22525 1231.26404,1451.06023 1181.62536,1449.4464 C1138.15009,1448.05468 1094.8841,1463.70944 1052.43495,1474.02791 C996.200638,1487.68979 938.946949,1499.62233 881.402975,1497.81886 C835.956467,1496.38597 790.152166,1485.12871 751.301208,1455.21091 C711.822424,1424.74137 688.086547,1379.13587 666.686453,1329.92344 C634.336533,1255.52835 594.020647,1155.8353 523.049296,1127.58098 C512.727295,1123.46347 503.107379,1123.01054 492.461339,1122.2941 C487.290212,1121.94823 480.613653,1121.84117 478.048342,1115.2614 C471.878094,1099.41724 494.689109,1068.70064 501.05513,1057.99513 C521.375093,1023.81983 543.403013,991.184479 564.229287,957.462107 C583.671643,925.979658 604.848959,893.171372 616.926173,856.27852 C636.145752,797.521713 574.699806,763.165245 576.421264,707.175401 C577.494644,672.415418 604.7747,647.488038 626.377318,630.243924 C652.975542,609.038769 691.272933,595.096895 704.585546,556.400575 C714.502498,527.578035 698.941863,510.803317 686.95916,488.931126 C666.652699,451.873574 665.268782,401.640004 667.381788,358.743829 C670.230633,300.777583 681.362732,241.954895 700.312279,188.674371 C708.899319,164.521082 719.417094,139.396062 734.903471,120.636705 C749.410979,103.054956 763.142143,98.5504044 782.530493,102.149104 C841.883686,113.18402 901.810698,143.941788 958.726846,171.413786 C1030.23826,205.934955 1100.76406,244.046588 1169.1836,286.926293 C1215.83851,316.168819 1263.54654,347.107757 1304.497,387.508724 C1315.17004,398.041304 1326.09962,409.48797 1333.90356,423.380434 C1339.80378,433.822429 1342.30833,442.444486 1352.25229,448.406634 C1381.72636,466.070734 1422.72408,461.450892 1454.30441,459.614485 C1504.80053,456.691056 1555.05362,448.90897 1605.2392,441.900975 C1634.52425,437.783469 1689.69193,424.829796 1713.07677,455.900495 C1733.26171,482.730162 1708.90476,528.475651 1696.463,552.110134 C1664.99069,611.879848 1624.50603,664.336871 1586.94448,718.350312 C1569.72989,743.104757 1551.84023,768.048607 1537.623,795.570015 C1533.99106,802.586245 1528.17186,811.883573 1527.17274,820.40681 C1526.0521,830.173534 1531.28398,837.626219 1536.57663,844.996554 Z" stroke="#5BE7C3" transform="translate(1135.000000, 799.500000) rotate(-180.000000) translate(-1135.000000, -799.500000) "></path>
|
||||
<path d="M1528.87044,826.074857 C1568.70623,878.95138 1616.69822,922.391553 1659.4643,971.872638 C1678.63949,994.058361 1698.00373,1017.33194 1712.61468,1044.39655 C1720.47381,1058.95078 1728.81907,1077.27131 1726.65173,1095.36108 C1720.4333,1147.2816 1646.89914,1142.59227 1617.1911,1145.63333 C1573.04765,1150.10014 1522.33467,1154.59992 1483.30236,1182.5958 C1457.73319,1200.93281 1448.14559,1228.0139 1452.91913,1262.94075 C1458.04377,1300.40595 1446.58592,1327.60241 1420.51036,1348.50248 C1387.81801,1374.68526 1346.55084,1385.35782 1308.59206,1392.93986 C1262.85922,1402.03112 1216.54703,1406.06103 1170.2201,1404.98048 C1125.16516,1403.92558 1081.51459,1413.13942 1036.75672,1419.13088 C977.414908,1427.0673 916.169078,1430.98195 857.495695,1414.71352 C806.411366,1400.54663 760.269375,1369.32838 725.679761,1321.05054 C689.55073,1270.6629 671.665139,1207.17976 642.328447,1151.43524 C624.030994,1116.66497 598.515836,1070.66998 564.32458,1057.15416 C552.920743,1052.64614 532.138617,1058.72826 541.246833,1036.55078 C546.452492,1023.86734 556.19538,1012.74151 563.892463,1002.37389 C576.32933,985.619215 589.178058,969.32606 601.824232,952.802146 C628.777528,917.578602 657.641592,881.605095 677.843061,839.895606 C703.297452,787.381703 665.460209,746.966107 670.071707,693.718723 C672.549628,665.063538 688.875548,642.193782 706.146723,624.227632 C717.320998,612.590841 729.548558,602.511666 742.032688,593.108282 C755.070467,583.284589 770.498394,575.80144 781.868472,563.101515 C798.072859,545.028227 791.037454,523.633674 787.999131,500.269437 C782.651473,459.209225 781.476775,417.500264 784.501685,376.088726 C788.201686,325.330231 796.877785,273.121258 815.154983,226.994403 C822.264657,209.036495 831.271596,189.998968 844.646967,177.958351 C858.022337,165.917734 871.856833,166.741869 887.183482,170.368065 C932.643538,181.081824 978.009069,206.011918 1021.13299,229.639878 C1075.1071,259.218095 1128.02118,292.274163 1178.55186,329.879458 C1213.4318,355.839721 1248.42652,383.885046 1277.60792,419.083866 C1286.09497,429.327868 1294.17016,440.297109 1300.69917,452.54376 C1305.18239,460.941699 1307.58604,471.779079 1314.0813,478.091955 C1334.4043,497.797031 1375.20559,491.912705 1399.03955,490.767157 C1446.60617,488.484302 1493.42335,477.63044 1540.92921,474.993207 C1566.85623,473.55097 1607.46172,469.924774 1626.50187,496.865758 C1644.40772,522.191437 1628.18983,562.079587 1617.48818,586.482234 C1596.45624,634.463393 1568.19984,677.211292 1542.87373,721.813496 C1532.46242,740.16699 1521.05183,759.369343 1514.30675,780.327105 C1508.31113,799.002011 1518.66168,812.517831 1528.87044,826.074857 Z" stroke="#5ACEF2" transform="translate(1133.000000, 797.000000) rotate(-180.000000) translate(-1133.000000, -797.000000) "></path>
|
||||
<path d="M1527.07255,781.209958 C1558.78057,827.739777 1597.00561,869.043839 1628.94301,916.330776 C1647.63725,944.023178 1679.83102,990.577687 1665.37351,1029.61862 C1649.51275,1072.51922 1594.2261,1073.68781 1562.26846,1077.14422 C1524.23232,1081.25899 1479.56448,1086.87976 1447.01316,1113.66692 C1436.71817,1122.13511 1427.94787,1133.34375 1424.23061,1148.10754 C1420.25024,1163.90826 1424.60166,1177.73389 1425.16836,1193.55106 C1426.35572,1226.73257 1410.12391,1253.37159 1388.64341,1271.66586 C1358.28467,1297.5313 1320.32274,1309.7604 1284.46569,1318.2862 C1243.84169,1327.90239 1202.54341,1332.64328 1161.16195,1332.44101 C1121.61463,1332.27642 1082.48557,1333.34626 1042.89777,1334.58069 C991.125987,1336.2266 938.625594,1333.56846 888.405481,1316.78843 C838.934217,1300.24705 793.956048,1269.24637 758.625214,1223.64649 C724.157917,1179.14937 700.903117,1124.76034 680.535771,1069.35907 C668.979208,1037.914 649.455161,990.923327 621.88942,975.040315 C609.631232,967.97114 597.602422,968.456683 610.636444,950.07189 C627.050406,926.922194 649.171813,908.348122 668.183135,888.547849 C695.607202,859.974886 723.719402,830.842314 746.738078,796.870772 C761.438457,775.177705 767.9892,754.126541 766.977242,726.039121 C766.194661,704.642317 762.646061,683.46771 764.4406,661.988611 C768.6436,611.574448 801.18143,577.00215 829.948029,544.80819 C848.453371,524.102667 865.353073,508.310179 874.878973,478.856656 C886.145441,444.045701 890.874659,406.173358 898.403629,370.029218 C906.6747,330.338146 916.227586,289.050543 934.28092,254.091457 C950.350817,222.967337 969.895103,209.010037 999.147442,217.395938 C1044.77326,230.464448 1089.74469,262.658408 1130.25,292.441114 C1171.47718,322.74228 1211.99599,356.812576 1246.1597,398.462279 C1264.60432,420.953612 1277.19308,447.362206 1293.57331,471.524135 C1314.17678,501.85822 1360.78758,490.369782 1388.48825,487.802166 C1434.47163,483.539264 1579.16141,451.641567 1565.81031,554.955213 C1560.23779,598.078003 1538.29179,637.876058 1522.24214,675.929452 C1515.5902,691.721939 1505.9631,710.67457 1504.45866,728.771328 C1502.81928,748.481077 1517.5399,767.20328 1527.07255,781.209958 Z" stroke="#FF8062" transform="translate(1137.000000, 775.000000) rotate(-180.000000) translate(-1137.000000, -775.000000) "></path>
|
||||
<path d="M1530.33132,733.2589 C1554.56193,775.424345 1583.56043,815.259616 1604.35168,860.800931 C1617.83936,890.294511 1631.08426,929.701622 1613.68515,960.907839 C1594.0471,996.123931 1550.74492,1004.33306 1518.92749,1008.8205 C1486.14569,1013.43968 1447.0112,1017.32604 1420.21793,1044.02836 C1411.69372,1052.5339 1404.66664,1064.00363 1403.35834,1077.73766 C1402.09724,1090.91178 1405.65799,1104.08591 1404.47782,1117.49882 C1401.83423,1147.61817 1386.86966,1172.43494 1367.57554,1190.43409 C1310.50244,1243.68227 1225.55705,1255.52252 1156.69573,1256.91404 C1122.22797,1257.60568 1086.75538,1253.97456 1052.06508,1251.37267 C1007.04996,1247.9968 961.967407,1240.75103 919.036136,1223.28707 C827.75829,1186.16897 766.578193,1103.84713 723.849236,1001.41005 C710.402024,969.166371 700.110927,934.279632 679.036434,908.367768 C668.172111,894.987794 670.545942,885.378914 681.653043,873.176378 C699.018425,854.106827 720.20082,839.532947 739.474709,823.616953 C766.88841,800.982154 794.888824,778.009768 819.132922,750.895765 C835.844152,732.20497 847.706563,714.197583 851.307772,686.169625 C853.877174,666.186119 853.276973,645.823857 854.821311,625.716843 C857.761625,587.520105 867.830175,549.61155 885.654138,517.927772 C899.816198,492.814589 916.675792,469.990412 934.101869,448.228398 C956.754421,419.895789 975.913664,391.110318 993.117195,357.483355 C1015.92485,312.971269 1047.97157,230.863514 1101.69298,252.592592 C1160.94434,276.569505 1216.47985,337.491615 1254.49486,396.519945 C1267.26095,416.338774 1277.74087,440.645041 1294.95789,455.26009 C1320.73284,477.104441 1346.88544,476.338695 1377.54293,476.248123 C1423.44149,476.124615 1523.31773,463.963248 1524.39674,547.882446 C1524.8216,581.130653 1513.03337,612.567416 1507.38878,644.547613 C1501.0226,680.364775 1513.78194,704.522833 1530.33132,733.2589 Z" stroke="#F1B170" transform="translate(1147.000000, 753.000000) rotate(-180.000000) translate(-1147.000000, -753.000000) "></path>
|
||||
<path d="M1532.28383,702.499329 C1556.25118,757.45462 1609.99554,847.757708 1569.11879,908.867597 C1547.52658,941.162779 1509.33536,953.299185 1477.29792,960.53166 C1451.51548,966.381819 1420.4227,968.578714 1400.94248,993.378122 C1386.62414,1011.61153 1392.98035,1038.14706 1387.49458,1060.97173 C1380.68629,1089.26807 1365.05892,1112.42186 1345.85535,1129.82424 C1292.19197,1178.46037 1217.57739,1193.38609 1153.02344,1196.56213 C1085.97963,1199.85336 1012.10728,1184.45863 949.01755,1154.8458 C870.354435,1117.90999 811.421201,1047.97138 770.207072,959.404414 C762.602566,943.055235 755.69306,926.278197 748.392194,909.731544 C743.486714,898.631876 736.212839,887.894242 732.346484,876.218608 C725.909307,856.75099 733.49357,840.8379 745.652683,828.150213 C763.142372,809.883894 784.626619,796.88354 804.565674,783.175573 C831.832585,764.415569 859.706777,745.992916 885.070875,723.982824 C902.115224,709.172295 919.955787,693.218064 926.055586,667.521796 C930.218833,649.996003 931.082522,631.433473 930.934075,613.282347 C930.610192,574.363567 932.283588,542.891193 947.168717,507.247186 C971.662379,448.729139 1009.32729,396.11062 1049.11768,352.32905 C1080.34541,317.968623 1129.75783,264.593121 1175.25666,287.565897 C1216.07943,308.136077 1239.95907,357.372858 1266.85486,397.18027 C1279.93164,416.532694 1294.62109,434.206593 1311.88136,447.972157 C1333.64226,465.32516 1354.12787,472.607004 1379.91032,475.445688 C1423.30391,480.226198 1488.73505,481.468637 1502.14921,544.989351 C1507.10192,568.431127 1504.27469,592.712167 1506.8725,616.458382 C1510.26653,647.856704 1520.1922,674.778955 1532.28383,702.499329 Z" stroke="#5BE7C3" transform="translate(1157.000000, 739.500000) rotate(-180.000000) translate(-1157.000000, -739.500000) "></path>
|
||||
<path d="M1527.36202,689.464429 C1544.42899,749.596148 1566.85002,825.378589 1525.62903,878.821684 C1505.6625,904.711272 1477.5772,919.184071 1450.39549,929.999543 C1430.92796,937.750769 1400.01727,940.032479 1388.08186,963.862762 C1379.31574,981.399807 1378.10197,1005.59253 1370.172,1024.38163 C1359.27504,1050.21356 1342.76776,1071.4903 1323.40138,1088.14597 C1272.94899,1131.54789 1207.2368,1148.31887 1147.31026,1153.12117 C1017.09966,1163.54126 884.609867,1080.55125 814.932698,944.011058 C794.156994,903.310945 767.339409,859.991395 800.913649,818.409899 C837.569518,773.047519 892.789331,751.795486 936.539014,719.563237 C953.255331,707.256828 974.557002,692.462777 983.882806,670.181092 C989.493122,656.78737 989.877483,639.983437 990.133724,625.23881 C990.80804,587.685316 993.363702,553.912706 1005.73742,518.871565 C1024.84756,464.720068 1055.31994,414.761318 1089.85171,373.8388 C1119.96671,338.155155 1162.91395,296.219459 1206.65015,321.944302 C1240.18393,341.713635 1261.45188,383.674043 1287.50749,414.604811 C1316.50312,449.052872 1352.36329,472.265364 1391.7434,483.608018 C1430.05135,494.612946 1472.06804,502.034683 1492.25708,548.789154 C1499.18232,564.827025 1506.41774,585.593061 1509.01386,603.344275 C1513.20487,632.612129 1519.34123,661.41415 1527.36202,689.464429 L1527.36202,689.464429 Z" stroke="#FF8062" transform="translate(1167.000000, 734.000000) rotate(-180.000000) translate(-1167.000000, -734.000000) "></path>
|
||||
<path d="M1512.57366,658.040683 C1520.46932,718.760915 1521.34661,782.075325 1484.66219,829.93173 C1467.54144,852.25813 1445.89925,868.119674 1424.01411,882.490596 C1407.91238,893.064959 1391.28426,901.983989 1379.25857,919.319685 C1368.11693,935.370646 1359.64766,954.007549 1348.89067,970.478519 C1334.70109,992.306111 1317.72275,1011.20155 1298.60817,1026.43864 C1250.69437,1064.5607 1192.40824,1082.39053 1136.64602,1088.57538 C1109.65233,1091.58133 1080.37093,1093.14607 1053.55944,1084.95176 C1027.66575,1077.0457 1002.06223,1064.54423 978.253794,1049.96742 C927.640623,1019.01023 883.775875,973.673887 851.977306,916.354911 C830.173152,877.038705 818.383658,838.809583 846.619059,798.925128 C878.451369,753.967614 928.362704,729.162333 969.501089,699.984009 C997.716245,679.97178 1029.33935,660.354855 1034.60987,617.826809 C1038.80739,583.987201 1042.21534,551.868809 1053.07356,519.882185 C1069.23378,472.701336 1092.99474,429.962199 1122.94673,394.200446 C1150.33857,361.620866 1184.99173,333.974343 1224.17307,351.375923 C1255.21581,365.186832 1279.30093,396.127549 1306.42285,418.248062 C1336.64903,442.954518 1369.85802,456.57601 1404.82835,467.529205 C1436.25575,477.411788 1465.84759,492.598022 1486.16034,524.839947 C1490.31737,531.428335 1494.6836,538.601442 1497.8891,545.972202 C1501.97864,555.377126 1501.66146,564.699695 1502.46453,575.241116 C1504.55654,603.060585 1509.00375,630.55887 1512.57366,658.040683 Z" stroke="#F1B170" transform="translate(1173.500000, 718.500000) rotate(-180.000000) translate(-1173.500000, -718.500000) "></path>
|
||||
<path d="M1485.9342,616.003735 C1485.25967,673.678934 1473.89387,728.186616 1442.7644,773.134007 C1429.45596,792.361823 1413.56408,808.199406 1398.92008,825.818718 C1387.12933,840.02305 1375.98613,853.221036 1362.42811,864.926 C1330.26662,892.641771 1304.12866,928.507298 1269.95032,953.187532 C1224.32525,986.182497 1172.06281,1004.42046 1120.2051,1011.71235 C1094.88332,1015.27581 1068.72512,1016.52137 1043.10654,1012.49598 C1021.10344,1009.03976 1000.03118,996.90586 980.483362,984.491505 C942.17017,960.174215 904.969949,925.61199 880.093355,881.885412 C825.247481,785.482373 933.38107,715.392818 988.881236,674.347082 C1014.40538,655.465713 1053.40659,633.5983 1063.86177,596.198507 C1071.33554,569.480834 1075.88861,542.30948 1085.51412,516.416682 C1111.36878,446.879793 1163.85381,365.093523 1233.79562,375.981862 C1263.72443,380.634152 1291.00234,399.532018 1318.94129,412.218582 C1347.70991,425.284588 1377.40264,432.568227 1407.30446,440.561257 C1435.25016,448.026368 1457.52308,458.650747 1475.57345,487.13365 C1484.20066,500.735825 1483.43844,517.01884 1484.2074,533.706043 C1485.46203,561.116611 1486.23773,588.683904 1485.9342,616.003735 Z" stroke="#5BE7C3" transform="translate(1175.500000, 695.000000) rotate(-180.000000) translate(-1175.500000, -695.000000) "></path>
|
||||
<path d="M1446.03446,582.391195 C1434.79785,669.446683 1393.06571,764.486648 1331.70326,815.044024 C1259.52287,874.516027 1181.32576,924.595981 1095.08609,938.992733 C1055.10292,945.668414 1011.30444,948.95275 973.576696,927.123026 C944.863905,910.520254 911.511959,885.702526 895.71047,850.801309 C857.050845,765.433261 943.040656,697.474665 992.032025,657.980316 C1018.40836,636.718561 1051.98314,616.000079 1071.86331,584.951166 C1083.39704,566.949053 1089.28546,543.135557 1098.59754,523.363688 C1126.81737,463.447189 1173.2697,415.120527 1231.13421,406.477537 C1257.8887,402.485299 1284.83902,407.42415 1311.39092,411.350537 C1338.57083,415.36747 1366.08838,417.548796 1393.09947,423.154392 C1414.66108,427.632284 1440.07176,435.213421 1448.01302,463.373106 C1458.02738,498.858754 1450.61959,546.839696 1446.03446,582.391195 Z" stroke="#5ACEF2" transform="translate(1169.500000, 674.500000) rotate(-180.000000) translate(-1169.500000, -674.500000) "></path>
|
||||
<path d="M1412.67569,577.375891 C1396.28793,659.222787 1361.58563,739.059553 1303.24818,787.920543 C1272.31154,813.829802 1236.39909,831.715017 1201.91989,849.386038 C1162.8367,869.413194 1122.00251,884.95875 1080.2962,892.669741 C1028.36782,902.275526 944.265616,910.933915 917.135218,838.725757 C890.207638,767.053086 958.253354,703.618652 998.492609,667.469263 C1024.29116,644.311576 1051.90157,623.056921 1076.55081,597.740816 C1089.91658,584.015911 1100.21301,568.157303 1111.52354,552.059785 C1142.78468,507.457964 1187.35074,472.148875 1232.77539,453.299787 C1276.8006,435.027374 1331.26422,426.937425 1377.73677,432.976053 C1397.78879,435.571098 1412.12132,444.328345 1418.1856,469.224301 C1426.58906,503.833139 1419.44984,543.566162 1412.67569,577.375891 Z" stroke="#F1B170" transform="translate(1166.500000, 665.000000) rotate(-180.000000) translate(-1166.500000, -665.000000) "></path>
|
||||
<path d="M1376.49035,582.420099 C1360.21043,654.483212 1325.09569,720.303152 1273.87629,763.554146 C1216.46176,812.039232 1142.53136,838.98086 1074.58039,852.681384 C1038.46121,859.958249 960.189502,879.688643 941.779371,823.221156 C923.36924,766.753669 976.590764,711.106573 1007.22263,680.473187 C1044.40018,643.350511 1084.48316,607.507645 1124.51896,574.199785 C1159.30339,545.239996 1196.42026,515.632098 1234.09665,493.26825 C1255.34603,480.581379 1277.48158,470.222686 1300.241,462.314911 C1317.09392,456.506546 1338.52409,447.843221 1356.1927,452.166679 C1400.75856,463.086078 1384.2764,547.963693 1376.49035,582.420099 Z" stroke="#FF8062" transform="translate(1162.000000, 656.500000) rotate(-180.000000) translate(-1162.000000, -656.500000) "></path>
|
||||
<path d="M1341.93332,586.999565 C1306.2133,723.279394 1193.04149,790.304285 1084.0752,813.666306 C1058.75442,819.089192 987.772674,838.641204 973.619458,797.010888 C959.904318,756.647833 1003.52318,708.779964 1023.94425,686.100947 C1087.22261,615.825616 1165.40228,563.719833 1239.48425,512.099558 C1262.60791,495.987252 1304.31272,461.022395 1332.99657,477.151159 C1364.14039,494.695305 1349.33343,558.741311 1341.93332,586.999565 Z" stroke="#5ACEF2" transform="translate(1161.500000, 648.000000) rotate(-180.000000) translate(-1161.500000, -648.000000) "></path>
|
||||
<path d="M1303.34474,588.229739 C1272.28074,688.589725 1181.92872,746.149977 1098.85923,765.125431 C1078.51278,769.768449 1026.83862,784.224371 1011.42833,756.218081 C997.167558,730.311029 1031.20002,692.771734 1043.93261,677.854804 C1072.27834,644.637468 1105.87128,617.273298 1139.0585,590.971095 C1169.74384,566.636412 1200.76051,541.692539 1233.04841,521.111786 C1250.0545,510.278077 1281.95021,487.161775 1301.27561,503.889811 C1322.08187,521.885622 1310.24184,565.944899 1303.34474,588.229739 Z" stroke="#5ACEF2" transform="translate(1160.500000, 635.500000) rotate(-180.000000) translate(-1160.500000, -635.500000) "></path>
|
||||
<path d="M1257.02553,587.551323 C1233.34927,653.090471 1169.93747,695.649321 1114.00061,709.791676 C1098.94927,713.588779 1066.41808,723.439831 1053.72084,705.936917 C1042.03153,689.817762 1060.87107,666.186769 1069.23217,655.273187 C1106.28891,606.89925 1160.55491,563.689703 1210.27506,537.151166 C1222.77613,530.479467 1245.24828,517.383169 1258.10788,530.850117 C1271.29894,544.679478 1262.46431,572.502935 1257.02553,587.551323 Z" stroke="#5BE7C3" transform="translate(1157.500000, 620.500000) rotate(-180.000000) translate(-1157.500000, -620.500000) "></path>
|
||||
<path d="M1207.25345,590.081724 C1193.91179,622.62583 1159.04249,647.179418 1130.15843,654.995325 C1109.83057,660.491404 1085.39601,655.743657 1103.11175,627.415152 C1120.71094,599.302831 1153.36578,573.626746 1181.0432,562.243792 C1202.15949,553.563147 1218.70972,562.127385 1207.25345,590.081724 Z" stroke="#F1B170" transform="translate(1154.000000, 608.000000) rotate(-180.000000) translate(-1154.000000, -608.000000) "></path>
|
||||
<path d="M645.14602,750.676909 C646.001695,814.972512 673.996428,881.793866 660.17087,947.307096 C648.818012,1001.11301 591.662942,1005.60507 557.37529,1029.98227 C530.128431,1049.34911 514.665636,1083.65656 499.930502,1116.5736 C486.691116,1146.12572 474.79925,1176.56638 460.852416,1205.63309 C451.82403,1224.42402 436.32081,1261.32304 416.741341,1261.98944 C397.997334,1262.63116 380.809714,1233.87708 369.92175,1216.87968 C355.725625,1194.72382 343.139786,1171.10351 329.354654,1148.59388 C306.123405,1110.62533 278.249949,1082.5212 246.333933,1055.92265 C210.013771,1025.65751 173.093962,996.426249 135.574507,968.228877 C107.950343,947.405822 80.137525,926.739084 53.5846389,903.859229 C36.9292888,889.502757 0.168936947,862.56689 0,836.099973 C-0.0803542957,823.471214 9.72285538,809.484966 16.3324421,799.390187 C27.51686,782.302283 40.2644014,766.678822 53.0523684,751.392676 C76.8697884,722.918321 101.697849,695.735637 126.256405,668.223866 C158.131996,632.517798 188.579216,597.395863 216.600899,556.860426 C245.572584,514.901683 273.250649,471.56077 301.494673,428.812216 C320.622723,399.852456 339.73056,367.330317 367.321036,349.559555 C401.878193,327.346103 430.243494,350.768954 465.191431,351.040452 C495.254607,351.279041 493.037936,436.315426 496.858156,459.960412 C500.691851,483.89335 509.140803,506.172619 512.415277,530.163148 C516.498263,560.110172 516.552164,590.748281 517.556067,621.016167 C518.775573,658.038587 519.26068,693.283931 551.675279,707.401813 C570.122831,715.423338 590.079606,717.109915 609.173967,721.914602 C621.544203,725.032713 644.876516,730.363941 645.14602,750.676909 Z" stroke="#FF8062" transform="translate(332.000000, 801.000000) rotate(-180.000000) translate(-332.000000, -801.000000) "></path>
|
||||
<path d="M619.366456,721.114394 C622.517684,775.009959 641.134896,843.992327 623.529856,899.626459 C608.488983,947.169252 561.449987,953.332512 529.775759,978.306898 C503.627989,998.906029 491.988013,1032.61445 478.917502,1065.72961 C468.431403,1092.29425 458.26245,1119.11431 446.35931,1144.83027 C437.587155,1163.78147 424.192749,1195.77604 405.953414,1199.69811 C389.556231,1203.22468 371.971434,1174.97916 362.767418,1160.6092 C349.339273,1139.63105 337.854497,1116.84841 325.991844,1094.54367 C305.147854,1055.36413 283.804525,1020.13137 253.297668,991.350268 C222.655855,962.445568 189.132726,940.83296 155.251964,918.338709 C128.746559,900.738812 102.376111,882.628057 77.1932773,862.309074 C58.4343607,847.181073 31.4633571,827.81789 22.8801406,800.841269 C16.0850941,779.500569 50.5461687,744.086544 60.7083732,731.586992 C81.6265897,705.887516 103.793151,681.761815 126.0002,657.784427 C153.07242,628.56662 181.008361,603.015459 204.915858,569.686065 C247.676741,510.096901 283.4199,435.890593 338.441557,391.602462 C371.627295,364.88951 408.558069,358.058838 445.468599,362.055069 C460.084359,363.637082 463.593221,388.825699 465.435374,403.516999 C468.498881,427.922849 468.883506,452.748921 471.238492,477.253647 C473.445027,500.192839 478.343938,521.986719 482.291408,544.480969 C486.286112,567.271847 487.406249,590.623022 490.348295,613.570453 C492.170204,627.816812 493.97187,644.394992 501.941036,655.848109 C510.186862,667.704968 523.79045,672.673478 535.680094,676.447239 C558.008603,683.467423 617.139678,683.080159 619.366456,721.114394 Z" stroke="#5BE7C3" transform="translate(326.500000, 780.500000) rotate(-180.000000) translate(-326.500000, -780.500000) "></path>
|
||||
<path d="M575.344372,682.675982 C580.644047,732.14807 588.063591,793.766 566.473325,839.345823 C548.825746,876.614467 511.18793,884.654093 484.30474,908.937548 C461.94484,929.131245 453.499116,961.248604 442.40018,991.094788 C433.292841,1015.57574 424.138244,1040.16366 413.100069,1063.45965 C404.728608,1081.12708 393.940226,1105.08138 377.318827,1111.24482 C363.107598,1116.5113 347.053297,1092.91908 339.174673,1081.17645 C325.760083,1061.16379 314.823175,1038.74006 303.96053,1016.61258 C286.19143,980.40546 269.840077,941.729676 244.550166,912.278478 C219.975879,883.699542 190.783786,866.830317 161.044848,847.862725 C138.266375,833.330505 115.629676,818.23872 94.1676816,800.908677 C77.6880568,787.61079 57.2657441,771.852466 48.6782461,749.72498 C41.2519506,730.642183 60.3172765,708.05388 69.8431883,694.591415 C85.5734324,672.373411 103.031978,651.99045 120.247481,631.5252 C138.826722,609.447088 159.404312,589.080584 177.382698,566.459365 C215.189294,518.855235 245.394063,466.149193 291.990692,429.678751 C322.168456,406.053607 362.77679,384.592662 398.450013,388.452011 C424.104489,391.233376 422.416694,460.53709 424.880874,482.681033 C428.931581,518.88815 436.756196,556.93031 449.185114,590.282002 C459.858726,618.860938 485.222901,627.67408 508.554971,634.084385 C523.171271,638.108312 538.489693,640.280739 552.626659,646.50178 C568.991514,653.710288 573.123235,661.939179 575.344372,682.675982 Z" stroke="#5ACEF2" transform="translate(314.000000, 750.000000) rotate(-180.000000) translate(-314.000000, -750.000000) "></path>
|
||||
<path d="M518.600887,646.865271 C521.756362,688.691435 521.046887,738.151616 500.607249,774.332733 C482.694694,806.024223 450.802102,814.367998 428.119172,839.333299 C410.416081,858.81036 403.463226,890.567873 393.942747,916.325461 C382.307357,947.818879 366.002945,1005.98597 336.65095,1017.83726 C309.346297,1028.85501 280.791616,958.473492 270.906264,937.486133 C255.257273,904.26784 242.169148,867.839133 223.189002,837.162762 C206.844048,810.753187 184.944919,796.153644 161.701166,780.464706 C132.065381,760.426442 87.0711508,736.666078 71.2262087,697.612919 C59.4151388,668.512869 97.8213867,625.250685 110.936539,605.088626 C124.653056,584.02699 134.984364,559.061689 149.14008,538.742823 C171.478408,506.679949 207.675148,480.86459 237.560938,461.164698 C266.61563,442.00125 304.346187,420.791061 337.30637,422.053768 C358.969007,422.879068 363.090719,463.714872 367.712442,483.662354 C374.334209,512.019635 383.138456,537.430597 402.051033,556.717839 C421.301455,576.351707 443.991142,585.603312 467.843017,593.699497 C480.086529,597.825993 494.053051,601.04466 505.005994,609.380182 C517.107611,618.45022 517.384644,630.788443 518.600887,646.865271 Z" stroke="#F1B170" transform="translate(294.500000, 720.500000) rotate(-180.000000) translate(-294.500000, -720.500000) "></path>
|
||||
<path d="M460.981867,627.973643 C460.806757,664.108362 454.038084,702.641111 433.96779,730.514119 C417.251525,753.730675 391.086058,761.491427 375.083703,785.225367 C362.408437,804.01542 355.956308,830.393765 347.470211,852.214207 C337.091579,878.953898 322.416018,925.666234 296.607506,934.946287 C271.418614,943.979966 249.13924,892.529055 239.481253,872.170426 C225.337757,842.318222 213.888261,810.675706 199.6168,780.905626 C188.436703,757.549458 174.764658,742.496063 156.559958,727.442668 C135.189809,709.761293 105.373973,690.174633 93.9581516,660.921936 C85.7279841,639.742064 105.650108,605.898616 112.883496,587.239961 C117.732695,574.707784 122.171058,561.978508 124.609127,548.395139 C126.508397,537.817522 126.696977,528.028298 132.19947,518.945344 C146.053361,496.098347 176.428202,493.117233 197.037296,485.586429 C224.408328,475.591894 253.449639,464.234095 282.093586,462.066012 C299.69887,460.71096 308.683358,480.511144 318.731975,494.439435 C330.605776,510.905369 347.416331,522.747702 362.098627,535.173117 C381.475216,551.597989 402.562495,561.814259 424.377153,572.276903 C434.216985,576.999053 445.774242,581.630867 453.398259,591.017682 C461.359027,600.749418 461.042482,614.932295 460.981867,627.973643 Z" stroke="#FF8062" transform="translate(276.500000, 699.000000) rotate(-180.000000) translate(-276.500000, -699.000000) "></path>
|
||||
<path d="M414.275567,639.425242 C410.796763,669.773512 399.95584,698.779376 381.644929,720.233174 C367.608361,736.704419 348.967097,745.977731 337.701437,765.767932 C327.204349,784.215727 319.889423,805.191859 311.219382,824.916176 C302.0437,845.768773 288.411644,880.621928 267.248922,886.296273 C244.441185,892.407105 226.871878,857.249231 217.143364,837.763747 C204.852939,813.139235 195.515453,786.645236 184.526209,761.172455 C176.247424,742.18646 165.687091,724.822511 153.196751,709.658634 C140.097303,693.67329 122.332482,678.363267 115.705226,656.38239 C109.846544,636.913377 120.80882,613.359496 122.743736,593.618708 C124.813489,572.527278 121.186365,550.373452 132.661023,532.263318 C156.324978,494.914768 215.714088,501.840927 249.666132,501.042072 C283.166471,500.218509 310.100232,523.072363 337.20928,544.814407 C355.11568,559.169098 373.763686,571.324877 392.121791,584.699528 C410.837215,598.345955 417.336375,612.717117 414.275567,639.425242 Z" stroke="#5ACEF2" transform="translate(264.500000, 694.000000) rotate(-180.000000) translate(-264.500000, -694.000000) "></path>
|
||||
<path d="M385.179198,672.795423 C374.891626,716.76132 342.760673,740.129021 319.790718,773.354842 C300.996505,800.55534 286.904218,856.8851 255.252227,864.336388 C219.316559,872.79327 197.803729,798.156751 185.310232,769.357193 C171.447307,737.417213 146.757135,711.436616 136.489801,677.625572 C131.093043,659.879307 135.727509,643.319974 138.601283,625.581952 C141.751641,606.104746 144.119469,586.190684 154.993939,570.513306 C176.398834,539.661347 218.203477,539.875653 248.310646,539.026668 C279.476929,538.144713 307.047621,559.286918 331.879458,580.387911 C358.215641,602.733533 395.71637,627.708536 385.179198,672.795423 Z" stroke="#5ACEF2" transform="translate(260.500000, 702.000000) rotate(-180.000000) translate(-260.500000, -702.000000) "></path>
|
||||
<path d="M358.948584,700.71743 C347.356407,732.041788 322.996527,757.50768 303.23003,781.547875 C286.731901,801.589564 268.983503,841.93514 243.828615,844.811114 C214.263806,848.203289 196.345534,805.121031 184.712587,778.704675 C173.263104,752.747164 156.764976,725.339375 150.425291,696.850023 C143.813809,667.172591 161.419513,627.203923 178.209824,606.203576 C196.936694,582.786099 227.575104,574.133595 253.864749,575.067672 C281.391074,576.018137 306.647887,595.371559 327.494781,615.446023 C349.782202,636.905215 372.429756,664.353972 358.948584,700.71743 Z" stroke="#FF8062" transform="translate(256.000000, 710.000000) rotate(-180.000000) translate(-256.000000, -710.000000) "></path>
|
||||
<path d="M332.960285,717.614721 C321.887343,743.668217 302.693337,765.7078 284.995674,785.366944 C271.338138,800.544296 251.185112,826.35154 231.480988,826.983587 C209.804412,827.681302 191.433395,806.019306 182.815816,783.815555 C174.320666,761.915514 165.369811,734.45838 164.097919,710.432361 C161.336485,658.11195 217.558192,599.503897 259.775484,604.272983 C299.802673,608.795818 355.038153,665.704731 332.960285,717.614721 Z" stroke="#5ACEF2" transform="translate(251.000000, 715.500000) rotate(-180.000000) translate(-251.000000, -715.500000) "></path>
|
||||
<path d="M310.174104,725.487438 C294.898362,759.433059 257.793335,807.827118 223.441611,808.976425 C184.011571,810.28992 174.113271,756.436649 179.252773,717.409447 C184.473854,677.57773 229.933971,619.923535 266.182416,627.714199 C301.560679,635.316047 328.277931,685.228834 310.174104,725.487438 Z" stroke="#5BE7C3" transform="translate(247.000000, 718.000000) rotate(-180.000000) translate(-247.000000, -718.000000) "></path>
|
||||
<path d="M292.562068,719.97627 C279.628614,748.398378 252.029605,783.899353 223.244413,784.973898 C188.946158,786.245305 189.593168,740.778136 197.370764,712.479068 C205.458385,683.097253 241.077618,632.913572 271.109652,640.837311 C300.312705,648.57239 304.956348,692.735341 292.562068,719.97627 Z" stroke="#FF8062" transform="translate(246.000000, 712.500000) rotate(-180.000000) translate(-246.000000, -712.500000) "></path>
|
||||
<path d="M275.964355,712.247268 C267.427375,732.52775 246.061269,758.160025 225.749611,758.980192 C200.92275,759.966048 205.748881,723.903574 212.163444,706.497818 C219.78792,685.786542 245.344784,649.798628 266.792002,655.630924 C287.908015,661.372089 283.007532,695.53741 275.964355,712.247268 Z" stroke="#5ACEF2" transform="translate(244.500000, 707.000000) rotate(-180.000000) translate(-244.500000, -707.000000) "></path>
|
||||
<path d="M397.06899,1559.49303 C452.02074,1518.80361 514.142455,1485.21673 572.72303,1451.07844 C658.330935,1401.19604 745.200161,1352.65514 835.151865,1315.49642 C883.378821,1295.57967 945.871513,1266.86499 997.619373,1282.46919 C1016.53918,1288.17262 1033.79296,1305.42283 1050.75671,1316.63217 C1074.14847,1332.08822 1097.88423,1346.77888 1121.57951,1361.50246 C1169.11173,1391.01546 1216.79234,1420.23217 1263.50841,1451.63808 C1286.00308,1466.76493 1307.82999,1485.81752 1331.24873,1498.72226 C1344.9344,1506.26922 1361.31133,1502.73853 1375.93455,1502.26118 C1409.80808,1501.15013 1443.66138,1499.04323 1477.51468,1497.24908 C1518.92241,1495.05988 1560.42458,1492.73077 1601.87952,1493.59493 C1620.57674,1493.98997 1666.36874,1489.94078 1676.66166,1509.59417 C1682.19933,1520.17803 1669.14769,1539.26354 1663.0974,1548.09439 C1651.98834,1564.32407 1639.22,1578.94889 1626.62029,1593.42557 C1597.48176,1626.90545 1566.53557,1658.78871 1540.63466,1696.1861 C1527.32672,1715.41152 1509.89082,1738.90012 1518.57842,1765.14578 C1527.34695,1791.6548 1542.53676,1814.60844 1551.80443,1841.02694 C1562.47506,1871.42878 1566.8998,1903.06513 1571.93834,1935.30228 C1575.66834,1959.12831 1584.35594,1980.23841 1592.52417,2002.20444 C1601.54902,2026.48312 1610.89763,2050.96755 1617.16376,2076.57127 C1621.30521,2093.48405 1627.98953,2123.91058 1613.50121,2134.61789 C1592.91538,2149.8435 1554.31358,2137.51487 1530.84762,2133.02949 C1498.41753,2126.84048 1466.2235,2118.95608 1433.88109,2112.16628 C1410.40165,2107.22825 1386.84126,2101.81287 1362.9706,2101.23676 C1324.49021,2100.30677 1285.88167,2103.52472 1247.50245,2106.52046 C1176.43683,2112.06752 1105.88046,2119.5898 1034.57539,2119.5898 C972.104265,2119.5898 827.739078,2031.38824 793.946484,2015.85812 C726.496196,1984.85548 657.251731,1955.46593 593.423523,1914.21687 C576.15625,1903.04867 549.580836,1888.16873 540.495282,1865.18217 C534.890163,1851.01823 537.466764,1842.82932 524.246508,1833.70218 C506.210301,1821.2501 483.101832,1816.36145 463.136547,1810.7897 C430.982995,1801.81893 398.579877,1794.22258 366.277934,1786.09951 C300.945585,1769.71346 236.058408,1751.17937 170.99586,1733.34483 C151.327356,1727.95414 127.530895,1726.76078 108.779715,1717.26329 C96.6926232,1711.16481 97.9471986,1703.48617 107.302554,1694.21912 C123.713209,1677.95652 146.713757,1668.92814 166.098969,1659.65286 C194.502286,1646.06503 223.371009,1633.94215 252.253222,1621.99211 C281.135435,1610.04206 310.166039,1598.46236 339.061743,1586.48762 C358.150174,1578.60323 379.916382,1572.19201 397.06899,1559.49303 Z" stroke="#FF8062" transform="translate(889.000000, 1710.000000) rotate(-180.000000) translate(-889.000000, -1710.000000) "></path>
|
||||
<path d="M339.289256,1542.44336 C397.416922,1501.67106 461.94025,1469.19003 524.14279,1437.50022 C603.751247,1396.91748 685.161013,1358.88147 769.039991,1333.51314 C818.28929,1318.6284 876.396717,1302.19421 926.718707,1319.26302 C944.671088,1325.35373 958.083089,1339.0434 973.471809,1351.12591 C991.012655,1364.91448 1009.22815,1377.5492 1027.44364,1389.98611 C1064.94058,1415.58521 1102.8333,1440.31068 1141.12182,1464.16252 C1161.40174,1476.84669 1183.72584,1493.83309 1206.63688,1498.23422 C1224.85238,1501.73699 1245.54383,1496.66827 1263.84028,1495.19299 C1296.79009,1492.53912 1329.73314,1489.80283 1362.69644,1487.47864 C1400.73309,1484.80005 1438.87769,1482.3275 1476.9953,1482.75607 C1498.23996,1482.99509 1534.71143,1479.04725 1549.73584,1495.80288 C1562.84425,1510.42388 1515.11965,1563.30342 1506.72703,1573.3502 C1480.51696,1604.71858 1452.95084,1634.58695 1428.55557,1668.13117 C1414.13835,1687.91154 1396.58401,1711.96943 1390.50543,1738.18667 C1385.33088,1760.53025 1395.31567,1785.98924 1401.21209,1806.64325 C1408.586,1832.51434 1414.53639,1859.33323 1423.10442,1884.66036 C1430.73469,1907.22647 1442.87835,1927.32828 1453.54453,1947.84217 C1465.27666,1970.40829 1477.15721,1993.34528 1485.86692,2017.96361 C1491.20338,2033.11208 1500.03452,2058.48041 1489.42906,2072.92009 C1477.17745,2089.56857 1439.41066,2078.68936 1423.88701,2076.31572 C1392.39444,2071.43656 1361.14475,2064.18375 1329.86807,2057.6892 C1277.92018,2046.90889 1228.39428,2037.48025 1175.49513,2039.73851 C1106.60683,2042.68908 1037.786,2049.62869 968.911189,2053.46938 C943.476961,2054.90346 917.637945,2057.7881 892.183479,2056.23039 C877.590844,2055.33204 866.479392,2049.89243 857.992321,2037.62036 C846.40187,2020.87297 819.706051,2011.60092 801.13974,2001.99095 C772.190597,1987.01556 742.877144,1973.08688 713.644649,1958.97688 C649.472137,1927.98762 584.06502,1898.11925 523.205029,1858.03927 C503.950577,1845.36334 481.903083,1831.22861 467.661265,1810.28614 C459.713912,1798.60748 461.717617,1787.35739 456.866898,1774.9452 C450.44425,1758.61815 429.327769,1751.24996 416.705106,1745.90926 C392.343569,1735.59049 366.983553,1728.6756 341.819185,1722.19753 C284.878899,1707.54357 227.803684,1697.90888 169.939131,1690.81267 C156.378707,1689.1643 102.980323,1683.45272 131.025438,1655.92503 C162.012017,1625.50446 206.754668,1610.595 243.232882,1593.45201 C276.094983,1578.0398 308.98407,1563.69902 339.289256,1542.44336 Z" stroke="#5BE7C3" transform="translate(837.500000, 1697.000000) rotate(-180.000000) translate(-837.500000, -1697.000000) "></path>
|
||||
<path d="M317.620812,1536.98343 C372.258575,1501.11366 432.7856,1474.35328 491.630944,1448.75317 C563.038245,1417.68907 636.235288,1389.99883 711.127519,1374.48735 C758.174078,1364.75256 810.042807,1357.27249 856.771939,1373.45051 C888.683365,1384.49369 913.368287,1414.34814 941.396312,1434.88747 C969.424336,1455.42681 998.586989,1474.70712 1028.62087,1490.77816 C1047.2612,1500.75159 1067.31305,1510.79907 1088.05379,1509.48245 C1138.48398,1506.28964 1188.85337,1498.67791 1239.33759,1494.98313 C1272.73483,1492.51446 1306.19962,1490.48192 1339.69817,1491.09086 C1359.89861,1491.45293 1387.64973,1489.97173 1405.53364,1502.94048 C1425.30184,1517.28345 1320.04479,1639.74593 1310.09653,1653.52934 C1285.15496,1688.09072 1254.95224,1733.95861 1259.77441,1783.10983 C1264.38721,1830.09684 1284.37828,1865.17664 1306.98981,1901.99274 C1319.82192,1922.93529 1360.97246,1978.88358 1345.72251,2006.12124 C1337.01019,2021.69032 1308.29328,2016.30039 1294.65072,2015.23886 C1267.76408,2013.14872 1241.02602,2008.65574 1214.28121,2004.75524 C1175.28511,1999.10199 1135.21516,1990.37113 1096.05022,1987.81194 C1068.77862,1986.0345 1041.34492,1988.41265 1014.02604,1988.46202 C974.854343,1988.52785 935.682647,1988.16578 896.51095,1987.73788 C863.620233,1987.37581 830.452612,1987.73788 797.676708,1983.88675 C777.300672,1981.51683 761.834605,1976.19273 747.21951,1961.1503 C734.502216,1948.06635 715.314839,1940.40525 699.105861,1932.08583 C672.334032,1918.35179 645.211009,1905.62169 618.175785,1892.68586 C561.572683,1865.59632 504.321223,1839.07457 450.142714,1805.22088 C425.410515,1789.77524 383.827733,1768.14969 378.02627,1730.69996 C375.93261,1717.19634 374.392757,1711.36205 363.586772,1703.68449 C348.249027,1692.78942 329.878852,1687.87677 312.67032,1683.60597 C272.5531,1673.649 231.274236,1675.13843 191.224553,1665.29667 C174.914269,1661.23982 153.619725,1652.48427 172.239788,1632.43867 C193.966572,1608.99454 225.59434,1596.10808 251.623257,1581.62522 C264.617455,1574.40024 278.003369,1567.63609 290.342453,1558.81471 C299.817952,1552.01763 307.929194,1543.30323 317.620812,1536.98343 Z" stroke="#5ACEF2" transform="translate(786.500000, 1690.500000) rotate(-180.000000) translate(-786.500000, -1690.500000) "></path>
|
||||
<path d="M325.106141,1537.1826 C375.584794,1508.04871 430.405987,1486.86643 484.242692,1467.77103 C544.040274,1446.58874 605.280873,1429.04407 667.330642,1421.57913 C710.176136,1416.40729 755.826748,1414.8813 797.411286,1430.71028 C823.709276,1440.72402 841.537964,1461.78258 864.167721,1479.44273 C898.321392,1506.13505 935.273438,1527.28434 976.305045,1522.13724 C1022.3063,1516.37975 1068.45814,1512.06026 1114.76059,1509.17876 C1142.6904,1507.43832 1170.7281,1506.13505 1198.69163,1507.34759 C1216.37197,1508.10645 1239.15008,1509.38498 1254.53103,1519.15951 C1275.11089,1532.24997 1197.80829,1631.8595 1188.17244,1646.37695 C1164.27498,1682.38189 1146.75647,1720.16026 1136.52049,1764.76844 C1128.17256,1801.1693 1145.2258,1829.78353 1162.81848,1857.01201 C1173.75574,1873.92154 1209.0962,1916.45108 1198.03081,1938.40873 C1191.96204,1950.51761 1171.96209,1949.89072 1161.22037,1950.50936 C1140.7484,1951.68065 1120.18876,1950.45987 1099.71679,1949.92371 C1069.48759,1949.09886 1037.30964,1954.76561 1007.33667,1950.20416 C940.910648,1940.10793 874.653201,1931.36447 807.81585,1924.44393 C770.971693,1920.6331 733.905014,1917.16871 697.391267,1909.81924 C684.282731,1907.17971 670.742638,1904.38345 658.321895,1898.4115 C650.331352,1894.57592 645.975326,1888.04306 639.232252,1882.6815 C607.081274,1857.16048 565.11238,1844.02878 528.902072,1827.6719 C480.763265,1805.92872 432.368222,1784.52372 385.510599,1758.83773 C360.864663,1745.3266 326.441269,1729.80282 309.482438,1702.2279 C304.357701,1693.89687 306.542457,1687.23204 303.319268,1679.22269 C299.610577,1669.98431 288.3429,1667.22929 281.067123,1664.65574 C264.553334,1658.80752 195.430081,1649.96507 227.284363,1615.65934 C242.483253,1599.31895 261.849362,1588.83504 278.983513,1575.99205 C285.187141,1571.33986 291.235679,1566.66293 296.407617,1560.38578 C305.058981,1549.86063 313.582227,1543.85568 325.106141,1537.1826 Z" stroke="#F1B170" transform="translate(738.500000, 1685.000000) rotate(-180.000000) translate(-738.500000, -1685.000000) "></path>
|
||||
<path d="M377.369705,1525.79619 C477.021217,1478.6614 593.808357,1446.54877 702.45337,1452.77023 C738.582787,1454.8468 777.455525,1461.77693 808.773993,1485.49265 C827.24074,1499.50124 841.99792,1515.31447 864.18099,1520.37404 C880.194964,1524.02452 897.438703,1519.87962 913.547273,1518.37988 C936.879025,1516.20443 960.22429,1514.25971 983.589827,1512.6858 C1012.55688,1510.7658 1041.61852,1509.28254 1070.63963,1510.07361 C1091.37671,1510.64219 1120.01267,1509.99945 1138.0267,1523.59602 C1159.53407,1539.81303 1104.78925,1615.88792 1097.08633,1629.44329 C1078.41688,1662.29756 1065.32866,1694.13002 1060.5988,1733.72489 C1059.20686,1745.26138 1054.51754,1757.08628 1055.12567,1768.71341 C1055.76082,1780.58775 1061.75423,1791.16012 1067.28818,1800.49643 C1074.52487,1812.73335 1099.6337,1841.75586 1092.44431,1856.67913 C1088.47122,1864.91947 1073.55863,1865.95776 1065.82868,1867.70471 C1051.32826,1871.00085 1036.61838,1872.77252 1022.03012,1875.39296 C997.279409,1879.85922 972.704379,1894.40344 947.865827,1893.99142 C881.073367,1892.90369 813.314664,1867.62231 747.86008,1853.73732 C708.9468,1845.45577 669.769999,1837.94057 631.329705,1826.72546 C619.167193,1823.17387 606.639806,1819.49868 595.078663,1813.47498 C587.010864,1809.2724 581.828283,1801.78193 574.355095,1797.07669 C545.698866,1779.00561 512.745217,1768.0377 481.974062,1755.87495 C442.026968,1740.05348 401.944736,1724.70995 362.274677,1707.86668 C337.409097,1697.3108 305.435206,1688.02392 284.008914,1668.44486 C268.359816,1654.14785 279.056069,1649.87111 287.313063,1636.55471 C291.529401,1629.76466 290.5564,1623.0735 292.387534,1615.38526 C295.002474,1604.40911 302.394578,1596.50662 309.32721,1589.40344 C318.888295,1579.58918 331.625148,1571.5054 339.44294,1559.4745 C342.199776,1555.23896 342.071394,1549.98161 344.301187,1546.28994 C350.78786,1535.53628 367.997814,1530.2295 377.369705,1525.79619 Z" stroke="#FF8062" transform="translate(709.500000, 1673.000000) rotate(-180.000000) translate(-709.500000, -1673.000000) "></path>
|
||||
<path d="M480.319855,1529.58905 C561.198206,1499.95496 651.188945,1483.08125 736.680822,1490.91224 C766.425925,1493.64072 796.353141,1499.97969 824.061277,1513.90235 C836.667535,1520.2166 846.13066,1527.25624 859.944258,1527.63543 C891.996124,1528.5092 924.149164,1525.45099 956.194285,1524.71735 C979.127017,1524.18979 1002.17441,1524.0002 1025.05319,1526.25058 C1040.35067,1527.75083 1061.03734,1529.54783 1073.5694,1540.99756 C1091.78069,1557.67343 1058.90595,1614.3615 1052.21498,1630.02347 C1041.12633,1655.9976 1030.12537,1684.87332 1034.52306,1714.92781 C1035.87204,1724.11891 1038.25974,1732.23841 1038.57001,1741.61086 C1038.86678,1749.66441 1038.03716,1757.09972 1040.37765,1764.79881 C1043.27122,1774.34437 1056.14053,1789.15729 1051.71586,1797.94448 C1048.70088,1803.94548 1039.75711,1804.22575 1033.80809,1806.1464 C1024.15922,1809.26087 1014.73807,1813.34695 1005.6413,1818.36274 C996.063514,1823.67132 987.908904,1831.87324 977.987125,1836.25859 C961.880253,1843.36418 943.851079,1844.03187 926.921326,1844 C859.37094,1843.86701 790.963949,1827.6033 725.126772,1810.5977 C690.842337,1801.74457 656.369045,1792.30617 623.049134,1778.87809 C612.931752,1774.79774 601.465386,1770.7009 592.568835,1763.16667 C587.017764,1758.47632 583.254098,1752.59896 576.947597,1749.0709 C523.075911,1718.95047 460.793308,1707.76452 403.60312,1686.01088 C388.717079,1680.34784 306.219947,1651.7359 349.353719,1624.82205 C375.557738,1608.46766 403.24564,1601.03235 427.156385,1578.66046 C434.4409,1571.85987 439.297244,1566.22981 442.143601,1555.85169 C444.018689,1548.94394 439.506336,1552.44728 445.806093,1545.22629 C453.448089,1536.54626 470.8972,1533.04293 480.319855,1529.58905 Z" stroke="#F1B170" transform="translate(708.000000, 1666.500000) rotate(-180.000000) translate(-708.000000, -1666.500000) "></path>
|
||||
<path d="M531.414819,1547.11206 C626.105045,1522.92371 726.381995,1521.77306 822.566973,1543.21628 C846.814435,1548.61612 872.04938,1547.32575 896.59444,1548.69831 C920.442849,1550.01334 962.84378,1547.27644 980.165328,1569.65661 C992.72531,1585.8808 979.096681,1620.35927 974.38246,1638.50669 C968.376395,1661.62657 963.127851,1685.51082 972.989161,1707.96497 C978.765265,1721.11527 986.678663,1733.63272 992.874109,1746.65974 C995.83656,1752.88148 1001.93732,1762.41546 999.394207,1768.30844 C995.187256,1778.03144 975.505216,1782.12448 965.95503,1786.71065 C935.430959,1801.36502 903.107774,1805.10464 870.473464,1805 C810.196372,1804.80876 749.608154,1794.74877 690.480872,1781.10533 C663.277722,1774.82606 635.695812,1768.12762 609.459856,1757.21287 C594.613781,1751.04044 583.663533,1739.13119 569.487053,1732.07112 C523.839601,1709.32109 474.796827,1697.16528 428.364799,1676.36313 C414.92555,1670.33865 364.726203,1650.28443 390.015257,1626.63854 C414.499444,1603.74878 450.211186,1606.46925 475.66933,1584.93563 C478.550618,1582.46994 482.115029,1579.51934 483.785635,1575.53316 C484.773119,1573.14966 483.034877,1568.61281 483.785635,1567.25668 C491.604342,1552.52012 519.395924,1550.17772 531.414819,1547.11206 Z" stroke="#5ACEF2" transform="translate(691.500000, 1666.500000) rotate(-180.000000) translate(-691.500000, -1666.500000) "></path>
|
||||
<path d="M520.763246,1572.09823 C569.341836,1563.9668 618.988831,1561.95047 668.38563,1561.43813 C695.386508,1561.15716 725.051636,1559.0582 751.470977,1567.40448 C767.699905,1572.54447 783.374344,1577.03989 800.103664,1580.27924 C818.10425,1583.7665 847.08641,1586.30344 858.047698,1605.20241 C866.236544,1619.32498 860.62404,1648.35518 860.32651,1665.52704 C860.008693,1684.3599 863.173334,1698.32546 874.067002,1711.80347 C880.916962,1720.29024 912.340223,1751.09712 908.709001,1759.98055 C905.253591,1768.44252 883.358063,1769.73991 873.891189,1771.93805 C843.969103,1778.91256 813.648057,1781.34208 783.212055,1780.96195 C736.073782,1780.38349 688.759696,1774.5163 642.358487,1764.43465 C623.174542,1760.24498 603.348202,1755.90657 585.023038,1747.53549 C572.682291,1741.89142 562.390446,1731.88414 550.130843,1726.05 C515.022263,1709.31612 477.898591,1697.9536 442.668294,1680.91396 C431.362141,1675.43516 394.522475,1660.84982 403.353716,1638.37269 C410.717592,1619.60595 435.764237,1613.89577 448.071174,1601.31849 C469.006491,1579.86606 494.06666,1576.5606 520.763246,1572.09823 Z" stroke="#5ACEF2" transform="translate(655.500000, 1671.000000) rotate(-180.000000) translate(-655.500000, -1671.000000) "></path>
|
||||
<path d="M512.366469,1599.88339 C550.902093,1594.50013 590.333424,1592.14598 629.434757,1592.03075 C654.669462,1591.95667 681.291504,1591.53687 706.054783,1598.45938 C718.493668,1601.93298 729.302769,1610.05726 741.074924,1615.85208 C753.19728,1621.81153 769.926132,1628.4624 775.165683,1642.12633 C780.088707,1654.96714 778.25015,1673.70154 782.57379,1689.18458 C786.419271,1702.92259 794.467168,1711.40904 803.134653,1720.69393 C808.65706,1726.62868 837.016639,1752.31852 833.736868,1757.98987 C830.221385,1764.06456 813.189474,1763.57068 804.326685,1764.41027 C779.907998,1766.76391 755.403555,1767.51404 730.919083,1766.65741 C697.501788,1765.40626 663.828576,1761.91619 630.99046,1754.01416 C607.695332,1748.41689 590.12465,1735.08221 568.405428,1725.30345 C540.268093,1712.60258 511.12056,1702.56041 483.25261,1688.66601 C469.365778,1681.7435 448.811649,1672.83725 441.699867,1654.96714 C438.965602,1648.11871 436.312153,1630.70131 439.356211,1623.85289 C443.013122,1615.6216 456.623834,1612.13154 463.048683,1610.0161 C479.144479,1604.73985 495.987819,1602.17169 512.366469,1599.88339 Z" stroke="#FF8062" transform="translate(636.000000, 1679.500000) rotate(-180.000000) translate(-636.000000, -1679.500000) "></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 56 KiB |
63
src/public/games/stroll/theme/love.css
Normal file
@@ -0,0 +1,63 @@
|
||||
* {
|
||||
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
h1 {
|
||||
background: white;
|
||||
color: #171c20;
|
||||
width: fit-content;
|
||||
box-shadow: 5px 5px 0 #171c20;
|
||||
padding: 8px 16px;
|
||||
}
|
||||
|
||||
body {
|
||||
background-image: url(bg.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
margin: 0;
|
||||
padding: none;
|
||||
background-color: rgb(5, 15, 34);
|
||||
}
|
||||
|
||||
footer {
|
||||
font-size: 12px;
|
||||
padding-left: 10px;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
color: white;
|
||||
}
|
||||
|
||||
/* Links */
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
a:link {
|
||||
color: rgb( 233, 73, 154 );
|
||||
}
|
||||
a:visited {
|
||||
color: rgb( 110, 30, 71 );
|
||||
}
|
||||
a:hover {
|
||||
color: rgb( 252, 207, 230 );
|
||||
}
|
||||
|
||||
.controls {
|
||||
background: white;
|
||||
color: #171c20;
|
||||
width: fit-content;
|
||||
box-shadow: 5px 5px 0 #171c20;
|
||||
padding: 16px;
|
||||
margin: 32px;
|
||||
}
|
||||
|
||||
/* the canvas *must not* have any border or padding, or mouse coords will be wrong */
|
||||
#canvas {
|
||||
padding-right: 0;
|
||||
display: display;
|
||||
border: 0px none;
|
||||
visibility: hidden;
|
||||
box-shadow: 5px 5px 0 #171c20;
|
||||
}
|
||||
BIN
src/public/gold-pizza.webp
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
src/public/monkey.png
Normal file
|
After Width: | Height: | Size: 855 B |
BIN
src/public/screen.webp
Normal file
|
After Width: | Height: | Size: 53 KiB |
|
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 107 KiB |
|
Before Width: | Height: | Size: 274 KiB After Width: | Height: | Size: 274 KiB |
|
Before Width: | Height: | Size: 83 KiB After Width: | Height: | Size: 83 KiB |
|
Before Width: | Height: | Size: 137 KiB After Width: | Height: | Size: 137 KiB |
|
Before Width: | Height: | Size: 241 KiB After Width: | Height: | Size: 241 KiB |
|
Before Width: | Height: | Size: 2.5 MiB After Width: | Height: | Size: 2.5 MiB |
BIN
src/public/sharpie.png
Normal file
|
After Width: | Height: | Size: 96 KiB |
BIN
src/public/silver-pizza.webp
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
src/public/trophy.png
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
src/public/white-texture.jpg
Normal file
|
After Width: | Height: | Size: 8.2 MiB |
18
vite.config.js
Normal file
@@ -0,0 +1,18 @@
|
||||
import { defineConfig } from "vite";
|
||||
import { resolve } from "path";
|
||||
|
||||
const root = resolve(__dirname, "src");
|
||||
|
||||
export default defineConfig({
|
||||
root,
|
||||
build: {
|
||||
outDir: resolve(__dirname, "dist"),
|
||||
emptyOutDir: true,
|
||||
rollupOptions: {
|
||||
input: {
|
||||
main: resolve(root, "index.html"),
|
||||
"mwg-scores": resolve(root, "mwg-scores.html"),
|
||||
},
|
||||
},
|
||||
},
|
||||
});
|
||||