First stab at a cowboy themed design.

main
Zed A. Shaw 1 year ago
parent 382bb8253b
commit 4f43741e07
  1. 96
      client/pages/Landing.svelte
  2. 65
      rendered/Header.svelte
  3. 96
      rendered/pages/index.svelte
  4. 1533
      static/images/bandolier.svg
  5. 414
      static/images/colt.svg
  6. 366
      static/images/cowboyhat.svg
  7. 1
      static/images/hero-bg.svg

@ -3,16 +3,16 @@
import IconImage from '$/client/components/IconImage.svelte';
const features = [
{title: "Video", icon: "video", description: "This is some video.", url: "/client/#/bando/components/video/" },
{title: "WebTorrent", icon: "tornado", description: "This is some video.", url: "/client/#/bando/components/WTVideo/" },
{title: "HLS Streaming Video", icon: "cast", description: "This is some video.", url: "/client/#/bando/components/HLSVideo/" },
{title: "Payments", icon: "dollar-sign", description: "This is some video.", url: "/client/#/bando/components/" },
{title: "Authentication", icon: "log-in", description: "This is some video.", url: "/client/#/bando/components/LogIn/" },
{title: "JSON APIs", icon: "curly-braces", description: "This is some video.", url: "/client/#/docs/lib/api.js" },
{title: "Database ORMs", icon: "database", description: "This is some video.", url: "/client/#/bando/components/DataTable/" },
{title: "UI Components", icon: "layout", description: "This is some video.", url: "/client/#/bando/components/" },
{title: "Admin Dashboard", icon: "keyboard", description: "This is some video.", url: "/admin/#/" },
{title: "Email", icon: "mail", description: "This is some video.", url: "/client/#/" },
{title: "Video", icon: "video", description: "Easy video playback with aspect ratios.", url: "/client/#/bando/components/video/" },
{title: "WebTorrent", icon: "tornado", description: "Sharing the load with WebTorrent.", url: "/client/#/bando/components/WTVideo/" },
{title: "HLS Streaming Video", icon: "cast", description: "Efficient streaming of video, even on platforms without HLS support.", url: "/client/#/bando/components/HLSVideo/" },
{title: "Payments", icon: "dollar-sign", description: "Fully implemented support for Paypal, Stripe, and Bitcoin.", url: "/client/#/bando/components/" },
{title: "Authentication", icon: "log-in", description: "Authentication with bcrypt secure password storage.", url: "/client/#/bando/components/LogIn/" },
{title: "JSON APIs", icon: "curly-braces", description: "Simple implementation of JSON API backends.", url: "/client/#/docs/lib/api.js" },
{title: "Database ORMs", icon: "database", description: "Database access with a simple ORM and admin control panel.", url: "/client/#/bando/components/DataTable/" },
{title: "UI Components", icon: "layout", description: "Full set of demo components to study and use.", url: "/client/#/bando/components/" },
{title: "Admin Dashboard", icon: "keyboard", description: "Simple admin dashboard for development and management.", url: "/admin/#/" },
{title: "Email", icon: "mail", description: "Email templates, sending emails, and testing your email setup.", url: "/client/#/docs/lib/email.js" },
]
</script>
@ -35,12 +35,6 @@
font-size: 0.5em;
}
#photo {
--w: 400px;
--h: 600px;
--value: 4;
}
modal {
position: fixed;
top: 0;
@ -65,7 +59,7 @@
hero {
--h: 600px;
--w: 100vw;
--fsize: 1.2em;
--fsize: min(1.2em, 2.5vw);
display: flex;
flex-direction: column;
background-image: url("/images/hero-bg.svg");
@ -110,10 +104,15 @@
}
text-photo > photo {
--w: 400px;
--w: min(400px, 50vw);
display: flex;
justify-content: stretch;
min-width: var(--w);
background-color: var(--value6);
}
text-photo > photo > img {
width: 100%;
}
.solid {
@ -121,6 +120,10 @@
color: var(--value9);
}
.solid a {
color: var(--value7);
}
text-center {
--fsize: 1.2em;
display: flex;
@ -143,8 +146,24 @@
tile > left {
width: 100px;
min-width: 100px;
max-width: 100px;
height: 100px;
min-height: 100px;
max-height: 100px;
}
tile > middle h5,
tile > middle p {
margin: 3px;
}
@media only screen and (max-width: 600px) {
feature-grid {
grid-template-columns: 1fr;
}
}
</style>
<Layout bare={ true } fullwidth={true}>
@ -156,14 +175,6 @@
<h2 class="center-text" style="font-size: 1.2em;">A project of <a href="https://learnjsthehardway.com/">Learn JavaScript the Hard Way</a></h2>
</hero>
<text-center style="background-color: var(--value6)">
<h2 class="center-self">Current Status</h2>
<p class="no-flex center-self" style="--w: 50%">The Bandolier is currently ready for testing and
about 50% of the documnetation is written. You can currently access all of the documentation, and
soon there will be a way to play with the administrator console.
</p>
</text-center>
<text-photo>
<div>
<h1>Production Capable</h1>
@ -171,14 +182,14 @@
</div>
<photo class="mobile-hide">
<IconImage name="server-cog" height="100%" width="100%" background="var(--value5)" />
<img src="/images/colt.svg">
</photo>
</text-photo>
<text-photo class="solid">
<photo class="mobile-hide">
<IconImage name="banana" height="100%" width="100%" background="var(--value3)" color="var(--value7)" />
<img src="/images/bandolier.svg">
</photo>
<div>
@ -195,10 +206,12 @@
{#each features as feature}
<tile>
<left>
<IconImage name={ feature.icon } background="var(--value4)" />
<a href={feature.url} style="width: 100%; height: 100%;">
<IconImage name={ feature.icon } background="var(--value2)" color="var(--value7)" />
</a>
</left>
<middle>
<h4><a href={ feature.url }>{ feature.title }</a></h4>
<h5><a href={ feature.url }>{ feature.title }</a></h5>
<p>{ feature.description }</p>
</middle>
</tile>
@ -215,10 +228,11 @@
<div>
<h1>Learn a Personal Process</h1>
<p>If you're just starting out it's hard to know what to do next. The Bandolier supports a <b>personal development process</b> that takes you from an initial UI to a working application in logical steps. The process is the result of watching thousands of beginners struggle with getting started, and has worked to help them start and finish their projects.</p>
<p style="font-size: 0.8em;"><a href="https://commons.wikimedia.org/wiki/User:Ealdgyth">Photo by Ealdgyth</a></p>
</div>
<photo class="mobile-hide">
<IconImage name="terminal-square" height="100%" width="100%" background="var(--value3)" color="var(--value7)" />
<img src="/images/cowboyhat.svg">
</photo>
</text-photo>
@ -242,11 +256,19 @@ npm run DANGER_ADMIN
<h2><a class="center-text" href="/client/#/quick/">Read the Full Quick Start Guide</a></h2>
</text-center>
<modal>
<callout class="warning"><span>
<h1>Get Off Ya Phone</h1>
<text-center style="background-color: var(--value6); color: var(--value0) !important;">
<h2 class="center-self">Current Status</h2>
<p class="no-flex center-self" style="--w: 50%">The Bandolier is currently ready for testing and
about 50% of the documnetation is written. You can currently access all of the documentation, and
soon there will be a way to play with the administrator console.
</p>
</text-center>
<modal>
<callout class="warning"><span>
<h1>Get Off Ya Phone</h1>
<p>This app is a work in progress so warping it to your phone isn't done yet. You can just go straight to <a href="/client/#/">the docs</a> and when you're serious go find a real computer and stop making people support your phone for reading professional documentation.</p>
</span></callout>
</modal>
<p>This app is a work in progress so warping it to your phone isn't done yet. You can just go straight to <a href="/client/#/">the docs</a> and when you're serious go find a real computer and stop making people support your phone for reading professional documentation.</p>
</span></callout>
</modal>
</Layout>

@ -1,38 +1,67 @@
<script>
import { logout_user } from '$/client/api.js';
import Icon from '$/client/components/Icon.svelte';
import Darkmode from '$/client/components/Darkmode.svelte';
import { Hydrate } from '@jamcart/7ty/components';
import {link} from 'svelte-spa-router';
import { register_enabled } from "$/client/config.js";
export let fixed = false;
</script>
<style>
img.logo {
width: 120px;
}
#logo {
font-family: fancy;
font-size: 2em;
}
header {
background-color: var(--value0);
}
header a {
color: var(--value7);
}
nav {
background-color: var(--value0);
color: var(--value7);
}
nav * {
color: var(--value7);
}
@media only screen and (max-width: 600px) {
#logo {
font-size: 1.5em;
}
}
@media only screen and (max-width: 390px) {
#logo {
font-size: 1.4em;
}
}
</style>
<header class:fixed>
<nav>
<a href="/" style="font-family: fancy; font-size: 2em;">The Bandolier</a>
<a href="/intro/" use:link id="logo">The Bandolier</a>
<ul>
{#if register_enabled}
<li>
<a id="register-button" href="/client/#/register/">
<span class="mobile">
<Icon name="dollar-sign" tooltip="Register." />
</span>
<span class="mobile-hide">
<button type="button">Register</button>
</span>
<li><a id="register-button" href="/client/#/register/">
<span class="mobile">
<Icon color="var(--value7)" name="dollar-sign" tooltip="Register."/>
</span>
<span class="mobile-hide">
<button type="button" class="inverted">Register</button>
</span>
</a>
</li>
{/if}
<li><a href="/client/#/login/"><Icon name="log-in" tooltip="Log in."/></a></li>
<li><a href="/client/#/"><Icon name="book" tooltip="Docs." /></a></li>
<li><Hydrate component={ Darkmode } /></li>
<li><a href="/login/" use:link><Icon color="var(--value7)" name="log-in" tooltip="Log in." /></a></li>
<li><a href="/client/#/"><Icon color="var(--value7)" name="book" tooltip="Docs" /></a></li>
</ul>
</nav>
</header>

@ -3,16 +3,16 @@
import IconImage from '$/client/components/IconImage.svelte';
const features = [
{title: "Video", icon: "video", description: "This is some video.", url: "/client/#/bando/components/video/" },
{title: "WebTorrent", icon: "tornado", description: "This is some video.", url: "/client/#/bando/components/WTVideo/" },
{title: "HLS Streaming Video", icon: "cast", description: "This is some video.", url: "/client/#/bando/components/HLSVideo/" },
{title: "Payments", icon: "dollar-sign", description: "This is some video.", url: "/client/#/bando/components/" },
{title: "Authentication", icon: "log-in", description: "This is some video.", url: "/client/#/bando/components/LogIn/" },
{title: "JSON APIs", icon: "curly-braces", description: "This is some video.", url: "/client/#/docs/lib/api.js" },
{title: "Database ORMs", icon: "database", description: "This is some video.", url: "/client/#/bando/components/DataTable/" },
{title: "UI Components", icon: "layout", description: "This is some video.", url: "/client/#/bando/components/" },
{title: "Admin Dashboard", icon: "keyboard", description: "This is some video.", url: "/admin/#/" },
{title: "Email", icon: "mail", description: "This is some video.", url: "/client/#/" },
{title: "Video", icon: "video", description: "Easy video playback with aspect ratios.", url: "/client/#/bando/components/video/" },
{title: "WebTorrent", icon: "tornado", description: "Sharing the load with WebTorrent.", url: "/client/#/bando/components/WTVideo/" },
{title: "HLS Streaming Video", icon: "cast", description: "Efficient streaming of video, even on platforms without HLS support.", url: "/client/#/bando/components/HLSVideo/" },
{title: "Payments", icon: "dollar-sign", description: "Fully implemented support for Paypal, Stripe, and Bitcoin.", url: "/client/#/bando/components/" },
{title: "Authentication", icon: "log-in", description: "Authentication with bcrypt secure password storage.", url: "/client/#/bando/components/LogIn/" },
{title: "JSON APIs", icon: "curly-braces", description: "Simple implementation of JSON API backends.", url: "/client/#/docs/lib/api.js" },
{title: "Database ORMs", icon: "database", description: "Database access with a simple ORM and admin control panel.", url: "/client/#/bando/components/DataTable/" },
{title: "UI Components", icon: "layout", description: "Full set of demo components to study and use.", url: "/client/#/bando/components/" },
{title: "Admin Dashboard", icon: "keyboard", description: "Simple admin dashboard for development and management.", url: "/admin/#/" },
{title: "Email", icon: "mail", description: "Email templates, sending emails, and testing your email setup.", url: "/client/#/docs/lib/email.js" },
]
</script>
@ -35,12 +35,6 @@
font-size: 0.5em;
}
#photo {
--w: 400px;
--h: 600px;
--value: 4;
}
modal {
position: fixed;
top: 0;
@ -65,7 +59,7 @@
hero {
--h: 600px;
--w: 100vw;
--fsize: 1.2em;
--fsize: min(1.2em, 2.5vw);
display: flex;
flex-direction: column;
background-image: url("/images/hero-bg.svg");
@ -110,10 +104,15 @@
}
text-photo > photo {
--w: 400px;
--w: min(400px, 50vw);
display: flex;
justify-content: stretch;
min-width: var(--w);
background-color: var(--value6);
}
text-photo > photo > img {
width: 100%;
}
.solid {
@ -121,6 +120,10 @@
color: var(--value9);
}
.solid a {
color: var(--value7);
}
text-center {
--fsize: 1.2em;
display: flex;
@ -143,8 +146,24 @@
tile > left {
width: 100px;
min-width: 100px;
max-width: 100px;
height: 100px;
min-height: 100px;
max-height: 100px;
}
tile > middle h5,
tile > middle p {
margin: 3px;
}
@media only screen and (max-width: 600px) {
feature-grid {
grid-template-columns: 1fr;
}
}
</style>
<Layout bare={ true } fullwidth={true}>
@ -156,14 +175,6 @@
<h2 class="center-text" style="font-size: 1.2em;">A project of <a href="https://learnjsthehardway.com/">Learn JavaScript the Hard Way</a></h2>
</hero>
<text-center style="background-color: var(--value6)">
<h2 class="center-self">Current Status</h2>
<p class="no-flex center-self" style="--w: 50%">The Bandolier is currently ready for testing and
about 50% of the documnetation is written. You can currently access all of the documentation, and
soon there will be a way to play with the administrator console.
</p>
</text-center>
<text-photo>
<div>
<h1>Production Capable</h1>
@ -171,14 +182,14 @@
</div>
<photo class="mobile-hide">
<IconImage name="server-cog" height="100%" width="100%" background="var(--value5)" />
<img src="/images/colt.svg">
</photo>
</text-photo>
<text-photo class="solid">
<photo class="mobile-hide">
<IconImage name="banana" height="100%" width="100%" background="var(--value3)" color="var(--value7)" />
<img src="/images/bandolier.svg">
</photo>
<div>
@ -195,10 +206,12 @@
{#each features as feature}
<tile>
<left>
<IconImage name={ feature.icon } background="var(--value4)" />
<a href={feature.url} style="width: 100%; height: 100%;">
<IconImage name={ feature.icon } background="var(--value2)" color="var(--value7)" />
</a>
</left>
<middle>
<h4><a href={ feature.url }>{ feature.title }</a></h4>
<h5><a href={ feature.url }>{ feature.title }</a></h5>
<p>{ feature.description }</p>
</middle>
</tile>
@ -215,10 +228,11 @@
<div>
<h1>Learn a Personal Process</h1>
<p>If you're just starting out it's hard to know what to do next. The Bandolier supports a <b>personal development process</b> that takes you from an initial UI to a working application in logical steps. The process is the result of watching thousands of beginners struggle with getting started, and has worked to help them start and finish their projects.</p>
<p style="font-size: 0.8em;"><a href="https://commons.wikimedia.org/wiki/User:Ealdgyth">Photo by Ealdgyth</a></p>
</div>
<photo class="mobile-hide">
<IconImage name="terminal-square" height="100%" width="100%" background="var(--value3)" color="var(--value7)" />
<img src="/images/cowboyhat.svg">
</photo>
</text-photo>
@ -242,11 +256,19 @@ npm run DANGER_ADMIN
<h2><a class="center-text" href="/client/#/quick/">Read the Full Quick Start Guide</a></h2>
</text-center>
<modal>
<callout class="warning"><span>
<h1>Get Off Ya Phone</h1>
<text-center style="background-color: var(--value6); color: var(--value0) !important;">
<h2 class="center-self">Current Status</h2>
<p class="no-flex center-self" style="--w: 50%">The Bandolier is currently ready for testing and
about 50% of the documnetation is written. You can currently access all of the documentation, and
soon there will be a way to play with the administrator console.
</p>
</text-center>
<modal>
<callout class="warning"><span>
<h1>Get Off Ya Phone</h1>
<p>This app is a work in progress so warping it to your phone isn't done yet. You can just go straight to <a href="/client/#/">the docs</a> and when you're serious go find a real computer and stop making people support your phone for reading professional documentation.</p>
</span></callout>
</modal>
<p>This app is a work in progress so warping it to your phone isn't done yet. You can just go straight to <a href="/client/#/">the docs</a> and when you're serious go find a real computer and stop making people support your phone for reading professional documentation.</p>
</span></callout>
</modal>
</Layout>

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 105 KiB

@ -0,0 +1,414 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="300.000000pt" height="459.000000pt" viewBox="0 0 300.000000 459.000000"
preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.10, written by Peter Selinger 2001-2011
</metadata>
<g transform="translate(0.000000,459.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M1821 4213 c-23 -5 -24 -7 -17 -74 6 -67 5 -69 -16 -69 -21 1 -22 2
-5 14 21 16 22 26 2 26 -9 0 -18 -7 -21 -15 -4 -8 -10 -15 -16 -15 -5 0 -6 5
-3 10 3 6 1 10 -4 10 -6 0 -11 -7 -11 -15 0 -8 7 -15 15 -15 8 0 15 -6 15 -14
0 -8 6 -17 13 -19 10 -4 10 -6 0 -6 -13 -1 -18 -52 -7 -64 6 -6 6 -389 -1
-861 -4 -233 -2 -293 9 -305 10 -12 12 -40 8 -107 l-4 -90 -34 -2 c-36 -3
-107 -39 -99 -51 6 -11 -61 -12 -89 -1 l-24 9 -1 -227 c-1 -124 0 -224 3 -221
3 2 7 75 9 161 3 86 8 161 12 167 3 6 2 11 -2 11 -5 0 -7 18 -5 40 4 37 6 40
36 40 l31 0 -2 -137 c-1 -76 -2 -166 -3 -199 0 -53 -3 -62 -20 -67 -13 -3 -20
0 -20 9 0 8 4 14 8 14 5 0 9 6 9 13 0 8 -6 14 -12 14 -7 0 -12 -5 -12 -11 1
-46 -5 -67 -20 -73 -51 -18 -86 -34 -82 -38 7 -7 83 18 91 29 4 6 10 7 14 4 3
-4 22 11 40 33 33 40 34 43 35 137 0 84 2 149 8 239 1 28 52 88 61 73 5 -7 15
-6 36 5 16 8 44 15 62 15 17 0 32 3 32 8 0 16 -19 34 -29 28 -7 -5 -11 4 -10
26 1 18 1 103 0 188 -6 498 -1 1118 9 1122 7 2 7 13 -1 36 -10 29 -9 36 6 50
10 10 15 11 11 5 -4 -7 -4 -13 1 -13 4 0 9 -71 11 -157 2 -87 5 -160 8 -162 2
-2 4 109 4 247 0 139 -1 251 -2 251 -2 -1 -14 -4 -27 -6z"/>
<path d="M1940 4203 c0 -10 -6 -25 -12 -32 -10 -11 -10 -13 0 -7 9 6 12 -36
12 -193 0 -111 0 -203 0 -206 0 -3 9 -21 20 -40 11 -19 16 -35 11 -35 -4 0
-13 10 -19 23 -8 17 -11 -13 -11 -131 -1 -104 2 -151 9 -147 6 4 8 16 4 28 -4
15 -3 19 4 12 5 -5 12 -21 16 -35 3 -14 3 -19 0 -12 -11 24 -34 -8 -34 -47 1
-36 1 -36 15 -11 10 19 10 27 2 33 -8 6 -8 7 2 5 9 -3 15 -18 15 -39 1 -27 -3
-33 -16 -31 -16 3 -18 -8 -18 -107 0 -60 4 -112 9 -115 15 -9 19 16 9 53 -7
24 -6 37 3 45 9 8 11 7 6 -6 -3 -9 0 -19 9 -22 13 -5 20 19 14 49 -1 5 -1 146
0 313 0 205 -3 301 -10 297 -5 -3 -10 -1 -10 4 0 6 5 11 10 11 6 0 10 5 10 11
0 5 -6 7 -12 3 -10 -6 -10 -4 0 7 15 17 16 43 0 33 -7 -5 -8 -3 -2 7 4 8 10
45 12 83 2 50 8 74 20 83 16 12 16 14 0 27 -12 9 -18 27 -18 55 0 22 -4 41 -9
41 -5 0 -16 3 -25 6 -11 4 -16 0 -16 -13z m34 -84 c8 -42 8 -84 -1 -75 -4 3
-7 19 -8 34 -1 15 -5 37 -9 50 -4 12 -3 22 2 22 5 0 12 -14 16 -31z m6 -109
c0 -13 -5 -18 -15 -14 -11 5 -12 9 -2 20 16 18 17 17 17 -6z m-2 -480 c-1 -16
-6 -26 -11 -23 -5 3 -7 14 -4 24 3 11 1 19 -5 19 -5 0 -6 5 -3 10 11 18 25 0
23 -30z m-4 -260 c7 -41 -8 -21 -18 25 -5 19 -4 26 2 20 5 -5 12 -26 16 -45z"/>
<path d="M1861 4188 c0 -22 1 -22 8 -3 8 19 9 18 13 -5 5 -25 5 -25 7 3 1 18
-4 27 -14 27 -9 0 -15 -9 -14 -22z"/>
<path d="M1901 4183 c1 -22 2 -23 6 -8 3 11 10 23 17 27 7 5 5 8 -6 8 -13 0
-18 -7 -17 -27z"/>
<path d="M1701 4073 c1 -10 0 -88 -4 -173 -4 -85 -9 -361 -13 -614 -3 -252 -8
-465 -11 -472 -3 -8 -1 -14 5 -14 5 0 12 6 15 13 3 7 6 173 8 368 1 194 3 372
4 394 1 22 3 121 5 220 1 108 5 170 10 155 4 -14 8 -19 9 -12 1 6 8 12 16 12
8 0 15 5 15 10 0 6 -7 10 -15 10 -11 0 -15 11 -15 38 0 27 -3 33 -10 22 -8
-13 -10 -12 -10 3 0 9 5 17 11 17 8 0 9 4 0 13 -6 8 -8 17 -4 20 3 4 1 7 -6 7
-7 0 -11 -8 -10 -17z"/>
<path d="M1884 3980 c3 -19 2 -29 -4 -25 -6 4 -9 -9 -9 -32 1 -28 3 -31 6 -13
3 14 9 30 13 35 5 6 8 20 6 30 -2 11 4 23 13 27 12 5 10 7 -8 7 -21 1 -23 -2
-17 -29z"/>
<path d="M1900 3940 c-12 -7 -12 -12 -2 -22 9 -9 15 -9 24 0 8 8 9 15 2 22 -5
5 -15 6 -24 0z"/>
<path d="M1889 3883 c-1 -10 -1 -21 0 -25 0 -5 -3 -8 -8 -8 -5 0 -7 -9 -4 -20
3 -11 9 -17 14 -15 4 3 5 13 2 23 -4 13 -2 13 10 -3 20 -25 22 -61 2 -72 -10
-6 -11 -13 -5 -23 8 -13 10 -12 10 3 0 10 5 15 10 12 17 -11 11 59 -7 85 -10
14 -16 33 -15 43 2 9 1 17 -2 17 -3 0 -7 -8 -7 -17z"/>
<path d="M1871 3683 c0 -29 2 -33 8 -18 7 18 4 55 -5 55 -2 0 -4 -17 -3 -37z"/>
<path d="M1839 3688 c0 -7 -2 -23 -3 -35 -1 -12 0 -27 4 -33 4 -6 7 10 8 35 1
25 0 45 -3 45 -3 0 -5 -6 -6 -12z"/>
<path d="M1902 3631 c-8 -4 -13 -12 -13 -17 0 -5 -3 -22 -7 -39 -13 -46 -9
-90 7 -90 20 0 26 -24 7 -31 -12 -5 -13 -9 -3 -19 17 -18 27 1 26 50 0 31 -2
36 -9 20 -9 -22 -10 -19 -16 39 -1 22 4 52 12 67 16 32 16 33 -4 20z"/>
<path d="M1723 3475 c0 -22 2 -30 4 -17 2 12 2 30 0 40 -3 9 -5 -1 -4 -23z"/>
<path d="M1870 3343 c0 -28 20 -45 37 -32 7 7 13 16 13 22 0 6 -7 2 -15 -9
-14 -19 -14 -19 -15 3 0 12 -4 25 -10 28 -5 3 -10 -2 -10 -12z"/>
<path d="M1723 3310 c0 -25 2 -35 4 -22 2 12 2 32 0 45 -2 12 -4 2 -4 -23z"/>
<path d="M1872 3277 c-13 -15 -11 -88 1 -80 5 3 5 18 2 34 -4 18 -2 36 5 44 7
8 10 15 7 15 -2 0 -9 -6 -15 -13z"/>
<path d="M1910 3161 c-8 -6 -17 -8 -21 -5 -14 8 -22 -17 -10 -29 9 -9 10 -7 5
8 -7 18 -6 18 9 6 20 -16 23 -42 5 -37 -7 1 -10 1 -5 -1 4 -3 7 -14 7 -24 0
-13 -4 -18 -12 -13 -7 4 -8 3 -4 -4 4 -7 13 -12 21 -12 7 0 16 -10 18 -22 2
-13 5 -6 6 17 0 22 -3 54 -8 72 -6 21 -5 35 2 42 13 13 7 14 -13 2z"/>
<path d="M1976 3161 c-4 -6 -3 -19 3 -29 6 -11 6 -24 1 -33 -5 -7 -7 -23 -4
-34 4 -15 3 -16 -4 -6 -8 11 -10 11 -15 0 -4 -11 -6 -10 -6 2 -1 8 4 20 11 27
9 9 8 12 -5 12 -14 0 -17 -10 -17 -50 0 -40 3 -50 17 -50 15 0 15 -2 0 -17
-12 -14 -15 -39 -14 -113 1 -56 6 -95 12 -95 6 0 8 5 7 10 -2 6 -6 26 -8 45
l-5 35 16 -28 c9 -16 14 -34 12 -42 -3 -7 0 -18 6 -24 8 -8 8 -11 0 -11 -6 0
-13 -10 -17 -22 -5 -20 -8 -21 -17 -8 -9 13 -10 13 -6 0 2 -8 10 -14 17 -12 8
2 10 -3 5 -15 -14 -35 -12 -71 3 -65 11 4 13 0 8 -16 -4 -12 -4 -27 1 -34 13
-22 13 -80 0 -75 -7 2 -12 15 -12 30 -1 14 -5 30 -9 34 -5 4 -7 -9 -4 -29 2
-21 1 -38 -4 -38 -4 0 4 -12 17 -26 24 -25 34 -64 18 -64 -5 0 -7 -23 -6 -50
2 -48 1 -50 -15 -32 -9 10 -13 12 -9 5 5 -6 6 -17 2 -23 -3 -5 -1 -10 6 -10 9
0 8 -4 -1 -15 -10 -11 -9 -18 4 -31 9 -8 13 -20 10 -26 -4 -6 -2 -8 3 -5 7 5
11 -6 10 -29 -1 -20 -3 -31 -5 -24 -3 9 -7 9 -14 -1 -8 -11 -9 -11 -5 1 2 8 1
24 -3 35 -6 15 -8 10 -11 -21 -3 -30 -1 -40 8 -37 7 3 17 -7 23 -22 13 -34 13
-58 0 -50 -6 3 -7 -1 -4 -10 4 -8 1 -22 -6 -30 -9 -10 -9 -15 -1 -15 6 0 11
-4 11 -10 0 -14 -27 -12 -33 3 -3 7 -6 6 -6 -5 -1 -10 8 -18 22 -21 12 -2 0
-5 -27 -6 -46 -1 -48 -2 -31 -15 14 -10 25 -11 38 -4 24 13 31 5 23 -27 -5
-20 -10 -24 -20 -16 -9 7 -16 7 -23 0 -17 -17 -53 7 -53 36 l0 25 -152 -2
c-84 -1 -129 -3 -100 -5 50 -4 52 -5 52 -34 0 -29 -1 -30 -47 -28 -27 2 -58 0
-70 -5 -20 -6 -22 -3 -26 36 -3 24 -4 -102 -3 -278 l1 -322 107 -7 c58 -3 159
-3 223 1 l117 7 -5 48 c-4 29 -2 49 3 49 17 0 11 -94 -6 -116 -8 -10 -12 -13
-8 -5 5 10 3 12 -6 6 -10 -6 -10 -11 3 -20 17 -12 24 -31 8 -21 -5 3 -14 -8
-21 -24 -7 -17 -16 -30 -21 -30 -5 0 -9 -7 -9 -16 0 -11 -6 -14 -20 -9 -14 4
-22 1 -27 -12 -4 -10 -11 -21 -17 -25 -8 -5 -7 -8 1 -8 6 0 15 5 18 10 10 16
35 12 35 -6 0 -8 -4 -13 -9 -10 -5 3 -9 0 -8 -7 0 -6 -1 -21 -2 -32 -2 -20 -2
-20 -16 -1 -14 19 -30 15 -30 -6 0 -6 -9 -12 -19 -14 -11 -2 -31 -6 -44 -9
-21 -5 -24 -3 -19 15 4 17 3 19 -8 10 -10 -8 -15 -7 -19 2 -5 10 -7 10 -12 1
-8 -18 -27 -16 -20 2 3 8 0 15 -5 15 -6 0 -9 9 -6 20 3 11 1 18 -3 15 -12 -8
-33 -75 -26 -83 12 -11 125 -14 154 -4 22 7 33 7 41 -1 9 -9 10 -7 5 7 -5 13
-4 17 4 12 7 -4 12 -16 12 -26 0 -22 41 -38 116 -45 34 -3 44 -2 34 5 -8 5
-25 10 -36 10 -12 0 -34 10 -50 23 -16 12 -31 22 -34 22 -3 0 -4 11 -3 25 7
67 8 78 12 74 2 -2 15 18 28 44 27 54 25 43 -7 -46 -30 -82 -20 -103 59 -127
65 -20 87 -40 68 -63 -10 -12 -9 -14 3 -10 26 8 23 44 -6 67 -15 11 -33 21
-41 21 -8 0 -28 7 -44 16 -28 14 -31 19 -26 57 2 23 12 62 22 87 23 60 27 215
5 215 -8 0 -16 -9 -18 -20 -6 -28 -19 -42 -47 -47 -22 -5 -23 -2 -18 23 5 29
5 29 -44 29 -48 0 -51 -1 -57 -31 -6 -30 -6 -30 -63 -27 -54 3 -58 5 -61 30
-3 24 -7 26 -49 26 l-45 0 6 -31 6 -32 -20 25 c-21 27 -25 40 -11 40 5 0 6 25
4 55 -3 36 0 61 7 70 12 15 4 20 -25 16 -5 -1 -1 6 9 14 11 8 15 15 9 15 -11
0 -10 131 2 149 3 5 1 12 -4 16 -5 3 -8 14 -6 25 2 11 0 22 -4 24 -4 3 -8 20
-9 38 l-1 33 162 -3 c89 -1 190 0 223 4 l62 5 10 42 c16 62 15 1049 -1 1059
-7 5 -8 8 -1 8 7 0 10 27 8 76 -3 78 -7 93 -18 75z m-2 -222 c9 8 12 3 11 -20
-1 -17 -8 -35 -16 -39 -11 -6 -14 1 -16 33 -1 23 1 36 4 29 3 -9 9 -10 17 -3z
m-206 -990 c-2 -24 -8 -33 -25 -35 -14 -2 -23 1 -23 9 0 9 -3 8 -9 -2 -12 -19
-24 4 -17 33 4 17 13 22 41 24 35 3 36 2 33 -29z m82 12 c0 -14 -6 -19 -20
-18 -11 1 -20 2 -20 3 0 1 3 9 6 18 9 23 34 20 34 -3z m-200 -556 c0 -26 -14
-33 -25 -15 -9 14 1 40 15 40 5 0 10 -11 10 -25z m183 -5 c-3 -11 -11 -20 -18
-20 -8 0 -11 8 -8 20 3 11 11 20 18 20 8 0 11 -8 8 -20z m127 -15 c0 -9 -9
-15 -22 -15 -21 0 -21 0 -2 15 24 18 24 18 24 0z"/>
<path d="M1888 3028 c8 -9 11 -22 7 -28 -3 -5 -1 -10 4 -10 17 0 13 26 -6 41
-16 13 -17 12 -5 -3z"/>
<path d="M1914 2959 c-6 -13 -10 -34 -8 -46 2 -12 -1 -25 -6 -28 -6 -3 -10
-12 -10 -18 0 -8 3 -8 9 1 4 8 12 13 17 13 4 -1 9 10 10 24 0 14 -4 25 -10 25
-6 0 -5 4 2 9 8 5 12 17 10 27 -3 15 -5 14 -14 -7z"/>
<path d="M1859 2889 c0 -24 -2 -63 -3 -87 -2 -27 0 -40 6 -34 11 11 15 148 5
158 -4 4 -7 -13 -8 -37z"/>
<path d="M1903 2830 c1 -11 5 -20 9 -20 5 0 4 -8 -1 -17 -12 -24 -12 -95 1
-87 6 4 5 -3 -1 -15 -7 -11 -17 -21 -23 -21 -7 0 -3 -7 8 -15 19 -14 19 -14
-2 -15 -29 0 -35 9 -23 33 8 14 8 18 0 13 -6 -4 -11 0 -11 8 0 9 4 16 9 16 6
0 9 9 8 19 0 11 -7 17 -14 14 -9 -3 -12 -27 -11 -78 1 -65 3 -72 20 -67 10 2
18 8 18 13 0 5 -8 6 -17 3 -15 -5 -16 -4 -3 5 23 17 27 14 38 -29 8 -33 7 -40
-4 -40 -8 0 -17 -7 -20 -15 -5 -12 -10 -12 -32 2 -27 17 -27 17 -9 -3 9 -11
14 -23 11 -26 -3 -3 0 -9 7 -14 7 -4 10 -3 6 3 -9 14 16 24 32 14 6 -4 13 -40
16 -83 3 -69 2 -78 -20 -98 -14 -13 -29 -19 -36 -15 -7 5 -10 4 -6 -2 5 -8 -8
-18 -55 -41 -4 -1 -5 3 -2 11 3 8 -2 17 -11 21 -11 4 -19 -3 -26 -22 -10 -26
-11 -26 -25 -8 -8 11 -14 15 -14 9 0 -6 -7 -14 -16 -17 -14 -5 -15 -4 -4 9 10
12 10 15 -3 15 -11 0 -16 -9 -16 -27 1 -35 -17 -117 -31 -142 -7 -15 -6 -24 6
-35 16 -16 6 -23 -11 -8 -6 5 -21 6 -34 3 -21 -6 -22 -8 -7 -20 10 -8 16 -9
16 -3 0 6 7 9 15 6 8 -4 15 -10 15 -15 0 -4 -6 -6 -14 -3 -8 3 -17 1 -21 -5
-4 -7 5 -11 25 -11 18 0 29 4 25 10 -3 6 -3 16 2 23 11 17 10 41 -2 49 -5 4 1
8 15 8 14 -1 34 -7 44 -15 11 -8 17 -15 13 -15 -4 0 1 -8 11 -18 19 -20 50
-18 69 5 6 8 16 12 22 9 7 -5 9 3 5 24 -5 23 -3 30 10 30 9 0 16 5 16 11 0 6
-6 9 -14 6 -14 -6 -16 16 -3 29 12 12 8 26 -5 18 -7 -4 -8 -3 -4 4 7 13 48 16
59 6 9 -9 -4 -35 -14 -28 -5 3 -9 -2 -9 -11 0 -9 5 -13 11 -9 6 3 3 -5 -6 -20
-19 -29 -15 -34 9 -10 9 8 16 11 16 5 0 -5 -4 -13 -10 -16 -5 -3 -10 -13 -10
-21 0 -8 5 -12 10 -9 6 3 10 1 10 -4 0 -6 -3 -11 -7 -11 -5 0 -13 -11 -20 -25
-10 -22 -9 -25 9 -25 10 0 16 -4 13 -10 -3 -6 1 -7 9 -4 14 5 16 51 15 372 0
247 -3 370 -11 379 -7 9 -7 13 1 13 6 0 11 16 11 35 0 24 -5 35 -14 35 -9 0
-14 -9 -13 -20z m7 -531 c11 -8 12 -12 3 -16 -9 -3 -10 -10 -3 -23 12 -23 -1
-34 -31 -25 -11 4 -27 1 -36 -7 -10 -8 -14 -8 -10 -1 4 6 3 14 -3 18 -18 11
-11 25 23 45 37 23 37 23 57 9z m-97 -96 c3 -26 3 -62 0 -80 -5 -29 -10 -33
-35 -33 -25 0 -28 3 -25 25 1 13 6 27 10 31 10 10 9 46 -1 40 -5 -3 -9 10 -10
29 -1 32 1 35 27 35 26 0 29 -3 34 -47z m-100 -24 c-27 -27 -28 -27 -31 -6 -4
24 23 48 44 40 12 -4 9 -12 -13 -34z m16 -40 c-23 -14 -31 2 -12 23 16 18 18
19 21 3 2 -10 -2 -21 -9 -26z"/>
<path d="M1861 2282 c-1 -7 -5 -11 -10 -7 -6 3 -9 -4 -8 -15 1 -17 3 -18 15
-6 8 8 12 20 9 28 -4 10 -6 10 -6 0z"/>
<path d="M1692 2792 c-14 -4 -16 -32 -2 -32 6 0 10 5 10 10 0 6 11 3 25 -6 15
-10 25 -12 25 -5 0 6 -4 11 -9 11 -5 0 -16 6 -23 13 -7 8 -19 12 -26 9z"/>
<path d="M1626 2713 c-29 -15 -29 -16 -10 -30 17 -13 19 -12 22 7 2 11 7 18
12 15 5 -3 11 -1 14 4 11 17 -9 19 -38 4z"/>
<path d="M1512 2677 c-28 -29 -29 -82 -3 -96 24 -13 32 -5 21 23 -5 13 -4 29
1 37 6 10 9 7 9 -13 0 -15 4 -29 9 -33 6 -3 8 11 6 33 -4 38 -4 38 28 34 29
-5 30 -6 9 -13 -12 -5 -21 -16 -21 -26 1 -17 2 -17 6 0 2 9 8 17 13 17 5 0 11
-8 13 -17 3 -13 5 -11 7 7 1 22 2 23 9 6 6 -16 8 -17 13 -4 4 10 -3 20 -20 29
-15 8 -33 20 -40 27 -20 18 -36 15 -60 -11z m26 -3 c-22 -12 -28 -22 -30 -52
l-1 -37 -4 33 c-5 37 18 72 46 72 10 -1 5 -7 -11 -16z"/>
<path d="M1599 2600 c-24 -5 -25 -6 -9 -22 13 -15 19 -16 33 -5 23 17 8 34
-24 27z"/>
<path d="M1885 2581 c-3 -6 -11 -9 -16 -6 -5 4 -17 1 -26 -4 -15 -9 -13 -10
14 -11 29 0 52 15 40 26 -3 3 -8 0 -12 -5z"/>
<path d="M1561 2571 c-10 -6 -9 -10 5 -15 20 -8 25 -4 16 11 -4 7 -13 9 -21 4z"/>
<path d="M1743 2553 c-13 -2 -32 -16 -43 -30 -21 -27 -27 -87 -10 -98 8 -5 8
-11 1 -19 -8 -9 -7 -13 4 -13 8 0 12 4 9 9 -3 4 0 8 5 8 18 0 12 -38 -6 -49
-17 -9 -17 -10 2 -17 11 -4 28 -14 38 -22 16 -14 17 -14 12 0 -4 9 -2 19 4 23
6 3 11 11 11 18 0 6 -6 2 -14 -9 -14 -18 -15 -18 -22 10 -5 22 -3 31 12 40 25
14 56 16 74 4 8 -6 2 1 -14 16 -22 21 -31 24 -42 15 -11 -9 -14 -7 -14 12 0
13 -3 34 -6 47 -5 18 -3 21 10 16 9 -4 20 -19 23 -35 5 -28 28 -37 68 -29 5 1
7 -1 3 -5 -4 -4 -3 -17 2 -29 10 -27 -5 -56 -27 -56 -14 0 -14 -2 3 -15 27
-21 36 -18 29 8 -4 15 -3 18 3 8 7 -9 12 -10 16 -2 4 6 2 11 -3 11 -19 0 -12
17 9 23 11 3 20 10 20 15 0 6 -9 8 -20 5 -16 -4 -20 0 -20 21 0 14 5 26 10 26
6 0 10 4 10 10 0 6 -10 5 -25 -2 -19 -8 -28 -8 -42 3 -15 12 -16 12 -8 -1 7
-13 6 -13 -6 -2 -12 11 -11 16 9 32 19 15 21 23 13 37 -9 16 -10 16 -11 1 0
-14 -4 -14 -24 -5 -13 7 -22 15 -20 19 3 5 4 7 2 7 -2 -1 -13 -4 -25 -6z m-7
-120 c-3 -3 -12 -1 -19 5 -8 7 -16 9 -20 6 -10 -10 5 40 17 55 8 11 13 6 20
-23 4 -20 6 -40 2 -43z"/>
<path d="M1949 2448 c-5 -17 -4 -50 3 -60 5 -8 8 1 8 25 0 20 -2 37 -5 37 -3
0 -5 -1 -6 -2z"/>
<path d="M1760 2389 c0 -5 4 -8 9 -5 12 8 23 -22 15 -37 -5 -8 -4 -9 4 -2 15
13 4 55 -14 55 -8 0 -14 -5 -14 -11z"/>
<path d="M1800 2334 c0 -17 17 -36 24 -26 3 5 -1 15 -9 22 -8 7 -15 9 -15 4z"/>
<path d="M1685 2321 c-3 -6 4 -9 15 -8 11 1 20 5 20 9 0 11 -28 10 -35 -1z"/>
<path d="M1530 2049 c0 -5 -8 -9 -17 -8 -33 3 -41 -1 -46 -21 -4 -15 0 -20 15
-20 10 0 16 5 13 10 -7 12 8 19 55 24 19 2 39 4 43 5 5 0 5 6 2 11 -8 13 -65
13 -65 -1z"/>
<path d="M1436 1968 c-4 -29 -13 -56 -19 -60 -8 -5 -7 -8 4 -8 13 0 18 14 24
56 4 31 5 58 2 60 -2 3 -7 -19 -11 -48z"/>
<path d="M1463 1936 c-8 -26 -8 -33 1 -30 10 4 22 64 13 64 -2 0 -8 -15 -14
-34z"/>
<path d="M1503 1845 c0 -27 2 -38 4 -22 2 15 2 37 0 50 -2 12 -4 0 -4 -28z"/>
<path d="M1605 1871 c-11 -5 -23 -7 -27 -4 -4 2 -5 -3 -2 -11 7 -19 24 -21 24
-3 0 9 2 9 9 -1 6 -10 10 -9 14 7 3 12 4 21 4 20 -1 0 -11 -4 -22 -8z"/>
<path d="M1652 1875 c4 -4 3 -16 -3 -26 -14 -27 -1 -69 22 -69 10 0 19 5 19
10 0 6 -7 10 -15 10 -13 0 -13 3 -3 20 7 11 20 20 28 20 8 0 22 5 30 10 11 7
6 8 -17 6 -18 -3 -37 -7 -43 -11 -5 -3 -7 0 -4 8 3 8 -1 18 -8 23 -7 4 -10 4
-6 -1z"/>
<path d="M1379 1853 c-9 -11 -10 -17 -3 -20 7 -2 8 -23 2 -66 -18 -138 -26
-147 -142 -147 -76 0 -87 -3 -115 -26 -17 -14 -31 -31 -31 -37 0 -6 7 -2 15 9
13 17 13 16 3 -13 -8 -21 -15 -28 -20 -20 -4 7 -5 -5 -1 -25 3 -20 2 -45 -2
-55 -4 -10 -7 -29 -7 -43 2 -23 1 -23 -8 -5 -7 14 -8 4 -5 -35 4 -41 3 -50 -5
-35 -8 15 -9 10 -4 -22 4 -30 2 -43 -6 -43 -7 0 -10 -8 -7 -20 3 -10 0 -22 -7
-25 -6 -3 18 -3 54 -1 36 3 84 2 108 -1 41 -5 42 -6 22 -20 -19 -13 -23 -13
-34 2 -9 12 -15 14 -20 7 -4 -6 4 -18 18 -27 49 -32 42 -183 -10 -225 -7 -7
-14 -21 -14 -32 0 -10 -3 -17 -8 -14 -4 2 -16 -3 -27 -11 -18 -14 -18 -15 -2
-9 10 3 28 6 38 6 11 0 18 4 14 9 -3 6 2 14 11 19 10 5 18 19 19 30 0 11 9 27
18 36 24 24 32 63 18 92 -19 42 -5 98 34 137 25 25 35 44 35 66 l0 32 -24 -18
-24 -18 21 -6 c21 -5 21 -6 -6 -23 -23 -16 -39 -17 -112 -11 -47 4 -86 10 -88
13 -2 4 6 69 18 145 26 164 40 186 114 189 l46 1 -55 7 c-50 7 -47 7 31 7 47
0 90 3 97 7 8 4 10 2 6 -7 -3 -8 -15 -19 -27 -25 -12 -6 -16 -11 -10 -11 7 -1
20 -15 28 -31 14 -28 14 -36 1 -88 -9 -31 -17 -68 -18 -81 -6 -54 -85 -79
-188 -58 l-35 7 33 -13 c18 -7 31 -15 28 -18 -12 -12 102 10 131 25 17 8 32
13 35 11 2 -3 14 59 27 138 12 78 29 174 36 212 17 83 30 195 23 195 -3 0 -12
-7 -19 -17z"/>
<path d="M1910 1858 c0 -4 4 -8 10 -8 5 0 7 -7 4 -15 -4 -9 0 -15 7 -15 11 0
11 -3 -1 -10 -12 -8 -12 -10 5 -10 11 0 15 -4 10 -8 -6 -4 -11 -23 -12 -42 -2
-32 -1 -33 7 -10 9 24 9 24 7 -5 -1 -21 -7 -29 -17 -27 -13 2 -13 1 0 -10 14
-12 16 -20 11 -45 -1 -5 -6 -1 -11 7 -8 13 -10 12 -10 -2 0 -10 7 -18 16 -18
8 0 12 -4 9 -10 -3 -5 -1 -10 6 -10 7 0 10 -3 6 -6 -3 -4 -14 -3 -24 1 -10 5
-29 9 -43 11 -22 3 -22 2 -5 -5 11 -5 24 -6 29 -3 5 3 7 -2 3 -11 -4 -10 -2
-16 5 -14 6 1 13 -4 15 -11 3 -7 -1 -11 -9 -10 -9 2 -13 -12 -14 -54 -1 -32 2
-55 6 -53 5 3 10 -1 13 -7 3 -10 7 -10 20 1 15 12 17 38 17 200 0 102 -4 191
-8 198 -8 13 -52 14 -52 1z"/>
<path d="M1761 1848 c-1 -10 6 -18 14 -18 8 0 15 5 15 11 0 5 -4 8 -9 5 -5 -4
-12 0 -14 6 -3 8 -6 6 -6 -4z"/>
<path d="M1798 1825 c-6 -13 -15 -22 -19 -19 -5 3 -9 -2 -9 -10 0 -21 23 -10
35 17 7 14 17 21 30 19 17 -2 17 -1 5 7 -22 16 -29 13 -42 -14z"/>
<path d="M1725 1820 c-4 -12 -5 -24 -2 -27 3 -2 8 5 12 17 4 12 5 24 2 27 -3
2 -8 -5 -12 -17z"/>
<path d="M1683 1772 c-8 -5 -9 -12 -2 -22 8 -13 10 -13 19 0 18 27 9 39 -17
22z"/>
<path d="M1790 1743 c0 -15 2 -16 10 -3 9 13 14 8 12 -12 -1 -3 6 -9 15 -12
14 -6 14 -4 1 16 -19 29 -38 34 -38 11z"/>
<path d="M1420 1703 c0 -16 -2 -16 -11 -3 -8 12 -10 12 -7 -4 5 -29 23 -30 26
-1 1 14 0 25 -3 25 -3 0 -5 -8 -5 -17z"/>
<path d="M1633 1674 c-19 -20 -16 -38 3 -20 8 9 14 20 12 25 -2 5 -9 3 -15 -5z"/>
<path d="M1495 1671 c-3 -6 -3 -11 2 -11 4 0 1 -5 -7 -10 -10 -7 -11 -10 -2
-10 7 0 15 7 19 15 7 19 -2 31 -12 16z"/>
<path d="M1670 1667 c0 -7 9 -13 20 -13 24 0 26 11 4 20 -22 8 -24 8 -24 -7z"/>
<path d="M1753 1665 c0 -7 8 -12 17 -10 9 2 23 -1 31 -6 10 -6 7 -9 -13 -9
-20 0 -28 -5 -28 -17 0 -13 2 -15 8 -5 5 7 16 10 26 6 23 -9 2 -34 -24 -29
-11 2 -22 -1 -26 -6 -3 -6 9 -9 30 -7 36 2 48 15 50 52 0 13 -11 23 -35 31
-29 10 -36 10 -36 0z"/>
<path d="M1724 1635 c0 -14 4 -25 9 -25 10 0 9 38 -2 44 -5 3 -8 -5 -7 -19z"/>
<path d="M1415 1613 c3 -8 5 -18 5 -21 0 -8 20 20 20 29 0 3 -7 6 -15 6 -10 0
-14 -6 -10 -14z"/>
<path d="M1616 1614 c-3 -7 4 -14 16 -16 30 -4 35 -28 7 -28 l-23 0 22 -16
c28 -19 28 -38 0 -52 -19 -9 -20 -11 -5 -11 10 -1 16 -5 13 -9 -9 -14 10 -33
27 -26 19 7 23 24 6 24 -8 0 -8 4 -1 13 6 7 10 27 10 45 -1 26 -4 30 -15 21
-18 -16 -17 3 3 27 8 10 13 13 9 7 -9 -18 0 -16 16 4 10 11 10 14 2 9 -8 -4
-13 -2 -13 6 0 18 -67 19 -74 2z"/>
<path d="M1420 1561 c0 -5 7 -14 15 -21 16 -14 18 -10 9 14 -6 17 -24 22 -24
7z"/>
<path d="M1579 1560 c-5 -49 -1 -65 14 -68 10 -2 17 3 17 12 0 9 7 16 16 16
10 0 7 7 -12 25 -30 28 -34 29 -35 15z"/>
<path d="M1799 1527 c4 -28 11 -41 24 -43 13 -2 17 5 17 29 0 24 3 28 10 17 8
-13 10 -12 10 3 0 9 -1 17 -3 17 -1 0 -16 4 -33 9 l-30 8 5 -40z"/>
<path d="M1477 1526 c-6 -16 2 -28 14 -20 12 7 11 34 0 34 -5 0 -11 -6 -14
-14z"/>
<path d="M1367 1494 c-11 -11 -8 -26 3 -19 6 3 10 1 10 -6 0 -7 3 -10 6 -6 3
3 2 13 -3 22 -5 8 -12 12 -16 9z"/>
<path d="M1765 1492 c-11 -2 -24 -8 -29 -13 -13 -12 -29 -11 -21 1 3 6 2 10
-4 10 -5 0 -9 -8 -8 -17 1 -13 10 -18 34 -18 19 0 33 4 33 11 0 7 6 14 13 17
18 7 5 14 -18 9z"/>
<path d="M1410 1465 c0 -8 -5 -15 -11 -15 -6 0 -9 -7 -5 -15 3 -8 1 -15 -4
-15 -19 0 -10 -16 10 -17 11 -1 20 2 20 8 0 5 10 9 21 9 20 0 21 -1 5 -25 -9
-14 -12 -25 -7 -25 16 0 30 26 28 51 -3 41 -57 82 -57 44z m40 -25 c0 -5 -9
-10 -20 -10 -11 0 -20 5 -20 10 0 6 9 10 20 10 11 0 20 -4 20 -10z"/>
<path d="M1480 1436 c0 -14 4 -27 8 -30 5 -3 6 8 4 25 -5 35 -12 38 -12 5z"/>
<path d="M1677 1444 c-4 -4 -7 -12 -7 -17 0 -6 3 -8 6 -4 3 3 17 2 30 -3 15
-6 24 -6 24 0 0 6 -9 10 -19 10 -11 0 -21 5 -23 11 -2 5 -7 7 -11 3z"/>
<path d="M1408 1385 c-4 -4 -4 -13 -1 -21 3 -8 0 -14 -6 -14 -6 0 -11 7 -11
16 0 33 -25 6 -26 -28 -1 -19 -4 -40 -8 -47 -4 -6 -3 -11 2 -11 14 0 33 26 25
34 -4 4 -8 19 -10 34 -2 23 0 22 15 -12 17 -36 19 -37 32 -20 8 10 10 15 3 11
-6 -4 -14 -3 -18 3 -3 5 1 10 9 10 17 0 18 5 7 33 -3 10 -10 15 -13 12z"/>
<path d="M1530 1318 c-10 -22 -10 -30 -1 -42 13 -16 3 -48 -15 -48 -22 -1 -55
-19 -60 -33 -3 -8 -10 -12 -15 -9 -5 3 -6 -1 -3 -9 3 -8 1 -18 -5 -22 -6 -3
-11 1 -11 10 0 9 -5 13 -10 10 -12 -7 6 -36 18 -32 4 1 17 -8 30 -20 29 -30
37 -29 38 6 1 16 4 37 8 46 6 17 7 17 20 -1 12 -15 11 -22 -1 -41 -14 -21 -14
-23 1 -23 9 0 16 8 16 17 0 15 2 14 15 -3 14 -17 14 -17 3 11 -6 17 -23 43
-37 59 -14 16 -21 26 -14 22 6 -3 18 3 26 15 11 15 16 17 21 7 3 -7 4 -2 1 12
-5 23 -4 23 7 6 31 -45 51 -67 56 -62 3 3 12 0 21 -7 14 -11 14 -10 2 6 -7 9
-20 17 -28 17 -8 0 -11 5 -7 12 4 7 3 8 -4 4 -7 -4 -12 -2 -12 3 0 15 33 14
48 -1 9 -9 12 -7 13 13 1 24 1 24 11 -3 5 -16 13 -28 16 -29 4 0 15 -2 25 -4
9 -2 17 1 17 6 0 6 5 7 10 4 6 -3 10 -2 10 4 0 5 -4 13 -10 16 -5 3 -10 2 -10
-3 0 -5 -10 -9 -22 -8 -17 1 -23 7 -23 26 -1 20 -5 24 -23 22 -13 -2 -30 2
-38 8 -9 8 -14 9 -14 2 0 -6 9 -14 20 -17 11 -3 20 -10 20 -15 0 -12 -42 0
-63 18 -16 14 -16 16 -1 34 10 10 12 18 7 18 -6 0 -14 -8 -19 -17 -6 -15 -8
-13 -14 12 l-7 30 -13 -27z m-41 -160 c-5 -18 -9 -35 -9 -37 0 -3 -6 1 -12 7
-10 10 -10 14 0 21 7 4 10 15 6 24 -4 11 -1 17 9 17 13 0 14 -6 6 -32z"/>
<path d="M1676 1305 c4 -10 10 -12 18 -7 6 5 18 12 26 15 8 3 1 6 -17 6 -25 1
-31 -2 -27 -14z"/>
<path d="M1770 1304 c19 -7 28 -13 19 -13 -9 -1 -22 -8 -29 -16 -10 -12 -6
-12 20 2 31 15 33 15 54 -11 14 -18 25 -23 35 -17 9 6 10 11 2 15 -6 4 -11 1
-12 -6 0 -7 -4 -4 -8 7 -5 11 -5 27 0 36 5 11 4 16 -6 16 -8 0 -11 -7 -7 -15
4 -12 1 -14 -12 -9 -10 4 -21 7 -24 7 -4 0 -2 4 5 8 6 4 -7 8 -30 8 l-42 1 35
-13z"/>
<path d="M1909 1318 c-6 -22 -4 -35 7 -35 7 0 11 4 8 9 -3 4 0 8 6 8 6 0 8 5
5 10 -5 9 -24 14 -26 8z"/>
<path d="M1323 1291 c-1 -11 7 -27 18 -37 18 -16 19 -16 13 -1 -3 9 -10 17
-16 17 -5 0 -6 9 -3 20 3 11 3 20 -2 20 -5 0 -9 -9 -10 -19z"/>
<path d="M1713 1293 c-7 -2 -13 -14 -12 -26 0 -15 2 -17 6 -7 3 8 12 21 21 28
16 12 8 15 -15 5z"/>
<path d="M1183 1273 c9 -2 25 -2 35 0 9 3 1 5 -18 5 -19 0 -27 -2 -17 -5z"/>
<path d="M1436 1272 c-3 -3 -6 -15 -6 -26 -1 -19 -2 -19 -13 -4 -12 14 -15 13
-37 -19 -20 -29 -22 -38 -12 -54 10 -15 9 -19 0 -19 -8 0 -7 -6 4 -16 23 -23
44 -8 23 16 -10 11 -14 24 -9 31 4 8 3 10 -4 5 -15 -9 -15 -1 0 23 6 11 19 16
29 14 11 -3 23 3 31 16 7 12 21 21 30 21 10 0 18 3 18 8 0 8 -46 12 -54 4z"/>
<path d="M1307 1239 c-3 -12 -1 -17 6 -12 7 4 8 0 2 -13 -5 -10 -8 -32 -7 -49
1 -28 0 -29 -13 -11 -8 11 -15 15 -15 10 0 -6 3 -14 7 -18 4 -4 9 -18 10 -31
3 -20 -1 -25 -18 -25 -12 0 -19 -3 -15 -7 7 -8 12 -9 54 -11 16 -2 21 -6 16
-14 -6 -10 -4 -10 7 -2 8 6 22 10 32 9 9 -2 17 1 17 6 0 6 6 4 14 -3 8 -7 12
-17 9 -22 -3 -4 6 -1 19 8 14 9 33 14 42 10 11 -4 16 -1 16 12 0 16 -2 17 -10
4 -6 -10 -10 -11 -10 -2 0 8 -23 12 -80 12 -74 0 -80 2 -80 21 0 11 4 17 10
14 7 -4 9 2 4 19 -3 14 -3 34 1 43 12 29 12 48 -1 61 -9 8 -13 6 -17 -9z"/>
<path d="M1826 1236 c5 -13 2 -17 -12 -14 -14 2 -18 -2 -16 -16 2 -10 0 -16
-5 -14 -4 2 -18 -6 -30 -19 -12 -13 -18 -23 -13 -23 5 0 12 5 15 10 4 6 10 8
15 5 5 -3 11 -1 15 5 4 6 11 8 16 5 5 -4 9 1 9 10 0 9 4 14 8 11 10 -6 9 40
-1 50 -4 5 -5 0 -1 -10z"/>
<path d="M1621 1133 c5 -33 -3 -53 -21 -53 -13 0 -20 -7 -20 -19 0 -11 -5 -23
-12 -27 -7 -4 -8 -3 -4 4 4 7 4 17 0 23 -9 15 -24 -9 -17 -28 7 -19 27 -16 47
6 13 15 14 20 4 24 -7 3 -3 6 10 6 12 1 22 7 23 14 0 6 2 22 5 35 2 12 -1 22
-6 22 -6 0 -9 -3 -9 -7z"/>
<path d="M1260 965 l-16 -32 27 11 c25 9 48 56 28 56 -5 0 -9 -8 -10 -17 0
-16 -1 -16 -7 -2 -6 13 -10 9 -22 -16z"/>
<path d="M1505 923 c-4 -43 -13 -87 -21 -98 -8 -11 -14 -14 -14 -8 0 7 4 14 9
17 4 3 9 28 9 55 1 43 -1 49 -15 44 -11 -4 -13 -8 -5 -11 23 -7 11 -38 -53
-137 -36 -55 -71 -114 -77 -132 -7 -18 -19 -33 -27 -33 -8 0 -12 -3 -8 -6 6
-7 -28 -43 -44 -46 -6 -2 -22 -13 -35 -26 -13 -13 -29 -20 -36 -16 -6 4 -8 3
-5 -3 9 -14 -61 -56 -75 -47 -7 4 -8 2 -4 -4 4 -8 0 -12 -12 -12 -11 0 -32
-10 -48 -22 -15 -13 -25 -17 -20 -10 9 15 10 16 -50 -8 -29 -10 -54 -16 -58
-13 -3 3 -8 -2 -12 -11 -3 -9 -14 -16 -23 -16 -9 0 -22 -5 -27 -10 -6 -6 -21
-13 -35 -15 -13 -3 -30 -12 -36 -22 -8 -9 -13 -12 -13 -5 0 9 -8 7 -25 -4 -14
-9 -25 -13 -25 -9 0 3 -7 -1 -16 -9 -8 -9 -21 -13 -27 -9 -7 4 -6 -1 2 -10 12
-15 12 -17 -1 -12 -19 7 -68 -11 -68 -25 0 -6 5 -8 10 -5 6 3 10 1 10 -4 0 -6
-8 -11 -17 -11 -17 0 -18 18 -18 248 0 136 -3 249 -7 252 -4 3 -10 25 -13 49
l-5 42 58 -7 c31 -4 67 -8 80 -7 12 0 22 -3 22 -8 0 -5 16 -9 35 -9 21 0 35
-5 35 -12 0 -9 4 -8 10 2 9 13 11 13 20 0 8 -12 10 -12 10 -1 0 8 7 11 20 8
11 -3 20 -1 20 5 0 5 6 6 12 2 20 -13 48 -12 48 2 0 7 10 11 25 9 26 -2 33 9
13 21 -6 4 -13 3 -15 -3 -2 -5 -16 -8 -31 -6 -21 4 -24 2 -12 -6 9 -7 10 -11
3 -11 -6 0 -14 4 -18 10 -3 5 -12 7 -21 3 -22 -8 -275 18 -268 28 3 5 15 10
27 10 23 1 -44 17 -76 18 -18 1 -19 -12 -13 -309 3 -187 10 -319 16 -330 6
-11 20 -20 32 -20 19 0 127 55 138 71 5 6 71 38 95 45 65 19 294 113 358 146
110 56 237 182 286 282 18 38 34 74 36 80 1 6 5 18 8 26 12 30 27 95 27 118 0
15 -6 22 -19 22 -16 0 -20 -11 -26 -77z m-29 -135 c4 -7 4 -10 -1 -6 -4 4 -17
-9 -27 -30 -11 -20 -29 -46 -40 -57 l-20 -20 12 25 c19 37 60 100 65 100 2 0
7 -6 11 -12z m-246 -272 c0 -2 -11 -11 -25 -20 -14 -9 -25 -13 -25 -8 0 5 10
14 23 20 27 13 27 13 27 8z"/>
<path d="M1228 903 c-11 -13 -22 -53 -14 -53 1 0 14 14 29 30 19 20 23 28 11
23 -12 -4 -15 -3 -10 5 11 18 1 14 -16 -5z"/>
<path d="M1302 870 c-7 -11 -9 -20 -4 -20 4 0 13 9 20 20 7 11 9 20 4 20 -4 0
-13 -9 -20 -20z"/>
<path d="M1095 869 c4 -6 1 -9 -6 -8 -19 4 -59 -10 -59 -21 0 -4 -10 -6 -21
-3 -19 5 -20 4 -10 -15 10 -19 13 -20 41 -5 17 8 27 19 24 25 -4 6 -3 9 2 5 5
-3 20 0 33 7 20 11 21 14 7 19 -11 4 -15 3 -11 -4z"/>
<path d="M970 854 c-31 -8 -37 -13 -20 -13 14 0 39 6 55 14 37 17 24 16 -35
-1z"/>
<path d="M693 843 c9 -2 25 -2 35 0 9 3 1 5 -18 5 -19 0 -27 -2 -17 -5z"/>
<path d="M1230 830 c-8 -5 -12 -11 -9 -14 3 -3 14 1 25 9 21 16 8 20 -16 5z"/>
<path d="M1161 791 c-24 -21 -63 -49 -87 -61 -41 -20 -58 -40 -34 -40 6 0 10
5 10 10 0 6 6 10 13 9 25 -3 38 1 32 11 -6 10 41 35 58 31 5 -1 6 3 3 8 -4 5
-3 11 1 13 10 4 58 58 52 58 -2 -1 -24 -18 -48 -39z"/>
<path d="M1361 804 c-13 -13 -20 -24 -14 -24 5 0 20 11 33 25 30 32 13 31 -19
-1z"/>
<path d="M1026 781 c-4 -5 -17 -8 -30 -5 -16 3 -26 -2 -30 -13 -6 -15 -8 -15
-17 -3 -8 13 -10 13 -19 0 -14 -22 17 -26 41 -4 11 10 19 12 19 6 0 -7 3 -12
8 -12 13 1 46 30 40 36 -3 3 -9 1 -12 -5z"/>
<path d="M1206 769 c5 -9 31 -6 40 4 4 4 -4 6 -19 5 -14 -1 -24 -5 -21 -9z"/>
<path d="M1310 755 c0 -8 -7 -15 -15 -15 -8 0 -15 -4 -15 -8 0 -12 -70 -43
-81 -36 -5 3 -8 0 -7 -8 2 -7 -1 -12 -7 -11 -5 0 -16 -5 -23 -13 -20 -22 0
-17 59 16 70 38 131 89 107 90 -10 0 -18 -7 -18 -15z"/>
<path d="M870 743 c-24 -12 -24 -13 -3 -13 12 0 25 5 28 11 11 16 2 17 -25 2z"/>
<path d="M1132 720 c-18 -11 -30 -25 -27 -30 3 -6 8 -10 11 -10 3 0 3 4 -1 9
-3 6 10 17 30 27 19 9 35 18 35 20 0 9 -17 3 -48 -16z"/>
<path d="M956 681 c-13 -5 -16 -10 -9 -14 7 -4 14 -3 18 3 4 6 11 8 16 5 5 -4
9 -1 9 4 0 12 -7 13 -34 2z"/>
<path d="M1020 670 c12 -8 12 -10 1 -10 -8 0 -11 -3 -8 -6 3 -4 2 -15 -4 -25
-17 -33 -2 -20 20 16 l20 35 -22 0 c-18 0 -19 -2 -7 -10z"/>
<path d="M886 661 c-4 -5 -16 -8 -29 -7 -16 2 -23 -3 -24 -15 -1 -10 2 -21 8
-24 5 -4 9 1 9 9 0 9 8 16 19 16 11 0 28 3 38 7 17 7 17 6 1 -11 -22 -21 -24
-33 -3 -16 8 7 15 9 15 4 0 -5 5 -1 11 9 5 9 7 22 4 27 -8 13 -42 13 -49 1z"/>
<path d="M631 646 l-24 -14 21 -6 c13 -4 19 -12 16 -18 -4 -6 -2 -8 4 -5 5 4
9 15 8 25 -2 9 2 20 8 24 19 13 -8 8 -33 -6z"/>
<path d="M977 645 c-9 -9 -20 -16 -24 -16 -15 -1 -17 -9 -2 -9 18 1 54 28 47
35 -3 3 -13 -1 -21 -10z"/>
<path d="M730 641 l-35 -7 37 -5 c20 -3 34 -1 32 3 -3 4 9 5 26 2 19 -4 30 -2
30 5 0 12 -33 13 -90 2z"/>
<path d="M958 593 c-10 -2 -18 -8 -18 -13 0 -4 9 -6 20 -3 11 3 20 9 20 14 0
5 -1 8 -2 8 -2 -1 -11 -3 -20 -6z"/>
<path d="M640 582 c1 -22 16 -28 32 -13 16 16 15 17 -8 19 -13 1 -24 -2 -24
-6z"/>
<path d="M840 582 c0 -7 5 -12 11 -12 6 0 8 -7 5 -16 -3 -9 -2 -12 4 -9 6 4
23 9 37 11 41 8 41 14 2 14 -19 0 -40 5 -47 12 -9 9 -12 9 -12 0z"/>
<path d="M905 543 c-11 -3 -24 -10 -30 -15 -12 -13 35 0 50 13 5 5 7 8 5 8 -3
-1 -14 -3 -25 -6z"/>
<path d="M795 520 c-3 -5 -11 -8 -18 -6 -7 1 -9 1 -4 -1 4 -3 5 -9 2 -14 -4
-5 1 -6 9 -3 8 3 17 12 20 20 6 16 0 19 -9 4z"/>
<path d="M933 510 c2 -9 16 -15 35 -16 17 -1 29 2 27 6 -3 4 -15 7 -27 6 -13
-1 -27 3 -31 9 -5 6 -7 4 -4 -5z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 27 KiB

@ -0,0 +1,366 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="300.000000pt" height="210.000000pt" viewBox="0 0 300.000000 210.000000"
preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.10, written by Peter Selinger 2001-2011
</metadata>
<g transform="translate(0.000000,210.000000) scale(0.050000,-0.050000)"
fill="#000000" stroke="none">
<path d="M3590 3630 c-55 -15 -176 -54 -270 -86 -93 -33 -242 -79 -330 -104
-492 -135 -676 -207 -635 -249 8 -8 6 -13 -5 -10 -40 8 -70 -2 -70 -22 0 -12
9 -16 20 -9 11 7 14 -1 8 -19 -7 -17 -20 -26 -29 -21 -27 17 -43 -67 -29 -151
12 -70 28 -90 60 -74 5 3 24 -17 43 -43 32 -46 35 -47 49 -10 15 37 15 37 18
-2 3 -38 4 -38 18 -3 9 26 39 40 88 44 140 13 450 189 333 189 -12 0 -16 -9
-9 -20 7 -11 3 -20 -8 -20 -11 0 -29 16 -40 35 -18 30 -21 26 -23 -25 -2 -52
-4 -55 -19 -20 -16 37 -17 36 -19 -10 -1 -28 -8 -40 -16 -29 -22 33 -82 50
-96 28 -6 -11 -20 -14 -30 -8 -11 6 -19 2 -19 -8 0 -11 -16 -24 -35 -29 -33
-9 -33 -9 0 -12 19 -1 35 -12 35 -24 0 -14 -21 -9 -53 12 -43 28 -55 30 -71 7
-15 -21 -17 -19 -9 8 7 19 4 35 -6 35 -9 0 -13 18 -7 40 8 29 1 40 -25 40 -34
0 -34 2 1 40 19 21 45 33 56 26 11 -7 16 -4 11 6 -12 23 76 108 93 91 7 -7 26
5 42 26 27 38 28 38 28 0 0 -35 3 -34 31 7 18 25 41 39 51 33 11 -7 33 -1 49
12 25 21 28 18 17 -13 -9 -27 2 -22 38 18 30 34 56 48 63 35 21 -33 47 -25 61
19 7 22 21 35 32 29 10 -7 13 -22 7 -35 -7 -13 1 -8 16 11 16 19 35 28 42 21
30 -30 93 -18 105 20 7 22 18 30 25 19 8 -11 30 -13 53 -4 22 9 28 17 14 18
-15 0 -20 11 -13 23 7 12 35 16 61 9 29 -7 48 -3 48 10 0 13 17 16 42 8 29 -9
50 -1 69 26 17 24 49 38 83 37 31 -1 67 8 81 21 13 13 42 19 65 13 22 -6 40
-2 40 9 0 20 94 17 114 -3 6 -6 27 -2 47 9 38 20 105 5 89 -20 -5 -9 11 -15
35 -13 26 1 43 -9 40 -22 -3 -14 8 -20 25 -13 184 70 -254 159 -480 97z"/>
<path d="M4133 3531 c9 -25 6 -33 -8 -24 -13 8 -18 -1 -11 -25 6 -25 -5 -46
-32 -61 -23 -12 -42 -16 -42 -9 0 7 -11 4 -25 -7 -14 -11 -49 -18 -78 -17 -30
2 -50 -3 -45 -11 12 -20 -107 -43 -135 -25 -13 8 -18 6 -10 -7 7 -12 -12 -24
-45 -29 -45 -7 -55 -2 -47 21 8 19 4 24 -12 15 -12 -8 -23 -26 -23 -41 0 -14
-16 -25 -35 -25 -19 1 -67 -14 -107 -32 -68 -30 -156 -55 -213 -59 -14 -1 -25
-9 -25 -18 0 -9 -13 -17 -30 -17 -16 0 -30 -11 -30 -25 -1 -17 -7 -15 -20 5
-12 19 -19 21 -20 6 0 -14 -25 -38 -55 -54 -79 -43 -176 -133 -169 -158 3 -11
-9 -8 -29 8 -30 25 -33 24 -22 -5 8 -22 1 -31 -22 -30 -19 2 -32 -11 -31 -30
2 -24 -10 -31 -43 -25 -26 5 -53 -2 -61 -15 -9 -15 -5 -18 12 -7 18 11 21 8
11 -8 -8 -14 -28 -20 -44 -14 -19 8 -24 3 -15 -12 10 -15 4 -19 -17 -11 -24
10 -30 3 -25 -27 4 -21 -1 -34 -11 -27 -10 6 -20 27 -20 45 -2 27 -5 26 -18
-6 -9 -22 -9 -49 -1 -60 9 -11 26 -60 37 -110 l22 -90 -12 100 c-10 94 13 118
27 27 4 -23 16 -56 28 -74 19 -30 20 -30 10 1 -5 19 -1 40 10 47 13 8 13 21
-1 38 -11 13 -15 31 -7 38 7 7 2 13 -11 13 -13 0 -22 16 -21 35 1 21 5 25 11
10 6 -14 19 -20 29 -14 11 7 18 5 16 -5 -1 -9 -1 -23 2 -31 3 -8 7 -42 10 -75
3 -33 6 -73 8 -90 1 -16 12 -30 24 -30 13 0 18 18 12 40 -6 22 -2 45 8 51 10
6 18 -11 18 -39 0 -60 34 -86 67 -51 18 19 17 21 -5 9 -19 -11 -23 -9 -14 7
20 31 168 -85 193 -150 17 -45 46 -56 124 -48 19 2 35 -6 35 -17 0 -11 14 -16
30 -9 17 6 44 0 60 -13 24 -20 30 -19 31 3 1 15 10 9 19 -13 9 -22 18 -28 19
-13 1 24 6 24 34 0 30 -24 33 -22 22 18 -6 25 -3 50 7 56 22 14 4 49 -24 49
-11 0 -15 -11 -8 -25 7 -14 0 -9 -15 10 -16 19 -35 29 -42 21 -7 -7 -13 6 -13
28 0 31 -11 39 -50 35 -27 -3 -51 5 -52 18 -1 13 -9 1 -18 -27 -15 -47 -16
-45 -18 17 -2 58 -6 64 -32 43 -25 -20 -30 -19 -30 9 0 18 -7 29 -16 23 -9 -5
-31 5 -49 24 -48 51 -90 82 -98 74 -15 -15 -1 128 15 153 20 33 31 75 31 122
0 20 8 30 20 23 11 -6 25 7 31 30 6 23 19 37 28 31 10 -6 18 -1 18 12 0 13 14
18 30 12 19 -7 30 0 30 20 0 19 11 27 29 20 19 -7 25 -1 18 18 -8 21 -2 26 21
17 18 -7 44 -3 59 10 15 12 34 15 43 7 9 -8 10 -4 3 9 -8 13 -5 29 7 36 11 7
20 1 20 -14 1 -18 5 -19 15 -4 20 29 88 61 125 59 17 -1 35 5 41 14 11 15 81
36 134 40 14 1 25 9 25 18 0 9 14 11 30 4 17 -6 30 -1 30 11 0 23 54 21 95 -5
16 -10 25 -4 25 17 0 19 11 29 25 24 14 -4 50 4 80 19 43 22 55 23 55 3 1 -20
4 -20 18 1 9 14 22 26 29 25 13 -1 22 1 125 34 33 11 74 13 90 5 15 -8 51 -8
78 0 34 10 39 16 14 17 -43 2 -191 75 -240 118 -33 29 -35 29 -21 -5z"/>
<path d="M4093 3290 c6 -16 19 -30 28 -30 9 0 13 -19 8 -43 -4 -23 -2 -37 5
-30 7 7 25 -5 40 -27 16 -22 39 -40 52 -39 13 0 7 13 -15 30 -21 16 -30 29
-20 30 11 0 4 9 -14 20 -22 12 -29 34 -22 62 8 30 4 39 -12 29 -13 -8 -23 -5
-23 7 0 11 -9 21 -19 21 -11 0 -15 -13 -8 -30z"/>
<path d="M4374 3307 c-8 -7 -4 -25 9 -40 12 -15 15 -27 6 -27 -9 0 6 -25 33
-55 l48 -55 -54 48 c-30 26 -51 54 -46 63 12 19 -40 62 -56 46 -7 -7 6 -38 28
-70 22 -31 35 -57 27 -57 -8 0 -3 -13 10 -29 14 -16 19 -38 12 -49 -6 -10 -3
-25 7 -31 24 -15 20 -91 -5 -91 -10 0 -13 18 -7 40 6 22 2 45 -8 51 -10 6 -18
-12 -18 -41 0 -29 -8 -47 -19 -41 -10 6 -15 36 -11 66 8 51 6 51 -21 -11 -29
-65 -23 -115 11 -94 9 6 23 1 30 -10 7 -11 21 -15 31 -9 11 6 39 -3 63 -20 56
-39 104 -40 89 -2 -6 16 3 32 23 37 31 9 31 10 -1 12 -38 2 -48 34 -15 45 28
10 63 137 37 137 -10 0 -15 7 -9 17 22 35 -106 160 -151 148 -30 -8 -39 -4
-29 12 16 25 7 31 -14 10z"/>
<path d="M3971 3235 c-14 -45 -5 -95 17 -95 12 0 10 -8 -5 -18 -20 -13 -17
-19 13 -27 31 -8 37 -2 30 33 -6 25 -3 33 7 19 13 -17 23 -16 39 2 17 18 9 30
-35 49 -31 14 -52 34 -46 44 6 10 6 18 0 18 -7 0 -16 -11 -20 -25z"/>
<path d="M4231 3241 c-7 -10 15 -39 48 -63 33 -24 54 -53 47 -64 -7 -11 -2
-14 11 -6 13 8 23 3 23 -10 0 -14 6 -19 13 -12 7 7 2 25 -10 40 -12 15 -18 33
-12 39 6 6 -16 30 -48 53 -35 25 -65 34 -72 23z"/>
<path d="M3849 3219 c-7 -12 -26 -17 -41 -11 -15 6 -26 4 -24 -4 3 -8 -7 -34
-20 -59 -17 -31 -18 -45 -4 -45 13 0 17 -9 10 -20 -26 -41 -46 -18 -39 45 l8
65 -22 -58 c-19 -49 -17 -63 11 -83 21 -16 26 -29 13 -35 -12 -6 -11 -9 4 -6
14 3 26 16 28 29 1 13 4 28 7 33 8 15 15 46 19 85 2 19 8 25 14 12 5 -12 26
-18 48 -13 41 11 54 46 18 46 -12 0 -16 9 -9 20 7 11 8 20 2 20 -5 0 -16 -10
-23 -21z"/>
<path d="M3650 3124 c9 -25 6 -25 -20 -4 -26 22 -29 20 -18 -7 7 -18 20 -33
29 -33 9 0 20 -16 24 -35 4 -19 12 -3 17 37 6 50 1 71 -17 71 -15 0 -22 -12
-15 -29z"/>
<path d="M3361 2991 c-12 -29 -31 -72 -43 -95 -17 -32 -16 -39 5 -32 15 5 28
18 29 28 1 10 12 44 25 76 13 32 20 62 14 68 -5 5 -19 -15 -30 -45z"/>
<path d="M3668 2976 c-8 -13 -5 -17 7 -9 12 8 27 -3 34 -23 6 -21 25 -37 41
-37 17 0 26 4 20 9 -5 6 1 25 15 42 13 18 16 26 7 18 -9 -7 -37 -5 -63 5 -32
11 -52 10 -61 -5z"/>
<path d="M3560 2950 c20 -24 20 -30 -1 -30 -32 0 -13 -21 24 -27 15 -2 40 -12
56 -22 16 -10 8 10 -16 45 -25 35 -55 64 -67 64 -13 0 -11 -11 4 -30z"/>
<path d="M4109 2855 c-7 -36 -23 -76 -34 -90 -14 -17 -10 -28 13 -37 17 -7 27
-19 22 -28 -5 -8 3 -26 19 -39 16 -13 24 -37 17 -53 -9 -24 -15 -23 -37 6 -14
20 -22 42 -17 49 5 8 1 19 -9 25 -10 7 -23 -6 -29 -28 -6 -22 -2 -40 7 -40 10
0 12 -14 6 -31 -11 -27 -16 -27 -48 2 -39 35 -79 25 -79 -20 0 -14 15 -38 33
-54 30 -24 31 -23 10 18 -29 54 15 66 57 15 31 -37 62 -20 46 26 -11 29 -6 28
32 -5 33 -29 43 -32 38 -10 -3 16 4 27 16 25 13 -2 20 18 17 45 -4 32 5 49 24
49 16 0 24 -8 18 -19 -6 -10 -3 -23 7 -30 10 -6 16 5 13 24 -4 23 -22 34 -53
33 -26 -1 -59 12 -72 30 -30 39 -33 69 -6 52 11 -7 15 0 9 16 -6 15 -1 51 10
81 11 29 12 53 2 53 -10 0 -24 -29 -32 -65z"/>
<path d="M4160 2869 c-15 -38 -12 -63 12 -100 38 -57 52 -63 34 -14 -11 29 -9
31 17 10 17 -13 38 -18 47 -10 9 8 11 5 4 -7 -7 -12 1 -39 17 -60 27 -36 29
-34 20 20 -5 32 -21 66 -35 75 -14 9 -18 17 -9 17 10 0 8 12 -5 28 -18 21 -16
30 5 38 17 7 27 -1 26 -20 -2 -18 6 -35 17 -39 11 -4 21 15 23 41 2 44 -34 70
-96 72 -24 0 -32 -77 -10 -99 17 -18 14 -20 -12 -10 -25 9 -31 27 -23 61 16
64 -8 62 -32 -3z"/>
<path d="M1810 2829 c-744 -161 -1166 -613 -1125 -1206 11 -165 69 -403 98
-403 9 0 17 -14 17 -31 0 -39 50 -92 69 -73 8 8 13 5 10 -6 -11 -57 3 -94 32
-82 17 6 26 4 20 -6 -6 -10 3 -29 19 -42 17 -14 30 -36 30 -50 0 -113 375
-346 770 -479 578 -193 1732 -167 2570 59 73 20 462 151 583 196 74 28 139 45
145 39 7 -6 12 -1 12 12 0 13 11 23 24 23 54 0 308 172 428 290 150 147 170
206 33 96 -99 -79 -154 -117 -205 -140 -16 -7 -34 -18 -40 -25 -5 -6 -41 -26
-80 -45 -204 -98 -298 -136 -337 -136 -24 0 -43 -7 -43 -16 0 -17 -107 -52
-290 -93 -66 -15 -142 -33 -170 -39 -227 -56 -722 -132 -1060 -163 -49 -4
-135 -13 -190 -18 -796 -82 -1550 -14 -1721 157 -16 17 -42 26 -58 20 -15 -6
-32 -2 -39 9 -6 10 3 25 22 32 18 7 40 1 48 -13 9 -14 23 -18 31 -9 23 23 -37
54 -79 41 -27 -9 -35 -2 -30 25 3 20 -5 36 -17 37 -13 0 -31 7 -40 17 -9 9 -5
13 11 10 15 -4 31 4 36 18 6 16 -7 23 -37 20 -35 -4 -47 5 -47 35 0 27 -13 40
-40 40 -29 0 -38 11 -34 40 5 33 2 35 -16 10 -22 -32 -80 18 -80 69 0 23 -81
82 -104 75 -8 -2 -9 10 -3 26 6 17 0 44 -14 61 -13 16 -19 36 -12 43 7 7 1 27
-14 44 -80 95 -120 511 -56 588 20 24 19 32 -1 39 -21 7 -21 15 1 42 16 18 23
33 17 33 -25 0 139 260 181 286 14 9 25 29 25 44 0 16 26 43 58 59 32 17 75
51 96 76 21 25 55 56 77 69 85 53 238 126 262 126 14 0 32 11 41 25 9 14 39
27 66 28 28 2 112 20 187 40 134 35 137 35 159 -4 29 -50 31 -75 5 -93 -14
-10 -12 -23 4 -39 42 -42 28 -55 -37 -36 -58 16 -61 15 -34 -17 43 -49 58
-101 34 -115 -12 -7 -16 -24 -11 -38 5 -14 -12 -38 -39 -52 -50 -27 -68 -65
-21 -47 15 5 38 -4 52 -21 15 -18 17 -31 5 -31 -11 0 -25 11 -31 25 -6 15 -10
11 -11 -10 -2 -28 -11 -31 -55 -14 -29 11 -57 16 -62 11 -5 -6 14 -16 43 -23
28 -7 52 -19 52 -27 0 -24 -76 -79 -91 -65 -8 7 -10 0 -5 -17 5 -16 29 -31 53
-32 35 -2 41 5 31 37 -8 26 -4 37 11 32 13 -4 23 -15 22 -23 -1 -8 13 -44 31
-79 21 -42 23 -56 6 -40 -14 14 -35 25 -47 25 -12 0 -9 -8 6 -18 21 -13 22
-26 5 -58 -27 -51 -28 -70 -2 -54 11 7 20 -6 20 -28 0 -26 -10 -37 -27 -30
-31 11 -86 -46 -64 -67 8 -8 23 1 34 21 32 57 56 19 47 -75 -7 -63 -1 -90 20
-98 22 -9 25 -1 12 33 -8 24 -9 67 -1 94 8 28 16 37 17 20 30 -424 709 -691
1451 -571 99 16 181 27 184 25 2 -3 -105 -53 -239 -112 -134 -60 -328 -148
-430 -196 -103 -48 -194 -82 -203 -76 -13 7 -41 -32 -41 -57 0 -20 187 7 240
35 39 20 160 75 270 122 412 178 621 275 652 302 17 15 58 28 92 28 33 0 85
19 114 42 135 106 213 118 778 118 508 0 574 7 574 61 0 29 -852 52 -1030 28
l-80 -11 76 64 c96 80 154 193 154 298 0 49 8 77 20 70 12 -7 14 2 6 23 -15
40 -24 22 -64 -127 -150 -557 -1853 -758 -2344 -276 -153 150 -171 371 -90
1075 22 192 21 215 -7 213 -17 -1 -130 -23 -251 -49z"/>
<path d="M4376 2857 c-17 -51 6 -100 36 -76 14 12 35 17 46 10 11 -6 18 7 16
29 -2 27 -12 37 -32 30 -16 -6 -35 -1 -43 12 -10 16 -17 15 -23 -5z"/>
<path d="M3813 2781 c5 -27 15 -55 21 -61 7 -5 7 10 1 35 -6 25 -3 45 7 45 10
0 18 -13 18 -29 0 -16 7 -33 16 -39 9 -5 13 15 9 45 -6 36 -20 54 -45 54 -27
0 -34 -11 -27 -50z"/>
<path d="M2520 2760 c0 -11 1 -27 1 -35 1 -8 -18 -20 -42 -25 -43 -10 -43 -10
-3 -46 39 -35 40 -35 37 0 -2 25 9 34 37 31 36 -5 36 -4 6 15 -19 12 -29 34
-23 51 6 16 6 29 -1 29 -7 0 -12 -9 -12 -20z"/>
<path d="M3321 2711 c-16 -19 -13 -33 9 -51 16 -13 24 -35 17 -47 -8 -13 -6
-17 2 -9 24 22 76 -40 58 -69 -23 -37 -26 -75 -5 -75 10 0 19 11 20 25 1 14
13 -1 27 -33 16 -37 29 -48 35 -31 5 16 -7 45 -27 67 -44 47 -29 80 23 48 20
-13 33 -31 28 -40 -6 -8 4 -10 21 -4 31 12 44 50 16 46 -44 -7 -47 6 -14 47
21 25 25 34 9 20 -34 -30 -100 -33 -100 -4 0 12 8 16 18 10 10 -6 14 7 8 29
-15 55 -117 105 -145 71z"/>
<path d="M4491 2612 c-44 -50 -83 -86 -88 -81 -5 5 -21 -8 -35 -28 -24 -34
-254 -142 -418 -196 -54 -17 -227 -48 -285 -51 -40 -1 -65 -13 -65 -29 0 -15
-14 -27 -31 -27 -17 0 -27 -7 -22 -15 5 -9 53 -12 106 -8 76 7 88 12 57 25
-35 15 -33 17 12 13 29 -3 67 8 86 23 28 24 31 23 21 -4 -9 -24 -2 -29 29 -20
23 6 37 19 31 28 -6 10 -2 18 10 18 11 0 21 -8 21 -18 0 -10 18 -14 40 -8 22
6 40 18 40 28 0 9 19 27 42 39 30 16 39 17 29 1 -17 -29 46 -19 99 15 40 26
40 26 0 14 -39 -11 -39 -11 -1 19 45 35 79 40 60 9 -7 -12 24 -3 70 20 46 24
88 56 94 72 6 16 19 24 29 18 10 -6 18 1 18 16 0 16 14 28 31 28 17 0 26 -11
20 -26 -5 -15 -1 -27 10 -27 27 0 24 47 -6 79 -20 21 -20 24 0 13 14 -8 26 -5
28 7 1 11 3 30 5 42 1 11 14 28 29 37 16 10 24 28 20 41 -4 13 -43 -17 -86
-67z"/>
<path d="M4605 2615 c5 -14 28 -24 51 -24 23 1 40 -4 38 -12 -2 -7 111 -72
251 -144 371 -191 570 -350 531 -423 -20 -38 -19 -39 11 -15 31 26 42 18 35
-24 -2 -10 19 -12 46 -5 29 7 56 2 64 -11 10 -16 4 -20 -17 -12 -19 7 -36 0
-43 -17 -7 -17 -3 -25 8 -18 11 7 30 -13 42 -44 12 -31 30 -72 40 -91 26 -49
21 -172 -10 -258 -15 -43 -19 -85 -9 -100 24 -39 21 -57 -8 -47 -31 11 -81
-27 -112 -85 -21 -38 -19 -45 7 -45 18 0 27 -9 19 -21 -7 -11 -27 -19 -46 -18
-58 6 -83 0 -83 -21 0 -62 115 -11 200 88 50 58 97 102 105 97 9 -4 14 -1 12
9 -2 9 7 41 20 72 59 145 34 435 -36 419 -13 -4 -18 4 -11 15 49 79 -338 411
-680 585 -278 142 -442 200 -425 150z m1132 -975 c-3 -44 -12 -80 -21 -80 -9
0 -14 36 -13 80 2 44 11 80 21 80 10 0 15 -36 13 -80z"/>
<path d="M2166 2490 c8 -60 28 -84 97 -119 78 -38 77 -38 77 2 0 19 -6 28 -13
21 -7 -7 -30 6 -50 29 -20 24 -37 35 -37 25 -1 -10 -19 5 -40 32 -35 44 -39
45 -34 10z"/>
<path d="M4393 2390 c-17 -17 -36 -31 -42 -31 -41 3 -51 -3 -51 -30 0 -33 103
7 131 52 22 36 -4 43 -38 9z"/>
<path d="M4476 2383 c-14 -20 -47 -48 -73 -62 -35 -18 -45 -37 -38 -74 8 -38
-2 -55 -48 -79 -32 -16 -53 -38 -46 -49 6 -10 2 -19 -10 -19 -11 0 -21 9 -21
19 0 24 -115 -14 -133 -44 -9 -15 -1 -17 25 -6 86 35 112 31 38 -6 -105 -52
-79 -54 40 -3 57 24 87 48 79 62 -9 15 -1 18 27 9 30 -9 59 5 106 51 l66 64
-54 -13 c-57 -14 -79 29 -31 59 15 9 18 5 9 -14 -8 -15 -2 -12 14 7 35 43 62
46 47 5 -20 -50 15 -33 40 20 13 28 16 50 7 50 -9 0 -21 -11 -27 -25 -6 -17
-10 -15 -11 6 -1 17 9 42 22 55 13 13 18 24 11 24 -7 0 -24 -17 -39 -37z"/>
<path d="M2890 2363 c5 -14 10 -30 10 -35 0 -5 18 0 40 12 55 29 50 50 -10 50
-34 0 -47 -9 -40 -27z"/>
<path d="M2375 2369 c14 -7 25 -25 25 -41 0 -15 10 -28 21 -28 12 0 16 9 9 20
-18 29 16 25 59 -7 21 -15 31 -37 23 -50 -19 -30 -66 -30 -77 1 -4 14 -22 18
-46 9 -53 -21 -6 -48 77 -45 53 2 64 10 62 47 0 25 8 45 19 45 26 0 -1 26 -33
32 -105 20 -160 27 -139 17z"/>
<path d="M2660 2338 c0 -13 -17 -18 -39 -13 -23 6 -43 -1 -49 -18 -7 -17 -3
-24 10 -16 11 7 34 -4 51 -24 16 -20 24 -26 17 -12 -7 14 -2 25 11 25 13 0 19
-16 14 -36 -7 -26 3 -37 38 -40 48 -4 64 23 27 46 -11 7 -21 1 -21 -14 -1 -14
-11 -3 -23 24 -12 28 -20 61 -18 75 2 14 -1 25 -7 25 -6 0 -11 -10 -11 -22z"/>
<path d="M3547 2295 c2 -43 -6 -63 -23 -60 -26 6 -57 -49 -38 -68 16 -16 94
68 94 102 0 16 9 34 20 41 26 16 6 50 -29 50 -18 0 -26 -23 -24 -65z"/>
<path d="M2091 2256 c11 -57 108 -156 153 -156 20 0 37 -11 37 -25 1 -14 10
-7 19 15 17 40 17 40 19 -1 2 -77 134 -135 134 -59 0 29 -31 39 -90 31 -15 -2
-22 5 -15 16 12 19 -24 51 -182 162 -78 55 -83 57 -75 17z"/>
<path d="M4265 2238 c-63 -32 -64 -34 -18 -42 32 -6 55 3 72 29 32 51 23 53
-54 13z"/>
<path d="M4050 2220 c7 -11 -10 -20 -39 -20 -28 0 -51 -11 -51 -25 -1 -16 -6
-18 -15 -4 -18 25 -56 25 -78 1 -10 -11 -7 -12 8 -4 15 9 25 3 25 -14 0 -25
14 -24 90 3 80 29 125 83 69 83 -12 0 -16 -9 -9 -20z"/>
<path d="M2381 2155 c2 -42 3 -42 17 -6 14 37 16 36 27 -7 7 -26 22 -40 34
-33 11 7 21 4 21 -8 0 -11 15 -21 32 -21 25 0 28 6 11 27 -13 15 -17 33 -9 40
24 24 -26 13 -53 -12 -22 -20 -25 -19 -15 8 7 20 -1 38 -19 45 -45 18 -47 16
-46 -33z"/>
<path d="M3114 2172 c-16 -42 3 -52 97 -52 76 0 109 22 109 72 0 26 -59 2 -66
-27 -9 -33 -9 -33 -12 0 -3 43 -42 47 -42 5 0 -16 -9 -30 -19 -30 -11 0 -15
14 -8 30 7 18 0 30 -19 30 -16 0 -35 -13 -40 -28z"/>
<path d="M3332 2168 c-17 -44 -16 -48 16 -48 15 0 32 18 38 40 12 48 -36 56
-54 8z"/>
<path d="M2841 2141 c-14 -26 -14 -43 -1 -51 11 -7 20 -1 20 14 1 19 4 20 16
2 9 -14 26 -17 41 -8 19 12 15 19 -17 28 -25 6 -38 21 -31 33 7 11 9 21 3 21
-6 0 -20 -17 -31 -39z"/>
<path d="M3784 2158 c-27 -10 -41 -27 -33 -40 10 -16 19 -14 31 5 14 22 17 22
18 -2 0 -21 6 -23 22 -7 37 37 13 63 -38 44z"/>
<path d="M2557 2107 c-7 -46 -3 -60 17 -53 14 6 26 0 26 -12 0 -12 10 -22 22
-22 12 0 17 13 11 29 -6 17 -3 35 8 42 26 16 24 69 -2 69 -12 0 -15 -10 -8
-22 8 -12 2 -30 -13 -40 -20 -12 -31 -4 -39 28 -10 38 -13 36 -22 -19z"/>
<path d="M3548 2111 c-7 -17 -21 -31 -31 -31 -11 0 -14 9 -7 20 7 11 4 20 -7
20 -11 0 -24 -11 -30 -25 -8 -19 -14 -19 -29 2 -10 15 -23 20 -28 10 -17 -31
-17 -167 -1 -167 9 0 16 25 16 55 -1 47 8 56 63 61 39 4 67 19 72 40 9 31 10
31 12 -1 1 -19 12 -35 23 -35 12 0 16 8 10 19 -6 10 -3 23 7 30 11 6 24 -4 29
-24 9 -28 10 -27 7 5 -5 50 -89 67 -106 21z"/>
<path d="M1472 2073 c6 -16 1 -35 -11 -42 -11 -7 -20 -38 -19 -67 0 -30 6 -43
11 -29 6 14 23 25 38 25 31 0 79 77 60 96 -7 7 -18 -8 -24 -32 -6 -24 -21 -44
-32 -44 -11 0 -14 22 -7 49 7 27 3 54 -8 61 -11 7 -15 -1 -8 -17z"/>
<path d="M3900 2070 c0 -16 -10 -30 -21 -30 -12 0 -16 9 -9 20 7 11 3 20 -9
20 -11 0 -21 -13 -21 -30 0 -16 -10 -30 -23 -30 -13 0 -19 -5 -14 -10 20 -20
130 32 130 61 0 16 -7 29 -16 29 -9 0 -17 -13 -17 -30z"/>
<path d="M1002 2055 c-27 -14 -51 -43 -54 -65 -5 -36 -2 -35 30 8 21 27 47 42
59 34 14 -9 23 -1 23 17 0 37 2 37 -58 6z"/>
<path d="M4284 2056 c-31 -31 -31 -102 0 -91 13 4 33 22 44 41 28 44 -9 85
-44 50z"/>
<path d="M2812 2028 c-16 -43 -15 -48 9 -48 12 0 16 9 9 20 -7 11 -3 20 9 20
11 0 21 -11 21 -25 1 -17 7 -15 19 4 13 20 11 35 -5 45 -36 23 -48 19 -62 -16z"/>
<path d="M3680 2030 c-47 -18 -57 -27 -30 -28 59 -2 130 20 130 40 0 23 -14
21 -100 -12z"/>
<path d="M4025 2047 c-14 -6 -25 -25 -25 -44 1 -28 3 -29 20 -3 14 22 19 23
20 4 0 -15 9 -21 20 -14 23 14 27 71 5 68 -8 0 -26 -6 -40 -11z"/>
<path d="M1166 2000 c5 -16 19 -28 32 -25 30 7 28 -29 -3 -43 -14 -6 -8 -9 13
-7 21 3 40 20 43 38 3 21 -7 31 -28 28 -18 -3 -40 5 -50 17 -10 14 -13 11 -7
-8z"/>
<path d="M1338 2011 c-2 -6 -4 -18 -6 -26 -1 -8 -10 -27 -19 -41 -22 -34 -3
-52 55 -55 40 -2 46 6 42 59 -4 53 -64 104 -72 63z"/>
<path d="M2541 1975 c2 -43 3 -43 19 -5 16 38 17 38 19 -5 0 -25 10 -45 21
-45 39 0 50 -4 75 -24 14 -12 26 -18 27 -13 14 71 12 79 -14 69 -15 -6 -29 0
-29 14 -1 13 -10 6 -19 -16 -17 -39 -17 -39 -19 3 0 23 -15 48 -33 55 -46 18
-48 16 -47 -33z"/>
<path d="M3880 1977 c-63 -27 -74 -36 -36 -30 30 4 50 0 44 -10 -6 -9 -1 -17
11 -17 11 0 21 16 21 35 1 29 4 30 19 6 16 -26 21 -25 32 5 20 52 8 54 -91 11z"/>
<path d="M4044 1956 c-33 -33 -30 -96 4 -96 39 0 79 54 65 90 -14 36 -37 38
-69 6z"/>
<path d="M5220 1959 c0 -12 8 -16 18 -10 9 6 29 -4 43 -21 21 -25 22 -34 1
-47 -18 -11 -14 -19 16 -26 48 -13 50 -8 19 51 -34 66 -97 100 -97 53z"/>
<path d="M2900 1900 c0 -28 11 -41 35 -39 68 7 85 -1 85 -42 0 -23 9 -36 20
-29 12 7 15 21 9 31 -10 16 13 26 52 23 6 -1 12 16 14 37 2 26 -10 39 -36 39
-22 0 -37 -11 -34 -25 3 -14 -8 -22 -25 -17 -16 4 -41 7 -54 8 -13 0 -22 9
-20 20 2 10 -7 23 -21 28 -15 6 -25 -8 -25 -34z"/>
<path d="M3537 1907 c-9 -32 -2 -46 25 -53 30 -8 38 0 37 43 -2 47 -4 48 -18
13 -16 -40 -16 -40 -24 0 -8 38 -9 38 -20 -3z"/>
<path d="M3140 1880 c0 -32 13 -40 68 -40 38 0 72 -11 77 -24 5 -15 12 -11 21
10 7 19 4 32 -9 29 -12 -3 -26 4 -30 16 -5 13 19 18 62 13 39 -5 66 -16 60
-26 -6 -10 1 -18 16 -18 14 0 28 16 29 35 2 30 -16 36 -116 39 -89 3 -116 -2
-106 -20 10 -18 7 -17 -13 1 -39 36 -59 31 -59 -15z"/>
<path d="M3765 1867 c-46 -51 -44 -87 4 -87 45 0 79 57 59 100 -17 37 -20 36
-63 -13z"/>
<path d="M1124 1865 c4 -24 -5 -33 -29 -29 -19 3 -35 -4 -35 -15 0 -28 46 -27
76 3 30 30 31 76 3 76 -11 0 -18 -16 -15 -35z"/>
<path d="M1515 1736 c-31 -33 -65 -52 -78 -44 -14 9 -18 5 -9 -8 7 -12 28 -17
46 -10 22 9 28 5 18 -10 -8 -13 -4 -40 8 -59 19 -31 20 -29 10 9 -10 37 -5 43
31 36 41 -8 42 -7 11 28 -31 34 -30 38 11 66 24 16 36 34 26 40 -11 6 -44 -16
-74 -48z"/>
<path d="M3547 1726 c-7 -20 -26 -51 -41 -69 -24 -27 -24 -34 0 -43 40 -15 82
17 68 52 -6 16 -2 38 9 49 14 14 13 25 -1 34 -12 7 -28 -3 -35 -23z"/>
<path d="M1160 1709 c0 -16 -11 -29 -25 -30 -15 0 -11 -11 10 -27 19 -14 35
-39 35 -54 1 -24 3 -24 18 0 10 15 27 21 38 14 12 -7 28 -2 36 11 8 14 6 18
-8 10 -11 -8 -27 -4 -34 7 -7 11 -21 16 -30 10 -27 -17 -39 19 -17 51 17 24
19 23 10 -6 -7 -19 -5 -34 3 -32 8 1 19 0 24 -2 6 -2 24 -7 40 -10 17 -4 39
-9 50 -11 57 -13 76 1 39 29 -23 17 -59 24 -87 17 -37 -9 -46 -5 -37 17 7 18
-3 30 -27 32 -21 1 -38 -10 -38 -26z"/>
<path d="M2592 1677 c5 -8 -2 -17 -14 -21 -14 -5 -10 -18 10 -35 29 -23 31
-22 19 9 -9 25 -5 33 15 26 15 -5 34 -36 41 -68 11 -51 13 -49 15 25 2 75 -2
83 -46 80 -27 -2 -44 -9 -40 -16z"/>
<path d="M3215 1609 c-30 -17 -55 -35 -55 -40 0 -6 17 -1 39 10 53 29 62 26
47 -11 -10 -28 -5 -27 31 4 79 68 39 92 -62 37z"/>
<path d="M1213 1524 c-28 -32 -29 -37 -3 -37 16 0 30 13 30 30 0 23 6 25 22 9
13 -13 35 -18 50 -12 17 6 28 -3 28 -21 0 -17 9 -36 20 -43 11 -7 15 2 10 19
-6 17 -15 46 -20 63 -8 24 -17 27 -37 11 -17 -15 -33 -15 -46 -2 -13 13 -31 8
-54 -17z"/>
<path d="M1128 1375 c1 -41 12 -78 25 -83 14 -6 19 6 12 30 -7 29 -2 36 23 26
18 -7 32 -2 32 11 0 13 8 18 19 12 10 -6 23 -3 30 7 6 10 -3 23 -20 30 -17 6
-35 -1 -41 -17 -14 -36 -63 -19 -74 26 -5 18 -7 -1 -6 -42z"/>
<path d="M1620 1250 c-2 -11 -6 -34 -9 -51 -4 -21 11 -32 51 -35 32 -3 58 4
58 15 0 11 -13 15 -30 8 -19 -7 -37 6 -49 36 -10 26 -20 38 -21 27z"/>
<path d="M1960 1174 c-41 -64 -40 -84 4 -112 23 -14 35 -16 27 -3 -8 12 4 21
29 21 23 0 37 9 30 20 -8 13 -25 13 -51 -1 -42 -22 -48 19 -11 77 9 15 13 30
8 34 -4 5 -20 -12 -36 -36z"/>
<path d="M1291 1182 c-36 -14 -35 -16 10 -30 l49 -14 -45 -18 c-25 -10 -45
-22 -45 -25 0 -16 101 1 126 21 15 13 35 17 44 9 9 -8 10 -3 1 11 -8 15 -28
22 -45 15 -42 -16 -77 10 -43 31 33 21 2 21 -52 0z"/>
<path d="M1671 1095 c3 -19 -10 -46 -29 -60 -19 -14 -42 -38 -51 -55 -10 -16
5 -10 32 15 28 25 55 41 61 35 6 -6 26 14 46 44 19 31 23 45 9 31 -15 -14 -34
-25 -42 -25 -8 0 -18 11 -23 25 -4 14 -6 9 -3 -10z"/>
<path d="M1864 1126 c2 -9 -6 -35 -19 -59 -28 -49 23 -87 63 -46 16 15 11 17
-16 7 -30 -12 -35 -9 -21 14 26 41 28 76 7 89 -11 7 -17 5 -14 -5z"/>
<path d="M4320 1119 c0 -11 14 -26 31 -32 23 -9 25 -18 7 -39 -12 -15 -31 -23
-40 -17 -10 6 -18 2 -18 -9 0 -46 78 -37 87 10 2 10 13 17 25 16 12 -1 21 9
21 23 0 14 -11 21 -24 16 -13 -5 -29 5 -36 22 -13 35 -53 42 -53 10z"/>
<path d="M2067 1064 c-68 -58 -56 -97 28 -92 24 1 55 -10 67 -25 12 -14 31
-21 41 -15 10 6 36 -10 58 -35 24 -29 38 -35 34 -17 -3 16 -17 39 -31 50 -14
12 -29 38 -32 59 -6 40 -64 60 -83 29 -6 -10 -34 -18 -61 -18 -29 0 -45 9 -38
20 7 12 23 15 36 7 13 -7 17 -6 9 3 -8 9 0 33 18 53 47 53 27 44 -46 -19z"/>
<path d="M1385 1060 c-36 -43 -77 -56 -53 -17 9 15 5 18 -12 7 -21 -13 -19
-21 7 -40 18 -13 26 -31 18 -40 -8 -9 -4 -10 10 -2 14 8 21 23 15 32 -6 9 -2
23 10 30 11 7 20 1 20 -12 0 -37 20 -10 29 39 11 53 0 54 -44 3z"/>
<path d="M4108 1050 c0 -35 7 -43 24 -28 13 10 33 17 44 14 11 -3 21 3 22 14
1 11 -10 20 -23 21 -14 0 -34 6 -46 13 -12 8 -21 -6 -21 -34z"/>
<path d="M4540 1070 c-21 -26 -21 -29 4 -19 39 14 37 -86 -2 -110 -19 -11 -20
-20 -4 -30 13 -8 17 -24 9 -35 -8 -14 -4 -16 11 -7 14 8 20 27 14 42 -6 16 5
37 24 48 19 11 23 20 10 20 -13 1 -21 18 -17 38 12 59 -18 91 -49 53z"/>
<path d="M1766 1069 c6 -12 -15 -37 -47 -57 -57 -33 -64 -74 -13 -70 16 1 16
5 -2 12 -20 7 -17 17 10 37 42 33 74 37 56 9 -7 -11 3 -20 21 -20 29 0 30 5 6
33 -15 18 -24 37 -20 42 3 4 0 14 -9 22 -8 7 -9 3 -2 -8z"/>
<path d="M1918 963 c-11 -32 -42 -69 -69 -84 -27 -14 -49 -34 -49 -45 0 -10
23 -4 50 14 28 18 51 26 52 17 1 -8 8 7 16 35 8 27 30 53 50 57 25 5 32 -1 21
-18 -10 -16 -7 -20 8 -11 30 18 11 52 -29 52 -17 0 -25 9 -18 20 7 11 7 20 0
20 -7 0 -21 -26 -32 -57z"/>
<path d="M1436 932 c45 -58 44 -100 0 -56 -29 29 -76 32 -76 5 0 -11 15 -14
33 -7 23 9 29 5 19 -11 -19 -30 -66 -30 -79 2 -6 15 -10 12 -11 -9 -1 -18 7
-39 18 -46 12 -7 15 -21 9 -31 -6 -11 -1 -19 12 -19 13 0 18 14 12 30 -16 40
7 38 37 -3 19 -26 27 -28 40 -7 10 16 8 21 -5 13 -11 -7 -26 2 -33 19 -9 23
-4 29 16 21 16 -6 40 2 53 18 13 16 16 29 6 29 -9 1 6 19 33 42 48 39 48 40 3
18 -38 -19 -54 -17 -89 13 -40 36 -40 35 2 -21z"/>
<path d="M1751 929 c-30 -23 -34 -34 -15 -53 19 -19 32 -17 58 10 46 46 10 82
-43 43z"/>
<path d="M1565 908 c8 -8 5 -26 -6 -39 -15 -18 -14 -29 0 -39 12 -7 17 -20 12
-29 -20 -32 45 -66 83 -43 31 18 29 21 -20 21 -31 1 -51 9 -45 20 6 10 1 25
-12 33 -16 10 -13 21 11 39 31 23 31 25 -2 38 -19 7 -28 7 -21 -1z"/>
<path d="M2100 841 c0 -30 47 -51 55 -25 13 38 37 28 61 -26 21 -45 18 -51
-31 -63 l-55 -14 55 -18 c31 -10 50 -28 42 -40 -7 -12 -4 -15 8 -8 12 7 17 30
11 51 -5 21 0 43 11 50 31 19 -64 112 -114 112 -24 0 -43 -8 -43 -19z"/>
<path d="M2438 773 c-15 -24 -35 -53 -43 -67 -9 -13 -5 -30 8 -38 14 -8 18 -6
10 7 -7 11 1 26 17 32 17 7 30 3 30 -8 0 -10 9 -19 21 -19 14 0 14 12 1 37
-20 37 -11 42 85 44 49 1 33 16 -41 37 -49 14 -64 10 -88 -25z"/>
<path d="M1790 780 c-8 -13 -27 -18 -43 -12 -16 6 -34 -2 -40 -18 -6 -16 -18
-26 -26 -21 -8 6 -32 -4 -53 -21 -36 -29 -36 -29 7 -8 34 16 45 15 45 -3 0
-20 5 -20 24 -1 32 32 62 31 44 -1 -8 -15 -7 -18 4 -8 10 9 18 22 18 30 1 25
33 63 54 63 13 0 12 -11 -4 -30 -14 -16 -18 -30 -9 -30 8 0 -1 -18 -21 -40
-24 -27 -28 -40 -11 -40 20 0 20 -8 -2 -35 -24 -31 -24 -32 7 -9 18 15 29 39
24 53 -6 14 4 31 21 38 18 7 28 30 24 56 -8 51 -42 71 -63 37z"/>
<path d="M5746 5 c52 -4 133 -4 180 0 46 5 3 8 -96 8 -99 0 -137 -4 -84 -8z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

@ -0,0 +1 @@
<svg id="visual" viewBox="0 0 900 450" width="900" height="450" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"><rect x="0" y="0" width="900" height="450" fill="#010400"></rect><path d="M0 325L129 280L257 324L386 325L514 318L643 303L771 284L900 300L900 451L771 451L643 451L514 451L386 451L257 451L129 451L0 451Z" fill="#2b241e"></path><path d="M0 296L129 337L257 350L386 319L514 307L643 343L771 347L900 353L900 451L771 451L643 451L514 451L386 451L257 451L129 451L0 451Z" fill="#322922"></path><path d="M0 341L129 372L257 367L386 346L514 345L643 355L771 363L900 360L900 451L771 451L643 451L514 451L386 451L257 451L129 451L0 451Z" fill="#3a2d27"></path><path d="M0 383L129 404L257 405L386 384L514 398L643 396L771 362L900 394L900 451L771 451L643 451L514 451L386 451L257 451L129 451L0 451Z" fill="#42312c"></path><path d="M0 396L129 409L257 403L386 422L514 411L643 422L771 396L900 402L900 451L771 451L643 451L514 451L386 451L257 451L129 451L0 451Z" fill="#4a3532"></path></svg>

After

Width:  |  Height:  |  Size: 1017 B

Loading…
Cancel
Save