This commit is contained in:
Daniel Schubert 2019-01-29 10:33:38 +01:00
parent 1bb2a4b138
commit cb13379f95
10 changed files with 5550 additions and 10 deletions

44
10.html
View File

@ -42,7 +42,7 @@
<section data-transition="slide" data-background="#4d7e65" data-background-transition="zoom">
<h1>LINUX</h1>
<h3>Das universelle Betriebssystem</h3>
<p>Eine Einführung - Teil 9
<p>Eine Einführung - Teil 10
<p>
<small>Deutsche Angestellten Akademie</small>
</p>
@ -52,10 +52,52 @@
</aside>
</section>
<section data-transition="slide" data-background="#4d7e65" data-background-transition="convex">
<h2>Verschlüsselung mit GnuPG</h2>
</section>
<section>
<h3>Geschichte</h3>
<ul>
<li class="fragment">1991 - Phil Zimmermann - Pretty Good Privacy ( PGP ).</li>
<li class="fragment">Exportbeschränkungen der USA verhinderten Internationale Verbreitung</li>
<li class="fragment">Der Quellcode wurde 1995 als Buch „PGP Source Code and Internals“ exportiert ;-) </li>
<li class="fragment">1997 - Aufkauf durch McAffee: Quellcode wurde nicht mehr offengelegt</li>
<li class="fragment">1997 - OpenPGP Standard</li>
<li class="fragment">1997 - Werner Koch veröffentlicht GnuPG unter der GPL</li>
</ul>
</section>
<section>
<h3>Funktionsweise</h3>
<h4>Key Generierung</h4>
<img src="img/Orange_blue_public_private_keygeneration_de.svg">
</section>
<section>
<h4>Verschlüsselung</h4>
<img src="img/Orange_blue_public_key_cryptography_de.svg">
</section>
<section>
<h4>Signierung</h4>
<img src="img/Orange_blue_digital_signature_de.svg">
</section>
<section>
<h4>Verschlüsselung für jmd. Anderen</h4>
<!-- <img style="margin: 0; max-height: 80vh !important; background: antiquewhite;" src="img/PGP_diagram_de.svg">
<p style="font-size: .3em">
Von <a href="//commons.wikimedia.org/w/index.php?title=User:Gregorerhardt&amp;action=edit&amp;redlink=1" class="new" title="User:Gregorerhardt (page does not exist)">Gregorerhardt</a> - <span class="int-own-work" lang="de">Eigenes Werk</span>, <a href="https://creativecommons.org/licenses/by-sa/4.0" title="Creative Commons Attribution-Share Alike 4.0">CC BY-SA 4.0</a>, <a href="https://commons.wikimedia.org/w/index.php?curid=37163956">Link</a>
-->
<img src="img/Public_key_encryption.svg">
</section>
<section data-transition="slide" data-background="lightblue" data-background-transition="zoom">
<h2 style="text-shadow: 5px 4px 15px black;">Systemverwaltung</h2>
</section>
<section data-transition="slide" data-background="#4d7e65" data-background-transition="convex">
<h2>Part 8 - Netzwerke</h2>
</section>

2
9.html
View File

@ -163,7 +163,7 @@ sudo dd if=/dev/zero of=/usr/disk-img/disk-quota.ext3 count=40960
<section>
<div>Gruppe erstellen, Benutzer hinzufügen
<pre><code>sudo groupadd quotagrp
sudo usermod -G quotagrp USERNAME </code></pre>
sudo usermod -aG quotagrp USERNAME </code></pre>
<div>Verzeichnis erstellen, Rechte setzen
<pre><code>sudo mkdir -p /quota/share
sudo chown -R root.quotagrp /quota/share

228
gpg.html Normal file
View File

@ -0,0 +1,228 @@
<!doctype html>
<html lang="de">
<meta charset="utf-8">
<title>Verschlüsselung mit GnuPG</title>
<meta name="description" content="Verschlüsselung mit GnuPG ">
<meta name="author" content="Daniel Schubert">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/league.css" id="theme">
<link rel="icon" href="img/openlogo-nd-25.png" type="img/png">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<style type="text/css">
.reveal img{ max-height: 60vh}
</style>
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section data-transition="slide" data-background="#4d7e65" data-background-transition="convex">
<h1>Verschlüsselung mit GnuPG</h1>
</section>
<section>
<h3>Geschichte</h3>
<ul>
<li class="fragment">1991 - Phil Zimmermann - Pretty Good Privacy ( PGP ).</li>
<li class="fragment">Exportbeschränkungen der USA verhinderten Internationale Verbreitung</li>
<li class="fragment">Der Quellcode wurde 1995 als Buch „PGP Source Code and Internals“ exportiert ;-) </li>
<li class="fragment">1997 - Aufkauf durch McAffee: Quellcode wurde nicht mehr offengelegt</li>
<li class="fragment">1997 - OpenPGP Standard</li>
<li class="fragment">1997 - Werner Koch veröffentlicht GnuPG unter der GPL</li>
</ul>
</section>
<section>
<h3>Funktionsweise</h3>
<h4>Key Generierung</h4>
<img style="max-height: 50vh" src="img/Orange_blue_public_private_keygeneration_de.svg">
</section>
<section>
<h4>Verschlüsselung</h4>
<img src="img/Orange_blue_public_key_cryptography_de.svg">
</section>
<section>
<h4>Signierung</h4>
<img src="img/Orange_blue_digital_signature_de.svg">
</section>
<section>
<h4>Verschlüsselung für jmd. Anderen</h4>
<img src="img/Public_key_encryption.svg">
</section>
<section>
<h4>Schlüsselaustausch</h4>
<ul>
<li class="fragment ">über Schlüsselserver</li>
<li class="fragment ">direkt ( per mail oder USB-Stick )</li>
<li class="fragment ">->dann sollte der Fingerprint verifiziert werden</li>
</ul>
<p class="fragment ">Der Private Schlüssel muss sicher verwahrt sein, sonst nützt alles nix.
</section>
<section>
<h4>KeyServer</h4>
<ul>
<li class="fragment ">zur Veröffentlichung d. öffentlichen Keys</li>
<li class="fragment ">Obacht: einmal veröffentlicht nicht mehr entfernbar</li>
<li class="fragment ">öffentlicher Key kann widerrufen werden</li>
<li class="fragment "> ->Widerrufszertifikat</li>
</ul>
</section>
<section>
<h4>Zusammenfassung - Verschlüsselung</h4>
<ol>
<li class="fragment ">Schlüsselpaar generieren: <br>Öffentlichen u. Privaten Key</li>
<li class="fragment "><span class="fragment highlight-red">Öffentlichen Key</span> weitergeben</li>
<li class="fragment "><span class="fragment highlight-blue">Privaten Key</span> sicher verwahren</li>
<li class="fragment ">Verschlüsselung d. Nachricht m. öffentlichem Schlüssel </li>
<li class="fragment ">Entschlüsselung d. Nachricht m. privatem Schlüssel</li>
<li class="fragment ">Mit dem <span class="fragment highlight-red">öffentlichen Schlüssel</span> verschlüsseltes kann nur mit dem <span class="fragment highlight-blue">privaten Schlüssel</span> entschlüsselt werden </li>
</ol>
</section>
<section>
<h4>Zusammenfassung - Signierung</h4>
<ul>
<li class="fragment ">Signierung garantiert dass die Nachricht unverändert ankam</li>
<li class="fragment ">Signierung mit <span class="fragment highlight-blue">privatem Key</span></li>
<li class="fragment ">überprüfung d. Signierung mit <span class="fragment highlight-red">öffentlichem Key</span></li>
</ul>
</section>
<section>
<h4>WOT - Web of Trust</h4>
<ul>
<li class="fragment ">Nutzer signieren ihre <span class="fragment highlight-red">öffentlichen</span> Schlüssel gegenseitig</li>
<li class="fragment ">Ausdruck des Vertrauens, dass ein Schlüssel einer best. Person gehört</li>
</ul>
</section>
<section>
<h4>Programme die GnuPG unterstützen:</h4>
<table><tbody><tr><td> <a href="https://wiki.ubuntuusers.de/Evolution/#GnuPG" class="internal">Evolution</a> </td><td> E-Mail </td></tr><tr><td> <a href="https://wiki.ubuntuusers.de/Thunderbird/Enigmail/" class="internal">Thunderbird</a> </td><td> E-Mail </td></tr><tr><td> <a href="https://wiki.ubuntuusers.de/KMail/Verschl%C3%BCsselung/" class="internal">KMail</a> </td><td> E-Mail </td></tr><tr><td> <a href="https://wiki.ubuntuusers.de/Claws_Mail/Plugins/#OpenPGP-Verschluesselung-mit-GnuPG" class="internal">Claws Mail</a> </td><td> E-Mail </td></tr><tr><td> <a href="https://wiki.ubuntuusers.de/Gajim/#c2c-Verschluesselung" class="internal">Gajim</a> </td><td> Jabber/Instant Messenger </td></tr><tr><td> <a href="https://wiki.ubuntuusers.de/Psi/#Verschluesselung" class="internal">Psi</a> </td><td> Jabber/Instant Messenger </td></tr><tr><td> <a href="https://wiki.ubuntuusers.de/Kopete/#Module" class="internal">Kopete</a> </td><td> Jabber/Instant Messenger </td></tr><tr><td><a href="https://gpg4win.de/index-de.html">GPG4Win</a> </td><td> Tools für Windows </td></tr></tbody></table>
</section>
<section>
<h3>Mit-Mach-Teil</h3>
Schlüsselpaar generieren
<pre><code>~$ gpg --full-gen-key </code></pre>
<p>Ausgabe:
<pre><code>Bitte wählen Sie, welche Art von Schlüssel Sie möchten:
(1) RSA und RSA (voreingestellt)
(2) DSA und Elgamal
(3) DSA (nur unterschreiben/beglaubigen)
(4) RSA (nur signieren/beglaubigen)
Ihre Auswahl?</code></pre>
</section>
<section>
<p>Liste öffentliche Schlüssel
<pre><code>~$ gpg --list-keys
gpg -k </code></pre>
<p>Liste private Schlüssel
<pre><code>~$ gpg --list-secret-keys
gpg -K
</code></pre>
</section>
<section>
<h4>Wiederrufszertifikat</h4>
<pre><code>~$ gpg --output Widerruf_Kennung.asc --gen-revoke Kennung </code></pre>
<p>Dieses Zertifikat einfach in den Keyring importieren -> Schlüssel ungültig
</section>
<section>
<h4>Schlüssel exportieren</h4>
<p>öffentlicher Key
<pre><code>~$ gpg -a --output gpg-key.asc --export KEY-ID</code></pre>
<p>Privater Key
<pre><code>~$ gpg -a --output gpg-secret-key.asc --export-secret-keys KEY-ID </code></pre>
</section>
<section>
<h4>Schlüssel suchen</h4>
<pre><code>~$ gpg --search-keys "Vorname Nachname"</code></pre>
<p>Schlüssel runterladen
<pre><code>~$ gpg --recv-keys Key_Id</code></pre>
</section>
<section>
GUI Frontend dafür: Seahorse
<pre><code>~$ sudo apt install seahorse</code></pre>
</section>
<section>
<span style="color: orange">Aufgabe:</span><p> Tauscht eure öffentlichen Schlüssel; <br>Sendet euch verschlüsselte Emails; <br>signiert gegenseitig eure Schlüssel; <br>Verschlüsselt eine Datei mit gpg.<br>
Sucht meinen Schlüssel und sendet mir verschlüsselte emails ;-)
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
// More info https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
transition: 'slide', // none/fade/slide/convex/concave/zoom
// More info https://github.com/hakimel/reveal.js#dependencies
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/search/search.js', async: true },
{ src: 'plugin/zoom-js/zoom.js', async: true },
{ src: 'plugin/notes/notes.js', async: true }
]
});
</script>
</body>
</html>

View File

@ -0,0 +1,532 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="979.94531"
height="621.84827"
id="svg2"
version="1.1"
inkscape:version="0.47 r22583"
sodipodi:docname="Orange_blue_digital_signature_de.text.svg">
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="232.46205"
inkscape:cy="240.23916"
inkscape:document-units="px"
inkscape:current-layer="g3616"
showgrid="true"
inkscape:window-width="1920"
inkscape:window-height="1005"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1">
<inkscape:grid
snapvisiblegridlinesonly="true"
enabled="true"
visible="true"
empspacing="5"
id="grid2816"
type="xygrid" />
</sodipodi:namedview>
<title
id="title5016">Public key cryptography</title>
<defs
id="defs4">
<marker
style="overflow:visible"
id="Arrow2Mend"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mend">
<path
transform="scale(-0.6,-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
id="path3686" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Send"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Send">
<path
transform="matrix(-0.3,0,0,-0.3,0.69,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
id="path3692" />
</marker>
<marker
style="overflow:visible"
id="Arrow1Send"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Send">
<path
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
id="path3674" />
</marker>
<inkscape:perspective
id="perspective10"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 526.18109 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
id="perspective3629" />
<marker
style="overflow:visible"
id="Arrow2Mendt"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mendt">
<path
transform="scale(-0.6,-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill:#729fcf;fill-rule:evenodd;stroke:#729fcf;stroke-width:0.625;stroke-linejoin:round"
id="path4869" />
</marker>
<marker
style="overflow:visible"
id="Arrow2MendtR"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2MendtR">
<path
transform="scale(-0.6,-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill:#f57900;fill-rule:evenodd;stroke:#f57900;stroke-width:0.625;stroke-linejoin:round"
id="path4943" />
</marker>
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
id="perspective3706" />
<marker
style="overflow:visible"
id="Arrow2Mendtc"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mendtc">
<path
transform="scale(-0.6,-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill:#f57900;fill-rule:evenodd;stroke:#f57900;stroke-width:0.625;stroke-linejoin:round"
id="path3722" />
</marker>
<inkscape:perspective
id="perspective3816"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective3841"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective3866"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<marker
style="overflow:visible"
id="Arrow2MendtcD"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2MendtcD">
<path
transform="scale(-0.6,-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="stroke-linejoin:round;font-size:12px;fill-rule:evenodd;stroke:#729fcf;stroke-width:0.625;fill:#729fcf"
id="path3944" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Mendtn"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mendtn">
<path
transform="scale(-0.6,-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="stroke-linejoin:round;font-size:12px;fill-rule:evenodd;stroke:#f57900;stroke-width:0.625;fill:#f57900"
id="path4043" />
</marker>
</defs>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Public key cryptography</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/publicdomain/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<g
transform="translate(83.75,-60.907078)"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Ebene 1">
<g
transform="translate(0,7.4609331)"
id="g3616">
<rect
style="fill:#555753;fill-opacity:1;stroke:#f57900;stroke-width:7.50000000000000000;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3610-5-8"
width="374.44531"
height="74.889061"
x="-80"
y="324.90125"
ry="24.963018" />
<g
style="font-size:14px;font-style:normal;font-weight:normal;fill:#eeeeec;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
id="text3804">
<path
d="m 28.050781,380.0737 -17.742187,-25.10156 0,24.63281 -4.4531253,0 0,-34.33594 1.875,0 17.2734373,23.74219 0,-23.74219 4.453125,0 0,34.80469 -1.40625,0"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3285" />
<path
d="m 50.339844,376.72214 c -1.781266,2.23437 -4.507826,3.35156 -8.179688,3.35156 -1.968757,0 -3.679693,-0.71094 -5.132812,-2.13281 -1.437503,-1.4375 -2.156252,-3.21875 -2.15625,-5.34375 -2e-6,-2.54687 1.109372,-4.6953 3.328125,-6.44532 2.234367,-1.7656 5.078114,-2.64842 8.53125,-2.64843 0.937485,10e-6 1.999984,0.20314 3.1875,0.60937 -1.7e-5,-4.06248 -1.812515,-6.09373 -5.4375,-6.09375 -2.781259,2e-5 -4.921882,0.75002 -6.421875,2.25 l -1.875,-3.72656 c 0.843746,-0.68748 2.007807,-1.27341 3.492187,-1.75781 1.499992,-0.49998 2.929678,-0.74998 4.289063,-0.75 3.64061,2e-5 6.281232,0.82815 7.921875,2.48437 1.656229,1.65627 2.484353,4.28908 2.484375,7.89844 l 0,9 c -2.2e-5,2.20313 0.656228,3.67188 1.96875,4.40625 l 0,2.22656 c -1.812522,0 -3.171895,-0.25781 -4.078125,-0.77344 -0.890644,-0.51562 -1.531268,-1.36718 -1.921875,-2.55468 m -0.421875,-9.44532 c -1.406266,-0.31248 -2.39064,-0.46873 -2.953125,-0.46875 -2.250012,2e-5 -4.085948,0.57814 -5.507813,1.73438 -1.421882,1.15626 -2.132819,2.52345 -2.132812,4.10156 -7e-6,2.60938 1.539054,3.91407 4.617187,3.91406 2.249987,1e-5 4.242173,-1.0703 5.976563,-3.21093 l 0,-6.07032"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3287" />
<path
d="m 80.316406,356.54245 -2.203125,3.14062 c -0.453144,-0.4531 -1.257831,-0.88279 -2.414062,-1.28906 -1.140642,-0.40623 -2.26564,-0.60935 -3.375,-0.60937 -2.421887,2e-5 -4.34376,0.85158 -5.765625,2.55468 -1.421882,1.68752 -2.132819,4.00783 -2.132813,6.96094 -6e-6,2.93751 0.726556,5.1797 2.179688,6.72656 1.453115,1.53126 3.468738,2.29688 6.046875,2.29688 1.999983,0 4.015606,-0.77343 6.046875,-2.32031 l 1.757812,3.75 c -2.390645,1.54687 -5.351579,2.32031 -8.882812,2.32031 -3.421885,0 -6.250007,-1.14844 -8.484375,-3.44531 -2.234378,-2.29687 -3.351564,-5.40624 -3.351563,-9.32813 -10e-7,-3.99998 1.156248,-7.21092 3.46875,-9.63281 2.328118,-2.42185 5.507802,-3.63279 9.539063,-3.63281 1.296859,2e-5 2.703108,0.27346 4.21875,0.82031 1.515604,0.5469 2.632791,1.1094 3.351562,1.6875"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3289" />
<path
d="m 100.66016,379.60495 0,-15.77344 c -2e-5,-1.87498 -0.46096,-3.35154 -1.382816,-4.42969 -0.921892,-1.0781 -2.218765,-1.61716 -3.890625,-1.61718 -1.078138,2e-5 -2.164074,0.32033 -3.257813,0.96093 -1.078134,0.62503 -1.906258,1.3594 -2.484375,2.20313 l 0,18.65625 -4.453125,0 0,-35.39063 4.453125,0 0,13.05469 c 0.593742,-0.92185 1.546866,-1.68747 2.859375,-2.29687 1.328113,-0.62498 2.6953,-0.93748 4.101563,-0.9375 2.656233,2e-5 4.734351,0.87502 6.234371,2.625 1.51561,1.75002 2.27342,4.14064 2.27344,7.17187 l 0,15.77344 -4.45312,0"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3291" />
<path
d="m 125.08203,358.79245 c -0.96876,-0.67185 -1.94533,-1.00779 -2.92969,-1.00781 -1.57813,2e-5 -2.96094,0.72658 -4.14843,2.17968 -1.17189,1.45315 -1.75782,3.20315 -1.75782,5.25 l 0,14.39063 -4.45312,0 0,-25.10156 4.45312,0 0,4.00781 c 1.62499,-2.98435 4.03905,-4.47654 7.24219,-4.47656 0.79686,2e-5 1.9453,0.14065 3.44531,0.42187 l -1.85156,4.33594"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3293" />
<path
d="m 134.69141,345.0112 c 0.76561,3e-5 1.41405,0.27347 1.94531,0.82031 0.54686,0.53129 0.8203,1.17191 0.82031,1.92188 -1e-5,0.76565 -0.27345,1.4219 -0.82031,1.96875 -0.53126,0.53128 -1.1797,0.7969 -1.94531,0.79687 -0.75001,3e-5 -1.39845,-0.26559 -1.94532,-0.79687 -0.53125,-0.54685 -0.79688,-1.2031 -0.79687,-1.96875 -1e-5,-0.76559 0.26562,-1.41403 0.79687,-1.94532 0.53125,-0.53121 1.17968,-0.79684 1.94532,-0.79687 m -2.4375,34.59375 0,-21.35156 -3.44532,0 0,-3.75 7.89844,0 0,25.10156 -4.45312,0"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3295" />
<path
d="m 162.72266,356.54245 -2.20313,3.14062 c -0.45314,-0.4531 -1.25783,-0.88279 -2.41406,-1.28906 -1.14064,-0.40623 -2.26564,-0.60935 -3.375,-0.60937 -2.42189,2e-5 -4.34376,0.85158 -5.76563,2.55468 -1.42188,1.68752 -2.13281,4.00783 -2.13281,6.96094 0,2.93751 0.72656,5.1797 2.17969,6.72656 1.45311,1.53126 3.46874,2.29688 6.04687,2.29688 1.99999,0 4.01561,-0.77343 6.04688,-2.32031 l 1.75781,3.75 c -2.39064,1.54687 -5.35158,2.32031 -8.88281,2.32031 -3.42189,0 -6.25001,-1.14844 -8.48438,-3.44531 -2.23437,-2.29687 -3.35156,-5.40624 -3.35156,-9.32813 0,-3.99998 1.15625,-7.21092 3.46875,-9.63281 2.32812,-2.42185 5.5078,-3.63279 9.53906,-3.63281 1.29686,2e-5 2.70311,0.27346 4.21875,0.82031 1.51561,0.5469 2.63279,1.1094 3.35157,1.6875"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3297" />
<path
d="m 183.06641,379.60495 0,-15.77344 c -2e-5,-1.87498 -0.46096,-3.35154 -1.38282,-4.42969 -0.92189,-1.0781 -2.21876,-1.61716 -3.89062,-1.61718 -1.07814,2e-5 -2.16407,0.32033 -3.25781,0.96093 -1.07814,0.62503 -1.90626,1.3594 -2.48438,2.20313 l 0,18.65625 -4.45312,0 0,-35.39063 4.45312,0 0,13.05469 c 0.59374,-0.92185 1.54687,-1.68747 2.85938,-2.29687 1.32811,-0.62498 2.6953,-0.93748 4.10156,-0.9375 2.65623,2e-5 4.73435,0.87502 6.23437,2.625 1.51561,1.75002 2.27342,4.14064 2.27344,7.17187 l 0,15.77344 -4.45312,0"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3299" />
<path
d="m 195.44141,358.01901 -2.90625,0 0,-3.51562 2.90625,0 0,-5.25 4.45312,-1.71094 0,6.96094 6.89063,0 0,3.51562 -6.89063,0 0,12.46875 c -1e-5,2.10938 0.35155,3.60938 1.05469,4.5 0.71874,0.89063 1.86717,1.33594 3.44531,1.33594 1.14061,0 2.3203,-0.28906 3.53906,-0.86719 l 0.65625,3.91406 c -1.84376,0.46875 -3.8672,0.70313 -6.07031,0.70313 -1.98438,0 -3.66407,-0.73437 -5.03906,-2.20313 -1.35938,-1.48437 -2.03907,-3.35155 -2.03906,-5.60156 l 0,-14.25"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3301" />
</g>
</g>
<g
id="g3616-5"
transform="translate(518,-2.4999999e-6)">
<rect
style="fill:#555753;fill-opacity:1;stroke:#f57900;stroke-width:7.50000000000000000;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3610-5"
width="374.44531"
height="74.889061"
x="0"
y="332.36218"
ry="24.963018" />
<g
style="font-size:14px;font-style:normal;font-weight:normal;fill:#eeeeec;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
id="text3804-3">
<path
d="m 100.69141,385.49557 1.71093,-4.3125 c 0.875,0.64064 1.96094,1.1797 3.25782,1.61719 1.31249,0.42188 2.48436,0.63282 3.51562,0.63281 1.82811,1e-5 3.29686,-0.49999 4.40625,-1.5 1.10936,-0.99999 1.66405,-2.27343 1.66406,-3.82031 -10e-6,-1.15624 -0.31251,-2.22655 -0.9375,-3.21094 -0.60939,-0.99998 -2.15626,-2.08592 -4.64062,-3.25781 l -2.76563,-1.28906 c -2.34375,-1.09373 -3.98438,-2.39061 -4.92187,-3.89063 -0.92188,-1.49997 -1.38282,-3.30466 -1.38281,-5.41406 -1e-5,-2.56247 0.90624,-4.68747 2.71875,-6.375 1.81249,-1.68746 4.14061,-2.53121 6.98437,-2.53125 3.79686,4e-5 6.43748,0.61722 7.92188,1.85156 l -1.38282,4.07813 c -0.62501,-0.4531 -1.57814,-0.8906 -2.85937,-1.3125 -1.28127,-0.42184 -2.46876,-0.63278 -3.5625,-0.63281 -1.59376,3e-5 -2.85157,0.45315 -3.77344,1.35937 -0.90626,0.90628 -1.35938,2.07034 -1.35937,3.49219 -1e-5,0.87503 0.16405,1.6719 0.49218,2.39062 0.32812,0.71878 0.78125,1.32034 1.35938,1.80469 0.59374,0.4844 1.79686,1.16409 3.60937,2.03906 l 2.8125,1.33594 c 2.34374,1.10939 3.98436,2.43752 4.92188,3.98438 0.9531,1.53126 1.42967,3.48438 1.42969,5.85937 -2e-5,2.57813 -1.03909,4.76563 -3.11719,6.5625 -2.06252,1.79688 -4.82814,2.69531 -8.29688,2.69531 -3.04688,0 -5.64844,-0.71874 -7.80468,-2.15625"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3225" />
<path
d="m 129.54297,352.47214 c 0.76562,3e-5 1.41405,0.27347 1.94531,0.82031 0.54687,0.53128 0.8203,1.17191 0.82031,1.92187 -1e-5,0.76566 -0.27344,1.42191 -0.82031,1.96875 -0.53126,0.53128 -1.17969,0.79691 -1.94531,0.79688 -0.75001,3e-5 -1.39845,-0.2656 -1.94531,-0.79688 -0.53126,-0.54684 -0.79688,-1.20309 -0.79688,-1.96875 0,-0.76559 0.26562,-1.41402 0.79688,-1.94531 0.53124,-0.53121 1.17968,-0.79684 1.94531,-0.79687 m -2.4375,34.59375 0,-21.35157 -3.44531,0 0,-3.75 7.89843,0 0,25.10157 -4.45312,0"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3227" />
<path
d="m 137.72266,393.93307 2.41406,-3.5625 c 2.59374,1.73437 4.98436,2.60156 7.17187,2.60157 2.01561,-1e-5 3.60155,-0.35157 4.75782,-1.05469 1.17185,-0.6875 1.75779,-1.54688 1.75781,-2.57813 -2e-5,-2.03125 -1.46877,-3.04687 -4.40625,-3.04687 -0.50001,0 -1.40626,0.125 -2.71875,0.375 -1.31251,0.25 -2.33595,0.375 -3.07031,0.375 -3.56251,0 -5.34376,-1.34375 -5.34375,-4.03125 -1e-5,-0.82812 0.41406,-1.57812 1.24218,-2.25 0.84375,-0.67187 1.88281,-1.15624 3.11719,-1.45313 -3.53125,-1.65624 -5.29688,-4.53123 -5.29687,-8.625 -1e-5,-2.62498 0.91406,-4.81247 2.74218,-6.5625 1.82812,-1.74997 4.08593,-2.62497 6.77344,-2.625 2.46874,3e-5 4.39842,0.50784 5.78906,1.52344 l 2.22657,-2.67187 2.90625,2.74218 -2.67188,2.01563 c 1.14061,1.4844 1.71092,3.42189 1.71094,5.8125 -2e-5,2.53126 -0.78908,4.65626 -2.36719,6.375 -1.57814,1.71876 -3.64845,2.70313 -6.21094,2.95312 l -3.67968,0.375 c -0.43751,0.0469 -1.02345,0.21876 -1.75782,0.51563 -0.73438,0.28126 -1.10156,0.65626 -1.10156,1.125 0,0.64063 0.76562,0.96094 2.29688,0.96094 0.67186,0 1.71874,-0.11719 3.14062,-0.35157 1.42186,-0.24999 2.47655,-0.37499 3.16406,-0.375 2.46874,1e-5 4.39061,0.59376 5.76563,1.78125 1.3906,1.17188 2.08591,2.80469 2.08594,4.89844 -3e-5,2.3125 -1.03909,4.17968 -3.11719,5.60156 -2.06252,1.42187 -4.6797,2.13281 -7.85156,2.13282 -1.62501,-1e-5 -3.33595,-0.28907 -5.13282,-0.86719 -1.79688,-0.57813 -3.24219,-1.28126 -4.33593,-2.10938 m 9.44531,-28.85156 c -1.54689,2e-5 -2.81251,0.5469 -3.79688,1.64063 -0.96875,1.09377 -1.45313,2.42189 -1.45312,3.98437 -1e-5,1.75002 0.46874,3.20314 1.40625,4.35938 0.95311,1.14063 2.23436,1.71095 3.84375,1.71093 1.57811,2e-5 2.81248,-0.55467 3.70312,-1.66406 0.89061,-1.12498 1.33592,-2.59373 1.33594,-4.40625 -2e-5,-1.56248 -0.48439,-2.8906 -1.45312,-3.98437 -0.95314,-1.09373 -2.14845,-1.64061 -3.58594,-1.64063"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3229" />
<path
d="m 178.17578,387.06589 0,-14.60157 c -2e-5,-2.67185 -0.40627,-4.53904 -1.21875,-5.60156 -0.79689,-1.0781 -2.14064,-1.61716 -4.03125,-1.61719 -1.01564,3e-5 -2.07814,0.30471 -3.1875,0.91407 -1.10938,0.60939 -1.96094,1.35939 -2.55469,2.25 l 0,18.65625 -4.45312,0 0,-25.10157 3.04687,0 1.40625,3.23438 c 1.46874,-2.46873 3.86718,-3.7031 7.19532,-3.70313 5.49998,3e-5 8.24997,3.34378 8.25,10.03125 l 0,15.53907 -4.45313,0"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3231" />
<path
d="m 203.16016,384.18307 c -1.78127,2.23438 -4.50783,3.35157 -8.17969,3.35157 -1.96876,0 -3.67969,-0.71094 -5.13281,-2.13282 -1.43751,-1.43749 -2.15626,-3.21874 -2.15625,-5.34375 -1e-5,-2.54686 1.10937,-4.6953 3.32812,-6.44531 2.23437,-1.76561 5.07812,-2.64842 8.53125,-2.64844 0.93749,2e-5 1.99999,0.20315 3.1875,0.60938 -2e-5,-4.06248 -1.81251,-6.09373 -5.4375,-6.09375 -2.78126,2e-5 -4.92188,0.75002 -6.42187,2.25 l -1.875,-3.72656 c 0.84374,-0.68748 2.0078,-1.27342 3.49218,-1.75782 1.5,-0.49997 2.92968,-0.74997 4.28907,-0.75 3.64061,3e-5 6.28123,0.82815 7.92187,2.48438 1.65623,1.65627 2.48435,4.28908 2.48438,7.89844 l 0,9 c -3e-5,2.20313 0.65622,3.67187 1.96875,4.40625 l 0,2.22656 c -1.81253,0 -3.1719,-0.25781 -4.07813,-0.77344 -0.89064,-0.51562 -1.53127,-1.36718 -1.92187,-2.55469 m -0.42188,-9.44531 c -1.40626,-0.31248 -2.39064,-0.46873 -2.95312,-0.46875 -2.25002,2e-5 -4.08595,0.57814 -5.50782,1.73438 -1.42188,1.15626 -2.13282,2.52344 -2.13281,4.10156 -1e-5,2.60938 1.53906,3.91407 4.61719,3.91406 2.24999,1e-5 4.24217,-1.07031 5.97656,-3.21094 l 0,-6.07031"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3233" />
<path
d="m 215.79297,365.47995 -2.90625,0 0,-3.51563 2.90625,0 0,-5.25 4.45312,-1.71093 0,6.96093 6.89063,0 0,3.51563 -6.89063,0 0,12.46875 c -1e-5,2.10938 0.35156,3.60938 1.05469,4.5 0.71874,0.89063 1.86718,1.33594 3.44531,1.33594 1.14061,0 2.3203,-0.28906 3.53907,-0.86719 l 0.65625,3.91406 c -1.84377,0.46875 -3.86721,0.70313 -6.07032,0.70313 -1.98438,0 -3.66407,-0.73438 -5.03906,-2.20313 -1.35938,-1.48437 -2.03907,-3.35155 -2.03906,-5.60156 l 0,-14.25"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3235" />
<path
d="m 237.44922,361.96432 0,16.00782 c -1e-5,3.875 1.67968,5.8125 5.03906,5.8125 1.46874,0 2.81249,-0.42187 4.03125,-1.26563 1.21873,-0.84374 2.02342,-1.8203 2.41406,-2.92969 l 0,-17.625 4.45313,0 0,25.10157 -4.45313,0 0,-3.46875 c -0.50001,0.98437 -1.50783,1.89062 -3.02343,2.71875 -1.50002,0.8125 -2.96877,1.21875 -4.40625,1.21875 -2.75001,0 -4.85939,-0.78906 -6.32813,-2.36719 -1.45313,-1.57812 -2.17969,-3.82031 -2.17969,-6.72656 l 0,-16.47657 4.45313,0"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3237" />
<path
d="m 273.12109,366.25339 c -0.96876,-0.67186 -1.94532,-1.00779 -2.92968,-1.00782 -1.57814,3e-5 -2.96095,0.72659 -4.14844,2.17969 -1.17188,1.45315 -1.75782,3.20314 -1.75781,5.25 l 0,14.39063 -4.45313,0 0,-25.10157 4.45313,0 0,4.00782 c 1.62499,-2.98435 4.03905,-4.47654 7.24218,-4.47657 0.79686,3e-5 1.9453,0.14066 3.44532,0.42188 l -1.85157,4.33594"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3239" />
</g>
</g>
<path
sodipodi:nodetypes="ccc"
id="path3652"
d="m 700.20273,451.38193 c -146.9176,142.40184 -386.9176,142.40184 -526.9176,44.40184 -20,-22 40,38 -48,-46"
style="stroke-linejoin:round;marker-end:url(#Arrow2Mendtn);stroke-opacity:1;stroke:#f57900;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-width:20;fill:none" />
<g
id="g5000"
transform="matrix(1.2364568,0,0,1.2364568,-10.511061,-393.16125)">
<path
transform="matrix(1.1845756,0,0,1.1845756,-42.025553,-142.55923)"
d="m 400,772.36218 c 0,44.18278 -35.81722,80 -80,80 -44.18278,0 -80,-35.81722 -80,-80 0,-44.18278 35.81722,-80 80,-80 44.18278,0 80,35.81722 80,80 z"
sodipodi:ry="80"
sodipodi:rx="80"
sodipodi:cy="772.36218"
sodipodi:cx="320"
id="path5002"
style="fill:#555753;fill-opacity:1;stroke:#f57900;stroke-width:5.12058448999999971;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
<path
sodipodi:nodetypes="cssccccccccccccsssc"
id="path5004"
d="m 309.70237,710.64889 c -11.8411,0 -21.44021,9.59909 -21.44021,21.44019 0,11.84111 9.59911,21.44022 21.44021,21.44022 9.05256,0 16.79381,-5.61197 19.93828,-13.54529 l 1.50193,-0.74819 8.39742,7.14674 7.14673,-10.72011 10.54143,10.72011 3.57337,-10.72011 14.29348,10.72011 10.7201,-10.72011 -10.7201,-14.29347 -46.82229,0 c -3.70675,-6.40987 -10.63341,-10.72009 -18.57035,-10.72009 z m -3.57337,10.72009 c 3.94704,0 7.14674,3.1997 7.14674,7.14673 0,3.94704 -3.1997,7.14674 -7.14674,7.14674 -3.94704,0 -7.14674,-3.1997 -7.14674,-7.14674 0,-3.94703 3.1997,-7.14673 7.14674,-7.14673 z"
style="fill:none;stroke:#eeeeec;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none" />
<g
style="font-size:11.32267666px;font-style:normal;font-weight:normal;fill:#eeeeec;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
id="text3804-6">
<path
d="m 260.55845,785.12256 c 0,-2.35045 0.63026,-4.24599 1.8908,-5.68661 1.27,-1.45007 2.93807,-2.17511 5.00421,-2.17513 2.17986,2e-5 3.87163,0.69663 5.07531,2.08983 1.20365,1.38376 1.80548,3.30773 1.8055,5.77191 -2e-5,2.45473 -0.61607,4.39291 -1.84815,5.81456 -1.23211,1.41218 -2.90966,2.11827 -5.03266,2.11827 -2.17039,0 -3.86216,-0.71557 -5.0753,-2.1467 -1.21314,-1.43113 -1.81971,-3.35983 -1.81971,-5.78613 m 2.8433,0 c 0,3.81952 1.35057,5.72927 4.05171,5.72927 1.26053,0 2.24621,-0.5118 2.95704,-1.53539 0.7203,-1.02359 1.08045,-2.42154 1.08046,-4.19388 -10e-6,-3.7721 -1.34584,-5.65816 -4.0375,-5.65818 -1.2321,2e-5 -2.21778,0.50234 -2.95703,1.50696 -0.72979,1.00464 -1.09468,2.38838 -1.09468,4.15122 m 0.89564,-13.86111 c 0.44545,2e-5 0.81982,0.1564 1.12311,0.46914 0.31276,0.30331 0.46914,0.67768 0.46915,1.12311 -1e-5,0.44547 -0.15639,0.82458 -0.46915,1.13732 -0.30329,0.31278 -0.67766,0.46916 -1.12311,0.46915 -0.44545,1e-5 -0.82456,-0.15637 -1.13732,-0.46915 -0.31276,-0.31274 -0.46915,-0.69185 -0.46914,-1.13732 -10e-6,-0.44543 0.15638,-0.8198 0.46914,-1.12311 0.31276,-0.31274 0.69187,-0.46912 1.13732,-0.46914 m 6.71021,0 c 0.44544,2e-5 0.82454,0.1564 1.13732,0.46914 0.31275,0.30331 0.46913,0.67768 0.46914,1.12311 -10e-6,0.44547 -0.15639,0.82458 -0.46914,1.13732 -0.31278,0.31278 -0.69188,0.46916 -1.13732,0.46915 -0.44547,1e-5 -0.82457,-0.15637 -1.13733,-0.46915 -0.30329,-0.31274 -0.45493,-0.69185 -0.45492,-1.13732 -10e-6,-0.44543 0.15163,-0.8198 0.45492,-1.12311 0.31276,-0.31274 0.69186,-0.46912 1.13733,-0.46914"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3242" />
<path
d="m 285.42316,773.72091 c -0.54972,-0.18954 -1.06151,-0.28431 -1.53539,-0.28433 -0.82456,2e-5 -1.50696,0.31278 -2.04718,0.93829 -0.53075,0.62554 -0.79613,1.41693 -0.79612,2.37416 -10e-6,0.25591 0.0237,0.52129 0.0711,0.79612 l 3.0992,0 0,2.27465 -3.0992,0 0,12.95126 -2.70114,0 0,-12.95126 -2.21778,0 0,-2.27465 2.21778,0 c 0,-1.94291 0.47862,-3.46881 1.43587,-4.57772 0.95724,-1.10887 2.22251,-1.66331 3.79581,-1.66333 0.78664,2e-5 1.63015,0.14218 2.53055,0.42649 l -0.75348,1.99032"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3244" />
<path
d="m 296.17085,773.72091 c -0.54971,-0.18954 -1.06151,-0.28431 -1.53538,-0.28433 -0.82457,2e-5 -1.50696,0.31278 -2.04718,0.93829 -0.53076,0.62554 -0.79613,1.41693 -0.79613,2.37416 0,0.25591 0.0237,0.52129 0.0711,0.79612 l 3.0992,0 0,2.27465 -3.0992,0 0,12.95126 -2.70114,0 0,-12.95126 -2.21778,0 0,-2.27465 2.21778,0 c -10e-6,-1.94291 0.47862,-3.46881 1.43587,-4.57772 0.95724,-1.10887 2.22251,-1.66331 3.79581,-1.66333 0.78664,2e-5 1.63015,0.14218 2.53054,0.42649 l -0.75348,1.99032"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3246" />
<path
d="m 311.51049,785.42111 -10.97516,0 c 0,1.78181 0.4881,3.15134 1.4643,4.10858 0.86246,0.83404 1.97135,1.25105 3.32667,1.25105 1.54485,0 2.83382,-0.45018 3.8669,-1.35057 l 1.13732,1.94767 c -0.41703,0.41702 -1.05678,0.77717 -1.91923,1.08045 -1.08047,0.39807 -2.28414,0.5971 -3.611,0.5971 -1.9145,0 -3.53992,-0.64922 -4.87627,-1.94767 -1.488,-1.43112 -2.232,-3.35509 -2.232,-5.77191 0,-2.51158 0.76295,-4.52558 2.28886,-6.04202 1.36479,-1.3553 2.98073,-2.03295 4.84784,-2.03297 2.17038,2e-5 3.87162,0.61133 5.10374,1.83394 1.19417,1.17524 1.79126,2.73432 1.79128,4.67723 -2e-5,0.59711 -0.0711,1.14681 -0.21325,1.64912 m -6.55382,-5.88564 c -1.20367,10e-6 -2.21305,0.3886 -3.02812,1.16575 -0.77718,0.73927 -1.21789,1.65861 -1.32214,2.75801 l 8.4304,0 c -10e-6,-1.08992 -0.3412,-1.99978 -1.02359,-2.72957 -0.74874,-0.79612 -1.76759,-1.19418 -3.05655,-1.19419"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3248" />
<path
d="m 323.92152,792.77106 0,-8.8569 c -10e-6,-1.62068 -0.24643,-2.75326 -0.73926,-3.39775 -0.48337,-0.65395 -1.29845,-0.98093 -2.44524,-0.98094 -0.61606,10e-6 -1.26054,0.18483 -1.93345,0.55444 -0.67292,0.36964 -1.18945,0.82457 -1.5496,1.36479 l 0,11.31636 -2.70114,0 0,-15.22591 1.84815,0 0.85299,1.96188 c 0.8909,-1.49746 2.34572,-2.24619 4.36448,-2.24621 3.33613,2e-5 5.0042,2.02824 5.00421,6.08468 l 0,9.42556 -2.70114,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3250" />
<path
d="m 331.44207,779.67763 -1.76285,0 0,-2.13248 1.76285,0 0,-3.1845 2.70114,-1.03781 0,4.22231 4.17966,0 0,2.13248 -4.17966,0 0,7.5632 c -1e-5,1.27949 0.21324,2.18935 0.63974,2.72957 0.43597,0.54023 1.13258,0.81034 2.08983,0.81034 0.69186,0 1.40743,-0.17533 2.1467,-0.52601 l 0.39806,2.37416 c -1.11838,0.28433 -2.34574,0.4265 -3.68208,0.4265 -1.20367,0 -2.22252,-0.44545 -3.05656,-1.33636 -0.82456,-0.90037 -1.23684,-2.03296 -1.23683,-3.39775 l 0,-8.64365"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3252" />
<path
d="m 342.23241,788.46345 0,-17.15935 2.70114,0 0,16.70442 c 0,0.81508 0.2322,1.45957 0.69661,1.93345 0.47388,0.46441 1.08993,0.69661 1.84815,0.69661 l 0,2.41681 c -3.49727,0 -5.2459,-1.53065 -5.2459,-4.59194"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3254" />
<path
d="m 353.39239,771.78746 c 0.4644,2e-5 0.85772,0.16588 1.17997,0.49758 0.33171,0.32226 0.49757,0.71084 0.49758,1.16575 -10e-6,0.46443 -0.16587,0.86249 -0.49758,1.19419 -0.32225,0.32226 -0.71557,0.48338 -1.17997,0.48336 -0.45493,2e-5 -0.84826,-0.1611 -1.17997,-0.48336 -0.32225,-0.3317 -0.48337,-0.72976 -0.48336,-1.19419 -1e-5,-0.46438 0.16111,-0.85771 0.48336,-1.17997 0.32224,-0.32222 0.71556,-0.48334 1.17997,-0.48336 m -1.47852,20.9836 0,-12.95126 -2.08983,0 0,-2.27465 4.79097,0 0,15.22591 -2.70114,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3256" />
<path
d="m 370.39536,778.78199 -1.33636,1.90502 c -0.27486,-0.27484 -0.76296,-0.53548 -1.4643,-0.78191 -0.69188,-0.24641 -1.37427,-0.36962 -2.04718,-0.36963 -1.46905,10e-6 -2.6348,0.51654 -3.49727,1.5496 -0.86247,1.0236 -1.2937,2.43104 -1.2937,4.22231 0,1.78181 0.44071,3.14186 1.32214,4.08014 0.88142,0.92882 2.10404,1.39322 3.66786,1.39322 1.21314,0 2.43576,-0.46914 3.66787,-1.40743 l 1.06624,2.27464 c -1.4501,0.93829 -3.24612,1.40744 -5.38807,1.40744 -2.07562,0 -3.79108,-0.69661 -5.14638,-2.08983 -1.35531,-1.39322 -2.03297,-3.27928 -2.03297,-5.65818 0,-2.42628 0.70135,-4.37394 2.10405,-5.843 1.41217,-1.46902 3.34088,-2.20354 5.78613,-2.20356 0.78664,2e-5 1.63963,0.16588 2.55897,0.49758 0.91933,0.33174 1.59698,0.67293 2.03297,1.02359"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3258" />
<path
d="m 382.73531,792.77106 0,-9.56773 c -1e-5,-1.13731 -0.2796,-2.03295 -0.83877,-2.68692 -0.5592,-0.65395 -1.34584,-0.98093 -2.35995,-0.98094 -0.65397,10e-6 -1.31266,0.1943 -1.9761,0.58288 -0.65396,0.37912 -1.15628,0.82457 -1.50695,1.33635 l 0,11.31636 -2.70114,0 0,-21.46696 2.70114,0 0,7.9186 c 0.36015,-0.55917 0.93829,-1.02357 1.73442,-1.39322 0.8056,-0.37909 1.63489,-0.56864 2.48789,-0.56866 1.6112,2e-5 2.87173,0.53077 3.7816,1.59225 0.91932,1.06152 1.37899,2.5116 1.379,4.35026 l 0,9.56773 -2.70114,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3260" />
<path
d="m 402.09822,785.42111 -10.97516,0 c 0,1.78181 0.4881,3.15134 1.4643,4.10858 0.86247,0.83404 1.97135,1.25105 3.32667,1.25105 1.54485,0 2.83382,-0.45018 3.8669,-1.35057 l 1.13732,1.94767 c -0.41703,0.41702 -1.05678,0.77717 -1.91923,1.08045 -1.08047,0.39807 -2.28413,0.5971 -3.611,0.5971 -1.9145,0 -3.53992,-0.64922 -4.87627,-1.94767 -1.488,-1.43112 -2.232,-3.35509 -2.232,-5.77191 0,-2.51158 0.76296,-4.52558 2.28886,-6.04202 1.36479,-1.3553 2.98073,-2.03295 4.84784,-2.03297 2.17038,2e-5 3.87162,0.61133 5.10374,1.83394 1.19417,1.17524 1.79126,2.73432 1.79128,4.67723 -2e-5,0.59711 -0.0711,1.14681 -0.21325,1.64912 m -6.55382,-5.88564 c -1.20367,10e-6 -2.21305,0.3886 -3.02812,1.16575 -0.77718,0.73927 -1.21789,1.65861 -1.32214,2.75801 l 8.4304,0 c -1e-5,-1.08992 -0.3412,-1.99978 -1.02359,-2.72957 -0.74874,-0.79612 -1.76759,-1.19418 -3.05655,-1.19419"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3262" />
<path
d="m 413.41458,780.14678 c -0.58762,-0.40753 -1.17998,-0.6113 -1.77706,-0.61131 -0.95726,10e-6 -1.79603,0.44072 -2.51633,1.32213 -0.71083,0.88144 -1.06624,1.94294 -1.06624,3.18451 l 0,8.72895 -2.70114,0 0,-15.22591 2.70114,0 0,2.43103 c 0.98568,-1.81022 2.44998,-2.71534 4.39291,-2.71536 0.48335,2e-5 1.17996,0.0853 2.08983,0.2559 l -1.12311,2.63006"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3264" />
<path
d="m 279.85028,828.21287 1.03781,-2.61584 c 0.53074,0.38858 1.18944,0.71556 1.97609,0.98094 0.79612,0.2559 1.50695,0.38384 2.13248,0.38384 1.10888,0 1.99979,-0.30328 2.67271,-0.90986 0.67291,-0.60656 1.00936,-1.37899 1.00937,-2.31729 -1e-5,-0.70134 -0.18956,-1.35056 -0.56866,-1.94766 -0.36964,-0.60657 -1.30793,-1.26527 -2.81487,-1.9761 l -1.67755,-0.78191 c -1.42166,-0.66343 -2.41681,-1.45008 -2.98547,-2.35995 -0.55919,-0.90984 -0.83878,-2.00451 -0.83878,-3.28401 0,-1.55433 0.54971,-2.84329 1.64912,-3.8669 1.09941,-1.02357 2.51158,-1.53536 4.23653,-1.53539 2.30306,3e-5 3.90479,0.37439 4.80518,1.12311 l -0.83877,2.47368 c -0.37912,-0.27484 -0.95726,-0.54021 -1.73442,-0.79613 -0.77718,-0.25588 -1.49748,-0.38383 -2.16091,-0.38385 -0.96673,2e-5 -1.72968,0.27488 -2.28886,0.82456 -0.54971,0.54973 -0.82457,1.25581 -0.82456,2.11827 -1e-5,0.53076 0.0995,1.01412 0.29855,1.45008 0.19902,0.43599 0.47388,0.80088 0.82455,1.09468 0.36015,0.29382 1.08993,0.7061 2.18935,1.23683 l 1.70598,0.81035 c 1.42165,0.67292 2.4168,1.47852 2.98548,2.41681 0.57812,0.92882 0.86719,2.11353 0.8672,3.55413 -1e-5,1.56382 -0.63027,2.89069 -1.8908,3.98063 -1.25106,1.08993 -2.92861,1.6349 -5.03265,1.6349 -1.84815,0 -3.42618,-0.43598 -4.7341,-1.30792"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3266" />
<path
d="m 306.05134,815.17631 -1.33635,1.90501 c -0.27486,-0.27484 -0.76296,-0.53547 -1.4643,-0.78191 -0.69188,-0.2464 -1.37428,-0.36961 -2.04718,-0.36963 -1.46905,2e-5 -2.63481,0.51655 -3.49727,1.54961 -0.86247,1.0236 -1.29371,2.43103 -1.2937,4.22231 -10e-6,1.78181 0.44071,3.14185 1.32213,4.08014 0.88142,0.92882 2.10404,1.39322 3.66787,1.39322 1.21313,0 2.43575,-0.46914 3.66786,-1.40744 l 1.06624,2.27465 c -1.45009,0.93829 -3.24611,1.40743 -5.38806,1.40743 -2.07562,0 -3.79108,-0.6966 -5.14639,-2.08983 -1.35531,-1.39321 -2.03296,-3.27927 -2.03296,-5.65817 0,-2.42628 0.70135,-4.37394 2.10405,-5.843 1.41217,-1.46902 3.34088,-2.20354 5.78612,-2.20356 0.78664,2e-5 1.63963,0.16587 2.55898,0.49758 0.91932,0.33173 1.59698,0.67293 2.03296,1.02359"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3268" />
<path
d="m 318.39129,829.16537 0,-9.56772 c -1e-5,-1.13731 -0.2796,-2.03295 -0.83877,-2.68692 -0.5592,-0.65395 -1.34584,-0.98093 -2.35995,-0.98095 -0.65397,2e-5 -1.31266,0.19431 -1.9761,0.58288 -0.65396,0.37912 -1.15628,0.82457 -1.50695,1.33636 l 0,11.31635 -2.70114,0 0,-21.46696 2.70114,0 0,7.91861 c 0.36015,-0.55917 0.93829,-1.02357 1.73442,-1.39322 0.8056,-0.37909 1.63489,-0.56864 2.48789,-0.56866 1.6112,2e-5 2.87173,0.53077 3.7816,1.59225 0.91932,1.06152 1.37899,2.5116 1.379,4.35026 l 0,9.56772 -2.70114,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3270" />
<path
d="m 325.14415,824.85777 0,-17.15936 2.70114,0 0,16.70443 c -10e-6,0.81508 0.23219,1.45956 0.69661,1.93344 0.47387,0.46441 1.08992,0.69662 1.84814,0.69661 l 0,2.41681 c -3.49727,0 -5.2459,-1.53064 -5.24589,-4.59193"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3272" />
<path
d="m 336.07666,813.93947 0,9.70989 c -1e-5,2.35047 1.01884,3.5257 3.05655,3.5257 0.8909,0 1.70598,-0.2559 2.44524,-0.76769 0.73925,-0.51179 1.22735,-1.10415 1.46431,-1.77707 l 0,-10.69083 2.70114,0 0,15.2259 -2.70114,0 0,-2.10404 c -0.3033,0.59709 -0.91461,1.1468 -1.83394,1.64912 -0.90986,0.49283 -1.80076,0.73925 -2.6727,0.73925 -1.66808,0 -2.94757,-0.47862 -3.83847,-1.43586 -0.88142,-0.95725 -1.32214,-2.3173 -1.32213,-4.08015 l 0,-9.99422 2.70114,0 m -0.29855,-6.28371 c 0.44545,3e-5 0.81981,0.15641 1.12311,0.46915 0.31275,0.30331 0.46914,0.67767 0.46914,1.12311 0,0.44547 -0.15639,0.82457 -0.46914,1.13732 -0.3033,0.31278 -0.67766,0.46916 -1.12311,0.46914 -0.44546,2e-5 -0.82456,-0.15636 -1.13732,-0.46914 -0.31277,-0.31275 -0.46915,-0.69185 -0.46915,-1.13732 0,-0.44544 0.15638,-0.8198 0.46915,-1.12311 0.31276,-0.31274 0.69186,-0.46912 1.13732,-0.46915 m 6.7102,0 c 0.44544,3e-5 0.82455,0.15641 1.13732,0.46915 0.31276,0.30331 0.46914,0.67767 0.46915,1.12311 -1e-5,0.44547 -0.15639,0.82457 -0.46915,1.13732 -0.31277,0.31278 -0.69188,0.46916 -1.13732,0.46914 -0.44546,2e-5 -0.82457,-0.15636 -1.13732,-0.46914 -0.3033,-0.31275 -0.45494,-0.69185 -0.45493,-1.13732 -10e-6,-0.44544 0.15163,-0.8198 0.45493,-1.12311 0.31275,-0.31274 0.69186,-0.46912 1.13732,-0.46915"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3274" />
<path
d="m 348.44504,828.25552 0.95251,-2.55898 c 1.50695,0.98568 2.72009,1.47852 3.63943,1.47852 1.66807,0 2.5021,-0.70135 2.50211,-2.10405 -10e-6,-1.00463 -0.80561,-1.86709 -2.41681,-2.5874 -1.24158,-0.56866 -2.08036,-0.99989 -2.51633,-1.29371 -0.4265,-0.2938 -0.80086,-0.62552 -1.1231,-0.99516 -0.31277,-0.37909 -0.54971,-0.77716 -0.71083,-1.19418 -0.15164,-0.42649 -0.22746,-0.88142 -0.22746,-1.36479 0,-1.25104 0.45492,-2.22724 1.36478,-2.92861 0.90986,-0.70133 2.09931,-1.052 3.56835,-1.05202 1.10888,2e-5 2.50684,0.35069 4.19388,1.05202 l -0.76769,2.50211 c -1.07099,-0.85298 -2.14671,-1.27947 -3.22716,-1.27949 -0.64448,2e-5 -1.18945,0.15166 -1.6349,0.45493 -0.43598,0.3033 -0.65396,0.68715 -0.65396,1.15154 0,0.97622 0.55444,1.71547 1.66334,2.21778 l 1.93344,0.88143 c 1.18471,0.54023 2.04718,1.15628 2.58741,1.84815 0.54022,0.69187 0.81033,1.55908 0.81035,2.60162 -2e-5,1.36479 -0.47864,2.43577 -1.43587,3.21294 -0.95726,0.76769 -2.28413,1.15153 -3.98063,1.15153 -1.60174,0 -3.10869,-0.39806 -4.52086,-1.19418"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3276" />
<path
d="m 360.21633,828.25552 0.9525,-2.55898 c 1.50695,0.98568 2.7201,1.47852 3.63944,1.47852 1.66806,0 2.5021,-0.70135 2.5021,-2.10405 0,-1.00463 -0.80561,-1.86709 -2.41681,-2.5874 -1.24158,-0.56866 -2.08035,-0.99989 -2.51632,-1.29371 -0.4265,-0.2938 -0.80087,-0.62552 -1.12311,-0.99516 -0.31276,-0.37909 -0.5497,-0.77716 -0.71082,-1.19418 -0.15165,-0.42649 -0.22747,-0.88142 -0.22747,-1.36479 0,-1.25104 0.45493,-2.22724 1.36479,-2.92861 0.90985,-0.70133 2.0993,-1.052 3.56835,-1.05202 1.10888,2e-5 2.50684,0.35069 4.19387,1.05202 l -0.76769,2.50211 c -1.07099,-0.85298 -2.1467,-1.27947 -3.22715,-1.27949 -0.64449,2e-5 -1.18946,0.15166 -1.6349,0.45493 -0.43598,0.3033 -0.65397,0.68715 -0.65396,1.15154 -1e-5,0.97622 0.55444,1.71547 1.66333,2.21778 l 1.93345,0.88143 c 1.1847,0.54023 2.04717,1.15628 2.58741,1.84815 0.54022,0.69187 0.81033,1.55908 0.81034,2.60162 -1e-5,1.36479 -0.47863,2.43577 -1.43587,3.21294 -0.95725,0.76769 -2.28413,1.15153 -3.98063,1.15153 -1.60173,0 -3.10868,-0.39806 -4.52085,-1.19418"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3278" />
<path
d="m 385.80608,821.81543 -10.97516,0 c -10e-6,1.78181 0.4881,3.15133 1.4643,4.10858 0.86246,0.83403 1.97135,1.25105 3.32667,1.25105 1.54485,0 2.83382,-0.45019 3.8669,-1.35057 l 1.13732,1.94766 c -0.41703,0.41702 -1.05678,0.77718 -1.91923,1.08046 -1.08047,0.39806 -2.28414,0.59709 -3.611,0.59709 -1.9145,0 -3.53992,-0.64922 -4.87627,-1.94766 -1.488,-1.43113 -2.232,-3.3551 -2.232,-5.77191 0,-2.51158 0.76295,-4.52558 2.28886,-6.04203 1.36479,-1.35529 2.98073,-2.03294 4.84784,-2.03296 2.17038,2e-5 3.87162,0.61133 5.10373,1.83393 1.19418,1.17525 1.79127,2.73433 1.79129,4.67724 -2e-5,0.5971 -0.0711,1.14681 -0.21325,1.64912 m -6.55382,-5.88565 c -1.20367,2e-5 -2.21305,0.3886 -3.02812,1.16576 -0.77718,0.73927 -1.21789,1.65861 -1.32214,2.75801 l 8.4304,0 c -1e-5,-1.08993 -0.34121,-1.99978 -1.02359,-2.72958 -0.74874,-0.79611 -1.76759,-1.19417 -3.05655,-1.19419"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3280" />
<path
d="m 389.06166,824.85777 0,-17.15936 2.70114,0 0,16.70443 c 0,0.81508 0.2322,1.45956 0.69661,1.93344 0.47388,0.46441 1.08993,0.69662 1.84815,0.69661 l 0,2.41681 c -3.49727,0 -5.2459,-1.53064 -5.2459,-4.59193"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3282" />
</g>
</g>
<path
style="stroke-linejoin:round;marker-end:url(#Arrow2MendtcD);stroke-opacity:1;stroke:#729fcf;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-width:20;fill:none"
d="m 112.50795,291.00869 c 146.9176,-142.40184 386.9176,-142.40184 526.9176,-44.40184 20,22 -40,-38 48,46"
id="path3701"
sodipodi:nodetypes="ccc" />
<g
transform="matrix(1.2364568,0,0,1.2364568,-10.511061,-773.16125)"
id="g3887">
<path
sodipodi:type="arc"
style="fill:#555753;fill-opacity:1;stroke:#729fcf;stroke-width:5.12058448999999971;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path3889"
sodipodi:cx="320"
sodipodi:cy="772.36218"
sodipodi:rx="80"
sodipodi:ry="80"
d="m 400,772.36218 c 0,44.18278 -35.81722,80 -80,80 -44.18278,0 -80,-35.81722 -80,-80 0,-44.18278 35.81722,-80 80,-80 44.18278,0 80,35.81722 80,80 z"
transform="matrix(1.1845756,0,0,1.1845756,-42.025553,-142.55923)" />
<path
style="fill:none;stroke:#eeeeec;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none"
d="m 309.70237,710.64889 c -11.8411,0 -21.44021,9.59909 -21.44021,21.44019 0,11.84111 9.59911,21.44022 21.44021,21.44022 9.05256,0 16.79381,-5.61197 19.93828,-13.54529 l 1.50193,-0.74819 8.39742,7.14674 7.14673,-10.72011 10.54143,10.72011 3.57337,-10.72011 14.29348,10.72011 10.7201,-10.72011 -10.7201,-14.29347 -46.82229,0 c -3.70675,-6.40987 -10.63341,-10.72009 -18.57035,-10.72009 z m -3.57337,10.72009 c 3.94704,0 7.14674,3.1997 7.14674,7.14673 0,3.94704 -3.1997,7.14674 -7.14674,7.14674 -3.94704,0 -7.14674,-3.1997 -7.14674,-7.14674 0,-3.94703 3.1997,-7.14673 7.14674,-7.14673 z"
id="path3891"
sodipodi:nodetypes="cssccccccccccccsssc" />
<g
style="font-size:11.32267666px;font-style:normal;font-weight:normal;fill:#eeeeec;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
id="text3893">
<path
d="m 289.64547,791.93228 0,6.80972 -2.70114,0 0,-21.19685 2.70114,0 0,1.25106 c 1.02358,-1.02358 2.26042,-1.53537 3.71051,-1.53539 2.1609,2e-5 3.84319,0.67293 5.04687,2.01875 1.20365,1.34584 1.80548,3.3172 1.8055,5.91408 -2e-5,2.31256 -0.60659,4.20335 -1.81972,5.67239 -1.21315,1.45957 -2.96652,2.18935 -5.26011,2.18935 -0.64449,0 -1.33636,-0.11373 -2.07562,-0.3412 -0.72978,-0.22746 -1.19893,-0.4881 -1.40743,-0.78191 m 0,-11.10311 0,8.87112 c 0.17059,0.2559 0.53074,0.50232 1.08045,0.73926 0.5497,0.22746 1.08519,0.34119 1.60647,0.34119 3.35509,0 5.03264,-1.89553 5.03265,-5.68661 -1e-5,-1.92396 -0.39807,-3.3314 -1.19418,-4.22231 -0.79614,-0.89089 -2.07089,-1.33634 -3.82425,-1.33635 -0.37912,10e-6 -0.84352,0.1327 -1.39322,0.39806 -0.54971,0.26539 -0.98569,0.56394 -1.30792,0.89564"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3190" />
<path
d="m 311.42519,780.14678 c -0.58762,-0.40753 -1.17998,-0.6113 -1.77706,-0.61131 -0.95726,10e-6 -1.79603,0.44072 -2.51633,1.32213 -0.71083,0.88144 -1.06624,1.94294 -1.06624,3.18451 l 0,8.72895 -2.70114,0 0,-15.22591 2.70114,0 0,2.43103 c 0.98567,-1.81022 2.44998,-2.71534 4.39291,-2.71536 0.48335,2e-5 1.17996,0.0853 2.08983,0.2559 l -1.12311,2.63006"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3192" />
<path
d="m 317.25397,771.78746 c 0.4644,2e-5 0.85772,0.16588 1.17997,0.49758 0.33171,0.32226 0.49757,0.71084 0.49758,1.16575 -10e-6,0.46443 -0.16587,0.86249 -0.49758,1.19419 -0.32225,0.32226 -0.71557,0.48338 -1.17997,0.48336 -0.45494,2e-5 -0.84826,-0.1611 -1.17997,-0.48336 -0.32225,-0.3317 -0.48337,-0.72976 -0.48337,-1.19419 0,-0.46438 0.16112,-0.85771 0.48337,-1.17997 0.32223,-0.32222 0.71556,-0.48334 1.17997,-0.48336 m -1.47852,20.9836 0,-12.95126 -2.08983,0 0,-2.27465 4.79097,0 0,15.22591 -2.70114,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3194" />
<path
d="m 328.25756,793.05539 -0.71082,0 -6.52539,-15.55289 2.95704,0 4.02328,10.6624 4.10857,-10.6624 2.82909,0 -6.68177,15.55289"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3196" />
<path
d="m 345.64438,791.02242 c -1.08047,1.35531 -2.73432,2.03297 -4.96157,2.03297 -1.19419,0 -2.232,-0.43124 -3.11342,-1.29371 -0.87195,-0.87194 -1.30792,-1.9524 -1.30792,-3.24137 0,-1.54485 0.67291,-2.84803 2.01875,-3.90954 1.3553,-1.07097 3.08024,-1.60646 5.17481,-1.60647 0.56866,1e-5 1.21314,0.12322 1.93345,0.36963 -1e-5,-2.46419 -1.09942,-3.69628 -3.29823,-3.6963 -1.68704,2e-5 -2.98548,0.45494 -3.89533,1.36479 l -1.13732,-2.26043 c 0.51179,-0.417 1.21788,-0.77242 2.11826,-1.06624 0.90985,-0.30327 1.77706,-0.45491 2.60162,-0.45493 2.2083,2e-5 3.81002,0.50234 4.80519,1.50695 1.00462,1.00465 1.50694,2.60164 1.50695,4.79098 l 0,5.45914 c -1e-5,1.33636 0.39805,2.22726 1.19419,2.67271 l 0,1.35057 c -1.09942,0 -1.92398,-0.15638 -2.47367,-0.46914 -0.54024,-0.31277 -0.92883,-0.8293 -1.16576,-1.54961 m -0.2559,-5.72926 c -0.853,-0.18954 -1.45009,-0.28432 -1.79128,-0.28433 -1.36479,10e-6 -2.47842,0.35068 -3.34088,1.05202 -0.86248,0.70136 -1.29371,1.53066 -1.29371,2.4879 0,1.58277 0.93355,2.37416 2.80066,2.37416 1.36478,0 2.57318,-0.64922 3.62521,-1.94767 l 0,-3.68208"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3198" />
<path
d="m 353.30709,779.67763 -1.76285,0 0,-2.13248 1.76285,0 0,-3.1845 2.70114,-1.03781 0,4.22231 4.17966,0 0,2.13248 -4.17966,0 0,7.5632 c 0,1.27949 0.21325,2.18935 0.63975,2.72957 0.43596,0.54023 1.13257,0.81034 2.08983,0.81034 0.69186,0 1.40742,-0.17533 2.14669,-0.52601 l 0.39807,2.37416 c -1.11838,0.28433 -2.34574,0.4265 -3.68208,0.4265 -1.20368,0 -2.22253,-0.44545 -3.05656,-1.33636 -0.82456,-0.90037 -1.23684,-2.03296 -1.23684,-3.39775 l 0,-8.64365"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3200" />
<path
d="m 376.7075,785.42111 -10.97516,0 c 0,1.78181 0.4881,3.15134 1.4643,4.10858 0.86247,0.83404 1.97136,1.25105 3.32667,1.25105 1.54485,0 2.83382,-0.45018 3.8669,-1.35057 l 1.13732,1.94767 c -0.41703,0.41702 -1.05677,0.77717 -1.91923,1.08045 -1.08047,0.39807 -2.28413,0.5971 -3.611,0.5971 -1.9145,0 -3.53992,-0.64922 -4.87627,-1.94767 -1.488,-1.43112 -2.232,-3.35509 -2.23199,-5.77191 -1e-5,-2.51158 0.76295,-4.52558 2.28886,-6.04202 1.36478,-1.3553 2.98072,-2.03295 4.84783,-2.03297 2.17038,2e-5 3.87163,0.61133 5.10374,1.83394 1.19417,1.17524 1.79127,2.73432 1.79128,4.67723 -10e-6,0.59711 -0.0711,1.14681 -0.21325,1.64912 m -6.55382,-5.88564 c -1.20367,10e-6 -2.21304,0.3886 -3.02812,1.16575 -0.77717,0.73927 -1.21789,1.65861 -1.32214,2.75801 l 8.43041,0 c -2e-5,-1.08992 -0.34121,-1.99978 -1.02359,-2.72957 -0.74875,-0.79612 -1.7676,-1.19418 -3.05656,-1.19419"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3202" />
<path
d="m 388.02386,780.14678 c -0.58763,-0.40753 -1.17998,-0.6113 -1.77707,-0.61131 -0.95725,10e-6 -1.79603,0.44072 -2.51632,1.32213 -0.71083,0.88144 -1.06625,1.94294 -1.06624,3.18451 l 0,8.72895 -2.70114,0 0,-15.22591 2.70114,0 0,2.43103 c 0.98567,-1.81022 2.44997,-2.71534 4.39291,-2.71536 0.48335,2e-5 1.17996,0.0853 2.08983,0.2559 l -1.12311,2.63006"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3204" />
<path
d="m 279.85028,828.21287 1.03781,-2.61584 c 0.53074,0.38858 1.18944,0.71556 1.97609,0.98094 0.79612,0.2559 1.50695,0.38384 2.13248,0.38384 1.10888,0 1.99979,-0.30328 2.67271,-0.90986 0.67291,-0.60656 1.00936,-1.37899 1.00937,-2.31729 -1e-5,-0.70134 -0.18956,-1.35056 -0.56866,-1.94766 -0.36964,-0.60657 -1.30793,-1.26527 -2.81487,-1.9761 l -1.67755,-0.78191 c -1.42166,-0.66343 -2.41681,-1.45008 -2.98547,-2.35995 -0.55919,-0.90984 -0.83878,-2.00451 -0.83878,-3.28401 0,-1.55433 0.54971,-2.84329 1.64912,-3.8669 1.09941,-1.02357 2.51158,-1.53536 4.23653,-1.53539 2.30306,3e-5 3.90479,0.37439 4.80518,1.12311 l -0.83877,2.47368 c -0.37912,-0.27484 -0.95726,-0.54021 -1.73442,-0.79613 -0.77718,-0.25588 -1.49748,-0.38383 -2.16091,-0.38385 -0.96673,2e-5 -1.72968,0.27488 -2.28886,0.82456 -0.54971,0.54973 -0.82457,1.25581 -0.82456,2.11827 -1e-5,0.53076 0.0995,1.01412 0.29855,1.45008 0.19902,0.43599 0.47388,0.80088 0.82455,1.09468 0.36015,0.29382 1.08993,0.7061 2.18935,1.23683 l 1.70598,0.81035 c 1.42165,0.67292 2.4168,1.47852 2.98548,2.41681 0.57812,0.92882 0.86719,2.11353 0.8672,3.55413 -1e-5,1.56382 -0.63027,2.89069 -1.8908,3.98063 -1.25106,1.08993 -2.92861,1.6349 -5.03265,1.6349 -1.84815,0 -3.42618,-0.43598 -4.7341,-1.30792"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3206" />
<path
d="m 306.05134,815.17631 -1.33635,1.90501 c -0.27486,-0.27484 -0.76296,-0.53547 -1.4643,-0.78191 -0.69188,-0.2464 -1.37428,-0.36961 -2.04718,-0.36963 -1.46905,2e-5 -2.63481,0.51655 -3.49727,1.54961 -0.86247,1.0236 -1.29371,2.43103 -1.2937,4.22231 -10e-6,1.78181 0.44071,3.14185 1.32213,4.08014 0.88142,0.92882 2.10404,1.39322 3.66787,1.39322 1.21313,0 2.43575,-0.46914 3.66786,-1.40744 l 1.06624,2.27465 c -1.45009,0.93829 -3.24611,1.40743 -5.38806,1.40743 -2.07562,0 -3.79108,-0.6966 -5.14639,-2.08983 -1.35531,-1.39321 -2.03296,-3.27927 -2.03296,-5.65817 0,-2.42628 0.70135,-4.37394 2.10405,-5.843 1.41217,-1.46902 3.34088,-2.20354 5.78612,-2.20356 0.78664,2e-5 1.63963,0.16587 2.55898,0.49758 0.91932,0.33173 1.59698,0.67293 2.03296,1.02359"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3208" />
<path
d="m 318.39129,829.16537 0,-9.56772 c -1e-5,-1.13731 -0.2796,-2.03295 -0.83877,-2.68692 -0.5592,-0.65395 -1.34584,-0.98093 -2.35995,-0.98095 -0.65397,2e-5 -1.31266,0.19431 -1.9761,0.58288 -0.65396,0.37912 -1.15628,0.82457 -1.50695,1.33636 l 0,11.31635 -2.70114,0 0,-21.46696 2.70114,0 0,7.91861 c 0.36015,-0.55917 0.93829,-1.02357 1.73442,-1.39322 0.8056,-0.37909 1.63489,-0.56864 2.48789,-0.56866 1.6112,2e-5 2.87173,0.53077 3.7816,1.59225 0.91932,1.06152 1.37899,2.5116 1.379,4.35026 l 0,9.56772 -2.70114,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3210" />
<path
d="m 325.14415,824.85777 0,-17.15936 2.70114,0 0,16.70443 c -10e-6,0.81508 0.23219,1.45956 0.69661,1.93344 0.47387,0.46441 1.08992,0.69662 1.84814,0.69661 l 0,2.41681 c -3.49727,0 -5.2459,-1.53064 -5.24589,-4.59193"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3212" />
<path
d="m 336.07666,813.93947 0,9.70989 c -1e-5,2.35047 1.01884,3.5257 3.05655,3.5257 0.8909,0 1.70598,-0.2559 2.44524,-0.76769 0.73925,-0.51179 1.22735,-1.10415 1.46431,-1.77707 l 0,-10.69083 2.70114,0 0,15.2259 -2.70114,0 0,-2.10404 c -0.3033,0.59709 -0.91461,1.1468 -1.83394,1.64912 -0.90986,0.49283 -1.80076,0.73925 -2.6727,0.73925 -1.66808,0 -2.94757,-0.47862 -3.83847,-1.43586 -0.88142,-0.95725 -1.32214,-2.3173 -1.32213,-4.08015 l 0,-9.99422 2.70114,0 m -0.29855,-6.28371 c 0.44545,3e-5 0.81981,0.15641 1.12311,0.46915 0.31275,0.30331 0.46914,0.67767 0.46914,1.12311 0,0.44547 -0.15639,0.82457 -0.46914,1.13732 -0.3033,0.31278 -0.67766,0.46916 -1.12311,0.46914 -0.44546,2e-5 -0.82456,-0.15636 -1.13732,-0.46914 -0.31277,-0.31275 -0.46915,-0.69185 -0.46915,-1.13732 0,-0.44544 0.15638,-0.8198 0.46915,-1.12311 0.31276,-0.31274 0.69186,-0.46912 1.13732,-0.46915 m 6.7102,0 c 0.44544,3e-5 0.82455,0.15641 1.13732,0.46915 0.31276,0.30331 0.46914,0.67767 0.46915,1.12311 -1e-5,0.44547 -0.15639,0.82457 -0.46915,1.13732 -0.31277,0.31278 -0.69188,0.46916 -1.13732,0.46914 -0.44546,2e-5 -0.82457,-0.15636 -1.13732,-0.46914 -0.3033,-0.31275 -0.45494,-0.69185 -0.45493,-1.13732 -10e-6,-0.44544 0.15163,-0.8198 0.45493,-1.12311 0.31275,-0.31274 0.69186,-0.46912 1.13732,-0.46915"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3214" />
<path
d="m 348.44504,828.25552 0.95251,-2.55898 c 1.50695,0.98568 2.72009,1.47852 3.63943,1.47852 1.66807,0 2.5021,-0.70135 2.50211,-2.10405 -10e-6,-1.00463 -0.80561,-1.86709 -2.41681,-2.5874 -1.24158,-0.56866 -2.08036,-0.99989 -2.51633,-1.29371 -0.4265,-0.2938 -0.80086,-0.62552 -1.1231,-0.99516 -0.31277,-0.37909 -0.54971,-0.77716 -0.71083,-1.19418 -0.15164,-0.42649 -0.22746,-0.88142 -0.22746,-1.36479 0,-1.25104 0.45492,-2.22724 1.36478,-2.92861 0.90986,-0.70133 2.09931,-1.052 3.56835,-1.05202 1.10888,2e-5 2.50684,0.35069 4.19388,1.05202 l -0.76769,2.50211 c -1.07099,-0.85298 -2.14671,-1.27947 -3.22716,-1.27949 -0.64448,2e-5 -1.18945,0.15166 -1.6349,0.45493 -0.43598,0.3033 -0.65396,0.68715 -0.65396,1.15154 0,0.97622 0.55444,1.71547 1.66334,2.21778 l 1.93344,0.88143 c 1.18471,0.54023 2.04718,1.15628 2.58741,1.84815 0.54022,0.69187 0.81033,1.55908 0.81035,2.60162 -2e-5,1.36479 -0.47864,2.43577 -1.43587,3.21294 -0.95726,0.76769 -2.28413,1.15153 -3.98063,1.15153 -1.60174,0 -3.10869,-0.39806 -4.52086,-1.19418"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3216" />
<path
d="m 360.21633,828.25552 0.9525,-2.55898 c 1.50695,0.98568 2.7201,1.47852 3.63944,1.47852 1.66806,0 2.5021,-0.70135 2.5021,-2.10405 0,-1.00463 -0.80561,-1.86709 -2.41681,-2.5874 -1.24158,-0.56866 -2.08035,-0.99989 -2.51632,-1.29371 -0.4265,-0.2938 -0.80087,-0.62552 -1.12311,-0.99516 -0.31276,-0.37909 -0.5497,-0.77716 -0.71082,-1.19418 -0.15165,-0.42649 -0.22747,-0.88142 -0.22747,-1.36479 0,-1.25104 0.45493,-2.22724 1.36479,-2.92861 0.90985,-0.70133 2.0993,-1.052 3.56835,-1.05202 1.10888,2e-5 2.50684,0.35069 4.19387,1.05202 l -0.76769,2.50211 c -1.07099,-0.85298 -2.1467,-1.27947 -3.22715,-1.27949 -0.64449,2e-5 -1.18946,0.15166 -1.6349,0.45493 -0.43598,0.3033 -0.65397,0.68715 -0.65396,1.15154 -1e-5,0.97622 0.55444,1.71547 1.66333,2.21778 l 1.93345,0.88143 c 1.1847,0.54023 2.04717,1.15628 2.58741,1.84815 0.54022,0.69187 0.81033,1.55908 0.81034,2.60162 -1e-5,1.36479 -0.47863,2.43577 -1.43587,3.21294 -0.95725,0.76769 -2.28413,1.15153 -3.98063,1.15153 -1.60173,0 -3.10868,-0.39806 -4.52085,-1.19418"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3218" />
<path
d="m 385.80608,821.81543 -10.97516,0 c -10e-6,1.78181 0.4881,3.15133 1.4643,4.10858 0.86246,0.83403 1.97135,1.25105 3.32667,1.25105 1.54485,0 2.83382,-0.45019 3.8669,-1.35057 l 1.13732,1.94766 c -0.41703,0.41702 -1.05678,0.77718 -1.91923,1.08046 -1.08047,0.39806 -2.28414,0.59709 -3.611,0.59709 -1.9145,0 -3.53992,-0.64922 -4.87627,-1.94766 -1.488,-1.43113 -2.232,-3.3551 -2.232,-5.77191 0,-2.51158 0.76295,-4.52558 2.28886,-6.04203 1.36479,-1.35529 2.98073,-2.03294 4.84784,-2.03296 2.17038,2e-5 3.87162,0.61133 5.10373,1.83393 1.19418,1.17525 1.79127,2.73433 1.79129,4.67724 -2e-5,0.5971 -0.0711,1.14681 -0.21325,1.64912 m -6.55382,-5.88565 c -1.20367,2e-5 -2.21305,0.3886 -3.02812,1.16576 -0.77718,0.73927 -1.21789,1.65861 -1.32214,2.75801 l 8.4304,0 c -1e-5,-1.08993 -0.34121,-1.99978 -1.02359,-2.72958 -0.74874,-0.79611 -1.76759,-1.19417 -3.05655,-1.19419"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3220" />
<path
d="m 389.06166,824.85777 0,-17.15936 2.70114,0 0,16.70443 c 0,0.81508 0.2322,1.45956 0.69661,1.93344 0.47388,0.46441 1.08993,0.69662 1.84815,0.69661 l 0,2.41681 c -3.49727,0 -5.2459,-1.53064 -5.2459,-4.59193"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3222" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 63 KiB

View File

@ -0,0 +1,510 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="979.94531"
height="621.84827"
id="svg2"
version="1.1"
inkscape:version="0.47 r22583"
sodipodi:docname="Orange_blue_public_key_cryptography_de.text.svg">
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="232.46205"
inkscape:cy="240.23916"
inkscape:document-units="px"
inkscape:current-layer="g5000"
showgrid="true"
inkscape:window-width="1920"
inkscape:window-height="1005"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1">
<inkscape:grid
snapvisiblegridlinesonly="true"
enabled="true"
visible="true"
empspacing="5"
id="grid2816"
type="xygrid" />
</sodipodi:namedview>
<title
id="title5016">Public key cryptography</title>
<defs
id="defs4">
<marker
style="overflow:visible"
id="Arrow2Mend"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mend">
<path
transform="scale(-0.6,-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
id="path3686" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Send"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Send">
<path
transform="matrix(-0.3,0,0,-0.3,0.69,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
id="path3692" />
</marker>
<marker
style="overflow:visible"
id="Arrow1Send"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Send">
<path
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
id="path3674" />
</marker>
<inkscape:perspective
id="perspective10"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 526.18109 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
id="perspective3629" />
<marker
style="overflow:visible"
id="Arrow2Mendt"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mendt">
<path
transform="scale(-0.6,-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill:#729fcf;fill-rule:evenodd;stroke:#729fcf;stroke-width:0.625;stroke-linejoin:round"
id="path4869" />
</marker>
<marker
style="overflow:visible"
id="Arrow2MendtR"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2MendtR">
<path
transform="scale(-0.6,-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill:#f57900;fill-rule:evenodd;stroke:#f57900;stroke-width:0.625;stroke-linejoin:round"
id="path4943" />
</marker>
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
id="perspective3706" />
<marker
style="overflow:visible"
id="Arrow2Mendtc"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mendtc">
<path
transform="scale(-0.6,-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill:#f57900;fill-rule:evenodd;stroke:#f57900;stroke-width:0.625;stroke-linejoin:round"
id="path3722" />
</marker>
<inkscape:perspective
id="perspective3816"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective3841"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective3866"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Public key cryptography</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/publicdomain/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<g
transform="translate(83.75,-60.907078)"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Ebene 1">
<g
transform="translate(0,7.4609331)"
id="g3616">
<rect
style="fill:#555753;fill-opacity:1;stroke:#729fcf;stroke-width:7.50000000000000000;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3610-5-8"
width="374.44531"
height="74.889061"
x="-80"
y="324.90125"
ry="24.963018" />
<g
style="font-size:14px;font-style:normal;font-weight:normal;fill:#eeeeec;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
id="text3804">
<path
d="m 41.480469,379.60495 -9.679688,-15.79688 -4.570312,6.49219 0,9.30469 -4.6875,0 0,-34.33594 4.6875,0 0,18.67969 12.75,-18.67969 5.226562,0 -10.265625,14.88281 11.71875,19.45313 -5.179687,0"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3117" />
<path
d="m 50.199219,372.50339 0,-28.28907 4.453125,0 0,27.53907 c -8e-6,1.34375 0.382804,2.40625 1.148437,3.1875 0.78124,0.76563 1.796864,1.14844 3.046875,1.14843 l 0,3.98438 c -5.765631,0 -8.648441,-2.52344 -8.648437,-7.57031"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3119" />
<path
d="m 78.183594,376.72214 c -1.781266,2.23437 -4.507826,3.35156 -8.179688,3.35156 -1.968757,0 -3.679693,-0.71094 -5.132812,-2.13281 -1.437503,-1.4375 -2.156252,-3.21875 -2.15625,-5.34375 -2e-6,-2.54687 1.109372,-4.6953 3.328125,-6.44532 2.234367,-1.7656 5.078114,-2.64842 8.53125,-2.64843 0.937485,10e-6 1.999984,0.20314 3.1875,0.60937 -1.7e-5,-4.06248 -1.812515,-6.09373 -5.4375,-6.09375 -2.781259,2e-5 -4.921882,0.75002 -6.421875,2.25 l -1.875,-3.72656 c 0.843746,-0.68748 2.007807,-1.27341 3.492187,-1.75781 1.499992,-0.49998 2.929678,-0.74998 4.289063,-0.75 3.64061,2e-5 6.281232,0.82815 7.921875,2.48437 1.656229,1.65627 2.484353,4.28908 2.484375,7.89844 l 0,9 c -2.2e-5,2.20313 0.656228,3.67188 1.96875,4.40625 l 0,2.22656 c -1.812522,0 -3.171895,-0.25781 -4.078125,-0.77344 -0.890644,-0.51562 -1.531268,-1.36718 -1.921875,-2.55468 m -0.421875,-9.44532 c -1.406266,-0.31248 -2.39064,-0.46873 -2.953125,-0.46875 -2.250012,2e-5 -4.085948,0.57814 -5.507813,1.73438 -1.421882,1.15626 -2.132819,2.52345 -2.132812,4.10156 -7e-6,2.60938 1.539054,3.91407 4.617187,3.91406 2.249987,1e-5 4.242173,-1.0703 5.976563,-3.21093 l 0,-6.07032"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3121" />
<path
d="m 102.86328,358.79245 c -0.96876,-0.67185 -1.94533,-1.00779 -2.929686,-1.00781 -1.578138,2e-5 -2.960949,0.72658 -4.148438,2.17968 -1.171883,1.45315 -1.75782,3.20315 -1.757812,5.25 l 0,14.39063 -4.453125,0 0,-25.10156 4.453125,0 0,4.00781 c 1.62499,-2.98435 4.03905,-4.47654 7.242186,-4.47656 0.79686,2e-5 1.9453,0.14065 3.44531,0.42187 l -1.85156,4.33594"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3123" />
<path
d="m 109.47266,358.01901 -2.90625,0 0,-3.51562 2.90625,0 0,-5.25 4.45312,-1.71094 0,6.96094 6.89063,0 0,3.51562 -6.89063,0 0,12.46875 c -1e-5,2.10938 0.35155,3.60938 1.05469,4.5 0.71874,0.89063 1.86717,1.33594 3.44531,1.33594 1.14061,0 2.3203,-0.28906 3.53906,-0.86719 l 0.65625,3.91406 c -1.84376,0.46875 -3.8672,0.70313 -6.07031,0.70313 -1.98438,0 -3.66407,-0.73437 -5.03906,-2.20313 -1.35938,-1.48437 -2.03907,-3.35155 -2.03906,-5.60156 l 0,-14.25"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3125" />
<path
d="m 148.05078,367.48776 -18.09375,0 c 0,2.93751 0.80468,5.19532 2.41406,6.77344 1.42187,1.375 3.24999,2.0625 5.48438,2.0625 2.54686,0 4.67185,-0.74218 6.375,-2.22656 l 1.875,3.21093 c -0.68752,0.68751 -1.74221,1.28126 -3.16406,1.78125 -1.78127,0.65625 -3.76564,0.98438 -5.95313,0.98438 -3.15626,0 -5.83594,-1.07031 -8.03906,-3.21094 -2.45313,-2.35937 -3.67969,-5.53124 -3.67969,-9.51562 0,-4.14061 1.25781,-7.46092 3.77344,-9.96094 2.24999,-2.23435 4.91405,-3.35154 7.99219,-3.35156 3.5781,2e-5 6.38279,1.00783 8.41406,3.02343 1.96873,1.93753 2.9531,4.50784 2.95312,7.71094 -2e-5,0.98439 -0.11721,1.89064 -0.35156,2.71875 m -10.80469,-9.70312 c -1.98438,2e-5 -3.64844,0.64064 -4.99218,1.92187 -1.28126,1.21877 -2.00782,2.73439 -2.17969,4.54688 l 13.89844,0 c -2e-5,-1.79686 -0.56252,-3.29686 -1.6875,-4.5 -1.2344,-1.31248 -2.91408,-1.96873 -5.03907,-1.96875"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3127" />
<path
d="m 168.34766,379.60495 -6.84375,-9.14063 -6.11719,9.14063 -5.20313,0 9.11719,-12.84375 -8.36719,-12.25781 5.01563,0 5.625,8.625 6.30469,-8.625 4.92187,0 -9.11719,12.25781 9.98438,12.84375 -5.32031,0"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3129" />
<path
d="m 178.75391,358.01901 -2.90625,0 0,-3.51562 2.90625,0 0,-5.25 4.45312,-1.71094 0,6.96094 6.89063,0 0,3.51562 -6.89063,0 0,12.46875 c -1e-5,2.10938 0.35155,3.60938 1.05469,4.5 0.71874,0.89063 1.86717,1.33594 3.44531,1.33594 1.14061,0 2.3203,-0.28906 3.53906,-0.86719 l 0.65625,3.91406 c -1.84376,0.46875 -3.8672,0.70313 -6.07031,0.70313 -1.98438,0 -3.66407,-0.73437 -5.03906,-2.20313 -1.35938,-1.48437 -2.03907,-3.35155 -2.03906,-5.60156 l 0,-14.25"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3131" />
</g>
</g>
<g
id="g3616-5"
transform="translate(518,-2.4999999e-6)">
<rect
style="fill:#555753;fill-opacity:1;stroke:#f57900;stroke-width:7.50000000000000000;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3610-5"
width="374.44531"
height="74.889061"
x="0"
y="332.36218"
ry="24.963018" />
<g
style="font-size:14px;font-style:normal;font-weight:normal;fill:#eeeeec;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
id="text3804-3">
<path
d="m 87.730469,355.12057 -1.945313,3.86719 c -2.359398,-1.74997 -4.671895,-2.62497 -6.9375,-2.625 -3.593765,3e-5 -6.429699,1.26566 -8.507812,3.79688 -2.078133,2.53127 -3.117195,5.88283 -3.117188,10.05468 -7e-6,3.96877 1.015617,7.16408 3.046875,9.58594 2.046863,2.42188 4.828111,3.63282 8.34375,3.63281 2.49998,1e-5 4.523415,-0.74999 6.070313,-2.25 l 0,-8.03906 -4.757813,0 0,-3.98437 9.445313,0 0,14.95312 c -1.250028,1.0625 -2.992214,1.92188 -5.226563,2.57813 -2.234396,0.64062 -4.406269,0.96093 -6.515625,0.96093 -4.734387,0 -8.476571,-1.60156 -11.226562,-4.80468 -2.734378,-3.21875 -4.101565,-7.49218 -4.101563,-12.82032 -2e-6,-5.31247 1.499997,-9.61716 4.5,-12.91406 3.015616,-3.31246 7.078112,-4.96871 12.1875,-4.96875 3.578103,4e-5 6.492163,0.99222 8.742188,2.97656"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3053" />
<path
d="m 117.16797,374.9487 -18.093751,0 c -6e-6,2.93751 0.80468,5.19532 2.414061,6.77344 1.42187,1.375 3.24999,2.0625 5.48438,2.0625 2.54685,0 4.67185,-0.74219 6.375,-2.22657 l 1.875,3.21094 c -0.68753,0.6875 -1.74221,1.28125 -3.16407,1.78125 -1.78126,0.65625 -3.76564,0.98438 -5.95312,0.98438 -3.15626,0 -5.83595,-1.07031 -8.039064,-3.21094 -2.453127,-2.35937 -3.679689,-5.53124 -3.679687,-9.51563 -2e-6,-4.1406 1.257809,-7.46091 3.773437,-9.96093 2.249994,-2.23435 4.914054,-3.35154 7.992184,-3.35157 3.57811,3e-5 6.3828,1.00784 8.41407,3.02344 1.96872,1.93752 2.9531,4.50783 2.95312,7.71094 -2e-5,0.98439 -0.11721,1.89064 -0.35156,2.71875 m -10.80469,-9.70313 c -1.98439,3e-5 -3.64845,0.64065 -4.99219,1.92188 -1.28125,1.21877 -2.007815,2.73439 -2.179684,4.54687 l 13.898434,0 c -2e-5,-1.79685 -0.56252,-3.29685 -1.6875,-4.5 -1.23439,-1.31247 -2.91407,-1.96872 -5.03906,-1.96875"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3055" />
<path
d="m 137.65234,387.06589 0,-15.77344 c -1e-5,-1.87498 -0.46095,-3.35154 -1.38281,-4.42969 -0.92189,-1.0781 -2.21876,-1.61716 -3.89062,-1.61719 -1.07814,3e-5 -2.16408,0.32034 -3.25782,0.96094 -1.07813,0.62502 -1.90625,1.3594 -2.48437,2.20313 l 0,18.65625 -4.45313,0 0,-35.39063 4.45313,0 0,13.05469 c 0.59374,-0.92185 1.54686,-1.68748 2.85937,-2.29688 1.32812,-0.62497 2.6953,-0.93747 4.10157,-0.9375 2.65623,3e-5 4.73435,0.87503 6.23437,2.625 1.5156,1.75003 2.27342,4.14065 2.27344,7.17188 l 0,15.77344 -4.45313,0"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3057" />
<path
d="m 169.57422,374.9487 -18.09375,0 c -1e-5,2.93751 0.80468,5.19532 2.41406,6.77344 1.42187,1.375 3.24999,2.0625 5.48438,2.0625 2.54685,0 4.67185,-0.74219 6.375,-2.22657 l 1.875,3.21094 c -0.68753,0.6875 -1.74221,1.28125 -3.16407,1.78125 -1.78126,0.65625 -3.76564,0.98438 -5.95312,0.98438 -3.15626,0 -5.83595,-1.07031 -8.03906,-3.21094 -2.45313,-2.35937 -3.67969,-5.53124 -3.67969,-9.51563 0,-4.1406 1.25781,-7.46091 3.77344,-9.96093 2.24999,-2.23435 4.91405,-3.35154 7.99218,-3.35157 3.57811,3e-5 6.3828,1.00784 8.41407,3.02344 1.96872,1.93752 2.9531,4.50783 2.95312,7.71094 -2e-5,0.98439 -0.11721,1.89064 -0.35156,2.71875 m -10.80469,-9.70313 c -1.98439,3e-5 -3.64845,0.64065 -4.99219,1.92188 -1.28125,1.21877 -2.00782,2.73439 -2.17968,4.54687 l 13.89843,0 c -2e-5,-1.79685 -0.56252,-3.29685 -1.6875,-4.5 -1.23439,-1.31247 -2.91407,-1.96872 -5.03906,-1.96875"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3059" />
<path
d="m 179.18359,352.47214 c 0.76562,3e-5 1.41406,0.27347 1.94532,0.82031 0.54686,0.53128 0.8203,1.17191 0.82031,1.92187 -1e-5,0.76566 -0.27345,1.42191 -0.82031,1.96875 -0.53126,0.53128 -1.1797,0.79691 -1.94532,0.79688 -0.75,3e-5 -1.39844,-0.2656 -1.94531,-0.79688 -0.53125,-0.54684 -0.79688,-1.20309 -0.79687,-1.96875 -1e-5,-0.76559 0.26562,-1.41402 0.79687,-1.94531 0.53124,-0.53121 1.17968,-0.79684 1.94531,-0.79687 m -2.4375,34.59375 0,-21.35157 -3.44531,0 0,-3.75 7.89844,0 0,25.10157 -4.45313,0"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3061" />
<path
d="m 217.33984,387.06589 0,-15.89063 c -3e-5,-3.9531 -1.71096,-5.92966 -5.13281,-5.92969 -1.07815,3e-5 -2.08596,0.33596 -3.02344,1.00782 -0.93752,0.65627 -1.57814,1.40627 -1.92187,2.25 l 0,18.5625 -4.45313,0 0,-17.83594 c -1e-5,-1.23436 -0.46876,-2.20311 -1.40625,-2.90625 -0.92189,-0.71873 -2.14845,-1.0781 -3.67968,-1.07813 -0.89064,3e-5 -1.84376,0.34378 -2.85938,1.03125 -1.00001,0.68753 -1.71094,1.44534 -2.13281,2.27344 l 0,18.51563 -4.45313,0 0,-25.10157 2.90625,0 1.47657,2.90625 c 1.71874,-2.24997 3.86717,-3.37497 6.44531,-3.375 3.59373,3e-5 6.10935,1.11722 7.54687,3.35157 0.49998,-0.9531 1.42967,-1.74998 2.78907,-2.39063 1.35935,-0.6406 2.75778,-0.96091 4.19531,-0.96094 2.59372,3e-5 4.60153,0.77347 6.02344,2.32032 1.42184,1.53127 2.13277,3.68752 2.13281,6.46875 l 0,16.78125 -4.45313,0"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3063" />
<path
d="m 229.71484,365.47995 -2.90625,0 0,-3.51563 2.90625,0 0,-5.25 4.45313,-1.71093 0,6.96093 6.89062,0 0,3.51563 -6.89062,0 0,12.46875 c -1e-5,2.10938 0.35155,3.60938 1.05469,4.5 0.71874,0.89063 1.86717,1.33594 3.44531,1.33594 1.14061,0 2.3203,-0.28906 3.53906,-0.86719 l 0.65625,3.91406 c -1.84376,0.46875 -3.8672,0.70313 -6.07031,0.70313 -1.98439,0 -3.66407,-0.73438 -5.03906,-2.20313 -1.35938,-1.48437 -2.03907,-3.35155 -2.03907,-5.60156 l 0,-14.25"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3065" />
<path
d="m 268.29297,374.9487 -18.09375,0 c -1e-5,2.93751 0.80468,5.19532 2.41406,6.77344 1.42187,1.375 3.24999,2.0625 5.48438,2.0625 2.54685,0 4.67185,-0.74219 6.375,-2.22657 l 1.875,3.21094 c -0.68753,0.6875 -1.74221,1.28125 -3.16407,1.78125 -1.78126,0.65625 -3.76564,0.98438 -5.95312,0.98438 -3.15626,0 -5.83595,-1.07031 -8.03906,-3.21094 -2.45313,-2.35937 -3.67969,-5.53124 -3.67969,-9.51563 0,-4.1406 1.25781,-7.46091 3.77344,-9.96093 2.24999,-2.23435 4.91405,-3.35154 7.99218,-3.35157 3.57811,3e-5 6.3828,1.00784 8.41407,3.02344 1.96872,1.93752 2.9531,4.50783 2.95312,7.71094 -2e-5,0.98439 -0.11721,1.89064 -0.35156,2.71875 m -10.80469,-9.70313 c -1.98439,3e-5 -3.64845,0.64065 -4.99219,1.92188 -1.28125,1.21877 -2.00782,2.73439 -2.17968,4.54687 l 13.89843,0 c -2e-5,-1.79685 -0.56252,-3.29685 -1.6875,-4.5 -1.23439,-1.31247 -2.91407,-1.96872 -5.03906,-1.96875"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3067" />
<path
d="m 288.58984,387.06589 -6.84375,-9.14063 -6.11718,9.14063 -5.20313,0 9.11719,-12.84375 -8.36719,-12.25782 5.01563,0 5.625,8.625 6.30468,-8.625 4.92188,0 -9.11719,12.25782 9.98438,12.84375 -5.32032,0"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3069" />
<path
d="m 298.99609,365.47995 -2.90625,0 0,-3.51563 2.90625,0 0,-5.25 4.45313,-1.71093 0,6.96093 6.89062,0 0,3.51563 -6.89062,0 0,12.46875 c -1e-5,2.10938 0.35155,3.60938 1.05469,4.5 0.71874,0.89063 1.86717,1.33594 3.44531,1.33594 1.14061,0 2.3203,-0.28906 3.53906,-0.86719 l 0.65625,3.91406 c -1.84376,0.46875 -3.8672,0.70313 -6.07031,0.70313 -1.98439,0 -3.66407,-0.73438 -5.03906,-2.20313 -1.35938,-1.48437 -2.03907,-3.35155 -2.03907,-5.60156 l 0,-14.25"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3071" />
</g>
</g>
<path
sodipodi:nodetypes="ccc"
id="path3652"
d="m 700.20273,451.38193 c -146.9176,142.40184 -386.9176,142.40184 -526.9176,44.40184 -20,-22 40,38 -48,-46"
style="fill:none;stroke:#729fcf;stroke-width:20;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow2Mendt)" />
<g
id="g5000"
transform="matrix(1.2364568,0,0,1.2364568,-10.511061,-393.16125)">
<path
transform="matrix(1.1845756,0,0,1.1845756,-42.025553,-142.55923)"
d="m 400,772.36218 c 0,44.18278 -35.81722,80 -80,80 -44.18278,0 -80,-35.81722 -80,-80 0,-44.18278 35.81722,-80 80,-80 44.18278,0 80,35.81722 80,80 z"
sodipodi:ry="80"
sodipodi:rx="80"
sodipodi:cy="772.36218"
sodipodi:cx="320"
id="path5002"
style="fill:#555753;fill-opacity:1;stroke:#729fcf;stroke-width:5.12058449;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
<path
sodipodi:nodetypes="cssccccccccccccsssc"
id="path5004"
d="m 309.70237,710.64889 c -11.8411,0 -21.44021,9.59909 -21.44021,21.44019 0,11.84111 9.59911,21.44022 21.44021,21.44022 9.05256,0 16.79381,-5.61197 19.93828,-13.54529 l 1.50193,-0.74819 8.39742,7.14674 7.14673,-10.72011 10.54143,10.72011 3.57337,-10.72011 14.29348,10.72011 10.7201,-10.72011 -10.7201,-14.29347 -46.82229,0 c -3.70675,-6.40987 -10.63341,-10.72009 -18.57035,-10.72009 z m -3.57337,10.72009 c 3.94704,0 7.14674,3.1997 7.14674,7.14673 0,3.94704 -3.1997,7.14674 -7.14674,7.14674 -3.94704,0 -7.14674,-3.1997 -7.14674,-7.14674 0,-3.94703 3.1997,-7.14673 7.14674,-7.14673 z"
style="fill:none;stroke:#eeeeec;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none" />
<g
style="font-size:11.32267666px;font-style:normal;font-weight:normal;fill:#eeeeec;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
id="text3804-6">
<path
d="m 289.64547,791.93228 0,6.80972 -2.70114,0 0,-21.19685 2.70114,0 0,1.25106 c 1.02358,-1.02358 2.26042,-1.53537 3.71051,-1.53539 2.1609,2e-5 3.84319,0.67293 5.04687,2.01875 1.20365,1.34584 1.80548,3.3172 1.8055,5.91408 -2e-5,2.31256 -0.60659,4.20335 -1.81972,5.67239 -1.21315,1.45957 -2.96652,2.18935 -5.26011,2.18935 -0.64449,0 -1.33636,-0.11373 -2.07562,-0.3412 -0.72978,-0.22746 -1.19893,-0.4881 -1.40743,-0.78191 m 0,-11.10311 0,8.87112 c 0.17059,0.2559 0.53074,0.50232 1.08045,0.73926 0.5497,0.22746 1.08519,0.34119 1.60647,0.34119 3.35509,0 5.03264,-1.89553 5.03265,-5.68661 -1e-5,-1.92396 -0.39807,-3.3314 -1.19418,-4.22231 -0.79614,-0.89089 -2.07089,-1.33634 -3.82425,-1.33635 -0.37912,10e-6 -0.84352,0.1327 -1.39322,0.39806 -0.54971,0.26539 -0.98569,0.56394 -1.30792,0.89564"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3134" />
<path
d="m 311.42519,780.14678 c -0.58762,-0.40753 -1.17998,-0.6113 -1.77706,-0.61131 -0.95726,10e-6 -1.79603,0.44072 -2.51633,1.32213 -0.71083,0.88144 -1.06624,1.94294 -1.06624,3.18451 l 0,8.72895 -2.70114,0 0,-15.22591 2.70114,0 0,2.43103 c 0.98567,-1.81022 2.44998,-2.71534 4.39291,-2.71536 0.48335,2e-5 1.17996,0.0853 2.08983,0.2559 l -1.12311,2.63006"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3136" />
<path
d="m 317.25397,771.78746 c 0.4644,2e-5 0.85772,0.16588 1.17997,0.49758 0.33171,0.32226 0.49757,0.71084 0.49758,1.16575 -10e-6,0.46443 -0.16587,0.86249 -0.49758,1.19419 -0.32225,0.32226 -0.71557,0.48338 -1.17997,0.48336 -0.45494,2e-5 -0.84826,-0.1611 -1.17997,-0.48336 -0.32225,-0.3317 -0.48337,-0.72976 -0.48337,-1.19419 0,-0.46438 0.16112,-0.85771 0.48337,-1.17997 0.32223,-0.32222 0.71556,-0.48334 1.17997,-0.48336 m -1.47852,20.9836 0,-12.95126 -2.08983,0 0,-2.27465 4.79097,0 0,15.22591 -2.70114,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3138" />
<path
d="m 328.25756,793.05539 -0.71082,0 -6.52539,-15.55289 2.95704,0 4.02328,10.6624 4.10857,-10.6624 2.82909,0 -6.68177,15.55289"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3140" />
<path
d="m 345.64438,791.02242 c -1.08047,1.35531 -2.73432,2.03297 -4.96157,2.03297 -1.19419,0 -2.232,-0.43124 -3.11342,-1.29371 -0.87195,-0.87194 -1.30792,-1.9524 -1.30792,-3.24137 0,-1.54485 0.67291,-2.84803 2.01875,-3.90954 1.3553,-1.07097 3.08024,-1.60646 5.17481,-1.60647 0.56866,1e-5 1.21314,0.12322 1.93345,0.36963 -1e-5,-2.46419 -1.09942,-3.69628 -3.29823,-3.6963 -1.68704,2e-5 -2.98548,0.45494 -3.89533,1.36479 l -1.13732,-2.26043 c 0.51179,-0.417 1.21788,-0.77242 2.11826,-1.06624 0.90985,-0.30327 1.77706,-0.45491 2.60162,-0.45493 2.2083,2e-5 3.81002,0.50234 4.80519,1.50695 1.00462,1.00465 1.50694,2.60164 1.50695,4.79098 l 0,5.45914 c -1e-5,1.33636 0.39805,2.22726 1.19419,2.67271 l 0,1.35057 c -1.09942,0 -1.92398,-0.15638 -2.47367,-0.46914 -0.54024,-0.31277 -0.92883,-0.8293 -1.16576,-1.54961 m -0.2559,-5.72926 c -0.853,-0.18954 -1.45009,-0.28432 -1.79128,-0.28433 -1.36479,10e-6 -2.47842,0.35068 -3.34088,1.05202 -0.86248,0.70136 -1.29371,1.53066 -1.29371,2.4879 0,1.58277 0.93355,2.37416 2.80066,2.37416 1.36478,0 2.57318,-0.64922 3.62521,-1.94767 l 0,-3.68208"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3142" />
<path
d="m 353.30709,779.67763 -1.76285,0 0,-2.13248 1.76285,0 0,-3.1845 2.70114,-1.03781 0,4.22231 4.17966,0 0,2.13248 -4.17966,0 0,7.5632 c 0,1.27949 0.21325,2.18935 0.63975,2.72957 0.43596,0.54023 1.13257,0.81034 2.08983,0.81034 0.69186,0 1.40742,-0.17533 2.14669,-0.52601 l 0.39807,2.37416 c -1.11838,0.28433 -2.34574,0.4265 -3.68208,0.4265 -1.20368,0 -2.22253,-0.44545 -3.05656,-1.33636 -0.82456,-0.90037 -1.23684,-2.03296 -1.23684,-3.39775 l 0,-8.64365"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3144" />
<path
d="m 376.7075,785.42111 -10.97516,0 c 0,1.78181 0.4881,3.15134 1.4643,4.10858 0.86247,0.83404 1.97136,1.25105 3.32667,1.25105 1.54485,0 2.83382,-0.45018 3.8669,-1.35057 l 1.13732,1.94767 c -0.41703,0.41702 -1.05677,0.77717 -1.91923,1.08045 -1.08047,0.39807 -2.28413,0.5971 -3.611,0.5971 -1.9145,0 -3.53992,-0.64922 -4.87627,-1.94767 -1.488,-1.43112 -2.232,-3.35509 -2.23199,-5.77191 -1e-5,-2.51158 0.76295,-4.52558 2.28886,-6.04202 1.36478,-1.3553 2.98072,-2.03295 4.84783,-2.03297 2.17038,2e-5 3.87163,0.61133 5.10374,1.83394 1.19417,1.17524 1.79127,2.73432 1.79128,4.67723 -10e-6,0.59711 -0.0711,1.14681 -0.21325,1.64912 m -6.55382,-5.88564 c -1.20367,10e-6 -2.21304,0.3886 -3.02812,1.16575 -0.77717,0.73927 -1.21789,1.65861 -1.32214,2.75801 l 8.43041,0 c -2e-5,-1.08992 -0.34121,-1.99978 -1.02359,-2.72957 -0.74875,-0.79612 -1.7676,-1.19418 -3.05656,-1.19419"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3146" />
<path
d="m 388.02386,780.14678 c -0.58763,-0.40753 -1.17998,-0.6113 -1.77707,-0.61131 -0.95725,10e-6 -1.79603,0.44072 -2.51632,1.32213 -0.71083,0.88144 -1.06625,1.94294 -1.06624,3.18451 l 0,8.72895 -2.70114,0 0,-15.22591 2.70114,0 0,2.43103 c 0.98567,-1.81022 2.44997,-2.71534 4.39291,-2.71536 0.48335,2e-5 1.17996,0.0853 2.08983,0.2559 l -1.12311,2.63006"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3148" />
<path
d="m 279.85028,828.21287 1.03781,-2.61584 c 0.53074,0.38858 1.18944,0.71556 1.97609,0.98094 0.79612,0.2559 1.50695,0.38384 2.13248,0.38384 1.10888,0 1.99979,-0.30328 2.67271,-0.90986 0.67291,-0.60656 1.00936,-1.37899 1.00937,-2.31729 -1e-5,-0.70134 -0.18956,-1.35056 -0.56866,-1.94766 -0.36964,-0.60657 -1.30793,-1.26527 -2.81487,-1.9761 l -1.67755,-0.78191 c -1.42166,-0.66343 -2.41681,-1.45008 -2.98547,-2.35995 -0.55919,-0.90984 -0.83878,-2.00451 -0.83878,-3.28401 0,-1.55433 0.54971,-2.84329 1.64912,-3.8669 1.09941,-1.02357 2.51158,-1.53536 4.23653,-1.53539 2.30306,3e-5 3.90479,0.37439 4.80518,1.12311 l -0.83877,2.47368 c -0.37912,-0.27484 -0.95726,-0.54021 -1.73442,-0.79613 -0.77718,-0.25588 -1.49748,-0.38383 -2.16091,-0.38385 -0.96673,2e-5 -1.72968,0.27488 -2.28886,0.82456 -0.54971,0.54973 -0.82457,1.25581 -0.82456,2.11827 -1e-5,0.53076 0.0995,1.01412 0.29855,1.45008 0.19902,0.43599 0.47388,0.80088 0.82455,1.09468 0.36015,0.29382 1.08993,0.7061 2.18935,1.23683 l 1.70598,0.81035 c 1.42165,0.67292 2.4168,1.47852 2.98548,2.41681 0.57812,0.92882 0.86719,2.11353 0.8672,3.55413 -1e-5,1.56382 -0.63027,2.89069 -1.8908,3.98063 -1.25106,1.08993 -2.92861,1.6349 -5.03265,1.6349 -1.84815,0 -3.42618,-0.43598 -4.7341,-1.30792"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3150" />
<path
d="m 306.05134,815.17631 -1.33635,1.90501 c -0.27486,-0.27484 -0.76296,-0.53547 -1.4643,-0.78191 -0.69188,-0.2464 -1.37428,-0.36961 -2.04718,-0.36963 -1.46905,2e-5 -2.63481,0.51655 -3.49727,1.54961 -0.86247,1.0236 -1.29371,2.43103 -1.2937,4.22231 -10e-6,1.78181 0.44071,3.14185 1.32213,4.08014 0.88142,0.92882 2.10404,1.39322 3.66787,1.39322 1.21313,0 2.43575,-0.46914 3.66786,-1.40744 l 1.06624,2.27465 c -1.45009,0.93829 -3.24611,1.40743 -5.38806,1.40743 -2.07562,0 -3.79108,-0.6966 -5.14639,-2.08983 -1.35531,-1.39321 -2.03296,-3.27927 -2.03296,-5.65817 0,-2.42628 0.70135,-4.37394 2.10405,-5.843 1.41217,-1.46902 3.34088,-2.20354 5.78612,-2.20356 0.78664,2e-5 1.63963,0.16587 2.55898,0.49758 0.91932,0.33173 1.59698,0.67293 2.03296,1.02359"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3152" />
<path
d="m 318.39129,829.16537 0,-9.56772 c -1e-5,-1.13731 -0.2796,-2.03295 -0.83877,-2.68692 -0.5592,-0.65395 -1.34584,-0.98093 -2.35995,-0.98095 -0.65397,2e-5 -1.31266,0.19431 -1.9761,0.58288 -0.65396,0.37912 -1.15628,0.82457 -1.50695,1.33636 l 0,11.31635 -2.70114,0 0,-21.46696 2.70114,0 0,7.91861 c 0.36015,-0.55917 0.93829,-1.02357 1.73442,-1.39322 0.8056,-0.37909 1.63489,-0.56864 2.48789,-0.56866 1.6112,2e-5 2.87173,0.53077 3.7816,1.59225 0.91932,1.06152 1.37899,2.5116 1.379,4.35026 l 0,9.56772 -2.70114,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3154" />
<path
d="m 325.14415,824.85777 0,-17.15936 2.70114,0 0,16.70443 c -10e-6,0.81508 0.23219,1.45956 0.69661,1.93344 0.47387,0.46441 1.08992,0.69662 1.84814,0.69661 l 0,2.41681 c -3.49727,0 -5.2459,-1.53064 -5.24589,-4.59193"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3156" />
<path
d="m 336.07666,813.93947 0,9.70989 c -1e-5,2.35047 1.01884,3.5257 3.05655,3.5257 0.8909,0 1.70598,-0.2559 2.44524,-0.76769 0.73925,-0.51179 1.22735,-1.10415 1.46431,-1.77707 l 0,-10.69083 2.70114,0 0,15.2259 -2.70114,0 0,-2.10404 c -0.3033,0.59709 -0.91461,1.1468 -1.83394,1.64912 -0.90986,0.49283 -1.80076,0.73925 -2.6727,0.73925 -1.66808,0 -2.94757,-0.47862 -3.83847,-1.43586 -0.88142,-0.95725 -1.32214,-2.3173 -1.32213,-4.08015 l 0,-9.99422 2.70114,0 m -0.29855,-6.28371 c 0.44545,3e-5 0.81981,0.15641 1.12311,0.46915 0.31275,0.30331 0.46914,0.67767 0.46914,1.12311 0,0.44547 -0.15639,0.82457 -0.46914,1.13732 -0.3033,0.31278 -0.67766,0.46916 -1.12311,0.46914 -0.44546,2e-5 -0.82456,-0.15636 -1.13732,-0.46914 -0.31277,-0.31275 -0.46915,-0.69185 -0.46915,-1.13732 0,-0.44544 0.15638,-0.8198 0.46915,-1.12311 0.31276,-0.31274 0.69186,-0.46912 1.13732,-0.46915 m 6.7102,0 c 0.44544,3e-5 0.82455,0.15641 1.13732,0.46915 0.31276,0.30331 0.46914,0.67767 0.46915,1.12311 -1e-5,0.44547 -0.15639,0.82457 -0.46915,1.13732 -0.31277,0.31278 -0.69188,0.46916 -1.13732,0.46914 -0.44546,2e-5 -0.82457,-0.15636 -1.13732,-0.46914 -0.3033,-0.31275 -0.45494,-0.69185 -0.45493,-1.13732 -10e-6,-0.44544 0.15163,-0.8198 0.45493,-1.12311 0.31275,-0.31274 0.69186,-0.46912 1.13732,-0.46915"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3158" />
<path
d="m 348.44504,828.25552 0.95251,-2.55898 c 1.50695,0.98568 2.72009,1.47852 3.63943,1.47852 1.66807,0 2.5021,-0.70135 2.50211,-2.10405 -10e-6,-1.00463 -0.80561,-1.86709 -2.41681,-2.5874 -1.24158,-0.56866 -2.08036,-0.99989 -2.51633,-1.29371 -0.4265,-0.2938 -0.80086,-0.62552 -1.1231,-0.99516 -0.31277,-0.37909 -0.54971,-0.77716 -0.71083,-1.19418 -0.15164,-0.42649 -0.22746,-0.88142 -0.22746,-1.36479 0,-1.25104 0.45492,-2.22724 1.36478,-2.92861 0.90986,-0.70133 2.09931,-1.052 3.56835,-1.05202 1.10888,2e-5 2.50684,0.35069 4.19388,1.05202 l -0.76769,2.50211 c -1.07099,-0.85298 -2.14671,-1.27947 -3.22716,-1.27949 -0.64448,2e-5 -1.18945,0.15166 -1.6349,0.45493 -0.43598,0.3033 -0.65396,0.68715 -0.65396,1.15154 0,0.97622 0.55444,1.71547 1.66334,2.21778 l 1.93344,0.88143 c 1.18471,0.54023 2.04718,1.15628 2.58741,1.84815 0.54022,0.69187 0.81033,1.55908 0.81035,2.60162 -2e-5,1.36479 -0.47864,2.43577 -1.43587,3.21294 -0.95726,0.76769 -2.28413,1.15153 -3.98063,1.15153 -1.60174,0 -3.10869,-0.39806 -4.52086,-1.19418"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3160" />
<path
d="m 360.21633,828.25552 0.9525,-2.55898 c 1.50695,0.98568 2.7201,1.47852 3.63944,1.47852 1.66806,0 2.5021,-0.70135 2.5021,-2.10405 0,-1.00463 -0.80561,-1.86709 -2.41681,-2.5874 -1.24158,-0.56866 -2.08035,-0.99989 -2.51632,-1.29371 -0.4265,-0.2938 -0.80087,-0.62552 -1.12311,-0.99516 -0.31276,-0.37909 -0.5497,-0.77716 -0.71082,-1.19418 -0.15165,-0.42649 -0.22747,-0.88142 -0.22747,-1.36479 0,-1.25104 0.45493,-2.22724 1.36479,-2.92861 0.90985,-0.70133 2.0993,-1.052 3.56835,-1.05202 1.10888,2e-5 2.50684,0.35069 4.19387,1.05202 l -0.76769,2.50211 c -1.07099,-0.85298 -2.1467,-1.27947 -3.22715,-1.27949 -0.64449,2e-5 -1.18946,0.15166 -1.6349,0.45493 -0.43598,0.3033 -0.65397,0.68715 -0.65396,1.15154 -1e-5,0.97622 0.55444,1.71547 1.66333,2.21778 l 1.93345,0.88143 c 1.1847,0.54023 2.04717,1.15628 2.58741,1.84815 0.54022,0.69187 0.81033,1.55908 0.81034,2.60162 -1e-5,1.36479 -0.47863,2.43577 -1.43587,3.21294 -0.95725,0.76769 -2.28413,1.15153 -3.98063,1.15153 -1.60173,0 -3.10868,-0.39806 -4.52085,-1.19418"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3162" />
<path
d="m 385.80608,821.81543 -10.97516,0 c -10e-6,1.78181 0.4881,3.15133 1.4643,4.10858 0.86246,0.83403 1.97135,1.25105 3.32667,1.25105 1.54485,0 2.83382,-0.45019 3.8669,-1.35057 l 1.13732,1.94766 c -0.41703,0.41702 -1.05678,0.77718 -1.91923,1.08046 -1.08047,0.39806 -2.28414,0.59709 -3.611,0.59709 -1.9145,0 -3.53992,-0.64922 -4.87627,-1.94766 -1.488,-1.43113 -2.232,-3.3551 -2.232,-5.77191 0,-2.51158 0.76295,-4.52558 2.28886,-6.04203 1.36479,-1.35529 2.98073,-2.03294 4.84784,-2.03296 2.17038,2e-5 3.87162,0.61133 5.10373,1.83393 1.19418,1.17525 1.79127,2.73433 1.79129,4.67724 -2e-5,0.5971 -0.0711,1.14681 -0.21325,1.64912 m -6.55382,-5.88565 c -1.20367,2e-5 -2.21305,0.3886 -3.02812,1.16576 -0.77718,0.73927 -1.21789,1.65861 -1.32214,2.75801 l 8.4304,0 c -1e-5,-1.08993 -0.34121,-1.99978 -1.02359,-2.72958 -0.74874,-0.79611 -1.76759,-1.19417 -3.05655,-1.19419"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3164" />
<path
d="m 389.06166,824.85777 0,-17.15936 2.70114,0 0,16.70443 c 0,0.81508 0.2322,1.45956 0.69661,1.93344 0.47388,0.46441 1.08993,0.69662 1.84815,0.69661 l 0,2.41681 c -3.49727,0 -5.2459,-1.53064 -5.2459,-4.59193"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3166" />
</g>
</g>
<path
style="fill:none;stroke:#f57900;stroke-width:20;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow2Mendtc)"
d="m 112.50795,291.00869 c 146.9176,-142.40184 386.9176,-142.40184 526.9176,-44.40184 20,22 -40,-38 48,46"
id="path3701"
sodipodi:nodetypes="ccc" />
<g
transform="matrix(1.2364568,0,0,1.2364568,-10.511061,-773.16125)"
id="g3887">
<path
sodipodi:type="arc"
style="fill:#555753;fill-opacity:1;stroke:#f57900;stroke-width:5.12058449;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path3889"
sodipodi:cx="320"
sodipodi:cy="772.36218"
sodipodi:rx="80"
sodipodi:ry="80"
d="m 400,772.36218 c 0,44.18278 -35.81722,80 -80,80 -44.18278,0 -80,-35.81722 -80,-80 0,-44.18278 35.81722,-80 80,-80 44.18278,0 80,35.81722 80,80 z"
transform="matrix(1.1845756,0,0,1.1845756,-42.025553,-142.55923)" />
<path
style="fill:none;stroke:#eeeeec;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none"
d="m 309.70237,710.64889 c -11.8411,0 -21.44021,9.59909 -21.44021,21.44019 0,11.84111 9.59911,21.44022 21.44021,21.44022 9.05256,0 16.79381,-5.61197 19.93828,-13.54529 l 1.50193,-0.74819 8.39742,7.14674 7.14673,-10.72011 10.54143,10.72011 3.57337,-10.72011 14.29348,10.72011 10.7201,-10.72011 -10.7201,-14.29347 -46.82229,0 c -3.70675,-6.40987 -10.63341,-10.72009 -18.57035,-10.72009 z m -3.57337,10.72009 c 3.94704,0 7.14674,3.1997 7.14674,7.14673 0,3.94704 -3.1997,7.14674 -7.14674,7.14674 -3.94704,0 -7.14674,-3.1997 -7.14674,-7.14674 0,-3.94703 3.1997,-7.14673 7.14674,-7.14673 z"
id="path3891"
sodipodi:nodetypes="cssccccccccccccsssc" />
<g
style="font-size:11.32267666px;font-style:normal;font-weight:normal;fill:#eeeeec;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
id="text3893">
<path
d="m 260.55845,785.12256 c 0,-2.35045 0.63026,-4.24599 1.8908,-5.68661 1.27,-1.45007 2.93807,-2.17511 5.00421,-2.17513 2.17986,2e-5 3.87163,0.69663 5.07531,2.08983 1.20365,1.38376 1.80548,3.30773 1.8055,5.77191 -2e-5,2.45473 -0.61607,4.39291 -1.84815,5.81456 -1.23211,1.41218 -2.90966,2.11827 -5.03266,2.11827 -2.17039,0 -3.86216,-0.71557 -5.0753,-2.1467 -1.21314,-1.43113 -1.81971,-3.35983 -1.81971,-5.78613 m 2.8433,0 c 0,3.81952 1.35057,5.72927 4.05171,5.72927 1.26053,0 2.24621,-0.5118 2.95704,-1.53539 0.7203,-1.02359 1.08045,-2.42154 1.08046,-4.19388 -10e-6,-3.7721 -1.34584,-5.65816 -4.0375,-5.65818 -1.2321,2e-5 -2.21778,0.50234 -2.95703,1.50696 -0.72979,1.00464 -1.09468,2.38838 -1.09468,4.15122 m 0.89564,-13.86111 c 0.44545,2e-5 0.81982,0.1564 1.12311,0.46914 0.31276,0.30331 0.46914,0.67768 0.46915,1.12311 -1e-5,0.44547 -0.15639,0.82458 -0.46915,1.13732 -0.30329,0.31278 -0.67766,0.46916 -1.12311,0.46915 -0.44545,1e-5 -0.82456,-0.15637 -1.13732,-0.46915 -0.31276,-0.31274 -0.46915,-0.69185 -0.46914,-1.13732 -10e-6,-0.44543 0.15638,-0.8198 0.46914,-1.12311 0.31276,-0.31274 0.69187,-0.46912 1.13732,-0.46914 m 6.71021,0 c 0.44544,2e-5 0.82454,0.1564 1.13732,0.46914 0.31275,0.30331 0.46913,0.67768 0.46914,1.12311 -10e-6,0.44547 -0.15639,0.82458 -0.46914,1.13732 -0.31278,0.31278 -0.69188,0.46916 -1.13732,0.46915 -0.44547,1e-5 -0.82457,-0.15637 -1.13733,-0.46915 -0.30329,-0.31274 -0.45493,-0.69185 -0.45492,-1.13732 -10e-6,-0.44543 0.15163,-0.8198 0.45492,-1.12311 0.31276,-0.31274 0.69186,-0.46912 1.13733,-0.46914"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3074" />
<path
d="m 285.42316,773.72091 c -0.54972,-0.18954 -1.06151,-0.28431 -1.53539,-0.28433 -0.82456,2e-5 -1.50696,0.31278 -2.04718,0.93829 -0.53075,0.62554 -0.79613,1.41693 -0.79612,2.37416 -10e-6,0.25591 0.0237,0.52129 0.0711,0.79612 l 3.0992,0 0,2.27465 -3.0992,0 0,12.95126 -2.70114,0 0,-12.95126 -2.21778,0 0,-2.27465 2.21778,0 c 0,-1.94291 0.47862,-3.46881 1.43587,-4.57772 0.95724,-1.10887 2.22251,-1.66331 3.79581,-1.66333 0.78664,2e-5 1.63015,0.14218 2.53055,0.42649 l -0.75348,1.99032"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3076" />
<path
d="m 296.17085,773.72091 c -0.54971,-0.18954 -1.06151,-0.28431 -1.53538,-0.28433 -0.82457,2e-5 -1.50696,0.31278 -2.04718,0.93829 -0.53076,0.62554 -0.79613,1.41693 -0.79613,2.37416 0,0.25591 0.0237,0.52129 0.0711,0.79612 l 3.0992,0 0,2.27465 -3.0992,0 0,12.95126 -2.70114,0 0,-12.95126 -2.21778,0 0,-2.27465 2.21778,0 c -10e-6,-1.94291 0.47862,-3.46881 1.43587,-4.57772 0.95724,-1.10887 2.22251,-1.66331 3.79581,-1.66333 0.78664,2e-5 1.63015,0.14218 2.53054,0.42649 l -0.75348,1.99032"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3078" />
<path
d="m 311.51049,785.42111 -10.97516,0 c 0,1.78181 0.4881,3.15134 1.4643,4.10858 0.86246,0.83404 1.97135,1.25105 3.32667,1.25105 1.54485,0 2.83382,-0.45018 3.8669,-1.35057 l 1.13732,1.94767 c -0.41703,0.41702 -1.05678,0.77717 -1.91923,1.08045 -1.08047,0.39807 -2.28414,0.5971 -3.611,0.5971 -1.9145,0 -3.53992,-0.64922 -4.87627,-1.94767 -1.488,-1.43112 -2.232,-3.35509 -2.232,-5.77191 0,-2.51158 0.76295,-4.52558 2.28886,-6.04202 1.36479,-1.3553 2.98073,-2.03295 4.84784,-2.03297 2.17038,2e-5 3.87162,0.61133 5.10374,1.83394 1.19417,1.17524 1.79126,2.73432 1.79128,4.67723 -2e-5,0.59711 -0.0711,1.14681 -0.21325,1.64912 m -6.55382,-5.88564 c -1.20367,10e-6 -2.21305,0.3886 -3.02812,1.16575 -0.77718,0.73927 -1.21789,1.65861 -1.32214,2.75801 l 8.4304,0 c -10e-6,-1.08992 -0.3412,-1.99978 -1.02359,-2.72957 -0.74874,-0.79612 -1.76759,-1.19418 -3.05655,-1.19419"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3080" />
<path
d="m 323.92152,792.77106 0,-8.8569 c -10e-6,-1.62068 -0.24643,-2.75326 -0.73926,-3.39775 -0.48337,-0.65395 -1.29845,-0.98093 -2.44524,-0.98094 -0.61606,10e-6 -1.26054,0.18483 -1.93345,0.55444 -0.67292,0.36964 -1.18945,0.82457 -1.5496,1.36479 l 0,11.31636 -2.70114,0 0,-15.22591 1.84815,0 0.85299,1.96188 c 0.8909,-1.49746 2.34572,-2.24619 4.36448,-2.24621 3.33613,2e-5 5.0042,2.02824 5.00421,6.08468 l 0,9.42556 -2.70114,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3082" />
<path
d="m 331.44207,779.67763 -1.76285,0 0,-2.13248 1.76285,0 0,-3.1845 2.70114,-1.03781 0,4.22231 4.17966,0 0,2.13248 -4.17966,0 0,7.5632 c -1e-5,1.27949 0.21324,2.18935 0.63974,2.72957 0.43597,0.54023 1.13258,0.81034 2.08983,0.81034 0.69186,0 1.40743,-0.17533 2.1467,-0.52601 l 0.39806,2.37416 c -1.11838,0.28433 -2.34574,0.4265 -3.68208,0.4265 -1.20367,0 -2.22252,-0.44545 -3.05656,-1.33636 -0.82456,-0.90037 -1.23684,-2.03296 -1.23683,-3.39775 l 0,-8.64365"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3084" />
<path
d="m 342.23241,788.46345 0,-17.15935 2.70114,0 0,16.70442 c 0,0.81508 0.2322,1.45957 0.69661,1.93345 0.47388,0.46441 1.08993,0.69661 1.84815,0.69661 l 0,2.41681 c -3.49727,0 -5.2459,-1.53065 -5.2459,-4.59194"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3086" />
<path
d="m 353.39239,771.78746 c 0.4644,2e-5 0.85772,0.16588 1.17997,0.49758 0.33171,0.32226 0.49757,0.71084 0.49758,1.16575 -10e-6,0.46443 -0.16587,0.86249 -0.49758,1.19419 -0.32225,0.32226 -0.71557,0.48338 -1.17997,0.48336 -0.45493,2e-5 -0.84826,-0.1611 -1.17997,-0.48336 -0.32225,-0.3317 -0.48337,-0.72976 -0.48336,-1.19419 -1e-5,-0.46438 0.16111,-0.85771 0.48336,-1.17997 0.32224,-0.32222 0.71556,-0.48334 1.17997,-0.48336 m -1.47852,20.9836 0,-12.95126 -2.08983,0 0,-2.27465 4.79097,0 0,15.22591 -2.70114,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3088" />
<path
d="m 370.39536,778.78199 -1.33636,1.90502 c -0.27486,-0.27484 -0.76296,-0.53548 -1.4643,-0.78191 -0.69188,-0.24641 -1.37427,-0.36962 -2.04718,-0.36963 -1.46905,10e-6 -2.6348,0.51654 -3.49727,1.5496 -0.86247,1.0236 -1.2937,2.43104 -1.2937,4.22231 0,1.78181 0.44071,3.14186 1.32214,4.08014 0.88142,0.92882 2.10404,1.39322 3.66786,1.39322 1.21314,0 2.43576,-0.46914 3.66787,-1.40743 l 1.06624,2.27464 c -1.4501,0.93829 -3.24612,1.40744 -5.38807,1.40744 -2.07562,0 -3.79108,-0.69661 -5.14638,-2.08983 -1.35531,-1.39322 -2.03297,-3.27928 -2.03297,-5.65818 0,-2.42628 0.70135,-4.37394 2.10405,-5.843 1.41217,-1.46902 3.34088,-2.20354 5.78613,-2.20356 0.78664,2e-5 1.63963,0.16588 2.55897,0.49758 0.91933,0.33174 1.59698,0.67293 2.03297,1.02359"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3090" />
<path
d="m 382.73531,792.77106 0,-9.56773 c -1e-5,-1.13731 -0.2796,-2.03295 -0.83877,-2.68692 -0.5592,-0.65395 -1.34584,-0.98093 -2.35995,-0.98094 -0.65397,10e-6 -1.31266,0.1943 -1.9761,0.58288 -0.65396,0.37912 -1.15628,0.82457 -1.50695,1.33635 l 0,11.31636 -2.70114,0 0,-21.46696 2.70114,0 0,7.9186 c 0.36015,-0.55917 0.93829,-1.02357 1.73442,-1.39322 0.8056,-0.37909 1.63489,-0.56864 2.48789,-0.56866 1.6112,2e-5 2.87173,0.53077 3.7816,1.59225 0.91932,1.06152 1.37899,2.5116 1.379,4.35026 l 0,9.56773 -2.70114,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3092" />
<path
d="m 402.09822,785.42111 -10.97516,0 c 0,1.78181 0.4881,3.15134 1.4643,4.10858 0.86247,0.83404 1.97135,1.25105 3.32667,1.25105 1.54485,0 2.83382,-0.45018 3.8669,-1.35057 l 1.13732,1.94767 c -0.41703,0.41702 -1.05678,0.77717 -1.91923,1.08045 -1.08047,0.39807 -2.28413,0.5971 -3.611,0.5971 -1.9145,0 -3.53992,-0.64922 -4.87627,-1.94767 -1.488,-1.43112 -2.232,-3.35509 -2.232,-5.77191 0,-2.51158 0.76296,-4.52558 2.28886,-6.04202 1.36479,-1.3553 2.98073,-2.03295 4.84784,-2.03297 2.17038,2e-5 3.87162,0.61133 5.10374,1.83394 1.19417,1.17524 1.79126,2.73432 1.79128,4.67723 -2e-5,0.59711 -0.0711,1.14681 -0.21325,1.64912 m -6.55382,-5.88564 c -1.20367,10e-6 -2.21305,0.3886 -3.02812,1.16575 -0.77718,0.73927 -1.21789,1.65861 -1.32214,2.75801 l 8.4304,0 c -1e-5,-1.08992 -0.3412,-1.99978 -1.02359,-2.72957 -0.74874,-0.79612 -1.76759,-1.19418 -3.05655,-1.19419"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3094" />
<path
d="m 413.41458,780.14678 c -0.58762,-0.40753 -1.17998,-0.6113 -1.77706,-0.61131 -0.95726,10e-6 -1.79603,0.44072 -2.51633,1.32213 -0.71083,0.88144 -1.06624,1.94294 -1.06624,3.18451 l 0,8.72895 -2.70114,0 0,-15.22591 2.70114,0 0,2.43103 c 0.98568,-1.81022 2.44998,-2.71534 4.39291,-2.71536 0.48335,2e-5 1.17996,0.0853 2.08983,0.2559 l -1.12311,2.63006"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3096" />
<path
d="m 279.85028,828.21287 1.03781,-2.61584 c 0.53074,0.38858 1.18944,0.71556 1.97609,0.98094 0.79612,0.2559 1.50695,0.38384 2.13248,0.38384 1.10888,0 1.99979,-0.30328 2.67271,-0.90986 0.67291,-0.60656 1.00936,-1.37899 1.00937,-2.31729 -1e-5,-0.70134 -0.18956,-1.35056 -0.56866,-1.94766 -0.36964,-0.60657 -1.30793,-1.26527 -2.81487,-1.9761 l -1.67755,-0.78191 c -1.42166,-0.66343 -2.41681,-1.45008 -2.98547,-2.35995 -0.55919,-0.90984 -0.83878,-2.00451 -0.83878,-3.28401 0,-1.55433 0.54971,-2.84329 1.64912,-3.8669 1.09941,-1.02357 2.51158,-1.53536 4.23653,-1.53539 2.30306,3e-5 3.90479,0.37439 4.80518,1.12311 l -0.83877,2.47368 c -0.37912,-0.27484 -0.95726,-0.54021 -1.73442,-0.79613 -0.77718,-0.25588 -1.49748,-0.38383 -2.16091,-0.38385 -0.96673,2e-5 -1.72968,0.27488 -2.28886,0.82456 -0.54971,0.54973 -0.82457,1.25581 -0.82456,2.11827 -1e-5,0.53076 0.0995,1.01412 0.29855,1.45008 0.19902,0.43599 0.47388,0.80088 0.82455,1.09468 0.36015,0.29382 1.08993,0.7061 2.18935,1.23683 l 1.70598,0.81035 c 1.42165,0.67292 2.4168,1.47852 2.98548,2.41681 0.57812,0.92882 0.86719,2.11353 0.8672,3.55413 -1e-5,1.56382 -0.63027,2.89069 -1.8908,3.98063 -1.25106,1.08993 -2.92861,1.6349 -5.03265,1.6349 -1.84815,0 -3.42618,-0.43598 -4.7341,-1.30792"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3098" />
<path
d="m 306.05134,815.17631 -1.33635,1.90501 c -0.27486,-0.27484 -0.76296,-0.53547 -1.4643,-0.78191 -0.69188,-0.2464 -1.37428,-0.36961 -2.04718,-0.36963 -1.46905,2e-5 -2.63481,0.51655 -3.49727,1.54961 -0.86247,1.0236 -1.29371,2.43103 -1.2937,4.22231 -10e-6,1.78181 0.44071,3.14185 1.32213,4.08014 0.88142,0.92882 2.10404,1.39322 3.66787,1.39322 1.21313,0 2.43575,-0.46914 3.66786,-1.40744 l 1.06624,2.27465 c -1.45009,0.93829 -3.24611,1.40743 -5.38806,1.40743 -2.07562,0 -3.79108,-0.6966 -5.14639,-2.08983 -1.35531,-1.39321 -2.03296,-3.27927 -2.03296,-5.65817 0,-2.42628 0.70135,-4.37394 2.10405,-5.843 1.41217,-1.46902 3.34088,-2.20354 5.78612,-2.20356 0.78664,2e-5 1.63963,0.16587 2.55898,0.49758 0.91932,0.33173 1.59698,0.67293 2.03296,1.02359"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3100" />
<path
d="m 318.39129,829.16537 0,-9.56772 c -1e-5,-1.13731 -0.2796,-2.03295 -0.83877,-2.68692 -0.5592,-0.65395 -1.34584,-0.98093 -2.35995,-0.98095 -0.65397,2e-5 -1.31266,0.19431 -1.9761,0.58288 -0.65396,0.37912 -1.15628,0.82457 -1.50695,1.33636 l 0,11.31635 -2.70114,0 0,-21.46696 2.70114,0 0,7.91861 c 0.36015,-0.55917 0.93829,-1.02357 1.73442,-1.39322 0.8056,-0.37909 1.63489,-0.56864 2.48789,-0.56866 1.6112,2e-5 2.87173,0.53077 3.7816,1.59225 0.91932,1.06152 1.37899,2.5116 1.379,4.35026 l 0,9.56772 -2.70114,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3102" />
<path
d="m 325.14415,824.85777 0,-17.15936 2.70114,0 0,16.70443 c -10e-6,0.81508 0.23219,1.45956 0.69661,1.93344 0.47387,0.46441 1.08992,0.69662 1.84814,0.69661 l 0,2.41681 c -3.49727,0 -5.2459,-1.53064 -5.24589,-4.59193"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3104" />
<path
d="m 336.07666,813.93947 0,9.70989 c -1e-5,2.35047 1.01884,3.5257 3.05655,3.5257 0.8909,0 1.70598,-0.2559 2.44524,-0.76769 0.73925,-0.51179 1.22735,-1.10415 1.46431,-1.77707 l 0,-10.69083 2.70114,0 0,15.2259 -2.70114,0 0,-2.10404 c -0.3033,0.59709 -0.91461,1.1468 -1.83394,1.64912 -0.90986,0.49283 -1.80076,0.73925 -2.6727,0.73925 -1.66808,0 -2.94757,-0.47862 -3.83847,-1.43586 -0.88142,-0.95725 -1.32214,-2.3173 -1.32213,-4.08015 l 0,-9.99422 2.70114,0 m -0.29855,-6.28371 c 0.44545,3e-5 0.81981,0.15641 1.12311,0.46915 0.31275,0.30331 0.46914,0.67767 0.46914,1.12311 0,0.44547 -0.15639,0.82457 -0.46914,1.13732 -0.3033,0.31278 -0.67766,0.46916 -1.12311,0.46914 -0.44546,2e-5 -0.82456,-0.15636 -1.13732,-0.46914 -0.31277,-0.31275 -0.46915,-0.69185 -0.46915,-1.13732 0,-0.44544 0.15638,-0.8198 0.46915,-1.12311 0.31276,-0.31274 0.69186,-0.46912 1.13732,-0.46915 m 6.7102,0 c 0.44544,3e-5 0.82455,0.15641 1.13732,0.46915 0.31276,0.30331 0.46914,0.67767 0.46915,1.12311 -1e-5,0.44547 -0.15639,0.82457 -0.46915,1.13732 -0.31277,0.31278 -0.69188,0.46916 -1.13732,0.46914 -0.44546,2e-5 -0.82457,-0.15636 -1.13732,-0.46914 -0.3033,-0.31275 -0.45494,-0.69185 -0.45493,-1.13732 -10e-6,-0.44544 0.15163,-0.8198 0.45493,-1.12311 0.31275,-0.31274 0.69186,-0.46912 1.13732,-0.46915"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3106" />
<path
d="m 348.44504,828.25552 0.95251,-2.55898 c 1.50695,0.98568 2.72009,1.47852 3.63943,1.47852 1.66807,0 2.5021,-0.70135 2.50211,-2.10405 -10e-6,-1.00463 -0.80561,-1.86709 -2.41681,-2.5874 -1.24158,-0.56866 -2.08036,-0.99989 -2.51633,-1.29371 -0.4265,-0.2938 -0.80086,-0.62552 -1.1231,-0.99516 -0.31277,-0.37909 -0.54971,-0.77716 -0.71083,-1.19418 -0.15164,-0.42649 -0.22746,-0.88142 -0.22746,-1.36479 0,-1.25104 0.45492,-2.22724 1.36478,-2.92861 0.90986,-0.70133 2.09931,-1.052 3.56835,-1.05202 1.10888,2e-5 2.50684,0.35069 4.19388,1.05202 l -0.76769,2.50211 c -1.07099,-0.85298 -2.14671,-1.27947 -3.22716,-1.27949 -0.64448,2e-5 -1.18945,0.15166 -1.6349,0.45493 -0.43598,0.3033 -0.65396,0.68715 -0.65396,1.15154 0,0.97622 0.55444,1.71547 1.66334,2.21778 l 1.93344,0.88143 c 1.18471,0.54023 2.04718,1.15628 2.58741,1.84815 0.54022,0.69187 0.81033,1.55908 0.81035,2.60162 -2e-5,1.36479 -0.47864,2.43577 -1.43587,3.21294 -0.95726,0.76769 -2.28413,1.15153 -3.98063,1.15153 -1.60174,0 -3.10869,-0.39806 -4.52086,-1.19418"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3108" />
<path
d="m 360.21633,828.25552 0.9525,-2.55898 c 1.50695,0.98568 2.7201,1.47852 3.63944,1.47852 1.66806,0 2.5021,-0.70135 2.5021,-2.10405 0,-1.00463 -0.80561,-1.86709 -2.41681,-2.5874 -1.24158,-0.56866 -2.08035,-0.99989 -2.51632,-1.29371 -0.4265,-0.2938 -0.80087,-0.62552 -1.12311,-0.99516 -0.31276,-0.37909 -0.5497,-0.77716 -0.71082,-1.19418 -0.15165,-0.42649 -0.22747,-0.88142 -0.22747,-1.36479 0,-1.25104 0.45493,-2.22724 1.36479,-2.92861 0.90985,-0.70133 2.0993,-1.052 3.56835,-1.05202 1.10888,2e-5 2.50684,0.35069 4.19387,1.05202 l -0.76769,2.50211 c -1.07099,-0.85298 -2.1467,-1.27947 -3.22715,-1.27949 -0.64449,2e-5 -1.18946,0.15166 -1.6349,0.45493 -0.43598,0.3033 -0.65397,0.68715 -0.65396,1.15154 -1e-5,0.97622 0.55444,1.71547 1.66333,2.21778 l 1.93345,0.88143 c 1.1847,0.54023 2.04717,1.15628 2.58741,1.84815 0.54022,0.69187 0.81033,1.55908 0.81034,2.60162 -1e-5,1.36479 -0.47863,2.43577 -1.43587,3.21294 -0.95725,0.76769 -2.28413,1.15153 -3.98063,1.15153 -1.60173,0 -3.10868,-0.39806 -4.52085,-1.19418"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3110" />
<path
d="m 385.80608,821.81543 -10.97516,0 c -10e-6,1.78181 0.4881,3.15133 1.4643,4.10858 0.86246,0.83403 1.97135,1.25105 3.32667,1.25105 1.54485,0 2.83382,-0.45019 3.8669,-1.35057 l 1.13732,1.94766 c -0.41703,0.41702 -1.05678,0.77718 -1.91923,1.08046 -1.08047,0.39806 -2.28414,0.59709 -3.611,0.59709 -1.9145,0 -3.53992,-0.64922 -4.87627,-1.94766 -1.488,-1.43113 -2.232,-3.3551 -2.232,-5.77191 0,-2.51158 0.76295,-4.52558 2.28886,-6.04203 1.36479,-1.35529 2.98073,-2.03294 4.84784,-2.03296 2.17038,2e-5 3.87162,0.61133 5.10373,1.83393 1.19418,1.17525 1.79127,2.73433 1.79129,4.67724 -2e-5,0.5971 -0.0711,1.14681 -0.21325,1.64912 m -6.55382,-5.88565 c -1.20367,2e-5 -2.21305,0.3886 -3.02812,1.16576 -0.77718,0.73927 -1.21789,1.65861 -1.32214,2.75801 l 8.4304,0 c -1e-5,-1.08993 -0.34121,-1.99978 -1.02359,-2.72958 -0.74874,-0.79611 -1.76759,-1.19417 -3.05655,-1.19419"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3112" />
<path
d="m 389.06166,824.85777 0,-17.15936 2.70114,0 0,16.70443 c 0,0.81508 0.2322,1.45956 0.69661,1.93344 0.47388,0.46441 1.08993,0.69662 1.84815,0.69661 l 0,2.41681 c -3.49727,0 -5.2459,-1.53064 -5.2459,-4.59193"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path3114" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 61 KiB

View File

@ -0,0 +1,667 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="573.84827"
height="894.07324"
id="svg2"
version="1.1"
inkscape:version="0.47 r22583"
sodipodi:docname="Orange_blue_keygeneration_de.text.svg">
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="-220.44661"
inkscape:cy="370.08587"
inkscape:document-units="px"
inkscape:current-layer="g5000"
showgrid="true"
inkscape:window-width="1920"
inkscape:window-height="1005"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1">
<inkscape:grid
snapvisiblegridlinesonly="true"
enabled="true"
visible="true"
empspacing="5"
id="grid2816"
type="xygrid" />
</sodipodi:namedview>
<title
id="title5016">Public key cryptography</title>
<defs
id="defs4">
<marker
style="overflow:visible"
id="Arrow2Mend"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mend">
<path
transform="scale(-0.6,-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
id="path3686" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Send"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Send">
<path
transform="matrix(-0.3,0,0,-0.3,0.69,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
id="path3692" />
</marker>
<marker
style="overflow:visible"
id="Arrow1Send"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Send">
<path
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
id="path3674" />
</marker>
<inkscape:perspective
id="perspective10"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 526.18109 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
id="perspective3629" />
<marker
style="overflow:visible"
id="Arrow2Mendt"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mendt">
<path
transform="scale(-0.6,-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill:#729fcf;fill-rule:evenodd;stroke:#729fcf;stroke-width:0.625;stroke-linejoin:round"
id="path4869" />
</marker>
<marker
style="overflow:visible"
id="Arrow2MendtR"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2MendtR">
<path
transform="scale(-0.6,-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill:#f57900;fill-rule:evenodd;stroke:#f57900;stroke-width:0.625;stroke-linejoin:round"
id="path4943" />
</marker>
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
id="perspective3706" />
<marker
style="overflow:visible"
id="Arrow2Mendtc"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mendtc">
<path
transform="scale(-0.6,-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill:#f57900;fill-rule:evenodd;stroke:#f57900;stroke-width:0.625;stroke-linejoin:round"
id="path3722" />
</marker>
<inkscape:perspective
id="perspective3816"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective3841"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective3866"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
<marker
style="overflow:visible"
id="Arrow2MendtcD"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2MendtcD">
<path
transform="scale(-0.6,-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill:#729fcf;fill-rule:evenodd;stroke:#729fcf;stroke-width:0.625;stroke-linejoin:round"
id="path3944" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Mendtn"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mendtn">
<path
transform="scale(-0.6,-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill:#f57900;fill-rule:evenodd;stroke:#f57900;stroke-width:0.625;stroke-linejoin:round"
id="path4043" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Mendtn2"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mendtn2">
<path
transform="scale(-0.6,-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill:#729fcf;fill-rule:evenodd;stroke:#729fcf;stroke-width:0.625;stroke-linejoin:round"
id="path4214" />
</marker>
<marker
style="overflow:visible"
id="Arrow2MendtcDX"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2MendtcDX">
<path
transform="scale(-0.6,-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill:#f57900;fill-rule:evenodd;stroke:#f57900;stroke-width:0.625;stroke-linejoin:round"
id="path4467" />
</marker>
</defs>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Public key cryptography</dc:title>
<cc:license
rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/publicdomain/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<g
transform="translate(-148.27081,115.3429)"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Ebene 1">
<g
transform="translate(-0.85973144,-40)"
id="g4415">
<path
style="fill:none;stroke:#729fcf;stroke-width:20;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow2MendtcD)"
d="m 411.33511,367.41238 c -59.99999,103.92304 10,-17.32051 -69.99999,121.24355 -10,17.32051 10,-17.32051 -30,51.96152"
id="path4411"
sodipodi:nodetypes="ccc" />
<path
sodipodi:nodetypes="ccc"
id="path4413"
d="m 456.5078,367.41238 c 59.99999,103.92304 -10,-17.32051 69.99999,121.24355 10,17.32051 -10,-17.32051 30,51.96152"
style="fill:none;stroke:#f57900;stroke-width:20;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow2MendtcDX)" />
<g
id="g3616"
transform="translate(327.80469,7.8540995)">
<rect
ry="24.618708"
y="325.41772"
x="-137.48355"
height="73.856125"
width="491.46707"
id="rect3610-5-8"
style="fill:#555753;fill-opacity:1;stroke:#f57900;stroke-width:7.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<g
style="font-size:14px;font-style:normal;font-weight:normal;fill:#eeeeec;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
id="text3804">
<path
d="m -116.53516,378.03464 1.71094,-4.3125 c 0.875,0.64063 1.96093,1.17969 3.25781,1.61718 1.3125,0.42188 2.48437,0.63282 3.51563,0.63282 1.82811,0 3.29686,-0.5 4.40625,-1.5 1.10936,-1 1.66404,-2.27343 1.66406,-3.82032 -2e-5,-1.15623 -0.31251,-2.22655 -0.9375,-3.21093 -0.60939,-0.99999 -2.15626,-2.08593 -4.64062,-3.25782 l -2.76563,-1.28906 c -2.34375,-1.09373 -3.98438,-2.3906 -4.92187,-3.89062 -0.92188,-1.49998 -1.38282,-3.30467 -1.38282,-5.41407 0,-2.56247 0.90625,-4.68746 2.71875,-6.375 1.8125,-1.68746 4.14062,-2.53121 6.98438,-2.53125 3.79686,4e-5 6.43748,0.61723 7.921874,1.85157 l -1.382814,4.07812 c -0.62502,-0.45309 -1.57814,-0.89059 -2.85937,-1.3125 -1.28127,-0.42184 -2.46877,-0.63278 -3.5625,-0.63281 -1.59376,3e-5 -2.85158,0.45316 -3.77344,1.35937 -0.90626,0.90628 -1.35938,2.07034 -1.35938,3.49219 0,0.87503 0.16406,1.6719 0.49219,2.39063 0.32812,0.71877 0.78124,1.32033 1.35938,1.80468 0.59374,0.4844 1.79686,1.16409 3.60937,2.03907 l 2.8125,1.33593 c 2.34373,1.1094 3.984357,2.43752 4.921876,3.98438 0.953105,1.53126 1.429667,3.48439 1.429688,5.85937 -2.1e-5,2.57814 -1.039083,4.76563 -3.117184,6.5625 -2.06252,1.79688 -4.82814,2.69532 -8.29688,2.69532 -3.04688,0 -5.64844,-0.71875 -7.80469,-2.15625"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4590" />
<path
d="m -73.339844,356.54245 -2.203125,3.14062 c -0.453144,-0.4531 -1.257831,-0.88279 -2.414062,-1.28906 -1.140642,-0.40623 -2.26564,-0.60935 -3.375,-0.60937 -2.421887,2e-5 -4.34376,0.85158 -5.765625,2.55468 -1.421882,1.68752 -2.132819,4.00783 -2.132813,6.96094 -6e-6,2.93751 0.726556,5.1797 2.179688,6.72656 1.453115,1.53126 3.468738,2.29688 6.046875,2.29688 1.999983,0 4.015606,-0.77343 6.046875,-2.32031 l 1.757812,3.75 c -2.390645,1.54687 -5.351579,2.32031 -8.882812,2.32031 -3.421885,0 -6.250007,-1.14844 -8.484375,-3.44531 -2.234378,-2.29687 -3.351564,-5.40624 -3.351563,-9.32813 -10e-7,-3.99998 1.156248,-7.21092 3.46875,-9.63281 2.328118,-2.42185 5.507802,-3.63279 9.539063,-3.63281 1.296859,2e-5 2.703108,0.27346 4.21875,0.82031 1.515604,0.5469 2.632791,1.1094 3.351562,1.6875"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4592" />
<path
d="m -52.996094,379.60495 0,-15.77344 c -1.8e-5,-1.87498 -0.460955,-3.35154 -1.382812,-4.42969 -0.921892,-1.0781 -2.218765,-1.61716 -3.890625,-1.61718 -1.078138,2e-5 -2.164074,0.32033 -3.257813,0.96093 -1.078134,0.62503 -1.906258,1.3594 -2.484375,2.20313 l 0,18.65625 -4.453125,0 0,-35.39063 4.453125,0 0,13.05469 c 0.593742,-0.92185 1.546866,-1.68747 2.859375,-2.29687 1.328113,-0.62498 2.6953,-0.93748 4.101563,-0.9375 2.656233,2e-5 4.734355,0.87502 6.234375,2.625 1.515602,1.75002 2.273414,4.14064 2.273437,7.17187 l 0,15.77344 -4.453125,0"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4594" />
<path
d="m -41.863281,372.50339 0,-28.28907 4.453125,0 0,27.53907 c -8e-6,1.34375 0.382804,2.40625 1.148437,3.1875 0.78124,0.76563 1.796864,1.14844 3.046875,1.14843 l 0,3.98438 c -5.765631,0 -8.648441,-2.52344 -8.648437,-7.57031"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4596" />
<path
d="m -23.839844,354.50339 0,16.00781 c -7e-6,3.87501 1.679679,5.8125 5.039063,5.8125 1.468736,0 2.812485,-0.42187 4.03125,-1.26563 1.218732,-0.84374 2.023419,-1.8203 2.414062,-2.92968 l 0,-17.625 4.4531253,0 0,25.10156 -4.4531253,0 0,-3.46875 c -0.500018,0.98438 -1.50783,1.89063 -3.023437,2.71875 -1.500015,0.8125 -2.968763,1.21875 -4.40625,1.21875 -2.750009,0 -4.859382,-0.78906 -6.328125,-2.36719 -1.453129,-1.57812 -2.179691,-3.8203 -2.179688,-6.72656 l 0,-16.47656 4.453125,0 m -0.492187,-10.35938 c 0.734367,4e-5 1.351554,0.25785 1.851562,0.77344 0.515616,0.50003 0.773428,1.11722 0.773438,1.85156 -10e-6,0.73441 -0.257822,1.35941 -0.773438,1.875 -0.500008,0.51566 -1.117195,0.77347 -1.851562,0.77344 -0.734381,3e-5 -1.359381,-0.25778 -1.875,-0.77344 -0.51563,-0.51559 -0.773442,-1.14059 -0.773438,-1.875 -4e-6,-0.73434 0.257808,-1.35153 0.773438,-1.85156 0.515619,-0.51559 1.140619,-0.7734 1.875,-0.77344 m 11.0625,0 c 0.734356,4e-5 1.359355,0.25785 1.875,0.77344 0.515604,0.50003 0.773417,1.11722 0.773437,1.85156 -2e-5,0.73441 -0.257833,1.35941 -0.773437,1.875 -0.515645,0.51566 -1.140644,0.77347 -1.875,0.77344 -0.734392,3e-5 -1.359392,-0.25778 -1.875,-0.77344 -0.500016,-0.51559 -0.750016,-1.14059 -0.75,-1.875 -1.6e-5,-0.73434 0.249984,-1.35153 0.75,-1.85156 0.515608,-0.51559 1.140608,-0.7734 1.875,-0.77344"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4598" />
<path
d="m -3.4492188,378.10495 1.5703126,-4.21875 c 2.48436937,1.625 4.4843674,2.4375 5.9999999,2.4375 2.7499882,0 4.1249868,-1.15625 4.1250001,-3.46875 -1.33e-5,-1.65624 -1.3281369,-3.07812 -3.9843751,-4.26563 -2.0468821,-0.93748 -3.42969325,-1.64842 -4.14843745,-2.13281 -0.70312938,-0.48436 -1.32031625,-1.03123 -1.85156245,-1.64062 -0.5156278,-0.62499 -0.9062524,-1.28124 -1.1718751,-1.96875 -0.2500018,-0.70311 -0.3750016,-1.45311 -0.375,-2.25 -1.6e-6,-2.06248 0.7499976,-3.67185 2.2500001,-4.82813 1.49999451,-1.15622 3.4609301,-1.73435 5.8828124,-1.73437 1.8281134,2e-5 4.1327986,0.57815 6.9140628,1.73437 l -1.265625,4.125 c -1.765639,-1.40623 -3.5390747,-2.10935 -5.3203128,-2.10937 -1.062509,2e-5 -1.9609456,0.25002 -2.6953124,0.75 -0.7187568,0.50002 -1.0781314,1.13283 -1.0781251,1.89843 -6.3e-6,1.6094 0.9140553,2.82815 2.7421875,3.65625 l 3.1875,1.45313 c 1.9531108,0.89064 3.3749848,1.90626 4.2656248,3.04687 0.890608,1.14064 1.33592,2.57033 1.335938,4.28907 -1.8e-5,2.25 -0.78908,4.01563 -2.367188,5.29687 -1.5781387,1.26563 -3.7656365,1.89844 -6.5624998,1.89844 -2.6406313,0 -5.1250038,-0.65625 -7.453125,-1.96875"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4600" />
<path
d="m 15.957031,378.10495 1.570313,-4.21875 c 2.484369,1.625 4.484367,2.4375 6,2.4375 2.749988,0 4.124987,-1.15625 4.125,-3.46875 -1.3e-5,-1.65624 -1.328137,-3.07812 -3.984375,-4.26563 -2.046882,-0.93748 -3.429694,-1.64842 -4.148438,-2.13281 -0.703129,-0.48436 -1.320316,-1.03123 -1.851562,-1.64062 -0.515628,-0.62499 -0.906253,-1.28124 -1.171875,-1.96875 -0.250002,-0.70311 -0.375002,-1.45311 -0.375,-2.25 -2e-6,-2.06248 0.749997,-3.67185 2.25,-4.82813 1.499994,-1.15622 3.46093,-1.73435 5.882812,-1.73437 1.828114,2e-5 4.132799,0.57815 6.914063,1.73437 l -1.265625,4.125 c -1.765639,-1.40623 -3.539075,-2.10935 -5.320313,-2.10937 -1.062509,2e-5 -1.960945,0.25002 -2.695312,0.75 -0.718757,0.50002 -1.078132,1.13283 -1.078125,1.89843 -7e-6,1.6094 0.914055,2.82815 2.742187,3.65625 l 3.1875,1.45313 c 1.953111,0.89064 3.374985,1.90626 4.265625,3.04687 0.890608,1.14064 1.33592,2.57033 1.335938,4.28907 -1.8e-5,2.25 -0.78908,4.01563 -2.367188,5.29687 -1.578139,1.26563 -3.765637,1.89844 -6.5625,1.89844 -2.640631,0 -5.125004,-0.65625 -7.453125,-1.96875"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4602" />
<path
d="m 58.144531,367.48776 -18.09375,0 c -6e-6,2.93751 0.804681,5.19532 2.414063,6.77344 1.421865,1.375 3.249988,2.0625 5.484375,2.0625 2.546858,0 4.671856,-0.74218 6.375,-2.22656 l 1.875,3.21093 c -0.687522,0.68751 -1.742208,1.28126 -3.164063,1.78125 -1.781267,0.65625 -3.76564,0.98438 -5.953125,0.98438 -3.15626,0 -5.835945,-1.07031 -8.039062,-3.21094 -2.453128,-2.35937 -3.679689,-5.53124 -3.679688,-9.51562 -10e-7,-4.14061 1.25781,-7.46092 3.773438,-9.96094 2.249992,-2.23435 4.914052,-3.35154 7.992187,-3.35156 3.578108,2e-5 6.382793,1.00783 8.414063,3.02343 1.968726,1.93753 2.9531,4.50784 2.953125,7.71094 -2.5e-5,0.98439 -0.117212,1.89064 -0.351563,2.71875 m -10.804687,-9.70312 c -1.984387,2e-5 -3.648448,0.64064 -4.992188,1.92187 -1.281257,1.21877 -2.007819,2.73439 -2.179687,4.54688 l 13.898437,0 c -2e-5,-1.79686 -0.562519,-3.29686 -1.6875,-4.5 -1.234392,-1.31248 -2.914078,-1.96873 -5.039062,-1.96875"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4604" />
<path
d="m 63.511719,372.50339 0,-28.28907 4.453125,0 0,27.53907 c -8e-6,1.34375 0.382804,2.40625 1.148437,3.1875 0.78124,0.76563 1.796864,1.14844 3.046875,1.14843 l 0,3.98438 c -5.765631,0 -8.648441,-2.52344 -8.648437,-7.57031"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4606" />
<path
d="m 76.402344,386.47214 2.414062,-3.5625 c 2.593743,1.73437 4.984366,2.60155 7.171875,2.60156 2.015611,-10e-6 3.601547,-0.35157 4.757813,-1.05469 1.171857,-0.6875 1.757794,-1.54688 1.757812,-2.57812 -1.8e-5,-2.03125 -1.468767,-3.04688 -4.40625,-3.04688 -0.500013,0 -1.406262,0.125 -2.71875,0.375 -1.31251,0.25 -2.335946,0.375 -3.070312,0.375 -3.562505,0 -5.343753,-1.34375 -5.34375,-4.03125 -3e-6,-0.82812 0.414059,-1.57812 1.242187,-2.25 0.843745,-0.67187 1.882807,-1.15624 3.117188,-1.45312 -3.531254,-1.65624 -5.296877,-4.53124 -5.296875,-8.625 -2e-6,-2.62498 0.914059,-4.81248 2.742187,-6.5625 1.828119,-1.74998 4.085929,-2.62498 6.773438,-2.625 2.468736,2e-5 4.398421,0.50784 5.789062,1.52343 l 2.226563,-2.67187 2.90625,2.74219 -2.671875,2.01562 c 1.140604,1.4844 1.710916,3.4219 1.710937,5.8125 -2.1e-5,2.53127 -0.789083,4.65626 -2.367187,6.375 -1.578143,1.71876 -3.648453,2.70313 -6.210938,2.95313 l -3.679687,0.375 c -0.437509,0.0469 -1.023446,0.21875 -1.757813,0.51562 -0.734381,0.28126 -1.101568,0.65626 -1.101562,1.125 -6e-6,0.64063 0.765618,0.96094 2.296875,0.96094 0.671866,0 1.718739,-0.11718 3.140625,-0.35156 1.421862,-0.25 2.476548,-0.375 3.164062,-0.375 2.468733,0 4.390606,0.59375 5.765625,1.78125 1.390603,1.17187 2.085915,2.80468 2.085938,4.89843 -2.3e-5,2.3125 -1.039084,4.17969 -3.117188,5.60157 -2.062517,1.42186 -4.679702,2.1328 -7.851562,2.13281 -1.62501,-10e-6 -3.335946,-0.28907 -5.132813,-0.86719 -1.79688,-0.57813 -3.242191,-1.28126 -4.335937,-2.10937 m 9.445312,-28.85157 c -1.546885,3e-5 -2.812509,0.5469 -3.796875,1.64063 -0.968757,1.09377 -1.453131,2.42189 -1.453125,3.98437 -6e-6,1.75002 0.468743,3.20314 1.40625,4.35938 0.953116,1.14064 2.234365,1.71095 3.84375,1.71094 1.578112,10e-6 2.812486,-0.55468 3.703125,-1.66407 0.890609,-1.12498 1.335921,-2.59373 1.335938,-4.40625 -1.7e-5,-1.56248 -0.484392,-2.8906 -1.453125,-3.98437 -0.95314,-1.09373 -2.148451,-1.6406 -3.585938,-1.64063"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4608" />
<path
d="m 122.55078,367.48776 -18.09375,0 c 0,2.93751 0.80468,5.19532 2.41406,6.77344 1.42187,1.375 3.24999,2.0625 5.48438,2.0625 2.54686,0 4.67185,-0.74218 6.375,-2.22656 l 1.875,3.21093 c -0.68752,0.68751 -1.74221,1.28126 -3.16406,1.78125 -1.78127,0.65625 -3.76564,0.98438 -5.95313,0.98438 -3.15626,0 -5.83594,-1.07031 -8.03906,-3.21094 -2.45313,-2.35937 -3.67969,-5.53124 -3.679689,-9.51562 -10e-7,-4.14061 1.257809,-7.46092 3.773439,-9.96094 2.24999,-2.23435 4.91405,-3.35154 7.99219,-3.35156 3.5781,2e-5 6.38279,1.00783 8.41406,3.02343 1.96873,1.93753 2.9531,4.50784 2.95312,7.71094 -2e-5,0.98439 -0.11721,1.89064 -0.35156,2.71875 m -10.80469,-9.70312 c -1.98438,2e-5 -3.64844,0.64064 -4.99218,1.92187 -1.28126,1.21877 -2.00782,2.73439 -2.17969,4.54688 l 13.89844,0 c -2e-5,-1.79686 -0.56252,-3.29686 -1.6875,-4.5 -1.2344,-1.31248 -2.91408,-1.96873 -5.03907,-1.96875"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4610" />
<path
d="m 143.01172,379.60495 0,-14.60156 c -2e-5,-2.67186 -0.40627,-4.53905 -1.21875,-5.60157 -0.79689,-1.0781 -2.14064,-1.61716 -4.03125,-1.61718 -1.01564,2e-5 -2.07814,0.30471 -3.1875,0.91406 -1.10939,0.6094 -1.96095,1.35939 -2.55469,2.25 l 0,18.65625 -4.45312,0 0,-25.10156 3.04687,0 1.40625,3.23437 c 1.46874,-2.46872 3.86718,-3.7031 7.19531,-3.70312 5.49998,2e-5 8.24998,3.34377 8.25,10.03125 l 0,15.53906 -4.45312,0"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4612" />
<path
d="m 174.95703,367.48776 -18.09375,0 c 0,2.93751 0.80468,5.19532 2.41406,6.77344 1.42187,1.375 3.24999,2.0625 5.48438,2.0625 2.54686,0 4.67185,-0.74218 6.375,-2.22656 l 1.875,3.21093 c -0.68752,0.68751 -1.74221,1.28126 -3.16406,1.78125 -1.78127,0.65625 -3.76564,0.98438 -5.95313,0.98438 -3.15626,0 -5.83594,-1.07031 -8.03906,-3.21094 -2.45313,-2.35937 -3.67969,-5.53124 -3.67969,-9.51562 0,-4.14061 1.25781,-7.46092 3.77344,-9.96094 2.24999,-2.23435 4.91405,-3.35154 7.99219,-3.35156 3.5781,2e-5 6.38279,1.00783 8.41406,3.02343 1.96873,1.93753 2.9531,4.50784 2.95312,7.71094 -2e-5,0.98439 -0.11721,1.89064 -0.35156,2.71875 m -10.80469,-9.70312 c -1.98438,2e-5 -3.64844,0.64064 -4.99218,1.92187 -1.28126,1.21877 -2.00782,2.73439 -2.17969,4.54688 l 13.89844,0 c -2e-5,-1.79686 -0.56252,-3.29686 -1.6875,-4.5 -1.2344,-1.31248 -2.91408,-1.96873 -5.03907,-1.96875"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4614" />
<path
d="m 193.61328,358.79245 c -0.96876,-0.67185 -1.94533,-1.00779 -2.92969,-1.00781 -1.57813,2e-5 -2.96094,0.72658 -4.14843,2.17968 -1.17189,1.45315 -1.75782,3.20315 -1.75782,5.25 l 0,14.39063 -4.45312,0 0,-25.10156 4.45312,0 0,4.00781 c 1.62499,-2.98435 4.03905,-4.47654 7.24219,-4.47656 0.79686,2e-5 1.9453,0.14065 3.44531,0.42187 l -1.85156,4.33594"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4616" />
<path
d="m 203.22266,345.0112 c 0.76561,3e-5 1.41405,0.27347 1.94531,0.82031 0.54686,0.53129 0.8203,1.17191 0.82031,1.92188 -1e-5,0.76565 -0.27345,1.4219 -0.82031,1.96875 -0.53126,0.53128 -1.1797,0.7969 -1.94531,0.79687 -0.75001,3e-5 -1.39845,-0.26559 -1.94532,-0.79687 -0.53125,-0.54685 -0.79688,-1.2031 -0.79687,-1.96875 -1e-5,-0.76559 0.26562,-1.41403 0.79687,-1.94532 0.53125,-0.53121 1.17968,-0.79684 1.94532,-0.79687 m -2.4375,34.59375 0,-21.35156 -3.44532,0 0,-3.75 7.89844,0 0,25.10156 -4.45312,0"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4618" />
<path
d="m 233.45703,367.48776 -18.09375,0 c 0,2.93751 0.80468,5.19532 2.41406,6.77344 1.42187,1.375 3.24999,2.0625 5.48438,2.0625 2.54686,0 4.67185,-0.74218 6.375,-2.22656 l 1.875,3.21093 c -0.68752,0.68751 -1.74221,1.28126 -3.16406,1.78125 -1.78127,0.65625 -3.76564,0.98438 -5.95313,0.98438 -3.15626,0 -5.83594,-1.07031 -8.03906,-3.21094 -2.45313,-2.35937 -3.67969,-5.53124 -3.67969,-9.51562 0,-4.14061 1.25781,-7.46092 3.77344,-9.96094 2.24999,-2.23435 4.91405,-3.35154 7.99219,-3.35156 3.5781,2e-5 6.38279,1.00783 8.41406,3.02343 1.96873,1.93753 2.9531,4.50784 2.95312,7.71094 -2e-5,0.98439 -0.11721,1.89064 -0.35156,2.71875 m -10.80469,-9.70312 c -1.98438,2e-5 -3.64844,0.64064 -4.99218,1.92187 -1.28126,1.21877 -2.00782,2.73439 -2.17969,4.54688 l 13.89844,0 c -2e-5,-1.79686 -0.56252,-3.29686 -1.6875,-4.5 -1.2344,-1.31248 -2.91408,-1.96873 -5.03907,-1.96875"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4620" />
<path
d="m 252.11328,358.79245 c -0.96876,-0.67185 -1.94533,-1.00779 -2.92969,-1.00781 -1.57813,2e-5 -2.96094,0.72658 -4.14843,2.17968 -1.17189,1.45315 -1.75782,3.20315 -1.75782,5.25 l 0,14.39063 -4.45312,0 0,-25.10156 4.45312,0 0,4.00781 c 1.62499,-2.98435 4.03905,-4.47654 7.24219,-4.47656 0.79686,2e-5 1.9453,0.14065 3.44531,0.42187 l -1.85156,4.33594"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4622" />
<path
d="m 261.34766,354.50339 0,16.00781 c -1e-5,3.87501 1.67967,5.8125 5.03906,5.8125 1.46873,0 2.81248,-0.42187 4.03125,-1.26563 1.21873,-0.84374 2.02342,-1.8203 2.41406,-2.92968 l 0,-17.625 4.45313,0 0,25.10156 -4.45313,0 0,-3.46875 c -0.50002,0.98438 -1.50783,1.89063 -3.02344,2.71875 -1.50001,0.8125 -2.96876,1.21875 -4.40625,1.21875 -2.75,0 -4.85938,-0.78906 -6.32812,-2.36719 -1.45313,-1.57812 -2.17969,-3.8203 -2.17969,-6.72656 l 0,-16.47656 4.45313,0"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4624" />
<path
d="m 298.82422,379.60495 0,-14.60156 c -2e-5,-2.67186 -0.40627,-4.53905 -1.21875,-5.60157 -0.79689,-1.0781 -2.14064,-1.61716 -4.03125,-1.61718 -1.01564,2e-5 -2.07814,0.30471 -3.1875,0.91406 -1.10939,0.6094 -1.96095,1.35939 -2.55469,2.25 l 0,18.65625 -4.45312,0 0,-25.10156 3.04687,0 1.40625,3.23437 c 1.46874,-2.46872 3.86718,-3.7031 7.19531,-3.70312 5.49998,2e-5 8.24998,3.34377 8.25,10.03125 l 0,15.53906 -4.45312,0"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4626" />
<path
d="m 308.71484,386.47214 2.41407,-3.5625 c 2.59374,1.73437 4.98436,2.60155 7.17187,2.60156 2.01561,-10e-6 3.60155,-0.35157 4.75781,-1.05469 1.17186,-0.6875 1.7578,-1.54688 1.75782,-2.57812 -2e-5,-2.03125 -1.46877,-3.04688 -4.40625,-3.04688 -0.50002,0 -1.40627,0.125 -2.71875,0.375 -1.31251,0.25 -2.33595,0.375 -3.07032,0.375 -3.5625,0 -5.34375,-1.34375 -5.34375,-4.03125 0,-0.82812 0.41406,-1.57812 1.24219,-2.25 0.84375,-0.67187 1.88281,-1.15624 3.11719,-1.45312 -3.53125,-1.65624 -5.29688,-4.53124 -5.29688,-8.625 0,-2.62498 0.91406,-4.81248 2.74219,-6.5625 1.82812,-1.74998 4.08593,-2.62498 6.77344,-2.625 2.46873,2e-5 4.39842,0.50784 5.78906,1.52343 l 2.22656,-2.67187 2.90625,2.74219 -2.67187,2.01562 c 1.1406,1.4844 1.71091,3.4219 1.71094,5.8125 -3e-5,2.53127 -0.78909,4.65626 -2.36719,6.375 -1.57814,1.71876 -3.64845,2.70313 -6.21094,2.95313 l -3.67969,0.375 c -0.4375,0.0469 -1.02344,0.21875 -1.75781,0.51562 -0.73438,0.28126 -1.10157,0.65626 -1.10156,1.125 -1e-5,0.64063 0.76562,0.96094 2.29687,0.96094 0.67187,0 1.71874,-0.11718 3.14063,-0.35156 1.42186,-0.25 2.47655,-0.375 3.16406,-0.375 2.46873,0 4.39061,0.59375 5.76563,1.78125 1.3906,1.17187 2.08591,2.80468 2.08593,4.89843 -2e-5,2.3125 -1.03908,4.17969 -3.11718,5.60157 -2.06252,1.42186 -4.67971,2.1328 -7.85157,2.13281 -1.62501,-10e-6 -3.33594,-0.28907 -5.13281,-0.86719 -1.79688,-0.57813 -3.24219,-1.28126 -4.33594,-2.10937 m 9.44532,-28.85157 c -1.54689,3e-5 -2.81251,0.5469 -3.79688,1.64063 -0.96876,1.09377 -1.45313,2.42189 -1.45312,3.98437 -1e-5,1.75002 0.46874,3.20314 1.40625,4.35938 0.95311,1.14064 2.23436,1.71095 3.84375,1.71094 1.57811,10e-6 2.81248,-0.55468 3.70312,-1.66407 0.89061,-1.12498 1.33592,-2.59373 1.33594,-4.40625 -2e-5,-1.56248 -0.48439,-2.8906 -1.45313,-3.98437 -0.95314,-1.09373 -2.14845,-1.6406 -3.58593,-1.64063"
style="font-size:48px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4628" />
</g>
</g>
</g>
<g
id="g5000"
transform="matrix(1.2364568,0,0,1.2364568,-1200.392,-278.1104)">
<path
transform="matrix(1.1845756,0,0,1.1845756,809.48274,-157.98707)"
d="m 400,772.36218 c 0,44.18278 -35.81722,80 -80,80 -44.18278,0 -80,-35.81722 -80,-80 0,-44.18278 35.81722,-80 80,-80 44.18278,0 80,35.81722 80,80 z"
sodipodi:ry="80"
sodipodi:rx="80"
sodipodi:cy="772.36218"
sodipodi:cx="320"
id="path5002"
style="fill:#555753;fill-opacity:1;stroke:#729fcf;stroke-width:5.12058449;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
<path
sodipodi:nodetypes="cssccccccccccccsssc"
id="path5004"
d="m 1161.2107,695.22105 c -11.8411,0 -21.4402,9.59909 -21.4402,21.44019 0,11.84111 9.5991,21.44022 21.4402,21.44022 9.0525,0 16.7938,-5.61197 19.9382,-13.54529 l 1.502,-0.74819 8.3974,7.14674 7.1467,-10.72011 10.5415,10.72011 3.5733,-10.72011 14.2935,10.72011 10.7201,-10.72011 -10.7201,-14.29347 -46.8223,0 c -3.7067,-6.40987 -10.6334,-10.72009 -18.5703,-10.72009 z m -3.5734,10.72009 c 3.947,0 7.1467,3.1997 7.1467,7.14673 0,3.94704 -3.1997,7.14674 -7.1467,7.14674 -3.947,0 -7.1467,-3.1997 -7.1467,-7.14674 0,-3.94703 3.1997,-7.14673 7.1467,-7.14673 z"
style="fill:none;stroke:#eeeeec;stroke-width:4.99977031;stroke-miterlimit:4;stroke-dasharray:none" />
<g
style="font-size:11.32267666px;font-style:normal;font-weight:normal;fill:#eeeeec;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
id="text3804-6">
<path
d="m 1141.1538,776.50443 0,6.80971 -2.7011,0 0,-21.19684 2.7011,0 0,1.25105 c 1.0236,-1.02357 2.2604,-1.53537 3.7105,-1.53538 2.1609,10e-6 3.8432,0.67293 5.0469,2.01874 1.2036,1.34585 1.8055,3.3172 1.8055,5.91408 0,2.31256 -0.6066,4.20336 -1.8197,5.6724 -1.2132,1.45956 -2.9666,2.18934 -5.2602,2.18934 -0.6444,0 -1.3363,-0.11373 -2.0756,-0.3412 -0.7298,-0.22746 -1.1989,-0.4881 -1.4074,-0.7819 m 0,-11.10311 0,8.87111 c 0.1706,0.2559 0.5307,0.50232 1.0805,0.73926 0.5497,0.22747 1.0851,0.3412 1.6064,0.3412 3.3551,0 5.0327,-1.89554 5.0327,-5.68662 0,-1.92396 -0.3981,-3.33139 -1.1942,-4.22231 -0.7961,-0.89088 -2.0709,-1.33634 -3.8243,-1.33635 -0.3791,10e-6 -0.8435,0.1327 -1.3932,0.39806 -0.5497,0.26539 -0.9857,0.56394 -1.3079,0.89565"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4674" />
<path
d="m 1162.9335,764.71892 c -0.5876,-0.40753 -1.18,-0.6113 -1.777,-0.61131 -0.9573,10e-6 -1.7961,0.44073 -2.5164,1.32214 -0.7108,0.88143 -1.0662,1.94293 -1.0662,3.1845 l 0,8.72895 -2.7011,0 0,-15.2259 2.7011,0 0,2.43102 c 0.9857,-1.81022 2.45,-2.71534 4.3929,-2.71535 0.4834,10e-6 1.18,0.0853 2.0898,0.25589 l -1.1231,2.63006"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4676" />
<path
d="m 1168.7623,756.3596 c 0.4644,2e-5 0.8577,0.16588 1.18,0.49758 0.3317,0.32226 0.4975,0.71085 0.4976,1.16576 -10e-5,0.46442 -0.1659,0.86248 -0.4976,1.19418 -0.3223,0.32226 -0.7156,0.48338 -1.18,0.48337 -0.4549,1e-5 -0.8483,-0.16111 -1.18,-0.48337 -0.3222,-0.3317 -0.4833,-0.72976 -0.4833,-1.19418 0,-0.46439 0.1611,-0.85771 0.4833,-1.17998 0.3223,-0.32222 0.7156,-0.48334 1.18,-0.48336 m -1.4785,20.9836 0,-12.95126 -2.0898,0 0,-2.27464 4.7909,0 0,15.2259 -2.7011,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4678" />
<path
d="m 1179.7659,777.62753 -0.7108,0 -6.5254,-15.55288 2.957,0 4.0233,10.66239 4.1086,-10.66239 2.8291,0 -6.6818,15.55288"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4680" />
<path
d="m 1197.1527,775.59457 c -1.0805,1.35531 -2.7343,2.03296 -4.9616,2.03296 -1.1942,0 -2.232,-0.43123 -3.1134,-1.2937 -0.8719,-0.87195 -1.3079,-1.9524 -1.3079,-3.24137 0,-1.54486 0.6729,-2.84804 2.0187,-3.90955 1.3554,-1.07097 3.0803,-1.60646 5.1749,-1.60647 0.5686,10e-6 1.2131,0.12322 1.9334,0.36963 0,-2.46418 -1.0994,-3.69628 -3.2982,-3.69629 -1.6871,10e-6 -2.9855,0.45494 -3.8954,1.36478 l -1.1373,-2.26042 c 0.5118,-0.41701 1.2179,-0.77242 2.1183,-1.06624 0.9098,-0.30328 1.7771,-0.45492 2.6016,-0.45493 2.2083,10e-6 3.81,0.50233 4.8052,1.50695 1.0046,1.00465 1.5069,2.60163 1.507,4.79097 l 0,5.45915 c -10e-5,1.33635 0.398,2.22725 1.1941,2.6727 l 0,1.35057 c -1.0994,0 -1.9239,-0.15638 -2.4736,-0.46914 -0.5403,-0.31276 -0.9289,-0.8293 -1.1658,-1.5496 m -0.2559,-5.72926 c -0.853,-0.18955 -1.4501,-0.28433 -1.7913,-0.28433 -1.3648,0 -2.4784,0.35068 -3.3409,1.05202 -0.8624,0.70135 -1.2937,1.53065 -1.2937,2.48789 0,1.58278 0.9336,2.37416 2.8007,2.37416 1.3648,0 2.5732,-0.64922 3.6252,-1.94766 l 0,-3.68208"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4682" />
<path
d="m 1204.8154,764.24978 -1.7628,0 0,-2.13248 1.7628,0 0,-3.18451 2.7012,-1.0378 0,4.22231 4.1796,0 0,2.13248 -4.1796,0 0,7.56319 c 0,1.27949 0.2132,2.18935 0.6397,2.72957 0.436,0.54023 1.1326,0.81035 2.0898,0.81035 0.6919,0 1.4075,-0.17534 2.1467,-0.52602 l 0.3981,2.37417 c -1.1184,0.28433 -2.3457,0.42649 -3.6821,0.42649 -1.2037,0 -2.2225,-0.44545 -3.0565,-1.33635 -0.8246,-0.90038 -1.2369,-2.03296 -1.2369,-3.39775 l 0,-8.64365"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4684" />
<path
d="m 1228.2158,769.99325 -10.9751,0 c 0,1.78182 0.4881,3.15134 1.4643,4.10858 0.8624,0.83404 1.9713,1.25106 3.3266,1.25106 1.5449,0 2.8339,-0.45019 3.8669,-1.35057 l 1.1374,1.94766 c -0.4171,0.41702 -1.0568,0.77717 -1.9193,1.08046 -1.0804,0.39806 -2.2841,0.59709 -3.611,0.59709 -1.9145,0 -3.5399,-0.64922 -4.8762,-1.94766 -1.488,-1.43113 -2.232,-3.3551 -2.232,-5.77191 0,-2.51158 0.7629,-4.52559 2.2888,-6.04203 1.3648,-1.35529 2.9808,-2.03295 4.8479,-2.03296 2.1703,10e-6 3.8716,0.61132 5.1037,1.83393 1.1942,1.17524 1.7913,2.73432 1.7913,4.67724 0,0.5971 -0.071,1.14681 -0.2133,1.64911 m -6.5538,-5.88564 c -1.2037,10e-6 -2.213,0.3886 -3.0281,1.16576 -0.7772,0.73927 -1.2179,1.6586 -1.3221,2.758 l 8.4304,0 c -10e-5,-1.08992 -0.3413,-1.99978 -1.0236,-2.72957 -0.7488,-0.79611 -1.7676,-1.19418 -3.0566,-1.19419"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4686" />
<path
d="m 1239.5322,764.71892 c -0.5876,-0.40753 -1.18,-0.6113 -1.7771,-0.61131 -0.9572,10e-6 -1.796,0.44073 -2.5163,1.32214 -0.7108,0.88143 -1.0662,1.94293 -1.0662,3.1845 l 0,8.72895 -2.7012,0 0,-15.2259 2.7012,0 0,2.43102 c 0.9856,-1.81022 2.4499,-2.71534 4.3929,-2.71535 0.4833,10e-6 1.1799,0.0853 2.0898,0.25589 l -1.1231,2.63006"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4688" />
<path
d="m 1131.3586,812.78501 1.0378,-2.61584 c 0.5308,0.38859 1.1895,0.71557 1.9761,0.98094 0.7961,0.2559 1.507,0.38385 2.1325,0.38385 1.1089,0 1.9998,-0.30329 2.6727,-0.90986 0.6729,-0.60657 1.0094,-1.379 1.0094,-2.3173 0,-0.70134 -0.1896,-1.35056 -0.5687,-1.94766 -0.3696,-0.60657 -1.3079,-1.26526 -2.8149,-1.9761 l -1.6775,-0.78191 c -1.4217,-0.66343 -2.4168,-1.45007 -2.9855,-2.35994 -0.5592,-0.90985 -0.8388,-2.00452 -0.8388,-3.28402 0,-1.55432 0.5497,-2.84329 1.6492,-3.8669 1.0994,-1.02357 2.5115,-1.53536 4.2365,-1.53538 2.3031,2e-5 3.9048,0.37439 4.8052,1.1231 l -0.8388,2.47368 c -0.3791,-0.27484 -0.9573,-0.54021 -1.7344,-0.79613 -0.7772,-0.25587 -1.4975,-0.38382 -2.1609,-0.38384 -0.9668,2e-5 -1.7297,0.27487 -2.2889,0.82456 -0.5497,0.54972 -0.8246,1.25581 -0.8246,2.11826 0,0.53077 0.1,1.01413 0.2986,1.45009 0.199,0.43598 0.4739,0.80087 0.8246,1.09467 0.3601,0.29382 1.0899,0.7061 2.1893,1.23684 l 1.706,0.81034 c 1.4216,0.67293 2.4168,1.47853 2.9855,2.41681 0.5781,0.92882 0.8672,2.11353 0.8672,3.55413 0,1.56382 -0.6303,2.8907 -1.8908,3.98063 -1.2511,1.08993 -2.9286,1.6349 -5.0327,1.6349 -1.8481,0 -3.4262,-0.43597 -4.7341,-1.30792"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4690" />
<path
d="m 1157.5597,799.74845 -1.3364,1.90502 c -0.2748,-0.27484 -0.7629,-0.53548 -1.4643,-0.78191 -0.6919,-0.24641 -1.3743,-0.36962 -2.0472,-0.36963 -1.469,10e-6 -2.6348,0.51654 -3.4972,1.5496 -0.8625,1.0236 -1.2937,2.43104 -1.2937,4.22231 0,1.78181 0.4407,3.14186 1.3221,4.08014 0.8814,0.92882 2.104,1.39323 3.6679,1.39322 1.2131,10e-6 2.4357,-0.46914 3.6678,-1.40743 l 1.0663,2.27464 c -1.4501,0.93829 -3.2461,1.40744 -5.3881,1.40744 -2.0756,0 -3.7911,-0.69661 -5.1464,-2.08983 -1.3553,-1.39322 -2.0329,-3.27928 -2.0329,-5.65818 0,-2.42628 0.7013,-4.37394 2.104,-5.84299 1.4122,-1.46903 3.3409,-2.20355 5.7861,-2.20357 0.7867,2e-5 1.6397,0.16588 2.559,0.49758 0.9193,0.33174 1.597,0.67293 2.033,1.02359"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4692" />
<path
d="m 1169.8996,813.73752 0,-9.56773 c 0,-1.13731 -0.2796,-2.03295 -0.8388,-2.68692 -0.5591,-0.65395 -1.3458,-0.98093 -2.3599,-0.98094 -0.654,10e-6 -1.3127,0.1943 -1.9761,0.58288 -0.654,0.37912 -1.1563,0.82457 -1.5069,1.33635 l 0,11.31636 -2.7012,0 0,-21.46696 2.7012,0 0,7.9186 c 0.3601,-0.55916 0.9382,-1.02357 1.7344,-1.39322 0.8056,-0.37909 1.6349,-0.56864 2.4879,-0.56866 1.6112,2e-5 2.8717,0.53077 3.7816,1.59225 0.9193,1.06152 1.3789,2.5116 1.379,4.35026 l 0,9.56773 -2.7012,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4694" />
<path
d="m 1176.6525,809.42991 0,-17.15935 2.7011,0 0,16.70442 c 0,0.81509 0.2322,1.45957 0.6966,1.93345 0.4739,0.46441 1.09,0.69661 1.8482,0.69661 l 0,2.41681 c -3.4973,0 -5.2459,-1.53065 -5.2459,-4.59194"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4696" />
<path
d="m 1187.585,798.51161 0,9.70989 c 0,2.35047 1.0188,3.52571 3.0565,3.5257 0.8909,10e-6 1.706,-0.25589 2.4453,-0.76769 0.7392,-0.51179 1.2273,-1.10415 1.4643,-1.77707 l 0,-10.69083 2.7011,0 0,15.22591 -2.7011,0 0,-2.10405 c -0.3033,0.5971 -0.9146,1.1468 -1.8339,1.64912 -0.9099,0.49284 -1.8008,0.73926 -2.6728,0.73926 -1.668,0 -2.9475,-0.47862 -3.8384,-1.43587 -0.8814,-0.95725 -1.3222,-2.31729 -1.3222,-4.08015 l 0,-9.99422 2.7012,0 m -0.2986,-6.2837 c 0.4455,2e-5 0.8199,0.1564 1.1231,0.46914 0.3128,0.30331 0.4692,0.67768 0.4692,1.12311 0,0.44547 -0.1564,0.82458 -0.4692,1.13732 -0.3032,0.31278 -0.6776,0.46917 -1.1231,0.46915 -0.4454,2e-5 -0.8245,-0.15637 -1.1373,-0.46915 -0.3127,-0.31274 -0.4691,-0.69185 -0.4691,-1.13732 0,-0.44543 0.1564,-0.8198 0.4691,-1.12311 0.3128,-0.31274 0.6919,-0.46912 1.1373,-0.46914 m 6.7102,0 c 0.4455,2e-5 0.8246,0.1564 1.1374,0.46914 0.3127,0.30331 0.4691,0.67768 0.4691,1.12311 0,0.44547 -0.1564,0.82458 -0.4691,1.13732 -0.3128,0.31278 -0.6919,0.46917 -1.1374,0.46915 -0.4454,2e-5 -0.8245,-0.15637 -1.1373,-0.46915 -0.3033,-0.31274 -0.4549,-0.69185 -0.4549,-1.13732 0,-0.44543 0.1516,-0.8198 0.4549,-1.12311 0.3128,-0.31274 0.6919,-0.46912 1.1373,-0.46914"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4698" />
<path
d="m 1199.9534,812.82766 0.9525,-2.55898 c 1.5069,0.98569 2.7201,1.47853 3.6394,1.47852 1.6681,10e-6 2.5021,-0.70134 2.5021,-2.10404 0,-1.00463 -0.8056,-1.8671 -2.4168,-2.58741 -1.2416,-0.56866 -2.0803,-0.99989 -2.5163,-1.29371 -0.4265,-0.2938 -0.8009,-0.62551 -1.1231,-0.99515 -0.3128,-0.3791 -0.5497,-0.77716 -0.7108,-1.19419 -0.1517,-0.42649 -0.2275,-0.88142 -0.2275,-1.36479 0,-1.25104 0.4549,-2.22724 1.3648,-2.9286 0.9098,-0.70134 2.0993,-1.05201 3.5683,-1.05203 1.1089,2e-5 2.5069,0.35069 4.1939,1.05203 l -0.7677,2.50211 c -1.071,-0.85298 -2.1467,-1.27948 -3.2271,-1.27949 -0.6445,10e-6 -1.1895,0.15165 -1.6349,0.45493 -0.436,0.3033 -0.654,0.68714 -0.654,1.15154 0,0.97621 0.5544,1.71547 1.6633,2.21777 l 1.9335,0.88143 c 1.1847,0.54024 2.0471,1.15628 2.5874,1.84815 0.5402,0.69188 0.8103,1.55908 0.8103,2.60162 0,1.36479 -0.4786,2.43577 -1.4358,3.21294 -0.9573,0.76769 -2.2842,1.15154 -3.9807,1.15154 -1.6017,0 -3.1087,-0.39806 -4.5208,-1.19419"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4700" />
<path
d="m 1211.7247,812.82766 0.9525,-2.55898 c 1.5069,0.98569 2.7201,1.47853 3.6394,1.47852 1.6681,10e-6 2.5021,-0.70134 2.5021,-2.10404 0,-1.00463 -0.8056,-1.8671 -2.4168,-2.58741 -1.2416,-0.56866 -2.0804,-0.99989 -2.5163,-1.29371 -0.4265,-0.2938 -0.8009,-0.62551 -1.1231,-0.99515 -0.3128,-0.3791 -0.5497,-0.77716 -0.7109,-1.19419 -0.1516,-0.42649 -0.2274,-0.88142 -0.2274,-1.36479 0,-1.25104 0.4549,-2.22724 1.3648,-2.9286 0.9098,-0.70134 2.0993,-1.05201 3.5683,-1.05203 1.1089,2e-5 2.5068,0.35069 4.1939,1.05203 l -0.7677,2.50211 c -1.071,-0.85298 -2.1467,-1.27948 -3.2272,-1.27949 -0.6444,10e-6 -1.1894,0.15165 -1.6349,0.45493 -0.4359,0.3033 -0.6539,0.68714 -0.6539,1.15154 0,0.97621 0.5544,1.71547 1.6633,2.21777 l 1.9335,0.88143 c 1.1847,0.54024 2.0471,1.15628 2.5874,1.84815 0.5402,0.69188 0.8103,1.55908 0.8103,2.60162 0,1.36479 -0.4786,2.43577 -1.4359,3.21294 -0.9572,0.76769 -2.2841,1.15154 -3.9806,1.15154 -1.6017,0 -3.1087,-0.39806 -4.5208,-1.19419"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4702" />
<path
d="m 1237.3144,806.38757 -10.9752,0 c 0,1.78181 0.4881,3.15134 1.4644,4.10858 0.8624,0.83404 1.9713,1.25106 3.3266,1.25105 1.5449,10e-6 2.8338,-0.45018 3.8669,-1.35057 l 1.1373,1.94767 c -0.417,0.41702 -1.0567,0.77717 -1.9192,1.08045 -1.0805,0.39807 -2.2841,0.5971 -3.611,0.5971 -1.9145,0 -3.5399,-0.64922 -4.8763,-1.94767 -1.488,-1.43112 -2.232,-3.35509 -2.232,-5.77191 0,-2.51157 0.763,-4.52558 2.2889,-6.04202 1.3648,-1.3553 2.9807,-2.03295 4.8478,-2.03297 2.1704,2e-5 3.8717,0.61133 5.1038,1.83394 1.1942,1.17524 1.7912,2.73432 1.7913,4.67723 -1e-4,0.59711 -0.071,1.14681 -0.2133,1.64912 m -6.5538,-5.88564 c -1.2037,10e-6 -2.2131,0.3886 -3.0281,1.16575 -0.7772,0.73927 -1.2179,1.65861 -1.3222,2.75801 l 8.4304,0 c 0,-1.08992 -0.3412,-1.99978 -1.0236,-2.72957 -0.7487,-0.79612 -1.7676,-1.19418 -3.0565,-1.19419"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4704" />
<path
d="m 1240.57,809.42991 0,-17.15935 2.7011,0 0,16.70442 c 0,0.81509 0.2322,1.45957 0.6966,1.93345 0.4739,0.46441 1.09,0.69661 1.8482,0.69661 l 0,2.41681 c -3.4973,0 -5.2459,-1.53065 -5.2459,-4.59194"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4706" />
</g>
</g>
<path
style="fill:none;stroke:#729fcf;stroke-width:20;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow2MendtcD)"
d="m 435.00278,-37.244655 c 0,119.999995 0,60 0,219.999995 0,20 0,-20 0,60"
id="path3701"
sodipodi:nodetypes="ccc" />
<g
transform="matrix(1.2364568,0,0,1.2364568,18.461226,-949.41123)"
id="g3887">
<path
sodipodi:type="arc"
style="fill:#555753;fill-opacity:1;stroke:#729fcf;stroke-width:5.12058449;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path3889"
sodipodi:cx="320"
sodipodi:cy="772.36218"
sodipodi:rx="80"
sodipodi:ry="80"
d="m 400,772.36218 c 0,44.18278 -35.81722,80 -80,80 -44.18278,0 -80,-35.81722 -80,-80 0,-44.18278 35.81722,-80 80,-80 44.18278,0 80,35.81722 80,80 z"
transform="matrix(1.1845756,0,0,1.1845756,-42.025553,-142.55923)" />
<g
style="font-size:11.32267666px;font-style:normal;font-weight:normal;fill:#eeeeec;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
id="text3893">
<path
d="m 268.22116,815.4165 0,-0.71082 8.95641,-17.55742 -8.81425,0 0,-2.55897 12.7238,0 0,0.71082 -8.98485,17.55742 9.29761,0 0,2.55897 -13.17872,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4567" />
<path
d="m 287.31396,800.1906 0,9.70989 c -1e-5,2.35047 1.01884,3.5257 3.05655,3.5257 0.89089,0 1.70597,-0.2559 2.44524,-0.76769 0.73925,-0.51179 1.22735,-1.10415 1.46431,-1.77707 l 0,-10.69083 2.70114,0 0,15.2259 -2.70114,0 0,-2.10404 c -0.3033,0.59709 -0.91461,1.1468 -1.83394,1.64911 -0.90986,0.49284 -1.80076,0.73926 -2.6727,0.73926 -1.66808,0 -2.94757,-0.47862 -3.83847,-1.43587 -0.88142,-0.95724 -1.32214,-2.31729 -1.32213,-4.08014 l 0,-9.99422 2.70114,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4569" />
<path
d="m 308.90887,796.36635 c -0.54972,-0.18953 -1.06151,-0.28431 -1.53539,-0.28433 -0.82457,2e-5 -1.50696,0.31279 -2.04718,0.93829 -0.53076,0.62555 -0.79613,1.41694 -0.79613,2.37416 0,0.25592 0.0237,0.52129 0.0711,0.79613 l 3.0992,0 0,2.27464 -3.0992,0 0,12.95126 -2.70114,0 0,-12.95126 -2.21778,0 0,-2.27464 2.21778,0 c -1e-5,-1.94291 0.47862,-3.46881 1.43587,-4.57772 0.95724,-1.10887 2.22251,-1.66332 3.79581,-1.66334 0.78664,2e-5 1.63015,0.14219 2.53054,0.4265 l -0.75347,1.99031"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4571" />
<path
d="m 320.02619,813.66787 c -1.08046,1.35531 -2.73432,2.03296 -4.96157,2.03296 -1.19419,0 -2.232,-0.43123 -3.11342,-1.2937 -0.87195,-0.87195 -1.30792,-1.9524 -1.30792,-3.24137 0,-1.54486 0.67292,-2.84804 2.01875,-3.90954 1.3553,-1.07097 3.08024,-1.60646 5.17482,-1.60647 0.56865,10e-6 1.21313,0.12322 1.93344,0.36963 -10e-6,-2.46419 -1.09942,-3.69629 -3.29823,-3.6963 -1.68703,10e-6 -2.98548,0.45494 -3.89533,1.36479 l -1.13732,-2.26043 c 0.51179,-0.41701 1.21788,-0.77242 2.11826,-1.06624 0.90985,-0.30327 1.77706,-0.45491 2.60163,-0.45493 2.20829,2e-5 3.81002,0.50233 4.80518,1.50695 1.00462,1.00465 1.50694,2.60164 1.50695,4.79097 l 0,5.45915 c -10e-6,1.33636 0.39805,2.22726 1.19419,2.67271 l 0,1.35057 c -1.09942,0 -1.92398,-0.15638 -2.47367,-0.46915 -0.54024,-0.31276 -0.92883,-0.82929 -1.16576,-1.5496 m -0.2559,-5.72926 c -0.853,-0.18955 -1.45009,-0.28432 -1.79128,-0.28433 -1.36479,10e-6 -2.47842,0.35068 -3.34088,1.05202 -0.86248,0.70136 -1.29371,1.53065 -1.29371,2.48789 0,1.58278 0.93355,2.37417 2.80066,2.37416 1.36478,10e-6 2.57318,-0.64921 3.62521,-1.94766 l 0,-3.68208"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4573" />
<path
d="m 326.93542,811.1089 0,-17.15936 2.70115,0 0,16.70443 c -1e-5,0.81508 0.23219,1.45956 0.69661,1.93344 0.47387,0.46441 1.08992,0.69662 1.84814,0.69661 l 0,2.41681 c -3.49727,0 -5.2459,-1.53064 -5.2459,-4.59193"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4575" />
<path
d="m 335.52221,811.1089 0,-17.15936 2.70114,0 0,16.70443 c -10e-6,0.81508 0.2322,1.45956 0.69661,1.93344 0.47388,0.46441 1.08993,0.69662 1.84815,0.69661 l 0,2.41681 c -3.49727,0 -5.2459,-1.53064 -5.2459,-4.59193"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4577" />
<path
d="m 342.90059,814.50665 0.95251,-2.55898 c 1.50694,0.98568 2.72009,1.47852 3.63943,1.47852 1.66806,0 2.5021,-0.70135 2.50211,-2.10405 -1e-5,-1.00463 -0.80561,-1.8671 -2.41681,-2.58741 -1.24158,-0.56865 -2.08036,-0.99988 -2.51633,-1.2937 -0.4265,-0.2938 -0.80087,-0.62552 -1.12311,-0.99516 -0.31276,-0.37909 -0.5497,-0.77716 -0.71082,-1.19419 -0.15165,-0.42648 -0.22747,-0.88141 -0.22747,-1.36478 0,-1.25104 0.45493,-2.22724 1.36479,-2.92861 0.90986,-0.70133 2.0993,-1.052 3.56835,-1.05202 1.10888,2e-5 2.50684,0.35069 4.19388,1.05202 l -0.7677,2.50211 c -1.07098,-0.85298 -2.1467,-1.27947 -3.22715,-1.27949 -0.64449,2e-5 -1.18945,0.15166 -1.6349,0.45493 -0.43598,0.3033 -0.65396,0.68715 -0.65396,1.15154 0,0.97621 0.55444,1.71547 1.66333,2.21778 l 1.93345,0.88143 c 1.1847,0.54023 2.04717,1.15628 2.58741,1.84814 0.54022,0.69188 0.81033,1.55909 0.81034,2.60163 -1e-5,1.36479 -0.47863,2.43577 -1.43587,3.21294 -0.95725,0.76769 -2.28413,1.15153 -3.98063,1.15153 -1.60173,0 -3.10868,-0.39806 -4.52085,-1.19418"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4579" />
<path
d="m 358.55299,812.99969 8.44462,0 0,2.41681 -12.68115,0 0,-0.71082 8.65787,-12.09827 -8.5157,0 0,-2.41681 12.45368,0 0,0.76769 -8.35932,12.0414"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4581" />
<path
d="m 378.08651,813.66787 c -1.08047,1.35531 -2.73432,2.03296 -4.96157,2.03296 -1.1942,0 -2.232,-0.43123 -3.11342,-1.2937 -0.87195,-0.87195 -1.30793,-1.9524 -1.30792,-3.24137 -10e-6,-1.54486 0.67291,-2.84804 2.01874,-3.90954 1.35531,-1.07097 3.08025,-1.60646 5.17482,-1.60647 0.56865,10e-6 1.21313,0.12322 1.93345,0.36963 -10e-6,-2.46419 -1.09942,-3.69629 -3.29824,-3.6963 -1.68703,10e-6 -2.98547,0.45494 -3.89533,1.36479 l -1.13732,-2.26043 c 0.51179,-0.41701 1.21788,-0.77242 2.11826,-1.06624 0.90986,-0.30327 1.77706,-0.45491 2.60163,-0.45493 2.20829,2e-5 3.81002,0.50233 4.80519,1.50695 1.00462,1.00465 1.50694,2.60164 1.50695,4.79097 l 0,5.45915 c -10e-6,1.33636 0.39805,2.22726 1.19419,2.67271 l 0,1.35057 c -1.09943,0 -1.92399,-0.15638 -2.47368,-0.46915 -0.54024,-0.31276 -0.92882,-0.82929 -1.16575,-1.5496 m -0.2559,-5.72926 c -0.853,-0.18955 -1.4501,-0.28432 -1.79128,-0.28433 -1.3648,10e-6 -2.47843,0.35068 -3.34089,1.05202 -0.86247,0.70136 -1.29371,1.53065 -1.2937,2.48789 -1e-5,1.58278 0.93354,2.37417 2.80065,2.37416 1.36478,10e-6 2.57319,-0.64921 3.62522,-1.94766 l 0,-3.68208"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4583" />
<path
d="m 394.1654,815.4165 0,-9.56772 c -10e-6,-1.13731 -0.27961,-2.03295 -0.83878,-2.68693 -0.55919,-0.65394 -1.34584,-0.98092 -2.35994,-0.98094 -0.65397,2e-5 -1.31267,0.19431 -1.9761,0.58288 -0.65397,0.37912 -1.15628,0.82457 -1.50695,1.33636 l 0,11.31635 -2.70114,0 0,-21.46696 2.70114,0 0,7.91861 c 0.36014,-0.55917 0.93828,-1.02357 1.73441,-1.39322 0.8056,-0.37909 1.6349,-0.56864 2.4879,-0.56866 1.61119,2e-5 2.87172,0.53076 3.78159,1.59225 0.91933,1.06151 1.37899,2.5116 1.37901,4.35026 l 0,9.56772 -2.70114,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4585" />
<path
d="m 400.91825,811.1089 0,-17.15936 2.70114,0 0,16.70443 c 0,0.81508 0.2322,1.45956 0.69661,1.93344 0.47388,0.46441 1.08993,0.69662 1.84815,0.69661 l 0,2.41681 c -3.49727,0 -5.2459,-1.53064 -5.2459,-4.59193"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4587" />
</g>
<g
id="g4560"
transform="translate(0,3.2350504)">
<rect
ry="8.0876255"
y="713.44299"
x="312.77576"
height="48.525757"
width="48.525757"
id="rect4552"
style="fill:none;stroke:#eeeeec;stroke-width:4.99977064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
<path
transform="matrix(0.80876259,0,0,0.80876259,103.3676,684.26839)"
d="m 275,81.573242 c 0,1.380712 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119288 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z"
sodipodi:ry="2.5"
sodipodi:rx="2.5"
sodipodi:cy="81.573242"
sodipodi:cx="272.5"
id="path4554"
style="fill:none;stroke:#eeeeec;stroke-width:6.18200016;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
sodipodi:type="arc" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#eeeeec;stroke-width:6.18200016;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="path4556"
sodipodi:cx="272.5"
sodipodi:cy="81.573242"
sodipodi:rx="2.5"
sodipodi:ry="2.5"
d="m 275,81.573242 c 0,1.380712 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119288 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z"
transform="matrix(0.80876259,0,0,0.80876259,116.30779,671.3282)" />
<path
transform="matrix(0.80876259,0,0,0.80876259,129.24798,658.38801)"
d="m 275,81.573242 c 0,1.380712 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.119288 -2.5,-2.5 0,-1.380712 1.11929,-2.5 2.5,-2.5 1.38071,0 2.5,1.119288 2.5,2.5 z"
sodipodi:ry="2.5"
sodipodi:rx="2.5"
sodipodi:cy="81.573242"
sodipodi:cx="272.5"
id="path4558"
style="fill:none;stroke:#eeeeec;stroke-width:6.18200016;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
sodipodi:type="arc" />
</g>
</g>
<g
transform="matrix(1.2364568,0,0,1.2364568,-868.392,-278.1104)"
id="g4423">
<path
sodipodi:type="arc"
style="fill:#555753;fill-opacity:1;stroke:#f57900;stroke-width:5.12058449;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path4425"
sodipodi:cx="320"
sodipodi:cy="772.36218"
sodipodi:rx="80"
sodipodi:ry="80"
d="m 400,772.36218 c 0,44.18278 -35.81722,80 -80,80 -44.18278,0 -80,-35.81722 -80,-80 0,-44.18278 35.81722,-80 80,-80 44.18278,0 80,35.81722 80,80 z"
transform="matrix(1.1845756,0,0,1.1845756,809.48274,-157.98707)" />
<path
style="fill:none;stroke:#eeeeec;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none"
d="m 1161.2107,695.22105 c -11.8411,0 -21.4402,9.59909 -21.4402,21.44019 0,11.84111 9.5991,21.44022 21.4402,21.44022 9.0525,0 16.7938,-5.61197 19.9382,-13.54529 l 1.502,-0.74819 8.3974,7.14674 7.1467,-10.72011 10.5415,10.72011 3.5733,-10.72011 14.2935,10.72011 10.7201,-10.72011 -10.7201,-14.29347 -46.8223,0 c -3.7067,-6.40987 -10.6334,-10.72009 -18.5703,-10.72009 z m -3.5734,10.72009 c 3.947,0 7.1467,3.1997 7.1467,7.14673 0,3.94704 -3.1997,7.14674 -7.1467,7.14674 -3.947,0 -7.1467,-3.1997 -7.1467,-7.14674 0,-3.94703 3.1997,-7.14673 7.1467,-7.14673 z"
id="path4427"
sodipodi:nodetypes="cssccccccccccccsssc" />
<g
style="font-size:11.32267666px;font-style:normal;font-weight:normal;fill:#eeeeec;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
id="text4429">
<path
d="m 1112.0668,769.69471 c 0,-2.35046 0.6302,-4.24599 1.8908,-5.68661 1.27,-1.45008 2.9381,-2.17512 5.0042,-2.17513 2.1799,10e-6 3.8716,0.69662 5.0753,2.08983 1.2036,1.38375 1.8055,3.30772 1.8055,5.77191 0,2.45472 -0.6161,4.39291 -1.8482,5.81456 -1.2321,1.41217 -2.9096,2.11826 -5.0326,2.11826 -2.1704,0 -3.8622,-0.71556 -5.0753,-2.14669 -1.2132,-1.43113 -1.8197,-3.35984 -1.8197,-5.78613 m 2.8433,0 c 0,3.81951 1.3505,5.72926 4.0517,5.72926 1.2605,0 2.2462,-0.51179 2.957,-1.53539 0.7203,-1.02358 1.0805,-2.42154 1.0805,-4.19387 0,-3.77211 -1.3459,-5.65817 -4.0375,-5.65818 -1.2321,10e-6 -2.2178,0.50233 -2.957,1.50695 -0.7298,1.00465 -1.0947,2.38839 -1.0947,4.15123 m 0.8956,-13.86112 c 0.4455,2e-5 0.8198,0.1564 1.1231,0.46915 0.3128,0.3033 0.4692,0.67767 0.4692,1.1231 0,0.44547 -0.1564,0.82458 -0.4692,1.13732 -0.3033,0.31279 -0.6776,0.46917 -1.1231,0.46915 -0.4454,2e-5 -0.8245,-0.15636 -1.1373,-0.46915 -0.3128,-0.31274 -0.4691,-0.69185 -0.4691,-1.13732 0,-0.44543 0.1563,-0.8198 0.4691,-1.1231 0.3128,-0.31275 0.6919,-0.46913 1.1373,-0.46915 m 6.7102,0 c 0.4455,2e-5 0.8246,0.1564 1.1374,0.46915 0.3127,0.3033 0.4691,0.67767 0.4691,1.1231 0,0.44547 -0.1564,0.82458 -0.4691,1.13732 -0.3128,0.31279 -0.6919,0.46917 -1.1374,0.46915 -0.4454,2e-5 -0.8245,-0.15636 -1.1373,-0.46915 -0.3033,-0.31274 -0.4549,-0.69185 -0.4549,-1.13732 0,-0.44543 0.1516,-0.8198 0.4549,-1.1231 0.3128,-0.31275 0.6919,-0.46913 1.1373,-0.46915"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4631" />
<path
d="m 1136.9315,758.29305 c -0.5497,-0.18953 -1.0615,-0.28431 -1.5354,-0.28433 -0.8246,2e-5 -1.507,0.31278 -2.0472,0.93829 -0.5307,0.62555 -0.7961,1.41693 -0.7961,2.37416 0,0.25591 0.024,0.52129 0.071,0.79613 l 3.0992,0 0,2.27464 -3.0992,0 0,12.95126 -2.7012,0 0,-12.95126 -2.2177,0 0,-2.27464 2.2177,0 c 0,-1.94291 0.4787,-3.46882 1.4359,-4.57773 0.9573,-1.10886 2.2225,-1.66331 3.7958,-1.66333 0.7867,2e-5 1.6302,0.14219 2.5306,0.4265 l -0.7535,1.99031"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4633" />
<path
d="m 1147.6792,758.29305 c -0.5497,-0.18953 -1.0615,-0.28431 -1.5354,-0.28433 -0.8246,2e-5 -1.507,0.31278 -2.0472,0.93829 -0.5307,0.62555 -0.7961,1.41693 -0.7961,2.37416 0,0.25591 0.024,0.52129 0.071,0.79613 l 3.0992,0 0,2.27464 -3.0992,0 0,12.95126 -2.7012,0 0,-12.95126 -2.2177,0 0,-2.27464 2.2177,0 c 0,-1.94291 0.4787,-3.46882 1.4359,-4.57773 0.9572,-1.10886 2.2225,-1.66331 3.7958,-1.66333 0.7867,2e-5 1.6302,0.14219 2.5306,0.4265 l -0.7535,1.99031"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4635" />
<path
d="m 1163.0188,769.99325 -10.9751,0 c 0,1.78182 0.4881,3.15134 1.4643,4.10858 0.8624,0.83404 1.9713,1.25106 3.3266,1.25106 1.5449,0 2.8338,-0.45019 3.8669,-1.35057 l 1.1373,1.94766 c -0.417,0.41702 -1.0567,0.77717 -1.9192,1.08046 -1.0804,0.39806 -2.2841,0.59709 -3.611,0.59709 -1.9145,0 -3.5399,-0.64922 -4.8763,-1.94766 -1.4879,-1.43113 -2.2319,-3.3551 -2.2319,-5.77191 0,-2.51158 0.7629,-4.52559 2.2888,-6.04203 1.3648,-1.35529 2.9807,-2.03295 4.8479,-2.03296 2.1703,10e-6 3.8716,0.61132 5.1037,1.83393 1.1942,1.17524 1.7913,2.73432 1.7913,4.67724 0,0.5971 -0.071,1.14681 -0.2133,1.64911 m -6.5538,-5.88564 c -1.2037,10e-6 -2.213,0.3886 -3.0281,1.16576 -0.7772,0.73927 -1.2179,1.6586 -1.3222,2.758 l 8.4304,0 c 0,-1.08992 -0.3412,-1.99978 -1.0235,-2.72957 -0.7488,-0.79611 -1.7676,-1.19418 -3.0566,-1.19419"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4637" />
<path
d="m 1175.4299,777.3432 0,-8.8569 c -1e-4,-1.62067 -0.2465,-2.75325 -0.7393,-3.39775 -0.4834,-0.65395 -1.2985,-0.98093 -2.4452,-0.98094 -0.6161,10e-6 -1.2606,0.18483 -1.9335,0.55445 -0.6729,0.36964 -1.1895,0.82457 -1.5496,1.36478 l 0,11.31636 -2.7011,0 0,-15.2259 1.8481,0 0.853,1.96188 c 0.8909,-1.49746 2.3457,-2.2462 4.3645,-2.24621 3.3361,10e-6 5.0042,2.02823 5.0042,6.08467 l 0,9.42556 -2.7011,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4639" />
<path
d="m 1182.9504,764.24978 -1.7629,0 0,-2.13248 1.7629,0 0,-3.18451 2.7011,-1.0378 0,4.22231 4.1797,0 0,2.13248 -4.1797,0 0,7.56319 c 0,1.27949 0.2133,2.18935 0.6398,2.72957 0.4359,0.54023 1.1326,0.81035 2.0898,0.81035 0.6919,0 1.4074,-0.17534 2.1467,-0.52602 l 0.3981,2.37417 c -1.1184,0.28433 -2.3458,0.42649 -3.6821,0.42649 -1.2037,0 -2.2225,-0.44545 -3.0566,-1.33635 -0.8245,-0.90038 -1.2368,-2.03296 -1.2368,-3.39775 l 0,-8.64365"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4641" />
<path
d="m 1193.7407,773.03559 0,-17.15935 2.7012,0 0,16.70442 c 0,0.81509 0.2322,1.45957 0.6966,1.93345 0.4739,0.46441 1.0899,0.69661 1.8481,0.69661 l 0,2.41681 c -3.4972,0 -5.2459,-1.53064 -5.2459,-4.59194"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4643" />
<path
d="m 1204.9007,756.3596 c 0.4644,2e-5 0.8577,0.16588 1.18,0.49758 0.3317,0.32226 0.4976,0.71085 0.4976,1.16576 0,0.46442 -0.1659,0.86248 -0.4976,1.19418 -0.3223,0.32226 -0.7156,0.48338 -1.18,0.48337 -0.4549,1e-5 -0.8482,-0.16111 -1.18,-0.48337 -0.3222,-0.3317 -0.4833,-0.72976 -0.4833,-1.19418 0,-0.46439 0.1611,-0.85771 0.4833,-1.17998 0.3223,-0.32222 0.7156,-0.48334 1.18,-0.48336 m -1.4785,20.9836 0,-12.95126 -2.0898,0 0,-2.27464 4.7909,0 0,15.2259 -2.7011,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4645" />
<path
d="m 1221.9037,763.35414 -1.3364,1.90501 c -0.2748,-0.27484 -0.7629,-0.53548 -1.4643,-0.78191 -0.6918,-0.24641 -1.3742,-0.36962 -2.0471,-0.36963 -1.4691,10e-6 -2.6349,0.51655 -3.4973,1.5496 -0.8625,1.0236 -1.2937,2.43104 -1.2937,4.22231 0,1.78181 0.4407,3.14186 1.3221,4.08015 0.8814,0.92881 2.1041,1.39322 3.6679,1.39322 1.2131,0 2.4357,-0.46915 3.6678,-1.40744 l 1.0663,2.27464 c -1.4501,0.9383 -3.2461,1.40744 -5.3881,1.40744 -2.0756,0 -3.7911,-0.69661 -5.1464,-2.08983 -1.3553,-1.39322 -2.0329,-3.27927 -2.0329,-5.65818 0,-2.42628 0.7013,-4.37394 2.104,-5.84299 1.4122,-1.46903 3.3409,-2.20355 5.7862,-2.20356 0.7866,10e-6 1.6396,0.16587 2.5589,0.49757 0.9193,0.33174 1.597,0.67293 2.033,1.0236"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4647" />
<path
d="m 1234.2436,777.3432 0,-9.56772 c 0,-1.13732 -0.2796,-2.03296 -0.8387,-2.68693 -0.5592,-0.65395 -1.3459,-0.98093 -2.36,-0.98094 -0.6539,10e-6 -1.3126,0.19431 -1.9761,0.58288 -0.6539,0.37912 -1.1563,0.82457 -1.5069,1.33635 l 0,11.31636 -2.7012,0 0,-21.46696 2.7012,0 0,7.91861 c 0.3601,-0.55917 0.9383,-1.02358 1.7344,-1.39322 0.8056,-0.37909 1.6349,-0.56865 2.4879,-0.56866 1.6112,10e-6 2.8717,0.53076 3.7816,1.59225 0.9193,1.06151 1.379,2.5116 1.379,4.35026 l 0,9.56772 -2.7012,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4649" />
<path
d="m 1253.6066,769.99325 -10.9752,0 c 0,1.78182 0.4881,3.15134 1.4643,4.10858 0.8625,0.83404 1.9713,1.25106 3.3267,1.25106 1.5448,0 2.8338,-0.45019 3.8669,-1.35057 l 1.1373,1.94766 c -0.4171,0.41702 -1.0568,0.77717 -1.9193,1.08046 -1.0804,0.39806 -2.2841,0.59709 -3.611,0.59709 -1.9144,0 -3.5399,-0.64922 -4.8762,-1.94766 -1.488,-1.43113 -2.232,-3.3551 -2.232,-5.77191 0,-2.51158 0.7629,-4.52559 2.2888,-6.04203 1.3648,-1.35529 2.9808,-2.03295 4.8479,-2.03296 2.1704,10e-6 3.8716,0.61132 5.1037,1.83393 1.1942,1.17524 1.7913,2.73432 1.7913,4.67724 0,0.5971 -0.071,1.14681 -0.2132,1.64911 m -6.5539,-5.88564 c -1.2036,10e-6 -2.213,0.3886 -3.0281,1.16576 -0.7772,0.73927 -1.2179,1.6586 -1.3221,2.758 l 8.4304,0 c 0,-1.08992 -0.3412,-1.99978 -1.0236,-2.72957 -0.7488,-0.79611 -1.7676,-1.19418 -3.0566,-1.19419"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4651" />
<path
d="m 1264.9229,764.71892 c -0.5876,-0.40753 -1.18,-0.6113 -1.7771,-0.61131 -0.9572,10e-6 -1.796,0.44073 -2.5163,1.32214 -0.7108,0.88143 -1.0662,1.94293 -1.0662,3.1845 l 0,8.72895 -2.7012,0 0,-15.2259 2.7012,0 0,2.43102 c 0.9857,-1.81022 2.45,-2.71534 4.3929,-2.71535 0.4833,10e-6 1.18,0.0853 2.0898,0.25589 l -1.1231,2.63006"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4653" />
<path
d="m 1131.3586,812.78501 1.0378,-2.61584 c 0.5308,0.38859 1.1895,0.71557 1.9761,0.98094 0.7961,0.2559 1.507,0.38385 2.1325,0.38385 1.1089,0 1.9998,-0.30329 2.6727,-0.90986 0.6729,-0.60657 1.0094,-1.379 1.0094,-2.3173 0,-0.70134 -0.1896,-1.35056 -0.5687,-1.94766 -0.3696,-0.60657 -1.3079,-1.26526 -2.8149,-1.9761 l -1.6775,-0.78191 c -1.4217,-0.66343 -2.4168,-1.45007 -2.9855,-2.35994 -0.5592,-0.90985 -0.8388,-2.00452 -0.8388,-3.28402 0,-1.55432 0.5497,-2.84329 1.6492,-3.8669 1.0994,-1.02357 2.5115,-1.53536 4.2365,-1.53538 2.3031,2e-5 3.9048,0.37439 4.8052,1.1231 l -0.8388,2.47368 c -0.3791,-0.27484 -0.9573,-0.54021 -1.7344,-0.79613 -0.7772,-0.25587 -1.4975,-0.38382 -2.1609,-0.38384 -0.9668,2e-5 -1.7297,0.27487 -2.2889,0.82456 -0.5497,0.54972 -0.8246,1.25581 -0.8246,2.11826 0,0.53077 0.1,1.01413 0.2986,1.45009 0.199,0.43598 0.4739,0.80087 0.8246,1.09467 0.3601,0.29382 1.0899,0.7061 2.1893,1.23684 l 1.706,0.81034 c 1.4216,0.67293 2.4168,1.47853 2.9855,2.41681 0.5781,0.92882 0.8672,2.11353 0.8672,3.55413 0,1.56382 -0.6303,2.8907 -1.8908,3.98063 -1.2511,1.08993 -2.9286,1.6349 -5.0327,1.6349 -1.8481,0 -3.4262,-0.43597 -4.7341,-1.30792"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4655" />
<path
d="m 1157.5597,799.74845 -1.3364,1.90502 c -0.2748,-0.27484 -0.7629,-0.53548 -1.4643,-0.78191 -0.6919,-0.24641 -1.3743,-0.36962 -2.0472,-0.36963 -1.469,10e-6 -2.6348,0.51654 -3.4972,1.5496 -0.8625,1.0236 -1.2937,2.43104 -1.2937,4.22231 0,1.78181 0.4407,3.14186 1.3221,4.08014 0.8814,0.92882 2.104,1.39323 3.6679,1.39322 1.2131,10e-6 2.4357,-0.46914 3.6678,-1.40743 l 1.0663,2.27464 c -1.4501,0.93829 -3.2461,1.40744 -5.3881,1.40744 -2.0756,0 -3.7911,-0.69661 -5.1464,-2.08983 -1.3553,-1.39322 -2.0329,-3.27928 -2.0329,-5.65818 0,-2.42628 0.7013,-4.37394 2.104,-5.84299 1.4122,-1.46903 3.3409,-2.20355 5.7861,-2.20357 0.7867,2e-5 1.6397,0.16588 2.559,0.49758 0.9193,0.33174 1.597,0.67293 2.033,1.02359"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4657" />
<path
d="m 1169.8996,813.73752 0,-9.56773 c 0,-1.13731 -0.2796,-2.03295 -0.8388,-2.68692 -0.5591,-0.65395 -1.3458,-0.98093 -2.3599,-0.98094 -0.654,10e-6 -1.3127,0.1943 -1.9761,0.58288 -0.654,0.37912 -1.1563,0.82457 -1.5069,1.33635 l 0,11.31636 -2.7012,0 0,-21.46696 2.7012,0 0,7.9186 c 0.3601,-0.55916 0.9382,-1.02357 1.7344,-1.39322 0.8056,-0.37909 1.6349,-0.56864 2.4879,-0.56866 1.6112,2e-5 2.8717,0.53077 3.7816,1.59225 0.9193,1.06152 1.3789,2.5116 1.379,4.35026 l 0,9.56773 -2.7012,0"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4659" />
<path
d="m 1176.6525,809.42991 0,-17.15935 2.7011,0 0,16.70442 c 0,0.81509 0.2322,1.45957 0.6966,1.93345 0.4739,0.46441 1.09,0.69661 1.8482,0.69661 l 0,2.41681 c -3.4973,0 -5.2459,-1.53065 -5.2459,-4.59194"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4661" />
<path
d="m 1187.585,798.51161 0,9.70989 c 0,2.35047 1.0188,3.52571 3.0565,3.5257 0.8909,10e-6 1.706,-0.25589 2.4453,-0.76769 0.7392,-0.51179 1.2273,-1.10415 1.4643,-1.77707 l 0,-10.69083 2.7011,0 0,15.22591 -2.7011,0 0,-2.10405 c -0.3033,0.5971 -0.9146,1.1468 -1.8339,1.64912 -0.9099,0.49284 -1.8008,0.73926 -2.6728,0.73926 -1.668,0 -2.9475,-0.47862 -3.8384,-1.43587 -0.8814,-0.95725 -1.3222,-2.31729 -1.3222,-4.08015 l 0,-9.99422 2.7012,0 m -0.2986,-6.2837 c 0.4455,2e-5 0.8199,0.1564 1.1231,0.46914 0.3128,0.30331 0.4692,0.67768 0.4692,1.12311 0,0.44547 -0.1564,0.82458 -0.4692,1.13732 -0.3032,0.31278 -0.6776,0.46917 -1.1231,0.46915 -0.4454,2e-5 -0.8245,-0.15637 -1.1373,-0.46915 -0.3127,-0.31274 -0.4691,-0.69185 -0.4691,-1.13732 0,-0.44543 0.1564,-0.8198 0.4691,-1.12311 0.3128,-0.31274 0.6919,-0.46912 1.1373,-0.46914 m 6.7102,0 c 0.4455,2e-5 0.8246,0.1564 1.1374,0.46914 0.3127,0.30331 0.4691,0.67768 0.4691,1.12311 0,0.44547 -0.1564,0.82458 -0.4691,1.13732 -0.3128,0.31278 -0.6919,0.46917 -1.1374,0.46915 -0.4454,2e-5 -0.8245,-0.15637 -1.1373,-0.46915 -0.3033,-0.31274 -0.4549,-0.69185 -0.4549,-1.13732 0,-0.44543 0.1516,-0.8198 0.4549,-1.12311 0.3128,-0.31274 0.6919,-0.46912 1.1373,-0.46914"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4663" />
<path
d="m 1199.9534,812.82766 0.9525,-2.55898 c 1.5069,0.98569 2.7201,1.47853 3.6394,1.47852 1.6681,10e-6 2.5021,-0.70134 2.5021,-2.10404 0,-1.00463 -0.8056,-1.8671 -2.4168,-2.58741 -1.2416,-0.56866 -2.0803,-0.99989 -2.5163,-1.29371 -0.4265,-0.2938 -0.8009,-0.62551 -1.1231,-0.99515 -0.3128,-0.3791 -0.5497,-0.77716 -0.7108,-1.19419 -0.1517,-0.42649 -0.2275,-0.88142 -0.2275,-1.36479 0,-1.25104 0.4549,-2.22724 1.3648,-2.9286 0.9098,-0.70134 2.0993,-1.05201 3.5683,-1.05203 1.1089,2e-5 2.5069,0.35069 4.1939,1.05203 l -0.7677,2.50211 c -1.071,-0.85298 -2.1467,-1.27948 -3.2271,-1.27949 -0.6445,10e-6 -1.1895,0.15165 -1.6349,0.45493 -0.436,0.3033 -0.654,0.68714 -0.654,1.15154 0,0.97621 0.5544,1.71547 1.6633,2.21777 l 1.9335,0.88143 c 1.1847,0.54024 2.0471,1.15628 2.5874,1.84815 0.5402,0.69188 0.8103,1.55908 0.8103,2.60162 0,1.36479 -0.4786,2.43577 -1.4358,3.21294 -0.9573,0.76769 -2.2842,1.15154 -3.9807,1.15154 -1.6017,0 -3.1087,-0.39806 -4.5208,-1.19419"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4665" />
<path
d="m 1211.7247,812.82766 0.9525,-2.55898 c 1.5069,0.98569 2.7201,1.47853 3.6394,1.47852 1.6681,10e-6 2.5021,-0.70134 2.5021,-2.10404 0,-1.00463 -0.8056,-1.8671 -2.4168,-2.58741 -1.2416,-0.56866 -2.0804,-0.99989 -2.5163,-1.29371 -0.4265,-0.2938 -0.8009,-0.62551 -1.1231,-0.99515 -0.3128,-0.3791 -0.5497,-0.77716 -0.7109,-1.19419 -0.1516,-0.42649 -0.2274,-0.88142 -0.2274,-1.36479 0,-1.25104 0.4549,-2.22724 1.3648,-2.9286 0.9098,-0.70134 2.0993,-1.05201 3.5683,-1.05203 1.1089,2e-5 2.5068,0.35069 4.1939,1.05203 l -0.7677,2.50211 c -1.071,-0.85298 -2.1467,-1.27948 -3.2272,-1.27949 -0.6444,10e-6 -1.1894,0.15165 -1.6349,0.45493 -0.4359,0.3033 -0.6539,0.68714 -0.6539,1.15154 0,0.97621 0.5544,1.71547 1.6633,2.21777 l 1.9335,0.88143 c 1.1847,0.54024 2.0471,1.15628 2.5874,1.84815 0.5402,0.69188 0.8103,1.55908 0.8103,2.60162 0,1.36479 -0.4786,2.43577 -1.4359,3.21294 -0.9572,0.76769 -2.2841,1.15154 -3.9806,1.15154 -1.6017,0 -3.1087,-0.39806 -4.5208,-1.19419"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4667" />
<path
d="m 1237.3144,806.38757 -10.9752,0 c 0,1.78181 0.4881,3.15134 1.4644,4.10858 0.8624,0.83404 1.9713,1.25106 3.3266,1.25105 1.5449,10e-6 2.8338,-0.45018 3.8669,-1.35057 l 1.1373,1.94767 c -0.417,0.41702 -1.0567,0.77717 -1.9192,1.08045 -1.0805,0.39807 -2.2841,0.5971 -3.611,0.5971 -1.9145,0 -3.5399,-0.64922 -4.8763,-1.94767 -1.488,-1.43112 -2.232,-3.35509 -2.232,-5.77191 0,-2.51157 0.763,-4.52558 2.2889,-6.04202 1.3648,-1.3553 2.9807,-2.03295 4.8478,-2.03297 2.1704,2e-5 3.8717,0.61133 5.1038,1.83394 1.1942,1.17524 1.7912,2.73432 1.7913,4.67723 -1e-4,0.59711 -0.071,1.14681 -0.2133,1.64912 m -6.5538,-5.88564 c -1.2037,10e-6 -2.2131,0.3886 -3.0281,1.16575 -0.7772,0.73927 -1.2179,1.65861 -1.3222,2.75801 l 8.4304,0 c 0,-1.08992 -0.3412,-1.99978 -1.0236,-2.72957 -0.7487,-0.79612 -1.7676,-1.19418 -3.0565,-1.19419"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4669" />
<path
d="m 1240.57,809.42991 0,-17.15935 2.7011,0 0,16.70442 c 0,0.81509 0.2322,1.45957 0.6966,1.93345 0.4739,0.46441 1.09,0.69661 1.8482,0.69661 l 0,2.41681 c -3.4973,0 -5.2459,-1.53065 -5.2459,-4.59194"
style="font-size:29.11545372px;font-variant:normal;font-stretch:normal;text-align:center;text-anchor:middle;fill:#eeeeec;font-family:Trebuchet MS;-inkscape-font-specification:Trebuchet MS"
id="path4671" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 79 KiB

3208
img/PGP_diagram_de.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 934 KiB

View File

@ -0,0 +1,351 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
x="0.00000000"
y="0.00000000"
width="525.00000px"
height="512.50000px"
id="svg2"
sodipodi:version="0.32"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="Public_key_encryption.svg">
<metadata
id="metadata55">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
inkscape:window-height="1699"
inkscape:window-width="2736"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
inkscape:zoom="1.5063415"
inkscape:cx="262.5"
inkscape:cy="256.25"
inkscape:window-x="-13"
inkscape:window-y="-13"
inkscape:current-layer="svg2"
showgrid="false"
inkscape:window-maximized="1" />
<defs
id="defs4">
<marker
refX="0.00000000"
refY="0.00000000"
orient="auto"
style="overflow:visible"
id="Arrow2Lend">
<path
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(-1.100000,0.000000,0.000000,-1.100000,5.500000,0.000000)"
style="font-size:12.000000px;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
id="path7487" />
</marker>
<marker
id="marker1456"
style="overflow:visible"
orient="auto"
refY="0.00000000"
refX="0.00000000">
<path
id="path1458"
style="font-size:12.000000px;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
transform="matrix(-1.100000,0.000000,0.000000,-1.100000,5.500000,0.000000)"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " />
</marker>
</defs>
<path
d="M 349.94220,396.95514 L 311.46712,413.13812"
style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
id="path2937" />
<path
d="M 353.86966,101.12095 L 311.24950,111.08631"
style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
id="path2935" />
<path
d="M 236.12824,272.73302 L 237.37018,371.42135"
style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
id="path2917" />
<path
d="M 236.12824,125.59671 L 237.37018,173.50784"
style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
id="path12787" />
<path
d="M 91.840230,114.96672 L 160.92992,115.39841"
style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
id="path12783" />
<rect
width="99.449097"
height="79.464615"
x="29.548828"
y="75.450256"
style="opacity:1.0000000;fill:#00fbfe;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:10.000000;stroke-opacity:1.0000000"
id="rect9051" />
<text
x="53.870625"
y="100.10528"
transform="scale(0.921745,1.084899)"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:24.00016975px;line-height:0%;font-family:Tahoma;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text6642"
xml:space="preserve"><tspan
x="53.870625"
y="100.10528"
id="tspan11289">Hello </tspan><tspan
x="53.870625"
y="130.10544"
id="tspan2167">Alice!</tspan></text>
<path
d="M 368.29004,364.25146 C 357.00240,364.25146 347.84129,376.85844 347.84129,392.38524 C 347.84129,407.91204 357.00240,420.50744 368.29004,420.50744 C 377.68345,420.50744 385.59183,411.77419 387.98569,399.89686 L 450.21289,399.89686 L 450.21289,410.74725 L 460.74363,410.74725 L 460.74363,418.99219 L 469.47455,418.99219 L 469.47455,410.74725 L 479.27770,410.74725 L 479.27770,399.89686 L 491.69758,399.89686 L 491.69758,386.31104 L 388.25375,386.31104 C 386.23190,373.70358 378.06032,364.25146 368.29004,364.25146 z M 363.17148,382.01040 C 366.86596,382.01040 369.87285,386.33783 369.87285,391.66654 C 369.87285,396.99525 366.86596,401.32268 363.17148,401.32268 C 359.47699,401.32268 356.48287,396.99525 356.48287,391.66654 C 356.48287,386.33782 359.47699,382.01040 363.17148,382.01040 z "
style="opacity:1.0000000;fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:2.0000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:10.000000;stroke-opacity:1.0000000"
id="path1306" />
<text
x="333.31406"
y="474.3338"
transform="scale(1.038686,0.962755)"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:24.0003376px;line-height:0%;font-family:Tahoma;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text8995"
xml:space="preserve"><tspan
x="333.31406"
y="474.3338"
id="tspan8997">Alice's</tspan><tspan
x="333.31406"
y="504.33386"
id="tspan9043">private key</tspan></text>
<rect
width="112.12913"
height="60.939266"
x="180.68465"
y="84.712936"
style="opacity:1.0000000;fill:#ffff91;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:10.000000;stroke-opacity:1.0000000"
id="rect10547" />
<text
x="209.95047"
y="112.48004"
transform="scale(0.921745,1.084899)"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:24.00015259px;line-height:0%;font-family:Tahoma;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text11291"
xml:space="preserve"><tspan
x="209.95047"
y="112.48004"
id="tspan11295">Encrypt</tspan></text>
<rect
width="137.04561"
height="79.464615"
x="168.22641"
y="193.16718"
style="opacity:1.0000000;fill:#20dddd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:10.000000;stroke-opacity:1.0000000"
id="rect2159" />
<text
x="195.39571"
y="208.4174"
transform="scale(0.921745,1.084899)"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:24.00014877px;line-height:0%;font-family:Tahoma;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text2161"
xml:space="preserve"><tspan
x="195.39571"
y="208.4174"
id="tspan2163">6EB69570</tspan><tspan
x="195.39571"
y="238.41776"
id="tspan2165">08E03CE4</tspan></text>
<path
d="M 224.35180,421.31549 L 147.53475,420.91816"
style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
id="path2919" />
<rect
width="96.798950"
height="79.464615"
x="30.873901"
y="381.38452"
style="opacity:1.0000000;fill:#00fbfe;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:10.000000;stroke-opacity:1.0000000"
id="rect2921" />
<text
x="53.870205"
y="382.10736"
transform="scale(0.921745,1.084899)"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:24.00048065px;line-height:0%;font-family:Tahoma;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text2923"
xml:space="preserve"><tspan
x="53.870205"
y="382.10736"
id="tspan2925">Hello </tspan><tspan
x="53.870205"
y="412.10837"
id="tspan2927">Alice!</tspan></text>
<rect
width="112.12913"
height="60.939266"
x="180.68465"
y="390.64719"
style="opacity:1.0000000;fill:#ffff91;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:10.000000;stroke-opacity:1.0000000"
id="rect2929" />
<text
x="208.80138"
y="394.4823"
transform="scale(0.921745,1.084899)"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:24.00047684px;line-height:0%;font-family:Tahoma;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text2931"
xml:space="preserve"><tspan
x="208.80138"
y="394.4823"
id="tspan2933">Decrypt</tspan></text>
<path
d="M 368.29006,70.471520 C 357.00241,70.471520 347.84130,83.078500 347.84130,98.605300 C 347.84130,114.13210 357.00241,126.72750 368.29006,126.72750 C 377.68346,126.72750 385.59184,117.99425 387.98570,106.11692 L 450.21291,106.11692 L 450.21291,124.96731 L 460.74364,124.96731 L 460.74364,117.21225 L 469.47457,117.21225 L 469.47457,124.96731 L 479.27772,124.96731 L 479.27772,106.11692 L 491.69759,106.11692 L 491.69759,92.531100 L 388.25376,92.531100 C 386.23191,79.923640 378.06033,70.471520 368.29006,70.471520 z M 363.17149,88.230460 C 366.86597,88.230460 369.87286,92.557890 369.87286,97.886600 C 369.87286,103.21531 366.86597,107.54274 363.17149,107.54274 C 359.47701,107.54274 356.48288,103.21531 356.48288,97.886600 C 356.48288,92.557880 359.47701,88.230460 363.17149,88.230460 z "
style="opacity:1.0000000;fill:#00ff00;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:2.0000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:10.000000;stroke-opacity:1.0000000"
id="path5914" />
<text
x="333.31406"
y="169.18408"
transform="scale(1.038686,0.962755)"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:24.00006676px;line-height:0%;font-family:Tahoma;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text9045"
xml:space="preserve"><tspan
x="333.31406"
y="169.18408"
id="tspan9047">Alice's</tspan><tspan
x="333.31406"
y="199.18416"
id="tspan9049">public key</tspan></text>
<path
d="M 23.707951,306.44560 L 498.73449,306.44560"
style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:2.0000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
id="path1378" />
<text
x="33.939548"
y="321.85117"
transform="scale(0.921745,1.084899)"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:32.00062943px;line-height:0%;font-family:Tahoma;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text2135"
xml:space="preserve"><tspan
x="33.939548"
y="321.85117"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:32.00062943px;line-height:124.99998808%;font-family:Tahoma;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="tspan2137">Alice</tspan></text>
<path
sodipodi:type="star"
style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:7.2825398;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000;display:inline"
id="path13515"
sodipodi:sides="3"
sodipodi:cx="58.031090"
sodipodi:cy="313.98965"
sodipodi:r1="24.870466"
sodipodi:r2="12.435234"
sodipodi:arg1="0.00000000"
sodipodi:arg2="1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0.00000000"
inkscape:randomized="0.00000000"
d="M 82.901556,313.98965 L 64.248706,324.75888 L 45.595857,335.52811 L 45.595856,313.98965 L 45.595857,292.45120 L 64.248707,303.22043 L 82.901556,313.98965 z "
transform="matrix(-3.040663e-4,0.536912,-0.316064,-1.599964e-4,336.0039,341.7284)" />
<path
sodipodi:type="star"
style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:7.2825398;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000;display:inline"
id="path5890"
sodipodi:sides="3"
sodipodi:cx="58.031090"
sodipodi:cy="313.98965"
sodipodi:r1="24.870466"
sodipodi:r2="12.435234"
sodipodi:arg1="0.00000000"
sodipodi:arg2="1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0.00000000"
inkscape:randomized="0.00000000"
d="M 82.901556,313.98965 L 64.248706,324.75888 L 45.595857,335.52811 L 45.595856,313.98965 L 45.595857,292.45120 L 64.248707,303.22043 L 82.901556,313.98965 z "
transform="matrix(-0.496084,0.205365,-0.120910,-0.292022,376.0725,492.9744)" />
<path
sodipodi:type="star"
style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:7.2825398;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000;display:inline"
id="path5892"
sodipodi:sides="3"
sodipodi:cx="58.031090"
sodipodi:cy="313.98965"
sodipodi:r1="24.870466"
sodipodi:r2="12.435234"
sodipodi:arg1="0.00000000"
sodipodi:arg2="1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0.00000000"
inkscape:randomized="0.00000000"
d="M 82.901556,313.98965 L 64.248706,324.75888 L 45.595857,335.52811 L 45.595856,313.98965 L 45.595857,292.45120 L 64.248707,303.22043 L 82.901556,313.98965 z "
transform="matrix(0.536905,-2.831340e-3,1.685723e-3,0.316060,130.9598,16.20191)" />
<path
sodipodi:type="star"
style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:7.2825398;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000;display:inline"
id="path3014"
sodipodi:sides="3"
sodipodi:cx="58.031090"
sodipodi:cy="313.98965"
sodipodi:r1="24.870466"
sodipodi:r2="12.435234"
sodipodi:arg1="0.00000000"
sodipodi:arg2="1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0.00000000"
inkscape:randomized="0.00000000"
d="M 82.901556,313.98965 L 64.248706,324.75888 L 45.595857,335.52811 L 45.595856,313.98965 L 45.595857,292.45120 L 64.248707,303.22043 L 82.901556,313.98965 z "
transform="matrix(-0.536905,-2.831340e-3,-1.685723e-3,0.316060,177.0222,322.1088)" />
<path
sodipodi:type="star"
style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:7.2825398;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000;display:inline"
id="path3016"
sodipodi:sides="3"
sodipodi:cx="58.031090"
sodipodi:cy="313.98965"
sodipodi:r1="24.870466"
sodipodi:r2="12.435234"
sodipodi:arg1="0.00000000"
sodipodi:arg2="1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0.00000000"
inkscape:randomized="0.00000000"
d="M 82.901556,313.98965 L 64.248706,324.75888 L 45.595857,335.52811 L 45.595856,313.98965 L 45.595857,292.45120 L 64.248707,303.22043 L 82.901556,313.98965 z "
transform="matrix(-3.040663e-4,0.536912,-0.316064,-1.599964e-4,336.0039,144.1345)" />
<path
sodipodi:type="star"
style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:7.2825398;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000;display:inline"
id="path3018"
sodipodi:sides="3"
sodipodi:cx="58.031090"
sodipodi:cy="313.98965"
sodipodi:r1="24.870466"
sodipodi:r2="12.435234"
sodipodi:arg1="0.00000000"
sodipodi:arg2="1.0471976"
inkscape:flatsided="false"
inkscape:rounded="0.00000000"
inkscape:randomized="0.00000000"
d="M 82.901556,313.98965 L 64.248706,324.75888 L 45.595857,335.52811 L 45.595856,313.98965 L 45.595857,292.45120 L 64.248707,303.22043 L 82.901556,313.98965 z "
transform="matrix(-0.522749,0.122507,-7.213487e-2,-0.307722,363.3824,200.5708)" />
<text
x="32.403893"
y="43.090385"
transform="scale(0.92174488,1.0848989)"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:32.00050354px;line-height:0%;font-family:Tahoma;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text1354"
xml:space="preserve"><tspan
x="32.403893"
y="43.090385"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:32.00050354px;line-height:124.99998808%;font-family:Tahoma;text-align:start;writing-mode:lr-tb;text-anchor:start"
id="tspan1356">Bob</tspan></text>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

BIN
img/full-infographic.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 743 KiB

View File

@ -16,14 +16,16 @@
<div class="ui segment">
<h2>Präsentationen</h2>
<ol>
<li><a href="1.html">1. Abend - Debian Installation, grafische Oberflächen</a></li>
<li><a href="2.html">2. Abend - Datei System, apt, Hilfe</a></li>
<li><a href="3.html">3. Abend - Bash Einführung, erste Befehle</a></li>
<li><a href="4.html">4. Abend - Bash Scripting Einführung</a></li>
<li><a href="5.html">5. Abend - Bash Scripting Fortsetzung</a></li>
<li><a href="6.html">6. Abend - vim / emacs</a></li>
<li><a href="7.html">7. Abend - Systemverwaltung</a></li>
<li><a href="8.html">8. Abend - Systemd</a></li>
<li><a href="1.html">Debian Installation, grafische Oberflächen</a></li>
<li><a href="2.html">Datei System, apt, Hilfe</a></li>
<li><a href="3.html">Bash Einführung, erste Befehle</a></li>
<li><a href="4.html">Bash Scripting Einführung</a></li>
<li><a href="5.html">Bash Scripting Fortsetzung</a></li>
<li><a href="6.html">vim / emacs</a></li>
<li><a href="7.html">Systemverwaltung</a></li>
<li><a href="8.html">Systemd</a></li>
<li><a href="9.html">Dateisysteme</a></li>
<li><a href="gpg.html">GnuPG</a></li>
</ol>
<div class="ui left aligned padded grid">