Merge branch 'main' into player-text-opacity

This commit is contained in:
bijx
2026-04-24 00:17:07 -04:00
committed by GitHub
343 changed files with 20725 additions and 4841 deletions
+24
View File
@@ -0,0 +1,24 @@
# Update schedule for GitHub Actions https://docs.github.com/en/code-security/how-tos/secure-your-supply-chain/secure-your-dependencies/keeping-your-actions-up-to-date-with-dependabot
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
groups:
updates:
applies-to: version-updates
patterns: ["*"] # wildcard, needs brackets as bugfix apparently
security:
applies-to: security-updates
patterns: ["*"]
- package-ecosystem: "gomod"
directory: "/map-generator"
schedule:
interval: "monthly"
open-pull-requests-limit: 0 # exclude version updates
groups:
golang:
applies-to: security-updates
patterns: ["*"]
+9 -9
View File
@@ -17,16 +17,16 @@ jobs:
timeout-minutes: 30
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: false
- name: Setup node
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: 24
- run: npm ci
- run: npm run build-prod
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
path: out/index.html
retention-days: 1
@@ -36,11 +36,11 @@ jobs:
timeout-minutes: 30
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: false
- name: Setup node
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: 24
- run: npm ci
@@ -51,8 +51,8 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: "24"
cache: "npm"
@@ -64,8 +64,8 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: "24"
cache: "npm"
+15 -10
View File
@@ -34,6 +34,11 @@ on:
branches:
- "*"
# Nightly build: rebuild and deploy main to nightly.openfront.dev
# 07:00 UTC = 11:00 PM PST (midnight PDT during summer)
schedule:
- cron: "0 7 * * *"
permissions: {}
concurrency:
@@ -42,8 +47,8 @@ concurrency:
jobs:
deploy:
# Don't deploy on push if this is a fork
if: ${{ github.event_name == 'workflow_dispatch' || github.repository == 'openfrontio/OpenFrontIO' }}
# Don't deploy on push if this is a fork; always deploy on schedule and workflow_dispatch
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' || github.repository == 'openfrontio/OpenFrontIO' }}
# Use different logic based on event type
name: Deploy to ${{ inputs.target_domain || 'openfront.dev' }}
runs-on: ubuntu-latest
@@ -51,9 +56,9 @@ jobs:
environment: ${{ inputs.target_domain == 'openfront.io' && 'prod' || '' }}
env:
DOMAIN: ${{ inputs.target_domain || 'openfront.dev' }}
SUBDOMAIN: ${{ github.event_name == 'push' && github.ref_name || inputs.target_subdomain || 'main' }}
SUBDOMAIN: ${{ github.event_name == 'schedule' && 'nightly' || github.event_name == 'push' && github.ref_name || inputs.target_subdomain || 'main' }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: 📝 Update job summary
env:
FQDN: ${{ env.SUBDOMAIN && format('{0}.{1}', env.SUBDOMAIN, env.DOMAIN) || env.DOMAIN || 'openfront.dev' }}
@@ -79,7 +84,7 @@ jobs:
gh api octocat
- name: 📝 Create deployment
if: ${{ github.repository == 'openfrontio/OpenFrontIO' && steps.generate-token.outputs.token != '' }}
uses: actions/github-script@v8
uses: actions/github-script@v9
id: deployment
env:
ENVIRONMENT: ${{ inputs.target_domain == 'openfront.io' && 'prod' || 'staging' }}
@@ -126,12 +131,10 @@ jobs:
chmod 600 ~/.ssh/id_rsa
- name: 🚢 Deploy
env:
CF_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }}
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }}
GHCR_REPO: ${{ vars.GHCR_REPO }}
GHCR_USERNAME: ${{ vars.GHCR_USERNAME }}
ENV: ${{ inputs.target_domain == 'openfront.io' && 'prod' || 'staging' }}
HOST: ${{ github.event_name == 'workflow_dispatch' && inputs.target_host || 'staging' }}
HOST: ${{ github.event_name == 'workflow_dispatch' && inputs.target_host || 'staging' }} # schedule and push both use staging
OTEL_EXPORTER_OTLP_ENDPOINT: ${{ secrets.OTEL_EXPORTER_OTLP_ENDPOINT }}
OTEL_AUTH_HEADER: ${{ secrets.OTEL_AUTH_HEADER }}
TURNSTILE_SECRET_KEY: ${{ secrets.TURNSTILE_SECRET_KEY }}
@@ -147,10 +150,12 @@ jobs:
echo "Deployment created in ${SECONDS} seconds" >> $GITHUB_STEP_SUMMARY
echo "::endgroup::"
- name: ⏳ Wait for deployment to start
env:
API_KEY: ${{ secrets.API_KEY }}
run: |
echo "::group::Wait for deployment to start"
set -euxo pipefail
while [ "$(curl -s https://${FQDN}/commit.txt)" != "${GITHUB_SHA}" ]; do
while [ "$(curl -s -H "X-API-Key: ${API_KEY}" https://${FQDN}/commit.txt)" != "${GITHUB_SHA}" ]; do
if [ "$SECONDS" -ge 300 ]; then
echo "Timeout: deployment did not start within 5 minutes"
exit 1
@@ -161,7 +166,7 @@ jobs:
echo "::endgroup::"
- name: 🔄 Update deployment status
if: ${{ always() && github.repository == 'openfrontio/OpenFrontIO' && steps.generate-token.outputs.token != '' && steps.deployment.outcome == 'success' && steps.deployment.outputs.deployment_id != '' }}
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
FQDN: ${{ env.FQDN }}
DEPLOYMENT_ID: ${{ steps.deployment.outputs.deployment_id }}
+2 -2
View File
@@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/github-script@v8
- uses: actions/github-script@v9
with:
script: |
if (context.eventName === 'merge_group') {
@@ -64,7 +64,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/github-script@v8
- uses: actions/github-script@v9
with:
script: |
if (context.eventName === 'merge_group') {
+13 -17
View File
@@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: 🔗 Log in to Docker Hub
uses: docker/login-action@v4
with:
@@ -51,7 +51,7 @@ jobs:
timeout-minutes: 30
needs: [build]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: 🔑 Create SSH private key
env:
SERVER_HOST_STAGING: ${{ secrets.SERVER_HOST_STAGING }}
@@ -64,8 +64,6 @@ jobs:
chmod 600 ~/.ssh/id_rsa
- name: 🚀 Deploy image
env:
CF_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }}
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }}
GHCR_REPO: openfront-prod
GHCR_USERNAME: ${{ vars.GHCR_USERNAME }}
DOMAIN: ${{ vars.DOMAIN }}
@@ -82,10 +80,11 @@ jobs:
- name: ⏳ Wait for deployment to start
env:
FQDN: alpha.${{ vars.DOMAIN }}
API_KEY: ${{ secrets.API_KEY }}
run: |
echo "::group::Wait for deployment to start"
set -euxo pipefail
while [ "$(curl -s https://${FQDN}/commit.txt)" != "${GITHUB_SHA}" ]; do
while [ "$(curl -s -H "X-API-Key: ${API_KEY}" https://${FQDN}/commit.txt)" != "${GITHUB_SHA}" ]; do
if [ "$SECONDS" -ge 300 ]; then
echo "Timeout: deployment did not start within 5 minutes"
exit 1
@@ -102,7 +101,7 @@ jobs:
timeout-minutes: 30
environment: prod-beta
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: 🔑 Create SSH private key
env:
SERVER_HOST_FALK2: ${{ secrets.SERVER_HOST_FALK2 }}
@@ -115,8 +114,6 @@ jobs:
chmod 600 ~/.ssh/id_rsa
- name: 🚀 Deploy image
env:
CF_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }}
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }}
GHCR_REPO: ${{ vars.GHCR_REPO }}
GHCR_USERNAME: ${{ vars.GHCR_USERNAME }}
DOMAIN: ${{ vars.DOMAIN }}
@@ -133,10 +130,11 @@ jobs:
- name: ⏳ Wait for deployment to start
env:
FQDN: beta.${{ vars.DOMAIN }}
API_KEY: ${{ secrets.API_KEY }}
run: |
echo "::group::Wait for deployment to start"
set -euxo pipefail
while [ "$(curl -s https://${FQDN}/commit.txt)" != "${GITHUB_SHA}" ]; do
while [ "$(curl -s -H "X-API-Key: ${API_KEY}" https://${FQDN}/commit.txt)" != "${GITHUB_SHA}" ]; do
if [ "$SECONDS" -ge 300 ]; then
echo "Timeout: deployment did not start within 5 minutes"
exit 1
@@ -153,7 +151,7 @@ jobs:
timeout-minutes: 30
environment: prod-blue
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: 🔑 Create SSH private key
env:
SERVER_HOST_FALK2: ${{ secrets.SERVER_HOST_FALK2 }}
@@ -166,8 +164,6 @@ jobs:
chmod 600 ~/.ssh/id_rsa
- name: 🚀 Deploy image
env:
CF_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }}
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }}
GHCR_REPO: ${{ vars.GHCR_REPO }}
GHCR_USERNAME: ${{ vars.GHCR_USERNAME }}
DOMAIN: ${{ vars.DOMAIN }}
@@ -184,10 +180,11 @@ jobs:
- name: ⏳ Wait for deployment to start
env:
FQDN: blue.${{ vars.DOMAIN }}
API_KEY: ${{ secrets.API_KEY }}
run: |
echo "::group::Wait for deployment to start"
set -euxo pipefail
while [ "$(curl -s https://${FQDN}/commit.txt)" != "${GITHUB_SHA}" ]; do
while [ "$(curl -s -H "X-API-Key: ${API_KEY}" https://${FQDN}/commit.txt)" != "${GITHUB_SHA}" ]; do
if [ "$SECONDS" -ge 300 ]; then
echo "Timeout: deployment did not start within 5 minutes"
exit 1
@@ -204,7 +201,7 @@ jobs:
timeout-minutes: 30
environment: prod-green
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: 🔑 Create SSH private key
env:
SERVER_HOST_FALK2: ${{ secrets.SERVER_HOST_FALK2 }}
@@ -217,8 +214,6 @@ jobs:
chmod 600 ~/.ssh/id_rsa
- name: 🚀 Deploy image
env:
CF_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }}
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }}
GHCR_REPO: ${{ vars.GHCR_REPO }}
GHCR_USERNAME: ${{ vars.GHCR_USERNAME }}
DOMAIN: ${{ vars.DOMAIN }}
@@ -235,10 +230,11 @@ jobs:
- name: ⏳ Wait for deployment to start
env:
FQDN: green.${{ vars.DOMAIN }}
API_KEY: ${{ secrets.API_KEY }}
run: |
echo "::group::Wait for deployment to start"
set -euxo pipefail
while [ "$(curl -s https://${FQDN}/commit.txt)" != "${GITHUB_SHA}" ]; do
while [ "$(curl -s -H "X-API-Key: ${API_KEY}" https://${FQDN}/commit.txt)" != "${GITHUB_SHA}" ]; do
if [ "$SECONDS" -ge 300 ]; then
echo "Timeout: deployment did not start within 5 minutes"
exit 1
+2
View File
@@ -10,6 +10,8 @@ resources/.DS_Store
.DS_Store
.clinic/
CLAUDE.md
NOTES.md
.claude/
.idea/
# this is autogenerated by script
src/assets/
+6
View File
@@ -0,0 +1,6 @@
{
"recommendations": [
"socketsecurity.vscode-socket-security",
"esbenp.prettier-vscode"
]
}
+1 -1
View File
@@ -4,7 +4,7 @@
{
"type": "node",
"request": "launch",
"name": "Debug Jest Tests",
"name": "Debug Tests",
"runtimeExecutable": "npm",
"runtimeArgs": ["run-script", "test"],
"console": "integratedTerminal",
+40
View File
@@ -44,6 +44,11 @@ Licensed under [Open Data Commons Open Database License (ODbL)](https://opendata
Copernicus Global Digital Elevation Models distributed by OpenTopography.
Copyright © opentopography.org. All Rights Reserved. [Terms of Use](https://opentopography.org/usageterms)
### NASA
[NASA Earth Observatory](https://science.nasa.gov/earth/earth-observatory/blue-marble-next-generation/topography-bathymetry-maps/)
[Public Domain](https://www.nasa.gov/nasa-brand-center/images-and-media/)
### Hawaii Relief Map
[USA Hawaii relief location map](https://commons.wikimedia.org/wiki/File:USA_Hawaii_relief_location_map.svg) by NordNordWest
@@ -59,6 +64,36 @@ Licensed under [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
[Arctic SDI](https://catalogue.arctic-sdi.org/geonetwork/srv/spa/catalog.search#/metadata/8b4f2b34-2d0d-4744-ae0f-d7989b9f7a02)
Licensed under [CC0 1.0.](https://creativecommons.org/publicdomain/zero/1.0/legalcode.en)
### Milky Way Map
[NASA/JPL-Caltech](https://www.jpl.nasa.gov/images/pia10748-our-milky-way-gets-a-makeover-artist-concept/)
[Public Domain](https://www.jpl.nasa.gov/jpl-image-use-policy/)
### Strait Of Malacca Map
[https://commons.wikimedia.org/wiki/User:Sadalmelik#/media/File:Sumatra_Topography.png](https://commons.wikimedia.org/wiki/File:Sumatra_Topography.png#/media/File:Sumatra_Topography.png)
Sadalmelik - Own work
Topographic map of Sumatra. Created with GMT from publicly released SRTM data. For locator version, see Image:Sumatra Locator Topography.png
CC BY-SA 3.0
File:Sumatra Topography.png
### Luna (The Moon) Map
[https://svs.gsfc.nasa.gov/4720#section_credits]
NASA's Scientific Visualization Studio
Visualizer
Ernie Wright (USRA) ORCID logo.
Scientist
Noah Petro (NASA/GSFC) ORCID logo.
### Antarctica Map
Polar Geospatial Center, 2018, "PGC Map Catalog", https://doi.org/10.7910/DVN/6R8F7U, Harvard Dataverse, V1, [2364], [Apr-02-2026].
[Terms of Use](https://www.pgc.umn.edu/guides/user-services/acknowledgement-policy/)
[U.S. Geological Survey](https://earthexplorer.usgs.gov/metadata/4980/GT30ANTARCPS/)
[Public Domain](https://www.doi.gov/copyright)
## Icons
### [The Noun Project](https://thenounproject.com/)
@@ -66,3 +101,8 @@ Licensed under [CC0 1.0.](https://creativecommons.org/publicdomain/zero/1.0/lega
Stats icon by [Meko](https://thenounproject.com/mekoda/) https://thenounproject.com/icon/stats-4942475/
Pay Per Click icon by [Fauzan Adiima](https://thenounproject.com/creator/fauzan94/) https://thenounproject.com/icon/pay-per-click-2586454/
Medal icon by [Snow](https://thenounproject.com/snowdoll/) https://thenounproject.com/icon/medal-4567887/
### Flags
[Wikimedia Commons](https://commons.wikimedia.org/wiki/Flag)
Licensed under [CC BY-SA 3.0 DE](https://creativecommons.org/licenses/by-sa/3.0/de/deed.en)
+10 -18
View File
@@ -38,24 +38,14 @@ FROM base
RUN apt-get update && apt-get install -y \
nginx \
curl \
jq \
wget \
supervisor \
apache2-utils \
&& rm -rf /var/lib/apt/lists/*
RUN curl -L https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64.deb > cloudflared.deb \
&& dpkg -i cloudflared.deb \
&& rm cloudflared.deb
# Update worker_connections in nginx.conf
RUN sed -i 's/worker_connections [0-9]*/worker_connections 8192/' /etc/nginx/nginx.conf
# Create cloudflared directory with proper permissions
RUN mkdir -p /etc/cloudflared && \
chown -R node:node /etc/cloudflared && \
chmod -R 755 /etc/cloudflared
# Setup supervisor configuration
RUN mkdir -p /var/log/supervisor
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
@@ -64,10 +54,6 @@ COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
COPY nginx.conf /etc/nginx/conf.d/default.conf
RUN rm -f /etc/nginx/sites-enabled/default
# Copy and make executable the startup script
COPY startup.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/startup.sh
# Copy production node_modules from prod-deps stage (cached separately from build)
COPY --from=prod-deps /usr/src/app/node_modules ./node_modules
COPY package*.json ./
@@ -87,8 +73,14 @@ ARG GIT_COMMIT=unknown
RUN echo "$GIT_COMMIT" > static/commit.txt
ENV GIT_COMMIT="$GIT_COMMIT"
ENV CF_CONFIG_PATH=/etc/cloudflared/config.yml
ENV CF_CREDS_PATH=/etc/cloudflared/creds.json
# Use the startup script as the entrypoint
ENTRYPOINT ["/usr/local/bin/startup.sh"]
RUN <<'EOF' tee /usr/local/bin/start.sh
#!/bin/sh
if [ "$DOMAIN" = openfront.dev ] && [ "$SUBDOMAIN" != main ]; then
exec timeout 25h /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
else
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
fi
EOF
RUN chmod +x /usr/local/bin/start.sh
ENTRYPOINT ["/usr/local/bin/start.sh"]
-2
View File
@@ -134,8 +134,6 @@ ENV=$ENV
HOST=$HOST
GHCR_IMAGE=$GHCR_IMAGE
GHCR_TOKEN=$GHCR_TOKEN
CF_ACCOUNT_ID=$CF_ACCOUNT_ID
CF_API_TOKEN=$CF_API_TOKEN
TURNSTILE_SECRET_KEY=$TURNSTILE_SECRET_KEY
API_KEY=$API_KEY
DOMAIN=$DOMAIN
+18 -2
View File
@@ -1,5 +1,7 @@
# API Usage
> **Warning:** Rate limits are very strict. Join the [Discord](https://discord.gg/K9zernJB5z) to request higher rate limits.
## Games
### List Game Metadata
@@ -207,10 +209,24 @@ GET https://api.openfront.io/public/clan/:clanTag/sessions
- `start` (optional): ISO 8601 timestamp
- `end` (optional): ISO 8601 timestamp
- `page` (optional): Page number, 1-200 (default: 1)
- `limit` (optional): Results per page, 1-50 (default: 20)
**Response:**
```json
{
"results": [ ... ],
"total": 150,
"page": 1,
"limit": 20
}
```
Results are ordered by game start time, newest first.
**Example**
```bash
curl https://api.openfront.io/public/clan/UN/sessions?start=2025-11-15T00:00:00Z &
end=2025-11-18T23:59:59Z
curl "https://api.openfront.io/public/clan/UN/sessions?start=2025-11-15T00:00:00Z&end=2025-11-18T23:59:59Z&limit=10&page=1"
```
-3
View File
@@ -6,9 +6,6 @@ GHCR_USERNAME=username
GHCR_REPO=your-repo-name
GHCR_TOKEN=your_docker_token_here
# Cloudflare Configuration
CF_ACCOUNT_ID=your_cloudflare_account_id
CF_API_TOKEN=your_cloudflare_api_token
DOMAIN=your-domain.com
# API Key
+17 -12
View File
@@ -26,6 +26,11 @@
padding-left: env(safe-area-inset-left);
}
/* Prevent Playwire bottom rail from affecting flex layout */
[id^="pw-oop-bottom_rail"] {
position: fixed !important;
}
/* Ensure full viewport height on iOS */
html,
body {
@@ -64,10 +69,10 @@
"--background-image-url",
`url("<%- backgroundImageUrl %>")`,
);
document.documentElement.style.setProperty(
"--desktop-logo-image-url",
`url("<%- desktopLogoImageUrl %>")`,
);
// document.documentElement.style.setProperty(
// "--desktop-logo-image-url",
// `url("<%- desktopLogoImageUrl %>")`,
// );
document.documentElement.style.setProperty(
"--mobile-logo-image-url",
`url("<%- mobileLogoImageUrl %>")`,
@@ -178,7 +183,7 @@
class="fixed top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 z-99999"
></div>
<gutter-ads></gutter-ads>
<homepage-promos></homepage-promos>
<!-- Main container with responsive padding -->
<main-layout class="contents">
@@ -208,11 +213,11 @@
inline
class="hidden w-full h-full page-content relative z-50"
></join-lobby-modal>
<territory-patterns-modal
<store-modal
id="page-item-store"
inline
class="hidden w-full h-full page-content relative z-50"
></territory-patterns-modal>
></store-modal>
<user-setting
id="page-settings"
inline
@@ -249,6 +254,11 @@
inline
class="hidden w-full h-full page-content relative z-50"
></flag-input-modal>
<territory-patterns-modal
id="territory-patterns-modal"
inline
class="hidden w-full h-full page-content relative z-50"
></territory-patterns-modal>
<ranked-modal
id="page-ranked"
inline
@@ -256,16 +266,11 @@
></ranked-modal>
</main-layout>
<!-- Ad above footer -->
<div class="[.in-game_&]:hidden mt-auto flex flex-col shrink-0">
<home-footer-ad></home-footer-ad>
<page-footer></page-footer>
</div>
<!-- Global Modals -->
<territory-patterns-modal
id="territory-patterns-modal"
></territory-patterns-modal>
</div>
<!-- Game components -->
+19 -13
View File
@@ -11,8 +11,9 @@ the [Official Openfront Wiki](https://openfront.wiki/Map_Making)
## Installation
1. Install go <https://go.dev/doc/install>
2. Install dependencies: `go mod download`
3. Run the generator: `go run .`
2. Go to map-generator folder: `cd map-generator`
3. Install dependencies: `go mod download`
4. Run the generator for all maps: `go run .`
## Creating a new map
@@ -20,18 +21,23 @@ the [Official Openfront Wiki](https://openfront.wiki/Map_Making)
2. Create `assets/maps/<map_name>/image.png`
3. Create `assets/maps/<map_name>/info.json` with name and countries
4. Add the map name in `main.go` The `<name>` in `{Name: "<name>"},` should match the `<map-name>` folder at `assets/maps/<map_name>`
5. Run the generator: `go run .`
5. Run the generator for your map: `go run . --maps=<map_name>`
By default, `go run .` will process all defined maps.
Use `--maps` to process a single map:
`go run . --maps=fourislands`
To process a subset of maps, pass a comma-separated list:
`go run . --maps=northamerica,world`
6. Find the output folder at `../resources/maps/<map_name>`
By default, this will process all defined maps.
Use `--maps` to process a single map:
`go run . --maps=fourislands`
To process a subset of maps, pass a comma-separated list:
`go run . --maps=northamerica,world`
7. Go back to the root directory: `cd ..`
8. Run Prettier: `npm run format`
This rewrites ALL files in place. Git figures out which files are actually changed, don't worry.
Alternatively, you can either run Prettier per file: `npx prettier --write resources/maps/<map_name>/<file_name>` or in VSCode install the Prettier extension and per file do Show and run Commands > Format Document.
## Output Files
Binary file not shown.

After

Width:  |  Height:  |  Size: 854 KiB

@@ -0,0 +1,55 @@
{
"name": "antarctica",
"nations": [
{
"coordinates": [1159, 1261],
"name": "New Zealand Claim",
"flag": "nz"
},
{
"coordinates": [1409, 1571],
"name": "French Claim",
"flag": "tf"
},
{
"coordinates": [1681, 1093],
"name": "Australian Claim",
"flag": "hm"
},
{
"coordinates": [1260, 510],
"name": "Norway Claim",
"flag": "bv"
},
{
"coordinates": [900, 686],
"name": "United Kingdom Claim",
"flag": "gb"
},
{
"coordinates": [351, 703],
"name": "Argentina Claim",
"flag": "ar"
},
{
"coordinates": [506, 939],
"name": "Chile Claim",
"flag": "cl"
},
{
"coordinates": [705, 1264],
"name": "Marie Byrd Land",
"flag": "aq"
},
{
"coordinates": [1532, 716],
"name": "Penguins",
"flag": "aq"
},
{
"coordinates": [1100, 954],
"name": "Ancient Aliens",
"flag": "Cthulhu Republic"
}
]
}
+29 -29
View File
@@ -24,47 +24,47 @@
{
"coordinates": [485, 927],
"name": "Nunavut",
"flag": "ca"
"flag": "Nunavut"
},
{
"coordinates": [432, 550],
"name": "Northwest Territories",
"flag": "ca"
"flag": "northwestterritories"
},
{
"coordinates": [608, 447],
"name": "Yukon",
"flag": "ca"
"flag": "Yukon"
},
{
"coordinates": [344, 320],
"name": "British Columbia",
"flag": "ca"
"flag": "britishcolumbia"
},
{
"coordinates": [64, 601],
"name": "Manitoba",
"flag": "ca"
"flag": "manitoba"
},
{
"coordinates": [247, 571],
"name": "Saskatchewan",
"flag": "ca"
"flag": "saskatchewan"
},
{
"coordinates": [136, 401],
"name": "Alberta",
"flag": "ca"
"flag": "alberta"
},
{
"coordinates": [67, 795],
"name": "Ontario",
"flag": "ca"
"flag": "ontario"
},
{
"coordinates": [49, 1313],
"name": "Newfoundland and Labrador",
"flag": "ca"
"flag": "newfoundlandandlabrador"
},
{
"coordinates": [74, 226],
@@ -74,27 +74,27 @@
{
"coordinates": [1457, 1381],
"name": "Soviet Union",
"flag": "Communist flag"
"flag": "ussr"
},
{
"coordinates": [1683, 1414],
"name": "Kazakh SSR",
"flag": "Communist flag"
"flag": "Kazakh SSR"
},
{
"coordinates": [1709, 1603],
"name": "Uzbek SSR",
"flag": "Communist flag"
"flag": "Uzbek SSR"
},
{
"coordinates": [1784, 1744],
"name": "Turkmen SSR",
"flag": "Communist flag"
"flag": "Turkmen SSR"
},
{
"coordinates": [1803, 1265],
"name": "Kirghiz SSR",
"flag": "Communist flag"
"flag": "Kirghiz SSR"
},
{
"coordinates": [745, 1736],
@@ -114,37 +114,37 @@
{
"coordinates": [1333, 1774],
"name": "Ukrainian SSR",
"flag": "Communist flag"
"flag": "Ukrainian SSR"
},
{
"coordinates": [1194, 1814],
"name": "Moldovan SSR",
"flag": "Communist flag"
"name": "Moldavian SSR",
"flag": "Moldavian SSR"
},
{
"coordinates": [1197, 1626],
"name": "Belorussian SSR",
"flag": "Communist flag"
"name": "Byelorussian SSR",
"flag": "Byelorussian SSR"
},
{
"coordinates": [1091, 1744],
"name": "Poland",
"name": "Polish People's Republic",
"flag": "pl"
},
{
"coordinates": [1805, 1486],
"name": "Tajik SSR",
"flag": "Communist flag"
"flag": "Tajik SSR"
},
{
"coordinates": [1442, 1807],
"name": "Georgian SSR",
"flag": "Communist flag"
"flag": "Georgian SSR"
},
{
"coordinates": [1573, 1790],
"name": "Azerbaijan SSR",
"flag": "Communist flag"
"flag": "Azerbaijan SSR"
},
{
"coordinates": [1089, 1519],
@@ -179,17 +179,17 @@
{
"coordinates": [1773, 961],
"name": "Tannu Tuva",
"flag": "Communist flag"
"flag": "tannutuva"
},
{
"coordinates": [1142, 382],
"name": "Far East",
"flag": "Communist flag"
"name": "Far Eastern Republic",
"flag": "fareasternrepublic"
},
{
"coordinates": [1410, 625],
"name": "Yakut ASSR",
"flag": "Communist flag"
"flag": "Russian SSR"
},
{
"coordinates": [1817, 364],
@@ -199,12 +199,12 @@
{
"coordinates": [1664, 689],
"name": "Buryat ASSR",
"flag": "Communist flag"
"flag": "Russian SSR"
},
{
"coordinates": [1440, 1170],
"name": "Komi ASSR",
"flag": "Communist flag"
"flag": "Russian SSR"
},
{
"coordinates": [1383, 875],
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

@@ -0,0 +1,125 @@
{
"name": "Bering Sea",
"nations": [
{
"coordinates": [1043, 121],
"name": "Polar Bears",
"flag": "polar_bears"
},
{
"coordinates": [1725, 158],
"name": "Utqiaġvik",
"flag": "Alaska"
},
{
"coordinates": [2152, 270],
"name": "Prudhoe Bay",
"flag": "Alaska"
},
{
"coordinates": [1973, 828],
"name": "Anchorage",
"flag": "Alaska"
},
{
"coordinates": [2389, 1070],
"name": "Juneau",
"flag": "Alaska"
},
{
"coordinates": [2381, 800],
"name": "Whitehorse",
"flag": "ca"
},
{
"coordinates": [1561, 452],
"name": "Kotzebue",
"flag": "Alaska"
},
{
"coordinates": [1491, 621],
"name": "Nome",
"flag": "Alaska"
},
{
"coordinates": [1609, 918],
"name": "Bethel",
"flag": "Alaska"
},
{
"coordinates": [1820, 1084],
"name": "Kodiak",
"flag": "Alaska"
},
{
"coordinates": [1979, 625],
"name": "Fairbanks",
"flag": "Alaska"
},
{
"coordinates": [2062, 468],
"name": "Fort Yukon",
"flag": "Alaska"
},
{
"coordinates": [1425, 1283],
"name": "Unalaska",
"flag": "Alaska"
},
{
"coordinates": [375, 1298],
"name": "Petropavlovsk-Kamchatsky",
"flag": "ru"
},
{
"coordinates": [479, 1107],
"name": "Ust-Kamchatsk",
"flag": "ru"
},
{
"coordinates": [965, 710],
"name": "Anadyr",
"flag": "ru"
},
{
"coordinates": [583, 749],
"name": "Kamenskoye",
"flag": "ru"
},
{
"coordinates": [1192, 588],
"name": "Provideniya",
"flag": "ru"
},
{
"coordinates": [718, 366],
"name": "Bilibino",
"flag": "ru"
},
{
"coordinates": [1048, 493],
"name": "Egvekinot",
"flag": "ru"
},
{
"coordinates": [410, 275],
"name": "Chersky",
"flag": "ru"
},
{
"coordinates": [254, 417],
"name": "Srednekolymsk",
"flag": "ru"
},
{
"coordinates": [127, 565],
"name": "Zyryanka",
"flag": "ru"
},
{
"coordinates": [161, 917],
"name": "Magadan",
"flag": "ru"
}
]
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 844 KiB

After

Width:  |  Height:  |  Size: 743 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 519 KiB

@@ -0,0 +1,110 @@
{
"name": "Caucasus",
"nations": [
{
"coordinates": [624, 581],
"name": "Georgia",
"flag": "ge"
},
{
"coordinates": [455, 463],
"name": "Abkhazia",
"flag": ""
},
{
"coordinates": [663, 448],
"name": "South Ossetia",
"flag": ""
},
{
"coordinates": [626, 347],
"name": "North Ossetia",
"flag": "ru"
},
{
"coordinates": [1023, 728],
"name": "Azerbaijan",
"flag": "az"
},
{
"coordinates": [682, 761],
"name": "Armenia",
"flag": "am"
},
{
"coordinates": [924, 982],
"name": "Iran",
"flag": "ir"
},
{
"coordinates": [161, 728],
"name": "Black Sea Region",
"flag": "tr"
},
{
"coordinates": [924, 479],
"name": "Dagestan",
"flag": "ru"
},
{
"coordinates": [830, 309],
"name": "Chechnya",
"flag": "ru"
},
{
"coordinates": [724, 365],
"name": "Ingushetia",
"flag": "ru"
},
{
"coordinates": [551, 313],
"name": "Kabardino-Balkaria",
"flag": "ru"
},
{
"coordinates": [405, 300],
"name": "Karachay-Cherkessia",
"flag": "ru"
},
{
"coordinates": [275, 202],
"name": "Adygea",
"flag": "ru"
},
{
"coordinates": [275, 186],
"name": "Krasnodar Krai",
"flag": "ru"
},
{
"coordinates": [524, 16],
"name": "Stavropol Krai",
"flag": "ru"
},
{
"coordinates": [805, 24],
"name": "Kalmykia",
"flag": "ru"
},
{
"coordinates": [164, 16],
"name": "Rostov Oblast",
"flag": "ru"
},
{
"coordinates": [1230, 271],
"name": "Kazakhstan",
"flag": "kz"
},
{
"coordinates": [1083, 20],
"name": "Astrakhan Oblast",
"flag": "ru"
},
{
"coordinates": [507, 863],
"name": "Eastern Anatolia",
"flag": "tr"
}
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

+105
View File
@@ -0,0 +1,105 @@
{
"name": "Conakry",
"nations": [
{
"coordinates": [510, 420],
"name": "Koba-Tatema",
"flag": "gn"
},
{
"coordinates": [680, 150],
"name": "Kenende",
"flag": "gn"
},
{
"coordinates": [1170, 30],
"name": "Dubreka",
"flag": "gn"
},
{
"coordinates": [1280, 280],
"name": "Tamouta",
"flag": "gn"
},
{
"coordinates": [1320, 550],
"name": "Ratoma",
"flag": "gn"
},
{
"coordinates": [1350, 40],
"name": "Coyah",
"flag": "gn"
},
{
"coordinates": [1630, 160],
"name": "Maferenya",
"flag": "gn"
},
{
"coordinates": [1730, 460],
"name": "Kaback",
"flag": "gn"
},
{
"coordinates": [2130, 80],
"name": "Forecariah",
"flag": "gn"
},
{
"coordinates": [2280, 440],
"name": "Laya",
"flag": "gn"
},
{
"coordinates": [1200, 910],
"name": "Fotoba",
"flag": "gn"
},
{
"coordinates": [1333, 835],
"name": "Ilot Cabri",
"flag": "gn"
},
{
"coordinates": [716, 260],
"name": "Bolonta",
"flag": "gn"
},
{
"coordinates": [870, 370],
"name": "Kanka",
"flag": "gn"
},
{
"coordinates": [940, 115],
"name": "Mangueya",
"flag": "gn"
},
{
"coordinates": [1975, 475],
"name": "Yelibane",
"flag": "gn"
},
{
"coordinates": [1900, 115],
"name": "Dandaya",
"flag": "gn"
},
{
"coordinates": [80, 480],
"name": "Marara",
"flag": "gn"
},
{
"coordinates": [390, 210],
"name": "Boufou",
"flag": "gn"
},
{
"coordinates": [180, 130],
"name": "Dioumaya",
"flag": "gn"
}
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

@@ -0,0 +1,335 @@
{
"name": "Dyslexdria",
"nations": [
{
"coordinates": [2260, 400],
"flag": "west_germany",
"name": "Jermaine"
},
{
"coordinates": [2111, 399],
"flag": "fr",
"name": "Pants"
},
{
"coordinates": [2050, 460],
"flag": "Fascist Spain",
"name": "Splain"
},
{
"coordinates": [2200, 470],
"flag": "it",
"name": "Idoly"
},
{
"coordinates": [980, 375],
"flag": "gb",
"name": "Graet Brian"
},
{
"coordinates": [2265, 510],
"flag": "gr",
"name": "Grace"
},
{
"coordinates": [2342, 436],
"flag": "Communist Romania",
"name": "Rollandia"
},
{
"coordinates": [1222, 310],
"flag": "Ukrainian SSR",
"name": "Ucryin"
},
{
"coordinates": [2235, 290],
"flag": "se",
"name": "Veden"
},
{
"coordinates": [2190, 250],
"flag": "no",
"name": "Morvay"
},
{
"coordinates": [2330, 280],
"flag": "fi",
"name": "Binland"
},
{
"coordinates": [1280, 285],
"flag": "Russian SSR",
"name": "Rusha"
},
{
"coordinates": [2555, 475],
"flag": "Georgian SSR",
"name": "Georgia"
},
{
"coordinates": [1105, 620],
"flag": "Second Republic of Iraq",
"name": "Irap"
},
{
"coordinates": [1370, 670],
"flag": "ae",
"name": "United Bara Estimates"
},
{
"coordinates": [356, 980],
"flag": "Pahlavi Iran",
"name": "Iram"
},
{
"coordinates": [2630, 740],
"flag": "pk",
"name": "Plackitstan"
},
{
"coordinates": [2650, 640],
"flag": "af",
"name": "Agraphistan"
},
{
"coordinates": [1260, 400],
"flag": "Kazakh SSR",
"name": "Azakah"
},
{
"coordinates": [1430, 390],
"flag": "Zheleznogorsk",
"name": "Zheleznogzorzkz"
},
{
"coordinates": [50, 450],
"flag": "Siberia",
"name": "Shiberia"
},
{
"coordinates": [2690, 950],
"flag": "in",
"name": "Indiana"
},
{
"coordinates": [295, 1325],
"flag": "is",
"name": "Ikeland"
},
{
"coordinates": [2020, 900],
"flag": "bd",
"name": "Bangledash"
},
{
"coordinates": [1085, 885],
"flag": "cn",
"name": "Jina"
},
{
"coordinates": [65, 795],
"flag": "kp",
"name": "West Cornea"
},
{
"coordinates": [80, 805],
"flag": "kr",
"name": "East Cornea"
},
{
"coordinates": [2890, 300],
"flag": "jp",
"name": "Chapan"
},
{
"coordinates": [2900, 650],
"flag": "mn",
"name": "Mongoalina"
},
{
"coordinates": [2385, 1070],
"flag": "id",
"name": "Endonisia"
},
{
"coordinates": [880, 950],
"flag": "vn",
"name": "North Vitamen"
},
{
"coordinates": [856, 996],
"flag": "South Vietnam",
"name": "South Vitamen"
},
{
"coordinates": [120, 945],
"flag": "pg",
"name": "Papa No Guine"
},
{
"coordinates": [785, 615],
"flag": "au",
"name": "Austria"
},
{
"coordinates": [335, 400],
"flag": "nz",
"name": "New Sealand"
},
{
"coordinates": [360, 70],
"flag": "an_pe",
"name": "Amtarctica"
},
{
"coordinates": [100, 70],
"flag": "sardines",
"name": "Dophlin Confeteracy"
},
{
"coordinates": [2555, 50],
"flag": "aq",
"name": "Arctica"
},
{
"coordinates": [1950, 1305],
"flag": "santa_claus",
"name": "Nort Pole"
},
{
"coordinates": [1020, 490],
"flag": "ly",
"name": "Lidya"
},
{
"coordinates": [380, 855],
"flag": "dz",
"name": "Alberia"
},
{
"coordinates": [1215, 790],
"flag": "so",
"name": "Slomia"
},
{
"coordinates": [550, 770],
"flag": "Mauritania",
"name": "Manchurian"
},
{
"coordinates": [1735, 860],
"flag": "ne",
"name": "Nigel"
},
{
"coordinates": [630, 825],
"flag": "lr",
"name": "Libraria"
},
{
"coordinates": [2970, 735],
"flag": "cf",
"name": "Center Africa"
},
{
"coordinates": [2950, 1150],
"flag": "Apartheid South Africa",
"name": "Southern African State"
},
{
"coordinates": [1620, 670],
"flag": "mg",
"name": "Madalplascar"
},
{
"coordinates": [2860, 1050],
"flag": "Apartheid South Africa",
"name": "Southern South West Africa"
},
{
"coordinates": [1400, 500],
"flag": "br",
"name": "Brailzil"
},
{
"coordinates": [1480, 865],
"flag": "Cthulhu Republic",
"name": "Anazom Warehouse"
},
{
"coordinates": [1620, 230],
"flag": "ar",
"name": "Aregano"
},
{
"coordinates": [1750, 600],
"flag": "cl",
"name": "Philly"
},
{
"coordinates": [1150, 400],
"flag": "ve",
"name": "Venice"
},
{
"coordinates": [2060, 900],
"flag": "ni",
"name": "Nicargo"
},
{
"coordinates": [1910, 440],
"flag": "mx",
"name": "Xico"
},
{
"coordinates": [2170, 600],
"flag": "us",
"name": "Untitled States"
},
{
"coordinates": [1960, 530],
"flag": "Texas",
"name": "Taxes"
},
{
"coordinates": [2860, 400],
"flag": "California",
"name": "Calizonia"
},
{
"coordinates": [2300, 765],
"flag": "Newfoundland",
"name": "Foundland"
},
{
"coordinates": [2020, 750],
"flag": "ca",
"name": "Canananada"
},
{
"coordinates": [1440, 1000],
"flag": "Alaska",
"name": "Eleske"
},
{
"coordinates": [484, 256],
"flag": "Yukon",
"name": "Yukant"
},
{
"coordinates": [500, 1200],
"flag": "gl",
"name": "Greedland"
},
{
"coordinates": [1515, 1313],
"flag": "polar_bears",
"name": "Bearguin Aliance"
},
{
"coordinates": [3060, 100],
"flag": "Republic of Pirates",
"name": "Biosphere Conmune"
}
]
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 MiB

After

Width:  |  Height:  |  Size: 2.5 MiB

+54 -49
View File
@@ -2,249 +2,254 @@
"name": "Europe",
"nations": [
{
"coordinates": [148, 744],
"coordinates": [634, 781],
"name": "Republic of Ireland",
"flag": "ie"
},
{
"coordinates": [451, 785],
"coordinates": [962, 780],
"name": "England",
"flag": "gb-eng"
},
{
"coordinates": [285, 1253],
"coordinates": [935, 1289],
"name": "Kingdom of Spain",
"flag": "es"
},
{
"coordinates": [527, 979],
"coordinates": [1087, 931],
"name": "French Republic",
"flag": "fr"
},
{
"coordinates": [974, 1159],
"coordinates": [1541, 1180],
"name": "Italian Republic",
"flag": "it"
},
{
"coordinates": [761, 1013],
"coordinates": [1339, 983],
"name": "Swiss Confederation",
"flag": "ch"
},
{
"coordinates": [789, 451],
"coordinates": [1360, 428],
"name": "Kingdom of Norway",
"flag": "no"
},
{
"coordinates": [1034, 562],
"coordinates": [1605, 573],
"name": "Kingdom of Sweden",
"flag": "se"
},
{
"coordinates": [1368, 369],
"coordinates": [2007, 309],
"name": "Republic of Finland",
"flag": "fi"
},
{
"coordinates": [633, 802],
"coordinates": [1200, 830],
"name": "Kingdom of Belgium",
"flag": "be"
},
{
"coordinates": [647, 754],
"coordinates": [1264, 752],
"name": "Kingdom of the Netherlands",
"flag": "nl"
},
{
"coordinates": [904, 805],
"coordinates": [1443, 798],
"name": "Federal Republic of Germany",
"flag": "de"
},
{
"coordinates": [1082, 953],
"coordinates": [1444, 969],
"name": "Republic of Austria",
"flag": "at"
},
{
"coordinates": [1274, 739],
"coordinates": [1850, 810],
"name": "Republic of Poland",
"flag": "pl"
},
{
"coordinates": [1098, 872],
"coordinates": [1630, 909],
"name": "Czech Republic",
"flag": "cz"
},
{
"coordinates": [1802, 933],
"coordinates": [2342, 936],
"name": "Ukraine",
"flag": "ua"
},
{
"coordinates": [1562, 730],
"coordinates": [2167, 708],
"name": "Republic of Belarus",
"flag": "by"
},
{
"coordinates": [1533, 1039],
"coordinates": [2046, 990],
"name": "Romania",
"flag": "ro"
},
{
"coordinates": [1770, 1304],
"coordinates": [2432, 1265],
"name": "Republic of Turkiye",
"flag": "tr"
},
{
"coordinates": [180, 1525],
"coordinates": [769, 1535],
"name": "Kingdom of Morocco",
"flag": "ma"
},
{
"coordinates": [2069, 659],
"coordinates": [2535, 720],
"name": "Russian Federation",
"flag": "ru"
},
{
"coordinates": [1952, 1433],
"coordinates": [2539, 1455],
"name": "Syrian Arab Republic",
"flag": "sy"
},
{
"coordinates": [2264, 1529],
"coordinates": [2689, 1441],
"name": "Republic of Iraq",
"flag": "iq"
},
{
"coordinates": [2173, 1173],
"coordinates": [2748, 1138],
"name": "Georgia",
"flag": "ge"
},
{
"coordinates": [832, 1434],
"coordinates": [1389, 1473],
"name": "Republic of Tunisia",
"flag": "tn"
},
{
"coordinates": [517, 1483],
"coordinates": [1066, 1506],
"name": "Algeria",
"flag": "dz"
},
{
"coordinates": [89, 1292],
"coordinates": [680, 1254],
"name": "Portuguese Republic",
"flag": "pt"
},
{
"coordinates": [1335, 1312],
"coordinates": [1891, 1299],
"name": "Hellenic Republic",
"flag": "gr"
},
{
"coordinates": [1312, 1133],
"coordinates": [1906, 1113],
"name": "Republic of Serbia",
"flag": "rs"
},
{
"coordinates": [1281, 999],
"coordinates": [1751, 983],
"name": "Republic of Hungary",
"flag": "hu"
},
{
"coordinates": [1254, 899],
"coordinates": [1784, 908],
"name": "Slovak Republic",
"flag": "sk"
},
{
"coordinates": [1002, 1061],
"coordinates": [1624, 1038],
"name": "Republic of Croatia",
"flag": "hr"
},
{
"coordinates": [1174, 1108],
"coordinates": [1734, 1094],
"name": "Bosnia and Herzegovina",
"flag": "ba"
},
{
"coordinates": [1259, 1236],
"coordinates": [1817, 1213],
"name": "Republic of Albania",
"flag": "al"
},
{
"coordinates": [1556, 1200],
"coordinates": [2092, 1158],
"name": "Republic of Bulgaria",
"flag": "bg"
},
{
"coordinates": [1380, 618],
"coordinates": [1939, 702],
"name": "Republic of Lithuania",
"flag": "lt"
},
{
"coordinates": [1360, 556],
"coordinates": [2014, 618],
"name": "Republic of Latvia",
"flag": "lv"
},
{
"coordinates": [1443, 502],
"coordinates": [2033, 504],
"name": "Republic of Estonia",
"flag": "ee"
},
{
"coordinates": [278, 742],
"coordinates": [863, 775],
"name": "Wales",
"flag": "gb-wls"
},
{
"coordinates": [296, 601],
"coordinates": [863, 573],
"name": "Scotland",
"flag": "gb-sct"
},
{
"coordinates": [2300, 510],
"coordinates": [2688, 427],
"name": "USSR",
"flag": "ussr"
},
{
"coordinates": [204, 667],
"coordinates": [719, 685],
"name": "Northern Ireland",
"flag": "northern_ireland"
},
{
"coordinates": [1522, 48],
"coordinates": [2011, 103],
"name": "Polar Bears",
"flag": "polar_bears"
},
{
"coordinates": [821, 628],
"coordinates": [1369, 628],
"name": "Kingdom of Denmark",
"flag": "dk"
},
{
"coordinates": [1875, 1599],
"coordinates": [2406, 1638],
"name": "State of Israel",
"flag": "il"
},
{
"coordinates": [1691, 1667],
"coordinates": [2226, 1661],
"name": "Arab Republic of Egypt",
"flag": "eg"
},
{
"coordinates": [1115, 1650],
"coordinates": [1847, 1652],
"name": "State of Libya",
"flag": "ly"
},
{
"coordinates": [1919, 1608],
"coordinates": [2571, 1601],
"name": "Hashemite Kingdom of Jordan",
"flag": "jo"
},
{
"coordinates": [1898, 1535],
"coordinates": [2473, 1528],
"name": "Lebanese Republic",
"flag": "lb"
},
{
"coordinates": [254, 274],
"name": "Iceland",
"flag": "is"
}
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 913 KiB

@@ -0,0 +1,175 @@
{
"name": "greatlakes",
"nations": [
{
"coordinates": [38, 326],
"name": "Duluth",
"flag": "Minnesota"
},
{
"coordinates": [325, 135],
"name": "Thunder Bay",
"flag": "ca"
},
{
"coordinates": [776, 36],
"name": "Marathon",
"flag": "ca"
},
{
"coordinates": [965, 154],
"name": "Wawa",
"flag": "ca"
},
{
"coordinates": [979, 411],
"name": "Sault Ste. Marie",
"flag": "ca"
},
{
"coordinates": [1506, 580],
"name": "Parry Sound",
"flag": "ca"
},
{
"coordinates": [534, 385],
"name": "Marquette",
"flag": "Michigan"
},
{
"coordinates": [618, 577],
"name": "Escanaba",
"flag": "Michigan"
},
{
"coordinates": [517, 785],
"name": "Green Bay",
"flag": "Wisconsin"
},
{
"coordinates": [497, 1042],
"name": "Milwaukee",
"flag": "Wisconsin"
},
{
"coordinates": [576, 1287],
"name": "Chicago",
"flag": "Illinois"
},
{
"coordinates": [765, 1002],
"name": "Muskegon",
"flag": "Michigan"
},
{
"coordinates": [714, 1276],
"name": "Gary",
"flag": "Indiana"
},
{
"coordinates": [1049, 667],
"name": "Alpena",
"flag": "Michigan"
},
{
"coordinates": [1923, 771],
"name": "Kingston",
"flag": "ca"
},
{
"coordinates": [1934, 999],
"name": "Rochester",
"flag": "New_York"
},
{
"coordinates": [1681, 1053],
"name": "Buffalo",
"flag": "New_York"
},
{
"coordinates": [1602, 881],
"name": "Toronto",
"flag": "ca"
},
{
"coordinates": [1120, 1098],
"name": "Detroit",
"flag": "Michigan"
},
{
"coordinates": [1004, 937],
"name": "Saginaw",
"flag": "Michigan"
},
{
"coordinates": [1111, 1276],
"name": "Toledo",
"flag": "Ohio"
},
{
"coordinates": [1365, 1276],
"name": "Cleveland",
"flag": "Ohio"
},
{
"coordinates": [1545, 1199],
"name": "Erie",
"flag": "Pennsylvania"
},
{
"coordinates": [1342, 906],
"name": "Goderich",
"flag": "ca"
},
{
"coordinates": [1247, 1098],
"name": "Windsor",
"flag": "ca"
},
{
"coordinates": [1962, 563],
"name": "Ottawa",
"flag": "ca"
},
{
"coordinates": [246, 1056],
"name": "Madison",
"flag": "Wisconsin"
},
{
"coordinates": [244, 447],
"name": "Ashland",
"flag": "Wisconsin"
},
{
"coordinates": [246, 687],
"name": "Wausau",
"flag": "Wisconsin"
},
{
"coordinates": [153, 1259],
"name": "Davenport",
"flag": "Iowa"
},
{
"coordinates": [1568, 368],
"name": "North Bay",
"flag": "ca"
},
{
"coordinates": [1311, 120],
"name": "Timmins",
"flag": "ca"
},
{
"coordinates": [925, 1118],
"name": "Lansing",
"flag": "Michigan"
},
{
"coordinates": [1662, 80],
"name": "Rouyn-Noranda",
"flag": "ca"
}
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

+142
View File
@@ -0,0 +1,142 @@
{
"name": "Luna",
"nations": [
{
"coordinates": [265, 662],
"flag": "us",
"name": "Apollo 12"
},
{
"coordinates": [550, 600],
"flag": "us",
"name": "Apollo 14"
},
{
"coordinates": [780, 345],
"flag": "us",
"name": "Apollo 15"
},
{
"coordinates": [825, 735],
"flag": "us",
"name": "Apollo 11"
},
{
"coordinates": [875, 990],
"flag": "us",
"name": "Apollo 16"
},
{
"coordinates": [1160, 490],
"flag": "us",
"name": "Apollo 17"
},
{
"coordinates": [1160, 2850],
"flag": "us",
"name": "Surveyor 3"
},
{
"coordinates": [256, 148],
"flag": "us",
"name": "Apollo 13"
},
{
"coordinates": [656, 1750],
"flag": "us",
"name": "Artemis II"
},
{
"coordinates": [510, 170],
"flag": "Russian SSR",
"name": "Luna 17"
},
{
"coordinates": [1050, 385],
"flag": "Russian SSR",
"name": "Luna 21"
},
{
"coordinates": [1030, 790],
"flag": "Russian SSR",
"name": "Luna 16"
},
{
"coordinates": [1090, 2640],
"flag": "Russian SSR",
"name": "Luna 9"
},
{
"coordinates": [130, 2890],
"flag": "Russian SSR",
"name": "Luna 24"
},
{
"coordinates": [310, 1167],
"flag": "Russian SSR",
"name": "Luna 25"
},
{
"coordinates": [1043, 2393],
"flag": "Russian SSR",
"name": "Luna 1"
},
{
"coordinates": [672, 2323],
"flag": "cn",
"name": "Chang'e 3"
},
{
"coordinates": [650, 2750],
"flag": "cn",
"name": "Chang'e 4"
},
{
"coordinates": [270, 2690],
"flag": "cn",
"name": "Chang'e 5"
},
{
"coordinates": [910, 3190],
"flag": "cn",
"name": "Chang'e 6"
},
{
"coordinates": [830, 735],
"flag": "jp",
"name": "S.L.I.M."
},
{
"coordinates": [400, 3360],
"flag": "in",
"name": "Chandrayaan 3"
},
{
"coordinates": [732, 3490],
"flag": "in",
"name": "Chandrayaan 1"
},
{
"coordinates": [755, 3035],
"flag": "",
"name": "T▅▚░S▅cr▅▟░M▅l▅t▅r▅░B▅s▅"
},
{
"coordinates": [628, 921],
"flag": "",
"name": "[]"
}
],
"teamGameSpawnAreas": {
"2": [
{ "x": 0, "y": 0, "width": 1308, "height": 1750 },
{ "x": 0, "y": 1750, "width": 1308, "height": 1750 }
]
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 MiB

@@ -0,0 +1,195 @@
{
"name": "mediterranean",
"nations": [
{
"coordinates": [141, 574],
"name": "Lusitania",
"flag": "SPQR"
},
{
"coordinates": [464, 519],
"name": "Terraconensis",
"flag": "SPQR"
},
{
"coordinates": [353, 787],
"name": "Baetica",
"flag": "SPQR"
},
{
"coordinates": [699, 340],
"name": "Narbonensis",
"flag": "SPQR"
},
{
"coordinates": [596, 91],
"name": "Aquitania",
"flag": "SPQR"
},
{
"coordinates": [910, 218],
"name": "Alpes",
"flag": "SPQR"
},
{
"coordinates": [1053, 39],
"name": "Raetia",
"flag": "SPQR"
},
{
"coordinates": [1316, 88],
"name": "Noricum",
"flag": "SPQR"
},
{
"coordinates": [1307, 479],
"name": "Italia",
"flag": "SPQR"
},
{
"coordinates": [1058, 534],
"name": "Corsica et Sardinia",
"flag": "SPQR"
},
{
"coordinates": [1350, 762],
"name": "Sicilia",
"flag": "SPQR"
},
{
"coordinates": [1553, 42],
"name": "Pannonia",
"flag": "SPQR"
},
{
"coordinates": [1522, 301],
"name": "Dalmatia",
"flag": "SPQR"
},
{
"coordinates": [1910, 119],
"name": "Dacia",
"flag": "SPQR"
},
{
"coordinates": [1811, 402],
"name": "Macedonia",
"flag": "SPQR"
},
{
"coordinates": [1654, 560],
"name": "Epirus",
"flag": "SPQR"
},
{
"coordinates": [1774, 774],
"name": "Achaia",
"flag": "SPQR"
},
{
"coordinates": [2030, 457],
"name": "Thracia",
"flag": "SPQR"
},
{
"coordinates": [2114, 250],
"name": "Moesia",
"flag": "SPQR"
},
{
"coordinates": [2428, 200],
"name": "Bosporan Kingdom",
"flag": ""
},
{
"coordinates": [2065, 690],
"name": "Asia",
"flag": "SPQR"
},
{
"coordinates": [2354, 505],
"name": "Pontus",
"flag": "SPQR"
},
{
"coordinates": [2325, 669],
"name": "Galatia",
"flag": "SPQR"
},
{
"coordinates": [2447, 809],
"name": "Cilicia",
"flag": "SPQR"
},
{
"coordinates": [2196, 828],
"name": "Lycia",
"flag": "SPQR"
},
{
"coordinates": [2379, 942],
"name": "Cyprus",
"flag": "SPQR"
},
{
"coordinates": [2516, 648],
"name": "Cappadocia",
"flag": "SPQR"
},
{
"coordinates": [2772, 845],
"name": "Mesopotamia",
"flag": "SPQR"
},
{
"coordinates": [2584, 990],
"name": "Syria",
"flag": "SPQR"
},
{
"coordinates": [2490, 1141],
"name": "Judaea",
"flag": "SPQR"
},
{
"coordinates": [2481, 1292],
"name": "Arabia Petraea",
"flag": "SPQR"
},
{
"coordinates": [2263, 1240],
"name": "Aegyptus",
"flag": "SPQR"
},
{
"coordinates": [1799, 1096],
"name": "Cyrenaica et Creta",
"flag": "SPQR"
},
{
"coordinates": [2815, 659],
"name": "Sassanid Empire",
"flag": "Sassanid Empire"
},
{
"coordinates": [1091, 989],
"name": "Africa Proconsularis",
"flag": "SPQR"
},
{
"coordinates": [597, 910],
"name": "Mauretania Caesariensis",
"flag": "SPQR"
},
{
"coordinates": [264, 1028],
"name": "Mauretania Tingitania",
"flag": "SPQR"
},
{
"coordinates": [584, 1199],
"name": "Numidia",
"flag": "Amazigh flag"
}
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 589 KiB

@@ -0,0 +1,35 @@
{
"name": "milkyway",
"nations": [
{
"coordinates": [775, 757],
"name": "Sagittarius A*",
"flag": ""
},
{
"coordinates": [967, 247],
"name": "Perseus Arm",
"flag": ""
},
{
"coordinates": [478, 1139],
"name": "Centaurus Arm",
"flag": ""
},
{
"coordinates": [840, 1048],
"name": "Empire of Mankind",
"flag": "un"
},
{
"coordinates": [1055, 1330],
"name": "Aliens",
"flag": ""
},
{
"coordinates": [531, 164],
"name": "The Void",
"flag": "Cthulhu Republic"
}
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 379 KiB

@@ -0,0 +1,50 @@
{
"name": "straitofmalacca",
"nations": [
{
"coordinates": [1268, 730],
"name": "Singapore",
"flag": "sg"
},
{
"coordinates": [862, 41],
"name": "Thailand",
"flag": "th"
},
{
"coordinates": [1328, 1284],
"name": "Sumatra",
"flag": "id"
},
{
"coordinates": [1141, 1090],
"name": "Burmese Pythons",
"flag": "mm"
},
{
"coordinates": [210, 243],
"name": "Aceh",
"flag": "id"
},
{
"coordinates": [1011, 736],
"name": "Riau",
"flag": "id"
},
{
"coordinates": [600, 565],
"name": "Samosir",
"flag": "id"
},
{
"coordinates": [827, 999],
"name": "Barisan",
"flag": "id"
},
{
"coordinates": [1053, 333],
"name": "Malaysia",
"flag": "my"
}
]
}
+10
View File
@@ -50,6 +50,7 @@ var maps = []struct {
{Name: "japan"},
{Name: "lisbon"},
{Name: "manicouagan"},
{Name: "straitofmalacca"},
{Name: "mars"},
{Name: "mena"},
{Name: "montreal"},
@@ -83,6 +84,15 @@ var maps = []struct {
{Name: "arctic"},
{Name: "sanfrancisco"},
{Name: "aegean"},
{Name: "milkyway"},
{Name: "mediterranean"},
{Name: "greatlakes"},
{Name: "dyslexdria"},
{Name: "luna"},
{Name: "conakry"},
{Name: "caucasus"},
{Name: "beringsea"},
{Name: "antarctica"},
{Name: "big_plains", IsTest: true},
{Name: "half_land_half_ocean", IsTest: true},
{Name: "ocean_and_land", IsTest: true},
+7 -1
View File
@@ -12,7 +12,13 @@ proxy_cache_path /var/cache/nginx/api levels=1:2 keys_zone=API_CACHE:10m inactiv
server {
listen 80 default_server;
# Large cookie support
large_client_header_buffers 4 32k;
proxy_buffer_size 32k;
proxy_busy_buffers_size 48k;
proxy_buffers 4 32k;
# Logging
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
+352 -450
View File
File diff suppressed because it is too large Load Diff
+7 -7
View File
@@ -36,7 +36,7 @@
"@types/benchmark": "^2.1.5",
"@types/chai": "^4.3.17",
"@types/d3": "^7.4.3",
"@types/express": "^4.17.23",
"@types/express": "^5.0.6",
"@types/google-protobuf": "^3.15.12",
"@types/hammerjs": "^2.0.46",
"@types/howler": "^2.2.12",
@@ -74,14 +74,14 @@
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-sh": "^0.17.4",
"protobufjs": "^7.5.3",
"protobufjs": "^7.5.5",
"sinon": "^21.0.1",
"sinon-chai": "^4.0.0",
"tailwindcss": "^4.1.18",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.26.0",
"vite": "^7.3.0",
"vite": "^7.3.2",
"vite-plugin-html": "^3.2.2",
"vite-plugin-static-copy": "^3.1.4",
"vite-tsconfig-paths": "^6.0.3",
@@ -104,11 +104,11 @@
"colord": "^2.9.3",
"colorjs.io": "^0.5.2",
"compression": "^1.8.1",
"dompurify": "^3.3.2",
"dompurify": "^3.4.0",
"dotenv": "^16.5.0",
"ejs": "^3.1.10",
"express": "^4.22.1",
"express-rate-limit": "^7.5.0",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"fastpriorityqueue": "^0.7.5",
"howler": "^2.2.4",
"intl-messageformat": "^10.7.16",
@@ -122,7 +122,7 @@
"seedrandom": "^3.0.5",
"ts-node": "^10.9.2",
"tsx": "^4.17.0",
"uuid": "^11.1.0",
"uuid": "^14.0.0",
"winston": "^3.17.0",
"ws": "^8.18.0",
"zod": "^4.0.5"
+137
View File
@@ -0,0 +1,137 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="warship" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 11 11">
<!-- Generator: Adobe Illustrator 30.1.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 136) -->
<defs>
<style>
.st0 {
fill: none;
}
.st1 {
fill: #0084d1;
}
</style>
</defs>
<rect id="_x36_-1" class="st0" x="10" y="5" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x33_-2" class="st0" x="9" y="2" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x34_-2" class="st0" x="9" y="3" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x35_-2" class="st1" x="9" y="4" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x36_-2" class="st1" x="9" y="5" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x37_-2" class="st1" x="9" y="6" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x38_-2" class="st0" x="9" y="7" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x39_-2" class="st0" x="9" y="8" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x33_-21" class="st0" x="10" y="2" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x34_-21" class="st0" x="10" y="3" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x35_-21" class="st0" x="10" y="4" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x37_-21" class="st0" x="10" y="6" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x38_-21" class="st0" x="10" y="7" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x39_-21" class="st0" x="10" y="8" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x32_-3" class="st0" x="8" y="1" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x33_-3" class="st0" x="8" y="2" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x34_-3" class="st0" x="8" y="3" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x35_-3" class="st1" x="8" y="4" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x36_-3" class="st1" x="8" y="5" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x37_-3" class="st1" x="8" y="6" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x38_-3" class="st0" x="8" y="7" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x39_-3" class="st0" x="8" y="8" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x31_0-3" class="st0" x="8" y="9" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x32_-4" class="st0" x="7" y="1" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x33_-4" class="st1" x="7" y="2" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x34_-4" class="st1" x="7" y="3" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x35_-4" class="st1" x="7" y="4" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x36_-4" class="st1" x="7" y="5" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x37_-4" class="st1" x="7" y="6" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x38_-4" class="st1" x="7" y="7" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x39_-4" class="st1" x="7" y="8" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x31_0-4" class="st0" x="7" y="9" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x32_-5" class="st0" x="6" y="1" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x33_-5" class="st1" x="6" y="2" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x34_-5" class="st1" x="6" y="3" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x35_-5" class="st1" x="6" y="4" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x36_-5" class="st1" x="6" y="5" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x37_-5" class="st1" x="6" y="6" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x38_-5" class="st1" x="6" y="7" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x39_-5" class="st1" x="6" y="8" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x31_0-5" class="st0" x="6" y="9" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x31_-6" class="st1" x="5" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x32_-6" class="st1" x="5" y="1" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x33_-6" class="st1" x="5" y="2" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x34_-6" class="st1" x="5" y="3" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x35_-6" class="st0" x="5" y="4" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x36_-6" class="st0" x="5" y="5" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x37_-6" class="st0" x="5" y="6" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x38_-6" class="st1" x="5" y="7" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x39_-6" class="st1" x="5" y="8" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x31_0-6" class="st1" x="5" y="9" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x31_1-6" class="st1" x="5" y="10" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x32_-7" class="st1" x="4" y="1" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x33_-7" class="st1" x="4" y="2" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x34_-7" class="st1" x="4" y="3" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x35_-7" class="st0" x="4" y="4" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x36_-7" class="st0" x="4" y="5" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x37_-7" class="st0" x="4" y="6" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x38_-7" class="st1" x="4" y="7" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x39_-7" class="st1" x="4" y="8" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x31_0-7" class="st1" x="4" y="9" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x32_-8" class="st1" x="3" y="1" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x32_-81" class="st0" x="3" y="2" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x34_-8" class="st0" x="3" y="3" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x35_-8" class="st0" x="3" y="4" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x36_-8" class="st0" x="3" y="5" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x37_-8" class="st0" x="3" y="6" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x38_-8" class="st0" x="3" y="7" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x39_-8" class="st0" x="3" y="8" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x31_0-8" class="st1" x="3" y="9" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x32_-9" class="st1" x="2" y="1" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x33_-9" class="st0" x="2" y="2" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x34_-9" class="st0" x="2" y="3" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x35_-9" class="st0" x="2" y="4" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x36_-9" class="st0" x="2" y="5" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x37_-9" class="st0" x="2" y="6" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x38_-9" class="st0" x="2" y="7" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x39_-9" class="st0" x="2" y="8" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x31_0-9" class="st1" x="2" y="9" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x33_-10" class="st0" x="1" y="2" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x34_-10" class="st0" x="1" y="3" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x35_-10" class="st0" x="1" y="4" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x36_-10" class="st0" x="1" y="5" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x37_-10" class="st0" x="1" y="6" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x38_-10" class="st0" x="1" y="7" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x39_-10" class="st0" x="1" y="8" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x33_-101" class="st0" y="2" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x33_-22" class="st0" x="9" y="1" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x33_-23" class="st0" x="10" y="1" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x33_-102" class="st0" x="1" y="1" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x33_-103" class="st0" y="1" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x32_-31" class="st0" x="8" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x32_-41" class="st0" x="7" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x32_-51" class="st0" x="6" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x32_-71" class="st1" x="4" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x32_-82" class="st1" x="3" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x32_-91" class="st1" x="2" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x33_-24" class="st0" x="9" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x33_-25" class="st0" x="10" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x33_-104" class="st0" x="1" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x33_-105" class="st0" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x33_-106" class="st0" width="11" height="11" shape-rendering="crispEdges"/>
<rect id="_x34_-101" class="st0" y="3" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x35_-101" class="st0" y="4" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x37_-101" class="st0" y="6" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x38_-101" class="st0" y="7" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x39_-101" class="st0" y="8" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x39_-22" class="st0" x="9" y="9" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x39_-23" class="st0" x="10" y="9" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x39_-102" class="st0" x="1" y="9" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x39_-103" class="st0" y="9" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x31_0-31" class="st0" x="8" y="10" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x31_0-41" class="st0" x="7" y="10" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x31_0-51" class="st0" x="6" y="10" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x31_0-71" class="st1" x="4" y="10" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x31_0-81" class="st1" x="3" y="10" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x31_0-91" class="st1" x="2" y="10" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x39_-24" class="st0" x="9" y="10" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x39_-25" class="st0" x="10" y="10" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x39_-104" class="st0" x="1" y="10" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x39_-105" class="st0" y="10" width="1" height="1" shape-rendering="crispEdges"/>
<rect id="_x36_-11" class="st0" y="5" width="1" height="1" shape-rendering="crispEdges"/>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Before

Width:  |  Height:  |  Size: 80 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

+108
View File
@@ -0,0 +1,108 @@
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 1364 259"
>
<path d="M0 0 C13.53 0 27.06 0 41 0 C41 2.97 41 5.94 41 9 C42.32 9 43.64 9 45 9 C45 11.97 45 14.94 45 18 C46.32 18 47.64 18 49 18 C49 20.97 49 23.94 49 27 C50.65 27 52.3 27 54 27 C54 31.29 54 35.58 54 40 C55.32 40 56.64 40 58 40 C58 42.64 58 45.28 58 48 C59.32 48 60.64 48 62 48 C62 50.97 62 53.94 62 57 C63.32 57 64.64 57 66 57 C66 38.19 66 19.38 66 0 C79.2 0 92.4 0 106 0 C106 43.89 106 87.78 106 133 C92.8 133 79.6 133 66 133 C66 131.35 66 129.7 66 128 C64.35 128 62.7 128 61 128 C61 125.03 61 122.06 61 119 C59.68 119 58.36 119 57 119 C57 116.36 57 113.72 57 111 C55.68 111 54.36 111 53 111 C53 108.03 53 105.06 53 102 C51.35 102 49.7 102 48 102 C48 97.71 48 93.42 48 89 C46.68 89 45.36 89 44 89 C44 86.03 44 83.06 44 80 C43.01 80 42.02 80 41 80 C41 97.49 41 114.98 41 133 C27.47 133 13.94 133 0 133 C0 89.11 0 45.22 0 0 Z " fill="#0073B7" transform="translate(937,79)"/>
<path d="M0 0 C13.2 0 26.4 0 40 0 C40 2.97 40 5.94 40 9 C41.65 9 43.3 9 45 9 C45 11.97 45 14.94 45 18 C46.32 18 47.64 18 49 18 C49 20.97 49 23.94 49 27 C50.32 27 51.64 27 53 27 C53 31.29 53 35.58 53 40 C54.65 40 56.3 40 58 40 C58 42.64 58 45.28 58 48 C59.32 48 60.64 48 62 48 C62 50.97 62 53.94 62 57 C63.32 57 64.64 57 66 57 C66 38.19 66 19.38 66 0 C79.2 0 92.4 0 106 0 C106 43.89 106 87.78 106 133 C92.8 133 79.6 133 66 133 C66 131.35 66 129.7 66 128 C64.35 128 62.7 128 61 128 C61 125.03 61 122.06 61 119 C59.68 119 58.36 119 57 119 C57 116.36 57 113.72 57 111 C55.35 111 53.7 111 52 111 C52 108.03 52 105.06 52 102 C50.68 102 49.36 102 48 102 C48 97.71 48 93.42 48 89 C46.68 89 45.36 89 44 89 C44 86.03 44 83.06 44 80 C42.68 80 41.36 80 40 80 C40 97.49 40 114.98 40 133 C26.8 133 13.6 133 0 133 C0 89.11 0 45.22 0 0 Z " fill="#0072B5" transform="translate(495,79)"/>
<path d="M0 0 C27.72 0 55.44 0 84 0 C84 1.65 84 3.3 84 5 C85.65 5 87.3 5 89 5 C89 6.32 89 7.64 89 9 C90.32 9 91.64 9 93 9 C93 10.32 93 11.64 93 13 C94.65 13 96.3 13 98 13 C98 14.65 98 16.3 98 18 C99.32 18 100.64 18 102 18 C102 38.46 102 58.92 102 80 C100.68 80 99.36 80 98 80 C98 81.65 98 83.3 98 85 C96.35 85 94.7 85 93 85 C93 85.99 93 86.98 93 88 C94.65 88 96.3 88 98 88 C98 89.32 98 90.64 98 92 C99.32 92 100.64 92 102 92 C102 105.53 102 119.06 102 133 C90.12 133 78.24 133 66 133 C66 122.77 66 112.54 66 102 C56.1 102 46.2 102 36 102 C36 112.23 36 122.46 36 133 C24.12 133 12.24 133 0 133 C0 89.11 0 45.22 0 0 Z M36 36 C36 45.9 36 55.8 36 66 C44.58 66 53.16 66 62 66 C62 64.68 62 63.36 62 62 C63.32 62 64.64 62 66 62 C66 55.07 66 48.14 66 41 C64.68 41 63.36 41 62 41 C62 39.35 62 37.7 62 36 C53.42 36 44.84 36 36 36 Z " fill="#0072B6" transform="translate(718,79)"/>
<path d="M0 0 C33.66 0 67.32 0 102 0 C102 13.2 102 26.4 102 40 C81.54 40 61.08 40 40 40 C40 44.29 40 48.58 40 53 C54.85 53 69.7 53 85 53 C85 61.91 85 70.82 85 80 C70.15 80 55.3 80 40 80 C40 83.96 40 87.92 40 92 C60.46 92 80.92 92 102 92 C102 105.2 102 118.4 102 132 C68.34 132 34.68 132 0 132 C0 88.44 0 44.88 0 0 Z " fill="#0073B6" transform="translate(385,79)"/>
<path d="M0 0 C22.11 0 44.22 0 67 0 C67 1.32 67 2.64 67 4 C68.32 4 69.64 4 71 4 C71 5.65 71 7.3 71 9 C72.32 9 73.64 9 75 9 C75 10.32 75 11.64 75 13 C76.65 13 78.3 13 80 13 C80 14.65 80 16.3 80 18 C81.32 18 82.64 18 84 18 C84 50.01 84 82.02 84 115 C82.68 115 81.36 115 80 115 C80 116.32 80 117.64 80 119 C78.35 119 76.7 119 75 119 C75 120.65 75 122.3 75 124 C73.68 124 72.36 124 71 124 C71 125.32 71 126.64 71 128 C69.68 128 68.36 128 67 128 C67 129.32 67 130.64 67 132 C44.89 132 22.78 132 0 132 C0 130.68 0 129.36 0 128 C-1.32 128 -2.64 128 -4 128 C-4 126.68 -4 125.36 -4 124 C-5.65 124 -7.3 124 -9 124 C-9 122.35 -9 120.7 -9 119 C-10.32 119 -11.64 119 -13 119 C-13 117.68 -13 116.36 -13 115 C-14.65 115 -16.3 115 -18 115 C-18 82.99 -18 50.98 -18 18 C-16.35 18 -14.7 18 -13 18 C-13 16.35 -13 14.7 -13 13 C-11.68 13 -10.36 13 -9 13 C-9 11.68 -9 10.36 -9 9 C-7.35 9 -5.7 9 -4 9 C-4 7.35 -4 5.7 -4 4 C-2.68 4 -1.36 4 0 4 C0 2.68 0 1.36 0 0 Z M19 36 C19 54.48 19 72.96 19 92 C28.57 92 38.14 92 48 92 C48 73.52 48 55.04 48 36 C38.43 36 28.86 36 19 36 Z " fill="#0073B7" transform="translate(184,79)"/>
<path d="M0 0 C22.11 0 44.22 0 67 0 C67 1.32 67 2.64 67 4 C68.32 4 69.64 4 71 4 C71 5.65 71 7.3 71 9 C72.65 9 74.3 9 76 9 C76 10.32 76 11.64 76 13 C77.32 13 78.64 13 80 13 C80 14.65 80 16.3 80 18 C81.32 18 82.64 18 84 18 C84 50.01 84 82.02 84 115 C82.68 115 81.36 115 80 115 C80 116.32 80 117.64 80 119 C78.68 119 77.36 119 76 119 C76 120.65 76 122.3 76 124 C74.35 124 72.7 124 71 124 C71 125.32 71 126.64 71 128 C69.68 128 68.36 128 67 128 C67 129.32 67 130.64 67 132 C44.89 132 22.78 132 0 132 C0 130.68 0 129.36 0 128 C-1.32 128 -2.64 128 -4 128 C-4 126.68 -4 125.36 -4 124 C-5.65 124 -7.3 124 -9 124 C-9 122.35 -9 120.7 -9 119 C-10.32 119 -11.64 119 -13 119 C-13 117.68 -13 116.36 -13 115 C-14.32 115 -15.64 115 -17 115 C-17 82.99 -17 50.98 -17 18 C-15.68 18 -14.36 18 -13 18 C-13 16.35 -13 14.7 -13 13 C-11.68 13 -10.36 13 -9 13 C-9 11.68 -9 10.36 -9 9 C-7.35 9 -5.7 9 -4 9 C-4 7.35 -4 5.7 -4 4 C-2.68 4 -1.36 4 0 4 C0 2.68 0 1.36 0 0 Z M19 36 C19 54.48 19 72.96 19 92 C28.57 92 38.14 92 48 92 C48 73.52 48 55.04 48 36 C38.43 36 28.86 36 19 36 Z " fill="#0073B6" transform="translate(845,79)"/>
<path d="M0 0 C27.72 0 55.44 0 84 0 C84 1.32 84 2.64 84 4 C85.65 4 87.3 4 89 4 C89 5.65 89 7.3 89 9 C90.32 9 91.64 9 93 9 C93 10.32 93 11.64 93 13 C94.32 13 95.64 13 97 13 C97 14.65 97 16.3 97 18 C98.65 18 100.3 18 102 18 C102 34.17 102 50.34 102 67 C100.35 67 98.7 67 97 67 C97 68.32 97 69.64 97 71 C95.68 71 94.36 71 93 71 C93 72.65 93 74.3 93 76 C91.68 76 90.36 76 89 76 C89 77.32 89 78.64 89 80 C87.35 80 85.7 80 84 80 C84 81.32 84 82.64 84 84 C68.16 84 52.32 84 36 84 C36 99.84 36 115.68 36 132 C24.12 132 12.24 132 0 132 C0 88.44 0 44.88 0 0 Z M36 30 C36 37.92 36 45.84 36 54 C45.9 54 55.8 54 66 54 C66 52.68 66 51.36 66 50 C67.32 50 68.64 50 70 50 C70 44.72 70 39.44 70 34 C68.68 34 67.36 34 66 34 C66 32.68 66 31.36 66 30 C56.1 30 46.2 30 36 30 Z " fill="#0073B6" transform="translate(276,79)"/>
<path d="M0 0 C33.33 0 66.66 0 101 0 C101 13.53 101 27.06 101 41 C79.55 41 58.1 41 36 41 C36 44.96 36 48.92 36 53 C52.17 53 68.34 53 85 53 C85 63.23 85 73.46 85 84 C68.83 84 52.66 84 36 84 C36 99.84 36 115.68 36 132 C24.12 132 12.24 132 0 132 C0 88.44 0 44.88 0 0 Z " fill="#0072B5" transform="translate(609,79)"/>
<path d="M0 0 C30.69 0 61.38 0 93 0 C93 13.53 93 27.06 93 41 C84.42 41 75.84 41 67 41 C67 71.36 67 101.72 67 133 C53.47 133 39.94 133 26 133 C26 102.64 26 72.28 26 41 C17.42 41 8.84 41 0 41 C0 27.47 0 13.94 0 0 Z " fill="#0072B5" transform="translate(1051,79)"/>
<path d="M0 0 C11.88 0 23.76 0 36 0 C36 5.94 36 11.88 36 18 C30.06 18 24.12 18 18 18 C18 23.94 18 29.88 18 36 C12.39 36 6.78 36 1 36 C1 41.61 1 47.22 1 53 C6.61 53 12.22 53 18 53 C18 58.61 18 64.22 18 70 C23.94 70 29.88 70 36 70 C36 76.27 36 82.54 36 89 C24.12 89 12.24 89 0 89 C0 83.06 0 77.12 0 71 C-5.94 71 -11.88 71 -18 71 C-18 65.39 -18 59.78 -18 54 C-23.61 54 -29.22 54 -35 54 C-35 47.73 -35 41.46 -35 35 C-29.39 35 -23.78 35 -18 35 C-18 29.06 -18 23.12 -18 17 C-12.06 17 -6.12 17 0 17 C0 11.39 0 5.78 0 0 Z " fill="#0071B4" transform="translate(1191,101)"/>
<path d="M0 0 C11.88 0 23.76 0 36 0 C36 5.61 36 11.22 36 17 C41.94 17 47.88 17 54 17 C54 22.94 54 28.88 54 35 C59.61 35 65.22 35 71 35 C71 41.27 71 47.54 71 54 C65.39 54 59.78 54 54 54 C54 59.61 54 65.22 54 71 C48.06 71 42.12 71 36 71 C36 76.94 36 82.88 36 89 C24.12 89 12.24 89 0 89 C0 82.73 0 76.46 0 70 C5.94 70 11.88 70 18 70 C18 64.39 18 58.78 18 53 C23.61 53 29.22 53 35 53 C35 47.39 35 41.78 35 36 C29.39 36 23.78 36 18 36 C18 30.06 18 24.12 18 18 C12.06 18 6.12 18 0 18 C0 12.06 0 6.12 0 0 Z " fill="#0072B5" transform="translate(83,101)"/>
<path d="M0 0 C6 5 6 5 6.73828697 7.52055836 C6.73275621 8.41561934 6.72722546 9.31068033 6.7215271 10.23286438 C6.72977509 11.2662645 6.73802307 12.29966461 6.746521 13.36437988 C6.72494934 14.4871936 6.70337769 15.61000732 6.68115234 16.7668457 C6.6820285 17.95751144 6.68290466 19.14817719 6.68380737 20.37492371 C6.68034836 23.63134399 6.65030576 26.88620822 6.60836363 30.14231896 C6.57080178 33.54819462 6.56732705 36.95410237 6.56021118 40.3601532 C6.54157804 46.80598653 6.49236287 53.25120776 6.43211424 59.6967718 C6.36500051 67.03644379 6.33204807 74.37614534 6.30194163 81.71604788 C6.23926161 96.81103938 6.13375749 111.90545842 6 127 C7.13117249 126.98889694 8.26234497 126.97779388 9.42779541 126.96635437 C20.08094918 126.86505577 30.73400542 126.79007172 41.38753128 126.74093914 C46.8648407 126.71483037 52.34176177 126.67940843 57.81884766 126.62280273 C63.1032468 126.5685294 68.38727209 126.53858911 73.67192841 126.52561378 C75.68942909 126.51636554 77.706909 126.49830594 79.72425079 126.47134972 C82.54741341 126.43512165 85.36902566 126.43005204 88.19238281 126.43237305 C89.02891891 126.41439667 89.86545502 126.39642029 90.7273407 126.37789917 C93.06427002 126.39872742 93.06427002 126.39872742 97 127 C98.32 128.65 99.64 130.3 101 132 C67.67 132 34.34 132 0 132 C0 88.44 0 44.88 0 0 Z " fill="#006199" transform="translate(385,79)"/>
<path d="M0 0 C6 5 6 5 6.68115234 8.3215332 C6.64973145 9.55218506 6.61831055 10.78283691 6.5859375 12.05078125 C6.57744781 12.70958786 6.56895813 13.36839447 6.56021118 14.04716492 C6.52680339 16.13732314 6.45157577 18.22352271 6.375 20.3125 C6.34488282 21.73497003 6.31751005 23.15750098 6.29296875 24.58007812 C6.23216351 28.05611079 6.11481474 31.52366486 6 35 C14.58 35 23.16 35 32 35 C32 65.36 32 95.72 32 127 C41.57 127 51.14 127 61 127 C62.65 128.98 64.3 130.96 66 133 C52.8 133 39.6 133 26 133 C26 102.64 26 72.28 26 41 C17.42 41 8.84 41 0 41 C0 27.47 0 13.94 0 0 Z " fill="#00619A" transform="translate(1051,79)"/>
<path d="M0 0 C4 2 4 2 6 4 C6.18813821 6.80149514 6.2517501 9.50336003 6.22705078 12.30517578 C6.22734283 13.16378204 6.22763489 14.02238831 6.22793579 14.90701294 C6.22653922 17.75321457 6.21096273 20.59915644 6.1953125 23.4453125 C6.19158353 25.41543434 6.18873601 27.38555802 6.18673706 29.35568237 C6.17909146 34.54743548 6.15943504 39.73907714 6.1373291 44.93078613 C6.1168906 50.2259775 6.10773962 55.52118683 6.09765625 60.81640625 C6.07619001 71.21098654 6.04204292 81.60548401 6 92 C7.32 92 8.64 92 10 92 C10 93.32 10 94.64 10 96 C11.65 96 13.3 96 15 96 C15 97.32 15 98.64 15 100 C16.32 100 17.64 100 19 100 C19 101.65 19 103.3 19 105 C20.32 105 21.64 105 23 105 C23 106.32 23 107.64 23 109 C23.69268982 108.98889694 24.38537964 108.97779388 25.09906006 108.96635437 C32.30126059 108.85583344 39.50322072 108.78036222 46.70605469 108.7253418 C49.39515032 108.70300037 52.08365794 108.66819407 54.77246094 108.62280273 C58.63493744 108.56222884 62.49651062 108.53380583 66.359375 108.51171875 C68.16580475 108.47300911 68.16580475 108.47300911 70.00872803 108.43351746 C71.69001801 108.43295097 71.69001801 108.43295097 73.40527344 108.43237305 C74.39122498 108.42126999 75.37717651 108.41016693 76.39300537 108.39872742 C79 109 79 109 83 114 C61.55 114 40.1 114 18 114 C18 112.68 18 111.36 18 110 C16.68 110 15.36 110 14 110 C14 108.68 14 107.36 14 106 C12.35 106 10.7 106 9 106 C9 104.35 9 102.7 9 101 C7.68 101 6.36 101 5 101 C5 99.68 5 98.36 5 97 C3.35 97 1.7 97 0 97 C0 64.99 0 32.98 0 0 Z " fill="#006199" transform="translate(166,97)"/>
<path d="M0 0 C6 5 6 5 6.73828697 7.52055836 C6.73275621 8.41561934 6.72722546 9.31068033 6.7215271 10.23286438 C6.72977509 11.2662645 6.73802307 12.29966461 6.746521 13.36437988 C6.72494934 14.4871936 6.70337769 15.61000732 6.68115234 16.7668457 C6.6820285 17.95751144 6.68290466 19.14817719 6.68380737 20.37492371 C6.68034836 23.63134399 6.65030576 26.88620822 6.60836363 30.14231896 C6.57080178 33.54819462 6.56732705 36.95410237 6.56021118 40.3601532 C6.54157804 46.80598653 6.49236287 53.25120776 6.43211424 59.6967718 C6.36500051 67.03644379 6.33204807 74.37614534 6.30194163 81.71604788 C6.23926161 96.81103938 6.13375749 111.90545842 6 127 C6.85231201 126.9685791 7.70462402 126.9371582 8.58276367 126.90478516 C11.76024304 126.802223 14.93687639 126.72716415 18.11547852 126.67041016 C19.4881575 126.6403267 20.86064563 126.59944666 22.23266602 126.54736328 C24.21024621 126.47419927 26.18925709 126.44366916 28.16796875 126.4140625 C29.35672607 126.3826416 30.5454834 126.3512207 31.77026367 126.31884766 C35 127 35 127 40 133 C26.8 133 13.6 133 0 133 C0 89.11 0 45.22 0 0 Z " fill="#00619A" transform="translate(937,79)"/>
<path d="M0 0 C5 4 5 4 5.60127258 7.82183838 C5.61573991 9.39194118 5.60253054 10.9624451 5.56762695 12.53222656 C5.56835709 13.39112488 5.56908722 14.25002319 5.56983948 15.13494873 C5.56635903 17.97081905 5.52747699 20.80504204 5.48828125 23.640625 C5.47895474 25.60788068 5.47183786 27.57514798 5.46684265 29.54241943 C5.44776018 34.71797805 5.3986483 39.89283405 5.34332275 45.06811523 C5.2921574 50.35000097 5.26933439 55.63200033 5.24414062 60.9140625 C5.19053103 71.27635022 5.10520284 81.63811666 5 92 C6.32 92 7.64 92 9 92 C9 93.32 9 94.64 9 96 C10.65 96 12.3 96 14 96 C14 97.32 14 98.64 14 100 C15.32 100 16.64 100 18 100 C18 101.65 18 103.3 18 105 C19.65 105 21.3 105 23 105 C23 106.32 23 107.64 23 109 C23.67794113 108.98889694 24.35588226 108.97779388 25.05436707 108.96635437 C32.11073634 108.85573213 39.1668593 108.78032012 46.22387695 108.7253418 C48.85744227 108.70019843 51.49093782 108.66607916 54.12426758 108.62280273 C57.90984309 108.5621479 61.69449598 108.5337873 65.48046875 108.51171875 C67.2463459 108.47300911 67.2463459 108.47300911 69.04789734 108.43351746 C70.14866104 108.4331398 71.24942474 108.43276215 72.38354492 108.43237305 C73.34951096 108.42126999 74.31547699 108.41016693 75.31071472 108.39872742 C78 109 78 109 83 114 C61.22 114 39.44 114 17 114 C17 112.68 17 111.36 17 110 C15.68 110 14.36 110 13 110 C13 108.68 13 107.36 13 106 C11.35 106 9.7 106 8 106 C8 104.35 8 102.7 8 101 C6.68 101 5.36 101 4 101 C4 99.68 4 98.36 4 97 C2.68 97 1.36 97 0 97 C0 64.99 0 32.98 0 0 Z " fill="#006099" transform="translate(828,97)"/>
<path d="M0 0 C6 5 6 5 6.73828697 7.52055836 C6.73275621 8.41561934 6.72722546 9.31068033 6.7215271 10.23286438 C6.72977509 11.2662645 6.73802307 12.29966461 6.746521 13.36437988 C6.72494934 14.4871936 6.70337769 15.61000732 6.68115234 16.7668457 C6.6820285 17.95751144 6.68290466 19.14817719 6.68380737 20.37492371 C6.68034836 23.63134399 6.65030576 26.88620822 6.60836363 30.14231896 C6.57080178 33.54819462 6.56732705 36.95410237 6.56021118 40.3601532 C6.54157804 46.80598653 6.49236287 53.25120776 6.43211424 59.6967718 C6.36500051 67.03644379 6.33204807 74.37614534 6.30194163 81.71604788 C6.23926161 96.81103938 6.13375749 111.90545842 6 127 C6.73114014 126.9685791 7.46228027 126.9371582 8.21557617 126.90478516 C11.53923402 126.77980191 14.86239762 126.70194452 18.1875 126.625 C19.33798828 126.57472656 20.48847656 126.52445312 21.67382812 126.47265625 C23.34155273 126.44365234 23.34155273 126.44365234 25.04296875 126.4140625 C26.06414795 126.3826416 27.08532715 126.3512207 28.13745117 126.31884766 C31 127 31 127 36 133 C24.12 133 12.24 133 0 133 C0 89.11 0 45.22 0 0 Z " fill="#00619A" transform="translate(718,79)"/>
<path d="M0 0 C13.2 0 26.4 0 40 0 C40 43.89 40 87.78 40 133 C34 127 34 127 33.87695217 124.97163296 C33.87787396 124.0728848 33.87879576 123.17413664 33.87974548 122.24815369 C33.87837082 121.22025223 33.87699615 120.19235077 33.87557983 119.13330078 C33.88097275 117.42750854 33.88097275 117.42750854 33.88647461 115.68725586 C33.88632858 114.49717422 33.88618256 113.30709259 33.8860321 112.08094788 C33.88661106 108.80836726 33.89164019 105.53582893 33.89860606 102.26325679 C33.90484033 98.84661335 33.90544346 95.42996917 33.90663147 92.01332092 C33.90974457 85.53930733 33.91795767 79.06531054 33.92798096 72.59130436 C33.93914275 65.2226208 33.94465271 57.85393645 33.94967639 50.48524654 C33.96014031 35.32348831 33.97773934 20.16174583 34 5 C33.1121582 5.02618408 32.22431641 5.05236816 31.30957031 5.0793457 C28.00699595 5.1646975 24.70559725 5.22730652 21.40234375 5.2746582 C19.97442099 5.29976347 18.54662625 5.33385587 17.11914062 5.37719727 C15.06348082 5.43803678 13.00952247 5.46624551 10.953125 5.48828125 C9.09929199 5.52755737 9.09929199 5.52755737 7.20800781 5.56762695 C4 5 4 5 0 0 Z " fill="#007AC3" transform="translate(561,79)"/>
<path d="M0 0 C5 4 5 4 5.61523914 6.39751053 C5.61063018 7.29349331 5.60602121 8.18947609 5.60127258 9.11260986 C5.6081459 10.14463531 5.61501923 11.17666077 5.62210083 12.23995972 C5.60412445 13.36636871 5.58614807 14.49277771 5.56762695 15.65332031 C5.56835709 16.84384003 5.56908722 18.03435974 5.56983948 19.26095581 C5.56695394 22.52137515 5.54189045 25.78071982 5.50696969 29.04092503 C5.47570084 32.44949734 5.47277508 35.85809106 5.46684265 39.26678467 C5.45130559 45.71964418 5.41027958 52.17207984 5.3600952 58.62475276 C5.30419697 65.97168325 5.27671413 73.31863405 5.25161803 80.66572428 C5.19936315 95.77738563 5.11142414 110.88865042 5 126 C6.3317627 125.9685791 6.3317627 125.9685791 7.69042969 125.93652344 C10.99294455 125.86824323 14.2947067 125.8181513 17.59765625 125.78027344 C19.02551121 125.76019018 20.45328425 125.73291748 21.88085938 125.69824219 C23.93640368 125.64957331 25.99085855 125.62700033 28.046875 125.609375 C29.28276367 125.58842773 30.51865234 125.56748047 31.79199219 125.54589844 C35 126 35 126 37.43457031 127.89941406 C39 130 39 130 39 132 C26.13 132 13.26 132 0 132 C0 88.44 0 44.88 0 0 Z " fill="#006099" transform="translate(495,80)"/>
<path d="M0 0 C5 4 5 4 5.61523914 6.39751053 C5.61063018 7.29349331 5.60602121 8.18947609 5.60127258 9.11260986 C5.6081459 10.14463531 5.61501923 11.17666077 5.62210083 12.23995972 C5.60412445 13.36636871 5.58614807 14.49277771 5.56762695 15.65332031 C5.56835709 16.84384003 5.56908722 18.03435974 5.56983948 19.26095581 C5.56695394 22.52137515 5.54189045 25.78071982 5.50696969 29.04092503 C5.47570084 32.44949734 5.47277508 35.85809106 5.46684265 39.26678467 C5.45130559 45.71964418 5.41027958 52.17207984 5.3600952 58.62475276 C5.30419697 65.97168325 5.27671413 73.31863405 5.25161803 80.66572428 C5.19936315 95.77738563 5.11142414 110.88865042 5 126 C5.76666992 125.97381592 6.53333984 125.94763184 7.32324219 125.9206543 C10.79861949 125.81668777 14.27366983 125.75167276 17.75 125.6875 C18.9565625 125.64560547 20.163125 125.60371094 21.40625 125.56054688 C22.56640625 125.54443359 23.7265625 125.52832031 24.921875 125.51171875 C25.99018555 125.48553467 27.05849609 125.45935059 28.15917969 125.43237305 C31 126 31 126 35 131 C23.45 131 11.9 131 0 131 C0 87.77 0 44.54 0 0 Z " fill="#006098" transform="translate(276,80)"/>
<path d="M0 0 C5 4 5 4 5.61523914 6.39751053 C5.61063018 7.29349331 5.60602121 8.18947609 5.60127258 9.11260986 C5.6081459 10.14463531 5.61501923 11.17666077 5.62210083 12.23995972 C5.60412445 13.36636871 5.58614807 14.49277771 5.56762695 15.65332031 C5.56835709 16.84384003 5.56908722 18.03435974 5.56983948 19.26095581 C5.56695394 22.52137515 5.54189045 25.78071982 5.50696969 29.04092503 C5.47570084 32.44949734 5.47277508 35.85809106 5.46684265 39.26678467 C5.45130559 45.71964418 5.41027958 52.17207984 5.3600952 58.62475276 C5.30419697 65.97168325 5.27671413 73.31863405 5.25161803 80.66572428 C5.19936315 95.77738563 5.11142414 110.88865042 5 126 C5.73114014 125.97381592 6.46228027 125.94763184 7.21557617 125.9206543 C10.53933082 125.81649856 13.86274194 125.75161379 17.1875 125.6875 C18.33798828 125.64560547 19.48847656 125.60371094 20.67382812 125.56054688 C22.34155273 125.53637695 22.34155273 125.53637695 24.04296875 125.51171875 C25.57473755 125.47244263 25.57473755 125.47244263 27.13745117 125.43237305 C30 126 30 126 35 131 C23.45 131 11.9 131 0 131 C0 87.77 0 44.54 0 0 Z " fill="#006098" transform="translate(609,80)"/>
<path d="M0 0 C4.29 0 8.58 0 13 0 C13 2.64 13 5.28 13 8 C14.65 8 16.3 8 18 8 C18 12.62 18 17.24 18 22 C19.32 22 20.64 22 22 22 C22 24.64 22 27.28 22 30 C23.32 30 24.64 30 26 30 C26 32.97 26 35.94 26 39 C27.65 39 29.3 39 31 39 C31 41.97 31 44.94 31 48 C32.32 48 33.64 48 35 48 C35 49.32 35 50.64 35 52 C35.8878418 51.97905273 36.77568359 51.95810547 37.69042969 51.93652344 C40.99294455 51.86824323 44.2947067 51.8181513 47.59765625 51.78027344 C49.02551121 51.76019018 50.45328425 51.73291748 51.88085938 51.69824219 C53.93640368 51.64957331 55.99085855 51.62700033 58.046875 51.609375 C59.90070801 51.5779541 59.90070801 51.5779541 61.79199219 51.54589844 C65 52 65 52 67.43457031 53.89941406 C69 56 69 56 69 58 C56.13 58 43.26 58 30 58 C30 56.35 30 54.7 30 53 C28.35 53 26.7 53 25 53 C25 50.03 25 47.06 25 44 C23.68 44 22.36 44 21 44 C21 41.36 21 38.72 21 36 C19.35 36 17.7 36 16 36 C16 33.03 16 30.06 16 27 C14.68 27 13.36 27 12 27 C12 22.71 12 18.42 12 14 C10.68 14 9.36 14 8 14 C8 11.03 8 8.06 8 5 C7.236875 5.061875 6.47375 5.12375 5.6875 5.1875 C3 5 3 5 1.1875 3.625 C0 2 0 2 0 0 Z " fill="#00619A" transform="translate(531,154)"/>
<path d="M0 0 C33.33 0 66.66 0 101 0 C101 13.2 101 26.4 101 40 C96 36 96 36 95.43237305 32.70019531 C95.45855713 31.42241211 95.48474121 30.14462891 95.51171875 28.828125 C95.51879349 28.1457074 95.52586823 27.46328979 95.53315735 26.76019287 C95.56105979 24.58899439 95.62377747 22.42041332 95.6875 20.25 C95.71258883 18.77477694 95.735401 17.29951329 95.75585938 15.82421875 C95.81086863 12.21530096 95.89710693 8.60790609 96 5 C94.85629944 5.01110306 93.71259888 5.02220612 92.53424072 5.03364563 C81.76335676 5.13494209 70.99256926 5.20992727 60.22131729 5.25906086 C54.68347595 5.28517016 49.1460187 5.32059311 43.60839844 5.37719727 C38.26564502 5.43146864 32.92326136 5.46141049 27.5802536 5.47438622 C25.54042488 5.4836348 23.50061671 5.50169506 21.46094513 5.52865028 C18.60665438 5.56487563 15.75389718 5.56994806 12.89941406 5.56762695 C11.6305838 5.59459152 11.6305838 5.59459152 10.33612061 5.62210083 C9.55651978 5.61522751 8.77691895 5.60835419 7.97369385 5.60127258 C7.29894138 5.60588155 6.62418892 5.61049051 5.92898941 5.61523914 C4 5 4 5 0 0 Z " fill="#007AC1" transform="translate(609,79)"/>
<path d="M0 0 C4.29 0 8.58 0 13 0 C13 2.97 13 5.94 13 9 C14.65 9 16.3 9 18 9 C18 13.29 18 17.58 18 22 C19.32 22 20.64 22 22 22 C22 24.64 22 27.28 22 30 C23.65 30 25.3 30 27 30 C27 32.97 27 35.94 27 39 C28.32 39 29.64 39 31 39 C31 41.97 31 44.94 31 48 C32.32 48 33.64 48 35 48 C35 49.32 35 50.64 35 52 C35.8878418 51.97905273 36.77568359 51.95810547 37.69042969 51.93652344 C40.99294455 51.86824323 44.2947067 51.8181513 47.59765625 51.78027344 C49.02551121 51.76019018 50.45328425 51.73291748 51.88085938 51.69824219 C53.93640368 51.64957331 55.99085855 51.62700033 58.046875 51.609375 C59.90070801 51.5779541 59.90070801 51.5779541 61.79199219 51.54589844 C65 52 65 52 67.43457031 53.89941406 C69 56 69 56 69 58 C56.13 58 43.26 58 30 58 C30 56.35 30 54.7 30 53 C28.35 53 26.7 53 25 53 C25 50.03 25 47.06 25 44 C23.68 44 22.36 44 21 44 C21 41.36 21 38.72 21 36 C19.68 36 18.36 36 17 36 C17 33.03 17 30.06 17 27 C15.35 27 13.7 27 12 27 C12 22.71 12 18.42 12 14 C10.68 14 9.36 14 8 14 C8 11.03 8 8.06 8 5 C7.236875 4.9175 6.47375 4.835 5.6875 4.75 C3 4 3 4 0 0 Z " fill="#00619A" transform="translate(973,154)"/>
<path d="M0 0 C30.36 0 60.72 0 92 0 C92 13.53 92 27.06 92 41 C86 35 86 35 85.88647461 32.13256836 C85.89432983 30.25516968 85.89432983 30.25516968 85.90234375 28.33984375 C85.9037587 27.67537735 85.90517365 27.01091095 85.90663147 26.3263092 C85.91224482 24.19666101 85.92479946 22.06711661 85.9375 19.9375 C85.94251329 18.49674631 85.94707649 17.05599097 85.95117188 15.61523438 C85.96221855 12.07678898 85.97949208 8.53840461 86 5 C84.9815802 5.01110306 83.9631604 5.02220612 82.91387939 5.03364563 C73.32029847 5.13496589 63.72682596 5.20993851 54.13283157 5.25906086 C49.20030687 5.2851643 44.26821378 5.32057597 39.3359375 5.37719727 C34.57672632 5.43149044 29.81793048 5.4614149 25.05843353 5.47438622 C23.24188446 5.48363096 21.42535834 5.50168395 19.6089859 5.52865028 C17.06597121 5.5649059 14.52467651 5.56994698 11.98144531 5.56762695 C11.22906586 5.58560333 10.4766864 5.60357971 9.70150757 5.62210083 C7.59405518 5.60127258 7.59405518 5.60127258 4 5 C2.68 3.35 1.36 1.7 0 0 Z " fill="#007AC1" transform="translate(1052,79)"/>
<path d="M0 0 C1.65 1.32 3.3 2.64 5 4 C5 6.64 5 9.28 5 12 C10.94 12 16.88 12 23 12 C23 17.94 23 23.88 23 30 C28.61 30 34.22 30 40 30 C40 35.61 40 41.22 40 47 C41.74667969 46.93039063 43.49335937 46.86078125 45.29296875 46.7890625 C47.59110736 46.73278155 49.88928758 46.67818178 52.1875 46.625 C53.33798828 46.57472656 54.48847656 46.52445313 55.67382812 46.47265625 C57.34155273 46.44365234 57.34155273 46.44365234 59.04296875 46.4140625 C60.06414795 46.3826416 61.08532715 46.3512207 62.13745117 46.31884766 C65 47 65 47 70 53 C58.45 53 46.9 53 35 53 C35 47.06 35 41.12 35 35 C29.06 35 23.12 35 17 35 C17 29.39 17 23.78 17 18 C11.39 18 5.78 18 0 18 C0 12.06 0 6.12 0 0 Z " fill="#00619A" transform="translate(1156,137)"/>
<path d="M0 0 C11.55 0 23.1 0 35 0 C35 5.61 35 11.22 35 17 C40.94 17 46.88 17 53 17 C53 22.94 53 28.88 53 35 C58.61 35 64.22 35 70 35 C70 40.94 70 46.88 70 53 C65 49 65 49 64.51171875 46.640625 C64.56972656 45.85171875 64.62773437 45.0628125 64.6875 44.25 C64.73261719 43.45078125 64.77773437 42.6515625 64.82421875 41.828125 C64.88222656 41.22484375 64.94023437 40.6215625 65 40 C63.78441406 40.01160156 62.56882813 40.02320313 61.31640625 40.03515625 C59.73177236 40.04453278 58.14713682 40.05363313 56.5625 40.0625 C55.35883789 40.07506836 55.35883789 40.07506836 54.13085938 40.08789062 C52.08704779 40.0965143 50.04316098 40.0522815 48 40 C47 39 47 39 46.90234375 35.40234375 C46.90808728 33.91402745 46.92110109 32.42573704 46.9375 30.9375 C46.958125 28.318125 46.97875 25.69875 47 23 C41.39 23 35.78 23 30 23 C30 17.06 30 11.12 30 5 C28.16953125 5.05800781 26.3390625 5.11601563 24.453125 5.17578125 C22.05210879 5.2226761 19.65106506 5.26817654 17.25 5.3125 C16.0434375 5.35439453 14.836875 5.39628906 13.59375 5.43945312 C12.43359375 5.45556641 11.2734375 5.47167969 10.078125 5.48828125 C9.00981445 5.51446533 7.94150391 5.54064941 6.84082031 5.56762695 C4 5 4 5 0 0 Z " fill="#007AC2" transform="translate(84,101)"/>
<path d="M0 0 C2.46800047 1.15173355 4.04783565 2.04783565 6 4 C6.18831473 6.95274914 6.25167271 9.81102853 6.22705078 12.76416016 C6.22734283 13.67153427 6.22763489 14.57890839 6.22793579 15.51377869 C6.22653898 18.52230286 6.21096128 21.53058142 6.1953125 24.5390625 C6.19158362 26.62128565 6.18873606 28.70351055 6.18673706 30.78573608 C6.17909077 36.27340517 6.15943375 41.76096884 6.1373291 47.24859619 C6.11689209 52.84540379 6.10773994 58.44222837 6.09765625 64.0390625 C6.07618879 75.02608805 6.04204086 86.01303527 6 97 C0.37783907 93.31829071 0.37783907 93.31829071 -0.55344772 90.06900597 C-0.73830745 87.69011124 -0.74224577 85.37252778 -0.68115234 82.98706055 C-0.6820285 82.08900192 -0.68290466 81.1909433 -0.68380737 80.26567078 C-0.67963599 77.30512704 -0.63300558 74.34686528 -0.5859375 71.38671875 C-0.57474376 69.33121478 -0.56620441 67.27569478 -0.56021118 65.22016907 C-0.53732706 59.81598539 -0.47840663 54.41277277 -0.4119873 49.00897217 C-0.35055625 43.4924432 -0.32319436 37.97575697 -0.29296875 32.45898438 C-0.22866363 21.6388968 -0.12628854 10.81952922 0 0 Z " fill="#007BC4" transform="translate(1112,115)"/>
<path d="M0 0 C13.2 0 26.4 0 40 0 C40 21.78 40 43.56 40 66 C36 64 36 64 34 62 C33.75949097 59.59555054 33.75949097 59.59555054 33.77294922 56.54052734 C33.77310028 55.39949554 33.77325134 54.25846375 33.77340698 53.08285522 C33.78372955 51.84637238 33.79405212 50.60988953 33.8046875 49.3359375 C33.8075174 48.07359283 33.81034729 46.81124817 33.81326294 45.51065063 C33.82257869 42.15353056 33.84055165 38.79668088 33.8626709 35.43963623 C33.8831245 32.01446878 33.8922636 28.58927341 33.90234375 25.1640625 C33.92443542 18.44263329 33.95793623 11.72133227 34 5 C33.1121582 5.02618408 32.22431641 5.05236816 31.30957031 5.0793457 C28.00699595 5.1646975 24.70559725 5.22730652 21.40234375 5.2746582 C19.97442099 5.29976347 18.54662625 5.33385587 17.11914062 5.37719727 C15.06348082 5.43803678 13.00952247 5.46624551 10.953125 5.48828125 C9.09929199 5.52755737 9.09929199 5.52755737 7.20800781 5.56762695 C4 5 4 5 0 0 Z " fill="#00619A" transform="translate(198,110)"/>
<path d="M0 0 C13.2 0 26.4 0 40 0 C40 21.78 40 43.56 40 66 C36 64 36 64 34 61 C33.75949097 58.51325989 33.75949097 58.51325989 33.77294922 55.51879883 C33.77310028 54.39786331 33.77325134 53.2769278 33.77340698 52.12202454 C33.78372955 50.91257675 33.79405212 49.70312897 33.8046875 48.45703125 C33.8075174 47.21829758 33.81034729 45.9795639 33.81326294 44.70329285 C33.82256814 41.41361913 33.84053209 38.12414137 33.8626709 34.83453369 C33.8831473 31.47630206 33.89226848 28.11804172 33.90234375 24.75976562 C33.92441729 18.17310027 33.95790478 11.58656617 34 5 C33.1121582 5.02618408 32.22431641 5.05236816 31.30957031 5.0793457 C28.00699595 5.1646975 24.70559725 5.22730652 21.40234375 5.2746582 C19.97442099 5.29976347 18.54662625 5.33385587 17.11914062 5.37719727 C15.06348082 5.43803678 13.00952247 5.46624551 10.953125 5.48828125 C9.09929199 5.52755737 9.09929199 5.52755737 7.20800781 5.56762695 C4 5 4 5 0 0 Z " fill="#006199" transform="translate(859,110)"/>
<path d="M0 0 C6 5 6 5 6.7215271 7.72724915 C6.70820343 8.71098007 6.69487976 9.694711 6.68115234 10.70825195 C6.68069916 11.82903641 6.68024597 12.94982086 6.67977905 14.10456848 C6.64881134 15.3036937 6.61784363 16.50281891 6.5859375 17.73828125 C6.57744781 18.97418503 6.56895813 20.21008881 6.56021118 21.48344421 C6.5323505 24.75735911 6.47852254 28.02948153 6.4119873 31.30279541 C6.35042726 34.64765918 6.32368014 37.99260124 6.29296875 41.33789062 C6.22684757 47.89262583 6.12646634 54.44616639 6 61 C6.89307861 60.97381592 7.78615723 60.94763184 8.70629883 60.9206543 C12.02189231 60.83540666 15.33632119 60.77274412 18.65258789 60.7253418 C20.08734514 60.70020476 21.52197441 60.66608892 22.95629883 60.62280273 C25.0193637 60.56210335 27.08073615 60.53378647 29.14453125 60.51171875 C31.00621948 60.47244263 31.00621948 60.47244263 32.90551758 60.43237305 C33.92669678 60.61968994 34.94787598 60.80700684 36 61 C36.99 62.65 37.98 64.3 39 66 C26.13 66 13.26 66 0 66 C0 44.22 0 22.44 0 0 Z " fill="#007BC3" transform="translate(858,110)"/>
<path d="M0 0 C12.87 0 25.74 0 39 0 C39 9.9 39 19.8 39 30 C47.00356272 29.76328211 47.00356272 29.76328211 55.00463867 29.45947266 C56.50861206 29.43699463 56.50861206 29.43699463 58.04296875 29.4140625 C59.57473755 29.36693115 59.57473755 29.36693115 61.13745117 29.31884766 C64 30 64 30 69 36 C57.45 36 45.9 36 34 36 C34 25.77 34 15.54 34 5 C23.93274065 5.11862407 23.93274065 5.11862407 13.8659668 5.27026367 C11.98905151 5.28150269 11.98905151 5.28150269 10.07421875 5.29296875 C8.79119873 5.3086792 7.50817871 5.32438965 6.1862793 5.34057617 C3 5 3 5 1.05786133 3.60668945 C0 2 0 2 0 0 Z " fill="#00619A" transform="translate(750,176)"/>
<path d="M0 0 C4 2 4 2 6 4 C6 8.29 6 12.58 6 17 C22.17 17 38.34 17 55 17 C55 27.23 55 37.46 55 48 C52.03 45.525 52.03 45.525 49 43 C49 36.07 49 29.14 49 22 C32.83 22 16.66 22 0 22 C0 14.74 0 7.48 0 0 Z " fill="#007AC2" transform="translate(639,115)"/>
<path d="M0 0 C4 2 4 2 6 4 C6.14557157 6.91725418 6.18598967 9.71314805 6.125 12.625 C6.08375 15.38875 6.0425 18.1525 6 21 C11.61 21 17.22 21 23 21 C23 26.61 23 32.22 23 38 C28.94 38 34.88 38 41 38 C41 44.27 41 50.54 41 57 C35 52 35 52 34.4140625 49.54296875 C34.609375 47.36197917 34.8046875 45.18098958 35 43 C29.39 43 23.78 43 18 43 C18 37.39 18 31.78 18 26 C12.06 26 6.12 26 0 26 C0 17.42 0 8.84 0 0 Z " fill="#007AC3" transform="translate(1186,133)"/>
<path d="M0 0 C1.98 1.65 3.96 3.3 6 5 C6 7.64 6 10.28 6 13 C11.61 13 17.22 13 23 13 C23 18.94 23 24.88 23 31 C28.94 31 34.88 31 41 31 C41 39.91 41 48.82 41 58 C35 53 35 53 34.31884766 50.87182617 C34.35026855 50.18580322 34.38168945 49.49978027 34.4140625 48.79296875 C34.43654053 47.77626099 34.43654053 47.77626099 34.45947266 46.73901367 C34.51409668 45.89701416 34.5687207 45.05501465 34.625 44.1875 C34.74875 41.485625 34.8725 38.78375 35 36 C29.39 36 23.78 36 18 36 C18 30.06 18 24.12 18 18 C12.06 18 6.12 18 0 18 C0 12.06 0 6.12 0 0 Z " fill="#006199" transform="translate(83,101)"/>
<path d="M0 0 C1.65 1.32 3.3 2.64 5 4 C5 8.29 5 12.58 5 17 C19.85 17 34.7 17 50 17 C50 25.91 50 34.82 50 44 C47.03 41.525 47.03 41.525 44 39 C44 33.39 44 27.78 44 22 C29.48 22 14.96 22 0 22 C0 14.74 0 7.48 0 0 Z " fill="#007AC2" transform="translate(420,115)"/>
<path d="M0 0 C8.38846538 -0.13914603 16.77644709 -0.24569272 25.16578197 -0.31087303 C29.06153876 -0.34216005 32.95650491 -0.38458134 36.85180664 -0.45263672 C40.61254429 -0.51792839 44.37252258 -0.55372583 48.13378334 -0.56926346 C49.56718208 -0.5803327 51.00054016 -0.60194985 52.43361473 -0.63438034 C63.70929484 -0.87935324 63.70929484 -0.87935324 67.01919556 1.37567139 C68.41918945 3.03662109 68.41918945 3.03662109 70 6 C61.61153462 6.13914603 53.22355291 6.24569272 44.83421803 6.31087303 C40.93846124 6.34216005 37.04349509 6.38458134 33.14819336 6.45263672 C29.38745571 6.51792839 25.62747742 6.55372583 21.86621666 6.56926346 C20.43281792 6.5803327 18.99945984 6.60194985 17.56638527 6.63438034 C6.29070516 6.87935324 6.29070516 6.87935324 2.98080444 4.62432861 C1.58081055 2.96337891 1.58081055 2.96337891 0 0 Z " fill="#00629C" transform="translate(640,114)"/>
<path d="M0 0 C13.2 0 26.4 0 40 0 C40 0.99 40 1.98 40 3 C41.65 3 43.3 3 45 3 C45 11.91 45 20.82 45 30 C41 28 41 28 39 26 C38.85482256 23.0906442 38.81369204 20.280054 38.875 17.375 C38.88402344 16.57320312 38.89304687 15.77140625 38.90234375 14.9453125 C38.92593777 12.96341477 38.96180935 10.98167019 39 9 C37.68 9 36.36 9 35 9 C35 7.68 35 6.36 35 5 C34.08186523 5.02618408 33.16373047 5.05236816 32.21777344 5.0793457 C28.8033882 5.16468373 25.39013939 5.22730074 21.97509766 5.2746582 C20.49867854 5.29976737 19.02238332 5.33386255 17.54638672 5.37719727 C15.4212386 5.438018 13.29773606 5.46624209 11.171875 5.48828125 C9.8940918 5.51446533 8.61630859 5.54064941 7.29980469 5.56762695 C4 5 4 5 0 0 Z " fill="#00629B" transform="translate(307,104)"/>
<path d="M0 0 C4 2 4 2 6 4 C6.22705078 6.43017578 6.22705078 6.43017578 6.1953125 9.4453125 C6.18564453 11.05986328 6.18564453 11.05986328 6.17578125 12.70703125 C6.15902344 13.83496094 6.14226562 14.96289062 6.125 16.125 C6.11597656 17.26066406 6.10695313 18.39632812 6.09765625 19.56640625 C6.07403098 22.37781299 6.04109013 25.18880298 6 28 C6.8878418 27.97381592 7.77568359 27.94763184 8.69042969 27.9206543 C11.99300405 27.8353025 15.29440275 27.77269348 18.59765625 27.7253418 C20.02557901 27.70023653 21.45337375 27.66614413 22.88085938 27.62280273 C24.93651918 27.56196322 26.99047753 27.53375449 29.046875 27.51171875 C30.90070801 27.47244263 30.90070801 27.47244263 32.79199219 27.43237305 C36 28 36 28 40 33 C26.8 33 13.6 33 0 33 C0 22.11 0 11.22 0 0 Z " fill="#007AC2" transform="translate(306,105)"/>
<path d="M0 0 C11.88 0 23.76 0 36 0 C36 1.32 36 2.64 36 4 C37.32 4 38.64 4 40 4 C40 14.23 40 24.46 40 35 C35 31 35 31 34.43237305 28.61816406 C34.45855713 27.75932617 34.48474121 26.90048828 34.51171875 26.015625 C34.52783203 25.08105469 34.54394531 24.14648438 34.56054688 23.18359375 C34.62338867 21.73146484 34.62338867 21.73146484 34.6875 20.25 C34.71005859 19.26644531 34.73261719 18.28289062 34.75585938 17.26953125 C34.81471195 14.8448053 34.89686569 12.42318017 35 10 C33.68 10 32.36 10 31 10 C31 8.35 31 6.7 31 5 C30.20303711 5.02618408 29.40607422 5.05236816 28.58496094 5.0793457 C24.97350787 5.18328945 21.36236928 5.24832085 17.75 5.3125 C16.49574219 5.35439453 15.24148438 5.39628906 13.94921875 5.43945312 C12.14130859 5.46362305 12.14130859 5.46362305 10.296875 5.48828125 C8.63156738 5.52755737 8.63156738 5.52755737 6.93261719 5.56762695 C4 5 4 5 0 0 Z " fill="#006199" transform="translate(749,110)"/>
<path d="M0 0 C5 4 5 4 5.56762695 7.20800781 C5.52835083 9.06184082 5.52835083 9.06184082 5.48828125 10.953125 C5.48120651 11.61334656 5.47413177 12.27356812 5.46684265 12.95379639 C5.43894727 15.05370492 5.37623287 17.15090379 5.3125 19.25 C5.28741017 20.6770447 5.26459817 22.10413138 5.24414062 23.53125 C5.1891412 27.02170748 5.10290912 30.51058911 5 34 C5.77190674 33.98428955 6.54381348 33.9685791 7.33911133 33.95239258 C10.83016662 33.89010393 14.32110509 33.85102827 17.8125 33.8125 C19.02744141 33.78736328 20.24238281 33.76222656 21.49414062 33.73632812 C23.23920898 33.72182617 23.23920898 33.72182617 25.01953125 33.70703125 C26.09307861 33.6913208 27.16662598 33.67561035 28.27270508 33.65942383 C31 34 31 34 32.8737793 35.39331055 C34 37 34 37 34 39 C22.78 39 11.56 39 0 39 C0 26.13 0 13.26 0 0 Z " fill="#007BC3" transform="translate(749,111)"/>
<path d="M0 0 C2.46800047 1.15173355 4.04783565 2.04783565 6 4 C6.24050903 6.25259399 6.24050903 6.25259399 6.22705078 9.09228516 C6.22689972 10.15323395 6.22674866 11.21418274 6.22659302 12.30728149 C6.21627045 13.45626923 6.20594788 14.60525696 6.1953125 15.7890625 C6.1924826 16.96262299 6.18965271 18.13618347 6.18673706 19.3453064 C6.17551355 23.10530662 6.15040492 26.86507139 6.125 30.625 C6.11497301 33.1692674 6.10584668 35.71353852 6.09765625 38.2578125 C6.07556714 44.5052891 6.04206824 50.75262773 6 57 C3.33199681 55.41673859 1.82035279 54.44090741 0 52 C-0.85972277 48.04778977 -0.69815654 44.16498097 -0.5859375 40.13671875 C-0.57744781 38.98959915 -0.56895813 37.84247955 -0.56021118 36.66059875 C-0.52666306 33.00193808 -0.4513733 29.34549289 -0.375 25.6875 C-0.34490258 23.20510998 -0.3175264 20.72268538 -0.29296875 18.24023438 C-0.22686683 12.15940219 -0.12650139 6.07985937 0 0 Z " fill="#007BC4" transform="translate(972,155)"/>
<path d="M0 0 C7.88423444 -0.11589516 15.76811253 -0.20471439 23.65298843 -0.25906086 C27.31437534 -0.28514591 30.97517916 -0.32052148 34.63623047 -0.37719727 C38.17000804 -0.43155986 41.70322514 -0.46142876 45.23738861 -0.47438622 C47.24058028 -0.48810967 49.24354668 -0.52713702 51.24639893 -0.56648254 C52.46736267 -0.5668602 53.68832642 -0.56723785 54.94628906 -0.56762695 C56.02106506 -0.57873001 57.09584106 -0.58983307 58.20318604 -0.60127258 C61.92728723 0.19935269 62.95482172 1.89180088 65 5 C56.96804958 5.06948318 48.93622455 5.12280239 40.90404797 5.15543652 C37.17444945 5.17109859 33.44505642 5.19234629 29.71557617 5.22631836 C26.11700226 5.25889319 22.51862611 5.27684894 18.91991615 5.28463173 C17.54635822 5.29017868 16.17281122 5.30101052 14.79933739 5.31719017 C12.87699293 5.33893676 10.95444985 5.34022517 9.03198242 5.34057617 C7.93722092 5.34723801 6.84245941 5.35389984 5.71452332 5.36076355 C3 5 3 5 1.1230011 3.60371399 C0 2 0 2 0 0 Z " fill="#00629B" transform="translate(421,114)"/>
<path d="M0 0 C1.98 0.99 1.98 0.99 4 2 C4.75 4.625 4.75 4.625 5 7 C6.65 7 8.3 7 10 7 C10 8.32 10 9.64 10 11 C11.32 11 12.64 11 14 11 C14 24.53 14 38.06 14 52 C9 48 9 48 8.34057617 44.79199219 C8.32486572 43.55610352 8.30915527 42.32021484 8.29296875 41.046875 C8.27784744 40.38665344 8.26272614 39.72643188 8.24714661 39.04620361 C8.204318 36.9471204 8.19543798 34.8494763 8.1875 32.75 C8.16435136 31.32287854 8.13898523 29.89579121 8.11132812 28.46875 C8.04852854 24.97919437 8.01615209 21.49011868 8 18 C6.68 17.67 5.36 17.34 4 17 C4 15.35 4 13.7 4 12 C2.68 12 1.36 12 0 12 C0 8.04 0 4.08 0 0 Z " fill="#007BC4" transform="translate(806,160)"/>
<path d="M0 0 C4.82220418 3.21788792 4.82220418 3.21788792 5.60127258 6.6449585 C5.59016953 7.64867493 5.57906647 8.65239136 5.56762695 9.68652344 C5.5672493 10.82740417 5.56687164 11.96828491 5.56648254 13.14373779 C5.54067612 14.36989807 5.51486969 15.59605835 5.48828125 16.859375 C5.47766914 18.74864716 5.47766914 18.74864716 5.46684265 20.67608643 C5.44359876 24.01735356 5.39871812 27.35690324 5.34332275 30.69769287 C5.29208209 34.10950916 5.26931856 37.5215032 5.24414062 40.93359375 C5.1889944 47.62286982 5.10530735 54.31133577 5 61 C0.17779582 57.78211208 0.17779582 57.78211208 -0.60127258 54.3550415 C-0.59016953 53.35132507 -0.57906647 52.34760864 -0.56762695 51.31347656 C-0.5672493 50.17259583 -0.56687164 49.03171509 -0.56648254 47.85626221 C-0.54067612 46.63010193 -0.51486969 45.40394165 -0.48828125 44.140625 C-0.48120651 42.88111023 -0.47413177 41.62159546 -0.46684265 40.32391357 C-0.44359876 36.98264644 -0.39871812 33.64309676 -0.34332275 30.30230713 C-0.29208209 26.89049084 -0.26931856 23.4784968 -0.24414062 20.06640625 C-0.1889944 13.37713018 -0.10530735 6.68866423 0 0 Z " fill="#006098" transform="translate(1003,80)"/>
<path d="M0 0 C4.82220418 3.21788792 4.82220418 3.21788792 5.60127258 6.6449585 C5.59016953 7.64867493 5.57906647 8.65239136 5.56762695 9.68652344 C5.5672493 10.82740417 5.56687164 11.96828491 5.56648254 13.14373779 C5.54067612 14.36989807 5.51486969 15.59605835 5.48828125 16.859375 C5.47766914 18.74864716 5.47766914 18.74864716 5.46684265 20.67608643 C5.44359876 24.01735356 5.39871812 27.35690324 5.34332275 30.69769287 C5.29208209 34.10950916 5.26931856 37.5215032 5.24414062 40.93359375 C5.1889944 47.62286982 5.10530735 54.31133577 5 61 C0.17779582 57.78211208 0.17779582 57.78211208 -0.60127258 54.3550415 C-0.59016953 53.35132507 -0.57906647 52.34760864 -0.56762695 51.31347656 C-0.5672493 50.17259583 -0.56687164 49.03171509 -0.56648254 47.85626221 C-0.54067612 46.63010193 -0.51486969 45.40394165 -0.48828125 44.140625 C-0.48120651 42.88111023 -0.47413177 41.62159546 -0.46684265 40.32391357 C-0.44359876 36.98264644 -0.39871812 33.64309676 -0.34332275 30.30230713 C-0.29208209 26.89049084 -0.26931856 23.4784968 -0.24414062 20.06640625 C-0.1889944 13.37713018 -0.10530735 6.68866423 0 0 Z " fill="#006098" transform="translate(561,80)"/>
<path d="M0 0 C6.17461641 -0.14847404 12.34819105 -0.25727723 18.52416992 -0.32958984 C20.62428896 -0.35973742 22.72428234 -0.40066333 24.82397461 -0.45263672 C27.84520466 -0.52554078 30.86476873 -0.55947639 33.88671875 -0.5859375 C34.82335861 -0.61690521 35.75999847 -0.64787292 36.72502136 -0.67977905 C43.13739984 -0.68307932 43.13739984 -0.68307932 45.73721313 1.37567139 C47.13208008 3.03662109 47.13208008 3.03662109 49 6 C42.82538359 6.14847404 36.65180895 6.25727723 30.47583008 6.32958984 C28.37571104 6.35973742 26.27571766 6.40066333 24.17602539 6.45263672 C21.15479534 6.52554078 18.13523127 6.55947639 15.11328125 6.5859375 C14.17664139 6.61690521 13.24000153 6.64787292 12.27497864 6.67977905 C5.86260016 6.68307932 5.86260016 6.68307932 3.26278687 4.62432861 C1.86791992 2.96337891 1.86791992 2.96337891 0 0 Z " fill="#00639D" transform="translate(420,153)"/>
<path d="M0 0 C2.46948242 1.25097656 2.46948242 1.25097656 5 4 C5.73784782 7.98684698 5.5798913 11.94223559 5.48828125 15.984375 C5.47766914 17.74047089 5.47766914 17.74047089 5.46684265 19.53204346 C5.43884981 23.27201173 5.37609721 27.01048407 5.3125 30.75 C5.28742368 33.28513463 5.26460936 35.82029273 5.24414062 38.35546875 C5.18900684 44.57082307 5.10532977 50.78530467 5 57 C1.86804385 54.76970043 0.25224212 53.39149123 -0.44692993 49.53451538 C-0.57885635 46.3913976 -0.56129487 43.28183226 -0.48828125 40.13671875 C-0.48120651 38.98959915 -0.47413177 37.84247955 -0.46684265 36.66059875 C-0.43888813 33.00223162 -0.37614286 29.34540337 -0.3125 25.6875 C-0.28741872 23.20510025 -0.26460526 20.72267648 -0.24414062 18.24023438 C-0.18905778 12.15963254 -0.10541898 6.07992622 0 0 Z " fill="#007BC4" transform="translate(530,155)"/>
<path d="M0 0 C6 5 6 5 6.375 8.8125 C6.25125 9.864375 6.1275 10.91625 6 12 C7.09671021 11.95286865 7.09671021 11.95286865 8.21557617 11.90478516 C11.53923402 11.77980191 14.86239762 11.70194452 18.1875 11.625 C19.33798828 11.57472656 20.48847656 11.52445313 21.67382812 11.47265625 C23.34155273 11.44365234 23.34155273 11.44365234 25.04296875 11.4140625 C26.06414795 11.3826416 27.08532715 11.3512207 28.13745117 11.31884766 C31 12 31 12 36 18 C24.12 18 12.24 18 0 18 C0 12.06 0 6.12 0 0 Z " fill="#00629B" transform="translate(83,172)"/>
<path d="M0 0 C6.90491147 -0.12672146 13.80952344 -0.21431806 20.71533203 -0.2746582 C23.06472988 -0.29981062 25.41404941 -0.33393663 27.76318359 -0.37719727 C31.13919383 -0.43781426 34.51417011 -0.46620295 37.890625 -0.48828125 C38.94179504 -0.51408768 39.99296509 -0.5398941 41.07598877 -0.56648254 C48.39384462 -0.56930051 48.39384462 -0.56930051 51.69433594 2.53051758 C52.34063965 3.75291138 52.34063965 3.75291138 53 5 C46.09508853 5.12672146 39.19047656 5.21431806 32.28466797 5.2746582 C29.93527012 5.29981062 27.58595059 5.33393663 25.23681641 5.37719727 C21.86080617 5.43781426 18.48582989 5.46620295 15.109375 5.48828125 C13.53261993 5.52699089 13.53261993 5.52699089 11.92401123 5.56648254 C4.60615538 5.56930051 4.60615538 5.56930051 1.30566406 2.46948242 C0.87479492 1.65455322 0.44392578 0.83962402 0 0 Z " fill="#00629B" transform="translate(640,158)"/>
<path d="M0 0 C2.46948242 1.31933594 2.46948242 1.31933594 5 4 C5.72937621 7.62431993 5.5806423 11.20677971 5.48828125 14.890625 C5.48120651 15.95037537 5.47413177 17.01012573 5.46684265 18.10198975 C5.43886336 21.48537916 5.37611521 24.86711116 5.3125 28.25 C5.28742184 30.54424693 5.26460784 32.8385198 5.24414062 35.1328125 C5.18902525 40.75577342 5.10536309 46.37776831 5 52 C2.53051758 50.68066406 2.53051758 50.68066406 0 48 C-0.72937621 44.37568007 -0.5806423 40.79322029 -0.48828125 37.109375 C-0.48120651 36.04962463 -0.47413177 34.98987427 -0.46684265 33.89801025 C-0.43886336 30.51462084 -0.37611521 27.13288884 -0.3125 23.75 C-0.28742184 21.45575307 -0.26460784 19.1614802 -0.24414062 16.8671875 C-0.18902525 11.24422658 -0.10536309 5.62223169 0 0 Z " fill="#007BC4" transform="translate(307,159)"/>
<path d="M0 0 C3.875 1.875 3.875 1.875 5 3 C5.09311889 4.50418739 5.11746028 6.01271356 5.11352539 7.51977539 C5.11344986 8.48069595 5.11337433 9.44161652 5.11329651 10.43165588 C5.10813522 11.476436 5.10297394 12.52121613 5.09765625 13.59765625 C5.0962413 14.66165146 5.09482635 15.72564667 5.09336853 16.82188416 C5.08775064 20.23545083 5.07519511 23.648953 5.0625 27.0625 C5.05748731 29.37044176 5.052924 31.67838455 5.04882812 33.98632812 C5.0377754 39.65757426 5.02101987 45.32878253 5 51 C2.53051758 49.66699219 2.53051758 49.66699219 0 47 C-0.72751919 43.44809683 -0.58081631 39.94047715 -0.48828125 36.328125 C-0.48120651 35.29057068 -0.47413177 34.25301636 -0.46684265 33.184021 C-0.43886641 29.87194552 -0.37611929 26.56156401 -0.3125 23.25 C-0.28742143 21.00393067 -0.26460749 18.75783483 -0.24414062 16.51171875 C-0.1890294 11.00723508 -0.10537061 5.50373855 0 0 Z " fill="#007BC4" transform="translate(640,160)"/>
<path d="M0 0 C6.62007209 -0.12674312 13.23983157 -0.21432681 19.86083984 -0.2746582 C22.11323743 -0.29980743 24.36555336 -0.33393118 26.61767578 -0.37719727 C29.854697 -0.437829 33.09063972 -0.46620592 36.328125 -0.48828125 C37.33554749 -0.51408768 38.34296997 -0.5398941 39.38092041 -0.56648254 C46.39999625 -0.56930051 46.39999625 -0.56930051 49.66699219 2.53051758 C50.10688477 3.34544678 50.54677734 4.16037598 51 5 C44.219067 5.07596188 37.4382434 5.1285625 30.65698242 5.16479492 C28.34932352 5.17989676 26.04169339 5.20037969 23.73413086 5.22631836 C20.42033801 5.26263975 17.10692408 5.27971236 13.79296875 5.29296875 C12.24128242 5.31619453 12.24128242 5.31619453 10.6582489 5.33988953 C9.6974794 5.34011612 8.7367099 5.34034271 7.74682617 5.34057617 C6.90077316 5.34723801 6.05472015 5.35389984 5.18302917 5.36076355 C2.5082618 4.91873621 1.61015659 4.14591583 0 2 C0 1.34 0 0.68 0 0 Z " fill="#00629B" transform="translate(308,158)"/>
<path d="M0 0 C11.88 0 23.76 0 36 0 C36 5.94 36 11.88 36 18 C32 16 32 16 30 14 C29.8046875 11.8359375 29.8046875 11.8359375 29.875 9.375 C29.89304687 8.55773437 29.91109375 7.74046875 29.9296875 6.8984375 C29.95289063 6.27195312 29.97609375 5.64546875 30 5 C29.23333008 5.02618408 28.46666016 5.05236816 27.67675781 5.0793457 C24.20138051 5.18331223 20.72633017 5.24832724 17.25 5.3125 C16.0434375 5.35439453 14.836875 5.39628906 13.59375 5.43945312 C12.43359375 5.45556641 11.2734375 5.47167969 10.078125 5.48828125 C9.00981445 5.51446533 7.94150391 5.54064941 6.84082031 5.56762695 C4 5 4 5 0 0 Z " fill="#007AC1" transform="translate(1191,101)"/>
<path d="M0 0 C4.24977046 -0.11611395 8.49913337 -0.18722349 12.75 -0.25 C13.9565625 -0.28351563 15.163125 -0.31703125 16.40625 -0.3515625 C18.14648438 -0.37089844 18.14648438 -0.37089844 19.921875 -0.390625 C20.99018555 -0.41157227 22.05849609 -0.43251953 23.15917969 -0.45410156 C26.67834717 0.10843294 27.85095377 1.2136236 30 4 C30 4.66 30 5.32 30 6 C25.9380443 6.17456339 21.87705413 6.2809442 17.8125 6.375 C16.66201172 6.42527344 15.51152344 6.47554688 14.32617188 6.52734375 C5.94688237 6.67307052 5.94688237 6.67307052 3.08349609 4.63769531 C1.69921875 2.9765625 1.69921875 2.9765625 0 0 Z " fill="#00639C" transform="translate(1113,114)"/>
<path d="M0 0 C2.46948242 1.56542969 2.46948242 1.56542969 5 4 C5.56762695 7.20800781 5.56762695 7.20800781 5.48828125 10.953125 C5.48120651 11.61334656 5.47413177 12.27356812 5.46684265 12.95379639 C5.43894727 15.05370492 5.37623287 17.15090379 5.3125 19.25 C5.28741017 20.6770447 5.26459817 22.10413138 5.24414062 23.53125 C5.1891412 27.02170748 5.10290912 30.51058911 5 34 C2.53051758 32.43457031 2.53051758 32.43457031 0 30 C-0.56762695 26.79199219 -0.56762695 26.79199219 -0.48828125 23.046875 C-0.48120651 22.38665344 -0.47413177 21.72643188 -0.46684265 21.04620361 C-0.43894727 18.94629508 -0.37623287 16.84909621 -0.3125 14.75 C-0.28741017 13.3229553 -0.26459817 11.89586862 -0.24414062 10.46875 C-0.1891412 6.97829252 -0.10290912 3.48941089 0 0 Z " fill="#007BC4" transform="translate(749,177)"/>
<path d="M0 0 C2.73156959 -0.16262928 5.45342122 -0.28110686 8.1875 -0.375 C8.95642578 -0.42527344 9.72535156 -0.47554687 10.51757812 -0.52734375 C16.17663452 -0.67307052 16.17663452 -0.67307052 18.66650391 1.36230469 C20.05078125 3.0234375 20.05078125 3.0234375 22 6 C19.26843041 6.16262928 16.54657878 6.28110686 13.8125 6.375 C13.04357422 6.42527344 12.27464844 6.47554687 11.48242188 6.52734375 C5.82336548 6.67307052 5.82336548 6.67307052 3.33349609 4.63769531 C1.94921875 2.9765625 1.94921875 2.9765625 0 0 Z " fill="#00629C" transform="translate(132,149)"/>
<path d="M0 0 C2.91889148 -0.16216064 5.82879225 -0.28091202 8.75 -0.375 C9.9875 -0.45041016 9.9875 -0.45041016 11.25 -0.52734375 C13.64221876 -0.58522001 15.67372905 -0.57087094 18 0 C20.578125 3.0234375 20.578125 3.0234375 22 6 C19.45651575 6.13593443 16.92038504 6.23448907 14.375 6.3125 C13.66214844 6.35439453 12.94929688 6.39628906 12.21484375 6.43945312 C8.11591293 6.5334653 5.70831852 6.18290113 2.4765625 3.54296875 C0 1 0 1 0 0 Z " fill="#0079BF" transform="translate(1173,118)"/>
<path d="M0 0 C2.48046875 1.421875 2.48046875 1.421875 5 4 C5.63389665 7.09971709 5.47234026 10.10237647 5.3125 13.25 C5.28994141 14.09046875 5.26738281 14.9309375 5.24414062 15.796875 C5.18537714 17.86534964 5.09569885 19.93290488 5 22 C2.51953125 20.578125 2.51953125 20.578125 0 18 C-0.63389665 14.90028291 -0.47234026 11.89762353 -0.3125 8.75 C-0.28994141 7.90953125 -0.26738281 7.0690625 -0.24414062 6.203125 C-0.18537714 4.13465036 -0.09569885 2.06709512 0 0 Z " fill="#007BC4" transform="translate(1204,115)"/>
<path d="M0 0 C3.875 1.875 3.875 1.875 5 3 C5.08631874 4.34267413 5.10706473 5.68974322 5.09765625 7.03515625 C5.09282227 8.24848633 5.09282227 8.24848633 5.08789062 9.48632812 C5.07951172 10.33646484 5.07113281 11.18660156 5.0625 12.0625 C5.05798828 12.91650391 5.05347656 13.77050781 5.04882812 14.65039062 C5.03700373 16.76695663 5.01906769 18.88348685 5 21 C2.51953125 19.546875 2.51953125 19.546875 0 17 C-0.6295563 14.06455404 -0.47339855 11.23528703 -0.3125 8.25 C-0.28994141 7.45722656 -0.26738281 6.66445312 -0.24414062 5.84765625 C-0.18540471 3.8976238 -0.09572654 1.94856688 0 0 Z " fill="#007BC3" transform="translate(114,168)"/>
<path d="M0 0 C3.875 1.875 3.875 1.875 5 3 C5.08631874 4.34267413 5.10706473 5.68974322 5.09765625 7.03515625 C5.09282227 8.24848633 5.09282227 8.24848633 5.08789062 9.48632812 C5.07951172 10.33646484 5.07113281 11.18660156 5.0625 12.0625 C5.05798828 12.91650391 5.05347656 13.77050781 5.04882812 14.65039062 C5.03700373 16.76695663 5.01906769 18.88348685 5 21 C2.51953125 19.546875 2.51953125 19.546875 0 17 C-0.6295563 14.06455404 -0.47339855 11.23528703 -0.3125 8.25 C-0.28994141 7.45722656 -0.26738281 6.66445312 -0.24414062 5.84765625 C-0.18540471 3.8976238 -0.09572654 1.94856688 0 0 Z " fill="#007BC3" transform="translate(132,151)"/>
<path d="M0 0 C2.48046875 1.453125 2.48046875 1.453125 5 4 C5.6295563 6.93544596 5.47339855 9.76471297 5.3125 12.75 C5.28994141 13.54277344 5.26738281 14.33554688 5.24414062 15.15234375 C5.18540471 17.1023762 5.09572654 19.05143312 5 21 C1.125 19.125 1.125 19.125 0 18 C-0.08631874 16.65732587 -0.10706473 15.31025678 -0.09765625 13.96484375 C-0.09443359 13.15595703 -0.09121094 12.34707031 -0.08789062 11.51367188 C-0.07951172 10.66353516 -0.07113281 9.81339844 -0.0625 8.9375 C-0.05798828 8.08349609 -0.05347656 7.22949219 -0.04882812 6.34960938 C-0.03700373 4.23304337 -0.01906769 2.11651315 0 0 Z " fill="#006098" transform="translate(1173,119)"/>
<path d="M0 0 C2.48046875 1.453125 2.48046875 1.453125 5 4 C5.6295563 6.93544596 5.47339855 9.76471297 5.3125 12.75 C5.28994141 13.54277344 5.26738281 14.33554688 5.24414062 15.15234375 C5.18540471 17.1023762 5.09572654 19.05143312 5 21 C1.125 19.125 1.125 19.125 0 18 C-0.08631874 16.65732587 -0.10706473 15.31025678 -0.09765625 13.96484375 C-0.09443359 13.15595703 -0.09121094 12.34707031 -0.08789062 11.51367188 C-0.07951172 10.66353516 -0.07113281 9.81339844 -0.0625 8.9375 C-0.05798828 8.08349609 -0.05347656 7.22949219 -0.04882812 6.34960938 C-0.03700373 4.23304337 -0.01906769 2.11651315 0 0 Z " fill="#006098" transform="translate(1191,102)"/>
<path d="M0 0 C2.48046875 0.92578125 2.48046875 0.92578125 5 3 C5.65475435 6.07075918 5.46946059 9.06519173 5.3125 12.1875 C5.28994141 13.03248047 5.26738281 13.87746094 5.24414062 14.74804688 C5.18524963 16.83278798 5.09556798 18.91661804 5 21 C2.51953125 19.546875 2.51953125 19.546875 0 17 C-0.6295563 14.06455404 -0.47339855 11.23528703 -0.3125 8.25 C-0.28994141 7.45722656 -0.26738281 6.66445312 -0.24414062 5.84765625 C-0.18540471 3.8976238 -0.09572654 1.94856688 0 0 Z " fill="#006098" transform="translate(101,155)"/>
<path d="M0 0 C2.91821463 -0.13510253 5.83017652 -0.2341305 8.75 -0.3125 C9.9875 -0.3753418 9.9875 -0.3753418 11.25 -0.43945312 C13.601744 -0.48686732 15.69402157 -0.47157594 18 0 C20.578125 2.51953125 20.578125 2.51953125 22 5 C19.26916098 5.13548815 16.54508193 5.23429855 13.8125 5.3125 C13.04357422 5.35439453 12.27464844 5.39628906 11.48242188 5.43945312 C7.03371827 5.53491887 5.52445124 5.43312555 1.94921875 2.48046875 C1.30597656 1.66191406 0.66273437 0.84335938 0 0 Z " fill="#0079C0" transform="translate(101,154)"/>
<path d="M0 0 C2.75164432 -0.13517903 5.49664521 -0.23415251 8.25 -0.3125 C9.02730469 -0.35439453 9.80460937 -0.39628906 10.60546875 -0.43945312 C12.84351137 -0.48727455 14.80959674 -0.46976923 17 0 C19.546875 2.51953125 19.546875 2.51953125 21 5 C18.43717006 5.33127062 15.8827496 5.6155144 13.3125 5.875 C12.59126953 5.97296875 11.87003906 6.0709375 11.12695312 6.171875 C5.80792587 6.65763091 5.80792587 6.65763091 3.36474609 4.66894531 C1.98046875 3.0078125 1.98046875 3.0078125 0 0 Z " fill="#0079C0" transform="translate(1156,136)"/>
<path d="M0 0 C2.75164432 -0.13517903 5.49664521 -0.23415251 8.25 -0.3125 C9.02730469 -0.35439453 9.80460937 -0.39628906 10.60546875 -0.43945312 C12.84351137 -0.48727455 14.80959674 -0.46976923 17 0 C19.546875 2.51953125 19.546875 2.51953125 21 5 C18.24835568 5.13517903 15.50335479 5.23415251 12.75 5.3125 C11.58404297 5.3753418 11.58404297 5.3753418 10.39453125 5.43945312 C8.15648863 5.48727455 6.19040326 5.46976923 4 5 C1.453125 2.48046875 1.453125 2.48046875 0 0 Z " fill="#00629B" transform="translate(115,167)"/>
<path d="M0 0 C2.75164432 -0.13517903 5.49664521 -0.23415251 8.25 -0.3125 C9.02730469 -0.35439453 9.80460937 -0.39628906 10.60546875 -0.43945312 C12.84351137 -0.48727455 14.80959674 -0.46976923 17 0 C19.546875 2.51953125 19.546875 2.51953125 21 5 C18.24835568 5.13517903 15.50335479 5.23415251 12.75 5.3125 C11.58404297 5.3753418 11.58404297 5.3753418 10.39453125 5.43945312 C8.15648863 5.48727455 6.19040326 5.46976923 4 5 C1.453125 2.48046875 1.453125 2.48046875 0 0 Z " fill="#00629B" transform="translate(1187,132)"/>
<path d="M0 0 C2.5850867 -0.13526616 5.16308752 -0.23417653 7.75 -0.3125 C8.47960938 -0.35439453 9.20921875 -0.39628906 9.9609375 -0.43945312 C12.109375 -0.48828125 12.109375 -0.48828125 16 0 C18.515625 2.51953125 18.515625 2.51953125 20 5 C17.22858283 5.08089542 14.45952181 5.14044062 11.6875 5.1875 C10.90181641 5.21263672 10.11613281 5.23777344 9.30664062 5.26367188 C8.54931641 5.27333984 7.79199219 5.28300781 7.01171875 5.29296875 C6.31522217 5.3086792 5.61872559 5.32438965 4.90112305 5.34057617 C2.41762422 4.89567045 1.52898008 3.96642914 0 2 C0 1.34 0 0.68 0 0 Z " fill="#00629B" transform="translate(1205,114)"/>
<path d="M0 0 C4.22797927 3.08290155 4.22797927 3.08290155 6 5 C6.375 7.8125 6.375 7.8125 6 10 C1.77202073 6.91709845 1.77202073 6.91709845 0 5 C-0.375 2.1875 -0.375 2.1875 0 0 Z " fill="#0079C1" transform="translate(810,154)"/>
<path d="M0 0 C2.1875 -0.375 2.1875 -0.375 5 0 C6.99022836 1.83961648 8.38989899 3.79186148 10 6 C7.8125 6.375 7.8125 6.375 5 6 C3.00977164 4.16038352 1.61010101 2.20813852 0 0 Z " fill="#0065A1" transform="translate(359,149)"/>
<path d="M0 0 C2.46800047 1.15173355 4.04783565 2.04783565 6 4 C6.125 6.625 6.125 6.625 6 9 C1.3125 5.484375 1.3125 5.484375 0 4 C0 2.68 0 1.36 0 0 Z " fill="#0079C0" transform="translate(915,194)"/>
<path d="M0 0 C4.875 2.875 4.875 2.875 6 4 C6.04063832 5.66617115 6.042721 7.33388095 6 9 C1.3125 5.484375 1.3125 5.484375 0 4 C0 2.68 0 1.36 0 0 Z " fill="#0079C1" transform="translate(363,145)"/>
<path d="M0 0 C4.6875 3.515625 4.6875 3.515625 6 5 C6 6.32 6 7.64 6 9 C2.83884224 7.63016497 2.0072908 7.0109362 0 4 C0 2.68 0 1.36 0 0 Z " fill="#00639C" transform="translate(836,88)"/>
<path d="M0 0 C2.5 1.6875 2.5 1.6875 5 4 C5.3125 6.75 5.3125 6.75 5 9 C2.5 7.3125 2.5 7.3125 0 5 C-0.3125 2.25 -0.3125 2.25 0 0 Z " fill="#007AC2" transform="translate(911,198)"/>
<path d="M0 0 C2.5 1.6875 2.5 1.6875 5 4 C5.3125 6.75 5.3125 6.75 5 9 C2.5 7.3125 2.5 7.3125 0 5 C-0.3125 2.25 -0.3125 2.25 0 0 Z " fill="#007AC2" transform="translate(250,198)"/>
<path d="M0 0 C2.5 1.6875 2.5 1.6875 5 4 C5.3125 6.75 5.3125 6.75 5 9 C2.5 7.3125 2.5 7.3125 0 5 C-0.3125 2.25 -0.3125 2.25 0 0 Z " fill="#007AC2" transform="translate(368,141)"/>
<path d="M0 0 C3 1.75 3 1.75 6 4 C6 5.32 6 6.64 6 8 C3.53199953 6.84826645 1.95216435 5.95216435 0 4 C0 2.68 0 1.36 0 0 Z " fill="#00649E" transform="translate(175,89)"/>
<path d="M0 0 C3.67420866 0.30618405 4.78135513 0.75771784 7.3125 3.5625 C8.1478125 4.7690625 8.1478125 4.7690625 9 6 C5.32579134 5.69381595 4.21864487 5.24228216 1.6875 2.4375 C1.130625 1.633125 0.57375 0.82875 0 0 Z " fill="#0065A0" transform="translate(250,197)"/>
<path d="M0 0 C3.24208567 0.35049575 4.61527704 0.56221181 6.8125 3.0625 C7.204375 3.701875 7.59625 4.34125 8 5 C3.48279689 5.36625971 3.48279689 5.36625971 1.1875 3.625 C0 2 0 2 0 0 Z " fill="#00649F" transform="translate(255,193)"/>
<path d="M0 0 C3.875 1.875 3.875 1.875 5 3 C5.04063832 4.66617115 5.042721 6.33388095 5 8 C2.5 6.25 2.5 6.25 0 4 C0 2.68 0 1.36 0 0 Z " fill="#007AC3" transform="translate(920,190)"/>
<path d="M0 0 C3.67420866 0.30618405 4.78135513 0.75771784 7.3125 3.5625 C8.1478125 4.7690625 8.1478125 4.7690625 9 6 C5.32579134 5.69381595 4.21864487 5.24228216 1.6875 2.4375 C1.130625 1.633125 0.57375 0.82875 0 0 Z " fill="#00639C" transform="translate(806,158)"/>
<path d="M0 0 C3.875 1.875 3.875 1.875 5 3 C5.04063832 4.66617115 5.042721 6.33388095 5 8 C2.5 6.25 2.5 6.25 0 4 C0 2.68 0 1.36 0 0 Z " fill="#007AC1" transform="translate(355,155)"/>
<path d="M0 0 C3.67420866 0.30618405 4.78135513 0.75771784 7.3125 3.5625 C8.1478125 4.7690625 8.1478125 4.7690625 9 6 C5.32579134 5.69381595 4.21864487 5.24228216 1.6875 2.4375 C1.130625 1.633125 0.57375 0.82875 0 0 Z " fill="#00659F" transform="translate(355,153)"/>
<path d="M0 0 C1.98 1.65 3.96 3.3 6 5 C5.67 6.32 5.34 7.64 5 9 C2.5 6.75 2.5 6.75 0 4 C0 2.68 0 1.36 0 0 Z " fill="#007AC3" transform="translate(359,150)"/>
<path d="M0 0 C1.98 1.65 3.96 3.3 6 5 C5.67 6.32 5.34 7.64 5 9 C2.5 6.75 2.5 6.75 0 4 C0 2.68 0 1.36 0 0 Z " fill="#00619B" transform="translate(832,93)"/>
<path d="M0 0 C3.875 1.875 3.875 1.875 5 3 C5.04063832 4.66617115 5.042721 6.33388095 5 8 C2.5 6.25 2.5 6.25 0 4 C0 2.68 0 1.36 0 0 Z " fill="#00629C" transform="translate(841,85)"/>
<path d="M0 0 C1.98 1.65 3.96 3.3 6 5 C5.67 6.32 5.34 7.64 5 9 C2.5 6.75 2.5 6.75 0 4 C0 2.68 0 1.36 0 0 Z " fill="#00629B" transform="translate(845,80)"/>
<path d="M0 0 C3.25543229 0.34879632 4.01873107 1.02133261 6.25 3.5625 C6.8275 4.366875 7.405 5.17125 8 6 C5.21788056 5.62403791 3.4120716 5.32681541 1.1875 3.5625 C0 2 0 2 0 0 Z " fill="#00649F" transform="translate(912,197)"/>
<path d="M0 0 C3.25543229 0.34879632 4.01873107 1.02133261 6.25 3.5625 C6.8275 4.366875 7.405 5.17125 8 6 C5.21788056 5.62403791 3.4120716 5.32681541 1.1875 3.5625 C0 2 0 2 0 0 Z " fill="#0065A0" transform="translate(369,140)"/>
<path d="M0 0 C1.65 1.32 3.3 2.64 5 4 C4.67 5.32 4.34 6.64 4 8 C2 6.25 2 6.25 0 4 C0 2.68 0 1.36 0 0 Z " fill="#007BC4" transform="translate(907,203)"/>
<path d="M0 0 C3.24208567 0.35049575 4.61527704 0.56221181 6.8125 3.0625 C7.204375 3.701875 7.59625 4.34125 8 5 C4.75791433 4.64950425 3.38472296 4.43778819 1.1875 1.9375 C0.795625 1.298125 0.40375 0.65875 0 0 Z " fill="#00639D" transform="translate(907,202)"/>
<path d="M0 0 C3.24208567 0.35049575 4.61527704 0.56221181 6.8125 3.0625 C7.204375 3.701875 7.59625 4.34125 8 5 C4.75791433 4.64950425 3.38472296 4.43778819 1.1875 1.9375 C0.795625 1.298125 0.40375 0.65875 0 0 Z " fill="#00639C" transform="translate(246,202)"/>
<path d="M0 0 C1.65 1.32 3.3 2.64 5 4 C4.67 5.32 4.34 6.64 4 8 C2 6.25 2 6.25 0 4 C0 2.68 0 1.36 0 0 Z " fill="#007BC4" transform="translate(254,194)"/>
<path d="M0 0 C3.24208567 0.35049575 4.61527704 0.56221181 6.8125 3.0625 C7.204375 3.701875 7.59625 4.34125 8 5 C4.75791433 4.64950425 3.38472296 4.43778819 1.1875 1.9375 C0.795625 1.298125 0.40375 0.65875 0 0 Z " fill="#00639D" transform="translate(916,193)"/>
<path d="M0 0 C3.24208567 0.35049575 4.61527704 0.56221181 6.8125 3.0625 C7.204375 3.701875 7.59625 4.34125 8 5 C4.75791433 4.64950425 3.38472296 4.43778819 1.1875 1.9375 C0.795625 1.298125 0.40375 0.65875 0 0 Z " fill="#00639D" transform="translate(811,154)"/>
<path d="M0 0 C1.65 1.32 3.3 2.64 5 4 C4.67 5.32 4.34 6.64 4 8 C2 6.25 2 6.25 0 4 C0 2.68 0 1.36 0 0 Z " fill="#006199" transform="translate(780,142)"/>
<path d="M0 0 C1.65 1.32 3.3 2.64 5 4 C4.67 5.32 4.34 6.64 4 8 C2 6.25 2 6.25 0 4 C0 2.68 0 1.36 0 0 Z " fill="#00619A" transform="translate(342,130)"/>
<path d="M0 0 C1.65 1.32 3.3 2.64 5 4 C4.67 5.32 4.34 6.64 4 8 C2 6.25 2 6.25 0 4 C0 2.68 0 1.36 0 0 Z " fill="#00619A" transform="translate(171,93)"/>
<path d="M0 0 C1.65 1.32 3.3 2.64 5 4 C4.67 5.32 4.34 6.64 4 8 C2 6.25 2 6.25 0 4 C0 2.68 0 1.36 0 0 Z " fill="#00619A" transform="translate(180,85)"/>
<path d="M0 0 C1.65 1.32 3.3 2.64 5 4 C4.67 5.32 4.34 6.64 4 8 C2 6.25 2 6.25 0 4 C0 2.68 0 1.36 0 0 Z " fill="#006199" transform="translate(184,80)"/>
<path d="M0 0 C1.32 0 2.64 0 4 0 C6.25 3 6.25 3 8 6 C4.74456771 5.65120368 3.98126893 4.97866739 1.75 2.4375 C1.1725 1.633125 0.595 0.82875 0 0 Z " fill="#00639E" transform="translate(259,188)"/>
</svg>

After

Width:  |  Height:  |  Size: 62 KiB

+138
View File
@@ -0,0 +1,138 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1310" height="298">
<path d="M0 0 C13.53 0 27.06 0 41 0 C41 2.97 41 5.94 41 9 C42.32 9 43.64 9 45 9 C45 11.97 45 14.94 45 18 C46.32 18 47.64 18 49 18 C49 20.64 49 23.28 49 26 C50.65 26 52.3 26 54 26 C54 30.29 54 34.58 54 39 C55.32 39 56.64 39 58 39 C58 41.97 58 44.94 58 48 C59.32 48 60.64 48 62 48 C62 50.97 62 53.94 62 57 C63.32 57 64.64 57 66 57 C66 38.19 66 19.38 66 0 C79.2 0 92.4 0 106 0 C106 43.56 106 87.12 106 132 C92.8 132 79.6 132 66 132 C66 130.68 66 129.36 66 128 C64.35 128 62.7 128 61 128 C61 125.03 61 122.06 61 119 C59.68 119 58.36 119 57 119 C57 116.36 57 113.72 57 111 C55.68 111 54.36 111 53 111 C53 108.03 53 105.06 53 102 C51.35 102 49.7 102 48 102 C48 97.71 48 93.42 48 89 C46.68 89 45.36 89 44 89 C44 86.03 44 83.06 44 80 C43.01 80 42.02 80 41 80 C41 97.16 41 114.32 41 132 C27.47 132 13.94 132 0 132 C0 88.44 0 44.88 0 0 Z " fill="#DDDDDD" transform="translate(937,83)"/>
<path d="M0 0 C13.2 0 26.4 0 40 0 C40 2.97 40 5.94 40 9 C41.65 9 43.3 9 45 9 C45 11.97 45 14.94 45 18 C46.32 18 47.64 18 49 18 C49 20.64 49 23.28 49 26 C50.32 26 51.64 26 53 26 C53 30.29 53 34.58 53 39 C54.65 39 56.3 39 58 39 C58 41.97 58 44.94 58 48 C59.32 48 60.64 48 62 48 C62 50.97 62 53.94 62 57 C63.32 57 64.64 57 66 57 C66 38.19 66 19.38 66 0 C79.2 0 92.4 0 106 0 C106 43.56 106 87.12 106 132 C92.8 132 79.6 132 66 132 C66 130.68 66 129.36 66 128 C64.35 128 62.7 128 61 128 C61 125.03 61 122.06 61 119 C59.68 119 58.36 119 57 119 C57 116.36 57 113.72 57 111 C55.35 111 53.7 111 52 111 C52 108.03 52 105.06 52 102 C50.68 102 49.36 102 48 102 C48 97.71 48 93.42 48 89 C46.68 89 45.36 89 44 89 C44 86.03 44 83.06 44 80 C42.68 80 41.36 80 40 80 C40 97.16 40 114.32 40 132 C26.8 132 13.6 132 0 132 C0 88.44 0 44.88 0 0 Z " fill="#DCDCDC" transform="translate(495,83)"/>
<path d="M0 0 C33.66 0 67.32 0 102 0 C102 13.2 102 26.4 102 40 C81.54 40 61.08 40 40 40 C40 43.96 40 47.92 40 52 C54.85 52 69.7 52 85 52 C85 61.24 85 70.48 85 80 C70.15 80 55.3 80 40 80 C40 83.96 40 87.92 40 92 C60.46 92 80.92 92 102 92 C102 105.2 102 118.4 102 132 C68.34 132 34.68 132 0 132 C0 88.44 0 44.88 0 0 Z " fill="#DEDEDE" transform="translate(385,83)"/>
<path d="M0 0 C27.72 0 55.44 0 84 0 C84 1.32 84 2.64 84 4 C85.65 4 87.3 4 89 4 C89 5.65 89 7.3 89 9 C90.32 9 91.64 9 93 9 C93 10.32 93 11.64 93 13 C94.65 13 96.3 13 98 13 C98 14.65 98 16.3 98 18 C99.32 18 100.64 18 102 18 C102 38.46 102 58.92 102 80 C100.68 80 99.36 80 98 80 C98 81.32 98 82.64 98 84 C96.35 84 94.7 84 93 84 C93 85.32 93 86.64 93 88 C94.65 88 96.3 88 98 88 C98 89.32 98 90.64 98 92 C99.32 92 100.64 92 102 92 C102 105.2 102 118.4 102 132 C90.12 132 78.24 132 66 132 C66 122.1 66 112.2 66 102 C56.1 102 46.2 102 36 102 C36 111.9 36 121.8 36 132 C24.12 132 12.24 132 0 132 C0 88.44 0 44.88 0 0 Z M36 36 C36 45.9 36 55.8 36 66 C44.58 66 53.16 66 62 66 C62 64.35 62 62.7 62 61 C63.32 61 64.64 61 66 61 C66 54.4 66 47.8 66 41 C64.68 41 63.36 41 62 41 C62 39.35 62 37.7 62 36 C53.42 36 44.84 36 36 36 Z " fill="#DDDDDD" transform="translate(718,83)"/>
<path d="M0 0 C22.11 0 44.22 0 67 0 C67 1.32 67 2.64 67 4 C68.32 4 69.64 4 71 4 C71 5.65 71 7.3 71 9 C72.32 9 73.64 9 75 9 C75 10.32 75 11.64 75 13 C76.65 13 78.3 13 80 13 C80 14.32 80 15.64 80 17 C81.32 17 82.64 17 84 17 C84 49.34 84 81.68 84 115 C82.68 115 81.36 115 80 115 C80 116.32 80 117.64 80 119 C78.35 119 76.7 119 75 119 C75 120.32 75 121.64 75 123 C73.68 123 72.36 123 71 123 C71 124.65 71 126.3 71 128 C69.68 128 68.36 128 67 128 C67 129.32 67 130.64 67 132 C44.89 132 22.78 132 0 132 C0 130.68 0 129.36 0 128 C-1.32 128 -2.64 128 -4 128 C-4 126.35 -4 124.7 -4 123 C-5.65 123 -7.3 123 -9 123 C-9 121.68 -9 120.36 -9 119 C-10.32 119 -11.64 119 -13 119 C-13 117.68 -13 116.36 -13 115 C-14.65 115 -16.3 115 -18 115 C-18 82.66 -18 50.32 -18 17 C-16.35 17 -14.7 17 -13 17 C-13 15.68 -13 14.36 -13 13 C-11.68 13 -10.36 13 -9 13 C-9 11.68 -9 10.36 -9 9 C-7.35 9 -5.7 9 -4 9 C-4 7.35 -4 5.7 -4 4 C-2.68 4 -1.36 4 0 4 C0 2.68 0 1.36 0 0 Z M18 36 C18 54.48 18 72.96 18 92 C27.9 92 37.8 92 48 92 C48 73.52 48 55.04 48 36 C38.1 36 28.2 36 18 36 Z " fill="#DCDCDC" transform="translate(184,83)"/>
<path d="M0 0 C22.11 0 44.22 0 67 0 C67 1.32 67 2.64 67 4 C68.32 4 69.64 4 71 4 C71 5.65 71 7.3 71 9 C72.65 9 74.3 9 76 9 C76 10.32 76 11.64 76 13 C77.32 13 78.64 13 80 13 C80 14.32 80 15.64 80 17 C81.32 17 82.64 17 84 17 C84 49.34 84 81.68 84 115 C82.68 115 81.36 115 80 115 C80 116.32 80 117.64 80 119 C78.68 119 77.36 119 76 119 C76 120.32 76 121.64 76 123 C74.35 123 72.7 123 71 123 C71 124.65 71 126.3 71 128 C69.68 128 68.36 128 67 128 C67 129.32 67 130.64 67 132 C44.89 132 22.78 132 0 132 C0 130.68 0 129.36 0 128 C-1.32 128 -2.64 128 -4 128 C-4 126.35 -4 124.7 -4 123 C-5.65 123 -7.3 123 -9 123 C-9 121.68 -9 120.36 -9 119 C-10.32 119 -11.64 119 -13 119 C-13 117.68 -13 116.36 -13 115 C-14.32 115 -15.64 115 -17 115 C-17 82.66 -17 50.32 -17 17 C-15.68 17 -14.36 17 -13 17 C-13 15.68 -13 14.36 -13 13 C-11.68 13 -10.36 13 -9 13 C-9 11.68 -9 10.36 -9 9 C-7.35 9 -5.7 9 -4 9 C-4 7.35 -4 5.7 -4 4 C-2.68 4 -1.36 4 0 4 C0 2.68 0 1.36 0 0 Z M19 36 C19 54.48 19 72.96 19 92 C28.57 92 38.14 92 48 92 C48 73.52 48 55.04 48 36 C38.43 36 28.86 36 19 36 Z " fill="#DDDDDD" transform="translate(845,83)"/>
<path d="M0 0 C27.72 0 55.44 0 84 0 C84 1.32 84 2.64 84 4 C85.65 4 87.3 4 89 4 C89 5.65 89 7.3 89 9 C90.32 9 91.64 9 93 9 C93 10.32 93 11.64 93 13 C94.32 13 95.64 13 97 13 C97 14.32 97 15.64 97 17 C98.65 17 100.3 17 102 17 C102 33.5 102 50 102 67 C100.35 67 98.7 67 97 67 C97 68.32 97 69.64 97 71 C95.68 71 94.36 71 93 71 C93 72.32 93 73.64 93 75 C91.68 75 90.36 75 89 75 C89 76.65 89 78.3 89 80 C87.35 80 85.7 80 84 80 C84 81.32 84 82.64 84 84 C68.16 84 52.32 84 36 84 C36 99.84 36 115.68 36 132 C24.12 132 12.24 132 0 132 C0 88.44 0 44.88 0 0 Z M36 30 C36 37.92 36 45.84 36 54 C45.9 54 55.8 54 66 54 C66 52.68 66 51.36 66 50 C67.32 50 68.64 50 70 50 C70 44.72 70 39.44 70 34 C68.68 34 67.36 34 66 34 C66 32.68 66 31.36 66 30 C56.1 30 46.2 30 36 30 Z " fill="#DDDDDD" transform="translate(276,83)"/>
<path d="M0 0 C33.33 0 66.66 0 101 0 C101 13.2 101 26.4 101 40 C79.55 40 58.1 40 36 40 C36 44.29 36 48.58 36 53 C52.17 53 68.34 53 85 53 C85 63.23 85 73.46 85 84 C68.83 84 52.66 84 36 84 C36 99.84 36 115.68 36 132 C24.12 132 12.24 132 0 132 C0 88.44 0 44.88 0 0 Z " fill="#DCDCDC" transform="translate(609,83)"/>
<path d="M0 0 C30.69 0 61.38 0 93 0 C93 13.2 93 26.4 93 40 C84.42 40 75.84 40 67 40 C67 70.36 67 100.72 67 132 C53.47 132 39.94 132 26 132 C26 101.64 26 71.28 26 40 C17.42 40 8.84 40 0 40 C0 26.8 0 13.6 0 0 Z " fill="#DDDDDD" transform="translate(1051,83)"/>
<path d="M0 0 C11.88 0 23.76 0 36 0 C36 5.94 36 11.88 36 18 C30.06 18 24.12 18 18 18 C18 23.94 18 29.88 18 36 C12.39 36 6.78 36 1 36 C1 41.28 1 46.56 1 52 C6.61 52 12.22 52 18 52 C18 57.94 18 63.88 18 70 C23.94 70 29.88 70 36 70 C36 75.94 36 81.88 36 88 C24.12 88 12.24 88 0 88 C0 82.39 0 76.78 0 71 C-5.94 71 -11.88 71 -18 71 C-18 65.06 -18 59.12 -18 53 C-23.61 53 -29.22 53 -35 53 C-35 47.06 -35 41.12 -35 35 C-29.39 35 -23.78 35 -18 35 C-18 29.06 -18 23.12 -18 17 C-12.06 17 -6.12 17 0 17 C0 11.39 0 5.78 0 0 Z " fill="#DCDCDC" transform="translate(1191,105)"/>
<path d="M0 0 C11.88 0 23.76 0 36 0 C36 5.61 36 11.22 36 17 C41.94 17 47.88 17 54 17 C54 22.94 54 28.88 54 35 C59.61 35 65.22 35 71 35 C71 40.94 71 46.88 71 53 C65.39 53 59.78 53 54 53 C54 58.94 54 64.88 54 71 C48.06 71 42.12 71 36 71 C36 76.61 36 82.22 36 88 C24.12 88 12.24 88 0 88 C0 82.06 0 76.12 0 70 C5.94 70 11.88 70 18 70 C18 64.06 18 58.12 18 52 C23.61 52 29.22 52 35 52 C35 46.72 35 41.44 35 36 C29.39 36 23.78 36 18 36 C18 30.06 18 24.12 18 18 C12.06 18 6.12 18 0 18 C0 12.06 0 6.12 0 0 Z " fill="#DCDCDC" transform="translate(83,105)"/>
<path d="M0 0 C2 0 2 0 4.09661865 1.76457214 C6.97325827 6.65437521 6.52549768 11.19254887 6.45410156 16.7668457 C6.45468567 17.95751144 6.45526978 19.14817719 6.45587158 20.37492371 C6.45356582 23.63099856 6.43353568 26.88638169 6.40557575 30.14231896 C6.38053424 33.548233 6.37821795 36.95416131 6.37347412 40.3601532 C6.36105234 46.80582332 6.32824183 53.25122137 6.28807616 59.6967718 C6.24333338 67.03649196 6.22136516 74.37622525 6.20129442 81.71604788 C6.15950826 96.81085006 6.08917202 111.90539779 6 127 C7.13117249 126.98889694 8.26234497 126.97779388 9.42779541 126.96635437 C20.08094918 126.86505577 30.73400542 126.79007172 41.38753128 126.74093914 C46.8648407 126.71483037 52.34176177 126.67940843 57.81884766 126.62280273 C63.1032468 126.5685294 68.38727209 126.53858911 73.67192841 126.52561378 C75.68942909 126.51636554 77.706909 126.49830594 79.72425079 126.47134972 C82.54741341 126.43512165 85.36902566 126.43005204 88.19238281 126.43237305 C89.02891891 126.41439667 89.86545502 126.39642029 90.7273407 126.37789917 C93.06427002 126.39872742 93.06427002 126.39872742 97 127 C98.32 128.65 99.64 130.3 101 132 C67.67 132 34.34 132 0 132 C0 88.44 0 44.88 0 0 Z " fill="#BBBBBB" transform="translate(385,83)"/>
<path d="M0 0 C6 5 6 5 6.68115234 8.3215332 C6.64973145 9.55218506 6.61831055 10.78283691 6.5859375 12.05078125 C6.57744781 12.70958786 6.56895813 13.36839447 6.56021118 14.04716492 C6.52680339 16.13732314 6.45157577 18.22352271 6.375 20.3125 C6.34488282 21.73497003 6.31751005 23.15750098 6.29296875 24.58007812 C6.23216351 28.05611079 6.11481474 31.52366486 6 35 C14.58 35 23.16 35 32 35 C32 65.36 32 95.72 32 127 C41.9 127 51.8 127 62 127 C63.98 129.475 63.98 129.475 66 132 C52.8 132 39.6 132 26 132 C26 101.64 26 71.28 26 40 C17.42 40 8.84 40 0 40 C0 26.8 0 13.6 0 0 Z " fill="#BBBBBB" transform="translate(1051,83)"/>
<path d="M0 0 C6 5 6 5 6.7215271 8.90412903 C6.73882782 10.45403292 6.72316642 12.00452415 6.68115234 13.55395508 C6.6820285 14.40324585 6.68290466 15.25253662 6.68380737 16.12756348 C6.67963776 18.92583222 6.63301755 21.72168305 6.5859375 24.51953125 C6.57474308 26.46293325 6.56620406 28.40635222 6.56021118 30.34977722 C6.53733221 35.45806858 6.47841675 40.56533186 6.4119873 45.67321777 C6.35054482 50.8881235 6.32319195 56.1031958 6.29296875 61.31835938 C6.22867283 71.54602395 6.12630437 81.77292639 6 92 C7.32 92 8.64 92 10 92 C10 93.65 10 95.3 10 97 C11.65 97 13.3 97 15 97 C15 98.32 15 99.64 15 101 C16.32 101 17.64 101 19 101 C19 102.65 19 104.3 19 106 C20.32 106 21.64 106 23 106 C23 107.32 23 108.64 23 110 C23.7052179 109.98889694 24.41043579 109.97779388 25.13702393 109.96635437 C31.7873522 109.86611414 38.4374693 109.79001646 45.08838272 109.74093914 C48.50765493 109.71485909 51.92630228 109.6794935 55.34521484 109.62280273 C59.27694178 109.55801773 63.20841689 109.5338061 67.140625 109.51171875 C68.36678528 109.48591232 69.59294556 109.4601059 70.85626221 109.43351746 C71.99714294 109.4331398 73.13802368 109.43276215 74.31347656 109.43237305 C75.31719299 109.42126999 76.32090942 109.41016693 77.3550415 109.39872742 C80 110 80 110 84 115 C62.22 115 40.44 115 18 115 C18 113.68 18 112.36 18 111 C16.68 111 15.36 111 14 111 C14 109.35 14 107.7 14 106 C12.35 106 10.7 106 9 106 C9 104.68 9 103.36 9 102 C7.68 102 6.36 102 5 102 C5 100.68 5 99.36 5 98 C3.35 98 1.7 98 0 98 C0 65.66 0 33.32 0 0 Z " fill="#BBBBBB" transform="translate(166,100)"/>
<path d="M0 0 C22.11 0 44.22 0 67 0 C67 1.32 67 2.64 67 4 C68.32 4 69.64 4 71 4 C71 5.65 71 7.3 71 9 C72.32 9 73.64 9 75 9 C75 10.32 75 11.64 75 13 C76.65 13 78.3 13 80 13 C80 14.32 80 15.64 80 17 C81.32 17 82.64 17 84 17 C84 49.34 84 81.68 84 115 C78.42973919 109.42973919 78.42973919 109.42973919 78.37789917 103.85676575 C78.39587555 103.06122787 78.41385193 102.26569 78.43237305 101.44604492 C78.43164291 100.59675415 78.43091278 99.74746338 78.43016052 98.87243652 C78.43363484 96.07445676 78.47248763 93.27815648 78.51171875 90.48046875 C78.52104745 88.53706268 78.52816329 86.59364482 78.53315735 84.65022278 C78.55222262 79.54207741 78.60131961 74.43464604 78.65667725 69.32678223 C78.70787974 64.11183328 78.73067355 58.89676864 78.75585938 53.68164062 C78.80943859 43.45411386 78.89474592 33.22711637 79 23 C77.35 23 75.7 23 74 23 C74 21.68 74 20.36 74 19 C72.68 19 71.36 19 70 19 C70 17.35 70 15.7 70 14 C68.68 14 67.36 14 66 14 C66 12.68 66 11.36 66 10 C64.35 10 62.7 10 61 10 C61 8.35 61 6.7 61 5 C60.2947821 5.01110306 59.58956421 5.02220612 58.86297607 5.03364563 C52.2126478 5.13388586 45.5625307 5.20998354 38.91161728 5.25906086 C35.49234507 5.28514091 32.07369772 5.3205065 28.65478516 5.37719727 C24.72305822 5.44198227 20.79158311 5.4661939 16.859375 5.48828125 C15.63321472 5.51408768 14.40705444 5.5398941 13.14373779 5.56648254 C11.43241669 5.56704903 11.43241669 5.56704903 9.68652344 5.56762695 C8.18094879 5.58428154 8.18094879 5.58428154 6.6449585 5.60127258 C4 5 4 5 0 0 Z " fill="#EDEDED" transform="translate(184,83)"/>
<path d="M0 0 C12.87 0 25.74 0 39 0 C39 43.56 39 87.12 39 132 C33 127 33 127 32.26171303 124.49505901 C32.27000916 123.16352905 32.27000916 123.16352905 32.2784729 121.80509949 C32.27022491 120.78011353 32.26197693 119.75512756 32.253479 118.69908142 C32.27505066 117.58561844 32.29662231 116.47215546 32.31884766 115.32495117 C32.31753342 113.55358292 32.31753342 113.55358292 32.31619263 111.74642944 C32.31965149 108.51686253 32.34969268 105.28886489 32.39163637 102.05961013 C32.42919984 98.68176228 32.43267307 95.30388203 32.43978882 91.92585754 C32.4584215 85.5331457 32.507636 79.1410511 32.56788576 72.74861079 C32.63500097 65.46939788 32.6679523 58.19015514 32.69805837 50.91070974 C32.76073733 35.94012951 32.8662405 20.97012655 33 6 C32.17798096 6.02094727 31.35596191 6.04189453 30.5090332 6.06347656 C26.77698036 6.14673309 23.04512306 6.19869247 19.3125 6.25 C18.01892578 6.28351563 16.72535156 6.31703125 15.39257812 6.3515625 C14.14541016 6.36445312 12.89824219 6.37734375 11.61328125 6.390625 C10.46641846 6.41157227 9.31955566 6.43251953 8.13793945 6.45410156 C4.34137773 5.9046886 2.67876835 4.69663308 0 2 C0 1.34 0 0.68 0 0 Z " fill="#EFEFEF" transform="translate(562,83)"/>
<path d="M0 0 C5.57026081 5.57026081 5.57026081 5.57026081 5.62210083 11.14323425 C5.60412445 11.93877213 5.58614807 12.73431 5.56762695 13.55395508 C5.56835709 14.40324585 5.56908722 15.25253662 5.56983948 16.12756348 C5.56636516 18.92554324 5.52751237 21.72184352 5.48828125 24.51953125 C5.47895255 26.46293732 5.47183671 28.40635518 5.46684265 30.34977722 C5.44777738 35.45792259 5.39868039 40.56535396 5.34332275 45.67321777 C5.29212026 50.88816672 5.26932645 56.10323136 5.24414062 61.31835938 C5.19056141 71.54588614 5.10525408 81.77288363 5 92 C6.65 92 8.3 92 10 92 C10 93.65 10 95.3 10 97 C11.32 97 12.64 97 14 97 C14 98.32 14 99.64 14 101 C15.32 101 16.64 101 18 101 C18 102.65 18 104.3 18 106 C19.32 106 20.64 106 22 106 C22 107.32 22 108.64 22 110 C22.7052179 109.98889694 23.41043579 109.97779388 24.13702393 109.96635437 C30.7873522 109.86611414 37.4374693 109.79001646 44.08838272 109.74093914 C47.50765493 109.71485909 50.92630228 109.6794935 54.34521484 109.62280273 C58.27694178 109.55801773 62.20841689 109.5338061 66.140625 109.51171875 C67.36678528 109.48591232 68.59294556 109.4601059 69.85626221 109.43351746 C70.99714294 109.4331398 72.13802368 109.43276215 73.31347656 109.43237305 C74.31719299 109.42126999 75.32090942 109.41016693 76.3550415 109.39872742 C79 110 79 110 83 115 C61.22 115 39.44 115 17 115 C17 113.68 17 112.36 17 111 C15.68 111 14.36 111 13 111 C13 109.35 13 107.7 13 106 C11.35 106 9.7 106 8 106 C8 104.68 8 103.36 8 102 C6.68 102 5.36 102 4 102 C4 100.68 4 99.36 4 98 C2.68 98 1.36 98 0 98 C0 65.66 0 33.32 0 0 Z " fill="#BABABA" transform="translate(828,100)"/>
<path d="M0 0 C6 5 6 5 6.73828697 7.52055836 C6.73275621 8.41561934 6.72722546 9.31068033 6.7215271 10.23286438 C6.72977509 11.2662645 6.73802307 12.29966461 6.746521 13.36437988 C6.72494934 14.4871936 6.70337769 15.61000732 6.68115234 16.7668457 C6.6820285 17.95751144 6.68290466 19.14817719 6.68380737 20.37492371 C6.68034836 23.63134399 6.65030576 26.88620822 6.60836363 30.14231896 C6.57080178 33.54819462 6.56732705 36.95410237 6.56021118 40.3601532 C6.54157804 46.80598653 6.49236287 53.25120776 6.43211424 59.6967718 C6.36500051 67.03644379 6.33204807 74.37614534 6.30194163 81.71604788 C6.23926161 96.81103938 6.13375749 111.90545842 6 127 C7.28632324 126.96072388 7.28632324 126.96072388 8.59863281 126.9206543 C11.78916189 126.83529403 14.97910807 126.77268487 18.17041016 126.7253418 C19.54983702 126.7002407 20.92913142 126.66615127 22.30810547 126.62280273 C24.29335872 126.56197125 26.27959359 126.53642063 28.265625 126.51171875 C30.05661621 126.47244263 30.05661621 126.47244263 31.88378906 126.43237305 C35 127 35 127 39 132 C26.13 132 13.26 132 0 132 C0 88.44 0 44.88 0 0 Z " fill="#BCBCBC" transform="translate(937,83)"/>
<path d="M0 0 C6 5 6 5 6.73828697 7.52055836 C6.73275621 8.41561934 6.72722546 9.31068033 6.7215271 10.23286438 C6.72977509 11.2662645 6.73802307 12.29966461 6.746521 13.36437988 C6.72494934 14.4871936 6.70337769 15.61000732 6.68115234 16.7668457 C6.6820285 17.95751144 6.68290466 19.14817719 6.68380737 20.37492371 C6.68034836 23.63134399 6.65030576 26.88620822 6.60836363 30.14231896 C6.57080178 33.54819462 6.56732705 36.95410237 6.56021118 40.3601532 C6.54157804 46.80598653 6.49236287 53.25120776 6.43211424 59.6967718 C6.36500051 67.03644379 6.33204807 74.37614534 6.30194163 81.71604788 C6.23926161 96.81103938 6.13375749 111.90545842 6 127 C6.73637695 126.97381592 7.47275391 126.94763184 8.23144531 126.9206543 C11.57074616 126.81666314 14.90970655 126.7516659 18.25 126.6875 C19.40886719 126.64560547 20.56773437 126.60371094 21.76171875 126.56054688 C22.87675781 126.54443359 23.99179687 126.52832031 25.140625 126.51171875 C26.68024902 126.47244263 26.68024902 126.47244263 28.25097656 126.43237305 C31 127 31 127 35 132 C23.45 132 11.9 132 0 132 C0 88.44 0 44.88 0 0 Z " fill="#BCBCBC" transform="translate(718,83)"/>
<path d="M0 0 C5 4 5 4 5.61523914 6.4131279 C5.61063018 7.31648502 5.60602121 8.21984215 5.60127258 9.15057373 C5.6081459 10.19101334 5.61501923 11.23145294 5.62210083 12.30342102 C5.60412445 13.43918076 5.58614807 14.57494049 5.56762695 15.74511719 C5.56835709 16.94539047 5.56908722 18.14566376 5.56983948 19.38230896 C5.56695384 22.66958339 5.54188944 25.95579206 5.50696969 29.24285412 C5.4757019 32.67945405 5.47277516 36.11607518 5.46684265 39.55279541 C5.45130528 46.0587772 5.41027884 52.56433863 5.3600952 59.07013535 C5.30419794 66.47752469 5.27671437 73.88493415 5.25161803 81.2924819 C5.19936242 96.52856467 5.11142288 111.76422812 5 127 C5.8878418 126.97381592 6.77568359 126.94763184 7.69042969 126.9206543 C10.99300405 126.8353025 14.29440275 126.77269348 17.59765625 126.7253418 C19.02557901 126.70023653 20.45337375 126.66614413 21.88085938 126.62280273 C23.93651918 126.56196322 25.99047753 126.53375449 28.046875 126.51171875 C29.90070801 126.47244263 29.90070801 126.47244263 31.79199219 126.43237305 C35 127 35 127 39 132 C26.13 132 13.26 132 0 132 C0 88.44 0 44.88 0 0 Z " fill="#B9B9B9" transform="translate(495,83)"/>
<path d="M0 0 C5 4 5 4 5.61523914 6.39751053 C5.61063018 7.29349331 5.60602121 8.18947609 5.60127258 9.11260986 C5.6081459 10.14463531 5.61501923 11.17666077 5.62210083 12.23995972 C5.60412445 13.36636871 5.58614807 14.49277771 5.56762695 15.65332031 C5.56835709 16.84384003 5.56908722 18.03435974 5.56983948 19.26095581 C5.56695394 22.52137515 5.54189045 25.78071982 5.50696969 29.04092503 C5.47570084 32.44949734 5.47277508 35.85809106 5.46684265 39.26678467 C5.45130559 45.71964418 5.41027958 52.17207984 5.3600952 58.62475276 C5.30419697 65.97168325 5.27671413 73.31863405 5.25161803 80.66572428 C5.19936315 95.77738563 5.11142414 110.88865042 5 126 C5.76666992 125.97381592 6.53333984 125.94763184 7.32324219 125.9206543 C10.79861949 125.81668777 14.27366983 125.75167276 17.75 125.6875 C18.9565625 125.64560547 20.163125 125.60371094 21.40625 125.56054688 C22.56640625 125.54443359 23.7265625 125.52832031 24.921875 125.51171875 C25.99018555 125.48553467 27.05849609 125.45935059 28.15917969 125.43237305 C31 126 31 126 35 131 C23.45 131 11.9 131 0 131 C0 87.77 0 44.54 0 0 Z " fill="#B9B9B9" transform="translate(609,84)"/>
<path d="M0 0 C5 4 5 4 5.61523914 6.39751053 C5.61063018 7.29349331 5.60602121 8.18947609 5.60127258 9.11260986 C5.6081459 10.14463531 5.61501923 11.17666077 5.62210083 12.23995972 C5.60412445 13.36636871 5.58614807 14.49277771 5.56762695 15.65332031 C5.56835709 16.84384003 5.56908722 18.03435974 5.56983948 19.26095581 C5.56695394 22.52137515 5.54189045 25.78071982 5.50696969 29.04092503 C5.47570084 32.44949734 5.47277508 35.85809106 5.46684265 39.26678467 C5.45130559 45.71964418 5.41027958 52.17207984 5.3600952 58.62475276 C5.30419697 65.97168325 5.27671413 73.31863405 5.25161803 80.66572428 C5.19936315 95.77738563 5.11142414 110.88865042 5 126 C5.76666992 125.97381592 6.53333984 125.94763184 7.32324219 125.9206543 C10.79861949 125.81668777 14.27366983 125.75167276 17.75 125.6875 C18.9565625 125.64560547 20.163125 125.60371094 21.40625 125.56054688 C22.56640625 125.54443359 23.7265625 125.52832031 24.921875 125.51171875 C25.99018555 125.48553467 27.05849609 125.45935059 28.15917969 125.43237305 C31 126 31 126 35 131 C23.45 131 11.9 131 0 131 C0 87.77 0 44.54 0 0 Z " fill="#B9B9B9" transform="translate(276,84)"/>
<path d="M0 0 C33.33 0 66.66 0 101 0 C101 13.2 101 26.4 101 40 C96 36 96 36 95.43237305 32.79199219 C95.45855713 31.55610352 95.48474121 30.32021484 95.51171875 29.046875 C95.51879349 28.38665344 95.52586823 27.72643188 95.53315735 27.04620361 C95.56105273 24.94629508 95.62376713 22.84909621 95.6875 20.75 C95.71258983 19.3229553 95.73540183 17.89586862 95.75585938 16.46875 C95.8108588 12.97829252 95.89709088 9.48941089 96 6 C94.30657219 6.0199855 94.30657219 6.0199855 92.57893372 6.04037476 C81.94084824 6.16199243 71.30290376 6.25194206 60.66428089 6.31087303 C55.19475652 6.34218888 49.72579323 6.38466717 44.2565918 6.45263672 C38.97865471 6.51781897 33.70125735 6.55370413 28.42294884 6.56926346 C26.4090392 6.58035176 24.39515918 6.60200507 22.38147926 6.63438034 C19.56071735 6.67792882 16.74218645 6.68393482 13.92114258 6.68115234 C13.08820175 6.702724 12.25526093 6.72429565 11.39707947 6.746521 C10.62451813 6.73827301 9.85195679 6.73002502 9.0559845 6.7215271 C8.38952817 6.72705786 7.72307184 6.73258862 7.03641987 6.73828697 C5 6 5 6 0 0 Z " fill="#E9E9E9" transform="translate(609,83)"/>
<path d="M0 0 C30.36 0 60.72 0 92 0 C92 13.2 92 26.4 92 40 C86 35 86 35 85.31884766 31.77026367 C85.365979 29.98712769 85.365979 29.98712769 85.4140625 28.16796875 C85.44306641 26.22954102 85.44306641 26.22954102 85.47265625 24.25195312 C85.52278099 22.89711097 85.57357058 21.54229326 85.625 20.1875 C85.65511878 18.81320906 85.68249128 17.43885501 85.70703125 16.06445312 C85.77769278 12.70803031 85.87632295 9.35481935 86 6 C84.49449333 6.0199855 84.49449333 6.0199855 82.95857239 6.04037476 C73.49779534 6.16202906 64.03717705 6.25195927 54.57579517 6.31087303 C49.71157535 6.34217994 44.84798715 6.38464074 39.98413086 6.45263672 C35.28973375 6.51785262 30.59594393 6.55371087 25.90112877 6.56926346 C24.11049526 6.58034587 22.31989483 6.60198801 20.52952003 6.63438034 C18.02000888 6.67797591 15.51300302 6.68393319 13.00317383 6.68115234 C11.89402367 6.71350983 11.89402367 6.71350983 10.76246643 6.746521 C8.67634583 6.7215271 8.67634583 6.7215271 5 6 C3.35 4.02 1.7 2.04 0 0 Z " fill="#E9E9E9" transform="translate(1052,83)"/>
<path d="M0 0 C13.2 0 26.4 0 40 0 C40 2.97 40 5.94 40 9 C41.32 9 42.64 9 44 9 C44 11.97 44 14.94 44 18 C45.32 18 46.64 18 48 18 C48 20.64 48 23.28 48 26 C49.65 26 51.3 26 53 26 C53 30.29 53 34.58 53 39 C54.32 39 55.64 39 57 39 C57 41.97 57 44.94 57 48 C58.32 48 59.64 48 61 48 C61 50.97 61 53.94 61 57 C61.763125 57.0825 62.52625 57.165 63.3125 57.25 C66 58 66 58 69 62 C64.71 62 60.42 62 56 62 C56 59.36 56 56.72 56 54 C54.68 53.67 53.36 53.34 52 53 C52 50.36 52 47.72 52 45 C50.35 45 48.7 45 47 45 C47 40.71 47 36.42 47 32 C45.68 32 44.36 32 43 32 C43 29.03 43 26.06 43 23 C41.35 23 39.7 23 38 23 C38 20.03 38 17.06 38 14 C36.68 14 35.36 14 34 14 C34 11.36 34 8.72 34 6 C33.14768799 6.0314209 32.29537598 6.0628418 31.41723633 6.09521484 C28.23975696 6.197777 25.06312361 6.27283585 21.88452148 6.32958984 C20.5118425 6.3596733 19.13935437 6.40055334 17.76733398 6.45263672 C15.78975379 6.52580073 13.81074291 6.55633084 11.83203125 6.5859375 C10.04889526 6.63306885 10.04889526 6.63306885 8.22973633 6.68115234 C5 6 5 6 0 0 Z " fill="#ECECEC" transform="translate(938,83)"/>
<path d="M0 0 C0 43.23 0 86.46 0 131 C-5 127 -5 127 -5.62641239 124.59804535 C-5.6269987 123.6998835 -5.62758501 122.80172165 -5.62818909 121.87634277 C-5.64717003 120.32435432 -5.64717003 120.32435432 -5.66653442 118.74101257 C-5.65484222 117.61153702 -5.64315002 116.48206146 -5.63110352 115.31835938 C-5.63825882 114.12451126 -5.64541412 112.93066315 -5.65278625 111.70063782 C-5.66679713 108.4296891 -5.65836503 105.15976398 -5.63869596 101.88887215 C-5.62230524 98.46476423 -5.63112291 95.04070778 -5.63621521 91.61657715 C-5.64073575 85.86648541 -5.62486926 80.11671901 -5.59692383 74.36669922 C-5.5648717 67.72047804 -5.56488752 61.07484361 -5.5821386 54.42858076 C-5.59800692 48.0330263 -5.5912683 41.63768679 -5.57420158 35.24214172 C-5.56733205 32.52128878 -5.5683624 29.8006082 -5.57574654 27.07975769 C-5.58118411 23.28001304 -5.56086782 19.4812711 -5.53344727 15.68164062 C-5.53997314 14.55216507 -5.54649902 13.42268951 -5.55322266 12.25898743 C-5.5404982 11.22432846 -5.52777374 10.18966949 -5.5146637 9.12365723 C-5.51185678 8.22549538 -5.50904985 7.32733353 -5.50615788 6.40195465 C-4.96021531 3.81120311 -3.12822879 0 0 0 Z " fill="#EFEFEF" transform="translate(1043,84)"/>
<path d="M0 0 C4.29 0 8.58 0 13 0 C13 2.64 13 5.28 13 8 C14.65 8 16.3 8 18 8 C18 12.29 18 16.58 18 21 C19.32 21 20.64 21 22 21 C22 23.97 22 26.94 22 30 C23.32 30 24.64 30 26 30 C26 32.97 26 35.94 26 39 C27.65 39 29.3 39 31 39 C31 41.97 31 44.94 31 48 C32.32 48 33.64 48 35 48 C35 49.32 35 50.64 35 52 C35.8878418 51.97381592 36.77568359 51.94763184 37.69042969 51.9206543 C40.99300405 51.8353025 44.29440275 51.77269348 47.59765625 51.7253418 C49.02557901 51.70023653 50.45337375 51.66614413 51.88085938 51.62280273 C53.93651918 51.56196322 55.99047753 51.53375449 58.046875 51.51171875 C59.90070801 51.47244263 59.90070801 51.47244263 61.79199219 51.43237305 C65 52 65 52 69 57 C56.13 57 43.26 57 30 57 C30 55.68 30 54.36 30 53 C28.35 53 26.7 53 25 53 C25 50.03 25 47.06 25 44 C23.68 44 22.36 44 21 44 C21 41.36 21 38.72 21 36 C19.35 36 17.7 36 16 36 C16 33.03 16 30.06 16 27 C14.68 27 13.36 27 12 27 C12 22.71 12 18.42 12 14 C10.68 14 9.36 14 8 14 C8 11.03 8 8.06 8 5 C7.236875 4.9175 6.47375 4.835 5.6875 4.75 C3 4 3 4 0 0 Z " fill="#BCBCBC" transform="translate(531,158)"/>
<path d="M0 0 C4.29 0 8.58 0 13 0 C13 2.64 13 5.28 13 8 C14.65 8 16.3 8 18 8 C18 12.62 18 17.24 18 22 C19.32 22 20.64 22 22 22 C22 24.64 22 27.28 22 30 C23.65 30 25.3 30 27 30 C27 32.97 27 35.94 27 39 C28.32 39 29.64 39 31 39 C31 41.97 31 44.94 31 48 C32.32 48 33.64 48 35 48 C35 49.32 35 50.64 35 52 C35.8878418 51.97381592 36.77568359 51.94763184 37.69042969 51.9206543 C40.99300405 51.8353025 44.29440275 51.77269348 47.59765625 51.7253418 C49.02557901 51.70023653 50.45337375 51.66614413 51.88085938 51.62280273 C53.93651918 51.56196322 55.99047753 51.53375449 58.046875 51.51171875 C59.90070801 51.47244263 59.90070801 51.47244263 61.79199219 51.43237305 C65 52 65 52 69 57 C56.13 57 43.26 57 30 57 C30 55.68 30 54.36 30 53 C28.35 53 26.7 53 25 53 C25 50.03 25 47.06 25 44 C23.68 44 22.36 44 21 44 C21 41.36 21 38.72 21 36 C19.68 36 18.36 36 17 36 C17 33.03 17 30.06 17 27 C15.35 27 13.7 27 12 27 C12 22.71 12 18.42 12 14 C10.68 14 9.36 14 8 14 C8 11.03 8 8.06 8 5 C7.236875 4.9175 6.47375 4.835 5.6875 4.75 C3 4 3 4 0 0 Z " fill="#BBBBBB" transform="translate(973,158)"/>
<path d="M0 0 C11.55 0 23.1 0 35 0 C35 5.61 35 11.22 35 17 C40.94 17 46.88 17 53 17 C53 22.94 53 28.88 53 35 C58.61 35 64.22 35 70 35 C70 40.94 70 46.88 70 53 C68.35 51.68 66.7 50.36 65 49 C65 46.03 65 43.06 65 40 C59.06 40 53.12 40 47 40 C47 34.39 47 28.78 47 23 C41.39 23 35.78 23 30 23 C30 17.06 30 11.12 30 5 C28.16953125 5.05800781 26.3390625 5.11601563 24.453125 5.17578125 C22.05210879 5.2226761 19.65106506 5.26817654 17.25 5.3125 C16.0434375 5.35439453 14.836875 5.39628906 13.59375 5.43945312 C12.43359375 5.45556641 11.2734375 5.47167969 10.078125 5.48828125 C9.00981445 5.51446533 7.94150391 5.54064941 6.84082031 5.56762695 C4 5 4 5 0 0 Z " fill="#ECECEC" transform="translate(84,105)"/>
<path d="M0 0 C1.65 1.32 3.3 2.64 5 4 C5 6.64 5 9.28 5 12 C10.94 12 16.88 12 23 12 C23 17.94 23 23.88 23 30 C28.61 30 34.22 30 40 30 C40 35.61 40 41.22 40 47 C41.83046875 46.94199219 43.6609375 46.88398438 45.546875 46.82421875 C47.94789121 46.7773239 50.34893494 46.73182346 52.75 46.6875 C53.9565625 46.64560547 55.163125 46.60371094 56.40625 46.56054688 C57.56640625 46.54443359 58.7265625 46.52832031 59.921875 46.51171875 C60.99018555 46.48553467 62.05849609 46.45935059 63.15917969 46.43237305 C66 47 66 47 70 52 C58.45 52 46.9 52 35 52 C35 46.39 35 40.78 35 35 C29.06 35 23.12 35 17 35 C17 29.06 17 23.12 17 17 C11.39 17 5.78 17 0 17 C0 11.39 0 5.78 0 0 Z " fill="#BBBBBB" transform="translate(1156,141)"/>
<path d="M0 0 C12.87 0 25.74 0 39 0 C39 2.97 39 5.94 39 9 C40.65 9 42.3 9 44 9 C44 11.97 44 14.94 44 18 C45.32 18 46.64 18 48 18 C48 20.64 48 23.28 48 26 C49.32 26 50.64 26 52 26 C52 30.29 52 34.58 52 39 C53.65 39 55.3 39 57 39 C57.29036649 42.38115651 57.44908891 45.62919149 57 49 C54.5 51.625 54.5 51.625 52 53 C51 52 51 52 50.9375 48.4375 C50.958125 47.303125 50.97875 46.16875 51 45 C49.68 45 48.36 45 47 45 C47 40.71 47 36.42 47 32 C45.68 32 44.36 32 43 32 C43 29.03 43 26.06 43 23 C41.35 23 39.7 23 38 23 C38 20.03 38 17.06 38 14 C36.68 14 35.36 14 34 14 C34 11.36 34 8.72 34 6 C33.14768799 6.0314209 32.29537598 6.0628418 31.41723633 6.09521484 C28.23975696 6.197777 25.06312361 6.27283585 21.88452148 6.32958984 C20.5118425 6.3596733 19.13935437 6.40055334 17.76733398 6.45263672 C15.78975379 6.52580073 13.81074291 6.55633084 11.83203125 6.5859375 C10.04889526 6.63306885 10.04889526 6.63306885 8.22973633 6.68115234 C5 6 5 6 0 0 Z " fill="#ECECEC" transform="translate(496,83)"/>
<path d="M0 0 C2.46800047 1.15173355 4.04783565 2.04783565 6 4 C6.18827993 6.92248382 6.2516874 9.74950822 6.22705078 12.67236328 C6.22734283 13.56998383 6.22763489 14.46760437 6.22793579 15.39242554 C6.22653903 18.36848515 6.21096156 21.34429645 6.1953125 24.3203125 C6.1915836 26.38011539 6.18873605 28.43992005 6.18673706 30.49972534 C6.1790909 35.9282112 6.15943399 41.3565905 6.1373291 46.78503418 C6.1168918 52.32151854 6.10773988 57.85802007 6.09765625 63.39453125 C6.07618902 74.26306772 6.04204126 85.13152501 6 96 C0.37783907 92.30738392 0.37783907 92.30738392 -0.55344772 89.08498192 C-0.7382371 86.7311664 -0.74228367 84.43930577 -0.68115234 82.07885742 C-0.6820285 81.19055237 -0.68290466 80.30224731 -0.68380737 79.38702393 C-0.67963633 76.45893567 -0.63300786 73.53315534 -0.5859375 70.60546875 C-0.57474363 68.57238517 -0.56620435 66.53928537 -0.56021118 64.50617981 C-0.53732804 59.16117483 -0.47840856 53.81715181 -0.4119873 48.47253418 C-0.35055406 43.01632979 -0.3231939 37.55996635 -0.29296875 32.10351562 C-0.22866539 21.40191287 -0.12629156 10.70103816 0 0 Z " fill="#EFEFEF" transform="translate(1112,119)"/>
<path d="M0 0 C27.39 0 54.78 0 83 0 C83 1.32 83 2.64 83 4 C84.65 4 86.3 4 88 4 C88.33663062 7.70293685 88.47736015 9.39534381 86.125 12.375 C84 14 84 14 82 14 C82 12.68 82 11.36 82 10 C80.68 10 79.36 10 78 10 C78 8.68 78 7.36 78 6 C76.64483025 6.0199855 76.64483025 6.0199855 75.26228333 6.04037476 C66.74331398 6.16065484 58.22463024 6.25197622 49.7050066 6.31087303 C45.32502296 6.34217106 40.94574157 6.38461433 36.56616211 6.45263672 C32.3385956 6.51788628 28.11170395 6.55371755 23.88367271 6.56926346 C22.27165795 6.58034 20.65967966 6.60197101 19.04795265 6.63438034 C16.78742664 6.67802333 14.52967914 6.6839316 12.26879883 6.68115234 C10.34019768 6.70113785 10.34019768 6.70113785 8.37263489 6.7215271 C5 6 5 6 0 0 Z " fill="#EAEAEA" transform="translate(719,83)"/>
<path d="M0 0 C12.87 0 25.74 0 39 0 C39 21.78 39 43.56 39 66 C33 61 33 61 32.2784729 58.27275085 C32.29179657 57.28901993 32.30512024 56.305289 32.31884766 55.29174805 C32.31930084 54.17096359 32.31975403 53.05017914 32.32022095 51.89543152 C32.35118866 50.6963063 32.38215637 49.49718109 32.4140625 48.26171875 C32.42255219 47.02581497 32.43104187 45.78991119 32.43978882 44.51655579 C32.4676495 41.24264089 32.52147746 37.97051847 32.5880127 34.69720459 C32.64957274 31.35234082 32.67631986 28.00739876 32.70703125 24.66210938 C32.77315243 18.10737417 32.87353366 11.55383361 33 5 C31.66038208 5.02356567 31.66038208 5.02356567 30.29370117 5.04760742 C26.97821244 5.09875439 23.66314325 5.13635812 20.34741211 5.16479492 C18.91277448 5.17987589 17.47818292 5.2003438 16.04370117 5.22631836 C13.98084141 5.26273437 11.91859142 5.27973243 9.85546875 5.29296875 C8.61434326 5.3086792 7.37321777 5.32438965 6.09448242 5.34057617 C3 5 3 5 1.0715332 3.60668945 C0 2 0 2 0 0 Z " fill="#BBBBBB" transform="translate(860,114)"/>
<path d="M0 0 C4 2 4 2 5 3 C5.09370624 4.77991924 5.11744271 6.56356739 5.11352539 8.34594727 C5.11344986 9.4870546 5.11337433 10.62816193 5.11329651 11.80384827 C5.10813522 13.0454924 5.10297394 14.28713654 5.09765625 15.56640625 C5.0962413 16.83016586 5.09482635 18.09392548 5.09336853 19.39598083 C5.08870582 22.76124889 5.0797148 26.1264499 5.06866455 29.49169922 C5.05844846 32.9234967 5.05387049 36.35530109 5.04882812 39.78710938 C5.0377738 46.52475824 5.0210171 53.26237525 5 60 C5.88260498 59.9685791 6.76520996 59.9371582 7.67456055 59.90478516 C10.96418915 59.80223442 14.25210953 59.72717752 17.54272461 59.67041016 C18.9638964 59.64032046 20.38488372 59.59943596 21.80541992 59.54736328 C23.85381575 59.47418066 25.8997499 59.4404729 27.94921875 59.4140625 C29.17987061 59.3826416 30.41052246 59.3512207 31.6784668 59.31884766 C35 60 35 60 40 66 C26.8 66 13.6 66 0 66 C0 44.22 0 22.44 0 0 Z " fill="#EFEFEF" transform="translate(197,115)"/>
<path d="M0 0 C0.33 0.99 0.66 1.98 1 3 C2.32 3 3.64 3 5 3 C5 35.01 5 67.02 5 100 C0 96 0 96 -0.60127258 92.21612549 C-0.61573773 90.66396731 -0.6025352 89.11140331 -0.56762695 87.55957031 C-0.56835709 86.71042557 -0.56908722 85.86128082 -0.56983948 84.98640442 C-0.56635928 82.1829921 -0.52747864 79.38124659 -0.48828125 76.578125 C-0.47895464 74.63328967 -0.47183781 72.68844259 -0.46684265 70.74359131 C-0.4477609 65.62721263 -0.3986497 60.51154479 -0.34332275 55.39544678 C-0.29215581 50.17388526 -0.26933405 44.95220876 -0.24414062 39.73046875 C-0.19053232 29.48666702 -0.10520504 19.24339264 0 9 C-1.32 9 -2.64 9 -4 9 C-4.25 6.75 -4.25 6.75 -4 4 C-2 1.6875 -2 1.6875 0 0 Z " fill="#EFEFEF" transform="translate(924,97)"/>
<path d="M0 0 C4 2 4 2 5 3 C5 7.29 5 11.58 5 16 C19.85 16 34.7 16 50 16 C50 25.24 50 34.48 50 44 C47.03 41.525 47.03 41.525 44 39 C44 33.39 44 27.78 44 22 C29.48 22 14.96 22 0 22 C0 14.74 0 7.48 0 0 Z " fill="#ECECEC" transform="translate(420,119)"/>
<path d="M0 0 C6 5 6 5 6.68115234 7.03637695 C6.634021 8.00256958 6.634021 8.00256958 6.5859375 8.98828125 C6.57095215 9.62548096 6.5559668 10.26268066 6.54052734 10.91918945 C6.48590332 11.70898193 6.4312793 12.49877441 6.375 13.3125 C6.25125 15.849375 6.1275 18.38625 6 21 C11.61 21 17.22 21 23 21 C23 26.94 23 32.88 23 39 C28.94 39 34.88 39 41 39 C41 44.94 41 50.88 41 57 C38.03 54.525 38.03 54.525 35 52 C35 49.36 35 46.72 35 44 C29.39 44 23.78 44 18 44 C18 38.39 18 32.78 18 27 C12.06 27 6.12 27 0 27 C0 18.09 0 9.18 0 0 Z " fill="#EDEDED" transform="translate(1186,136)"/>
<path d="M0 0 C1.65 1.32 3.3 2.64 5 4 C5 8.29 5 12.58 5 17 C21.17 17 37.34 17 54 17 C54 27.23 54 37.46 54 48 C53.34 48 52.68 48 52 48 C48 43 48 43 48 22 C32.16 22 16.32 22 0 22 C0 14.74 0 7.48 0 0 Z " fill="#EDEDED" transform="translate(640,119)"/>
<path d="M0 0 C12.87 0 25.74 0 39 0 C39 21.45 39 42.9 39 65 C35 63 35 63 34 62 C33.90629376 60.22008076 33.88255729 58.43643261 33.88647461 56.65405273 C33.88655014 55.5129454 33.88662567 54.37183807 33.88670349 53.19615173 C33.89186478 51.9545076 33.89702606 50.71286346 33.90234375 49.43359375 C33.9037587 48.16983414 33.90517365 46.90607452 33.90663147 45.60401917 C33.91129418 42.23875111 33.9202852 38.8735501 33.93133545 35.50830078 C33.94155154 32.0765033 33.94612951 28.64469891 33.95117188 25.21289062 C33.9622262 18.47524176 33.9789829 11.73762475 34 5 C33.1121582 5.02618408 32.22431641 5.05236816 31.30957031 5.0793457 C28.00699595 5.1646975 24.70559725 5.22730652 21.40234375 5.2746582 C19.97442099 5.29976347 18.54662625 5.33385587 17.11914062 5.37719727 C15.06348082 5.43803678 13.00952247 5.46624551 10.953125 5.48828125 C9.09929199 5.52755737 9.09929199 5.52755737 7.20800781 5.56762695 C4 5 4 5 0 0 Z " fill="#BABABA" transform="translate(198,114)"/>
<path d="M0 0 C1.98 1.65 3.96 3.3 6 5 C6 7.64 6 10.28 6 13 C11.61 13 17.22 13 23 13 C23 18.94 23 24.88 23 31 C28.94 31 34.88 31 41 31 C41 39.91 41 48.82 41 58 C35 53 35 53 34.31884766 50.87182617 C34.35026855 50.18580322 34.38168945 49.49978027 34.4140625 48.79296875 C34.43654053 47.77626099 34.43654053 47.77626099 34.45947266 46.73901367 C34.51409668 45.89701416 34.5687207 45.05501465 34.625 44.1875 C34.74875 41.485625 34.8725 38.78375 35 36 C29.39 36 23.78 36 18 36 C18 30.06 18 24.12 18 18 C12.06 18 6.12 18 0 18 C0 12.06 0 6.12 0 0 Z " fill="#BBBBBB" transform="translate(83,105)"/>
<path d="M0 0 C12.87 0 25.74 0 39 0 C39 9.9 39 19.8 39 30 C47.04821597 29.80256151 47.04821597 29.80256151 55.09472656 29.54956055 C56.60244629 29.53082886 56.60244629 29.53082886 58.140625 29.51171875 C59.68024902 29.47244263 59.68024902 29.47244263 61.25097656 29.43237305 C64 30 64 30 68 35 C56.78 35 45.56 35 34 35 C34 25.1 34 15.2 34 5 C24.30642421 5.19755274 24.30642421 5.19755274 14.61425781 5.45043945 C12.80199707 5.46917114 12.80199707 5.46917114 10.953125 5.48828125 C9.09929199 5.52755737 9.09929199 5.52755737 7.20800781 5.56762695 C4 5 4 5 0 0 Z " fill="#BBBBBB" transform="translate(750,180)"/>
<path d="M0 0 C0.33 0.99 0.66 1.98 1 3 C2.65 3 4.3 3 6 3 C6 4.65 6 6.3 6 8 C7.32 8 8.64 8 10 8 C10 28.46 10 48.92 10 70 C4 65 4 65 3.2784729 62.42460632 C3.29179657 61.51193497 3.30512024 60.59926361 3.31884766 59.65893555 C3.31930084 58.6182341 3.31975403 57.57753265 3.32022095 56.5052948 C3.35118866 55.3936647 3.38215637 54.28203461 3.4140625 53.13671875 C3.42255219 51.98959915 3.43104187 50.84247955 3.43978882 49.66059875 C3.47333694 46.00193808 3.5486267 42.34549289 3.625 38.6875 C3.65509742 36.20510998 3.6824736 33.72268538 3.70703125 31.24023438 C3.77313317 25.15940219 3.87349861 19.07985937 4 13 C2.68 13 1.36 13 0 13 C0 11.68 0 10.36 0 9 C-1.32 9 -2.64 9 -4 9 C-4.25 6.75 -4.25 6.75 -4 4 C-2 1.6875 -2 1.6875 0 0 Z " fill="#EEEEEE" transform="translate(810,93)"/>
<path d="M0 0 C22.11 0 44.22 0 67 0 C67 1.32 67 2.64 67 4 C68.32 4 69.64 4 71 4 C71 5.65 71 7.3 71 9 C72.65 9 74.3 9 76 9 C76.25 11.25 76.25 11.25 76 14 C74.125 16.3125 74.125 16.3125 72 18 C71.34 18 70.68 18 70 18 C70 16.68 70 15.36 70 14 C68.68 14 67.36 14 66 14 C66 12.68 66 11.36 66 10 C64.35 10 62.7 10 61 10 C61 8.35 61 6.7 61 5 C59.96429619 5.01665459 59.96429619 5.01665459 58.90766907 5.03364563 C51.72153661 5.14425947 44.53564594 5.2196765 37.34887695 5.2746582 C34.66661546 5.29697994 31.9849458 5.33176794 29.30297852 5.37719727 C25.44790745 5.43784525 21.5937423 5.46621127 17.73828125 5.48828125 C15.93959343 5.52699089 15.93959343 5.52699089 14.10456848 5.56648254 C12.98378403 5.5668602 11.86299957 5.56723785 10.70825195 5.56762695 C9.72452103 5.57873001 8.7407901 5.58983307 7.72724915 5.60127258 C5 5 5 5 0 0 Z " fill="#EBEBEB" transform="translate(845,83)"/>
<path d="M0 0 C6 5 6 5 6.7484436 7.73829651 C6.74718475 8.72772751 6.7459259 9.71715851 6.74462891 10.73657227 C6.76331528 12.42841393 6.76331528 12.42841393 6.78237915 14.1544342 C6.75474991 15.96711037 6.75474991 15.96711037 6.7265625 17.81640625 C6.72755951 19.06501938 6.72855652 20.31363251 6.72958374 21.6000824 C6.72490473 24.23814937 6.70865019 26.87299227 6.67236328 29.51049805 C6.62693797 32.88582249 6.62591181 36.25935772 6.63939857 39.63490391 C6.6476977 42.8622057 6.6237305 46.08919118 6.6015625 49.31640625 C6.60338531 50.52688126 6.60520813 51.73735626 6.60708618 52.98451233 C6.58802216 54.10925461 6.56895813 55.23399689 6.54931641 56.39282227 C6.54010162 57.38145767 6.53088684 58.37009308 6.52139282 59.38868713 C5.85924205 62.70496377 4.62257073 63.93077343 2 66 C1.34 66 0.68 66 0 66 C0 44.22 0 22.44 0 0 Z " fill="#EFEFEF" transform="translate(858,114)"/>
<path d="M0 0 C12.87 0 25.74 0 39 0 C39 0.99 39 1.98 39 3 C40.65 3 42.3 3 44 3 C44 11.91 44 20.82 44 30 C40 28 40 28 38 26 C37.85482256 23.0906442 37.81369204 20.280054 37.875 17.375 C37.88402344 16.57320312 37.89304687 15.77140625 37.90234375 14.9453125 C37.92593777 12.96341477 37.96180935 10.98167019 38 9 C36.68 9 35.36 9 34 9 C34 7.68 34 6.36 34 5 C32.61494263 5.02356567 32.61494263 5.02356567 31.2019043 5.04760742 C27.77460111 5.09874832 24.34770358 5.13635535 20.92016602 5.16479492 C19.43702801 5.17987768 17.95393456 5.20034689 16.47094727 5.22631836 C14.33859255 5.26272616 12.20682765 5.27973073 10.07421875 5.29296875 C8.79119873 5.3086792 7.50817871 5.32438965 6.1862793 5.34057617 C3 5 3 5 1.05786133 3.60668945 C0 2 0 2 0 0 Z " fill="#BDBDBD" transform="translate(308,108)"/>
<path d="M0 0 C11.55 0 23.1 0 35 0 C35 1.32 35 2.64 35 4 C36.32 4 37.64 4 39 4 C39 14.23 39 24.46 39 35 C34 31 34 31 33.43237305 28.61816406 C33.45855713 27.75932617 33.48474121 26.90048828 33.51171875 26.015625 C33.52783203 25.08105469 33.54394531 24.14648438 33.56054688 23.18359375 C33.62338867 21.73146484 33.62338867 21.73146484 33.6875 20.25 C33.71005859 19.26644531 33.73261719 18.28289062 33.75585938 17.26953125 C33.81471195 14.8448053 33.89686569 12.42318017 34 10 C32.68 10 31.36 10 30 10 C30 8.35 30 6.7 30 5 C29.19780029 5.01571045 28.39560059 5.0314209 27.5690918 5.04760742 C23.94196596 5.10988583 20.31495251 5.14896864 16.6875 5.1875 C14.79354492 5.22520508 14.79354492 5.22520508 12.86132812 5.26367188 C11.04858398 5.27817383 11.04858398 5.27817383 9.19921875 5.29296875 C7.52605591 5.31653442 7.52605591 5.31653442 5.8190918 5.34057617 C3 5 3 5 1.11254883 3.60668945 C0 2 0 2 0 0 Z " fill="#BBBBBB" transform="translate(750,114)"/>
<path d="M0 0 C12.87 0 25.74 0 39 0 C37.68 1.65 36.36 3.3 35 5 C34.40467648 7.53517899 34.40467648 7.53517899 34.48101807 10.23286438 C34.46014885 11.78296455 34.46014885 11.78296455 34.43885803 13.36437988 C34.44640358 15.04860046 34.44640358 15.04860046 34.45410156 16.7668457 C34.44376389 17.95751144 34.43342621 19.14817719 34.42277527 20.37492371 C34.39836919 23.63087564 34.39150968 26.88629369 34.39249516 30.14231896 C34.38936266 33.54834997 34.36373754 36.9542106 34.34051514 40.3601532 C34.29997712 46.80569049 34.27961969 53.25112667 34.26654124 59.6967718 C34.25066367 67.03662105 34.21224494 74.37629841 34.17194796 81.71604788 C34.08957923 96.81064162 34.0354683 111.90521772 34 127 C33.67 127 33.34 127 33 127 C33 87.07 33 47.14 33 6 C23.76 6 14.52 6 5 6 C3.35 4.68 1.7 3.36 0 2 C0 1.34 0 0.68 0 0 Z " fill="#E8E8E8" transform="translate(562,83)"/>
<path d="M0 0 C8.40577556 -0.11587396 16.81121724 -0.20470398 25.21759415 -0.25906086 C29.12109851 -0.28515031 33.02405631 -0.3205346 36.92724609 -0.37719727 C40.69443884 -0.43154313 44.46110608 -0.46142545 48.22866058 -0.47438622 C49.66563948 -0.48362174 51.10258975 -0.50165727 52.53934479 -0.52865028 C54.55231146 -0.56496318 56.56580747 -0.56704255 58.57910156 -0.56762695 C59.72493713 -0.57873001 60.87077271 -0.58983307 62.05133057 -0.60127258 C65 0 65 0 67.40130615 2.53547668 C68.19265961 3.75541573 68.19265961 3.75541573 69 5 C60.59422444 5.11587396 52.18878276 5.20470398 43.78240585 5.25906086 C39.87890149 5.28515031 35.97594369 5.3205346 32.07275391 5.37719727 C28.30556116 5.43154313 24.53889392 5.46142545 20.77133942 5.47438622 C19.33436052 5.48362174 17.89741025 5.50165727 16.46065521 5.52865028 C14.44768854 5.56496318 12.43419253 5.56704255 10.42089844 5.56762695 C9.27506287 5.57873001 8.12922729 5.58983307 6.94866943 5.60127258 C4 5 4 5 1.59869385 2.46452332 C1.07112488 1.65123062 0.54355591 0.83793793 0 0 Z " fill="#BDBDBD" transform="translate(640,118)"/>
<path d="M0 0 C5 4 5 4 5.56762695 7.20800781 C5.52835083 9.06184082 5.52835083 9.06184082 5.48828125 10.953125 C5.48120651 11.61334656 5.47413177 12.27356812 5.46684265 12.95379639 C5.43894727 15.05370492 5.37623287 17.15090379 5.3125 19.25 C5.28741017 20.6770447 5.26459817 22.10413138 5.24414062 23.53125 C5.1891412 27.02170748 5.10290912 30.51058911 5 34 C5.77190674 33.98428955 6.54381348 33.9685791 7.33911133 33.95239258 C10.83016662 33.89010393 14.32110509 33.85102827 17.8125 33.8125 C19.02744141 33.78736328 20.24238281 33.76222656 21.49414062 33.73632812 C23.23920898 33.72182617 23.23920898 33.72182617 25.01953125 33.70703125 C26.09307861 33.6913208 27.16662598 33.67561035 28.27270508 33.65942383 C31 34 31 34 32.8737793 35.39331055 C34 37 34 37 34 39 C22.78 39 11.56 39 0 39 C0 26.13 0 13.26 0 0 Z " fill="#EDEDED" transform="translate(749,115)"/>
<path d="M0 0 C2.46800047 1.15173355 4.04783565 2.04783565 6 4 C6.24050903 6.21463013 6.24050903 6.21463013 6.22705078 9.00048828 C6.22689972 10.04141632 6.22674866 11.08234436 6.22659302 12.15481567 C6.21627045 13.28192963 6.20594788 14.40904358 6.1953125 15.5703125 C6.19106766 17.29735916 6.19106766 17.29735916 6.18673706 19.05929565 C6.17551408 22.74796812 6.15040556 26.43640053 6.125 30.125 C6.11497294 32.62109025 6.10584662 35.1171843 6.09765625 37.61328125 C6.07556784 43.74226984 6.04206947 49.87111777 6 56 C3.53199953 54.84826645 1.95216435 53.95216435 0 52 C-0.24050903 49.78536987 -0.24050903 49.78536987 -0.22705078 46.99951172 C-0.22689972 45.95858368 -0.22674866 44.91765564 -0.22659302 43.84518433 C-0.21110916 42.1545134 -0.21110916 42.1545134 -0.1953125 40.4296875 C-0.1924826 39.27832306 -0.18965271 38.12695862 -0.18673706 36.94070435 C-0.17551408 33.25203188 -0.15040556 29.56359947 -0.125 25.875 C-0.11497294 23.37890975 -0.10584662 20.8828157 -0.09765625 18.38671875 C-0.07556784 12.25773016 -0.04206947 6.12888223 0 0 Z " fill="#EEEEEE" transform="translate(972,159)"/>
<path d="M0 0 C5 4 5 4 5.56762695 6.65722656 C5.54144287 7.64174805 5.51525879 8.62626953 5.48828125 9.640625 C5.47216797 10.71054688 5.45605469 11.78046875 5.43945312 12.8828125 C5.39755859 13.99398437 5.35566406 15.10515625 5.3125 16.25 C5.28994141 17.37664062 5.26738281 18.50328125 5.24414062 19.6640625 C5.18524254 22.44405232 5.10304201 25.22135332 5 28 C5.8878418 27.97381592 6.77568359 27.94763184 7.69042969 27.9206543 C10.99300405 27.8353025 14.29440275 27.77269348 17.59765625 27.7253418 C19.02557901 27.70023653 20.45337375 27.66614413 21.88085938 27.62280273 C23.93651918 27.56196322 25.99047753 27.53375449 28.046875 27.51171875 C29.90070801 27.47244263 29.90070801 27.47244263 31.79199219 27.43237305 C35 28 35 28 39 33 C26.13 33 13.26 33 0 33 C0 22.11 0 11.22 0 0 Z " fill="#EDEDED" transform="translate(307,109)"/>
<path d="M0 0 C0.33 0.99 0.66 1.98 1 3 C2.65 3 4.3 3 6 3 C6 19.5 6 36 6 53 C0 48 0 48 -0.7215271 45.9181366 C-0.70820343 45.23640884 -0.69487976 44.55468109 -0.68115234 43.85229492 C-0.68047256 42.68164742 -0.68047256 42.68164742 -0.67977905 41.48735046 C-0.63332748 40.24644402 -0.63332748 40.24644402 -0.5859375 38.98046875 C-0.57744781 38.12189774 -0.56895813 37.26332672 -0.56021118 36.3787384 C-0.52672797 33.64702769 -0.4514637 30.9183122 -0.375 28.1875 C-0.34489358 26.33142296 -0.31751895 24.47529947 -0.29296875 22.61914062 C-0.22695395 18.07827993 -0.12347181 13.53964704 0 9 C-1.32 9 -2.64 9 -4 9 C-4.25 6.75 -4.25 6.75 -4 4 C-2 1.6875 -2 1.6875 0 0 Z " fill="#EEEEEE" transform="translate(372,97)"/>
<path d="M0 0 C7.88423444 -0.11589516 15.76811253 -0.20471439 23.65298843 -0.25906086 C27.31437534 -0.28514591 30.97517916 -0.32052148 34.63623047 -0.37719727 C38.17000804 -0.43155986 41.70322514 -0.46142876 45.23738861 -0.47438622 C47.24058028 -0.48810967 49.24354668 -0.52713702 51.24639893 -0.56648254 C52.46736267 -0.5668602 53.68832642 -0.56723785 54.94628906 -0.56762695 C56.02106506 -0.57873001 57.09584106 -0.58983307 58.20318604 -0.60127258 C61.92728723 0.19935269 62.95482172 1.89180088 65 5 C57.11576556 5.11589516 49.23188747 5.20471439 41.34701157 5.25906086 C37.68562466 5.28514591 34.02482084 5.32052148 30.36376953 5.37719727 C26.82999196 5.43155986 23.29677486 5.46142876 19.76261139 5.47438622 C17.75941972 5.48810967 15.75645332 5.52713702 13.75360107 5.56648254 C12.53263733 5.5668602 11.31167358 5.56723785 10.05371094 5.56762695 C8.97893494 5.57873001 7.90415894 5.58983307 6.79681396 5.60127258 C3.07271277 4.80064731 2.04517828 3.10819912 0 0 Z " fill="#BDBDBD" transform="translate(421,118)"/>
<path d="M0 0 C2.46800047 1.15173355 4.04783565 2.04783565 6 4 C6.24050903 6.06277466 6.24050903 6.06277466 6.22705078 8.63330078 C6.22689972 9.59414581 6.22674866 10.55499084 6.22659302 11.54495239 C6.21627045 12.58457123 6.20594788 13.62419006 6.1953125 14.6953125 C6.1924826 15.75789276 6.18965271 16.82047302 6.18673706 17.91525269 C6.17551639 21.31861499 6.15040837 24.72171686 6.125 28.125 C6.11497264 30.42838162 6.10584637 32.73176736 6.09765625 35.03515625 C6.07557093 40.69019345 6.04207489 46.34507813 6 52 C3.41802533 50.408229 1.82352882 49.35617011 0 47 C-0.84804584 43.40837581 -0.69943029 39.90363065 -0.5859375 36.23046875 C-0.57744781 35.19432938 -0.56895813 34.15819 -0.56021118 33.09065247 C-0.52668398 29.78853396 -0.45140187 26.48887753 -0.375 23.1875 C-0.3448997 20.94599886 -0.31752402 18.70445936 -0.29296875 16.46289062 C-0.2268954 10.97442357 -0.12655366 5.48738767 0 0 Z " fill="#EEEEEE" transform="translate(639,163)"/>
<path d="M0 0 C2.37978024 1.62879076 3.54021391 2.56559831 5 5 C5.7252067 9.31553698 5.58054084 13.59188341 5.48828125 17.95703125 C5.47766914 19.84418098 5.47766914 19.84418098 5.46684265 21.76945496 C5.4436237 25.10249327 5.39876548 28.43379975 5.34332275 31.76635742 C5.29202734 35.17156055 5.26930691 38.57694314 5.24414062 41.98242188 C5.1890377 48.65542446 5.10538292 55.3276123 5 62 C0.17779582 58.79333797 0.17779582 58.79333797 -0.60127258 55.31707764 C-0.59016953 54.29559631 -0.57906647 53.27411499 -0.56762695 52.22167969 C-0.5672493 51.0607782 -0.56687164 49.89987671 -0.56648254 48.70379639 C-0.54067612 47.45576233 -0.51486969 46.20772827 -0.48828125 44.921875 C-0.48120651 43.64016418 -0.47413177 42.35845337 -0.46684265 41.03790283 C-0.44779234 37.63768384 -0.39871189 34.23854042 -0.34332275 30.83874512 C-0.29208578 27.36660309 -0.26931933 23.89428647 -0.24414062 20.421875 C-0.19058875 13.61414274 -0.10530171 6.80712307 0 0 Z " fill="#B9B9B9" transform="translate(1003,83)"/>
<path d="M0 0 C2.37978024 1.62879076 3.54021391 2.56559831 5 5 C5.7252067 9.31553698 5.58054084 13.59188341 5.48828125 17.95703125 C5.47766914 19.84418098 5.47766914 19.84418098 5.46684265 21.76945496 C5.4436237 25.10249327 5.39876548 28.43379975 5.34332275 31.76635742 C5.29202734 35.17156055 5.26930691 38.57694314 5.24414062 41.98242188 C5.1890377 48.65542446 5.10538292 55.3276123 5 62 C0.17779582 58.79333797 0.17779582 58.79333797 -0.60127258 55.31707764 C-0.59016953 54.29559631 -0.57906647 53.27411499 -0.56762695 52.22167969 C-0.5672493 51.0607782 -0.56687164 49.89987671 -0.56648254 48.70379639 C-0.54067612 47.45576233 -0.51486969 46.20772827 -0.48828125 44.921875 C-0.48120651 43.64016418 -0.47413177 42.35845337 -0.46684265 41.03790283 C-0.44779234 37.63768384 -0.39871189 34.23854042 -0.34332275 30.83874512 C-0.29208578 27.36660309 -0.26931933 23.89428647 -0.24414062 20.421875 C-0.19058875 13.61414274 -0.10530171 6.80712307 0 0 Z " fill="#B9B9B9" transform="translate(561,83)"/>
<path d="M0 0 C3.875 1.875 3.875 1.875 5 3 C5.09346915 4.65738443 5.11744977 6.31874644 5.11352539 7.97875977 C5.11344986 9.03978409 5.11337433 10.10080841 5.11329651 11.19398499 C5.10813522 12.348134 5.10297394 13.50228302 5.09765625 14.69140625 C5.0962413 15.86638168 5.09482635 17.04135712 5.09336853 18.25193787 C5.08774992 22.02215064 5.07519426 25.79230504 5.0625 29.5625 C5.0574874 32.11132727 5.05292408 34.66015547 5.04882812 37.20898438 C5.03777444 43.47267633 5.02101821 49.73633399 5 56 C2.53051758 54.73535156 2.53051758 54.73535156 0 52 C-0.73625427 48.08571132 -0.58002741 44.20475487 -0.48828125 40.234375 C-0.48120651 39.08584045 -0.47413177 37.93730591 -0.46684265 36.75396729 C-0.43885232 33.08531589 -0.37610052 29.41819017 -0.3125 25.75 C-0.28742334 23.26304287 -0.26460908 20.77606182 -0.24414062 18.2890625 C-0.18901025 12.19218772 -0.10533592 6.09620285 0 0 Z " fill="#EFEFEF" transform="translate(530,159)"/>
<path d="M0 0 C6.17461641 -0.14847404 12.34819105 -0.25727723 18.52416992 -0.32958984 C20.62428896 -0.35973742 22.72428234 -0.40066333 24.82397461 -0.45263672 C27.84520466 -0.52554078 30.86476873 -0.55947639 33.88671875 -0.5859375 C34.82335861 -0.61690521 35.75999847 -0.64787292 36.72502136 -0.67977905 C43.13739984 -0.68307932 43.13739984 -0.68307932 45.73721313 1.37567139 C47.13208008 3.03662109 47.13208008 3.03662109 49 6 C42.82538359 6.14847404 36.65180895 6.25727723 30.47583008 6.32958984 C28.37571104 6.35973742 26.27571766 6.40066333 24.17602539 6.45263672 C21.15479534 6.52554078 18.13523127 6.55947639 15.11328125 6.5859375 C14.17664139 6.61690521 13.24000153 6.64787292 12.27497864 6.67977905 C5.86260016 6.68307932 5.86260016 6.68307932 3.26278687 4.62432861 C1.86791992 2.96337891 1.86791992 2.96337891 0 0 Z " fill="#BEBEBE" transform="translate(420,157)"/>
<path d="M0 0 C3.875 1.875 3.875 1.875 5 3 C5.09319449 4.5348297 5.117458 6.07392082 5.11352539 7.61157227 C5.11341209 9.08298424 5.11341209 9.08298424 5.11329651 10.5841217 C5.10813522 11.6507756 5.10297394 12.7174295 5.09765625 13.81640625 C5.0962413 14.9025975 5.09482635 15.98878876 5.09336853 17.1078949 C5.08775048 20.59279075 5.07519492 24.07762342 5.0625 27.5625 C5.05748733 29.91861887 5.05292402 32.27473874 5.04882812 34.63085938 C5.03777519 40.42059464 5.02101951 46.21029281 5 52 C2.53051758 50.68066406 2.53051758 50.68066406 0 48 C-0.72937621 44.37568007 -0.5806423 40.79322029 -0.48828125 37.109375 C-0.48120651 36.04962463 -0.47413177 34.98987427 -0.46684265 33.89801025 C-0.43886336 30.51462084 -0.37611521 27.13288884 -0.3125 23.75 C-0.28742184 21.45575307 -0.26460784 19.1614802 -0.24414062 16.8671875 C-0.18902525 11.24422658 -0.10536309 5.62223169 0 0 Z " fill="#EFEFEF" transform="translate(307,163)"/>
<path d="M0 0 C6.92334988 -0.07595711 13.84659263 -0.12856051 20.77026367 -0.16479492 C23.12642431 -0.17989747 25.48255677 -0.20038091 27.83862305 -0.22631836 C31.22191312 -0.26263656 34.60483208 -0.27971167 37.98828125 -0.29296875 C39.57277824 -0.31619453 39.57277824 -0.31619453 41.18928528 -0.33988953 C42.66047066 -0.34022942 42.66047066 -0.34022942 44.16137695 -0.34057617 C45.45710381 -0.35056892 45.45710381 -0.35056892 46.77900696 -0.36076355 C49.48034668 0.07802437 50.37935309 0.82975586 52 3 C52 3.66 52 4.32 52 5 C45.23750813 5.12673206 38.47532217 5.21432235 31.71191406 5.2746582 C29.4110164 5.29980906 27.11019868 5.33393396 24.80957031 5.37719727 C21.50305467 5.43782147 18.19759479 5.46620441 14.890625 5.48828125 C13.3466806 5.52699089 13.3466806 5.52699089 11.77154541 5.56648254 C4.60307956 5.56930051 4.60307956 5.56930051 1.31933594 2.46948242 C0.88395508 1.65455322 0.44857422 0.83962402 0 0 Z " fill="#BDBDBD" transform="translate(640,162)"/>
<path d="M0 0 C6.62007209 -0.12674312 13.23983157 -0.21432681 19.86083984 -0.2746582 C22.11323743 -0.29980743 24.36555336 -0.33393118 26.61767578 -0.37719727 C29.854697 -0.437829 33.09063972 -0.46620592 36.328125 -0.48828125 C37.33554749 -0.51408768 38.34296997 -0.5398941 39.38092041 -0.56648254 C46.39999625 -0.56930051 46.39999625 -0.56930051 49.66699219 2.53051758 C50.10688477 3.34544678 50.54677734 4.16037598 51 5 C44.37992791 5.12674312 37.76016843 5.21432681 31.13916016 5.2746582 C28.88676257 5.29980743 26.63444664 5.33393118 24.38232422 5.37719727 C21.145303 5.437829 17.90936028 5.46620592 14.671875 5.48828125 C13.66445251 5.51408768 12.65703003 5.5398941 11.61907959 5.56648254 C4.60000375 5.56930051 4.60000375 5.56930051 1.33300781 2.46948242 C0.89311523 1.65455322 0.45322266 0.83962402 0 0 Z " fill="#BDBDBD" transform="translate(308,162)"/>
<path d="M0 0 C11.55 0 23.1 0 35 0 C35 5.94 35 11.88 35 18 C29 13 29 13 28.4140625 10.76171875 C28.609375 8.84114583 28.8046875 6.92057292 29 5 C28.26362305 5.02618408 27.52724609 5.05236816 26.76855469 5.0793457 C23.42925384 5.18333686 20.09029345 5.2483341 16.75 5.3125 C15.59113281 5.35439453 14.43226562 5.39628906 13.23828125 5.43945312 C12.12324219 5.45556641 11.00820312 5.47167969 9.859375 5.48828125 C8.31975098 5.52755737 8.31975098 5.52755737 6.74902344 5.56762695 C4 5 4 5 0 0 Z " fill="#ECECEC" transform="translate(1192,105)"/>
<path d="M0 0 C4 2 4 2 6 4 C6.26991906 6.68839385 6.08737357 9.29141936 6 12 C6.73637695 11.97381592 7.47275391 11.94763184 8.23144531 11.9206543 C11.57074616 11.81666314 14.90970655 11.7516659 18.25 11.6875 C19.40886719 11.64560547 20.56773438 11.60371094 21.76171875 11.56054688 C22.87675781 11.54443359 23.99179688 11.52832031 25.140625 11.51171875 C26.68024902 11.47244263 26.68024902 11.47244263 28.25097656 11.43237305 C31 12 31 12 35 17 C23.45 17 11.9 17 0 17 C0 11.39 0 5.78 0 0 Z " fill="#BCBCBC" transform="translate(83,176)"/>
<path d="M0 0 C1.36581777 -0.02153827 2.73149904 -0.0555936 4.09667969 -0.10253906 C6.0677411 -0.16970718 8.04013216 -0.19336289 10.01220703 -0.21606445 C11.19459961 -0.24112061 12.37699219 -0.26617676 13.59521484 -0.29199219 C16.80908203 0.4050293 16.80908203 0.4050293 21.80908203 6.4050293 C8.60908203 6.4050293 -4.59091797 6.4050293 -18.19091797 6.4050293 C-11.36114564 -0.42474303 -9.47669837 0.11235846 0 0 Z " fill="#E9E9E9" transform="translate(215.19091796875,174.594970703125)"/>
<path d="M0 0 C0 12.87 0 25.74 0 39 C-5 35 -5 35 -5.63110352 31.76367188 C-5.63037842 30.51134766 -5.62965332 29.25902344 -5.62890625 27.96875 C-5.63131821 27.29581909 -5.63373016 26.62288818 -5.63621521 25.92956543 C-5.63523833 24.51076345 -5.62188187 23.09192262 -5.59692383 21.67333984 C-5.56259765 19.50616522 -5.57626889 17.34306797 -5.59570312 15.17578125 C-5.5888043 13.79425354 -5.57913155 12.41273632 -5.56640625 11.03125 C-5.55552979 9.77892578 -5.54465332 8.52660156 -5.53344727 7.23632812 C-5.05664906 4.34367959 -3.7098199 0 0 0 Z " fill="#EFEFEF" transform="translate(487,176)"/>
<path d="M0 0 C0 12.87 0 25.74 0 39 C-5 35 -5 35 -5.63110352 31.76367188 C-5.63037842 30.51134766 -5.62965332 29.25902344 -5.62890625 27.96875 C-5.63131821 27.29581909 -5.63373016 26.62288818 -5.63621521 25.92956543 C-5.63523833 24.51076345 -5.62188187 23.09192262 -5.59692383 21.67333984 C-5.56259765 19.50616522 -5.57626889 17.34306797 -5.59570312 15.17578125 C-5.5888043 13.79425354 -5.57913155 12.41273632 -5.56640625 11.03125 C-5.55552979 9.77892578 -5.54465332 8.52660156 -5.53344727 7.23632812 C-5.05664906 4.34367959 -3.7098199 0 0 0 Z " fill="#F0F0F0" transform="translate(1144,84)"/>
<path d="M0 0 C0 12.87 0 25.74 0 39 C-5 35 -5 35 -5.63110352 31.76367188 C-5.63037842 30.51134766 -5.62965332 29.25902344 -5.62890625 27.96875 C-5.63131821 27.29581909 -5.63373016 26.62288818 -5.63621521 25.92956543 C-5.63523833 24.51076345 -5.62188187 23.09192262 -5.59692383 21.67333984 C-5.56259765 19.50616522 -5.57626889 17.34306797 -5.59570312 15.17578125 C-5.5888043 13.79425354 -5.57913155 12.41273632 -5.56640625 11.03125 C-5.55552979 9.77892578 -5.54465332 8.52660156 -5.53344727 7.23632812 C-5.05664906 4.34367959 -3.7098199 0 0 0 Z " fill="#EFEFEF" transform="translate(487,84)"/>
<path d="M0 0 C0 12.54 0 25.08 0 38 C-5 34 -5 34 -5.63110352 30.85546875 C-5.63037842 29.64503906 -5.62965332 28.43460938 -5.62890625 27.1875 C-5.63131821 26.53676514 -5.63373016 25.88603027 -5.63621521 25.21557617 C-5.63523852 23.84385058 -5.62188652 22.47208472 -5.59692383 21.10058594 C-5.56259495 19.00579409 -5.57626939 16.9152204 -5.59570312 14.8203125 C-5.58880427 13.48435712 -5.57913149 12.14841259 -5.56640625 10.8125 C-5.55552979 9.60207031 -5.54465332 8.39164063 -5.53344727 7.14453125 C-5.04810828 4.28358563 -3.64649396 0 0 0 Z " fill="#EFEFEF" transform="translate(710,85)"/>
<path d="M0 0 C3.875 1.875 3.875 1.875 5 3 C5.08790975 5.29151417 5.10694038 7.58572524 5.09765625 9.87890625 C5.0962413 10.5655687 5.09482635 11.25223114 5.09336853 11.95970154 C5.08775479 14.16067801 5.07520007 16.36155409 5.0625 18.5625 C5.05748676 20.05143083 5.05292355 21.54036324 5.04882812 23.02929688 C5.03778093 26.68623075 5.02050713 30.34310558 5 34 C2.53051758 32.43457031 2.53051758 32.43457031 0 30 C-0.56762695 26.79199219 -0.56762695 26.79199219 -0.48828125 23.046875 C-0.48120651 22.38665344 -0.47413177 21.72643188 -0.46684265 21.04620361 C-0.43894727 18.94629508 -0.37623287 16.84909621 -0.3125 14.75 C-0.28741017 13.3229553 -0.26459817 11.89586862 -0.24414062 10.46875 C-0.1891412 6.97829252 -0.10290912 3.48941089 0 0 Z " fill="#EFEFEF" transform="translate(749,181)"/>
<path d="M0 0 C4.24964127 -0.14513802 8.49864635 -0.23402037 12.75 -0.3125 C14.55984375 -0.3753418 14.55984375 -0.3753418 16.40625 -0.43945312 C17.56640625 -0.45556641 18.7265625 -0.47167969 19.921875 -0.48828125 C20.99018555 -0.51446533 22.05849609 -0.54064941 23.15917969 -0.56762695 C26 0 26 0 28.37988281 2.53051758 C28.91452148 3.34544678 29.44916016 4.16037598 30 5 C25.75035873 5.14513802 21.50135365 5.23402037 17.25 5.3125 C16.0434375 5.35439453 14.836875 5.39628906 13.59375 5.43945312 C12.43359375 5.45556641 11.2734375 5.47167969 10.078125 5.48828125 C9.00981445 5.51446533 7.94150391 5.54064941 6.84082031 5.56762695 C4 5 4 5 1.62011719 2.46948242 C0.81815918 1.24708862 0.81815918 1.24708862 0 0 Z " fill="#BDBDBD" transform="translate(1113,118)"/>
<path d="M0 0 C0.33 0.99 0.66 1.98 1 3 C2.65 3 4.3 3 6 3 C6 4.65 6 6.3 6 8 C7.32 8 8.64 8 10 8 C10.3125 10.25 10.3125 10.25 10 13 C7.5 15.3125 7.5 15.3125 5 17 C4.67 15.68 4.34 14.36 4 13 C2.68 13 1.36 13 0 13 C0 11.68 0 10.36 0 9 C-1.32 9 -2.64 9 -4 9 C-4.25 6.75 -4.25 6.75 -4 4 C-2 1.6875 -2 1.6875 0 0 Z " fill="#EDEDED" transform="translate(359,84)"/>
<path d="M0 0 C2.46800047 1.15173355 4.04783565 2.04783565 6 4 C6.22705078 5.87939453 6.22705078 5.87939453 6.1953125 8.1328125 C6.18886719 8.93847656 6.18242187 9.74414062 6.17578125 10.57421875 C6.15902344 11.41597656 6.14226562 12.25773438 6.125 13.125 C6.11597656 13.97449219 6.10695312 14.82398438 6.09765625 15.69921875 C6.07405647 17.79959884 6.03818483 19.89983444 6 22 C0.3152005 18.27727697 0.3152005 18.27727697 -0.49511719 14.99365234 C-0.58977776 12.69991475 -0.5247641 10.47812269 -0.375 8.1875 C-0.33439453 7.00510742 -0.33439453 7.00510742 -0.29296875 5.79882812 C-0.22263676 3.86469843 -0.11502458 1.93198696 0 0 Z " fill="#EDEDED" transform="translate(131,154)"/>
<path d="M0 0 C2.73156959 -0.16262928 5.45342122 -0.28110686 8.1875 -0.375 C8.95642578 -0.42527344 9.72535156 -0.47554687 10.51757812 -0.52734375 C16.17663452 -0.67307052 16.17663452 -0.67307052 18.66650391 1.36230469 C20.05078125 3.0234375 20.05078125 3.0234375 22 6 C19.2697611 6.1083667 16.54385457 6.18746694 13.8125 6.25 C13.04357422 6.28351563 12.27464844 6.31703125 11.48242188 6.3515625 C7.43881179 6.4209807 5.4771605 6.2957051 1.94921875 4.109375 C0 2 0 2 0 0 Z " fill="#EAEAEA" transform="translate(101,157)"/>
<path d="M0 0 C2.75105422 -0.10812003 5.49785087 -0.18734945 8.25 -0.25 C9.02730469 -0.28351563 9.80460937 -0.31703125 10.60546875 -0.3515625 C16.39313225 -0.45049692 16.39313225 -0.45049692 19.546875 1.890625 C21 4 21 4 21 6 C18.43493576 6.16276553 15.88024578 6.28113984 13.3125 6.375 C12.59126953 6.42527344 11.87003906 6.47554687 11.12695312 6.52734375 C5.80792587 6.67307052 5.80792587 6.67307052 3.36474609 4.63769531 C1.98046875 2.9765625 1.98046875 2.9765625 0 0 Z " fill="#E9E9E9" transform="translate(1174,122)"/>
<path d="M0 0 C1.65 1.32 3.3 2.64 5 4 C5 5.32 5 6.64 5 8 C6.65 8 8.3 8 10 8 C10.25 10.25 10.25 10.25 10 13 C8.125 15.3125 8.125 15.3125 6 17 C5.34 17 4.68 17 4 17 C4 15.68 4 14.36 4 13 C2.68 13 1.36 13 0 13 C0 8.71 0 4.42 0 0 Z " fill="#EEEEEE" transform="translate(806,163)"/>
<path d="M0 0 C2.48046875 1.421875 2.48046875 1.421875 5 4 C5.63389665 7.09971709 5.47234026 10.10237647 5.3125 13.25 C5.28994141 14.09046875 5.26738281 14.9309375 5.24414062 15.796875 C5.18537714 17.86534964 5.09569885 19.93290488 5 22 C2.51953125 20.578125 2.51953125 20.578125 0 18 C-0.63389665 14.90028291 -0.47234026 11.89762353 -0.3125 8.75 C-0.28994141 7.90953125 -0.26738281 7.0690625 -0.24414062 6.203125 C-0.18537714 4.13465036 -0.09569885 2.06709512 0 0 Z " fill="#B9B9B9" transform="translate(1173,122)"/>
<path d="M0 0 C3.875 1.875 3.875 1.875 5 3 C5.08651611 4.41570123 5.10704904 5.835595 5.09765625 7.25390625 C5.09443359 8.10791016 5.09121094 8.96191406 5.08789062 9.84179688 C5.07951172 10.73962891 5.07113281 11.63746094 5.0625 12.5625 C5.05798828 13.46419922 5.05347656 14.36589844 5.04882812 15.29492188 C5.03700225 17.53001314 5.0205222 19.76497437 5 22 C0.26266708 18.27727697 0.26266708 18.27727697 -0.41259766 14.99365234 C-0.49122262 12.70744144 -0.43694547 10.47155295 -0.3125 8.1875 C-0.28994141 7.39923828 -0.26738281 6.61097656 -0.24414062 5.79882812 C-0.18554161 3.86506071 -0.09586827 1.93227833 0 0 Z " fill="#EEEEEE" transform="translate(1204,119)"/>
<path d="M0 0 C2.48046875 1.421875 2.48046875 1.421875 5 4 C5.63389665 7.09971709 5.47234026 10.10237647 5.3125 13.25 C5.28994141 14.09046875 5.26738281 14.9309375 5.24414062 15.796875 C5.18537714 17.86534964 5.09569885 19.93290488 5 22 C2.51953125 20.578125 2.51953125 20.578125 0 18 C-0.63389665 14.90028291 -0.47234026 11.89762353 -0.3125 8.75 C-0.28994141 7.90953125 -0.26738281 7.0690625 -0.24414062 6.203125 C-0.18537714 4.13465036 -0.09569885 2.06709512 0 0 Z " fill="#B9B9B9" transform="translate(1191,105)"/>
<path d="M0 0 C3.875 1.875 3.875 1.875 5 3 C5.08631874 4.34267413 5.10706473 5.68974322 5.09765625 7.03515625 C5.09282227 8.24848633 5.09282227 8.24848633 5.08789062 9.48632812 C5.07951172 10.33646484 5.07113281 11.18660156 5.0625 12.0625 C5.05798828 12.91650391 5.05347656 13.77050781 5.04882812 14.65039062 C5.03700373 16.76695663 5.01906769 18.88348685 5 21 C2.51953125 19.546875 2.51953125 19.546875 0 17 C-0.6295563 14.06455404 -0.47339855 11.23528703 -0.3125 8.25 C-0.28994141 7.45722656 -0.26738281 6.66445312 -0.24414062 5.84765625 C-0.18540471 3.8976238 -0.09572654 1.94856688 0 0 Z " fill="#EEEEEE" transform="translate(114,172)"/>
<path d="M0 0 C4 2 4 2 5 3 C5.20511024 5.26500305 5.31412476 7.53904377 5.375 9.8125 C5.42398437 11.05644531 5.47296875 12.30039063 5.5234375 13.58203125 C5 17 5 17 0 21 C0 14.07 0 7.14 0 0 Z " fill="#EFEFEF" transform="translate(420,159)"/>
<path d="M0 0 C3.875 1.875 3.875 1.875 5 3 C5.08631874 4.34267413 5.10706473 5.68974322 5.09765625 7.03515625 C5.09282227 8.24848633 5.09282227 8.24848633 5.08789062 9.48632812 C5.07951172 10.33646484 5.07113281 11.18660156 5.0625 12.0625 C5.05798828 12.91650391 5.05347656 13.77050781 5.04882812 14.65039062 C5.03700373 16.76695663 5.01906769 18.88348685 5 21 C2.51953125 19.546875 2.51953125 19.546875 0 17 C-0.6295563 14.06455404 -0.47339855 11.23528703 -0.3125 8.25 C-0.28994141 7.45722656 -0.26738281 6.66445312 -0.24414062 5.84765625 C-0.18540471 3.8976238 -0.09572654 1.94856688 0 0 Z " fill="#BABABA" transform="translate(101,159)"/>
<path d="M0 0 C2.93804996 -0.08086376 5.87388075 -0.1404283 8.8125 -0.1875 C9.64587891 -0.21263672 10.47925781 -0.23777344 11.33789062 -0.26367188 C12.54155273 -0.27817383 12.54155273 -0.27817383 13.76953125 -0.29296875 C14.87711792 -0.31653442 14.87711792 -0.31653442 16.00708008 -0.34057617 C18.55727485 0.0952344 19.44175849 0.97376263 21 3 C21 3.66 21 4.32 21 5 C18.24835568 5.13517903 15.50335479 5.23415251 12.75 5.3125 C11.58404297 5.3753418 11.58404297 5.3753418 10.39453125 5.43945312 C8.15648863 5.48727455 6.19040326 5.46976923 4 5 C1.453125 2.48046875 1.453125 2.48046875 0 0 Z " fill="#E9E9E9" transform="translate(1156,140)"/>
<path d="M0 0 C2.77141717 -0.08089542 5.54047819 -0.14044062 8.3125 -0.1875 C9.09818359 -0.21263672 9.88386719 -0.23777344 10.69335938 -0.26367188 C11.45068359 -0.27333984 12.20800781 -0.28300781 12.98828125 -0.29296875 C14.03302612 -0.31653442 14.03302612 -0.31653442 15.09887695 -0.34057617 C17.58237578 0.10432955 18.47101992 1.03357086 20 3 C20 3.66 20 4.32 20 5 C17.22858283 5.08089542 14.45952181 5.14044062 11.6875 5.1875 C10.90181641 5.21263672 10.11613281 5.23777344 9.30664062 5.26367188 C8.54931641 5.27333984 7.79199219 5.28300781 7.01171875 5.29296875 C6.31522217 5.3086792 5.61872559 5.32438965 4.90112305 5.34057617 C2.41762422 4.89567045 1.52898008 3.96642914 0 2 C0 1.34 0 0.68 0 0 Z " fill="#BEBEBE" transform="translate(1188,136)"/>
<path d="M0 0 C2.91821463 -0.13510253 5.83017652 -0.2341305 8.75 -0.3125 C9.9875 -0.3753418 9.9875 -0.3753418 11.25 -0.43945312 C13.601744 -0.48686732 15.69402157 -0.47157594 18 0 C20.578125 2.51953125 20.578125 2.51953125 22 5 C19.26916098 5.13548815 16.54508193 5.23429855 13.8125 5.3125 C13.04357422 5.35439453 12.27464844 5.39628906 11.48242188 5.43945312 C7.03371827 5.53491887 5.52445124 5.43312555 1.94921875 2.48046875 C1.30597656 1.66191406 0.66273437 0.84335938 0 0 Z " fill="#EAEAEA" transform="translate(83,175)"/>
<path d="M0 0 C2.75164432 -0.13517903 5.49664521 -0.23415251 8.25 -0.3125 C9.02730469 -0.35439453 9.80460937 -0.39628906 10.60546875 -0.43945312 C12.84351137 -0.48727455 14.80959674 -0.46976923 17 0 C19.546875 2.51953125 19.546875 2.51953125 21 5 C18.24835568 5.13517903 15.50335479 5.23415251 12.75 5.3125 C11.58404297 5.3753418 11.58404297 5.3753418 10.39453125 5.43945312 C8.15648863 5.48727455 6.19040326 5.46976923 4 5 C1.453125 2.48046875 1.453125 2.48046875 0 0 Z " fill="#BDBDBD" transform="translate(115,171)"/>
<path d="M0 0 C2.75164432 -0.13517903 5.49664521 -0.23415251 8.25 -0.3125 C9.02730469 -0.35439453 9.80460938 -0.39628906 10.60546875 -0.43945312 C12.84351137 -0.48727455 14.80959674 -0.46976923 17 0 C19.546875 2.51953125 19.546875 2.51953125 21 5 C18.24835568 5.13517903 15.50335479 5.23415251 12.75 5.3125 C11.58404297 5.3753418 11.58404297 5.3753418 10.39453125 5.43945312 C8.15648863 5.48727455 6.19040326 5.46976923 4 5 C1.453125 2.48046875 1.453125 2.48046875 0 0 Z " fill="#BDBDBD" transform="translate(132,153)"/>
<path d="M0 0 C2.75164432 -0.13517903 5.49664521 -0.23415251 8.25 -0.3125 C9.02730469 -0.35439453 9.80460937 -0.39628906 10.60546875 -0.43945312 C12.84351137 -0.48727455 14.80959674 -0.46976923 17 0 C19.546875 2.51953125 19.546875 2.51953125 21 5 C18.24835568 5.13517903 15.50335479 5.23415251 12.75 5.3125 C11.58404297 5.3753418 11.58404297 5.3753418 10.39453125 5.43945312 C8.15648863 5.48727455 6.19040326 5.46976923 4 5 C1.453125 2.48046875 1.453125 2.48046875 0 0 Z " fill="#BEBEBE" transform="translate(1205,118)"/>
<path d="M0 0 C0 2.31 0 4.62 0 7 C0.78375 7.0825 1.5675 7.165 2.375 7.25 C3.24125 7.4975 4.1075 7.745 5 8 C5.66 9.32 6.32 10.64 7 12 C3.04 12 -0.92 12 -5 12 C-5.49108911 4.63366337 -5.49108911 4.63366337 -3.0625 1.5 C-1 0 -1 0 0 0 Z " fill="#EDEDED" transform="translate(557,133)"/>
<path d="M0 0 C2.46800047 1.15173355 4.04783565 2.04783565 6 4 C6.125 6.625 6.125 6.625 6 9 C1.3125 5.484375 1.3125 5.484375 0 4 C0 2.68 0 1.36 0 0 Z " fill="#ECECEC" transform="translate(258,193)"/>
<path d="M0 0 C4.6875 3.515625 4.6875 3.515625 6 5 C6 6.32 6 7.64 6 9 C3.53199953 7.84826645 1.95216435 6.95216435 0 5 C-0.125 2.375 -0.125 2.375 0 0 Z " fill="#ECECEC" transform="translate(810,158)"/>
<path d="M0 0 C2.46800047 1.15173355 4.04783565 2.04783565 6 4 C6.125 6.625 6.125 6.625 6 9 C1.3125 5.484375 1.3125 5.484375 0 4 C0 2.68 0 1.36 0 0 Z " fill="#EAEAEA" transform="translate(363,149)"/>
<path d="M0 0 C2.25 -0.25 2.25 -0.25 5 0 C7.3125 1.875 7.3125 1.875 9 4 C9 4.66 9 5.32 9 6 C5.32579134 5.69381595 4.21864487 5.24228216 1.6875 2.4375 C1.130625 1.633125 0.57375 0.82875 0 0 Z " fill="#E3E3E3" transform="translate(832,96)"/>
<path d="M0 0 C4.6875 3.515625 4.6875 3.515625 6 5 C6 6.32 6 7.64 6 9 C3.53199953 7.84826645 1.95216435 6.95216435 0 5 C-0.125 2.375 -0.125 2.375 0 0 Z " fill="#C0C0C0" transform="translate(175,92)"/>
<path d="M0 0 C2.78211944 0.37596209 4.5879284 0.67318459 6.8125 2.4375 C8 4 8 4 8 6 C5.21788056 5.62403791 3.4120716 5.32681541 1.1875 3.5625 C0 2 0 2 0 0 Z " fill="#C5C5C5" transform="translate(907,205)"/>
<path d="M0 0 C2.46800047 1.15173355 4.04783565 2.04783565 6 4 C6 5.32 6 6.64 6 8 C3.53199953 6.84826645 1.95216435 5.95216435 0 4 C0 2.68 0 1.36 0 0 Z " fill="#EAEAEA" transform="translate(915,198)"/>
<path d="M0 0 C2.78211944 0.37596209 4.5879284 0.67318459 6.8125 2.4375 C8 4 8 4 8 6 C5.21788056 5.62403791 3.4120716 5.32681541 1.1875 3.5625 C0 2 0 2 0 0 Z " fill="#E4E4E4" transform="translate(780,144)"/>
<path d="M0 0 C4.875 2.875 4.875 2.875 6 4 C6.04063832 5.66617115 6.042721 7.33388095 6 9 C1.3125 5.484375 1.3125 5.484375 0 4 C0 2.68 0 1.36 0 0 Z " fill="#C0C0C0" transform="translate(845,84)"/>
<path d="M0 0 C3.875 1.875 3.875 1.875 5 3 C5.04080783 4.99958364 5.04254356 7.00045254 5 9 C2.5 6.75 2.5 6.75 0 4 C0 2.68 0 1.36 0 0 Z " fill="#ECECEC" transform="translate(911,202)"/>
<path d="M0 0 C2.5 1.6875 2.5 1.6875 5 4 C5.3125 6.75 5.3125 6.75 5 9 C2.5 7.3125 2.5 7.3125 0 5 C-0.3125 2.25 -0.3125 2.25 0 0 Z " fill="#ECECEC" transform="translate(250,202)"/>
<path d="M0 0 C2.5 1.6875 2.5 1.6875 5 4 C5.3125 6.75 5.3125 6.75 5 9 C2.5 7.3125 2.5 7.3125 0 5 C-0.3125 2.25 -0.3125 2.25 0 0 Z " fill="#EDEDED" transform="translate(920,193)"/>
<path d="M0 0 C2.5 1.6875 2.5 1.6875 5 4 C5.3125 6.75 5.3125 6.75 5 9 C2.5 7.3125 2.5 7.3125 0 5 C-0.3125 2.25 -0.3125 2.25 0 0 Z " fill="#EBEBEB" transform="translate(355,158)"/>
<path d="M0 0 C3 1.6875 3 1.6875 6 4 C6.375 6.75 6.375 6.75 6 9 C1.3125 5.484375 1.3125 5.484375 0 4 C0 2.68 0 1.36 0 0 Z " fill="#EDEDED" transform="translate(359,154)"/>
<path d="M0 0 C2.5 1.6875 2.5 1.6875 5 4 C5.3125 6.75 5.3125 6.75 5 9 C2.5 7.3125 2.5 7.3125 0 5 C-0.3125 2.25 -0.3125 2.25 0 0 Z " fill="#BEBEBE" transform="translate(180,88)"/>
<path d="M0 0 C1.98 1.65 3.96 3.3 6 5 C5.67 6.32 5.34 7.64 5 9 C2.5 6.75 2.5 6.75 0 4 C0 2.68 0 1.36 0 0 Z " fill="#EDEDED" transform="translate(906,206)"/>
<path d="M0 0 C1.98 1.65 3.96 3.3 6 5 C5.67 6.32 5.34 7.64 5 9 C2.5 6.75 2.5 6.75 0 4 C0 2.68 0 1.36 0 0 Z " fill="#EEEEEE" transform="translate(245,206)"/>
<path d="M0 0 C3.67420866 0.30618405 4.78135513 0.75771784 7.3125 3.5625 C8.1478125 4.7690625 8.1478125 4.7690625 9 6 C5.32579134 5.69381595 4.21864487 5.24228216 1.6875 2.4375 C1.130625 1.633125 0.57375 0.82875 0 0 Z " fill="#C2C2C2" transform="translate(245,205)"/>
<path d="M0 0 C3.875 1.875 3.875 1.875 5 3 C5.04063832 4.66617115 5.042721 6.33388095 5 8 C2.5 6.25 2.5 6.25 0 4 C0 2.68 0 1.36 0 0 Z " fill="#EAEAEA" transform="translate(254,198)"/>
<path d="M0 0 C3.67420866 0.30618405 4.78135513 0.75771784 7.3125 3.5625 C8.1478125 4.7690625 8.1478125 4.7690625 9 6 C5.32579134 5.69381595 4.21864487 5.24228216 1.6875 2.4375 C1.130625 1.633125 0.57375 0.82875 0 0 Z " fill="#C3C3C3" transform="translate(920,192)"/>
<path d="M0 0 C3.67420866 0.30618405 4.78135513 0.75771784 7.3125 3.5625 C8.1478125 4.7690625 8.1478125 4.7690625 9 6 C5.32579134 5.69381595 4.21864487 5.24228216 1.6875 2.4375 C1.130625 1.633125 0.57375 0.82875 0 0 Z " fill="#C1C1C1" transform="translate(355,157)"/>
<path d="M0 0 C3.24208567 0.35049575 4.61527704 0.56221181 6.8125 3.0625 C7.204375 3.701875 7.59625 4.34125 8 5 C3.48279689 5.36625971 3.48279689 5.36625971 1.1875 3.625 C0 2 0 2 0 0 Z " fill="#C2C2C2" transform="translate(360,153)"/>
<path d="M0 0 C3.67420866 0.30618405 4.78135513 0.75771784 7.3125 3.5625 C8.1478125 4.7690625 8.1478125 4.7690625 9 6 C5.32579134 5.69381595 4.21864487 5.24228216 1.6875 2.4375 C1.130625 1.633125 0.57375 0.82875 0 0 Z " fill="#E7E7E7" transform="translate(171,96)"/>
<path d="M0 0 C1.98 1.65 3.96 3.3 6 5 C5.67 6.32 5.34 7.64 5 9 C2.5 6.75 2.5 6.75 0 4 C0 2.68 0 1.36 0 0 Z " fill="#BBBBBB" transform="translate(836,92)"/>
<path d="M0 0 C2.5 1.75 2.5 1.75 5 4 C5 5.32 5 6.64 5 8 C1.125 6.125 1.125 6.125 0 5 C-0.04063832 3.33382885 -0.042721 1.66611905 0 0 Z " fill="#BEBEBE" transform="translate(841,88)"/>
<path d="M0 0 C3.67420866 0.30618405 4.78135513 0.75771784 7.3125 3.5625 C8.1478125 4.7690625 8.1478125 4.7690625 9 6 C5.32579134 5.69381595 4.21864487 5.24228216 1.6875 2.4375 C1.130625 1.633125 0.57375 0.82875 0 0 Z " fill="#E9E9E9" transform="translate(841,87)"/>
<path d="M0 0 C2.78211944 0.37596209 4.5879284 0.67318459 6.8125 2.4375 C8 4 8 4 8 6 C4.74456771 5.65120368 3.98126893 4.97866739 1.75 2.4375 C1.1725 1.633125 0.595 0.82875 0 0 Z " fill="#C2C2C2" transform="translate(259,192)"/>
<path d="M0 0 C3.25543229 0.34879632 4.01873107 1.02133261 6.25 3.5625 C6.8275 4.366875 7.405 5.17125 8 6 C5.21788056 5.62403791 3.4120716 5.32681541 1.1875 3.5625 C0 2 0 2 0 0 Z " fill="#C3C3C3" transform="translate(811,157)"/>
<path d="M0 0 C2.78211944 0.37596209 4.5879284 0.67318459 6.8125 2.4375 C8 4 8 4 8 6 C4.74456771 5.65120368 3.98126893 4.97866739 1.75 2.4375 C1.1725 1.633125 0.595 0.82875 0 0 Z " fill="#C3C3C3" transform="translate(364,148)"/>
<path d="M0 0 C3.25543229 0.34879632 4.01873107 1.02133261 6.25 3.5625 C6.8275 4.366875 7.405 5.17125 8 6 C5.21788056 5.62403791 3.4120716 5.32681541 1.1875 3.5625 C0 2 0 2 0 0 Z " fill="#C1C1C1" transform="translate(369,144)"/>
<path d="M0 0 C2.78211944 0.37596209 4.5879284 0.67318459 6.8125 2.4375 C8 4 8 4 8 6 C4.74456771 5.65120368 3.98126893 4.97866739 1.75 2.4375 C1.1725 1.633125 0.595 0.82875 0 0 Z " fill="#E6E6E6" transform="translate(167,100)"/>
<path d="M0 0 C2.78211944 0.37596209 4.5879284 0.67318459 6.8125 2.4375 C8 4 8 4 8 6 C4.74456771 5.65120368 3.98126893 4.97866739 1.75 2.4375 C1.1725 1.633125 0.595 0.82875 0 0 Z " fill="#E9E9E9" transform="translate(180,87)"/>
<path d="M0 0 C3.24271506 0.5590888 4.93057424 1.4132178 7 4 C7 4.66 7 5.32 7 6 C3.75728494 5.4409112 2.06942576 4.5867822 0 2 C0 1.34 0 0.68 0 0 Z " fill="#E7E7E7" transform="translate(829,100)"/>
<path d="M0 0 C2.5 1.6875 2.5 1.6875 5 4 C5.3125 6.75 5.3125 6.75 5 9 C2.5 6.75 2.5 6.75 0 4 C0 2.68 0 1.36 0 0 Z " fill="#EFEFEF" transform="translate(368,145)"/>
<path d="M0 0 C2.5625 2.25 2.5625 2.25 5 5 C4.8125 7.3125 4.8125 7.3125 4 9 C0.06153846 5.67692308 0.06153846 5.67692308 -0.25 2.25 C-0.1675 1.5075 -0.085 0.765 0 0 Z " fill="#BEBEBE" transform="translate(342,133)"/>
<path d="M0 0 C3.24271506 0.5590888 4.93057424 1.4132178 7 4 C7 4.66 7 5.32 7 6 C2.32307692 4.52307692 2.32307692 4.52307692 0.6875 1.875 C0.460625 1.25625 0.23375 0.6375 0 0 Z " fill="#E6E6E6" transform="translate(343,133)"/>
<path d="M0 0 C3.24208567 0.35049575 4.61527704 0.56221181 6.8125 3.0625 C7.204375 3.701875 7.59625 4.34125 8 5 C4.75791433 4.64950425 3.38472296 4.43778819 1.1875 1.9375 C0.795625 1.298125 0.40375 0.65875 0 0 Z " fill="#BEBEBE" transform="translate(916,197)"/>
<path d="M0 0 C3.24208567 0.35049575 4.61527704 0.56221181 6.8125 3.0625 C7.204375 3.701875 7.59625 4.34125 8 5 C4.75791433 4.64950425 3.38472296 4.43778819 1.1875 1.9375 C0.795625 1.298125 0.40375 0.65875 0 0 Z " fill="#BFBFBF" transform="translate(255,197)"/>
<path d="M0 0 C3.24208567 0.35049575 4.61527704 0.56221181 6.8125 3.0625 C7.204375 3.701875 7.59625 4.34125 8 5 C4.75791433 4.64950425 3.38472296 4.43778819 1.1875 1.9375 C0.795625 1.298125 0.40375 0.65875 0 0 Z " fill="#BFBFBF" transform="translate(806,162)"/>
<path d="M0 0 C1.65 1.32 3.3 2.64 5 4 C4.67 5.32 4.34 6.64 4 8 C2 6.25 2 6.25 0 4 C0 2.68 0 1.36 0 0 Z " fill="#B9B9B9" transform="translate(780,146)"/>
<path d="M0 0 C1.65 1.32 3.3 2.64 5 4 C4.67 5.32 4.34 6.64 4 8 C2 6.25 2 6.25 0 4 C0 2.68 0 1.36 0 0 Z " fill="#BABABA" transform="translate(832,97)"/>
<path d="M0 0 C1.65 1.32 3.3 2.64 5 4 C4.67 5.32 4.34 6.64 4 8 C2 6.25 2 6.25 0 4 C0 2.68 0 1.36 0 0 Z " fill="#BABABA" transform="translate(171,97)"/>
<path d="M0 0 C3.24208567 0.35049575 4.61527704 0.56221181 6.8125 3.0625 C7.204375 3.701875 7.59625 4.34125 8 5 C4.75791433 4.64950425 3.38472296 4.43778819 1.1875 1.9375 C0.795625 1.298125 0.40375 0.65875 0 0 Z " fill="#E8E8E8" transform="translate(837,92)"/>
<path d="M0 0 C3.24208567 0.35049575 4.61527704 0.56221181 6.8125 3.0625 C7.204375 3.701875 7.59625 4.34125 8 5 C4.75791433 4.64950425 3.38472296 4.43778819 1.1875 1.9375 C0.795625 1.298125 0.40375 0.65875 0 0 Z " fill="#E9E9E9" transform="translate(176,92)"/>
<path d="M0 0 C1.65 1.32 3.3 2.64 5 4 C4.67 5.32 4.34 6.64 4 8 C2 6.25 2 6.25 0 4 C0 2.68 0 1.36 0 0 Z " fill="#B9B9B9" transform="translate(184,84)"/>
<path d="M0 0 C2.88575819 0.39803561 3.82189513 0.79009069 5.75 3.0625 C6.1625 3.701875 6.575 4.34125 7 5 C4.625 4.75 4.625 4.75 2 4 C0.6875 1.9375 0.6875 1.9375 0 0 Z " fill="#C1C1C1" transform="translate(251,201)"/>
</svg>

After

Width:  |  Height:  |  Size: 79 KiB

-531
View File
@@ -1,531 +0,0 @@
{
"role_groups": {
"donor": ["1359441841371480176", "1330243292306341969"],
"creator": ["1286745100411473930"]
},
"patterns": {
"ABMIVVU": {
"name": "stripes_v"
},
"ABMIDw8": {
"name": "stripes_h"
},
"AAEYAwA": {
"name": "horizontal_stripes",
"role_group": "donor"
},
"AAoACQ": {
"name": "vertical_bars",
"role_group": "donor"
},
"ABMIpaU": {
"name": "checkerboard"
},
"AFIoAAABOEAHgkAc-AN_4AMcgAAA": {
"name": "choco"
},
"AHE4AQACAAQACAAQACAAQACAAAABAAIABAAIABAAIABAAIA": {
"name": "diagonal",
"role_group": "donor"
},
"AHE4AYACQAQgCBAQCCAEQAKAAYABQAIgBBAICBAEIAJAAYA": {
"name": "cross",
"role_group": "donor"
},
"AHEYA8AMMDAMwAPAAzAMDDADwA": {
"name": "mini_cross",
"role_group": "donor"
},
"AHI4AOAAkACIAEQAIgARjAhUBCgCKAHQACgB1AILAwUABwA": {
"name": "sword",
"role_group": "donor"
},
"AHE4AQEAAAAAAAAAAAAAAAAAAAEBAAAAAAAAAAAAAAAAAAA": {
"name": "sparse_dots",
"role_group": "donor"
},
"ALIUAAAAnsRIgiRZjuRpAiNJHiNJAAAA": {
"name": "evan",
"role_group": "creator"
},
"AHEYAYACQAQgCBAQCCAEQAKAAQ": {
"name": "diagonal_stripe",
"role_group": "donor"
},
"AHEYAAAYGDw8fn7__35-PDwYGA": {
"name": "mountain_ridge",
"role_group": "donor"
},
"AHEYAAACIAAAAAAAAAAACBAAAA": {
"name": "scattered_dots",
"role_group": "donor"
},
"AHEYw8PDwwwMDAwwDDAMw8PDww": {
"name": "circuit_board",
"role_group": "donor"
},
"AHEgzGfznzu43XPoL2fMn_O4O3fdL-g": {
"name": "shells",
"role_group": "donor"
},
"AHEYAAAAAAAAAkCCQUQiLnQWaA": {
"name": "-w-",
"role_group": "donor"
},
"AHE4AAAAAKAAUAFQAVABCC4EUCQgJCAEIDgm0BBwDwAAAAA": {
"name": "white_rabbit",
"role_group": "donor"
},
"AKFwAAAADMAABSiAAgVAoQBQKAA0CwB6AfDhAwIAQQKQkAAkMgCTSkhlGpYBAQJAjAAgEAAQAgB6AUCAABAgAAoUgAIFoFIBqFcAKhWASgXA8wAAAAA": {
"name": "goat",
"role_group": "donor"
},
"ALF1AAAAAAAAABABAAAAAACwAQAAAAAA8AEAAAAAIFABIoABABDwATbAA4gQ9AU-wBPZIPgDKoSx-UD4Az4C9Kmf8AEcUlj5v_ABPvb9-X_wAX7k__A_8AN-_H_gH_AFfuJ_wBiwJf_BP0AIEBkAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAADYAiAAA-AA-ANgAELEBKgD4ALDhI_4HqgDwsSf-H_oIUPlH_C9xBP_BT_gn-YT_wD_8J_rEf-Af_hP8yD_gHwAM-NAf4B8AAvzhP8APAAAAAAAAAA": {
"name": "cats",
"role_group": "donor"
},
"AJhYAAAAGACABACQAAASAEACAMgBAMkBIMkAJCngJAkSIEECIEgABAKAQAAQEAACAiCAAAQQgAAECIAAAfA_AAAA": {
"name": "hand",
"role_group": "donor"
},
"AMFYAAAAAAAAAAzAADgAB_ABPuAH-IE_8Af_4T_8h__wz_zDv_cPAB4AADAAAAAAAIAHAAAeAAD8AADwAwDgHwCAfwAA_wMA8AMAAAAAAAAA": {
"name": "radiation",
"role_group": "donor"
},
"AJhMAAAABACAAQBwAAAeAMAHAPgBAH8A4B8A_AeA_wHwfwD-H8D_A_gHAO8B4DwADA-A4AEAGAAAAAA": {
"name": "cursor",
"role_group": "donor"
},
"AMpkAAAA8DfCnyAQgnTl0KVrvS5d73UJkinIX1V_ABQD8BQ8l5WRRViBLOAEHw7_CtbhfP-ItdU0AmI8wrTwH4DbqPxpVCdIMhJdOL_our9PV681gg6s8BeFHwAAAAA": {
"name": "openfront_qr",
"role_group": "donor"
},
"AAIiAAAAAAAAAAAAAAAAAAAAAIDD8YnweTiiD5FIYEIgEpkIRCKBCoFIpCIQeTwyPB6RjEAkEIgQKEQiApFAIEIgEYkIOAKfCIGIIyIAAAAAAAAAAAA": {
"name": "openfront",
"role_group": "creator"
},
"AJlMAAAAAP8A8D8A9gfA_wD4HwAfAOAfAn5A4A8Y_wf3v8D_B_j_AP4PgP8B4B0AGAEAIQBgDAAAAAA": {
"name": "t_rex",
"role_group": "donor"
},
"AAqFAAACAAAAOAAAAOADAAAAHwAAAPgAAEDABwQAwZxBAAzuDgYw8H9ggAH-AAMO8Ac4OAAfgMMB-AAcDsAH4HgAPgDPB_ABfD6AD-DzAXwAnx_gA_z8gT_w5x_-wz______-f___4____8__P___8H___8H_v__P-D___8A____B_D__x8A__9_APD__wEA_v8DAMD_BwAA-A8AAA": {
"name": "embelem",
"role_group": "donor"
},
"AMo0AAAAAAAAAAAAAIAAJAACEAIIQCAgAAGCAAQgCBCAgEAAAggBCIAEIAAAAAAAAAAAAAAA": {
"name": "contributor"
},
"AMlNAAAAAAAAAAAAAPAfAACAHwDwgAcAAMQf4ADgAAAgwM8BAAwACEPABwDA__8xEACIAAAACAMOgCQAAGEwwAAoAPCAAQGMCCBhAAYIQPwAnwEYgADSB_QEQAAIkD_wJwABgAH8gx8ABAAYwE99ABgAAAcAACBwAADgBDCA-AAAADwQoH8AAAAA_v8DAAAAAAAMAAAAAAAAAAAAAAA": {
"name": "grogu_head",
"role_group": "donor"
},
"AMl9AAAAAAAAAAAAAPAfAACAHwDwgAcAAMQf4ADgAAAgwM8BAAwACEPABwDA__8xEACIAAAACAMOgCQAAGEwwAAoAPCAAQGMCCBhAAYIQPwAnwEYgADSB_QEQAAIkD_wJwABgAH8gx8ABAAYwE99ABgAAAcAACBwAADgBDCA-AAAADwQoH8AAABA_v8DBwAAAAIMACwAAAAwAAAwAQAAAAMAoBgAAAA4COCFAAAAYEbAIAcAAICjgzEbAAAALPwHSQAAAGAjAAoDAAAAJknIDAAAAFBEIj8AAACAOpA4AAAAAHyAwAEAAAAAQQQIAAAAAAAAAAAAAA": {
"name": "grogu",
"role_group": "donor"
}
},
"flag": {
"layers": {
"a": {
"name": "center_circle",
"role_group": "donor"
},
"b": {
"name": "center_hline",
"role_group": "donor"
},
"c": {
"name": "center_vline",
"role_group": "donor"
},
"d": {
"name": "center_star",
"role_group": "donor"
},
"e": {
"name": "center_flower",
"role_group": "donor"
},
"f": {
"name": "flower_tl",
"role_group": "donor"
},
"g": {
"name": "flower_tc",
"role_group": "donor"
},
"h": {
"name": "flower_tr",
"role_group": "donor"
},
"i": {
"name": "diag_br",
"role_group": "donor"
},
"j": {
"name": "diag_bl",
"role_group": "donor"
},
"k": {
"name": "frame"
},
"l": {
"name": "full"
},
"m": {
"name": "triangle_tl",
"role_group": "donor"
},
"n": {
"name": "triangle_bl",
"role_group": "donor"
},
"o": {
"name": "triangle_tr",
"role_group": "donor"
},
"p": {
"name": "triangle_br",
"role_group": "donor"
},
"q": {
"name": "half_l",
"role_group": "donor"
},
"r": {
"name": "half_r",
"role_group": "donor"
},
"s": {
"name": "half_t",
"role_group": "donor"
},
"t": {
"name": "half_b",
"role_group": "donor"
},
"u": {
"name": "mini_tr_bl",
"role_group": "donor"
},
"v": {
"name": "mini_tr_br",
"role_group": "donor"
},
"w": {
"name": "mini_tr_tl",
"role_group": "donor"
},
"x": {
"name": "mini_tr_tr",
"role_group": "donor"
},
"y": {
"name": "triangle_t",
"role_group": "donor"
},
"z": {
"name": "triangle_l",
"role_group": "donor"
},
"aa": {
"name": "triangle_b",
"role_group": "donor"
},
"ab": {
"name": "triangle_r",
"role_group": "donor"
},
"ac": {
"name": "tricolor_l",
"role_group": "donor"
},
"ad": {
"name": "tricolor_c",
"role_group": "donor"
},
"ae": {
"name": "tricolor_r",
"role_group": "donor"
},
"af": {
"name": "tricolor_t",
"role_group": "donor"
},
"ag": {
"name": "tricolor_m",
"role_group": "donor"
},
"ah": {
"name": "tricolor_b",
"role_group": "donor"
},
"ai": {
"name": "nato_emblem",
"role_group": "donor"
},
"aj": {
"name": "eu_star",
"role_group": "donor"
},
"ak": {
"name": "laurel_wreath",
"role_group": "donor"
},
"al": {
"name": "ofm_2025",
"role_group": "donor"
},
"am": {
"name": "octagram",
"role_group": "donor"
},
"an": {
"name": "octagram_2",
"role_group": "donor"
},
"ao": {
"name": "og",
"role_group": "donor"
},
"ap": {
"name": "og_plus",
"role_group": "donor"
},
"aq": {
"name": "beta_tester",
"role_group": "donor"
},
"ar": {
"name": "beta_tester_circle",
"role_group": "donor"
},
"as": {
"name": "rocket",
"role_group": "donor"
},
"at": {
"name": "rocket_mini",
"role_group": "donor"
},
"au": {
"name": "translator",
"role_group": "donor"
},
"av": {
"name": "admin_shield",
"role_group": "donor"
},
"aw": {
"name": "admin_shield_r",
"role_group": "donor"
},
"ax": {
"name": "admin_evan",
"role_group": "donor"
}
},
"color": {
"a": {
"color": "#ff0000",
"name": "red",
"role_group": "donor"
},
"b": {
"color": "#ffa500",
"name": "orange",
"role_group": "donor"
},
"c": {
"color": "#ffff00",
"name": "yellow",
"role_group": "donor"
},
"d": {
"color": "#008000",
"name": "green",
"role_group": "donor"
},
"e": {
"color": "#00ffff",
"name": "cyan",
"role_group": "donor"
},
"f": {
"color": "#0000ff",
"name": "blue",
"role_group": "donor"
},
"g": {
"color": "#000000",
"name": "black",
"role_group": "donor"
},
"h": {
"color": "#ffffff",
"name": "white",
"role_group": "donor"
},
"i": {
"color": "#800080",
"name": "purple",
"role_group": "donor"
},
"j": {
"color": "#ff69b4",
"name": "hotpink",
"role_group": "donor"
},
"k": {
"color": "#a52a2a",
"name": "brown",
"role_group": "donor"
},
"l": {
"color": "#808080",
"name": "gray",
"role_group": "donor"
},
"m": {
"color": "#20b2aa",
"name": "teal",
"role_group": "donor"
},
"n": {
"color": "#ff6347",
"name": "tomato",
"role_group": "donor"
},
"o": {
"color": "#4682b4",
"name": "steelblue",
"role_group": "donor"
},
"p": {
"color": "#90ee90",
"name": "lightgreen",
"role_group": "donor"
},
"q": {
"color": "#8b0000",
"name": "darkred",
"role_group": "donor"
},
"r": {
"color": "#191970",
"name": "navy",
"role_group": "donor"
},
"s": {
"color": "#ffd700",
"name": "gold",
"role_group": "donor"
},
"t": {
"color": "#add8e6",
"name": "lightblue",
"role_group": "donor"
},
"u": {
"color": "#f5f5dc",
"name": "beige",
"role_group": "donor"
},
"v": {
"color": "#ffb6c1",
"name": "lightpink",
"role_group": "donor"
},
"w": {
"color": "#708090",
"name": "slategray",
"role_group": "donor"
},
"x": {
"color": "#00ff7f",
"name": "springgreen",
"role_group": "donor"
},
"y": {
"color": "#dc143c",
"name": "crimson",
"role_group": "donor"
},
"z": {
"color": "#ffbf00",
"name": "amber",
"role_group": "donor"
},
"0": {
"color": "#3d9970",
"name": "olive_green",
"role_group": "donor"
},
"1": {
"color": "#87ceeb",
"name": "sky_blue",
"role_group": "donor"
},
"2": {
"color": "#6a5acd",
"name": "slate_blue",
"role_group": "donor"
},
"3": {
"color": "#ff66cc",
"name": "rose_pink",
"role_group": "donor"
},
"4": {
"color": "#36454f",
"name": "charcoal",
"role_group": "donor"
},
"5": {
"color": "#fffff0",
"name": "ivory",
"role_group": "donor"
},
"A": {
"color": "rainbow",
"name": "rainbow",
"role_group": "donor"
},
"B": {
"color": "bright-rainbow",
"name": "bright_rainbow",
"role_group": "donor"
},
"C": {
"color": "gold-glow",
"name": "gold_glow",
"role_group": "donor"
},
"D": {
"color": "silver-glow",
"name": "silver_glow",
"role_group": "donor"
},
"E": {
"color": "copper-glow",
"name": "copper_glow",
"role_group": "donor"
},
"F": {
"color": "neon",
"name": "neon",
"role_group": "donor"
},
"G": {
"color": "lava",
"name": "lava",
"role_group": "donor"
},
"H": {
"color": "water",
"name": "water",
"role_group": "donor"
}
}
}
}
+165 -5
View File
@@ -63,6 +63,11 @@
"continent": "North America",
"name": "Alaska"
},
{
"code": "alberta",
"continent": "North America",
"name": "Alberta"
},
{
"code": "dz",
"continent": "Africa",
@@ -88,6 +93,11 @@
"continent": "Asia",
"name": "Armenia"
},
{
"code": "Armenian SSR",
"continent": "Asia",
"name": "Armenian SSR"
},
{
"code": "Anarchist flag",
"name": "Anarchist Flag"
@@ -191,6 +201,11 @@
"continent": "Asia",
"name": "Azerbaijan"
},
{
"code": "Azerbaijan SSR",
"continent": "Asia",
"name": "Azerbaijan SSR"
},
{
"code": "Aztec Empire",
"continent": "North America",
@@ -294,6 +309,11 @@
"continent": "South America",
"name": "Brazil"
},
{
"code": "britishcolumbia",
"continent": "North America",
"name": "British Columbia"
},
{
"code": "io",
"continent": "Asia",
@@ -339,6 +359,11 @@
"continent": "Africa",
"name": "Burundi"
},
{
"code": "Byelorussian SSR",
"continent": "Europe",
"name": "Byelorussian SSR"
},
{
"code": "Byzantine Empire",
"continent": "Europe",
@@ -418,6 +443,11 @@
"continent": "Africa",
"name": "Chad"
},
{
"code": "Chaldea",
"continent": "Asia",
"name": "Chaldea"
},
{
"code": "cl",
"continent": "South America",
@@ -676,6 +706,11 @@
"continent": "Europe",
"name": "Estonia"
},
{
"code": "Estonian SSR",
"continent": "Europe",
"name": "Estonian SSR"
},
{
"code": "sz",
"continent": "Africa",
@@ -696,6 +731,11 @@
"continent": "South America",
"name": "Falkland Islands"
},
{
"code": "fareasternrepublic",
"continent": "Asia",
"name": "Far Eastern Republic"
},
{
"code": "fo",
"continent": "Europe",
@@ -805,6 +845,11 @@
"continent": "North America",
"name": "Georgia (US State)"
},
{
"code": "Georgian SSR",
"continent": "Asia",
"name": "Georgian SSR"
},
{
"code": "German Empire",
"continent": "Europe",
@@ -1035,6 +1080,16 @@
"continent": "North America",
"name": "Kansas"
},
{
"code": "Karelo-Finnish SSR",
"continent": "Europe",
"name": "Karelo-Finnish SSR"
},
{
"code": "Kazakh SSR",
"continent": "Asia",
"name": "Kazakh SSR"
},
{
"code": "kz",
"continent": "Asia",
@@ -1085,6 +1140,11 @@
"continent": "Asia",
"name": "Kingdom of Judah"
},
{
"code": "Kirghiz SSR",
"continent": "Asia",
"name": "Kirghiz SSR"
},
{
"code": "ki",
"continent": "Oceania",
@@ -1134,6 +1194,11 @@
"continent": "Europe",
"name": "Latvia"
},
{
"code": "Latvian SSR",
"continent": "Europe",
"name": "Latvian SSR"
},
{
"code": "League of Nations",
"name": "League of Nations"
@@ -1191,6 +1256,11 @@
"continent": "Europe",
"name": "Lithuania"
},
{
"code": "Lithuanian SSR",
"continent": "Europe",
"name": "Lithuanian SSR"
},
{
"code": "Louisiana",
"continent": "North America",
@@ -1216,6 +1286,11 @@
"continent": "Europe",
"name": "Macedonia"
},
{
"code": "manitoba",
"continent": "North America",
"name": "Manitoba"
},
{
"code": "mo",
"continent": "Asia",
@@ -1231,6 +1306,11 @@
"continent": "North America",
"name": "Maine"
},
{
"code": "Massachusetts",
"continent": "North America",
"name": "Massachusetts"
},
{
"code": "mw",
"continent": "Africa",
@@ -1331,6 +1411,11 @@
"continent": "North America",
"name": "Missouri"
},
{
"code": "Moldavian SSR",
"continent": "Europe",
"name": "Moldavian SSR"
},
{
"code": "md",
"continent": "Europe",
@@ -1424,11 +1509,21 @@
"continent": "North America",
"name": "Nevada"
},
{
"code": "newbrunswick",
"continent": "North America",
"name": "New Brunswick"
},
{
"code": "nc",
"continent": "Oceania",
"name": "New Caledonia"
},
{
"code": "newfoundlandandlabrador",
"continent": "North America",
"name": "Newfoundland and Labrador"
},
{
"code": "New_Hampshire",
"continent": "North America",
@@ -1529,11 +1624,26 @@
"continent": "Europe",
"name": "Northumbria"
},
{
"code": "northwestterritories",
"continent": "North America",
"name": "Northwest Territories"
},
{
"code": "no",
"continent": "Europe",
"name": "Norway"
},
{
"code": "novascotia",
"continent": "North America",
"name": "Nova Scotia"
},
{
"code": "Nunavut",
"continent": "North America",
"name": "Nunavut"
},
{
"code": "1_Occitania",
"continent": "Europe",
@@ -1554,6 +1664,11 @@
"continent": "Asia",
"name": "Oman"
},
{
"code": "ontario",
"continent": "North America",
"name": "Ontario"
},
{
"code": "Oregon",
"continent": "North America",
@@ -1658,6 +1773,11 @@
"continent": "Europe",
"name": "Powys"
},
{
"code": "princeedwardisland",
"continent": "North America",
"name": "Prince Edward Island"
},
{
"code": "provence",
"continent": "Europe",
@@ -1733,6 +1853,11 @@
"continent": "South America",
"name": "Rio de Janeiro"
},
{
"code": "SPQR",
"continent": "Europe",
"name": "Roman Empire"
},
{
"code": "Romanov Russia",
"continent": "Europe",
@@ -1752,6 +1877,11 @@
"continent": "Europe",
"name": "Russia"
},
{
"code": "Russian SSR",
"continent": "Europe",
"name": "Russian SSR"
},
{
"code": "rw",
"continent": "Africa",
@@ -1835,6 +1965,11 @@
"code": "sardines",
"name": "Sardines"
},
{
"code": "saskatchewan",
"continent": "North America",
"name": "Saskatchewan"
},
{
"code": "Sassanid Empire",
"continent": "Asia",
@@ -1984,11 +2119,6 @@
"continent": "Europe",
"name": "Sparta"
},
{
"code": "SPQR",
"continent": "Europe",
"name": "SPQR"
},
{
"code": "lk",
"continent": "Asia",
@@ -2054,11 +2184,21 @@
"continent": "Asia",
"name": "Taiwan"
},
{
"code": "Tajik SSR",
"continent": "Asia",
"name": "Tajik SSR"
},
{
"code": "tj",
"continent": "Asia",
"name": "Tajikistan"
},
{
"code": "tannutuva",
"continent": "Asia",
"name": "Tannu Tuva"
},
{
"code": "tz",
"continent": "Africa",
@@ -2129,6 +2269,11 @@
"continent": "Asia",
"name": "Türkiye"
},
{
"code": "Turkmen SSR",
"continent": "Asia",
"name": "Turkmen SSR"
},
{
"code": "tm",
"continent": "Asia",
@@ -2164,6 +2309,11 @@
"continent": "Europe",
"name": "Ukraine"
},
{
"code": "Ukrainian SSR",
"continent": "Europe",
"name": "Ukrainian SSR"
},
{
"code": "1_Ulaid",
"continent": "Europe",
@@ -2213,6 +2363,11 @@
"continent": "North America",
"name": "Utah"
},
{
"code": "Uzbek SSR",
"continent": "Asia",
"name": "Uzbek SSR"
},
{
"code": "uz",
"continent": "Asia",
@@ -2332,6 +2487,11 @@
"continent": "Europe",
"name": "Yugoslavia"
},
{
"code": "Yukon",
"continent": "North America",
"name": "Yukon"
},
{
"code": "Zaire",
"continent": "Africa",
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 22 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.7 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 22 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.2 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 21 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.4 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8.5 KiB

After

Width:  |  Height:  |  Size: 8.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.2 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 26 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 37 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 21 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 79 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 24 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 29 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 21 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 74 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 15 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 32 KiB

+4
View File
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg">
<path fill="#c2610c" d="m1002 489.61c0-58.828-165.61-123.61-402-123.61-237.61 0-402 64.781-402 123.61 0 57.609 164.39 122.39 402 122.39 236.39 0 402-64.781 402-122.39zm-402 152.39c-178.78 0-366-38.391-417.61-111.61l-62.391 159.61c81.609-14.391 164.39 20.391 211.22 90l43.219-88.781c3.5625-7.2188 11.953-10.828 20.344-7.2188 7.2188 3.6094 10.828 12 7.2188 20.391l-39.609 80.391c78-18 160.78 0 224.39 49.219v-100.78c0-8.3906 7.2188-14.391 14.391-14.391 7.2188 0 14.391 7.2188 14.391 14.391l0.046875 100.78c63.609-49.219 146.39-67.219 224.39-49.219l-39.609-81.609c-3.6094-7.2188-1.2188-15.609 7.2188-20.391 7.2188-3.6094 15.609-1.2188 20.391 7.2188l43.219 87.609c46.781-68.391 128.39-103.22 210-88.781l-62.391-159.61c-52.828 74.391-241.22 112.78-418.82 112.78z"/>
</svg>

After

Width:  |  Height:  |  Size: 918 B

@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="4 14 10 14 10 20"/>
<polyline points="20 10 14 10 14 4"/>
<line x1="10" y1="14" x2="3" y2="21"/>
<line x1="21" y1="3" x2="14" y2="10"/>
</svg>

After

Width:  |  Height:  |  Size: 321 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 9.4 KiB

+6
View File
@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="15 3 21 3 21 9"/>
<polyline points="9 21 3 21 3 15"/>
<line x1="21" y1="3" x2="14" y2="10"/>
<line x1="3" y1="21" x2="10" y2="14"/>
</svg>

After

Width:  |  Height:  |  Size: 317 B

-1
View File
@@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1364 259" width="100%" height="100%" fill="currentColor" xmlns:v="https://vecta.io/nano"><path d="M0 174V51h15.24V33.86h16.81V16.88h16.96V0h1266v17.23h17.13v16.81h16.98V51H1364v123h-15.13v17.08h-17.08v17.08h-16.9v17.04H324.9v16.86H308v16.95H206v-17.12h-17.07v-17.05H48.73v-17.05H31.84V190.9h-16.9v-16.89H0zM1297.95 17.35H65.9v16.7H48.82v17.08h-14.5v123.08h14.85v16.9h17.08v17.08h139.9v17.08h17.08v16.36h67.9v-16.72h17.08v-17.07h989.88v-17.07h17.08v-16.9h14.44V50.8h-14.75V33.72h-16.9V17.35zM189.1 154.78v17.07h-16.9v16.75h-51.07v-16.42h-16.9v-17.07H87.26V70.23h16.63V53.16h16.9V36.32h51.07v16.5h17.07v17.07h16.7v84.89h-16.54zM137.87 53.1v17.15h-16.6v84.86h16.97v16.61h16.89v-16.97h16.6V69.89h-16.97V53.1h-16.89zm136.04 50.96V87.33h50.92v16.45h16.85v68.05h-16.44v17.06h-50.96v16.88h16.4v16.96H223.4v-16.61h16.33V104.26h-16.38V87.28h33.4v16.63h17.31v67.75h33.59v-67.61h-33.73zm357.21 84.58v-16.36h16.53V53.2H631.4V36.34h118.33v33.29h-16.65V53.27h-50.72v50.44h33.36V87.36h16.99v50.25h-16.6v-16.33h-33.73v50.65h16.37v16.72h-67.63zm-34.34-84.84v84.94h-33.54v-84.39h-34.03v84.25h-33.85V87.31h84.5v16.49h16.93zm510.34 84.91v-84.34h-34.03v84.37h-33.7V87.33h84.42v16.41h16.86v84.96h-33.54zM988.1 171.78v16.87h-67.88v-16.38h-16.87v-68.06h16.38V87.34h68.06v16.38h16.87v68.06h-16.55zm-17.32-67.43h-33.39v67.38h33.39v-67.38zm-510.01 51.03v16.49h-16.58v16.83h-68.05v-16.5h-16.83v-68.05h16.49V87.32h68.05v16.49h16.83v34.06h-67.31v33.82h33.47v-16.31h33.92zm-67.38-51.2v16.56h33.3v-16.56h-33.3zM1209.13 172h-16.9v-67.9h-16.96V87.2h16.68V70.12h16.9V53.3h16.9v33.58h50.98v16.91h-50.4v67.96h16.48v-16.43h50.95v16.54h-16.55v16.76h-68.08v-16.6zm-374.22-51.06v16.96h-16.65v33.88h16.41v16.96h-67.29v-16.63h16.34v-67.87h-16.4V87.27h50.42v33.81h17.3l-.14-.14z"/><path d="M835.05 121.08V87.33h33.76v16.43h16.85v33.96h-33.43v-16.79h-17.32l.14.14z"/></svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

-1
View File
@@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1364 259" width="100%" height="100%" fill="#fff" xmlns:v="https://vecta.io/nano"><path d="M0 174V51h15.24V33.86h16.81V16.88h16.96V0h1266v17.23h17.13v16.81h16.98V51H1364v123h-15.13v17.08h-17.08v17.08h-16.9v17.04H324.9v16.86H308v16.95H206v-17.12h-17.07v-17.05H48.73v-17.05H31.84V190.9h-16.9v-16.89H0zM1297.95 17.35H65.9v16.7H48.82v17.08h-14.5v123.08h14.85v16.9h17.08v17.08h139.9v17.08h17.08v16.36h67.9v-16.72h17.08v-17.07h989.88v-17.07h17.08v-16.9h14.44V50.8h-14.75V33.72h-16.9V17.35zM189.1 154.78v17.07h-16.9v16.75h-51.07v-16.42h-16.9v-17.07H87.26V70.23h16.63V53.16h16.9V36.32h51.07v16.5h17.07v17.07h16.7v84.89h-16.54zM137.87 53.1v17.15h-16.6v84.86h16.97v16.61h16.89v-16.97h16.6V69.89h-16.97V53.1h-16.89zm136.04 50.96V87.33h50.92v16.45h16.85v68.05h-16.44v17.06h-50.96v16.88h16.4v16.96H223.4v-16.61h16.33V104.26h-16.38V87.28h33.4v16.63h17.31v67.75h33.59v-67.61h-33.73zm357.21 84.58v-16.36h16.53V53.2H631.4V36.34h118.33v33.29h-16.65V53.27h-50.72v50.44h33.36V87.36h16.99v50.25h-16.6v-16.33h-33.73v50.65h16.37v16.72h-67.63zm-34.34-84.84v84.94h-33.54v-84.39h-34.03v84.25h-33.85V87.31h84.5v16.49h16.93zm510.34 84.91v-84.34h-34.03v84.37h-33.7V87.33h84.42v16.41h16.86v84.96h-33.54zM988.1 171.78v16.87h-67.88v-16.38h-16.87v-68.06h16.38V87.34h68.06v16.38h16.87v68.06h-16.55zm-17.32-67.43h-33.39v67.38h33.39v-67.38zm-510.01 51.03v16.49h-16.58v16.83h-68.05v-16.5h-16.83v-68.05h16.49V87.32h68.05v16.49h16.83v34.06h-67.31v33.82h33.47v-16.31h33.92zm-67.38-51.2v16.56h33.3v-16.56h-33.3zM1209.13 172h-16.9v-67.9h-16.96V87.2h16.68V70.12h16.9V53.3h16.9v33.58h50.98v16.91h-50.4v67.96h16.48v-16.43h50.95v16.54h-16.55v16.76h-68.08v-16.6zm-374.22-51.06v16.96h-16.65v33.88h16.41v16.96h-67.29v-16.63h16.34v-67.87h-16.4V87.27h50.42v33.81h17.3l-.14-.14z"/><path d="M835.05 121.08V87.33h33.76v16.43h16.85v33.96h-33.43v-16.79h-17.32l.14.14z"/></svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 172 KiB

After

Width:  |  Height:  |  Size: 241 KiB

+80 -45
View File
@@ -23,7 +23,8 @@
"none": "Няма",
"copied": "Копирано!",
"click_to_copy": "Кликни, за да копираш",
"enabled": "Включено"
"enabled": "Включено",
"map_default": "Карта по подразбиране"
},
"main": {
"title": "OpenFront (АЛФА)",
@@ -42,7 +43,6 @@
"play": "Играй",
"news": "Новини",
"store": "Магазин",
"store_new_badge": "НОВО",
"settings": "Настройки",
"leaderboard": "Класация",
"account": "Акаунт",
@@ -89,7 +89,10 @@
"hotkeys": "Бързи клавиши",
"table_key": "Бутон",
"table_action": "Действие",
"action_esc": "Затваря менюто. Отменя предварителния преглед при построяването на единици.",
"action_enter": "Изгражда единица под курсора",
"action_alt_view": "Алтернативен изглед (терен/държави)",
"action_coordinate_grid": "Превключване на координатна мрежа",
"action_attack_altclick": "Атака (когато левият бутон е зададен за отваряне на меню)",
"action_build": "Отваряне на менюто за строене",
"action_emote": "Отваряне на менюто за емоджита",
@@ -115,7 +118,7 @@
"ui_options": "Опции",
"ui_options_desc": "Следните елементи могат да бъдат намерени вътре:",
"ui_playeroverlay": "Меню за информация за играча",
"ui_playeroverlay_desc": "Когато мишката ти е върху държава, менюто за информация за играча се показва под \"Опции\". То показва вида играч: човек, нация (по-умен бот) или бот. Отношението на нацията към теб, вариращо от враждебно до приятелско. И отбранителните войски, злато, както и броя на военните кораби и различните сгради, които играчът има.",
"ui_playeroverlay_desc": "Когато мишката ти е върху държава, менюто за информация за играча се показва под \"Опции\". То показва вида играч: човек, нация или племе. Отношението на нацията към теб, вариращо от враждебно до приятелско. И отбранителните войски, злато, както и броя на военните кораби и различните сгради, които играчът има.",
"ui_wilderness": "Пустош",
"option_pause": "Поставяне/Премахване на пауза на играта - Налични само в самостоятелна игра.",
"option_timer": "Таймер - Изминалото време от началото на играта.",
@@ -137,7 +140,7 @@
"info_trade": "Използвай „Прекратяване на търговия“, за да спреш да даваш злато на играча и да получаваш златото му чрез търговски кораби. Ако и двамата щракнете върху „Започване на търговия“, то ще започне отново.",
"info_ally_panel": "Информационно меню за съюзници",
"info_ally_desc": "Когато се съюзиш с играч, следните иконки стават налични:",
"ally_betray": "Предаване на съюзника ти, което прекратява съюза, като спира търговията и отслабва защитата ти. Търговията между вас е на пауза за 5 минути (или докато не станете съюзници отново) и други също могат да спрат да търгуват с теб. Освен ако самият друг играч не е бил предател, ти ще бъдеш отбелязан като предател за 30 секунди. През това време ще има иконка над името ти и ще имаш 50% намалена защита. По-малко вероятно е ботовете да се съюзят с теб и играчите ще помислят два пъти, преди да го направят.",
"ally_betray": "Предаване на съюзника ти, което прекратява съюза, като спира търговията и отслабва защитата ти. Търговията между вас е на пауза за 5 минути (или докато не станете съюзници отново) и други също могат да спрат да търгуват с теб. Освен ако самият друг играч не е бил предател, ти ще бъдеш отбелязан като предател за 30 секунди. През това време ще има иконка над името ти и ще имаш 50% намалена защита. По-малко вероятно е племената да се съюзят с теб и играчите ще помислят два пъти, преди да го направят.",
"ally_donate": "Даряване на част от войниците ти на съюзника ти. Използвано, когато той е с малко войници и бива атакуван или когато му е нужна тази допълнителна сила, за да размаже противника.",
"ally_donate_gold": "Даряване на част от златото ти на съюзника ти. Използва се, когато той няма злато и се нуждае от него за сгради или спестява за MIRV.",
"build_menu_title": "Меню за строене",
@@ -184,13 +187,15 @@
"toggle_achievements": "Превключване на постижения",
"sign_in_for_achievements": "Впиши се, за да получаваш постижения",
"options_title": "Опции",
"bots": "Ботове: ",
"bots": "Племена: ",
"bots_disabled": "Изключени",
"disable_nations": "Изключване на нации",
"nations": "Нации: ",
"nations_disabled": "Изключени",
"instant_build": "Незабавно построяване",
"infinite_gold": "Безкрайно злато",
"infinite_troops": "Безкрайна популация",
"compact_map": "Компактна карта",
"disable_alliances": "Изключи съюзите",
"max_timer": "Продължителност на играта (в минути)",
"max_timer_placeholder": "Минути",
"max_timer_invalid": "Моля, въведи валидна максимална стойност на таймера (1-120 минути)",
@@ -199,8 +204,8 @@
"options_changed_no_achievements": "Персонализирани настройки – постиженията са деактивирани",
"gold_multiplier": "Златен множител",
"gold_multiplier_placeholder": "2.0x",
"starting_gold": "Начално злато",
"starting_gold_placeholder": "5М"
"starting_gold": "Начално злато (Милиони)",
"starting_gold_placeholder": "5"
},
"token_login_modal": {
"title": "Вписване...",
@@ -264,7 +269,7 @@
"conquest_gold": "Завладяно злато от играч",
"stolen_gold": "Откраднато с военни кораби",
"num_of_conquests_humans": "Превзети играчи",
"num_of_conquests_bots": "Превзети ботове",
"num_of_conquests_bots": "Завзети племена",
"duration": "Продължителност",
"survival_time": "Време на оцеляване",
"war": "Война",
@@ -320,6 +325,7 @@
"svalmel": "Свалмел",
"manicouagan": "Маникуаган",
"lemnos": "Лемнос",
"passage": "Проход",
"sierpinski": "Серпински",
"thebox": "Кутията",
"twolakes": "Две езера",
@@ -328,8 +334,15 @@
"didier": "Дидиер",
"didierfrance": "Дидиер (Франция)",
"amazonriver": "Река Амазонка",
"bosphorusstraits": "Босфорският проток",
"beringstrait": "Берингов проток",
"tradersdream": "Мечта на търговците",
"hawaii": "Хавай"
"hawaii": "Хавай",
"alps": "Алпите",
"niledelta": "Делтата на Нил",
"arctic": "Арктика",
"sanfrancisco": "Сан Франциско",
"aegean": "Егейско море"
},
"map_categories": {
"featured": "Подбрани",
@@ -355,14 +368,10 @@
},
"public_lobby": {
"title": "Изчаква се да започне играта...",
"join": "Присъединяване към следващата игра",
"teams_Duos": "{team_count} отбора по 2-ма (Дуос)",
"teams_Trios": "{team_count} отбора по 3-ма (Триос)",
"teams_Quads": "{team_count} отбора по 4-ма (Куадс)",
"waiting_for_players": "Изчакване на играчи",
"connecting": "Свързване с играта...",
"starting_in": "Започва след {time}",
"starting_game": "Играта се стартира…",
"starting_game": "Започване…",
"teams_hvn": "Хора срещу Нации",
"teams_hvn_detailed": "{num} Души vs {num} Нации",
"teams": "{num} отбора",
@@ -376,7 +385,8 @@
"connecting": "Свързване със сървъра за мачмейкинг...",
"searching": "Търси се игра...",
"waiting_for_game": "Изчаква се да започне играта...",
"elo": "Твоето ЕЛО: {elo}"
"elo": "Твоето ЕЛО: {elo}",
"no_elo": "Още няма ELO"
},
"username": {
"enter_username": "Въведи потребителско име",
@@ -390,15 +400,14 @@
},
"host_modal": {
"title": "Създай частна игра",
"label": "Частна",
"mode": "Начин на игра",
"team_count": "Брой отбори",
"team_type": "Вид на отбора",
"options_title": "Опции",
"bots": "Ботове: ",
"bots": "Племена: ",
"bots_disabled": "Изключени",
"nations": "Нации: ",
"nations_disabled": "Изключени",
"player_immunity_duration": "Продължителност на военния имунитет (минути)",
"disable_nations": "Изключване на нации",
"max_timer": "Продължителност на играта (в минути)",
"mins_placeholder": "Минути",
"instant_build": "Незабавно построяване",
@@ -407,6 +416,7 @@
"infinite_troops": "Безкрайна популация",
"donate_troops": "Даряване на войници",
"compact_map": "Компактна карта",
"disable_alliances": "Изключи съюзите",
"enables_title": "Активиране на настройки",
"player": "Играч",
"players": "Играчи",
@@ -424,8 +434,14 @@
"teams_Trios": "Триос (отбори по 3-ма)",
"teams_Quads": "Куадс (отбори по 4-ма)",
"teams_Humans Vs Nations": "Хора срещу Нации",
"starting_gold": "Начално злато",
"crowded": "Модификатор на претъпкване"
"crowded": "Модификатор на претъпкване",
"hard_nations": "Трудни нации",
"gold_multiplier": "Златен множител",
"gold_multiplier_placeholder": "2.0x",
"starting_gold": "Начално злато (Милиони)",
"starting_gold_placeholder": "5",
"leave_confirmation": "Сигурен ли си, че искаш да излезеш от играта?",
"team_type": "Вид на отбора"
},
"team_colors": {
"red": "Червен",
@@ -435,7 +451,9 @@
"yellow": "Жълт",
"orange": "Оранжев",
"green": "Зелен",
"bot": "Бот"
"bot": "Племена",
"humans": "Хора",
"nations": "Нации"
},
"game_starting_modal": {
"title": "Играта се стартира...",
@@ -453,16 +471,29 @@
"ffa": "Всеки срещу всеки (FFA)",
"teams": "Отбори"
},
"mode_selector": {
"teams_title": "Отбори",
"teams_count": "{teamCount} отбора",
"teams_of": "{teamCount} отбора по {playersPerTeam}",
"ranked_title": "Ранково",
"ranked_1v1_title": "1v1",
"ranked_2v2_title": "2v2",
"coming_soon": "Очаквайте скоро"
},
"public_game_modifier": {
"random_spawn": "Случайно появяване",
"compact_map": "Компактна карта",
"crowded": "Претъпкано",
"starting_gold": "5М начално злато"
"hard_nations": "Трудни нации",
"starting_gold": "{amount}М начално злато",
"gold_multiplier": "x{amount} златен множител",
"disable_alliances": "Изключени съюзи"
},
"select_lang": {
"title": "Изберете език"
},
"unit_type": {
"boat": "Лодка",
"city": "Град",
"defense_post": "Отбранителен пост",
"port": "Пристанище",
@@ -502,6 +533,8 @@
"attack_ratio_desc": "Какъв процент от Вашите войници да се изпратят в атака (1–100%)",
"territory_patterns_label": "🏳️ Териториални шаблони",
"territory_patterns_desc": "Избиране дали да се показват дизайни на шаблони на територия в играта",
"coordinate_grid_label": "Координатна мрежа",
"coordinate_grid_desc": "Превключване на буквено-цифрова мрежа",
"performance_overlay_label": "Горен слой за производителност",
"performance_overlay_desc": "Превключване на горния слой за производителност. Когато е активиран, горният слой за производителност ще бъде показан. Натиснете shift-D по време на играта, за да го превключите.",
"easter_writing_speed_label": "Множител за скорост на писане",
@@ -540,9 +573,11 @@
"emoji_menu_modifier_desc": "Задръж този клавиш, докато кликаш, за да отвориш менюто за емоджита.",
"attack_ratio_controls": "Контроли за съотношение на атака",
"attack_ratio_up": "Увеличаване на съотношение на атака",
"attack_ratio_up_desc": "Увеличаване на съотношение на атака с 10%",
"attack_ratio_up_desc": "Увеличаване на съотношението на атака с {amount}%",
"attack_ratio_down": "Намаляване на съотношение на атака",
"attack_ratio_down_desc": "Намаляване на съотношение на атака с 10%",
"attack_ratio_down_desc": "Намаляване на съотношението на атака с {amount}%",
"attack_ratio_increment_label": "Комбинация за увеличение на коефициента на атака",
"attack_ratio_increment_desc": "С колко се променят клавишните комбинации за коефициент на атака при всяко натискане.",
"attack_keybinds": "Клавиши за атака",
"boat_attack": "Атака с лодка",
"boat_attack_desc": "Изпраща атака с лодка към плочката под курсора ви.",
@@ -662,7 +697,8 @@
"mirv_ready": "[P1] има достатъчно злато, за да изстреля MIRV!",
"snowballing": "[P1] се разраства твърде бързо!",
"cheating": "[P1] мами!",
"stop_trading": "Спри да търгуваш с [P1]!"
"stop_trading": "Спри да търгуваш с [P1]!",
"stop_trading_all": "Моля, спри да търгуваш с всички!"
}
},
"build_menu": {
@@ -758,7 +794,7 @@
"player_type": {
"player": "Играч",
"nation": "Нация",
"bot": "Бот"
"bot": "Племе"
},
"relation": {
"hostile": "Враждебно",
@@ -840,9 +876,19 @@
"fps": "Кадри в секунда (FPS):",
"avg_60s": "Средно (60сек.):",
"frame": "Кадър:",
"tps": "TPS:",
"tps_avg_60s": "Средно:",
"tick_exec": "Изпълнение на тик:",
"max_label": "макс:",
"tick_delay": "Забавяне на тик:",
"layers_header": "Слоеве (средно / максимално, сортирани по общо време):"
"layers_header": "Рендериране на слоеве",
"render_layers_table_header": "ср. / макс | ср. тикове",
"render_layers_summary": "Последен тик: {frames} кадъра, {ms}ms",
"tick_layers_header": "Слоеве на тиковете",
"tick_layers_table_header": "ср. / макс",
"tick_layers_summary": "Последен тик: {count} слоя, {ms}ms",
"expand": "Разшири",
"collapse": "Свий"
},
"heads_up_message": {
"choose_spawn": "Изберете начална локация",
@@ -854,23 +900,16 @@
},
"territory_patterns": {
"title": "Териториални шаблони",
"colors": "Цветове",
"purchase": "Купуване",
"show_only_owned": "Моите шаблони",
"all_owned": "Имаш всички шаблони! Провери отново по-късно за нови артикули.",
"not_logged_in": "Не си се вписал в профил",
"pattern": {
"default": "Стандартен"
},
"try_me": "Изпробвай ме!",
"trial_remaining": "оставащи",
"trial_granted": "Даден е шаблона за временно изпробване!",
"trial_cooldown": "Само едно изпробване на 24 часа. Моля, опитай отново по-късно.",
"trial_login_required": "Трябва да влезеш в профила си, за да можеш да изпробваш шаблон",
"reward_countdown": "Награда след {seconds} секунди...",
"steam_wishlist_prompt": "Подкрепи OpenFront, като го добавиш към списъка си с желания в Steam",
"select_skin": "Избери шаблон",
"selected": "е избран"
"selected": "е избран",
"colors": "Цветове",
"show_only_owned": "Моите шаблони",
"all_owned": "Имаш всички шаблони! Провери отново по-късно за нови артикули.",
"not_logged_in": "Не си се вписал в профил"
},
"flag_input": {
"title": "Избери знаме",
@@ -930,8 +969,6 @@
"recent_games": "Скорошни игри",
"game_id": "ID на играта",
"mode": "Вид",
"mode_ffa": "Всеки срещу всеки (FFA)",
"mode_team": "Отбор",
"replay": "Повторение",
"details": "Детайли",
"ranking": "Класиране",
@@ -948,8 +985,6 @@
"stats_losses": "Загуби",
"stats_wlr": "Съотношение победи:загуби",
"stats_games_played": "Изиграни игри",
"mode_ffa": "Всеки срещу всеки (FFA)",
"mode_team": "Отбор",
"no_stats": "Няма записани статистики за тази селекция."
},
"matchmaking_button": {
+14 -8
View File
@@ -1,4 +1,10 @@
{
"lang": {
"en": "Swiss-German",
"native": "Schweizerdeutsch",
"svg": "gsw",
"lang_code": "de-CH"
},
"common": {
"close": "Schliesse",
"copy": "Kopiere",
@@ -134,7 +140,7 @@
"info_trade": "Benutz \"Hanu stoppe\" um ufzhöre em Spieler Gold über euchi Handusschiff z gäh und Gold vo Handusschiffe vom Spieler z erhaute. Wenn dir beidi wieder uf \"Handu beginne\" drücket, geit es wieder los.",
"info_ally_panel": "Bündnis Infoberich",
"info_ally_desc": "Wenn me sech mit emne Spieler verbündet, wärde fougendi Icons sichtbar:",
"ally_betray": "Verrat di Verbündete, beänd d Alliant, stopp der Handu und schwäch dini Verteidigung. Der Handu zwüsche Ihne wird für 5 Minute ungerbroche (oder bis du di wieder verbündisch) und angeri chöi ou der Handu isteue. Und wenn der anger Spieler nid säuber Verräter isch gsi, wirsch du 30 Sekunge lang aus Verräter markiert. Während dere Zit wird es Symbou oberhaub vo dim Name azeigt und dini Verteidigung wird um 50% reduziert. Dass Bots sech verbünde isch eher unwahrschinlech aber Spieler werde es sech sicher vorher zwöimou überlege.",
"ally_betray": "Verrat di Verbündete, beänded d Alliaz, stoppt der Handu und schwächt dini Verteidigung. Der Handu zwüsche Ihne wird für 5 Minute ungerbroche (oder bis du di wieder verbündisch) und angeri chöi ou der Handu isteue. Und wenn der anger Spieler nid säuber Verräter isch gsi, wirsch du 30 Sekunge lang aus Verräter markiert. Während dere Zit wird es Symbou oberhaub vo dim Name azeigt und dini Verteidigung wird um 50% reduziert. Dass Bots sech verbünde isch eher unwahrschinlech aber Spieler werde es sech sicher vorher zwöimou überlege.",
"ally_donate": "Spend einigi vo dine truppe a emne verbündete. Cha brucht wärde, wenn si weni truppe hei, oder um se bi emne vernichtende Schlag z ungerschtütze.",
"ally_donate_gold": "Spend e Teil vo dim Gold a dini verbündete. Wird brucht, wenn si kei Gold für gebäude hei, oder wenn di Teampartner isch am Spare für e MIRV.",
"build_menu_title": "Baumenü",
@@ -396,7 +402,6 @@
"title": "Privati Lobby erstellen",
"mode": "Modus",
"team_count": "Teamazau",
"team_type": "Team Typ",
"options_title": "Optione",
"bots": "Stämm: ",
"bots_disabled": "Usgschaute",
@@ -435,7 +440,8 @@
"gold_multiplier_placeholder": "2.0x",
"starting_gold": "Start-Gold (Millionen)",
"starting_gold_placeholder": "5",
"leave_confirmation": "Bisch du dir würklech sicher, dass du s Spieu wosch verlasse?"
"leave_confirmation": "Bisch du dir würklech sicher, dass du s Spieu wosch verlasse?",
"team_type": "Team Typ"
},
"team_colors": {
"red": "Rot",
@@ -894,16 +900,16 @@
},
"territory_patterns": {
"title": "Gebietsmuschter",
"colors": "Farbene",
"purchase": "Choufe",
"show_only_owned": "Mini Designs",
"all_owned": "Du besitztisch aui Skins! Lueg später wieder ine für neui Artikle.",
"not_logged_in": "Nid agmäudet",
"pattern": {
"default": "Normau"
},
"select_skin": "Skin uswähle",
"selected": "usgwäut"
"selected": "usgwäut",
"colors": "Farbene",
"show_only_owned": "Mini Designs",
"all_owned": "Du besitztisch aui Skins! Lueg später wieder ine für neui Artikle.",
"not_logged_in": "Nid agmäudet"
},
"flag_input": {
"title": "Flagge uswähle",
+104 -13
View File
@@ -6,6 +6,7 @@
"lang_code": "en"
},
"common": {
"not_logged_in": "Not logged in",
"close": "Close",
"copy": "Copy",
"paste": "Paste",
@@ -105,6 +106,9 @@
"action_ratio_change": "Decrease/Increase attack ratio",
"action_reset_gfx": "Reset graphics",
"action_auto_upgrade": "Auto-upgrade nearest building",
"action_warship_multiselect": "Select multiple warships (drag to draw selection box)",
"action_warship_selectall": "Select all your warships",
"drag": "drag",
"ui_section": "Game UI",
"ui_leaderboard": "Leaderboard",
"ui_your_team": "Your team:",
@@ -184,7 +188,8 @@
"exit_confirmation": "Are you sure you want to exit the game?",
"bomb_direction": "Atom / Hydrogen bomb arc direction",
"icon_alt_player_leaderboard": "Player Leaderboard Icon",
"icon_alt_team_leaderboard": "Team Leaderboard Icon"
"icon_alt_team_leaderboard": "Team Leaderboard Icon",
"game_id_tooltip": "Game ID"
},
"single_modal": {
"random_spawn": "Random spawn",
@@ -200,10 +205,11 @@
"infinite_troops": "Infinite troops",
"compact_map": "Compact Map",
"disable_alliances": "Disable alliances",
"water_nukes": "Water nukes",
"max_timer": "Game length (minutes)",
"max_timer_placeholder": "Mins",
"max_timer_invalid": "Please enter a valid max timer value (1-120 minutes)",
"enables_title": "Enable Settings",
"enables_title": "Disable Units",
"start": "Start Game",
"options_changed_no_achievements": "Custom settings achievements disabled",
"gold_multiplier": "Gold multiplier",
@@ -350,7 +356,17 @@
"niledelta": "Nile Delta",
"arctic": "Arctic",
"sanfrancisco": "San Francisco",
"aegean": "Aegean"
"aegean": "Aegean",
"milkyway": "Milky Way",
"mediterranean": "Mediterranean",
"dyslexdria": "Dyslexdria",
"greatlakes": "Great Lakes",
"straitofmalacca": "Strait Of Malacca",
"luna": "Luna",
"conakry": "Conakry",
"caucasus": "Caucasus",
"beringsea": "Bering Sea",
"antarctica": "Antarctica"
},
"map_categories": {
"featured": "Featured",
@@ -376,7 +392,8 @@
"disabled_units": "Disabled Units",
"game_length": "Game length",
"pvp_immunity": "PVP immunity duration",
"starting_gold": "Starting Gold"
"starting_gold": "Starting Gold",
"host_cheats": "Host Cheats"
},
"public_lobby": {
"title": "Waiting for Game Start...",
@@ -429,7 +446,8 @@
"donate_troops": "Donate troops",
"compact_map": "Compact Map",
"disable_alliances": "Disable alliances",
"enables_title": "Enable Settings",
"water_nukes": "Water nukes",
"enables_title": "Disable Units",
"player": "Player",
"players": "Players",
"nation_players": "Nations",
@@ -452,6 +470,7 @@
"gold_multiplier_placeholder": "2.0x",
"starting_gold": "Starting Gold (Millions)",
"starting_gold_placeholder": "5",
"host_cheats": "Host Cheats",
"leave_confirmation": "Are you sure you want to leave the lobby?"
},
"team_colors": {
@@ -500,7 +519,17 @@
"starting_gold_label": "Starting Gold",
"gold_multiplier": "x{amount} Gold Multiplier",
"disable_alliances": "Alliances Disabled",
"disable_alliances_label": "Alliances"
"disable_alliances_label": "Alliances",
"ports_disabled": "Ports Disabled",
"ports_disabled_label": "Ports",
"nukes_disabled": "Nukes Disabled",
"nukes_disabled_label": "Nukes",
"sams_disabled": "SAMs Disabled",
"sams_disabled_label": "SAMs",
"peace_time": "4min Peace",
"peace_time_label": "PVP Immunity",
"water_nukes": "Water Nukes",
"water_nukes_label": "Water Nukes"
},
"select_lang": {
"title": "Select Language"
@@ -522,6 +551,7 @@
"title": "Settings",
"tab_basic": "Basic Settings",
"tab_keybinds": "Keybinds",
"keybinds_hint": "Click a key to rebind it. You can assign a single key or Shift + key combination.",
"dark_mode_label": "Dark Mode",
"dark_mode_desc": "Toggle the sites appearance between light and dark themes",
"emojis_label": "Emojis",
@@ -600,12 +630,17 @@
"attack_ratio_down": "Decrease Attack Ratio",
"attack_ratio_down_desc": "Decrease attack ratio by {amount}%",
"attack_ratio_increment_label": "Attack Ratio Keybind Increment",
"attack_ratio_increment_desc": "How much the attack ratio keybinds change per press.",
"attack_ratio_increment_desc": "How much the attack ratio keybinds change per press/scroll.",
"attack_keybinds": "Attack Keybinds",
"boat_attack": "Boat Attack",
"boat_attack_desc": "Send a boat attack to the tile under your cursor.",
"ground_attack": "Ground Attack",
"ground_attack_desc": "Send a ground attack to the tile under your cursor.",
"ally_keybinds": "Ally Keybinds",
"request_alliance": "Request Alliance",
"request_alliance_desc": "Send an alliance request to the player whose tile is under your cursor.",
"break_alliance": "Break Alliance (Betray)",
"break_alliance_desc": "Break alliance with the player whose tile is under your cursor.",
"swap_direction": "Swap Rocket Direction",
"swap_direction_desc": "Toggle rocket launch direction (up/down).",
"zoom_controls": "Zoom Controls",
@@ -738,6 +773,7 @@
"city": "Increases max population",
"factory": "Creates railroads and spawns trains"
},
"warship_shift_hint": "Hold Shift and drag to select multiple warships at once",
"not_enough_money": "Not enough money"
},
"win_modal": {
@@ -791,6 +827,7 @@
"sent_emoji": "Sent {name}: {emoji}",
"renew_alliance": "Request to renew",
"request_alliance": "{name} requests an alliance!",
"alliance_request_sent": "Alliance request sent to {name}.",
"focus": "Focus",
"accept_alliance": "Accept",
"reject_alliance": "Reject",
@@ -858,7 +895,9 @@
},
"kick_reason": {
"duplicate_session": "Kicked from game (you may have been playing on another tab)",
"lobby_creator": "Kicked by lobby creator"
"lobby_creator": "Kicked by lobby creator",
"admin": "Kicked by an admin",
"host_left": "The host has left the lobby."
},
"send_troops_modal": {
"title_with_name": "Send Troops to {name}",
@@ -922,18 +961,42 @@
"pvp_immunity_active": "PVP immunity active for {seconds}s",
"catching_up": "Catching up..."
},
"store": {
"title": "Store",
"patterns": "Skins",
"flags": "Flags",
"packs": "Packs",
"no_flags": "No flags available. Check back later for new items.",
"no_skins": "No skins available. Check back later for new items.",
"no_packs": "No packs available. Check back later for new items.",
"currency_pack_purchase_success": "Currency pack purchase successful!",
"checkout_failed": "Failed to create checkout session.",
"login_required": "You must be logged in to purchase with currency.",
"not_enough_currency": "Not enough currency for this purchase.",
"purchase_failed": "Purchase failed. Please try again.",
"purchase_success": "Purchase succeeded: {name}"
},
"territory_patterns": {
"title": "Skins",
"colors": "Colors",
"purchase": "Purchase",
"show_only_owned": "My Skins",
"all_owned": "All skins owned! Check back later for new items.",
"not_logged_in": "Not logged in",
"pattern": {
"default": "Default"
},
"select_skin": "Select Skin",
"selected": "selected"
"selected": "selected",
"search": "Search..."
},
"cosmetics": {
"artist_label": "Artist:",
"color_label": "Color:",
"common": "Common",
"uncommon": "Uncommon",
"rare": "Rare",
"epic": "Epic",
"legendary": "Legendary",
"adfree": "ad-free for life!",
"hard": "Plutonium",
"soft": "Caps"
},
"flag_input": {
"title": "Select Flag",
@@ -1004,6 +1067,8 @@
"public": "Public",
"private": "Private",
"solo": "Solo",
"ranked": "Ranked",
"ranked_1v1": "1v1",
"mode": "Mode",
"stats_wins": "Wins",
"stats_losses": "Losses",
@@ -1016,5 +1081,31 @@
"description": "(ALPHA)",
"login_required": "Login to play ranked!",
"must_login": "You must be logged in to play ranked matchmaking."
},
"news_box": {
"tournament": "TOURNAMENT",
"tutorial": "TUTORIAL",
"news": "NEWS",
"warning": "WARNING",
"dismiss": "Dismiss",
"go_to_item": "Go to item {num}",
"firefox_warning": "OpenFront.io doesn't perform well with [Firefox-based browsers](https://simple.wikipedia.org/wiki/Web_browsers_based_on_Firefox). We recommend you to use a [Chromium-based browser](https://en.wikipedia.org/wiki/Chromium_(web_browser)#Browsers_based_on_Chromium) for best performance."
},
"ios_banner": {
"text": "For fullscreen, add OpenFront to your Home Screen",
"how": "How",
"later": "Later",
"never": "Never",
"modal_title": "Fullscreen on iOS",
"modal_desc": "Your browser doesn't support fullscreen, but you can add OpenFront to your Home Screen for an immersive experience:",
"step_share": "Tap the Share button in your browser",
"step_scroll_and_tap": "Scroll down and tap",
"step_add_to_home_label": "Add to Home Screen",
"step_open": "Open from your Home Screen — launches fullscreen without the address bar",
"got_it": "Got it"
},
"fullscreen": {
"enter": "Enter fullscreen",
"exit": "Exit fullscreen"
}
}
+190 -147
View File
@@ -7,6 +7,8 @@
},
"common": {
"close": "Fermer",
"copy": "Copier",
"paste": "Coller",
"back": "Retour",
"available": "Disponible",
"preset_max": "Max",
@@ -20,48 +22,77 @@
"target_dead_note": "Vous ne pouvez pas envoyer de ressources à un joueur éliminé.",
"none": "Aucun",
"copied": "Copié !",
"click_to_copy": "Cliquer pour copier"
"click_to_copy": "Cliquer pour copier",
"enabled": "Activé",
"map_default": "Carte par défaut"
},
"main": {
"title": "OpenFront (ALPHA)",
"join_discord": "Discord",
"login_discord": "Se connecter avec Discord",
"sign_in": "Se connecter",
"discord_avatar_alt": "Avatar du profil Discord",
"user_avatar_alt": "Avatar de {username}",
"checking_login": "Vérification de la connexion...",
"logged_in": "Connecté !",
"log_out": "Se déconnecter",
"create": "Créer un salon",
"join": "Rejoindre un salon",
"solo": "Solo",
"instructions": "Instructions",
"game_info": "Infos sur la partie",
"wiki": "Wiki",
"privacy_policy": "Politique de confidentialité",
"terms_of_service": "Conditions d'utilisation",
"copyright": "©️ OpenFront™ et Contributeurs",
"reddit": "Reddit",
"play": "Jouer",
"news": "Actus",
"store": "Boutique",
"settings": "Paramètres",
"keys": "Touches",
"stats": "Stats",
"leaderboard": "Classement",
"account": "Compte",
"help": "Aide",
"menu": "Menu",
"pick_pattern": "Choisis un motif !"
"troubleshooting": "Dépannage",
"go_to_troubleshooting": "Rendez-vous sur notre page de dépannage"
},
"news": {
"github_link": "sur Github",
"github_link": "Sur GitHub",
"title": "Notes de version"
},
"troubleshooting": {
"title": "Dépannage",
"environment": "Environnement",
"rendering": "Affichage",
"power": "Puissance",
"browser": "Navigateur",
"platform": "Plateforme",
"copied_to_clipboard": "Informations copiées dans le presse-papiers ! N'hésitez pas à le partager sur notre Discord si vous avez besoin d'aide.",
"os": "OS",
"device_pixel_ratio": "Ratio de pixels de l'appareil",
"chromium_tip": "OpenFront fonctionne mieux sur les navigateurs basés sur Chromium.",
"hardware_acceleration_tip": "Assurez-vous que l'accélération matérielle est activée dans les paramètres de votre navigateur pour des performances optimales.",
"renderer": "Moteur de Rendu",
"max_texture_size": "Taille max des textures",
"high_precision_shaders": "Shaders haute précision",
"gpu": "GPU",
"unavailable": "Indisponible",
"gpu_tip": "Vérifiez qu'il s'agit bien du GPU dédié, si disponible.",
"battery": "Batterie",
"charging": "Chargement",
"battery_level": "Niveau de la Batterie",
"power_saving_tip": "Assurez-vous que votre navigateur n'est pas configuré en mode économie d'énergie.",
"yes": "Oui",
"no": "Non",
"unknown": "Inconnu",
"software_rendering": "Rendu logiciel",
"canvas_2d_no_gpu": "Canvas 2D (sans GPU)"
},
"help_modal": {
"video_tutorial": "Tutoriel vidéo",
"video_tutorial_title": "Tutoriel OpenFront.io",
"hotkeys": "Raccourcis clavier",
"table_key": "Touche",
"table_action": "Action",
"action_esc": "Ferme le menu. Annule l'aperçu de construction ",
"action_enter": "Construit sous le curseur ",
"action_alt_view": "Vue alternative (terrain/pays)",
"action_coordinate_grid": "Activer/désactiver l'affichage de la grille de coordonnées",
"action_attack_altclick": "Attaquer (quand le clic gauche est configuré pour ouvrir le menu)",
"action_build": "Ouvrir le menu de construction",
"action_emote": "Ouvrir le menu des émojis",
@@ -74,10 +105,9 @@
"ui_section": "IU du jeu",
"ui_leaderboard": "Classement",
"ui_your_team": "Votre équipe :",
"ui_leaderboard_desc": "Montre les meilleurs joueurs du jeu et leurs noms, leur % de terres occupée, leur or et leurs troupes. Utiliser « Show All » montre tous les joueurs du jeu. Si vous ne voulez pas voir le classement, cliquez sur Masquer.",
"ui_leaderboard_desc": "Montre les meilleurs joueurs du jeu et leurs noms, leur % de terres occupée, leur or et leurs troupes. Utiliser « Montrer tout » montre tous les joueurs du jeu. Si vous ne voulez pas voir le classement, cliquez sur « Masquer ».",
"ui_control": "Panneau de contrôle",
"ui_control_desc": "Le panneau de contrôle contient les éléments suivants :",
"ui_pop": "Pop - Le nombre d'unités que vous avez, votre population max et la vitesse à laquelle vous les gagnez.",
"ui_gold": "Or - La quantité d'or que vous avez et la vitesse à laquelle vous en gagnez.",
"ui_attack_ratio": "Ratio d'attaque - La quantité de troupes qui seront utilisées lors de votre attaque. Vous pouvez ajuster le ratio d'attaque en utilisant le curseur. Avoir plus de troupes attaquantes que défensives vous fera perdre moins de troupes dans l'attaque, quand en avoir moins va augmenter les dommages infligés à vos troupes attaquantes. L'effet ne dépasse pas le ratio de 2:1.",
"ui_events": "Panneau des événements",
@@ -88,21 +118,19 @@
"ui_options": "Options",
"ui_options_desc": "Les éléments suivants peuvent être trouvés à l'intérieur :",
"ui_playeroverlay": "Informations sur le joueur",
"ui_playeroverlay_desc": "Lorsque vous survolez un pays, le panneau d'informations sur le joueur s'affichent dans Options. Il montre le type de joueur : Humain, Nation (bot intelligent), ou Bot ; l'attitude d'une nation à votre égard. allant de l'Hostile à l'Amical ; et les troupes en défense, l'or, le nombre de navires de guerre et les différents bâtiments que le joueur possède.",
"ui_playeroverlay_desc": "Lorsque que vous survolez un territoire, l'affichage des informations de Joueur sont affichées dans Options. Cela montre le type de joueur : Humain, Nation ou Tribu. L'attitude d'une Nation envers vous, allant d'Hostile à Amicale. Et les troupes en défense, l'or, ainsi que le nombre de Vaisseaux de guerre et diverses structures possédées par le joueur.",
"ui_wilderness": "Région sauvage",
"option_pause": "Mettre en pause/Continuer la partie - Disponible uniquement dans le mode solo.",
"option_timer": "Chronomètre - Temps écoulé depuis le début du jeu.",
"option_exit": "Bouton de sortie.",
"option_settings": "Paramètres - Ouvre le menu Paramètres. À l'intérieur vous pouvez basculer la vue alternative, les emojis, le mode sombre, Ninja (mode noms anonymes/aléatoires), et l'action au clic gauche.",
"option_settings": "Paramètres - Ouvre le menu Paramètres. À l'intérieur vous pouvez basculer la vue alternative, les émojis, le mode sombre, Ninja (mode noms anonymes/aléatoires), et l'action au clic gauche.",
"radial_title": "Menu radial",
"radial_desc": "Un clic droit (ou un appui sur mobile) ouvre le menu Radial. Faites un clic droit à l'extérieur pour le fermer. À partir du menu, vous pouvez :",
"radial_build": "Ouvrir le menu de construction.",
"radial_attack": "Ouvrez le menu d'attaque.",
"radial_info": "Ouvrir le menu d'informations.",
"radial_boat": "Envoyer un bateau (navire de transport) pour attaquer l'endroit sélectionné. Disponible uniquement si vous avez accès à l'eau.",
"radial_donate_troops": "Donner des troupes équivalent à votre ratio d'attaque à l'allié sur lequel vous avez ouvert le menu radial.",
"radial_donate_gold": "Ouvre le menu du curseur de don d'or pour que vous puissiez envoyer rapidement de l'or aux alliés.",
"radial_close": "Fermer le menu.",
"info_title": "Menu d'informations",
"info_enemy_desc": "Contient des informations telles que le nom du joueur sélectionné, son or, ses troupes, s'il a cessé de commercer avec vous, les bombes qu'il vous a envoyées, et si le joueur est un traître. L'arrêt du commerce signifie que vous ne recevrez pas d'or de sa part et qu'il ne vous enverra pas d'or via des navires commerciaux. Manuellement (si le joueur a cliqué sur « Arrêter le commerce », qui dure jusqu'à ce que vous cliquiez sur « Commencer le commerce ») ou automatiquement (si vous avez trahi votre alliance, ce qui dure jusqu'à ce que vous deveniez alliés de nouveau ou après 5 minutes). Le traître affiche Oui pendant 30 secondes lorsque le joueur a trahi et attaqué un joueur qui était dans une alliance avec lui. Les icônes ci-dessous représentent les interactions suivantes :",
"info_chat": "Envoyez un message rapide au joueur. Sélectionnez une catégorie, une phrase et si la phrase contient [P1] sélectionnez un nom de joueur pour la remplacer. Appuyez sur Envoyer.",
@@ -112,7 +140,7 @@
"info_trade": "Utiliser \"Arrêter le commerce\" pour arrêter de donner de l'or au joueur et de recevoir son or via des vaisseaux commerciaux. Si vous cliquez tous les deux sur \"Commencer le commerce\", cela recommencera.",
"info_ally_panel": "Panneau d'informations des alliés",
"info_ally_desc": "Lorsque vous vous alliez à un joueur, les nouvelles icônes suivantes deviennent disponibles :",
"ally_betray": "Trahissez votre allié, mettant fin à l'alliance, arrêtant les échanges commerciaux et affaiblissant votre défense. Le commerce entre vous est suspendu pendant 5 minutes (ou jusqu'à ce que vous redeveniez alliés), d'autres peuvent également cesser le commerce. Et à moins que l'autre joueur ne soit lui-même un traître, vous serez marqué comme un traître pendant 30 secondes. Pendant ce temps, une icône sera au-dessus de votre nom et vous aurez un affaiblissement de la défense de 50%. Les bots sont moins susceptibles de s'allier avec vous et les joueurs y réfléchiront à deux fois avant de le faire.",
"ally_betray": "Trahison de votre allié, mettant donc fin à l'alliance et arrêtant le commerce tout en affaiblissant votre défense. Le commerce entre vous est suspendu pendant 5 minutes (ou jusqu'à ce que vous redeveniez alliés), d'autres joueurs peuvent aussi cesser le commerce. A moins que l'autre joueur ne soit lui-même un traître, vous aurez le statut de traître pendant 30 secondes. Pendant ce temps, une icône sera présente au-dessus de votre nom et votre défense sera affaiblie de 50%. Les tribus sont moins susceptibles de s'allier avec vous et plus susceptibles de vous attaquer.",
"ally_donate": "Donner une partie de vos troupes à un allié. Utilisé lorsqu'ils manquent de troupes et sont attaqués, ou lorsqu'ils ont besoin de puissance supplémentaire pour écraser un ennemi.",
"ally_donate_gold": "Donner une partie de votre or à votre allié. Utilisé quand ils sont à court d'or et en ont besoin pour des bâtiments, ou lorsque le membre de votre équipe économise pour un MIRV.",
"build_menu_title": "Menu de construction",
@@ -133,7 +161,7 @@
"build_silo": "Silo à missiles",
"build_silo_desc": "Permet de lancer des missiles.",
"build_sam": "Lanceur SAM",
"build_sam_desc": "Peut intercepter les missiles ennemis dans un rayon de 100 pixels. Le SAM a un temps de recharge de 7,5 secondes.",
"build_sam_desc": "Peut intercepter les missiles ennemis dans un rayon de 100 pixels. Le SAM a un temps de recharge de 12 secondes.",
"build_atom": "Bombe atomique",
"build_atom_desc": "Petite bombe explosive qui détruit le territoire, les bâtiments, les navires et les bateaux. Apparaît depuis le Silo à missiles le plus proche et atterrit dans la zone cliquée.",
"build_hydrogen": "Bombe à hydrogène",
@@ -141,6 +169,7 @@
"build_mirv": "MIRV",
"build_mirv_desc": "La bombe la plus puissante du jeu. Se divise en plus petites bombes qui couvriront une vaste zone du territoire. Ne fait des dégâts qu'au joueur sur lequel vous avez cliqué pour la construire. Apparaît depuis le Silo à missiles le plus proche et atterrit dans la zone cliquée.",
"player_icons": "Icônes des joueurs",
"troubleshooting_desc": "Si vous rencontrez des problèmes de performance, des plantages ou d'autres problèmes lors de la lecture d'OpenFront, veuillez visiter notre page de dépannage pour vous aider à diagnostiquer et à résoudre les problèmes courants :",
"icon_desc": "Exemples de certaines icônes du jeu que vous rencontrerez et leur signification :",
"icon_crown": "Couronne - Numéro 1. C'est le meilleur joueur du classement.",
"icon_traitor": "Bouclier cassé - Traître. Ce joueur a attaqué un allié.",
@@ -149,29 +178,34 @@
"icon_request": "Enveloppe - Demande d'alliance. Ce joueur vous a envoyé une demande d'alliance.",
"info_enemy_panel": "Panneau d'information de l'ennemi",
"exit_confirmation": "Êtes-vous sûr de vouloir quitter le jeu ?",
"bomb_direction": "Direction de l'arc de bombe Atomique / Hydrogène"
"bomb_direction": "Direction de l'arc de bombe Atomique / Hydrogène",
"icon_alt_player_leaderboard": "Icône du Classement des Joueurs",
"icon_alt_team_leaderboard": "Icône du classement d'équipe"
},
"single_modal": {
"title": "Solo",
"random_spawn": "Spawn aléatoire",
"allow_alliances": "Autoriser les alliances",
"random_spawn": "Apparition aléatoire",
"toggle_achievements": "Activer / Désactiver les succès",
"sign_in_for_achievements": "Connectez-vous pour obtenir des succès",
"options_title": "Options",
"bots": "Bots : ",
"bots": "Tribus",
"bots_disabled": "Désactivé",
"nations": "Nations : ",
"disable_nations": "Désactiver les nations",
"nations": "Nations",
"nations_disabled": "Désactivées",
"instant_build": "Construction instantanée",
"infinite_gold": "Or infini",
"infinite_troops": "Troupes infinies",
"compact_map": "Carte compacte",
"disable_alliances": "Désactiver les alliances",
"max_timer": "Durée de jeu (minutes)",
"max_timer_placeholder": "Mins",
"max_timer_invalid": "Veuillez entrer une valeur max valide pour le minuteur (1-120 minutes)",
"disable_nukes": "Désactiver les armes nucléaires",
"enables_title": "Activer les paramètres",
"start": "Commencer la partie"
"start": "Commencer la partie",
"options_changed_no_achievements": "Paramètres personnalisés - succès désactivés",
"gold_multiplier": "Multiplicateur d'or",
"gold_multiplier_placeholder": "2.0x",
"starting_gold": "Or de départ (En millions)",
"starting_gold_placeholder": "5"
},
"token_login_modal": {
"title": "Connexion en cours...",
@@ -194,25 +228,31 @@
"not_found": "Introuvable",
"clear_session": "Effacer la session",
"failed_to_send_recovery_email": "Échec de l'envoi de l'e-mail de récupération",
"enter_email_address": "Veuillez saisir une adresse e-mail"
"enter_email_address": "Veuillez saisir une adresse e-mail",
"personal_player_id": "ID du joueur :"
},
"stats_modal": {
"title": "Statistiques",
"clan_stats": "Statistiques de Clan",
"leaderboard_modal": {
"title": "Classement",
"ranked_tab": "1v1 Classé",
"clans_tab": "Clans",
"refresh_time": "Actualisé toutes les heures",
"loading": "Chargement...",
"error": "Erreur lors du chargement des statistiques du clan",
"no_stats": "Pas de statistique de clan disponible",
"no_data_yet": "Aucune donnée pour le moment",
"error": "Erreur lors du chargement du classement",
"no_stats": "Aucune statistique disponible",
"no_data_yet": "Pas encore de données",
"clan": "Clan",
"player": "Joueur",
"games": "Parties",
"elo": "ELO",
"win_score": "Score de Victoire",
"win_score_tooltip": "Victoires pondérées en fonction de la participation du clan et de la difficulté du match",
"win_score_tooltip": "Gains pondérés en fonction de la participation du clan et de la difficulté du match",
"loss_score": "Score de Défaite",
"loss_score_tooltip": "Défaites pondérées en fonction de la participation du clan et de la difficulté du match",
"win_loss_ratio": "Victoires/Défaites",
"ratio": "Coefficient",
"ratio": "Ratio",
"rank": "Rang",
"try_again": "Réessayer"
"try_again": "Retenter",
"your_ranking": "Votre classement"
},
"game_info_modal": {
"title": "Infos sur la partie",
@@ -224,9 +264,12 @@
"total_gold": "Total",
"all_gold": "Tout l'or",
"trade": "Commercer",
"train_trade": "Train",
"naval_trade": "Échange maritime",
"conquest_gold": "Or de joueur conquis",
"stolen_gold": "Volé avec des navires de guerre",
"num_of_conquests": "Nombre de joueurs conquis",
"num_of_conquests_humans": "Joueurs tués",
"num_of_conquests_bots": "Tribus tuées",
"duration": "Durée",
"survival_time": "Temps de survie",
"war": "Guerre",
@@ -239,6 +282,8 @@
},
"map": {
"map": "Carte",
"featured": "En vedette",
"all": "Tout",
"world": "Monde",
"giantworldmap": "Carte du monde géante",
"europe": "Europe",
@@ -280,15 +325,27 @@
"svalmel": "Svalmel",
"manicouagan": "Manicouagan",
"lemnos": "Lemnos",
"passage": "Passage",
"sierpinski": "Sierpinski",
"thebox": "La boite",
"twolakes": "Deux Lacs",
"straitofhormuz": "Détroit d'Ormuz",
"surrounded": "Encerclé",
"didier": "Didier",
"didierfrance": "Didier (France)",
"amazonriver": "Fleuve Amazone"
"amazonriver": "Fleuve Amazone",
"bosphorusstraits": "Détroits du Bosphore",
"beringstrait": "Détroit de Béring",
"tradersdream": "Le rêve d'un commerçant",
"hawaii": "Hawaï",
"alps": "Alpes",
"niledelta": "Delta du Nil",
"arctic": "Arctique",
"sanfrancisco": "San Francisco",
"aegean": "Mer Égée"
},
"map_categories": {
"featured": "En vedette",
"continental": "Continental",
"regional": "Régional",
"fantasy": "Autre",
@@ -302,10 +359,7 @@
"private_lobby": {
"title": "Rejoindre un salon privé",
"enter_id": "Entrez l'ID du salon",
"player": "Joueur",
"players": "Joueurs",
"join_lobby": "Rejoindre le salon",
"checking": "Vérification du salon...",
"not_found": "Salon introuvable. Veuillez vérifier l'ID et réessayer.",
"error": "Une erreur s'est produite. Veuillez réessayer ou contacter le support.",
"joined_waiting": "Salon rejoint ! En attente du démarrage de l'hôte...",
@@ -313,25 +367,26 @@
"disabled_units": "Unités désactivées"
},
"public_lobby": {
"join": "Rejoindre la prochaine partie",
"waiting": "joueurs en attente",
"teams_Duos": "{team_count} équipes de 2 (Duos)",
"teams_Trios": "{team_count} équipes de 3 (Trios)",
"teams_Quads": "{team_count} équipes de 4 (Quatuors)",
"title": "En attente du début de la partie...",
"waiting_for_players": "En attente de joueurs",
"starting_game": "Démarrage en cours...",
"connecting": "Connexion au lobby...",
"starting_in": "Début dans {time}",
"starting_game": "Lancement…",
"teams_hvn": "Humains vs Nations",
"teams_hvn_detailed": "{num} Humains vs {num} Nations",
"teams": "{num} équipes",
"players_per_team": "de {num}",
"started": "Lancé"
"started": "Lancé",
"status": "Statut",
"join_timeout": "Vous n'êtes pas entré dans la partie à temps."
},
"matchmaking_modal": {
"title": "Matchmaking 1v1 Classé (ALPHA)",
"connecting": "Connexion au serveur de matchmaking...",
"searching": "Recherche d'une partie...",
"waiting_for_game": "En attente du début de la partie...",
"elo": "Votre ELO : {elo}"
"elo": "Votre ELO : {elo}",
"no_elo": "Pas encore d'ELO"
},
"username": {
"enter_username": "Entrez votre nom d'utilisateur",
@@ -345,16 +400,14 @@
},
"host_modal": {
"title": "Créer un Salon Privé",
"label": "Privé",
"mode": "Mode",
"team_count": "Nombre d'équipes",
"team_type": "Type d'équipe",
"options_title": "Paramètres",
"bots": "Bots : ",
"bots": "Tribus",
"bots_disabled": "Désactivé",
"player_immunity_duration": "Immunité au JcJ (minutes)",
"nations": "Nations : ",
"disable_nations": "Désactiver les nations",
"nations_disabled": "Désactivées",
"player_immunity_duration": "Immunité des joueurs (minutes)",
"max_timer": "Durée de jeu (minutes)",
"mins_placeholder": "Mins",
"instant_build": "Construction instantanée",
@@ -363,6 +416,7 @@
"infinite_troops": "Troupes infinies",
"donate_troops": "Donner des troupes",
"compact_map": "Carte compacte",
"disable_alliances": "Désactiver les alliances",
"enables_title": "Activer les paramètres",
"player": "Joueur",
"players": "Joueurs",
@@ -379,7 +433,15 @@
"teams_Duos": "Duos (équipes de 2)",
"teams_Trios": "Trios (équipes de 3)",
"teams_Quads": "Quatuors (équipes de 4)",
"teams_Humans Vs Nations": "Humains vs Nations"
"teams_Humans Vs Nations": "Humains vs Nations",
"crowded": "Variante de Foule",
"hard_nations": "Nations difficiles",
"gold_multiplier": "Multiplicateur d'or",
"gold_multiplier_placeholder": "2.0x",
"starting_gold": "Or de départ (En millions)",
"starting_gold_placeholder": "5",
"leave_confirmation": "Es-tu sûr.e de vouloir quitter le salon ?",
"team_type": "Type d'équipe"
},
"team_colors": {
"red": "Rouge",
@@ -389,7 +451,9 @@
"yellow": "Jaune",
"orange": "Orange",
"green": "Vert",
"bot": "Bot"
"bot": "Tribus",
"humans": "Humains",
"nations": "Nations"
},
"game_starting_modal": {
"title": "La partie est en train de commencer...",
@@ -407,14 +471,29 @@
"ffa": "Chacun pour soi",
"teams": "Équipes"
},
"mode_selector": {
"teams_title": "Équipes",
"teams_count": "{teamCount} équipes",
"teams_of": " {teamCount} équipes de {playersPerTeam}",
"ranked_title": "Classés",
"ranked_1v1_title": "1v1",
"ranked_2v2_title": "2v2",
"coming_soon": "À venir"
},
"public_game_modifier": {
"random_spawn": "Spawn aléatoire",
"compact_map": "Carte compacte"
"random_spawn": "Apparition aléatoire",
"compact_map": "Carte compacte",
"crowded": "Foule",
"hard_nations": "Nations difficiles",
"starting_gold": "{amount}M Or de départ",
"gold_multiplier": "x{amount} Multiplicateur d'Or",
"disable_alliances": "Alliances désactivées"
},
"select_lang": {
"title": "Sélectionner une langue"
},
"unit_type": {
"boat": "Bateau",
"city": "Ville",
"defense_post": "Poste de défense",
"port": "Port",
@@ -454,6 +533,8 @@
"attack_ratio_desc": "Quel pourcentage de vos troupes envoyer dans une attaque (1100%)",
"territory_patterns_label": "🏳️ Skins de territoire",
"territory_patterns_desc": "Choisissez d'afficher ou non les designs des skins de territoire dans le jeu",
"coordinate_grid_label": "Grille de coordonnées",
"coordinate_grid_desc": "Activer/désactiver l'affichage de la grille de coordonnées",
"performance_overlay_label": "Surcouche de performances",
"performance_overlay_desc": "Activer/désactiver la surcouche de performances. Lorsqu'elle est activée, la surcouche de performances sera affichée. Appuyez sur Maj+D pendant le jeu pour l\"activer.",
"easter_writing_speed_label": "Multiplicateur de vitesse d'écriture",
@@ -484,17 +565,19 @@
"build_hydrogen_bomb": "Envoyer une bombe à hydrogène",
"build_hydrogen_bomb_desc": "Envoyer une bombe à hydrogène sous votre curseur.",
"build_mirv": "Construire un MIRV",
"build_mirv_desc": "Construire un MIRV sous votre curseur.",
"build_mirv_desc": "Envoyer une MIRV sous votre curseur.",
"menu_shortcuts": "Menu des raccourcis ",
"build_menu_modifier": "Menu de modification des constructions",
"build_menu_modifier_desc": "Maintenez cette touche enfoncée en cliquant pour ouvrir le menu de construction.",
"emoji_menu_modifier": "Menu de modifications des émojis",
"emoji_menu_modifier_desc": "Maintenez cette touche enfoncée en cliquant pour ouvrir le menu des emojis.",
"emoji_menu_modifier_desc": "Maintenez cette touche enfoncée en cliquant pour ouvrir le menu des émojis.",
"attack_ratio_controls": "Contrôles du ratio d'attaque",
"attack_ratio_up": "Augmenter le ratio d'attaque",
"attack_ratio_up_desc": "Augmenter le ratio d'attaque de 10%",
"attack_ratio_up_desc": "Augmenter le ratio d'attaque de {amount}%",
"attack_ratio_down": "Diminuer le ratio d'attaque",
"attack_ratio_down_desc": "Diminuer le ratio d'attaque de 10%",
"attack_ratio_down_desc": "Diminuer le ratio d'attaque de {amount}%",
"attack_ratio_increment_label": "Augmenter le ratio d'attaque des raccourcis clavier",
"attack_ratio_increment_desc": "Pourcentage de ratio d'attaque changé par chaque pression de touche.",
"attack_keybinds": "Raccourcis d'attaque",
"boat_attack": "Attaque navale",
"boat_attack_desc": "Envoyer une attaque navale à la tuile sous votre curseur.",
@@ -559,7 +642,7 @@
},
"attack": {
"attack": "Attaque [P1] !",
"mirv": "Lance un MIRV sur [P1] !",
"mirv": "Lance une MIRV sur [P1] !",
"focus": "Concentre l'attaque sur [P1] !",
"finish": "Finissons [P1] !",
"build_warships": "Construis des vaisseaux de guerre !"
@@ -614,7 +697,8 @@
"mirv_ready": "[P1] a assez d'or pour lancer un MIRV !",
"snowballing": "[P1] grandit beaucoup trop vite !",
"cheating": "[P1] triche !",
"stop_trading": "Arrête le commerce avec [P1] !"
"stop_trading": "Arrête le commerce avec [P1] !",
"stop_trading_all": "S'il te plaît, arrête de commercer avec tout le monde !"
}
},
"build_menu": {
@@ -624,7 +708,7 @@
"mirv": "Énorme explosion, cible uniquement le joueur sélectionné",
"missile_silo": "Utilisé pour lancer des bombes nucléaires",
"sam_launcher": "Protège contre les bombes nucléaires",
"warship": "Capture les navires commerciaux, détruit les navires de guerre et les bateaux",
"warship": "Capture les navires commerciaux, détruit les navires de guerre et les bateaux de transport",
"port": "Envoie des navires commerciaux pour produire de l'or",
"defense_post": "Augmente les défenses des frontières proches",
"city": "Augmente la population maximale",
@@ -635,7 +719,7 @@
"win_modal": {
"support_openfront": "Soutenir OpenFront!",
"territory_pattern": "Achetez une décoration de territoire pour retirer les publicités !",
"died": "Vous êtes mort",
"died": "Vous êtes mort·e.",
"your_team": "Votre équipe a gagné !",
"other_team": "L'équipe {team} a gagné !",
"you_won": "Vous avez gagné !",
@@ -644,19 +728,15 @@
"exit": "Quitter la partie",
"keep": "Continuer à jouer",
"spectate": "Regarder",
"requeue": "Rejouer",
"wishlist": "Liste de souhaits sur Steam !",
"ofm_winter": "Tournoi d'Hiver OpenFront Masters !",
"ofm_winter_description": "Rejoignez le tournoi et affrontez les meilleurs joueurs",
"join_tournament": "Rejoindre le tournoi",
"join_discord": "Rejoignez notre communauté Discord !",
"discord_description": "Parlez avec des joueurs, découvrez de nouvelles fonctionnalités et gagnez des prix !",
"join_server": "Rejoindre le Serveur",
"youtube_tutorial": "Besoin d'aide ?"
},
"leaderboard": {
"title": "Classement",
"hide": "Masquer",
"rank": "Rang",
"player": "Joueur",
"team": "Équipe",
"owned": "Possédé",
@@ -669,36 +749,14 @@
"show_control": "Afficher les commandes",
"show_units": "Afficher les unités"
},
"player_info_overlay": {
"type": "Type",
"bot": "Bot",
"nation": "Nation",
"player": "Joueur",
"team": "Équipe",
"alliance_timeout": "L'alliance se termine dans",
"troops": "Troupes",
"maxtroops": "Troupes max",
"a_troops": "Troupes en attaque",
"gold": "Or",
"ports": "Ports",
"cities": "Villes",
"factories": "Usines",
"missile_launchers": "Lance-missiles",
"sams": "SAMs",
"warships": "Navires de guerre",
"health": "Santé",
"attitude": "Attitude",
"levels": "Niveaux",
"wilderness_title": "Étendues sauvages",
"irradiated_wilderness_title": "Terre irradiée"
},
"events_display": {
"events": "Événements",
"retreating": "en retraite",
"retaliate": "Riposte",
"boat": "Bateau",
"alliance_request_status": "{name} {status} votre demande d'alliance",
"alliance_accepted": "a accepté",
"alliance_rejected": "a refusé",
"alliance_nukes_destroyed_outgoing": "{count, plural, one {# bombe nucléaire lancée vers {name} a été interceptée par ses alliés} other {# bombes nucléaires lancées vers {name} ont été interceptées par ses alliés}}",
"alliance_nukes_destroyed_incoming": "{count, plural, one {# bombe nucléaire lancée par {name} a été interceptée par un allié} other {# bombes nucléaires lancées par {name} ont été interceptées par un allié}}",
"duration_second": "1 seconde",
"betrayal_description": "Vous avez rompu votre alliance avec {name}, ce qui fait de vous un TRAÎTRE (affaiblissement de défense de {malusPercent}% pendant {durationText})",
"duration_seconds_plural": "{seconds} secondes",
@@ -720,6 +778,8 @@
"attack_cancelled_retreat": "Attaque annulée, {troops} soldats ont été tués pendant la retraite",
"received_gold_from_captured_ship": "{gold} ors reçu pour la capture d'un navire de {name}",
"received_gold_from_trade": "{gold} ors reçu pour le commerce avec {name}",
"received_gold_from_conquest": "{name} éliminé, {gold} d'or reçu",
"conquered_no_gold": "Élimination de {name} (n'a pas joué, pas d'or reçu)",
"missile_intercepted": "Le missile a intercepté {unit}",
"mirv_warheads_intercepted": "{count, plural, one {{count} ogive nucléaire MIRV a été interceptée} other {{count} ogives nucléaire MIRV ont été interceptées}}",
"sent_troops_to_player": "Vous avez envoyé {troops} troupes à {name}",
@@ -731,19 +791,10 @@
"unit_destroyed": "Votre {unit} a été détruit",
"no_boats_available": "Aucun bateau disponible, max {max}"
},
"unit_info_modal": {
"structure_info": "Infos sur la structure",
"unit_type_unknown": "Inconnu",
"close": "Fermer",
"cooldown": "Rechargement",
"type": "Type",
"upgrade": "Mettre à niveau",
"level": "Niveau"
},
"player_type": {
"player": "Joueur",
"nation": "Nation",
"bot": "Robot"
"bot": "Tribu"
},
"relation": {
"hostile": "Hostile",
@@ -752,11 +803,6 @@
"friendly": "Amical",
"default": "Défaut"
},
"control_panel": {
"gold": "Or",
"troops": "Troupes",
"attack_ratio": "Ratio d'attaque"
},
"player_panel": {
"gold": "Or",
"troops": "Troupes",
@@ -766,31 +812,34 @@
"active": "Actif",
"stopped": "Arrêté",
"alliance_time_remaining": "L'alliance expire dans",
"embargo": "A cessé le commerce avec vous",
"nuke": "Bombes nucléaires qu'ils vous envoient",
"start_trade": "Commencer le commerce",
"stop_trade": "Arrêter le commerce",
"stop_trade_all": "Arrêter le commerce avec tout le monde",
"start_trade_all": "Commencer le commerce avec tout le monde",
"alliances": "Alliances",
"flag": "Drapeau",
"chat": "Chat",
"target": "Cible",
"break_alliance": "Briser l'alliance",
"alliance": "Alliance",
"send_alliance": "Envoyer une alliance",
"send_troops": "Envoyer des troupes",
"send_gold": "Envoyer de l'or",
"emotes": "Émojis",
"moderation": "Modération",
"kick": "Expulser le joueur",
"kicked": "Déjà expulsé",
"kick_confirm": "Expulser {name} ?\n\nIl ne pourra plus rejoindre cette partie.",
"arc_up": "Arc vers le haut",
"arc_down": "Arc vers le bas",
"flip_rocket_trajectory": "Inverser la trajectoire de la fusée"
},
"kick_reason": {
"duplicate_session": "Expulsé de la partie (vous jouiez peut-être dans un autre onglet)",
"lobby_creator": "Expulsé par le créateur du lobby"
},
"send_troops_modal": {
"title_with_name": "Envoyer des troupes à {name}",
"available_tooltip": "Vos troupes actuellement disponibles",
"min_keep": "Garder au minimum",
"slider_tooltip": "{percent}% • {amount}",
"slider_tooltip": "{percent} % • {amount}",
"aria_slider": "Curseur de troupes",
"capacity_note": "Le destinataire ne peut accepter que {amount} pour le moment."
},
@@ -798,7 +847,7 @@
"title_with_name": "Envoyer de l'or à {name}",
"available_tooltip": "Votre or disponible",
"aria_slider": "Curseur de quantité",
"slider_tooltip": "{percent}% • {amount}"
"slider_tooltip": "{percent} % • {amount}"
},
"replay_panel": {
"replay_speed": "Vitesse de relecture",
@@ -827,47 +876,46 @@
"fps": "IPS :",
"avg_60s": "Moy. (60s):",
"frame": "Image :",
"tps": "TPS :",
"tps_avg_60s": "Moy :",
"tick_exec": "Exec. de ticks :",
"max_label": "Max : ",
"tick_delay": "Délai des ticks :",
"layers_header": "Couches (moyenne / max, triées par durée totale) :"
"layers_header": "Calques de Rendu",
"render_layers_table_header": "moy / max | tick moy",
"render_layers_summary": "Dernier tick : {frames} images, {ms}ms",
"tick_layers_header": "Calques de ticks",
"tick_layers_table_header": "moy / max",
"tick_layers_summary": "Dernier tick : calques {count}, {ms}ms",
"expand": "S'étendre",
"collapse": "Effondrement"
},
"heads_up_message": {
"choose_spawn": "Choisissez un emplacement de départ",
"random_spawn": "Le spawn aléatoire est activé. Sélection de l'emplacement de départ pour vous...",
"singleplayer_game_paused": "Jeu en pause",
"multiplayer_game_paused": "Jeu mis en pause par le créateur du salon"
"multiplayer_game_paused": "Jeu mis en pause par le créateur du salon",
"pvp_immunity_active": "Immunité des joueurs active pour {seconds}s",
"catching_up": "Rattrapage..."
},
"territory_patterns": {
"title": "Skins",
"colors": "Couleurs",
"purchase": "Acheter",
"show_only_owned": "Mes skins",
"all_owned": "Vous possédez déjà tous les motifs ! Revenez plus tard pour de nouveau.",
"not_logged_in": "Non connecté",
"blocked": {
"login": "Vous devez être connecté pour accéder à ce skin.",
"purchase": "Achetez ce skin pour le débloquer."
},
"pattern": {
"default": "Par défaut"
},
"select_skin": "Sélectionnez le motif",
"selected": "sélectionné"
"selected": "sélectionné",
"colors": "Couleurs",
"show_only_owned": "Mes skins",
"all_owned": "Vous possédez déjà tous les motifs ! Revenez plus tard pour de nouveaux.",
"not_logged_in": "Non connecté"
},
"flag_input": {
"title": "Sélectionner un drapeau",
"button_title": "Choisissez un drapeau !",
"search_flag": "Recherche..."
},
"spawn_ad": {
"loading": "Chargement de l'annonce..."
},
"auth": {
"login_required": "La connexion est nécessaire pour accéder à ce site Web.",
"redirecting": "Vous êtes en cours de redirection...",
"not_authorized": "Vous n'êtes pas autorisé à accéder à ce site web.",
"contact_admin": "Si vous pensez que vous voyez ce message par erreur, veuillez contacter l'administrateur du site."
},
"radial_menu": {
"delete_unit_title": "Supprimer une unité",
"delete_unit_description": "Cliquez pour supprimer l'unité la plus proche"
@@ -880,7 +928,7 @@
"ship_arrivals": "Arrivées de navire",
"nuke_stats": "Statistiques de bombes",
"player_metrics": "Statistiques du joueur",
"building": "Batîment",
"building": "Bâtiment",
"ship_type": "Type de navire",
"weapon": "Arme",
"built": "Construit",
@@ -921,12 +969,9 @@
"recent_games": "Parties récentes",
"game_id": "ID de la partie",
"mode": "Mode",
"mode_ffa": "Chacun pour soi",
"mode_team": "Équipe",
"replay": "Revoir",
"details": "Détails",
"ranking": "Classé",
"started": "Débuté",
"map": "Carte",
"difficulty": "Difficulté",
"type": "Type"
@@ -934,14 +979,12 @@
"player_stats_tree": {
"public": "Public",
"private": "Privé",
"singleplayer": "Solo",
"solo": "Solo",
"mode": "Mode",
"stats_wins": "Victoires",
"stats_losses": "Défaites",
"stats_wlr": "Ratio Victoires:Défaites",
"stats_games_played": "Parties jouées",
"mode_ffa": "Chacun pour soi",
"mode_team": "En équipe",
"no_stats": "Aucune statistique enregistrée pour cette sélection."
},
"matchmaking_button": {
+7 -7
View File
@@ -402,7 +402,6 @@
"title": "Buat Lobi Tertutup",
"mode": "Mode",
"team_count": "Jumlah Tim",
"team_type": "Tipe Tim",
"options_title": "Pilihan",
"bots": "Suku-suku: ",
"bots_disabled": "Nonaktif",
@@ -441,7 +440,8 @@
"gold_multiplier_placeholder": "2.0x",
"starting_gold": "Emas Awal (Juta)",
"starting_gold_placeholder": "5",
"leave_confirmation": "Apakah Anda yakin ingin meninggalkan lobi?"
"leave_confirmation": "Apakah Anda yakin ingin meninggalkan lobi?",
"team_type": "Tipe Tim"
},
"team_colors": {
"red": "Merah",
@@ -900,16 +900,16 @@
},
"territory_patterns": {
"title": "Tampilan",
"colors": "Warna-Warna",
"purchase": "Beli",
"show_only_owned": "Skin Saya",
"all_owned": "Semua skin sudah dimiliki! Silakan periksa kembali nanti untuk item baru.",
"not_logged_in": "Belum masuk",
"pattern": {
"default": "Default"
},
"select_skin": "Pilih Skin",
"selected": "dipilih"
"selected": "dipilih",
"colors": "Warna-Warna",
"show_only_owned": "Skin Saya",
"all_owned": "Semua skin sudah dimiliki! Silakan periksa kembali nanti untuk item baru.",
"not_logged_in": "Belum masuk"
},
"flag_input": {
"title": "Pilih Bendera",
+7 -7
View File
@@ -402,7 +402,6 @@
"title": "Создание приватного лобби",
"mode": "Режим",
"team_count": "Количество команд",
"team_type": "Тип команды",
"options_title": "Настройки",
"bots": "Племена: ",
"bots_disabled": "Отключены",
@@ -441,7 +440,8 @@
"gold_multiplier_placeholder": "2.0x",
"starting_gold": "Начальное золото (миллионы)",
"starting_gold_placeholder": "5",
"leave_confirmation": "Вы уверены, что хотите покинуть лобби?"
"leave_confirmation": "Вы уверены, что хотите покинуть лобби?",
"team_type": "Тип команды"
},
"team_colors": {
"red": "Красный",
@@ -900,16 +900,16 @@
},
"territory_patterns": {
"title": "Скины",
"colors": "Цвета",
"purchase": "Купить",
"show_only_owned": "Мои скины",
"all_owned": "Все скины куплены! Возвращайтесь позже за новыми товарами.",
"not_logged_in": "Вы не авторизованы",
"pattern": {
"default": "По умолчанию"
},
"select_skin": "Выберете скин",
"selected": "выбрано"
"selected": "выбрано",
"colors": "Цвета",
"show_only_owned": "Мои скины",
"all_owned": "Все скины куплены! Возвращайтесь позже за новыми товарами.",
"not_logged_in": "Вы не авторизованы"
},
"flag_input": {
"title": "Выберите флаг",
+7 -7
View File
@@ -402,7 +402,6 @@
"title": "Створення приватного лобі",
"mode": "Режим",
"team_count": "Кількість команд",
"team_type": "Тип команди",
"options_title": "Налаштування",
"bots": "Племена: ",
"bots_disabled": "Відключені",
@@ -441,7 +440,8 @@
"gold_multiplier_placeholder": "2.0х",
"starting_gold": "Початкове золото (мільйони)",
"starting_gold_placeholder": "5",
"leave_confirmation": "Ви впевнені, що хочете вийти з лобі?"
"leave_confirmation": "Ви впевнені, що хочете вийти з лобі?",
"team_type": "Тип команди"
},
"team_colors": {
"red": "Червоний",
@@ -900,16 +900,16 @@
},
"territory_patterns": {
"title": "Скіни",
"colors": "Кольори",
"purchase": "Придбати",
"show_only_owned": "Мої скіни",
"all_owned": "Усі скіни придбані! Повертайтеся пізніше за новими товарами.",
"not_logged_in": "Вхід не здійснено",
"pattern": {
"default": "Типово"
},
"select_skin": "Оберіть скін",
"selected": "обрано"
"selected": "обрано",
"colors": "Кольори",
"show_only_owned": "Мої скіни",
"all_owned": "Усі скіни придбані! Повертайтеся пізніше за новими товарами.",
"not_logged_in": "Вхід не здійснено"
},
"flag_input": {
"title": "Вибір прапора",
+80 -45
View File
@@ -23,7 +23,8 @@
"none": "空",
"copied": "已复制!",
"click_to_copy": "点击复制",
"enabled": "已启用"
"enabled": "已启用",
"map_default": "地图默认值"
},
"main": {
"title": "OpenFront (内测版)",
@@ -42,7 +43,6 @@
"play": "游戏",
"news": "公告",
"store": "商店",
"store_new_badge": "新的",
"settings": "设置",
"leaderboard": "排行榜",
"account": "账号",
@@ -89,7 +89,10 @@
"hotkeys": "快捷键",
"table_key": "键",
"table_action": "动作",
"action_esc": "关闭菜单。取消单位建造预览。",
"action_enter": "在光标下建造单位",
"action_alt_view": "备选视图 (地形/国家)",
"action_coordinate_grid": "切换坐标网格叠层",
"action_attack_altclick": "攻击 (当左键单击被设置为打开菜单时)",
"action_build": "打开建造菜单",
"action_emote": "打开表情菜单",
@@ -115,7 +118,7 @@
"ui_options": "选项",
"ui_options_desc": "内含以下内容:",
"ui_playeroverlay": "玩家信息叠层",
"ui_playeroverlay_desc": "当鼠标悬停在一个国家上时,玩家信息叠层将显示在“选项”下方。它将显示该玩家的类型,包括真人玩家、国家(智能AI)或机器人;还会显示该国对你的态度 (从敌对到友好);该国防守军队数量,黄金,军舰及各种建筑物的数量。",
"ui_playeroverlay_desc": "当鼠标悬停在一个国家上时,玩家信息叠层将显示在“选项”下方。它将显示该玩家的类型,包括真人玩家、国家(智能AI)或部落;还会显示该国对你的态度 (从敌对到友好);显示该国防守军队数量,黄金,军舰及各种建筑物的数量。",
"ui_wilderness": "荒野",
"option_pause": "暂停/继续游戏 - 仅在单人模式下有效。",
"option_timer": "计时器 - 自游戏开始以来经过的时长。",
@@ -137,7 +140,7 @@
"info_trade": "点击“停止交易”将停止与该玩家的商船贸易互惠。如果再次点击“开始交易”可重启贸易关系。",
"info_ally_panel": "盟友信息面板",
"info_ally_desc": "当你与其他玩家结盟时,下列新图标将可用:",
"ally_betray": "背叛你的盟友,终联盟,停止贸易,并削弱你的防御。与其的交易将暂停5分钟 (或直到你们再次结盟),且其他人也可能与您停止交易。你将被标记为背叛者30秒,但其他背叛者玩家看不到该标记。在此期间,一个图将显示在你的名字,且你将获得50%的防御减益效果。机器人将更不愿与你结盟,其他玩家与你结盟时也将再三考虑。",
"ally_betray": "背叛你的盟友,终联盟,停止贸易,并削弱你的防御。与其的交易将暂停5分钟 (或直到你们再次结盟),且其他人也可能与您停止交易。除非对方玩家本身就是背叛者,否则你将被标记为背叛者30秒。在此期间,一个图将显示在你的名字上方,且你将获得50%的防御减益效果。部落将更不愿与你结盟,其他玩家与你结盟时也将再三考虑。",
"ally_donate": "捐赠一些军队给盟友。用于当他们军队不足且被攻击时,或者他们需要额外的力量来击垮敌人时。",
"ally_donate_gold": "捐赠一些金钱给盟友。用于当他们没钱且需要建造建筑时,或者你的队友正在攒钱造MIRV时。",
"build_menu_title": "建造菜单",
@@ -184,13 +187,15 @@
"toggle_achievements": "切换成就",
"sign_in_for_achievements": "登录以获取成就",
"options_title": "选项",
"bots": "机器人: ",
"bots": "部落:",
"bots_disabled": "已禁用",
"disable_nations": "禁用国家",
"nations": "国家",
"nations_disabled": "已禁用",
"instant_build": "立即建造",
"infinite_gold": "无限黄金",
"infinite_troops": "无限军队",
"compact_map": "紧凑地图",
"disable_alliances": "禁用结盟",
"max_timer": "游戏时长(分钟)",
"max_timer_placeholder": "分钟",
"max_timer_invalid": "请输入一个有效的最大计时器值(1-120分钟)",
@@ -199,8 +204,8 @@
"options_changed_no_achievements": "自定义设置 - 成就已禁用",
"gold_multiplier": "黄金乘数",
"gold_multiplier_placeholder": "2.0x",
"starting_gold": "开局黄金",
"starting_gold_placeholder": "5000000"
"starting_gold": "初始黄金(M",
"starting_gold_placeholder": "5"
},
"token_login_modal": {
"title": "正在登录……",
@@ -264,7 +269,7 @@
"conquest_gold": "已抢夺黄金",
"stolen_gold": "被军舰偷走",
"num_of_conquests_humans": "玩家击杀数",
"num_of_conquests_bots": "机器人击杀数",
"num_of_conquests_bots": "部落击杀数",
"duration": "时长",
"survival_time": "存活时长",
"war": "战争",
@@ -320,6 +325,7 @@
"svalmel": "斯瓦尔梅尔",
"manicouagan": "马尼夸根陨石坑",
"lemnos": "利姆诺斯岛",
"passage": "海上航线",
"sierpinski": "谢尔宾斯基分形",
"thebox": "沙盒",
"twolakes": "双湖",
@@ -328,8 +334,15 @@
"didier": "迪迪埃",
"didierfrance": "迪迪埃(法国)",
"amazonriver": "亚马逊河",
"bosphorusstraits": "博斯普鲁斯海峡",
"beringstrait": "白令海峡",
"tradersdream": "商人之梦",
"hawaii": "夏威夷"
"hawaii": "夏威夷",
"alps": "阿尔卑斯山",
"niledelta": "尼罗河三角洲",
"arctic": "北极地区",
"sanfrancisco": "旧金山",
"aegean": "爱琴海"
},
"map_categories": {
"featured": "精选",
@@ -355,14 +368,10 @@
},
"public_lobby": {
"title": "正在等待游戏开始……",
"join": "加入下一场游戏",
"teams_Duos": "{team_count} 个 2 人小队",
"teams_Trios": "{team_count} 个 3 人小队",
"teams_Quads": "{team_count} 个 4 人小队",
"waiting_for_players": "正在等待玩家",
"connecting": "正在连接到房间……",
"starting_in": "在 {time} 后开始",
"starting_game": "正在启动游戏……",
"starting_game": "正在开始……",
"teams_hvn": "人类 VS 国家",
"teams_hvn_detailed": "{num} 个人类 VS {num} 个国家",
"teams": "{num} 个队伍",
@@ -376,7 +385,8 @@
"connecting": "正在连接到匹配服务器……",
"searching": "正在搜索游戏……",
"waiting_for_game": "正在等待游戏开始……",
"elo": "你的 ELO 分:{elo}"
"elo": "你的 ELO 分:{elo}",
"no_elo": "暂无ELO"
},
"username": {
"enter_username": "输入用户名",
@@ -390,15 +400,14 @@
},
"host_modal": {
"title": "创建私人房间",
"label": "私有",
"mode": "模式",
"team_count": "队伍数量",
"team_type": "队伍类型",
"options_title": "选项",
"bots": "机器人: ",
"bots": "部落:",
"bots_disabled": "禁用",
"nations": "国家:",
"nations_disabled": "已禁用",
"player_immunity_duration": "PVP 豁免期限(分钟)",
"disable_nations": "禁用国家",
"max_timer": "游戏时长(分钟)",
"mins_placeholder": "分钟",
"instant_build": "立即建造",
@@ -407,6 +416,7 @@
"infinite_troops": "无限军队",
"donate_troops": "捐赠军队",
"compact_map": "紧凑地图",
"disable_alliances": "禁用结盟",
"enables_title": "启用设置",
"player": "玩家",
"players": "玩家",
@@ -424,8 +434,14 @@
"teams_Trios": "3人小队",
"teams_Quads": "4人小队",
"teams_Humans Vs Nations": "人类 VS 国家",
"starting_gold": "开局黄金",
"crowded": "密度修改器"
"crowded": "密度修改器",
"hard_nations": "困难的国家",
"gold_multiplier": "黄金乘数",
"gold_multiplier_placeholder": "2.0x",
"starting_gold": "初始黄金(M",
"starting_gold_placeholder": "5",
"leave_confirmation": "确定要离开房间吗?",
"team_type": "队伍类型"
},
"team_colors": {
"red": "红色",
@@ -435,7 +451,9 @@
"yellow": "黄色",
"orange": "橙色",
"green": "绿色",
"bot": "机器人"
"bot": "部落",
"humans": "人类",
"nations": "国家"
},
"game_starting_modal": {
"title": "游戏正在启动...",
@@ -453,16 +471,29 @@
"ffa": "混战",
"teams": "团队"
},
"mode_selector": {
"teams_title": "队伍",
"teams_count": "{teamCount} 个队伍",
"teams_of": "{teamCount} 个队伍,每队 {playersPerTeam} 人",
"ranked_title": "排位赛",
"ranked_1v1_title": "1v1",
"ranked_2v2_title": "2v2",
"coming_soon": "即将推出"
},
"public_game_modifier": {
"random_spawn": "随机出生点",
"compact_map": "紧凑地图",
"crowded": "密度",
"starting_gold": "开局黄金 5M"
"hard_nations": "困难的国家",
"starting_gold": "{amount}M 初始黄金",
"gold_multiplier": "x{amount} 黄金乘数",
"disable_alliances": "结盟已禁用"
},
"select_lang": {
"title": "选择语言"
},
"unit_type": {
"boat": "船",
"city": "城市",
"defense_post": "要塞",
"port": "港口",
@@ -502,6 +533,8 @@
"attack_ratio_desc": "你要派出多少比例的军队进攻 (1100%)",
"territory_patterns_label": "🏳️ 领土皮肤",
"territory_patterns_desc": "选择是否在游戏中显示领土皮肤",
"coordinate_grid_label": "坐标网格",
"coordinate_grid_desc": "切换字母数字网格叠层",
"performance_overlay_label": "性能叠层",
"performance_overlay_desc": "切换性能叠层。启用后将显示性能叠层。在游戏过程中按下 Shift+D 可进行切换。",
"easter_writing_speed_label": "写入速度乘数",
@@ -540,9 +573,11 @@
"emoji_menu_modifier_desc": "按住此键并点击以打开 Emoji 表情菜单。",
"attack_ratio_controls": "攻击比例控制",
"attack_ratio_up": "增加攻击比例",
"attack_ratio_up_desc": "增加 10% 攻击比例",
"attack_ratio_up_desc": "增加 {amount}% 攻击比例",
"attack_ratio_down": "降低攻击比例",
"attack_ratio_down_desc": "降低 10% 攻击比例",
"attack_ratio_down_desc": "降低 {amount}% 攻击比例",
"attack_ratio_increment_label": "攻击比例调整快捷键单次增减量",
"attack_ratio_increment_desc": "每次按下攻击比例增减快捷键时的变化值。",
"attack_keybinds": "攻击快捷键",
"boat_attack": "船只攻击",
"boat_attack_desc": "向鼠标所指地块发送船只攻击。",
@@ -662,7 +697,8 @@
"mirv_ready": "[P1] 有足够的金钱来发射 MIRV",
"snowballing": "[P1] 滚雪球滚得太快了!",
"cheating": "[P1] 正在作弊!",
"stop_trading": "别跟 [P1] 交易!"
"stop_trading": "别跟 [P1] 交易!",
"stop_trading_all": "请停止与所有人交易!"
}
},
"build_menu": {
@@ -758,7 +794,7 @@
"player_type": {
"player": "玩家",
"nation": "国家",
"bot": "机器人"
"bot": "部落"
},
"relation": {
"hostile": "敌对",
@@ -840,9 +876,19 @@
"fps": "FPS",
"avg_60s": "平均值(60秒)",
"frame": "帧:",
"tps": "TPS",
"tps_avg_60s": "平均:",
"tick_exec": "Tick 执行:",
"max_label": "最大:",
"tick_delay": "Tick 延迟:",
"layers_header": "图层(平均值 / 最大值,按总时间排序):"
"layers_header": "渲染层",
"render_layers_table_header": "平均 / 最大 | tick 平均",
"render_layers_summary": "最后一个 tick{frames} 帧,{ms}ms",
"tick_layers_header": "Tick 层",
"tick_layers_table_header": "平均 / 最大",
"tick_layers_summary": "最后一个 tick{count} 层,{ms}ms",
"expand": "扩展",
"collapse": "收起"
},
"heads_up_message": {
"choose_spawn": "选择出生点",
@@ -854,23 +900,16 @@
},
"territory_patterns": {
"title": "皮肤",
"colors": "颜色",
"purchase": "购买",
"show_only_owned": "我的皮肤",
"all_owned": "您已拥有所有皮肤!请稍后再来查看新皮肤。",
"not_logged_in": "未登录",
"pattern": {
"default": "默认"
},
"try_me": "试试我!",
"trial_remaining": "剩余",
"trial_granted": "皮肤试用获得了批准!",
"trial_cooldown": "每24小时只能试用一次。请稍后再试。",
"trial_login_required": "必须登录才能试用皮肤",
"reward_countdown": "在 {seconds} 秒内获得奖励……",
"steam_wishlist_prompt": "请将 OpenFront 添加到 Steam 愿望单来支持我们",
"select_skin": "选择皮肤",
"selected": "已选择"
"selected": "已选择",
"colors": "颜色",
"show_only_owned": "我的皮肤",
"all_owned": "您已拥有所有皮肤!请稍后再来查看新皮肤。",
"not_logged_in": "未登录"
},
"flag_input": {
"title": "选择旗帜",
@@ -930,8 +969,6 @@
"recent_games": "近期对局",
"game_id": "游戏 ID",
"mode": "模式",
"mode_ffa": "混战",
"mode_team": "团队",
"replay": "回放",
"details": "详情",
"ranking": "排行",
@@ -948,8 +985,6 @@
"stats_losses": "败场数",
"stats_wlr": "胜败比",
"stats_games_played": "游戏场数",
"mode_ffa": "混战",
"mode_team": "团队",
"no_stats": "所选项没有统计记录。"
},
"matchmaking_button": {
+70
View File
@@ -0,0 +1,70 @@
{
"map": {
"height": 2000,
"num_land_tiles": 1292228,
"width": 2000
},
"map16x": {
"height": 500,
"num_land_tiles": 79013,
"width": 500
},
"map4x": {
"height": 1000,
"num_land_tiles": 320576,
"width": 1000
},
"name": "antarctica",
"nations": [
{
"coordinates": [1159, 1261],
"flag": "nz",
"name": "New Zealand Claim"
},
{
"coordinates": [1409, 1571],
"flag": "tf",
"name": "French Claim"
},
{
"coordinates": [1681, 1093],
"flag": "hm",
"name": "Australian Claim"
},
{
"coordinates": [1260, 510],
"flag": "bv",
"name": "Norway Claim"
},
{
"coordinates": [900, 686],
"flag": "gb",
"name": "United Kingdom Claim"
},
{
"coordinates": [351, 703],
"flag": "ar",
"name": "Argentina Claim"
},
{
"coordinates": [506, 939],
"flag": "cl",
"name": "Chile Claim"
},
{
"coordinates": [705, 1264],
"flag": "aq",
"name": "Marie Byrd Land"
},
{
"coordinates": [1532, 716],
"flag": "aq",
"name": "Penguins"
},
{
"coordinates": [1100, 954],
"flag": "Cthulhu Republic",
"name": "Ancient Aliens"
}
]
}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

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